diff --git a/.env.example b/.env.example new file mode 100644 index 00000000..dd619b0e --- /dev/null +++ b/.env.example @@ -0,0 +1,10 @@ +# Copy to .env and fill in the values. NEVER commit .env — Scripts/generate-secrets.sh turns it +# into the gitignored AppBox/Generated/AppBoxSecrets.swift at build time. + +# Static client token for the AppBox backend (install-helper) — must match the server's +# APPBOX_CLIENT_TOKEN environment variable. +APPBOX_CLIENT_TOKEN= + +# The Dropbox OAuth client_id (public app key). Must match the app's `db-` URL scheme in +# AppBox/Info.plist. From the Dropbox App Console. +DROPBOX_APP_KEY= diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 4c3338ee..db46644d 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -2,8 +2,7 @@ #### Did you find a bug? -* **Do not open up a GitHub issue if the bug is a security vulnerability - in AppBox**, and instead to refer to [developer](mailto:publisher@developerinsider.co) directly +* **Do not open up a GitHub issue if the bug is a security vulnerability in AppBox**, and instead to refer to [developer](mailto:publisher@developerinsider.co) directly * **Ensure the bug was not already reported** by searching on GitHub under [Issues](https://github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation/issues). * If you're unable to find an open issue addressing the problem, [open a new one](https://github.com/vineetchoudhary/AppBox-iOSAppsWirelessInstallation/issues/new). Be sure to include a **title and clear description**, as much relevant information as possible, and a **code sample** or an **executable test case** demonstrating the expected behavior that is not occurring. * If possible, use the bug report template to create the issue. Simply make the necessary changes to demonstrate the issue, and **paste the content into the issue description**. diff --git a/.github/workflows/xcodebuild.yml b/.github/workflows/xcodebuild.yml index cc37f26f..9a913022 100644 --- a/.github/workflows/xcodebuild.yml +++ b/.github/workflows/xcodebuild.yml @@ -1,27 +1,75 @@ -name: Xcode Build +name: Xcode Build & Test on: pull_request: - branches: ["master"] - paths: ["!docs/**", "!.github/**", "!**.md", "!**.yml"] + branches: ["master", "develop"] + paths-ignore: ["docs/**", "**.md", "mkdocs.yml"] push: - branches: ["master"] - paths: ["!docs/**", "!.github/**", "!**.md", "!**.yml"] + branches: ["master", "develop"] + paths-ignore: ["docs/**", "**.md", "mkdocs.yml"] jobs: - build: - name: Build AppBox + build-test: + name: Build & Test AppBox runs-on: macos-latest steps: - name: Checkout repository - uses: actions/checkout@v4 - - name: Use latest Xcode + uses: actions/checkout@v4 + + - name: Select Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: latest - - name: Build App + # Use latest-stable to avoid beta toolchains. A maintainer can pin an + # exact version here (e.g. '16.4') for full reproducibility. + xcode-version: latest-stable + + - name: Cache Swift Package Manager dependencies + uses: actions/cache@v4 + with: + path: | + ~/Library/Caches/org.swift.swiftpm + ~/Library/Developer/Xcode/DerivedData/**/SourcePackages + # Hash BOTH resolved files: the standalone `swift test` step resolves from + # AppBoxCore/Package.resolved, not the workspace one. + key: spm-${{ runner.os }}-${{ hashFiles('AppBox.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved', 'AppBoxCore/Package.resolved') }} + restore-keys: | + spm-${{ runner.os }}- + + - name: Test AppBoxCore package run: | set -o pipefail - xcodebuild clean build -project AppBox.xcodeproj -scheme AppBox CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO 2>&1 | tee build.log + cd AppBoxCore + swift test 2>&1 | tee ../appboxcore-test.log if [ ${PIPESTATUS[0]} -ne 0 ]; then - echo "::error::Build failed" + echo "::error::AppBoxCore package tests failed" exit 1 fi + + - name: Build & Test + run: | + set -o pipefail + xcodebuild test \ + -project AppBox.xcodeproj \ + -scheme AppBoxTests \ + -testPlan AppBoxTests \ + -destination 'platform=macOS' \ + -resultBundlePath TestResults.xcresult \ + CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO \ + 2>&1 | tee build.log + if [ ${PIPESTATUS[0]} -ne 0 ]; then + echo "::error::Build or tests failed" + exit 1 + fi + + - name: Report code coverage + if: always() + run: | + if [ -d TestResults.xcresult ]; then + xcrun xccov view --report TestResults.xcresult || true + fi + + - name: Upload test results + if: always() + uses: actions/upload-artifact@v4 + with: + name: TestResults + path: TestResults.xcresult + if-no-files-found: ignore diff --git a/.gitignore b/.gitignore index 8e3b070d..01097f65 100644 --- a/.gitignore +++ b/.gitignore @@ -29,3 +29,13 @@ default.profraw ## Test logs Scripts/test_cli.log + +## Secrets (generated from .env by Scripts/generate-secrets.sh) +.env +/Generated/ + +## Agents implementation plans and progress +plans + +## Release artifacts (Scripts/build-release.sh) +dist/ diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 00000000..033b6dbd --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,146 @@ +# AGENTS.md — Working in the AppBox repo + +Canonical onboarding guide for humans and AI agents contributing to AppBox. + +## What AppBox is + +A macOS tool for iOS developers to deploy Development / Ad‑Hoc / In‑house (Enterprise) apps over the air via Dropbox: it uploads an `.ipa`, generates an OTA install manifest + short link, and can notify via Slack / Microsoft Teams / email. + +There is also a small command‑line tool (`appboxcli`). + +## Related repositories (local paths) + +| Repo | Local Path | What | +|------|------------|------| +| https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation | `~/Projects/AppBox-iOSAppsWirelessInstallation` | **Main macOS app** GUI and CLI app (Swift/SwiftUI). | +| https://github.com/getappbox/install-helper | `~/Projects/install-helper` | **The AppBox backend** (Swift/Vapor, Docker). | +| https://github.com/getappbox/WebApp | `~/Projects/WebApp` | **Production** repo for the OTA install web page `web.getappbox.com`. | +| https://github.com/getappbox/WebApp-Dev | `~/Projects/WebApp-Dev` | **Development** repo for the OTA install web page (`web.getappbox.com`)| +| https://github.com/getappbox/fastlane-plugin-appbox | `~/Projects/fastlane-plugin-appbox` | **Fastlane plugin** for AppBox (ruby)). | +| https://github.com/getappbox/AppBox-iOS-SDK | `~/Projects/AppBox-iOS-SDK` | **iOS SDK** for integrating app updates via AppBox (Swift). | +| https://github.com/getappbox/Home | `~/Projects/AppBox-Home` | **Home** repo for the AppBox website (Swift/Vapor). | + +## Architecture +The app is three modules: + +``` +AppBoxCore (local Swift Package, UI-FREE) ← all business logic, models, Core Data + ├── linked by → AppBox (GUI: Swift/SwiftUI) ← composition root + UI only + └── linked by → appboxcli (CLI: standalone) ← composition root + ArgumentParser + auth +``` + +The GUI is 100% Swift/SwiftUI, business logic lives in `AppBoxCore`, and `appboxcli` links Core directly. + +### Hard rules (do not violate) + +1. **No UI in `AppBoxCore`.** No `import AppKit` / `import SwiftUI` in Core — it must link into the CLI. UI is expressed only through protocols (e.g. `ProgressReporter`); the GUI and CLI each provide their own implementation. +2. **Dependency injection by initializer only.** Core types take their collaborators as protocol‑typed init parameters. No hidden singletons (`*.shared`) inside Core types. Each of GUI and CLI builds its own composition root (`AppEnvironment`) from production adapters. +3. **Core Data: v4 only, model is frozen.** Do **not** edit `AppBox.xcdatamodeld` (no entity or attribute renames — even the `dbDirectroy` typo stays). Swift `NSManagedObject` subclasses must keep explicit ObjC names matching the v4 model exactly: `@objc(ABProject)`, `@objc(ABUploadRecord)`, `@objc(ABProvisioningProfile)`, `@objc(ABProvisionedDevice)`, and `@objc(AppBoxService)` (**not** prefixed). Getting one wrong crashes on store load. +4. **Shared store + shared Keychain.** GUI and CLI open the same Core Data SQLite store (fixed Application Support path, pinned by `ABStorePaths` to the v3 location so upgrades don't orphan data) and share the Dropbox token through a common Keychain service string. Both are signed with team `3PQ7E4L589`. +5. **Every change ends shippable + green.** Never leave `develop` with a broken build or red tests at a session boundary. Small, self‑contained commits. +6. **Swift-native & Apple-first dependencies.** Prefer Swift SDKs over Objective-C ones (Dropbox → **SwiftyDropbox**, not `ObjectiveDropboxOfficial`) and a built-in Apple framework over a third-party dep wherever one exists (`os.Logger` not CocoaLumberjack; URLSession; CryptoKit). Keep a third-party dep only where Apple has no equivalent (ZIP → a **Swift** ZIP package, not the ObjC SSZipArchive). +7. **All cloud storage goes through `StorageProvider`.** Dropbox is just the first `DropboxStorageProvider`; the upload pipeline and UI depend on the protocol, never on a provider SDK. **No SwiftyDropbox (or any provider) type may leak outside its provider file.** Adding a backend (Google Drive, S3, …) must be a new file + a registry entry — nothing else. +8. **Keep the living docs current.** Whenever you make meaningful progress or the user gives a new instruction, update `AGENTS.md` and `plans/follow-ups.md` in the same change. The docs are the contract; stale docs are a bug. + +## Module / source layout + +| Path | What | +|------|------| +| `AppBox/` | The GUI app — **100% Swift + SwiftUI; zero Objective‑C** (no `.m`/`.h`/`.pch`). `@main struct AppBoxApp: App` + `@NSApplicationDelegateAdaptor(AppDelegate)`; Home/Dashboard are `Window` scenes hosting Swift NSViewControllers via `NSViewControllerRepresentable`; the menu is `.commands`. SwiftUI screens are NSViewController-hosted islands (`NSHostingView`); shared styling lives in `IslandStyle.swift` (`IslandMetrics`, `IslandTypography`, `.islandTypography()`). Key dirs: `Common/`, `Model/`, `ViewController/`. No storyboard, no pch, no generated `AppBox-Swift.h` (`SWIFT_INSTALL_OBJC_HEADER = NO`). Reach the AppDelegate via `AppDelegate.appDelegate` (captured in init — `NSApp.delegate` is SwiftUI's wrapper, see [[appbox-appdelegate-adaptor-cast]]). The GUI consumes Core's **native async API** directly (`UploadCoordinator.run`/`DeleteCoordinator.run`/`IPAExtractor`) — the `@objc(AB…)` upload/delete/extract bridges are gone. | +| `AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/` | Core Data model (loaded via `CoreDataStack` from `Bundle.module`). Current = `AppBox4` (frozen). | +| `AppBoxCLI/` | The CLI (Swift, `swift-argument-parser`). Links Core directly; `upload` shells out to the installed GUI. | +| `AppBoxCore/` | The shared Swift package. `Backend/` holds `AppBoxServiceClient` + `DropboxAppKeyProvider` (the install-helper API client). | +| `AppBoxTests/` | XCTest target (pure Swift). | +| `.github/workflows/` | `xcodebuild.yml` (build + test, on `master` and `develop`), `gh-pages.yml` (docs). | +| `docs/` | mkdocs site (published to GitHub Pages — keep planning docs OUT of here). | + +## Dependencies + +Current: Swift Package Manager only (ZIPFoundation, swift-argument-parser, **SwiftyDropbox** — in `AppBoxCore`, wrapped by `DropboxStorageProvider` / `DropboxSession` / `DropboxTransport`). `ObjectiveDropboxOfficial`, SSZipArchive, CocoaLumberjack, and the vendored `ABPrivate` framework have all been removed. No CocoaPods / Carthage, no vendored binaries. + +**How each concern was resolved (rules 6–7):** +| Concern | From | To | +|---------|------|----| +| Dropbox SDK | `ObjectiveDropboxOfficial` (ObjC xcframework) | **SwiftyDropbox** (SPM), behind `DropboxStorageProvider` | +| Logging | CocoaLumberjack | `os.Logger` (Apple unified logging) | +| ZIP/unzip | SSZipArchive (ObjC) | a **Swift** ZIP package (e.g. ZIPFoundation), behind `ArchiveExtractor` | +| Networking | URLSession (already) | URLSession behind `HTTPClient` | +| Hashing/crypto (if any) | — | CryptoKit | +| Cloud storage | Dropbox only | provider-agnostic `StorageProvider` + registry (Google Drive / S3 / … are future drop-ins) | + +## Build, test, run + +```bash +# Build the GUI +xcodebuild build -project AppBox.xcodeproj -scheme AppBox \ + CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO + +# Run the test plan (this is what CI runs). NOTE: the test plan is wired to the +# AppBoxTests scheme, not the AppBox scheme. +xcodebuild test -project AppBox.xcodeproj -scheme AppBoxTests -testPlan AppBoxTests \ + -destination 'platform=macOS' \ + CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO + +# AppBoxCore package alone. IMPORTANT: use `xcrun swift`, not bare `swift`. +# On this machine `swift` on PATH is a swiftly-managed 6.1.3 that is INCOMPATIBLE with the +# Xcode 26 SDK (fails with: could not build module '_Builtin_float'). `xcrun swift` resolves +# to Xcode's default toolchain, which is what the app build uses. (CI has no swiftly, so plain +# `swift test` is fine there.) +cd AppBoxCore && xcrun swift test +``` + +Coverage is enabled in `AppBoxTests/AppBoxTests.xctestplan` (scoped to the `AppBox` target). CI prints `xccov` report; gating is by diff coverage on changed Swift (ratchets up by phase). + +### Release builds (Developer ID) + +`Scripts/build-release.sh` builds, signs and packages both shippable products into `dist/` (gitignored): + +```bash +Scripts/build-release.sh # both products, Developer ID signed +Scripts/build-release.sh -tb # test, then build +Scripts/build-release.sh -t -s core # only the AppBoxCore package tests, nothing built +Scripts/build-release.sh -bc # build only the standalone CLI +Scripts/build-release.sh -tbnk AppBox # test, build, notarize + staple (DMG is default) +``` + +The flags are composable actions — `-t/--test`, `-b/--build`, `-n/--notarize` (implies `-b`) — combined with targets `-g/--gui` and `-c/--cli` (neither means both). Short flags cluster (`-tb`), only the last flag of a cluster may take a value (`-tbndk AppBox`), and every long option also accepts `--name=value`. With no action flag the script builds; `-t` on its own tests and exits. + +Everything shippable lands in one versioned directory: + +``` +dist/AppBox-/ + AppBox.dmg drag-to-Applications image — what getappbox.com/download serves + AppBox.app.zip the same AppBox.app, zipped with ditto — what install.sh downloads + appboxcli.zip appboxcli/ — binary + AppBoxCore_AppBoxCore.bundle + install.sh +``` + +**Every release must include `AppBox.dmg`.** The download page links straight at `releases/latest/download/AppBox.dmg` (no GitHub API, so no rate limit), so a release published without one 404s for every visitor. The DMG is therefore built by default with the GUI; `--no-dmg` skips it for fast local iteration only. + +The `.tar.gz` artifacts are gone — nothing consumed them once `install.sh` moved to the zip, which is the format `ditto` produces and consumes. + +Build intermediates (`AppBox.xcarchive`, `gui-export/`, `cli-derived/`, `cli-stage/`, `logs/`) stay directly under `dist/`, so the release directory holds only distributable files. Both products are signed with `Developer ID Application` (team `3PQ7E4L589`), hardened runtime, secure timestamp. Notarization needs a stored `notarytool` profile (`xcrun notarytool store-credentials`) or `APPLE_ID`/`APPLE_TEAM_ID`/`APPLE_APP_PASSWORD`; a `.app` and a `.dmg` get stapled, a bare executable cannot be, so the CLI's ticket is verified online. + +`-t` runs the suites before anything is built, so a red test never produces an artifact. `-s core|app|all` selects the suites — `core` is `xcrun swift test` in AppBoxCore, `app` is the AppBoxTests test plan. Each suite runs under a watchdog (`-T`, default 1200s) because the AppBoxTests host can hang at launch in `DropboxSession.setup` on some machines; `-s core` sidesteps that. + +**The CLI is not a single file.** `CoreDataStack` loads the compiled `AppBox.momd` out of `AppBoxCore_AppBoxCore.bundle`, which SwiftPM emits *next to the executable* — that is why the GUI copies both into `Contents/SharedSupport`. The standalone package therefore ships `appboxcli` + the bundle + an `install.sh` that puts both in `/lib/appbox` and symlinks only the executable onto `PATH` (`Bundle.main.executableURL.resolvingSymlinksInPath()` is one of the stack's bundle-search candidates, so the symlink resolves correctly). + +### Smoke tests (manual, before shipping) + +- **GUI:** launch → Dropbox login → select a real `.ipa` → upload → confirm OTA manifest + short link → confirm Slack/Teams/email notification (where configured). +- **CLI:** on a machine **without the GUI**, `appboxcli --ipa ...` uploads and prints the link; auth uses the shared Keychain token or its own OAuth. Subcommands: `upload`, `login`, `logout`, `whoami`, `space`, `list`, `delete`. +- **Core Data:** launch GUI against a v4 store copy → existing projects/uploads load; a CLI upload then appears in the GUI Dashboard (shared store). + +## Resume protocol (start of every session) + +1. Read local `plans/follow-ups.md` (git ignored) for what is still open. +2. `git log --oneline develop` and `git status`. +3. Run the test plan to confirm the baseline is green. +4. Keep `plans/follow-ups.md` updated as you go (it is the durable source of truth, not chat). + +## Conventions + +- Match the style of surrounding code. New code is Swift; tests are Swift + hermetic (no real Keychain / NSUserDefaults / network / filesystem — use the in‑memory fakes in the test target and an in‑memory Core Data container). +- Don't commit or push unless asked. If asked, branch from `develop`, never commit on `master`. +- Commit messages: write them like a human author — concise, plain, present-tense subject; optional short body explaining the why. **Do not add any AI/Claude `Co-Authored-By` trailer or tool attribution.** +- Markdown: don't hard-wrap prose. Keep each paragraph, bullet, and blockquote on a single line so it reflows on any screen width (a soft line break renders as a space, so fixed-column wraps break awkwardly on mobile). Tables, code fences, admonitions, link-reference definitions, and explicit hard breaks (trailing ` ` or `\`) are exempt. GitHub issue templates (`.github/ISSUE_TEMPLATE/`) render in comment context where soft breaks become `
`, so leave their line breaks intact. +- Comments: write self-documenting code and keep comments minimal. Do NOT add narration or rationale comments that restate what the code does or explain why it's there. Remove such comments when you touch a file. KEEP only: (1) the minimal file header (filename / author / date) and any license/SPDX header; (2) `// MARK:` marks and tooling directives (`// swift-tools-version:`, `// swiftlint:…`, `// eslint-…`, `webpackChunkName`, `@ts-…`, etc.); (3) `///` doc comments — but keep each to a one-line summary, with short `- Parameter` / `- Returns` lines only where the meaning isn't obvious. Delete commented-out code and decorative separators outright. diff --git a/AppBox.xcodeproj/project.pbxproj b/AppBox.xcodeproj/project.pbxproj index bef32723..59f4b02b 100644 --- a/AppBox.xcodeproj/project.pbxproj +++ b/AppBox.xcodeproj/project.pbxproj @@ -7,101 +7,79 @@ objects = { /* Begin PBXBuildFile section */ - 4410D18E26FF76A20046E5F9 /* DBAccountManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4410D18D26FF76A20046E5F9 /* DBAccountManager.m */; }; - 4410D19C26FF851D0046E5F9 /* CoreDataMigration3to4.xcmappingmodel in Sources */ = {isa = PBXBuildFile; fileRef = 4410D19B26FF851D0046E5F9 /* CoreDataMigration3to4.xcmappingmodel */; }; - 449BD6B8282111B0008EFB2B /* AppBoxService+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 449BD6B4282111B0008EFB2B /* AppBoxService+CoreDataProperties.m */; }; - 449BD6B9282111B0008EFB2B /* AppBoxService+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 449BD6B5282111B0008EFB2B /* AppBoxService+CoreDataClass.m */; }; - 4D3E492303A5E78B0417E17F /* ObjectiveDropboxOfficial.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 656E98171CB7E85AA663AFE8 /* ObjectiveDropboxOfficial.xcframework */; }; - 5D20E6B57EA90CA7D6EA21F7 /* IPAUploadInfoTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E65C0AF09D32F39F4259167 /* IPAUploadInfoTests.m */; }; - 6968AADC9DEB5554A06F19BD /* CocoaLumberjack in Frameworks */ = {isa = PBXBuildFile; productRef = 33146DD70AA7C380685E53AA /* CocoaLumberjack */; }; - 771E1F8D4D831C50C1178A75 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 09E11F809EFA1C7844F25D6B /* Cocoa.framework */; }; - AA11BB22CC33DD44EE550011 /* NetworkHandlerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550001 /* NetworkHandlerTests.m */; }; - AA11BB22CC33DD44EE550012 /* MobileProvisionTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550002 /* MobileProvisionTests.m */; }; - AA11BB22CC33DD44EE550013 /* KeychainHandlerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550003 /* KeychainHandlerTests.m */; }; - AA11BB22CC33DD44EE550014 /* UserDataTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550004 /* UserDataTests.m */; }; - AA11BB22CC33DD44EE550015 /* MailHandlerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550005 /* MailHandlerTests.m */; }; - AA11BB22CC33DD44EE550016 /* UpdateHandlerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550006 /* UpdateHandlerTests.m */; }; - AC4CF046F7F2B76CF56BF8E4 /* ObjectiveDropboxOfficial.xcframework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 656E98171CB7E85AA663AFE8 /* ObjectiveDropboxOfficial.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - B472C718BB3B23CCB6C65599 /* DefaultAppHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = AE09E956E87164818B25F099 /* DefaultAppHandler.m */; }; - D9E5B24A6827FC5AD68D29D0 /* CommonTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 544B2D28AEC66102492FA05E /* CommonTests.m */; }; + 5D20E6B57EA90CA7D6EA21F7 /* IPAUploadInfoTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E65C0AF09D32F39F4259167 /* IPAUploadInfoTests.swift */; }; + AA11BB22CC33DD44EE550012 /* MobileProvisionTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550002 /* MobileProvisionTests.swift */; }; + AA11BB22CC33DD44EE550014 /* UserDataTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550004 /* UserDataTests.swift */; }; + AA11BB22CC33DD44EE550015 /* MailHandlerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550005 /* MailHandlerTests.swift */; }; + AA11BB22CC33DD44EE550041 /* DBErrorHandlerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550031 /* DBErrorHandlerTests.swift */; }; + AA11BB22CC33DD44EE550042 /* CLISupportHelperTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA11BB22CC33DD44EE550032 /* CLISupportHelperTests.swift */; }; + AB00C0DE0000000000000007 /* AppServices.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00C0DE0000000000000006 /* AppServices.swift */; }; + AB00C0DE0000000000000009 /* AppBoxSecrets.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00C0DE0000000000000008 /* AppBoxSecrets.swift */; }; + AB00C0DE000000000000000C /* AppBoxSecrets.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00C0DE000000000000000D /* AppBoxSecrets.swift */; }; + AB00DA7A0000000000000020 /* ABProject+AppBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00DA7A0000000000000011 /* ABProject+AppBox.swift */; }; + AB00DA7A0000000000000021 /* ABUploadRecord+AppBox.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00DA7A0000000000000013 /* ABUploadRecord+AppBox.swift */; }; + AB00F1E50000000000000052 /* QRCodeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E50000000000000051 /* QRCodeView.swift */; }; + AB00F1E50000000000000062 /* ShowLinkView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E50000000000000061 /* ShowLinkView.swift */; }; + AB00F1E50000000000000072 /* ProvisioningDetailsView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E50000000000000071 /* ProvisioningDetailsView.swift */; }; + AB00F1E50000000000000082 /* ThirdPartyPreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E50000000000000081 /* ThirdPartyPreferencesView.swift */; }; + AB00F1E50000000000000092 /* EmailPreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E50000000000000091 /* EmailPreferencesView.swift */; }; + AB00F1E500000000000000A2 /* GeneralPreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E500000000000000A1 /* GeneralPreferencesView.swift */; }; + AB00F1E500000000000000B2 /* IslandStyle.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E500000000000000B1 /* IslandStyle.swift */; }; + AB00F1E500000000000000C2 /* HelpPreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E500000000000000C1 /* HelpPreferencesView.swift */; }; + AB00F1E500000000000000D2 /* PreferencesContainerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E500000000000000D1 /* PreferencesContainerView.swift */; }; + AB00F1E500000000000000E2 /* DashboardView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E500000000000000E1 /* DashboardView.swift */; }; + AB00F1E500000000000000F2 /* HomeView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E500000000000000F1 /* HomeView.swift */; }; + AB00F1E5000000000000AC02 /* AccountPreferencesView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000AC01 /* AccountPreferencesView.swift */; }; + AB00F1E5000000000000AD02 /* UploadAdvancedSettingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000AD01 /* UploadAdvancedSettingView.swift */; }; + AB00F1E5000000000000C0A2 /* Common.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000C0A1 /* Common.swift */; }; + AB00F1E5000000000000DA02 /* DefaultAppHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000DA01 /* DefaultAppHandler.swift */; }; + AB00F1E5000000000000DA12 /* UserData.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000DA11 /* UserData.swift */; }; + AB00F1E5000000000000DB02 /* DropboxLoginView.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000DB01 /* DropboxLoginView.swift */; }; + AB00F1E5000000000000DE02 /* DefaultSettings.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000DE01 /* DefaultSettings.swift */; }; + AB00F1E5000000000000EE02 /* DBErrorHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB00F1E5000000000000EE01 /* DBErrorHandler.swift */; }; + D9E5B24A6827FC5AD68D29D0 /* CommonTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 544B2D28AEC66102492FA05E /* CommonTests.swift */; }; DB04358B2E69628F005F0173 /* appboxcli in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB0435832E696255005F0173 /* appboxcli */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DB0435912E6962EA005F0173 /* CLISupportHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = DB0435902E6962EA005F0173 /* CLISupportHelper.m */; }; - DB1A06622160DCB4008D33FD /* CoreDataMigration2to3.xcmappingmodel in Sources */ = {isa = PBXBuildFile; fileRef = DB1A06612160DCB4008D33FD /* CoreDataMigration2to3.xcmappingmodel */; }; - DB1C84412079F54E007AC74C /* NSString+String.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1C84402079F54E007AC74C /* NSString+String.m */; }; - DB1FC5901FDEED5400179799 /* HomeWindowController.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1FC58F1FDEED5400179799 /* HomeWindowController.m */; }; - DB26297B1F95ED9A00C4C647 /* NSDate+Date.m in Sources */ = {isa = PBXBuildFile; fileRef = DB26297A1F95ED9A00C4C647 /* NSDate+Date.m */; }; + DB04358C2E69628F005F0173 /* AppBoxCore_AppBoxCore.bundle in CopyFiles */ = {isa = PBXBuildFile; fileRef = DB04358D2E69628F005F0173 /* AppBoxCore_AppBoxCore.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DB0435912E6962EA005F0173 /* CLISupportHelper.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB0435902E6962EA005F0173 /* CLISupportHelper.swift */; }; + DB1C84412079F54E007AC74C /* NSString+String.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB1C84402079F54E007AC74C /* NSString+String.swift */; }; + DB26297B1F95ED9A00C4C647 /* NSDate+Date.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB26297A1F95ED9A00C4C647 /* NSDate+Date.swift */; }; DB26297D1F95F35C00C4C647 /* AppBoxIcons.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DB26297C1F95F35C00C4C647 /* AppBoxIcons.xcassets */; }; - DB2629851F961F4700C4C647 /* DBErrorHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DB2629841F961F4700C4C647 /* DBErrorHandler.m */; }; - DB358B64216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B4C216FB1AA0080CAC0 /* ProvisioningProfile+CoreDataProperties.m */; }; - DB358B66216FB1AC0080CAC0 /* UploadRecord+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B4E216FB1AA0080CAC0 /* UploadRecord+CoreDataClass.m */; }; - DB358B68216FB1AC0080CAC0 /* ProvisionedDevice+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B50216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataClass.m */; }; - DB358B6A216FB1AC0080CAC0 /* ProvisionedDevice+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B53216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataProperties.m */; }; - DB358B6B216FB1AC0080CAC0 /* UploadRecord+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B57216FB1AB0080CAC0 /* UploadRecord+CoreDataProperties.m */; }; - DB358B6C216FB1AC0080CAC0 /* Project+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B58216FB1AB0080CAC0 /* Project+CoreDataProperties.m */; }; - DB358B6D216FB1AC0080CAC0 /* Project+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B59216FB1AB0080CAC0 /* Project+CoreDataClass.m */; }; - DB358B6E216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = DB358B5B216FB1AB0080CAC0 /* ProvisioningProfile+CoreDataClass.m */; }; - DB425C051F8A517D008CB032 /* DefaultSettings.m in Sources */ = {isa = PBXBuildFile; fileRef = DB425C041F8A517D008CB032 /* DefaultSettings.m */; }; - DB53856A2083622A004BFC84 /* NSURL+URL.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5385692083622A004BFC84 /* NSURL+URL.m */; }; - DB53856E20838913004BFC84 /* DragDropView.m in Sources */ = {isa = PBXBuildFile; fileRef = DB53856D20838913004BFC84 /* DragDropView.m */; }; - DB5C5A4F2D00BA9C000C4A20 /* NSException+Description.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5C5A4E2D00BA9C000C4A20 /* NSException+Description.m */; }; + DB53856A2083622A004BFC84 /* NSURL+URL.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB5385692083622A004BFC84 /* NSURL+URL.swift */; }; + DB5F76E62FE1622700CBF093 /* AppBoxCore in Frameworks */ = {isa = PBXBuildFile; productRef = AB00C0DE0000000000000002 /* AppBoxCore */; }; + DB5F76E72FE1622700CBF093 /* AppBoxCore in Frameworks */ = {isa = PBXBuildFile; productRef = AB00C0DE0000000000000003 /* AppBoxCore */; }; DB6F784F215D459A00C77966 /* AppBoxColors.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = DB6F784E215D459A00C77966 /* AppBoxColors.xcassets */; }; - DB831BCB1FF6B5780065B646 /* ABHudViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DB831BC91FF6B5780065B646 /* ABHudViewController.m */; }; - DB831BCC1FF6B5780065B646 /* ABHudViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DB831BCA1FF6B5780065B646 /* ABHudViewController.xib */; }; + DB831BCB1FF6B5780065B646 /* ABHudViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB831BC91FF6B5780065B646 /* ABHudViewController.swift */; }; DB8BAA912E6C433200186B7B /* ArgumentParser in Frameworks */ = {isa = PBXBuildFile; productRef = DB8BAA902E6C433200186B7B /* ArgumentParser */; }; - DB8CE5F81FF77199003FEB65 /* DisabledView.m in Sources */ = {isa = PBXBuildFile; fileRef = DB8CE5F71FF77199003FEB65 /* DisabledView.m */; }; - DBA66CF11FDCF4A60002A956 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = DBA66CF01FDCF4A60002A956 /* Main.storyboard */; }; - DBCD1563200BCD1C00C003E6 /* PreferencesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DBCD1562200BCD1C00C003E6 /* PreferencesViewController.xib */; }; - DBD1CE2F2156230800549C0A /* ABPrivate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DBD1CE2D2156230400549C0A /* ABPrivate.framework */; }; - DBD1CE302156230800549C0A /* ABPrivate.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = DBD1CE2D2156230400549C0A /* ABPrivate.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - DBDCFBBE1F99C7860022097B /* UploadManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DBDCFBBD1F99C7860022097B /* UploadManager.m */; }; - DBF290D71FA64A590046D5CE /* ProvisioningDetailsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DBF290D51FA64A590046D5CE /* ProvisioningDetailsViewController.m */; }; - DBF290D81FA64A590046D5CE /* ProvisioningDetailsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = DBF290D61FA64A590046D5CE /* ProvisioningDetailsViewController.xib */; }; - E11633991E558635005EAB31 /* MobileProvision.m in Sources */ = {isa = PBXBuildFile; fileRef = E11633981E558635005EAB31 /* MobileProvision.m */; }; - E12E6D0A1D8FC77D0054814D /* DashboardViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E12E6D081D8FC77D0054814D /* DashboardViewController.m */; }; - E13161F21E9777DF00586052 /* CLIIPAUpload.m in Sources */ = {isa = PBXBuildFile; fileRef = E13161F11E9777DF00586052 /* CLIIPAUpload.m */; }; - E13946121DF2AFCF00B3FAD0 /* IPAUploadInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = E13946111DF2AFCF00B3FAD0 /* IPAUploadInfo.m */; }; - E14F33341E1A64CA00C3DD34 /* NSApplication+MenuHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E14F33331E1A64CA00C3DD34 /* NSApplication+MenuHandler.m */; }; - E15C266A1D7FD5CE004243B9 /* ShowLinkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E15C26691D7FD5CE004243B9 /* ShowLinkViewController.m */; }; - E16018F01DEC0BC200E3A377 /* DropboxViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E16018EF1DEC0BC200E3A377 /* DropboxViewController.m */; }; - E16437D41D743A4E00CE8B7E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = E16437D31D743A4E00CE8B7E /* AppDelegate.m */; }; - E16437D71D743A4E00CE8B7E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E16437D61D743A4E00CE8B7E /* main.m */; }; - E16437DD1D743A4E00CE8B7E /* AppBox.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = E16437DB1D743A4E00CE8B7E /* AppBox.xcdatamodeld */; }; + DBDCFBBE1F99C7860022097B /* UploadManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBDCFBBD1F99C7860022097B /* UploadManager.swift */; }; + DBF290D71FA64A590046D5CE /* ProvisioningDetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBF290D51FA64A590046D5CE /* ProvisioningDetailsViewController.swift */; }; + E11633991E558635005EAB31 /* MobileProvision.swift in Sources */ = {isa = PBXBuildFile; fileRef = E11633981E558635005EAB31 /* MobileProvision.swift */; }; + E12E6D0A1D8FC77D0054814D /* DashboardViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12E6D081D8FC77D0054814D /* DashboardViewController.swift */; }; + E13946121DF2AFCF00B3FAD0 /* IPAUploadInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E13946111DF2AFCF00B3FAD0 /* IPAUploadInfo.swift */; }; + E14F33341E1A64CA00C3DD34 /* NSApplication+MenuHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14F33331E1A64CA00C3DD34 /* NSApplication+MenuHandler.swift */; }; + E15C266A1D7FD5CE004243B9 /* ShowLinkViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E15C26691D7FD5CE004243B9 /* ShowLinkViewController.swift */; }; + E16018F01DEC0BC200E3A377 /* DropboxViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16018EF1DEC0BC200E3A377 /* DropboxViewController.swift */; }; + E16437D41D743A4E00CE8B7E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16437D31D743A4E00CE8B7E /* AppDelegate.swift */; }; + E16437D71D743A4E00CE8B7E /* AppBoxApp.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16437D61D743A4E00CE8B7E /* AppBoxApp.swift */; }; E16437DF1D743A4E00CE8B7E /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E16437DE1D743A4E00CE8B7E /* Assets.xcassets */; }; - E16437F31D743B6800CE8B7E /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E16437F21D743B6800CE8B7E /* HomeViewController.m */; }; + E16437F31D743B6800CE8B7E /* HomeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E16437F21D743B6800CE8B7E /* HomeViewController.swift */; }; E16438971D743EA300CE8B7E /* WebKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E16438961D743EA300CE8B7E /* WebKit.framework */; }; E16438991D743EAA00CE8B7E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E16438981D743EAA00CE8B7E /* Cocoa.framework */; }; E16438A01D7469CD00CE8B7E /* AppKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E164389F1D7469CD00CE8B7E /* AppKit.framework */; }; E16438A21D7469D200CE8B7E /* CoreData.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E16438A11D7469D200CE8B7E /* CoreData.framework */; }; E16438A41D7469D900CE8B7E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E16438A31D7469D900CE8B7E /* Foundation.framework */; }; - E16BB8C020284236002E9B5A /* SelectAccountViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E16BB8BE20284236002E9B5A /* SelectAccountViewController.m */; }; - E16BB8C120284236002E9B5A /* SelectAccountViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E16BB8BF20284236002E9B5A /* SelectAccountViewController.xib */; }; - E16BB8C520285A38002E9B5A /* SelectAccountCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = E16BB8C420285A38002E9B5A /* SelectAccountCellView.m */; }; - E16BB8C9202873FA002E9B5A /* AccountCellView.m in Sources */ = {isa = PBXBuildFile; fileRef = E16BB8C8202873FA002E9B5A /* AccountCellView.m */; }; - E18186CE1E8A3BC00002509F /* PreferencesTabViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E18186CD1E8A3BC00002509F /* PreferencesTabViewController.m */; }; - E18186D61E8A45C30002509F /* PreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E18186D51E8A45C30002509F /* PreferencesViewController.m */; }; - E18186DC1E8A47C10002509F /* AccountPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E18186DB1E8A47C10002509F /* AccountPreferencesViewController.m */; }; - E18186DF1E8A47CD0002509F /* EmailPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E18186DE1E8A47CD0002509F /* EmailPreferencesViewController.m */; }; - E18186E21E8A47D60002509F /* HelpPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E18186E11E8A47D60002509F /* HelpPreferencesViewController.m */; }; - E1902B481E16423200C3E0F6 /* UploadAdvancedSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E1902B471E16423200C3E0F6 /* UploadAdvancedSettingViewController.m */; }; - E1902B531E16617B00C3E0F6 /* NetworkHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E1902B4E1E16617B00C3E0F6 /* NetworkHandler.m */; }; - E1902B541E16617B00C3E0F6 /* UserData.m in Sources */ = {isa = PBXBuildFile; fileRef = E1902B521E16617B00C3E0F6 /* UserData.m */; }; - E1902B5D1E1661B300C3E0F6 /* MailHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E1902B5C1E1661B300C3E0F6 /* MailHandler.m */; }; - E1902B601E1661BE00C3E0F6 /* UpdateHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E1902B5F1E1661BE00C3E0F6 /* UpdateHandler.m */; }; - E1902B641E16633A00C3E0F6 /* KeychainHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E1902B631E16633A00C3E0F6 /* KeychainHandler.m */; }; - E19473F5205F9FC800CF12F9 /* MSTeamsClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E19473F4205F9FC800CF12F9 /* MSTeamsClient.m */; }; - E19473FB205FD14C00CF12F9 /* NSColor+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = E19473FA205FD14C00CF12F9 /* NSColor+Color.m */; }; - E19473FF205FD3F100CF12F9 /* AppBoxTableRowView.m in Sources */ = {isa = PBXBuildFile; fileRef = E19473FE205FD3F100CF12F9 /* AppBoxTableRowView.m */; }; - E1AA0F441E2F328300BA81A1 /* QRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E1AA0F431E2F328300BA81A1 /* QRCodeViewController.m */; }; - E1C024711E9B4E6C00C87CC9 /* SlackClient.m in Sources */ = {isa = PBXBuildFile; fileRef = E1C024701E9B4E6C00C87CC9 /* SlackClient.m */; }; - E1CFC65E1D7E7FEA005872BE /* Common.m in Sources */ = {isa = PBXBuildFile; fileRef = E1CFC65D1D7E7FEA005872BE /* Common.m */; }; - E1D12EE31EC2F17B0065E59A /* ThirdPartyPreferencesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E1D12EE11EC2F17B0065E59A /* ThirdPartyPreferencesViewController.m */; }; - E1D12EE41EC2F17B0065E59A /* ThirdPartyPreferencesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E1D12EE21EC2F17B0065E59A /* ThirdPartyPreferencesViewController.xib */; }; - E1D12EE81EC2F4360065E59A /* PreferencesTabViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E1D12EE71EC2F4360065E59A /* PreferencesTabViewController.xib */; }; - E1D12EEA1EC2F5230065E59A /* EmailPreferencesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E1D12EE91EC2F5230065E59A /* EmailPreferencesViewController.xib */; }; - E1D12EEC1EC31AC80065E59A /* AccountPreferencesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E1D12EEB1EC31AC80065E59A /* AccountPreferencesViewController.xib */; }; - E1D12EEE1EC320760065E59A /* HelpPreferencesViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = E1D12EED1EC320760065E59A /* HelpPreferencesViewController.xib */; }; - E1DC26001ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.m in Sources */ = {isa = PBXBuildFile; fileRef = E1DC25FF1ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.m */; }; - F6AEC01BE879A2BB998E829D /* ZipArchive in Frameworks */ = {isa = PBXBuildFile; productRef = EFE5EA7464F3539F2562A787 /* ZipArchive */; }; + E18186CE1E8A3BC00002509F /* PreferencesTabViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E18186CD1E8A3BC00002509F /* PreferencesTabViewController.swift */; }; + E18186D61E8A45C30002509F /* PreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E18186D51E8A45C30002509F /* PreferencesViewController.swift */; }; + E18186DC1E8A47C10002509F /* AccountPreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E18186DB1E8A47C10002509F /* AccountPreferencesViewController.swift */; }; + E18186DF1E8A47CD0002509F /* EmailPreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E18186DE1E8A47CD0002509F /* EmailPreferencesViewController.swift */; }; + E18186E21E8A47D60002509F /* HelpPreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E18186E11E8A47D60002509F /* HelpPreferencesViewController.swift */; }; + E1902B481E16423200C3E0F6 /* UploadAdvancedSettingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1902B471E16423200C3E0F6 /* UploadAdvancedSettingViewController.swift */; }; + E1902B5D1E1661B300C3E0F6 /* MailHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1902B5C1E1661B300C3E0F6 /* MailHandler.swift */; }; + E1902B601E1661BE00C3E0F6 /* UpdateHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1902B5F1E1661BE00C3E0F6 /* UpdateHandler.swift */; }; + E19473F5205F9FC800CF12F9 /* MSTeamsClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = E19473F4205F9FC800CF12F9 /* MSTeamsClient.swift */; }; + E19473FF205FD3F100CF12F9 /* AppBoxTableRowView.swift in Sources */ = {isa = PBXBuildFile; fileRef = E19473FE205FD3F100CF12F9 /* AppBoxTableRowView.swift */; }; + E1AA0F441E2F328300BA81A1 /* QRCodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1AA0F431E2F328300BA81A1 /* QRCodeViewController.swift */; }; + E1C024711E9B4E6C00C87CC9 /* SlackClient.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C024701E9B4E6C00C87CC9 /* SlackClient.swift */; }; + E1D12EE31EC2F17B0065E59A /* ThirdPartyPreferencesViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1D12EE11EC2F17B0065E59A /* ThirdPartyPreferencesViewController.swift */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -112,6 +90,13 @@ remoteGlobalIDString = E16437CE1D743A4E00CE8B7E; remoteInfo = AppBox; }; + AB00C0DE0000000000000004 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E16437C71D743A4E00CE8B7E /* Project object */; + proxyType = 1; + remoteGlobalIDString = DB0435822E696255005F0173; + remoteInfo = AppBoxCLI; + }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -122,211 +107,93 @@ dstSubfolderSpec = 12; files = ( DB04358B2E69628F005F0173 /* appboxcli in CopyFiles */, + DB04358C2E69628F005F0173 /* AppBoxCore_AppBoxCore.bundle in CopyFiles */, ); runOnlyForDeploymentPostprocessing = 0; }; - DB0435812E696255005F0173 /* CopyFiles */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = /usr/share/man/man1/; - dstSubfolderSpec = 0; - files = ( - ); - runOnlyForDeploymentPostprocessing = 1; - }; - E19973332091D2640035CCE9 /* Embed Frameworks */ = { - isa = PBXCopyFilesBuildPhase; - buildActionMask = 2147483647; - dstPath = ""; - dstSubfolderSpec = 10; - files = ( - DBD1CE302156230800549C0A /* ABPrivate.framework in Embed Frameworks */, - AC4CF046F7F2B76CF56BF8E4 /* ObjectiveDropboxOfficial.xcframework in Embed Frameworks */, - ); - name = "Embed Frameworks"; - runOnlyForDeploymentPostprocessing = 0; - }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 07AC024B5902E74BBBD280F9 /* DefaultAppHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = DefaultAppHandler.h; sourceTree = ""; }; - 09E11F809EFA1C7844F25D6B /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.0.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; - 3E65C0AF09D32F39F4259167 /* IPAUploadInfoTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = IPAUploadInfoTests.m; path = Model/IPAUploadInfoTests.m; sourceTree = ""; }; - 4410D18C26FF76A20046E5F9 /* DBAccountManager.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DBAccountManager.h; sourceTree = ""; }; - 4410D18D26FF76A20046E5F9 /* DBAccountManager.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DBAccountManager.m; sourceTree = ""; }; - 4410D19B26FF851D0046E5F9 /* CoreDataMigration3to4.xcmappingmodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcmappingmodel; path = CoreDataMigration3to4.xcmappingmodel; sourceTree = ""; }; - 449BD6B4282111B0008EFB2B /* AppBoxService+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AppBoxService+CoreDataProperties.m"; sourceTree = ""; }; - 449BD6B5282111B0008EFB2B /* AppBoxService+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AppBoxService+CoreDataClass.m"; sourceTree = ""; }; - 449BD6B6282111B0008EFB2B /* AppBoxService+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AppBoxService+CoreDataProperties.h"; sourceTree = ""; }; - 449BD6B7282111B0008EFB2B /* AppBoxService+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AppBoxService+CoreDataClass.h"; sourceTree = ""; }; - 44DCC66B25EEA1910074AB1E /* AppBox4.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = AppBox4.xcdatamodel; sourceTree = ""; }; - 544B2D28AEC66102492FA05E /* CommonTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = CommonTests.m; path = Common/CommonTests.m; sourceTree = ""; }; - 656E98171CB7E85AA663AFE8 /* ObjectiveDropboxOfficial.xcframework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcframework; name = ObjectiveDropboxOfficial.xcframework; path = Frameworks/ObjectiveDropboxOfficial.xcframework; sourceTree = ""; }; - AA11BB22CC33DD44EE550001 /* NetworkHandlerTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NetworkHandlerTests.m; path = Common/NetworkHandler/NetworkHandlerTests.m; sourceTree = ""; }; - AA11BB22CC33DD44EE550002 /* MobileProvisionTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MobileProvisionTests.m; path = Common/MobileProvision/MobileProvisionTests.m; sourceTree = ""; }; - AA11BB22CC33DD44EE550003 /* KeychainHandlerTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = KeychainHandlerTests.m; path = Common/KeychainHandler/KeychainHandlerTests.m; sourceTree = ""; }; - AA11BB22CC33DD44EE550004 /* UserDataTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UserDataTests.m; path = Common/UserManager/UserDataTests.m; sourceTree = ""; }; - AA11BB22CC33DD44EE550005 /* MailHandlerTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MailHandlerTests.m; path = Common/MailHandler/MailHandlerTests.m; sourceTree = ""; }; - AA11BB22CC33DD44EE550006 /* UpdateHandlerTests.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = UpdateHandlerTests.m; path = Common/UpdateHandler/UpdateHandlerTests.m; sourceTree = ""; }; - AE09E956E87164818B25F099 /* DefaultAppHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = DefaultAppHandler.m; sourceTree = ""; }; + 3E65C0AF09D32F39F4259167 /* IPAUploadInfoTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IPAUploadInfoTests.swift; path = Model/IPAUploadInfoTests.swift; sourceTree = ""; }; + 544B2D28AEC66102492FA05E /* CommonTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommonTests.swift; path = Common/CommonTests.swift; sourceTree = ""; }; + AA11BB22CC33DD44EE550002 /* MobileProvisionTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MobileProvisionTests.swift; path = Common/MobileProvision/MobileProvisionTests.swift; sourceTree = ""; }; + AA11BB22CC33DD44EE550004 /* UserDataTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UserDataTests.swift; path = Common/UserManager/UserDataTests.swift; sourceTree = ""; }; + AA11BB22CC33DD44EE550005 /* MailHandlerTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MailHandlerTests.swift; path = Common/MailHandler/MailHandlerTests.swift; sourceTree = ""; }; + AA11BB22CC33DD44EE550031 /* DBErrorHandlerTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DBErrorHandlerTests.swift; path = Common/DBErrorHandlerTests.swift; sourceTree = ""; }; + AA11BB22CC33DD44EE550032 /* CLISupportHelperTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CLISupportHelperTests.swift; path = Common/CLISupportHelperTests.swift; sourceTree = ""; }; + AB00C0DE0000000000000006 /* AppServices.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppServices.swift; sourceTree = ""; }; + AB00C0DE0000000000000008 /* AppBoxSecrets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppBoxSecrets.swift; path = Generated/AppBox/AppBoxSecrets.swift; sourceTree = SOURCE_ROOT; }; + AB00C0DE000000000000000D /* AppBoxSecrets.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = AppBoxSecrets.swift; path = Generated/AppBoxCLI/AppBoxSecrets.swift; sourceTree = SOURCE_ROOT; }; + AB00DA7A0000000000000011 /* ABProject+AppBox.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ABProject+AppBox.swift"; sourceTree = ""; }; + AB00DA7A0000000000000013 /* ABUploadRecord+AppBox.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "ABUploadRecord+AppBox.swift"; sourceTree = ""; }; + AB00F1E50000000000000051 /* QRCodeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeView.swift; sourceTree = ""; }; + AB00F1E50000000000000061 /* ShowLinkView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowLinkView.swift; sourceTree = ""; }; + AB00F1E50000000000000071 /* ProvisioningDetailsView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvisioningDetailsView.swift; sourceTree = ""; }; + AB00F1E50000000000000081 /* ThirdPartyPreferencesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThirdPartyPreferencesView.swift; sourceTree = ""; }; + AB00F1E50000000000000091 /* EmailPreferencesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmailPreferencesView.swift; sourceTree = ""; }; + AB00F1E500000000000000A1 /* GeneralPreferencesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = GeneralPreferencesView.swift; sourceTree = ""; }; + AB00F1E500000000000000B1 /* IslandStyle.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; name = IslandStyle.swift; path = SwiftUI/IslandStyle.swift; sourceTree = ""; }; + AB00F1E500000000000000C1 /* HelpPreferencesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HelpPreferencesView.swift; sourceTree = ""; }; + AB00F1E500000000000000D1 /* PreferencesContainerView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferencesContainerView.swift; sourceTree = ""; }; + AB00F1E500000000000000E1 /* DashboardView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardView.swift; sourceTree = ""; }; + AB00F1E500000000000000F1 /* HomeView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeView.swift; sourceTree = ""; }; + AB00F1E5000000000000AC01 /* AccountPreferencesView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountPreferencesView.swift; sourceTree = ""; }; + AB00F1E5000000000000AD01 /* UploadAdvancedSettingView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UploadAdvancedSettingView.swift; sourceTree = ""; }; + AB00F1E5000000000000C0A1 /* Common.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Common.swift; sourceTree = ""; }; + AB00F1E5000000000000DA01 /* DefaultAppHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefaultAppHandler.swift; sourceTree = ""; }; + AB00F1E5000000000000DA11 /* UserData.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UserData.swift; sourceTree = ""; }; + AB00F1E5000000000000DB01 /* DropboxLoginView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DropboxLoginView.swift; sourceTree = ""; }; + AB00F1E5000000000000DE01 /* DefaultSettings.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DefaultSettings.swift; sourceTree = ""; }; + AB00F1E5000000000000EE01 /* DBErrorHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DBErrorHandler.swift; sourceTree = ""; }; DB0435832E696255005F0173 /* appboxcli */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = appboxcli; sourceTree = BUILT_PRODUCTS_DIR; }; - DB04358F2E6962EA005F0173 /* CLISupportHelper.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CLISupportHelper.h; sourceTree = ""; }; - DB0435902E6962EA005F0173 /* CLISupportHelper.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CLISupportHelper.m; sourceTree = ""; }; - DB1A06592160D47C008D33FD /* AppBox3.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = AppBox3.xcdatamodel; sourceTree = ""; }; - DB1A06612160DCB4008D33FD /* CoreDataMigration2to3.xcmappingmodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcmappingmodel; path = CoreDataMigration2to3.xcmappingmodel; sourceTree = ""; }; - DB1C843F2079F54E007AC74C /* NSString+String.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+String.h"; sourceTree = ""; }; - DB1C84402079F54E007AC74C /* NSString+String.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+String.m"; sourceTree = ""; }; - DB1FC58E1FDEED5400179799 /* HomeWindowController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeWindowController.h; sourceTree = ""; }; - DB1FC58F1FDEED5400179799 /* HomeWindowController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeWindowController.m; sourceTree = ""; }; - DB2629791F95ED9A00C4C647 /* NSDate+Date.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Date.h"; sourceTree = ""; }; - DB26297A1F95ED9A00C4C647 /* NSDate+Date.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Date.m"; sourceTree = ""; }; + DB04358D2E69628F005F0173 /* AppBoxCore_AppBoxCore.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AppBoxCore_AppBoxCore.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + DB0435902E6962EA005F0173 /* CLISupportHelper.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CLISupportHelper.swift; sourceTree = ""; }; + DB1C84402079F54E007AC74C /* NSString+String.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSString+String.swift"; sourceTree = ""; }; + DB26297A1F95ED9A00C4C647 /* NSDate+Date.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSDate+Date.swift"; sourceTree = ""; }; DB26297C1F95F35C00C4C647 /* AppBoxIcons.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = AppBoxIcons.xcassets; sourceTree = ""; }; - DB2629831F961F4700C4C647 /* DBErrorHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DBErrorHandler.h; sourceTree = ""; }; - DB2629841F961F4700C4C647 /* DBErrorHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DBErrorHandler.m; sourceTree = ""; }; - DB358B4C216FB1AA0080CAC0 /* ProvisioningProfile+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ProvisioningProfile+CoreDataProperties.m"; sourceTree = ""; }; - DB358B4E216FB1AA0080CAC0 /* UploadRecord+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UploadRecord+CoreDataClass.m"; sourceTree = ""; }; - DB358B50216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ProvisionedDevice+CoreDataClass.m"; sourceTree = ""; }; - DB358B52216FB1AB0080CAC0 /* UploadRecord+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UploadRecord+CoreDataProperties.h"; sourceTree = ""; }; - DB358B53216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ProvisionedDevice+CoreDataProperties.m"; sourceTree = ""; }; - DB358B54216FB1AB0080CAC0 /* Project+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Project+CoreDataClass.h"; sourceTree = ""; }; - DB358B57216FB1AB0080CAC0 /* UploadRecord+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UploadRecord+CoreDataProperties.m"; sourceTree = ""; }; - DB358B58216FB1AB0080CAC0 /* Project+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Project+CoreDataProperties.m"; sourceTree = ""; }; - DB358B59216FB1AB0080CAC0 /* Project+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Project+CoreDataClass.m"; sourceTree = ""; }; - DB358B5A216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ProvisionedDevice+CoreDataProperties.h"; sourceTree = ""; }; - DB358B5B216FB1AB0080CAC0 /* ProvisioningProfile+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "ProvisioningProfile+CoreDataClass.m"; sourceTree = ""; }; - DB358B5E216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ProvisionedDevice+CoreDataClass.h"; sourceTree = ""; }; - DB358B5F216FB1AB0080CAC0 /* Project+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Project+CoreDataProperties.h"; sourceTree = ""; }; - DB358B61216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ProvisioningProfile+CoreDataClass.h"; sourceTree = ""; }; - DB358B62216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "ProvisioningProfile+CoreDataProperties.h"; sourceTree = ""; }; - DB358B63216FB1AC0080CAC0 /* UploadRecord+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UploadRecord+CoreDataClass.h"; sourceTree = ""; }; - DB425C031F8A517D008CB032 /* DefaultSettings.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DefaultSettings.h; sourceTree = ""; }; - DB425C041F8A517D008CB032 /* DefaultSettings.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DefaultSettings.m; sourceTree = ""; }; - DB5385682083622A004BFC84 /* NSURL+URL.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSURL+URL.h"; sourceTree = ""; }; - DB5385692083622A004BFC84 /* NSURL+URL.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSURL+URL.m"; sourceTree = ""; }; - DB53856C20838913004BFC84 /* DragDropView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DragDropView.h; sourceTree = ""; }; - DB53856D20838913004BFC84 /* DragDropView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DragDropView.m; sourceTree = ""; }; + DB5385692083622A004BFC84 /* NSURL+URL.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSURL+URL.swift"; sourceTree = ""; }; DB5BA11E2FC9C91D00A150BA /* AppBoxTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AppBoxTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; DB5BA12A2FC9C94E00A150BA /* AppBoxTests.xctestplan */ = {isa = PBXFileReference; lastKnownFileType = text; path = AppBoxTests.xctestplan; sourceTree = ""; }; - DB5C5A4D2D00BA9C000C4A20 /* NSException+Description.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSException+Description.h"; sourceTree = ""; }; - DB5C5A4E2D00BA9C000C4A20 /* NSException+Description.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSException+Description.m"; sourceTree = ""; }; DB6F784E215D459A00C77966 /* AppBoxColors.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = AppBoxColors.xcassets; sourceTree = ""; }; - DB831BC81FF6B5780065B646 /* ABHudViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ABHudViewController.h; sourceTree = ""; }; - DB831BC91FF6B5780065B646 /* ABHudViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ABHudViewController.m; sourceTree = ""; }; - DB831BCA1FF6B5780065B646 /* ABHudViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = ABHudViewController.xib; sourceTree = ""; }; - DB8CE5F61FF77199003FEB65 /* DisabledView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DisabledView.h; sourceTree = ""; }; - DB8CE5F71FF77199003FEB65 /* DisabledView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DisabledView.m; sourceTree = ""; }; - DBA66CF01FDCF4A60002A956 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = ""; }; - DBCD1562200BCD1C00C003E6 /* PreferencesViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreferencesViewController.xib; sourceTree = ""; }; - DBD1CE2D2156230400549C0A /* ABPrivate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ABPrivate.framework; path = Frameworks/ABPrivate.framework; sourceTree = ""; }; + DB831BC91FF6B5780065B646 /* ABHudViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ABHudViewController.swift; sourceTree = ""; }; DBD1CE3221562EC300549C0A /* AppBox.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = AppBox.entitlements; sourceTree = ""; }; - DBDCFBBC1F99C7860022097B /* UploadManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UploadManager.h; sourceTree = ""; }; - DBDCFBBD1F99C7860022097B /* UploadManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UploadManager.m; sourceTree = ""; }; - DBF290D41FA64A590046D5CE /* ProvisioningDetailsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ProvisioningDetailsViewController.h; sourceTree = ""; }; - DBF290D51FA64A590046D5CE /* ProvisioningDetailsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ProvisioningDetailsViewController.m; sourceTree = ""; }; - DBF290D61FA64A590046D5CE /* ProvisioningDetailsViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ProvisioningDetailsViewController.xib; sourceTree = ""; }; - DBFEEA551FA5BA4700F09ECD /* AppBox2.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = AppBox2.xcdatamodel; sourceTree = ""; }; - E11633971E558635005EAB31 /* MobileProvision.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MobileProvision.h; sourceTree = ""; }; - E11633981E558635005EAB31 /* MobileProvision.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MobileProvision.m; sourceTree = ""; }; - E12E6D071D8FC77D0054814D /* DashboardViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DashboardViewController.h; sourceTree = ""; }; - E12E6D081D8FC77D0054814D /* DashboardViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DashboardViewController.m; sourceTree = ""; }; - E13161F01E9777DF00586052 /* CLIIPAUpload.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CLIIPAUpload.h; sourceTree = ""; }; - E13161F11E9777DF00586052 /* CLIIPAUpload.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CLIIPAUpload.m; sourceTree = ""; }; - E13946101DF2AFCF00B3FAD0 /* IPAUploadInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IPAUploadInfo.h; sourceTree = ""; }; - E13946111DF2AFCF00B3FAD0 /* IPAUploadInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IPAUploadInfo.m; sourceTree = ""; }; - E13946131DF2AFFF00B3FAD0 /* AppBoxPrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AppBoxPrefixHeader.pch; sourceTree = ""; }; - E14F33321E1A64CA00C3DD34 /* NSApplication+MenuHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSApplication+MenuHandler.h"; sourceTree = ""; }; - E14F33331E1A64CA00C3DD34 /* NSApplication+MenuHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSApplication+MenuHandler.m"; sourceTree = ""; }; - E15C26681D7FD5CE004243B9 /* ShowLinkViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ShowLinkViewController.h; sourceTree = ""; }; - E15C26691D7FD5CE004243B9 /* ShowLinkViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ShowLinkViewController.m; sourceTree = ""; }; - E16018EE1DEC0BC200E3A377 /* DropboxViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DropboxViewController.h; sourceTree = ""; }; - E16018EF1DEC0BC200E3A377 /* DropboxViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DropboxViewController.m; sourceTree = ""; }; - E16018F11DEC0EB700E3A377 /* Constants.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Constants.h; sourceTree = ""; }; + DBDCFBBD1F99C7860022097B /* UploadManager.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UploadManager.swift; sourceTree = ""; }; + DBF290D51FA64A590046D5CE /* ProvisioningDetailsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ProvisioningDetailsViewController.swift; sourceTree = ""; }; + E11633981E558635005EAB31 /* MobileProvision.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MobileProvision.swift; sourceTree = ""; }; + E12E6D081D8FC77D0054814D /* DashboardViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DashboardViewController.swift; sourceTree = ""; }; + E13946111DF2AFCF00B3FAD0 /* IPAUploadInfo.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = IPAUploadInfo.swift; sourceTree = ""; }; + E14F33331E1A64CA00C3DD34 /* NSApplication+MenuHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "NSApplication+MenuHandler.swift"; sourceTree = ""; }; + E15C26691D7FD5CE004243B9 /* ShowLinkViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShowLinkViewController.swift; sourceTree = ""; }; + E16018EF1DEC0BC200E3A377 /* DropboxViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = DropboxViewController.swift; sourceTree = ""; }; E16437CF1D743A4E00CE8B7E /* AppBox.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = AppBox.app; sourceTree = BUILT_PRODUCTS_DIR; }; - E16437D21D743A4E00CE8B7E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; - E16437D31D743A4E00CE8B7E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; - E16437D61D743A4E00CE8B7E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - E16437DC1D743A4E00CE8B7E /* AppBox.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = AppBox.xcdatamodel; sourceTree = ""; }; + E16437D31D743A4E00CE8B7E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + E16437D61D743A4E00CE8B7E /* AppBoxApp.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppBoxApp.swift; sourceTree = ""; }; E16437DE1D743A4E00CE8B7E /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = AppBox/Assets.xcassets; sourceTree = SOURCE_ROOT; }; E16437E31D743A4E00CE8B7E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; - E16437F11D743B6800CE8B7E /* HomeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = ""; }; - E16437F21D743B6800CE8B7E /* HomeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = ""; }; + E16437F21D743B6800CE8B7E /* HomeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeViewController.swift; sourceTree = ""; }; E16438961D743EA300CE8B7E /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; }; E16438981D743EAA00CE8B7E /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; }; E164389F1D7469CD00CE8B7E /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; }; E16438A11D7469D200CE8B7E /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; }; E16438A31D7469D900CE8B7E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - E16BB8BD20284236002E9B5A /* SelectAccountViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectAccountViewController.h; sourceTree = ""; }; - E16BB8BE20284236002E9B5A /* SelectAccountViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectAccountViewController.m; sourceTree = ""; }; - E16BB8BF20284236002E9B5A /* SelectAccountViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = SelectAccountViewController.xib; sourceTree = ""; }; - E16BB8C320285A38002E9B5A /* SelectAccountCellView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SelectAccountCellView.h; sourceTree = ""; }; - E16BB8C420285A38002E9B5A /* SelectAccountCellView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SelectAccountCellView.m; sourceTree = ""; }; - E16BB8C7202873FA002E9B5A /* AccountCellView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccountCellView.h; sourceTree = ""; }; - E16BB8C8202873FA002E9B5A /* AccountCellView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AccountCellView.m; sourceTree = ""; }; - E18186CC1E8A3BC00002509F /* PreferencesTabViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PreferencesTabViewController.h; sourceTree = ""; }; - E18186CD1E8A3BC00002509F /* PreferencesTabViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PreferencesTabViewController.m; sourceTree = ""; }; - E18186D41E8A45C30002509F /* PreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PreferencesViewController.h; sourceTree = ""; }; - E18186D51E8A45C30002509F /* PreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PreferencesViewController.m; sourceTree = ""; }; - E18186DA1E8A47C10002509F /* AccountPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AccountPreferencesViewController.h; sourceTree = ""; }; - E18186DB1E8A47C10002509F /* AccountPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AccountPreferencesViewController.m; sourceTree = ""; }; - E18186DD1E8A47CD0002509F /* EmailPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EmailPreferencesViewController.h; sourceTree = ""; }; - E18186DE1E8A47CD0002509F /* EmailPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EmailPreferencesViewController.m; sourceTree = ""; }; - E18186E01E8A47D60002509F /* HelpPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HelpPreferencesViewController.h; sourceTree = ""; }; - E18186E11E8A47D60002509F /* HelpPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HelpPreferencesViewController.m; sourceTree = ""; }; - E1902B461E16423200C3E0F6 /* UploadAdvancedSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UploadAdvancedSettingViewController.h; sourceTree = ""; }; - E1902B471E16423200C3E0F6 /* UploadAdvancedSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UploadAdvancedSettingViewController.m; sourceTree = ""; }; - E1902B4D1E16617B00C3E0F6 /* NetworkHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NetworkHandler.h; sourceTree = ""; }; - E1902B4E1E16617B00C3E0F6 /* NetworkHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = NetworkHandler.m; sourceTree = ""; }; - E1902B511E16617B00C3E0F6 /* UserData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UserData.h; sourceTree = ""; }; - E1902B521E16617B00C3E0F6 /* UserData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UserData.m; sourceTree = ""; }; - E1902B5B1E1661B300C3E0F6 /* MailHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MailHandler.h; sourceTree = ""; }; - E1902B5C1E1661B300C3E0F6 /* MailHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MailHandler.m; sourceTree = ""; }; - E1902B5E1E1661BE00C3E0F6 /* UpdateHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UpdateHandler.h; sourceTree = ""; }; - E1902B5F1E1661BE00C3E0F6 /* UpdateHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = UpdateHandler.m; sourceTree = ""; }; - E1902B621E16633A00C3E0F6 /* KeychainHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KeychainHandler.h; sourceTree = ""; }; - E1902B631E16633A00C3E0F6 /* KeychainHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KeychainHandler.m; sourceTree = ""; }; - E19473F3205F9FC800CF12F9 /* MSTeamsClient.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MSTeamsClient.h; sourceTree = ""; }; - E19473F4205F9FC800CF12F9 /* MSTeamsClient.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MSTeamsClient.m; sourceTree = ""; }; - E19473F9205FD14C00CF12F9 /* NSColor+Color.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSColor+Color.h"; sourceTree = ""; }; - E19473FA205FD14C00CF12F9 /* NSColor+Color.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSColor+Color.m"; sourceTree = ""; }; - E19473FD205FD3F100CF12F9 /* AppBoxTableRowView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppBoxTableRowView.h; sourceTree = ""; }; - E19473FE205FD3F100CF12F9 /* AppBoxTableRowView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppBoxTableRowView.m; sourceTree = ""; }; - E1AA0F421E2F328300BA81A1 /* QRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = QRCodeViewController.h; sourceTree = ""; }; - E1AA0F431E2F328300BA81A1 /* QRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = QRCodeViewController.m; sourceTree = ""; }; - E1C0246F1E9B4E6C00C87CC9 /* SlackClient.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SlackClient.h; sourceTree = ""; }; - E1C024701E9B4E6C00C87CC9 /* SlackClient.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SlackClient.m; sourceTree = ""; }; - E1CFC65C1D7E7FEA005872BE /* Common.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Common.h; sourceTree = ""; }; - E1CFC65D1D7E7FEA005872BE /* Common.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Common.m; sourceTree = ""; }; - E1D12EE01EC2F17B0065E59A /* ThirdPartyPreferencesViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ThirdPartyPreferencesViewController.h; sourceTree = ""; }; - E1D12EE11EC2F17B0065E59A /* ThirdPartyPreferencesViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ThirdPartyPreferencesViewController.m; sourceTree = ""; }; - E1D12EE21EC2F17B0065E59A /* ThirdPartyPreferencesViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = ThirdPartyPreferencesViewController.xib; sourceTree = ""; }; - E1D12EE71EC2F4360065E59A /* PreferencesTabViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PreferencesTabViewController.xib; sourceTree = ""; }; - E1D12EE91EC2F5230065E59A /* EmailPreferencesViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = EmailPreferencesViewController.xib; sourceTree = ""; }; - E1D12EEB1EC31AC80065E59A /* AccountPreferencesViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = AccountPreferencesViewController.xib; sourceTree = ""; }; - E1D12EED1EC320760065E59A /* HelpPreferencesViewController.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = HelpPreferencesViewController.xib; sourceTree = ""; }; - E1DC25F91ECD826C001EF106 /* OtherServicesKeys.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OtherServicesKeys.h; sourceTree = ""; }; - E1DC25FE1ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD+ProgressHud.h"; sourceTree = ""; }; - E1DC25FF1ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD+ProgressHud.m"; sourceTree = ""; }; - E1FECA821E83EE5000C4E9AE /* HTTPStatusCode.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HTTPStatusCode.h; sourceTree = ""; }; + E18186CD1E8A3BC00002509F /* PreferencesTabViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferencesTabViewController.swift; sourceTree = ""; }; + E18186D51E8A45C30002509F /* PreferencesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = PreferencesViewController.swift; sourceTree = ""; }; + E18186DB1E8A47C10002509F /* AccountPreferencesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AccountPreferencesViewController.swift; sourceTree = ""; }; + E18186DE1E8A47CD0002509F /* EmailPreferencesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = EmailPreferencesViewController.swift; sourceTree = ""; }; + E18186E11E8A47D60002509F /* HelpPreferencesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HelpPreferencesViewController.swift; sourceTree = ""; }; + E1902B471E16423200C3E0F6 /* UploadAdvancedSettingViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UploadAdvancedSettingViewController.swift; sourceTree = ""; }; + E1902B5C1E1661B300C3E0F6 /* MailHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MailHandler.swift; sourceTree = ""; }; + E1902B5F1E1661BE00C3E0F6 /* UpdateHandler.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UpdateHandler.swift; sourceTree = ""; }; + E19473F4205F9FC800CF12F9 /* MSTeamsClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MSTeamsClient.swift; sourceTree = ""; }; + E19473FE205FD3F100CF12F9 /* AppBoxTableRowView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppBoxTableRowView.swift; sourceTree = ""; }; + E1AA0F431E2F328300BA81A1 /* QRCodeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = QRCodeViewController.swift; sourceTree = ""; }; + E1C024701E9B4E6C00C87CC9 /* SlackClient.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SlackClient.swift; sourceTree = ""; }; + E1D12EE11EC2F17B0065E59A /* ThirdPartyPreferencesViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ThirdPartyPreferencesViewController.swift; sourceTree = ""; }; /* End PBXFileReference section */ -/* Begin PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet section */ - DB04358D2E696299005F0173 /* Exceptions for "AppBoxCLI" folder in "Copy Files" phase from "AppBox" target */ = { - isa = PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet; - buildPhase = DB04357E2E696172005F0173 /* CopyFiles */; - membershipExceptions = ( - Scripts/install.sh, - Scripts/uninstall.sh, - Scripts/update.sh, - ); - }; -/* End PBXFileSystemSynchronizedGroupBuildPhaseMembershipExceptionSet section */ - /* Begin PBXFileSystemSynchronizedRootGroup section */ DB0435842E696255005F0173 /* AppBoxCLI */ = { isa = PBXFileSystemSynchronizedRootGroup; - exceptions = ( - DB04358D2E696299005F0173 /* Exceptions for "AppBoxCLI" folder in "Copy Files" phase from "AppBox" target */, - ); path = AppBoxCLI; sourceTree = ""; }; @@ -337,7 +204,6 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 771E1F8D4D831C50C1178A75 /* Cocoa.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -345,6 +211,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + DB5F76E72FE1622700CBF093 /* AppBoxCore in Frameworks */, DB8BAA912E6C433200186B7B /* ArgumentParser in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; @@ -353,15 +220,12 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + DB5F76E62FE1622700CBF093 /* AppBoxCore in Frameworks */, E16438A01D7469CD00CE8B7E /* AppKit.framework in Frameworks */, E16438A41D7469D900CE8B7E /* Foundation.framework in Frameworks */, E16438A21D7469D200CE8B7E /* CoreData.framework in Frameworks */, E16438971D743EA300CE8B7E /* WebKit.framework in Frameworks */, - DBD1CE2F2156230800549C0A /* ABPrivate.framework in Frameworks */, - 4D3E492303A5E78B0417E17F /* ObjectiveDropboxOfficial.xcframework in Frameworks */, E16438991D743EAA00CE8B7E /* Cocoa.framework in Frameworks */, - 6968AADC9DEB5554A06F19BD /* CocoaLumberjack in Frameworks */, - F6AEC01BE879A2BB998E829D /* ZipArchive in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -371,27 +235,19 @@ 704A0BB2FE5A7E33851F5FDB /* DefaultAppHandler */ = { isa = PBXGroup; children = ( - 07AC024B5902E74BBBD280F9 /* DefaultAppHandler.h */, - AE09E956E87164818B25F099 /* DefaultAppHandler.m */, + AB00F1E5000000000000DA01 /* DefaultAppHandler.swift */, ); path = DefaultAppHandler; sourceTree = ""; }; - 9BB2CCACA72911C65FE295AF /* OS X */ = { - isa = PBXGroup; - children = ( - 09E11F809EFA1C7844F25D6B /* Cocoa.framework */, - ); - name = "OS X"; - sourceTree = ""; - }; AA11BB22CC33DD44EE550021 /* Common */ = { isa = PBXGroup; children = ( - 544B2D28AEC66102492FA05E /* CommonTests.m */, + 544B2D28AEC66102492FA05E /* CommonTests.swift */, + AA11BB22CC33DD44EE550032 /* CLISupportHelperTests.swift */, + AA11BB22CC33DD44EE550031 /* DBErrorHandlerTests.swift */, AA11BB22CC33DD44EE550022 /* NetworkHandler */, AA11BB22CC33DD44EE550023 /* MobileProvision */, - AA11BB22CC33DD44EE550024 /* KeychainHandler */, AA11BB22CC33DD44EE550025 /* UserManager */, AA11BB22CC33DD44EE550027 /* MailHandler */, AA11BB22CC33DD44EE550028 /* UpdateHandler */, @@ -402,7 +258,6 @@ AA11BB22CC33DD44EE550022 /* NetworkHandler */ = { isa = PBXGroup; children = ( - AA11BB22CC33DD44EE550001 /* NetworkHandlerTests.m */, ); name = NetworkHandler; sourceTree = ""; @@ -410,23 +265,15 @@ AA11BB22CC33DD44EE550023 /* MobileProvision */ = { isa = PBXGroup; children = ( - AA11BB22CC33DD44EE550002 /* MobileProvisionTests.m */, + AA11BB22CC33DD44EE550002 /* MobileProvisionTests.swift */, ); name = MobileProvision; sourceTree = ""; }; - AA11BB22CC33DD44EE550024 /* KeychainHandler */ = { - isa = PBXGroup; - children = ( - AA11BB22CC33DD44EE550003 /* KeychainHandlerTests.m */, - ); - name = KeychainHandler; - sourceTree = ""; - }; AA11BB22CC33DD44EE550025 /* UserManager */ = { isa = PBXGroup; children = ( - AA11BB22CC33DD44EE550004 /* UserDataTests.m */, + AA11BB22CC33DD44EE550004 /* UserDataTests.swift */, ); name = UserManager; sourceTree = ""; @@ -434,7 +281,7 @@ AA11BB22CC33DD44EE550026 /* Model */ = { isa = PBXGroup; children = ( - 3E65C0AF09D32F39F4259167 /* IPAUploadInfoTests.m */, + 3E65C0AF09D32F39F4259167 /* IPAUploadInfoTests.swift */, ); name = Model; sourceTree = ""; @@ -442,7 +289,7 @@ AA11BB22CC33DD44EE550027 /* MailHandler */ = { isa = PBXGroup; children = ( - AA11BB22CC33DD44EE550005 /* MailHandlerTests.m */, + AA11BB22CC33DD44EE550005 /* MailHandlerTests.swift */, ); name = MailHandler; sourceTree = ""; @@ -450,7 +297,6 @@ AA11BB22CC33DD44EE550028 /* UpdateHandler */ = { isa = PBXGroup; children = ( - AA11BB22CC33DD44EE550006 /* UpdateHandlerTests.m */, ); name = UpdateHandler; sourceTree = ""; @@ -468,43 +314,17 @@ DB04358E2E6962DB005F0173 /* CLISupportHelper */ = { isa = PBXGroup; children = ( - DB04358F2E6962EA005F0173 /* CLISupportHelper.h */, - DB0435902E6962EA005F0173 /* CLISupportHelper.m */, + DB0435902E6962EA005F0173 /* CLISupportHelper.swift */, ); path = CLISupportHelper; sourceTree = ""; }; - DB1A06602160DC70008D33FD /* CoreDataMigration */ = { - isa = PBXGroup; - children = ( - DB1A06612160DCB4008D33FD /* CoreDataMigration2to3.xcmappingmodel */, - 4410D19B26FF851D0046E5F9 /* CoreDataMigration3to4.xcmappingmodel */, - ); - path = CoreDataMigration; - sourceTree = ""; - }; - DB1FC58D1FDEEC6A00179799 /* HomeWindowController */ = { - isa = PBXGroup; - children = ( - DB1FC58E1FDEED5400179799 /* HomeWindowController.h */, - DB1FC58F1FDEED5400179799 /* HomeWindowController.m */, - ); - path = HomeWindowController; - sourceTree = ""; - }; DB2629781F95ED8900C4C647 /* Extensions */ = { isa = PBXGroup; children = ( - DB2629791F95ED9A00C4C647 /* NSDate+Date.h */, - DB26297A1F95ED9A00C4C647 /* NSDate+Date.m */, - E19473F9205FD14C00CF12F9 /* NSColor+Color.h */, - E19473FA205FD14C00CF12F9 /* NSColor+Color.m */, - DB1C843F2079F54E007AC74C /* NSString+String.h */, - DB1C84402079F54E007AC74C /* NSString+String.m */, - DB5385682083622A004BFC84 /* NSURL+URL.h */, - DB5385692083622A004BFC84 /* NSURL+URL.m */, - DB5C5A4D2D00BA9C000C4A20 /* NSException+Description.h */, - DB5C5A4E2D00BA9C000C4A20 /* NSException+Description.m */, + DB26297A1F95ED9A00C4C647 /* NSDate+Date.swift */, + DB1C84402079F54E007AC74C /* NSString+String.swift */, + DB5385692083622A004BFC84 /* NSURL+URL.swift */, ); path = Extensions; sourceTree = ""; @@ -512,63 +332,39 @@ DB2629821F961F3100C4C647 /* DBErrorHandler */ = { isa = PBXGroup; children = ( - DB2629831F961F4700C4C647 /* DBErrorHandler.h */, - DB2629841F961F4700C4C647 /* DBErrorHandler.m */, + AB00F1E5000000000000EE01 /* DBErrorHandler.swift */, ); path = DBErrorHandler; sourceTree = ""; }; - DB425C021F8A514E008CB032 /* DefaultSettings */ = { + DB2D46D33031838200F551CE /* Recovered References */ = { isa = PBXGroup; children = ( - DB425C031F8A517D008CB032 /* DefaultSettings.h */, - DB425C041F8A517D008CB032 /* DefaultSettings.m */, + AB00C0DE000000000000000D /* AppBoxSecrets.swift */, ); - path = DefaultSettings; + name = "Recovered References"; sourceTree = ""; }; - DB53856B208388F3004BFC84 /* DragDropView */ = { + DB425C021F8A514E008CB032 /* DefaultSettings */ = { isa = PBXGroup; children = ( - DB53856C20838913004BFC84 /* DragDropView.h */, - DB53856D20838913004BFC84 /* DragDropView.m */, + AB00F1E5000000000000DE01 /* DefaultSettings.swift */, ); - path = DragDropView; + path = DefaultSettings; sourceTree = ""; }; DB831BC21FF6B5240065B646 /* ABHudViewController */ = { isa = PBXGroup; children = ( - DB8CE5F51FF77185003FEB65 /* DisabledView */, - DB831BC81FF6B5780065B646 /* ABHudViewController.h */, - DB831BC91FF6B5780065B646 /* ABHudViewController.m */, - DB831BCA1FF6B5780065B646 /* ABHudViewController.xib */, + DB831BC91FF6B5780065B646 /* ABHudViewController.swift */, ); path = ABHudViewController; sourceTree = ""; }; - DB8CE5F51FF77185003FEB65 /* DisabledView */ = { - isa = PBXGroup; - children = ( - DB8CE5F61FF77199003FEB65 /* DisabledView.h */, - DB8CE5F71FF77199003FEB65 /* DisabledView.m */, - ); - path = DisabledView; - sourceTree = ""; - }; - DBA66CEF1FDCF4A60002A956 /* Storyboard */ = { - isa = PBXGroup; - children = ( - DBA66CF01FDCF4A60002A956 /* Main.storyboard */, - ); - path = Storyboard; - sourceTree = ""; - }; DBDCFBBB1F99C7860022097B /* UploadManager */ = { isa = PBXGroup; children = ( - DBDCFBBC1F99C7860022097B /* UploadManager.h */, - DBDCFBBD1F99C7860022097B /* UploadManager.m */, + DBDCFBBD1F99C7860022097B /* UploadManager.swift */, ); path = UploadManager; sourceTree = ""; @@ -576,9 +372,8 @@ DBF290D31FA64A3E0046D5CE /* ProvisioningDetailsViewController */ = { isa = PBXGroup; children = ( - DBF290D41FA64A590046D5CE /* ProvisioningDetailsViewController.h */, - DBF290D51FA64A590046D5CE /* ProvisioningDetailsViewController.m */, - DBF290D61FA64A590046D5CE /* ProvisioningDetailsViewController.xib */, + DBF290D51FA64A590046D5CE /* ProvisioningDetailsViewController.swift */, + AB00F1E50000000000000071 /* ProvisioningDetailsView.swift */, ); path = ProvisioningDetailsViewController; sourceTree = ""; @@ -586,8 +381,7 @@ E11633961E558609005EAB31 /* MobileProvision */ = { isa = PBXGroup; children = ( - E11633971E558635005EAB31 /* MobileProvision.h */, - E11633981E558635005EAB31 /* MobileProvision.m */, + E11633981E558635005EAB31 /* MobileProvision.swift */, ); path = MobileProvision; sourceTree = ""; @@ -595,26 +389,8 @@ E12A9AAA1E49F360002DDA3C /* CoreDataModel */ = { isa = PBXGroup; children = ( - 449BD6B7282111B0008EFB2B /* AppBoxService+CoreDataClass.h */, - 449BD6B5282111B0008EFB2B /* AppBoxService+CoreDataClass.m */, - 449BD6B6282111B0008EFB2B /* AppBoxService+CoreDataProperties.h */, - 449BD6B4282111B0008EFB2B /* AppBoxService+CoreDataProperties.m */, - DB358B54216FB1AB0080CAC0 /* Project+CoreDataClass.h */, - DB358B59216FB1AB0080CAC0 /* Project+CoreDataClass.m */, - DB358B5F216FB1AB0080CAC0 /* Project+CoreDataProperties.h */, - DB358B58216FB1AB0080CAC0 /* Project+CoreDataProperties.m */, - DB358B5E216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataClass.h */, - DB358B50216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataClass.m */, - DB358B5A216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataProperties.h */, - DB358B53216FB1AB0080CAC0 /* ProvisionedDevice+CoreDataProperties.m */, - DB358B61216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataClass.h */, - DB358B5B216FB1AB0080CAC0 /* ProvisioningProfile+CoreDataClass.m */, - DB358B62216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataProperties.h */, - DB358B4C216FB1AA0080CAC0 /* ProvisioningProfile+CoreDataProperties.m */, - DB358B63216FB1AC0080CAC0 /* UploadRecord+CoreDataClass.h */, - DB358B4E216FB1AA0080CAC0 /* UploadRecord+CoreDataClass.m */, - DB358B52216FB1AB0080CAC0 /* UploadRecord+CoreDataProperties.h */, - DB358B57216FB1AB0080CAC0 /* UploadRecord+CoreDataProperties.m */, + AB00DA7A0000000000000011 /* ABProject+AppBox.swift */, + AB00DA7A0000000000000013 /* ABUploadRecord+AppBox.swift */, ); path = CoreDataModel; sourceTree = ""; @@ -623,26 +399,16 @@ isa = PBXGroup; children = ( DBF290D31FA64A3E0046D5CE /* ProvisioningDetailsViewController */, - E12E6D071D8FC77D0054814D /* DashboardViewController.h */, - E12E6D081D8FC77D0054814D /* DashboardViewController.m */, + E12E6D081D8FC77D0054814D /* DashboardViewController.swift */, + AB00F1E500000000000000E1 /* DashboardView.swift */, ); path = DashboardViewController; sourceTree = ""; }; - E13161EF1E97775100586052 /* CLIIPAUpload */ = { - isa = PBXGroup; - children = ( - E13161F01E9777DF00586052 /* CLIIPAUpload.h */, - E13161F11E9777DF00586052 /* CLIIPAUpload.m */, - ); - path = CLIIPAUpload; - sourceTree = ""; - }; E139460F1DF2AFC200B3FAD0 /* IPAInfoModel */ = { isa = PBXGroup; children = ( - E13946101DF2AFCF00B3FAD0 /* IPAUploadInfo.h */, - E13946111DF2AFCF00B3FAD0 /* IPAUploadInfo.m */, + E13946111DF2AFCF00B3FAD0 /* IPAUploadInfo.swift */, ); path = IPAInfoModel; sourceTree = ""; @@ -650,8 +416,7 @@ E14F332E1E1A3D1300C3DD34 /* MenuHandler */ = { isa = PBXGroup; children = ( - E14F33321E1A64CA00C3DD34 /* NSApplication+MenuHandler.h */, - E14F33331E1A64CA00C3DD34 /* NSApplication+MenuHandler.m */, + E14F33331E1A64CA00C3DD34 /* NSApplication+MenuHandler.swift */, ); path = MenuHandler; sourceTree = ""; @@ -659,8 +424,8 @@ E15C26671D7FD5A9004243B9 /* ShowLinkViewController */ = { isa = PBXGroup; children = ( - E15C26681D7FD5CE004243B9 /* ShowLinkViewController.h */, - E15C26691D7FD5CE004243B9 /* ShowLinkViewController.m */, + E15C26691D7FD5CE004243B9 /* ShowLinkViewController.swift */, + AB00F1E50000000000000061 /* ShowLinkView.swift */, ); path = ShowLinkViewController; sourceTree = ""; @@ -668,8 +433,8 @@ E16018ED1DEC0BA600E3A377 /* DropboxViewController */ = { isa = PBXGroup; children = ( - E16018EE1DEC0BC200E3A377 /* DropboxViewController.h */, - E16018EF1DEC0BC200E3A377 /* DropboxViewController.m */, + E16018EF1DEC0BC200E3A377 /* DropboxViewController.swift */, + AB00F1E5000000000000DB01 /* DropboxLoginView.swift */, ); path = DropboxViewController; sourceTree = ""; @@ -682,6 +447,7 @@ E164389A1D743ECA00CE8B7E /* Frameworks */, E16437D01D743A4E00CE8B7E /* Products */, AECBA8D5D0C166DA17FF6ED0 /* AppBoxTests */, + DB2D46D33031838200F551CE /* Recovered References */, ); sourceTree = ""; }; @@ -690,6 +456,7 @@ children = ( E16437CF1D743A4E00CE8B7E /* AppBox.app */, DB0435832E696255005F0173 /* appboxcli */, + DB04358D2E69628F005F0173 /* AppBoxCore_AppBoxCore.bundle */, DB5BA11E2FC9C91D00A150BA /* AppBoxTests.xctest */, ); name = Products; @@ -704,8 +471,7 @@ E16437EB1D743A9300CE8B7E /* Model */, E16437EA1D743A8800CE8B7E /* ViewController */, E16437D51D743A4E00CE8B7E /* Supporting Files */, - E16437D21D743A4E00CE8B7E /* AppDelegate.h */, - E16437D31D743A4E00CE8B7E /* AppDelegate.m */, + E16437D31D743A4E00CE8B7E /* AppDelegate.swift */, ); path = AppBox; sourceTree = ""; @@ -713,9 +479,8 @@ E16437D51D743A4E00CE8B7E /* Supporting Files */ = { isa = PBXGroup; children = ( - E16437D61D743A4E00CE8B7E /* main.m */, + E16437D61D743A4E00CE8B7E /* AppBoxApp.swift */, E16437E31D743A4E00CE8B7E /* Info.plist */, - E13946131DF2AFFF00B3FAD0 /* AppBoxPrefixHeader.pch */, ); name = "Supporting Files"; sourceTree = ""; @@ -724,7 +489,6 @@ isa = PBXGroup; children = ( DB831BC21FF6B5240065B646 /* ABHudViewController */, - DBA66CEF1FDCF4A60002A956 /* Storyboard */, E14F332E1E1A3D1300C3DD34 /* MenuHandler */, E16018ED1DEC0BA600E3A377 /* DropboxViewController */, E16437F01D743B3600CE8B7E /* HomeViewController */, @@ -733,6 +497,7 @@ E12E6D061D8FC6E20054814D /* DashboardViewController */, E1902B451E16420C00C3E0F6 /* UploadAdvancedSettingViewController */, E16D72E61E8935060031FB7C /* PreferencesViewController */, + AB00F1E500000000000000B1 /* IslandStyle.swift */, ); path = ViewController; sourceTree = ""; @@ -742,8 +507,6 @@ children = ( E139460F1DF2AFC200B3FAD0 /* IPAInfoModel */, E12A9AAA1E49F360002DDA3C /* CoreDataModel */, - DB1A06602160DC70008D33FD /* CoreDataMigration */, - E16437DB1D743A4E00CE8B7E /* AppBox.xcdatamodeld */, ); path = Model; sourceTree = ""; @@ -761,10 +524,8 @@ E16437F01D743B3600CE8B7E /* HomeViewController */ = { isa = PBXGroup; children = ( - DB53856B208388F3004BFC84 /* DragDropView */, - DB1FC58D1FDEEC6A00179799 /* HomeWindowController */, - E16437F11D743B6800CE8B7E /* HomeViewController.h */, - E16437F21D743B6800CE8B7E /* HomeViewController.m */, + E16437F21D743B6800CE8B7E /* HomeViewController.swift */, + AB00F1E500000000000000F1 /* HomeView.swift */, ); path = HomeViewController; sourceTree = ""; @@ -772,47 +533,15 @@ E164389A1D743ECA00CE8B7E /* Frameworks */ = { isa = PBXGroup; children = ( - DBD1CE2D2156230400549C0A /* ABPrivate.framework */, - 656E98171CB7E85AA663AFE8 /* ObjectiveDropboxOfficial.xcframework */, E16438A31D7469D900CE8B7E /* Foundation.framework */, E16438A11D7469D200CE8B7E /* CoreData.framework */, E164389F1D7469CD00CE8B7E /* AppKit.framework */, E16438981D743EAA00CE8B7E /* Cocoa.framework */, E16438961D743EA300CE8B7E /* WebKit.framework */, - 9BB2CCACA72911C65FE295AF /* OS X */, ); name = Frameworks; sourceTree = ""; }; - E16BB8BC20284207002E9B5A /* SelectAccountViewController */ = { - isa = PBXGroup; - children = ( - E16BB8C220284493002E9B5A /* SelectAccountCellView */, - E16BB8BD20284236002E9B5A /* SelectAccountViewController.h */, - E16BB8BE20284236002E9B5A /* SelectAccountViewController.m */, - E16BB8BF20284236002E9B5A /* SelectAccountViewController.xib */, - ); - path = SelectAccountViewController; - sourceTree = ""; - }; - E16BB8C220284493002E9B5A /* SelectAccountCellView */ = { - isa = PBXGroup; - children = ( - E16BB8C320285A38002E9B5A /* SelectAccountCellView.h */, - E16BB8C420285A38002E9B5A /* SelectAccountCellView.m */, - ); - path = SelectAccountCellView; - sourceTree = ""; - }; - E16BB8C6202873E1002E9B5A /* AccountCellView */ = { - isa = PBXGroup; - children = ( - E16BB8C7202873FA002E9B5A /* AccountCellView.h */, - E16BB8C8202873FA002E9B5A /* AccountCellView.m */, - ); - path = AccountCellView; - sourceTree = ""; - }; E16D72E61E8935060031FB7C /* PreferencesViewController */ = { isa = PBXGroup; children = ( @@ -821,9 +550,8 @@ E18186D71E8A479E0002509F /* AccountPreferencesViewController */, E18186D81E8A479E0002509F /* EmailPreferencesViewController */, E18186D91E8A479E0002509F /* HelpPreferencesViewController */, - E18186CC1E8A3BC00002509F /* PreferencesTabViewController.h */, - E18186CD1E8A3BC00002509F /* PreferencesTabViewController.m */, - E1D12EE71EC2F4360065E59A /* PreferencesTabViewController.xib */, + E18186CD1E8A3BC00002509F /* PreferencesTabViewController.swift */, + AB00F1E500000000000000D1 /* PreferencesContainerView.swift */, ); path = PreferencesViewController; sourceTree = ""; @@ -831,9 +559,8 @@ E18186D31E8A45C30002509F /* GeneralPreferencesViewController */ = { isa = PBXGroup; children = ( - E18186D41E8A45C30002509F /* PreferencesViewController.h */, - E18186D51E8A45C30002509F /* PreferencesViewController.m */, - DBCD1562200BCD1C00C003E6 /* PreferencesViewController.xib */, + E18186D51E8A45C30002509F /* PreferencesViewController.swift */, + AB00F1E500000000000000A1 /* GeneralPreferencesView.swift */, ); path = GeneralPreferencesViewController; sourceTree = ""; @@ -841,11 +568,8 @@ E18186D71E8A479E0002509F /* AccountPreferencesViewController */ = { isa = PBXGroup; children = ( - E16BB8C6202873E1002E9B5A /* AccountCellView */, - E16BB8BC20284207002E9B5A /* SelectAccountViewController */, - E18186DA1E8A47C10002509F /* AccountPreferencesViewController.h */, - E18186DB1E8A47C10002509F /* AccountPreferencesViewController.m */, - E1D12EEB1EC31AC80065E59A /* AccountPreferencesViewController.xib */, + E18186DB1E8A47C10002509F /* AccountPreferencesViewController.swift */, + AB00F1E5000000000000AC01 /* AccountPreferencesView.swift */, ); path = AccountPreferencesViewController; sourceTree = ""; @@ -853,9 +577,8 @@ E18186D81E8A479E0002509F /* EmailPreferencesViewController */ = { isa = PBXGroup; children = ( - E18186DD1E8A47CD0002509F /* EmailPreferencesViewController.h */, - E18186DE1E8A47CD0002509F /* EmailPreferencesViewController.m */, - E1D12EE91EC2F5230065E59A /* EmailPreferencesViewController.xib */, + E18186DE1E8A47CD0002509F /* EmailPreferencesViewController.swift */, + AB00F1E50000000000000091 /* EmailPreferencesView.swift */, ); path = EmailPreferencesViewController; sourceTree = ""; @@ -863,9 +586,8 @@ E18186D91E8A479E0002509F /* HelpPreferencesViewController */ = { isa = PBXGroup; children = ( - E18186E01E8A47D60002509F /* HelpPreferencesViewController.h */, - E18186E11E8A47D60002509F /* HelpPreferencesViewController.m */, - E1D12EED1EC320760065E59A /* HelpPreferencesViewController.xib */, + E18186E11E8A47D60002509F /* HelpPreferencesViewController.swift */, + AB00F1E500000000000000C1 /* HelpPreferencesView.swift */, ); path = HelpPreferencesViewController; sourceTree = ""; @@ -873,8 +595,8 @@ E1902B451E16420C00C3E0F6 /* UploadAdvancedSettingViewController */ = { isa = PBXGroup; children = ( - E1902B461E16423200C3E0F6 /* UploadAdvancedSettingViewController.h */, - E1902B471E16423200C3E0F6 /* UploadAdvancedSettingViewController.m */, + E1902B471E16423200C3E0F6 /* UploadAdvancedSettingViewController.swift */, + AB00F1E5000000000000AD01 /* UploadAdvancedSettingView.swift */, ); path = UploadAdvancedSettingViewController; sourceTree = ""; @@ -882,27 +604,15 @@ E1902B4B1E16617B00C3E0F6 /* MailHandler */ = { isa = PBXGroup; children = ( - E1902B5B1E1661B300C3E0F6 /* MailHandler.h */, - E1902B5C1E1661B300C3E0F6 /* MailHandler.m */, + E1902B5C1E1661B300C3E0F6 /* MailHandler.swift */, ); path = MailHandler; sourceTree = ""; }; - E1902B4C1E16617B00C3E0F6 /* NetworkHandler */ = { - isa = PBXGroup; - children = ( - E1902B4D1E16617B00C3E0F6 /* NetworkHandler.h */, - E1902B4E1E16617B00C3E0F6 /* NetworkHandler.m */, - E1FECA821E83EE5000C4E9AE /* HTTPStatusCode.h */, - ); - path = NetworkHandler; - sourceTree = ""; - }; E1902B4F1E16617B00C3E0F6 /* UpdateHandler */ = { isa = PBXGroup; children = ( - E1902B5E1E1661BE00C3E0F6 /* UpdateHandler.h */, - E1902B5F1E1661BE00C3E0F6 /* UpdateHandler.m */, + E1902B5F1E1661BE00C3E0F6 /* UpdateHandler.swift */, ); path = UpdateHandler; sourceTree = ""; @@ -910,23 +620,11 @@ E1902B501E16617B00C3E0F6 /* UserManager */ = { isa = PBXGroup; children = ( - E1902B511E16617B00C3E0F6 /* UserData.h */, - E1902B521E16617B00C3E0F6 /* UserData.m */, - 4410D18C26FF76A20046E5F9 /* DBAccountManager.h */, - 4410D18D26FF76A20046E5F9 /* DBAccountManager.m */, + AB00F1E5000000000000DA11 /* UserData.swift */, ); path = UserManager; sourceTree = ""; }; - E1902B611E1662E300C3E0F6 /* KeychainHandler */ = { - isa = PBXGroup; - children = ( - E1902B621E16633A00C3E0F6 /* KeychainHandler.h */, - E1902B631E16633A00C3E0F6 /* KeychainHandler.m */, - ); - path = KeychainHandler; - sourceTree = ""; - }; E19473F0205F9F2900CF12F9 /* ServiceIntegrations */ = { isa = PBXGroup; children = ( @@ -939,8 +637,7 @@ E19473F2205F9F8600CF12F9 /* MSTeamsClient */ = { isa = PBXGroup; children = ( - E19473F3205F9FC800CF12F9 /* MSTeamsClient.h */, - E19473F4205F9FC800CF12F9 /* MSTeamsClient.m */, + E19473F4205F9FC800CF12F9 /* MSTeamsClient.swift */, ); path = MSTeamsClient; sourceTree = ""; @@ -948,8 +645,7 @@ E19473FC205FD3B700CF12F9 /* UISubClasses */ = { isa = PBXGroup; children = ( - E19473FD205FD3F100CF12F9 /* AppBoxTableRowView.h */, - E19473FE205FD3F100CF12F9 /* AppBoxTableRowView.m */, + E19473FE205FD3F100CF12F9 /* AppBoxTableRowView.swift */, ); path = UISubClasses; sourceTree = ""; @@ -957,8 +653,8 @@ E1AA0F411E2F325F00BA81A1 /* QRCodeViewController */ = { isa = PBXGroup; children = ( - E1AA0F421E2F328300BA81A1 /* QRCodeViewController.h */, - E1AA0F431E2F328300BA81A1 /* QRCodeViewController.m */, + E1AA0F431E2F328300BA81A1 /* QRCodeViewController.swift */, + AB00F1E50000000000000051 /* QRCodeView.swift */, ); path = QRCodeViewController; sourceTree = ""; @@ -966,8 +662,7 @@ E1C0246E1E9B4E4C00C87CC9 /* SlackClient */ = { isa = PBXGroup; children = ( - E1C0246F1E9B4E6C00C87CC9 /* SlackClient.h */, - E1C024701E9B4E6C00C87CC9 /* SlackClient.m */, + E1C024701E9B4E6C00C87CC9 /* SlackClient.swift */, ); path = SlackClient; sourceTree = ""; @@ -975,26 +670,21 @@ E1CFC65B1D7E7FD9005872BE /* Common */ = { isa = PBXGroup; children = ( - E13161EF1E97775100586052 /* CLIIPAUpload */, DB04358E2E6962DB005F0173 /* CLISupportHelper */, DB2629821F961F3100C4C647 /* DBErrorHandler */, 704A0BB2FE5A7E33851F5FDB /* DefaultAppHandler */, DB425C021F8A514E008CB032 /* DefaultSettings */, - E1902B611E1662E300C3E0F6 /* KeychainHandler */, E11633961E558609005EAB31 /* MobileProvision */, DBDCFBBB1F99C7860022097B /* UploadManager */, - E1902B4C1E16617B00C3E0F6 /* NetworkHandler */, E19473FC205FD3B700CF12F9 /* UISubClasses */, E19473F0205F9F2900CF12F9 /* ServiceIntegrations */, E1902B501E16617B00C3E0F6 /* UserManager */, DB2629781F95ED8900C4C647 /* Extensions */, E1902B4B1E16617B00C3E0F6 /* MailHandler */, - E1DC25FA1ECDBC16001EF106 /* ProgressHUD */, E1902B4F1E16617B00C3E0F6 /* UpdateHandler */, - E1DC25F91ECD826C001EF106 /* OtherServicesKeys.h */, - E16018F11DEC0EB700E3A377 /* Constants.h */, - E1CFC65C1D7E7FEA005872BE /* Common.h */, - E1CFC65D1D7E7FEA005872BE /* Common.m */, + AB00F1E5000000000000C0A1 /* Common.swift */, + AB00C0DE0000000000000006 /* AppServices.swift */, + AB00C0DE0000000000000008 /* AppBoxSecrets.swift */, ); path = Common; sourceTree = ""; @@ -1002,22 +692,12 @@ E1D12EDF1EC2F1420065E59A /* ThirdPartyPreferencesViewController */ = { isa = PBXGroup; children = ( - E1D12EE01EC2F17B0065E59A /* ThirdPartyPreferencesViewController.h */, - E1D12EE11EC2F17B0065E59A /* ThirdPartyPreferencesViewController.m */, - E1D12EE21EC2F17B0065E59A /* ThirdPartyPreferencesViewController.xib */, + E1D12EE11EC2F17B0065E59A /* ThirdPartyPreferencesViewController.swift */, + AB00F1E50000000000000081 /* ThirdPartyPreferencesView.swift */, ); path = ThirdPartyPreferencesViewController; sourceTree = ""; }; - E1DC25FA1ECDBC16001EF106 /* ProgressHUD */ = { - isa = PBXGroup; - children = ( - E1DC25FE1ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.h */, - E1DC25FF1ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.m */, - ); - path = ProgressHUD; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -1043,9 +723,9 @@ isa = PBXNativeTarget; buildConfigurationList = DB0435872E696255005F0173 /* Build configuration list for PBXNativeTarget "AppBoxCLI" */; buildPhases = ( + AB00C0DE000000000000000B /* Generate Secrets */, DB04357F2E696255005F0173 /* Sources */, DB0435802E696255005F0173 /* Frameworks */, - DB0435812E696255005F0173 /* CopyFiles */, ); buildRules = ( ); @@ -1057,6 +737,7 @@ name = AppBoxCLI; packageProductDependencies = ( DB8BAA902E6C433200186B7B /* ArgumentParser */, + AB00C0DE0000000000000003 /* AppBoxCore */, ); productName = AppBoxCLI; productReference = DB0435832E696255005F0173 /* appboxcli */; @@ -1066,7 +747,7 @@ isa = PBXNativeTarget; buildConfigurationList = E16437E61D743A4E00CE8B7E /* Build configuration list for PBXNativeTarget "AppBox" */; buildPhases = ( - E19973332091D2640035CCE9 /* Embed Frameworks */, + AB00C0DE000000000000000A /* Generate Secrets */, E16437CB1D743A4E00CE8B7E /* Sources */, E16437CC1D743A4E00CE8B7E /* Frameworks */, E16437CD1D743A4E00CE8B7E /* Resources */, @@ -1075,11 +756,11 @@ buildRules = ( ); dependencies = ( + AB00C0DE0000000000000005 /* PBXTargetDependency */, ); name = AppBox; packageProductDependencies = ( - 33146DD70AA7C380685E53AA /* CocoaLumberjack */, - EFE5EA7464F3539F2562A787 /* ZipArchive */, + AB00C0DE0000000000000002 /* AppBoxCore */, ); productName = AppBox; productReference = E16437CF1D743A4E00CE8B7E /* AppBox.app */; @@ -1122,8 +803,7 @@ mainGroup = E16437C61D743A4E00CE8B7E; packageReferences = ( DB8BAA8F2E6C433200186B7B /* XCRemoteSwiftPackageReference "swift-argument-parser" */, - 9B9E6A9753976BA4489435DD /* XCRemoteSwiftPackageReference "CocoaLumberjack" */, - A10AAE9CF3D9BEAE4947FEBC /* XCRemoteSwiftPackageReference "ZipArchive" */, + AB00C0DE0000000000000001 /* XCLocalSwiftPackageReference "AppBoxCore" */, ); preferredProjectObjectVersion = 77; productRefGroup = E16437D01D743A4E00CE8B7E /* Products */; @@ -1149,37 +829,61 @@ isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - DBF290D81FA64A590046D5CE /* ProvisioningDetailsViewController.xib in Resources */, - E16BB8C120284236002E9B5A /* SelectAccountViewController.xib in Resources */, - E1D12EE41EC2F17B0065E59A /* ThirdPartyPreferencesViewController.xib in Resources */, - E1D12EEA1EC2F5230065E59A /* EmailPreferencesViewController.xib in Resources */, - DBCD1563200BCD1C00C003E6 /* PreferencesViewController.xib in Resources */, - E1D12EE81EC2F4360065E59A /* PreferencesTabViewController.xib in Resources */, DB26297D1F95F35C00C4C647 /* AppBoxIcons.xcassets in Resources */, E16437DF1D743A4E00CE8B7E /* Assets.xcassets in Resources */, - E1D12EEE1EC320760065E59A /* HelpPreferencesViewController.xib in Resources */, - DBA66CF11FDCF4A60002A956 /* Main.storyboard in Resources */, DB6F784F215D459A00C77966 /* AppBoxColors.xcassets in Resources */, - E1D12EEC1EC31AC80065E59A /* AccountPreferencesViewController.xib in Resources */, - DB831BCC1FF6B5780065B646 /* ABHudViewController.xib in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXResourcesBuildPhase section */ +/* Begin PBXShellScriptBuildPhase section */ + AB00C0DE000000000000000A /* Generate Secrets */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Generate Secrets"; + outputPaths = ( + "$(SRCROOT)/Generated/AppBox/AppBoxSecrets.swift", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$SRCROOT/Scripts/generate-secrets.sh\"\n"; + }; + AB00C0DE000000000000000B /* Generate Secrets */ = { + isa = PBXShellScriptBuildPhase; + alwaysOutOfDate = 1; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Generate Secrets"; + outputPaths = ( + "$(SRCROOT)/Generated/AppBoxCLI/AppBoxSecrets.swift", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"$SRCROOT/Scripts/generate-secrets.sh\"\n"; + }; +/* End PBXShellScriptBuildPhase section */ + /* Begin PBXSourcesBuildPhase section */ 4A568FBC3E2A1A064341626E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5D20E6B57EA90CA7D6EA21F7 /* IPAUploadInfoTests.m in Sources */, - D9E5B24A6827FC5AD68D29D0 /* CommonTests.m in Sources */, - AA11BB22CC33DD44EE550011 /* NetworkHandlerTests.m in Sources */, - AA11BB22CC33DD44EE550012 /* MobileProvisionTests.m in Sources */, - AA11BB22CC33DD44EE550013 /* KeychainHandlerTests.m in Sources */, - AA11BB22CC33DD44EE550014 /* UserDataTests.m in Sources */, - AA11BB22CC33DD44EE550015 /* MailHandlerTests.m in Sources */, - AA11BB22CC33DD44EE550016 /* UpdateHandlerTests.m in Sources */, + 5D20E6B57EA90CA7D6EA21F7 /* IPAUploadInfoTests.swift in Sources */, + D9E5B24A6827FC5AD68D29D0 /* CommonTests.swift in Sources */, + AA11BB22CC33DD44EE550012 /* MobileProvisionTests.swift in Sources */, + AA11BB22CC33DD44EE550014 /* UserDataTests.swift in Sources */, + AA11BB22CC33DD44EE550042 /* CLISupportHelperTests.swift in Sources */, + AA11BB22CC33DD44EE550041 /* DBErrorHandlerTests.swift in Sources */, + AA11BB22CC33DD44EE550015 /* MailHandlerTests.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1187,6 +891,7 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + AB00C0DE000000000000000C /* AppBoxSecrets.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1194,66 +899,58 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E19473FF205FD3F100CF12F9 /* AppBoxTableRowView.m in Sources */, - E19473FB205FD14C00CF12F9 /* NSColor+Color.m in Sources */, - E1902B541E16617B00C3E0F6 /* UserData.m in Sources */, - E16437DD1D743A4E00CE8B7E /* AppBox.xcdatamodeld in Sources */, - E16437D71D743A4E00CE8B7E /* main.m in Sources */, - DB831BCB1FF6B5780065B646 /* ABHudViewController.m in Sources */, - E1902B481E16423200C3E0F6 /* UploadAdvancedSettingViewController.m in Sources */, - DBF290D71FA64A590046D5CE /* ProvisioningDetailsViewController.m in Sources */, - DB358B66216FB1AC0080CAC0 /* UploadRecord+CoreDataClass.m in Sources */, - E16018F01DEC0BC200E3A377 /* DropboxViewController.m in Sources */, - DB358B6E216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataClass.m in Sources */, - E16437D41D743A4E00CE8B7E /* AppDelegate.m in Sources */, - DB358B6C216FB1AC0080CAC0 /* Project+CoreDataProperties.m in Sources */, - DB358B6B216FB1AC0080CAC0 /* UploadRecord+CoreDataProperties.m in Sources */, - DB358B68216FB1AC0080CAC0 /* ProvisionedDevice+CoreDataClass.m in Sources */, - DB5C5A4F2D00BA9C000C4A20 /* NSException+Description.m in Sources */, - DB8CE5F81FF77199003FEB65 /* DisabledView.m in Sources */, - DB358B6A216FB1AC0080CAC0 /* ProvisionedDevice+CoreDataProperties.m in Sources */, - E1902B531E16617B00C3E0F6 /* NetworkHandler.m in Sources */, - E1CFC65E1D7E7FEA005872BE /* Common.m in Sources */, - DB1FC5901FDEED5400179799 /* HomeWindowController.m in Sources */, - DB425C051F8A517D008CB032 /* DefaultSettings.m in Sources */, - E18186DC1E8A47C10002509F /* AccountPreferencesViewController.m in Sources */, - 449BD6B9282111B0008EFB2B /* AppBoxService+CoreDataClass.m in Sources */, - E19473F5205F9FC800CF12F9 /* MSTeamsClient.m in Sources */, - E12E6D0A1D8FC77D0054814D /* DashboardViewController.m in Sources */, - E1D12EE31EC2F17B0065E59A /* ThirdPartyPreferencesViewController.m in Sources */, - DB1A06622160DCB4008D33FD /* CoreDataMigration2to3.xcmappingmodel in Sources */, - E16BB8C020284236002E9B5A /* SelectAccountViewController.m in Sources */, - DB53856E20838913004BFC84 /* DragDropView.m in Sources */, - DB53856A2083622A004BFC84 /* NSURL+URL.m in Sources */, - DB1C84412079F54E007AC74C /* NSString+String.m in Sources */, - E15C266A1D7FD5CE004243B9 /* ShowLinkViewController.m in Sources */, - E11633991E558635005EAB31 /* MobileProvision.m in Sources */, - DB0435912E6962EA005F0173 /* CLISupportHelper.m in Sources */, - E1902B601E1661BE00C3E0F6 /* UpdateHandler.m in Sources */, - 449BD6B8282111B0008EFB2B /* AppBoxService+CoreDataProperties.m in Sources */, - E14F33341E1A64CA00C3DD34 /* NSApplication+MenuHandler.m in Sources */, - 4410D18E26FF76A20046E5F9 /* DBAccountManager.m in Sources */, - E13946121DF2AFCF00B3FAD0 /* IPAUploadInfo.m in Sources */, - E1C024711E9B4E6C00C87CC9 /* SlackClient.m in Sources */, - DB358B64216FB1AC0080CAC0 /* ProvisioningProfile+CoreDataProperties.m in Sources */, - DB358B6D216FB1AC0080CAC0 /* Project+CoreDataClass.m in Sources */, - E16437F31D743B6800CE8B7E /* HomeViewController.m in Sources */, - E1AA0F441E2F328300BA81A1 /* QRCodeViewController.m in Sources */, - DB26297B1F95ED9A00C4C647 /* NSDate+Date.m in Sources */, - E16BB8C520285A38002E9B5A /* SelectAccountCellView.m in Sources */, - E1902B641E16633A00C3E0F6 /* KeychainHandler.m in Sources */, - E1902B5D1E1661B300C3E0F6 /* MailHandler.m in Sources */, - E1DC26001ECDBCA8001EF106 /* MBProgressHUD+ProgressHud.m in Sources */, - DBDCFBBE1F99C7860022097B /* UploadManager.m in Sources */, - E18186D61E8A45C30002509F /* PreferencesViewController.m in Sources */, - E18186DF1E8A47CD0002509F /* EmailPreferencesViewController.m in Sources */, - E13161F21E9777DF00586052 /* CLIIPAUpload.m in Sources */, - 4410D19C26FF851D0046E5F9 /* CoreDataMigration3to4.xcmappingmodel in Sources */, - DB2629851F961F4700C4C647 /* DBErrorHandler.m in Sources */, - E18186E21E8A47D60002509F /* HelpPreferencesViewController.m in Sources */, - E18186CE1E8A3BC00002509F /* PreferencesTabViewController.m in Sources */, - E16BB8C9202873FA002E9B5A /* AccountCellView.m in Sources */, - B472C718BB3B23CCB6C65599 /* DefaultAppHandler.m in Sources */, + E19473FF205FD3F100CF12F9 /* AppBoxTableRowView.swift in Sources */, + AB00F1E5000000000000DA12 /* UserData.swift in Sources */, + E16437D71D743A4E00CE8B7E /* AppBoxApp.swift in Sources */, + DB831BCB1FF6B5780065B646 /* ABHudViewController.swift in Sources */, + E1902B481E16423200C3E0F6 /* UploadAdvancedSettingViewController.swift in Sources */, + AB00F1E5000000000000AD02 /* UploadAdvancedSettingView.swift in Sources */, + DBF290D71FA64A590046D5CE /* ProvisioningDetailsViewController.swift in Sources */, + AB00F1E50000000000000072 /* ProvisioningDetailsView.swift in Sources */, + E16018F01DEC0BC200E3A377 /* DropboxViewController.swift in Sources */, + AB00F1E5000000000000DB02 /* DropboxLoginView.swift in Sources */, + E16437D41D743A4E00CE8B7E /* AppDelegate.swift in Sources */, + AB00DA7A0000000000000020 /* ABProject+AppBox.swift in Sources */, + AB00DA7A0000000000000021 /* ABUploadRecord+AppBox.swift in Sources */, + AB00F1E5000000000000C0A2 /* Common.swift in Sources */, + AB00C0DE0000000000000007 /* AppServices.swift in Sources */, + AB00C0DE0000000000000009 /* AppBoxSecrets.swift in Sources */, + AB00F1E5000000000000DE02 /* DefaultSettings.swift in Sources */, + E18186DC1E8A47C10002509F /* AccountPreferencesViewController.swift in Sources */, + AB00F1E5000000000000AC02 /* AccountPreferencesView.swift in Sources */, + E19473F5205F9FC800CF12F9 /* MSTeamsClient.swift in Sources */, + E12E6D0A1D8FC77D0054814D /* DashboardViewController.swift in Sources */, + AB00F1E500000000000000E2 /* DashboardView.swift in Sources */, + E1D12EE31EC2F17B0065E59A /* ThirdPartyPreferencesViewController.swift in Sources */, + AB00F1E50000000000000082 /* ThirdPartyPreferencesView.swift in Sources */, + DB53856A2083622A004BFC84 /* NSURL+URL.swift in Sources */, + DB1C84412079F54E007AC74C /* NSString+String.swift in Sources */, + E15C266A1D7FD5CE004243B9 /* ShowLinkViewController.swift in Sources */, + AB00F1E50000000000000062 /* ShowLinkView.swift in Sources */, + E11633991E558635005EAB31 /* MobileProvision.swift in Sources */, + DB0435912E6962EA005F0173 /* CLISupportHelper.swift in Sources */, + E1902B601E1661BE00C3E0F6 /* UpdateHandler.swift in Sources */, + E14F33341E1A64CA00C3DD34 /* NSApplication+MenuHandler.swift in Sources */, + E13946121DF2AFCF00B3FAD0 /* IPAUploadInfo.swift in Sources */, + E1C024711E9B4E6C00C87CC9 /* SlackClient.swift in Sources */, + E16437F31D743B6800CE8B7E /* HomeViewController.swift in Sources */, + AB00F1E500000000000000F2 /* HomeView.swift in Sources */, + E1AA0F441E2F328300BA81A1 /* QRCodeViewController.swift in Sources */, + AB00F1E50000000000000052 /* QRCodeView.swift in Sources */, + AB00F1E500000000000000B2 /* IslandStyle.swift in Sources */, + DB26297B1F95ED9A00C4C647 /* NSDate+Date.swift in Sources */, + E1902B5D1E1661B300C3E0F6 /* MailHandler.swift in Sources */, + DBDCFBBE1F99C7860022097B /* UploadManager.swift in Sources */, + E18186D61E8A45C30002509F /* PreferencesViewController.swift in Sources */, + AB00F1E500000000000000A2 /* GeneralPreferencesView.swift in Sources */, + E18186DF1E8A47CD0002509F /* EmailPreferencesViewController.swift in Sources */, + AB00F1E50000000000000092 /* EmailPreferencesView.swift in Sources */, + AB00F1E5000000000000EE02 /* DBErrorHandler.swift in Sources */, + E18186E21E8A47D60002509F /* HelpPreferencesViewController.swift in Sources */, + AB00F1E500000000000000C2 /* HelpPreferencesView.swift in Sources */, + E18186CE1E8A3BC00002509F /* PreferencesTabViewController.swift in Sources */, + AB00F1E500000000000000D2 /* PreferencesContainerView.swift in Sources */, + AB00F1E5000000000000DA02 /* DefaultAppHandler.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1266,6 +963,12 @@ target = E16437CE1D743A4E00CE8B7E /* AppBox */; targetProxy = 36376D9B366B3D16A6DDD659 /* PBXContainerItemProxy */; }; + AB00C0DE0000000000000005 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AppBoxCLI; + target = DB0435822E696255005F0173 /* AppBoxCLI */; + targetProxy = AB00C0DE0000000000000004 /* PBXContainerItemProxy */; + }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ @@ -1277,26 +980,14 @@ CODE_SIGN_STYLE = Automatic; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = 3PQ7E4L589; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/**", - "$(PROJECT_DIR)/Frameworks", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = AppBox/AppBoxPrefixHeader.pch; GENERATE_INFOPLIST_FILE = YES; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/AppBox/**", - "$(PROJECT_DIR)/Frameworks/**", - ); - MACOSX_DEPLOYMENT_TARGET = 12.4; + MACOSX_DEPLOYMENT_TARGET = 15.0; PRODUCT_BUNDLE_IDENTIFIER = com.developerinsider.AppBoxTests; PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = macosx; + SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AppBox.app/Contents/MacOS/AppBox"; - USER_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)"; }; name = Release; }; @@ -1308,26 +999,14 @@ CODE_SIGN_STYLE = Automatic; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = 3PQ7E4L589; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/**", - "$(PROJECT_DIR)/Frameworks", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = AppBox/AppBoxPrefixHeader.pch; GENERATE_INFOPLIST_FILE = YES; - HEADER_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/AppBox/**", - "$(PROJECT_DIR)/Frameworks/**", - ); - MACOSX_DEPLOYMENT_TARGET = 12.4; + MACOSX_DEPLOYMENT_TARGET = 15.0; PRODUCT_BUNDLE_IDENTIFIER = com.developerinsider.AppBoxTests; PRODUCT_MODULE_NAME = "$(TARGET_NAME:c99extidentifier)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = macosx; + SWIFT_VERSION = 5.0; TEST_HOST = "$(BUILT_PRODUCTS_DIR)/AppBox.app/Contents/MacOS/AppBox"; - USER_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)"; }; name = Debug; }; @@ -1344,10 +1023,14 @@ CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = 3PQ7E4L589; ENABLE_HARDENED_RUNTIME = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu17; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); LOCALIZATION_PREFERS_STRING_CATALOGS = YES; - MACOSX_DEPLOYMENT_TARGET = 15.5; + MACOSX_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.developerinsider.AppBoxCLI; @@ -1374,10 +1057,14 @@ DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=macosx*]" = 3PQ7E4L589; ENABLE_HARDENED_RUNTIME = YES; - ENABLE_USER_SCRIPT_SANDBOXING = YES; + ENABLE_USER_SCRIPT_SANDBOXING = NO; GCC_C_LANGUAGE_STANDARD = gnu17; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + ); LOCALIZATION_PREFERS_STRING_CATALOGS = YES; - MACOSX_DEPLOYMENT_TARGET = 15.5; + MACOSX_DEPLOYMENT_TARGET = 15.0; MTL_FAST_MATH = YES; PRODUCT_BUNDLE_IDENTIFIER = com.developerinsider.AppBoxCLI; PRODUCT_NAME = appboxcli; @@ -1438,7 +1125,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.11; + MACOSX_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; SDKROOT = macosx; @@ -1489,7 +1176,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - MACOSX_DEPLOYMENT_TARGET = 10.11; + MACOSX_DEPLOYMENT_TARGET = 15.0; MTL_ENABLE_DEBUG_INFO = NO; SDKROOT = macosx; }; @@ -1500,40 +1187,24 @@ buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CODE_SIGN_ENTITLEMENTS = AppBox/AppBox.entitlements; - CODE_SIGN_IDENTITY = "Mac Developer"; + CODE_SIGN_IDENTITY = "Apple Development"; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 5; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = 3PQ7E4L589; ENABLE_APP_SANDBOX = NO; ENABLE_HARDENED_RUNTIME = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/**", - "$(PROJECT_DIR)/AppBox", - "$(PROJECT_DIR)/Frameworks", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = AppBox/AppBoxPrefixHeader.pch; - HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = AppBox/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools"; - LD_DYLIB_INSTALL_NAME = ""; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 12.4; - MARKETING_VERSION = 3.7.0; - OTHER_CODE_SIGN_FLAGS = ""; - OTHER_LDFLAGS = ( - "$(inherited)", - "-ObjC", - ); + MACOSX_DEPLOYMENT_TARGET = 15.0; + MARKETING_VERSION = 4.0.0; PRODUCT_BUNDLE_IDENTIFIER = com.developerinsider.AppBox; PRODUCT_NAME = "$(TARGET_NAME)"; - REGISTER_APP_GROUPS = YES; - USER_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)"; + SWIFT_VERSION = 5.0; }; name = Debug; }; @@ -1545,41 +1216,25 @@ CODE_SIGN_IDENTITY = "Developer ID Application: Vineet Choudhary (3PQ7E4L589)"; CODE_SIGN_STYLE = Manual; COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 1; + CURRENT_PROJECT_VERSION = 5; DEAD_CODE_STRIPPING = YES; DEVELOPMENT_TEAM = ""; "DEVELOPMENT_TEAM[sdk=macosx*]" = 3PQ7E4L589; ENABLE_APP_SANDBOX = NO; ENABLE_HARDENED_RUNTIME = YES; - FRAMEWORK_SEARCH_PATHS = ( - "$(inherited)", - "$(PROJECT_DIR)/**", - "$(PROJECT_DIR)/AppBox", - "$(PROJECT_DIR)/Frameworks", - ); - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = AppBox/AppBoxPrefixHeader.pch; - HEADER_SEARCH_PATHS = "$(inherited)"; INFOPLIST_FILE = AppBox/Info.plist; INFOPLIST_KEY_LSApplicationCategoryType = "public.app-category.developer-tools"; - LD_DYLIB_INSTALL_NAME = ""; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/../Frameworks", ); - MACOSX_DEPLOYMENT_TARGET = 12.4; - MARKETING_VERSION = 3.7.0; - OTHER_CODE_SIGN_FLAGS = ""; - OTHER_LDFLAGS = ( - "$(inherited)", - "-ObjC", - ); + MACOSX_DEPLOYMENT_TARGET = 15.0; + MARKETING_VERSION = 4.0.0; PRODUCT_BUNDLE_IDENTIFIER = com.developerinsider.AppBox; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; "PROVISIONING_PROFILE_SPECIFIER[sdk=macosx*]" = "AppBox Developer ID"; - REGISTER_APP_GROUPS = YES; - USER_HEADER_SEARCH_PATHS = "$(PROJECT_DIR)"; + SWIFT_VERSION = 5.0; }; name = Release; }; @@ -1624,23 +1279,14 @@ }; /* End XCConfigurationList section */ -/* Begin XCRemoteSwiftPackageReference section */ - 9B9E6A9753976BA4489435DD /* XCRemoteSwiftPackageReference "CocoaLumberjack" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/CocoaLumberjack/CocoaLumberjack.git"; - requirement = { - kind = upToNextMajorVersion; - minimumVersion = 3.9.1; - }; - }; - A10AAE9CF3D9BEAE4947FEBC /* XCRemoteSwiftPackageReference "ZipArchive" */ = { - isa = XCRemoteSwiftPackageReference; - repositoryURL = "https://github.com/ZipArchive/ZipArchive.git"; - requirement = { - kind = upToNextMajorVersion; - minimumVersion = 2.6.0; - }; +/* Begin XCLocalSwiftPackageReference section */ + AB00C0DE0000000000000001 /* XCLocalSwiftPackageReference "AppBoxCore" */ = { + isa = XCLocalSwiftPackageReference; + relativePath = AppBoxCore; }; +/* End XCLocalSwiftPackageReference section */ + +/* Begin XCRemoteSwiftPackageReference section */ DB8BAA8F2E6C433200186B7B /* XCRemoteSwiftPackageReference "swift-argument-parser" */ = { isa = XCRemoteSwiftPackageReference; repositoryURL = "https://github.com/apple/swift-argument-parser.git"; @@ -1652,39 +1298,22 @@ /* End XCRemoteSwiftPackageReference section */ /* Begin XCSwiftPackageProductDependency section */ - 33146DD70AA7C380685E53AA /* CocoaLumberjack */ = { + AB00C0DE0000000000000002 /* AppBoxCore */ = { + isa = XCSwiftPackageProductDependency; + package = AB00C0DE0000000000000001 /* XCLocalSwiftPackageReference "AppBoxCore" */; + productName = AppBoxCore; + }; + AB00C0DE0000000000000003 /* AppBoxCore */ = { isa = XCSwiftPackageProductDependency; - package = 9B9E6A9753976BA4489435DD /* XCRemoteSwiftPackageReference "CocoaLumberjack" */; - productName = CocoaLumberjack; + package = AB00C0DE0000000000000001 /* XCLocalSwiftPackageReference "AppBoxCore" */; + productName = AppBoxCore; }; DB8BAA902E6C433200186B7B /* ArgumentParser */ = { isa = XCSwiftPackageProductDependency; package = DB8BAA8F2E6C433200186B7B /* XCRemoteSwiftPackageReference "swift-argument-parser" */; productName = ArgumentParser; }; - EFE5EA7464F3539F2562A787 /* ZipArchive */ = { - isa = XCSwiftPackageProductDependency; - package = A10AAE9CF3D9BEAE4947FEBC /* XCRemoteSwiftPackageReference "ZipArchive" */; - productName = ZipArchive; - }; /* End XCSwiftPackageProductDependency section */ - -/* Begin XCVersionGroup section */ - E16437DB1D743A4E00CE8B7E /* AppBox.xcdatamodeld */ = { - isa = XCVersionGroup; - children = ( - 44DCC66B25EEA1910074AB1E /* AppBox4.xcdatamodel */, - DB1A06592160D47C008D33FD /* AppBox3.xcdatamodel */, - DBFEEA551FA5BA4700F09ECD /* AppBox2.xcdatamodel */, - E16437DC1D743A4E00CE8B7E /* AppBox.xcdatamodel */, - ); - currentVersion = 44DCC66B25EEA1910074AB1E /* AppBox4.xcdatamodel */; - name = AppBox.xcdatamodeld; - path = ../AppBox.xcdatamodeld; - sourceTree = ""; - versionGroupType = wrapper.xcdatamodel; - }; -/* End XCVersionGroup section */ }; rootObject = E16437C71D743A4E00CE8B7E /* Project object */; } diff --git a/AppBox.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/AppBox.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved index 1ad22dc1..40257987 100644 --- a/AppBox.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/AppBox.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -1,15 +1,6 @@ { - "originHash" : "4ff60d7e9aa08c861ff2386e3968e5d45ee8bb43150847dfeb59cad7690170fb", + "originHash" : "25681a66f8e3f871f936d2f569bcca89640f9554b9d8c8096cdbc1f0b08ed6d3", "pins" : [ - { - "identity" : "cocoalumberjack", - "kind" : "remoteSourceControl", - "location" : "https://github.com/CocoaLumberjack/CocoaLumberjack.git", - "state" : { - "revision" : "c5f2ed4d219866117e135cf648180dc7b66739d3", - "version" : "3.9.1" - } - }, { "identity" : "swift-argument-parser", "kind" : "remoteSourceControl", @@ -20,21 +11,21 @@ } }, { - "identity" : "swift-log", + "identity" : "swiftydropbox", "kind" : "remoteSourceControl", - "location" : "https://github.com/apple/swift-log", + "location" : "https://github.com/dropbox/SwiftyDropbox.git", "state" : { - "revision" : "7dc6101ae4dbe95cd3bc9cebad3b7cf8e49a7a63", - "version" : "1.13.0" + "revision" : "e315e0b14edb83f022134aef389deb4e8bee6bbf", + "version" : "10.2.4" } }, { - "identity" : "ziparchive", + "identity" : "zipfoundation", "kind" : "remoteSourceControl", - "location" : "https://github.com/ZipArchive/ZipArchive.git", + "location" : "https://github.com/weichsel/ZIPFoundation.git", "state" : { - "revision" : "df35718ea19a94e015b91dc4881dee028ce4cdba", - "version" : "2.6.0" + "revision" : "22787ffb59de99e5dc1fbfe80b19c97a904ad48d", + "version" : "0.9.20" } } ], diff --git a/AppBox/AppBoxApp.swift b/AppBox/AppBoxApp.swift new file mode 100644 index 00000000..3e881b86 --- /dev/null +++ b/AppBox/AppBoxApp.swift @@ -0,0 +1,93 @@ +// +// AppBoxApp.swift +// AppBox + +import SwiftUI +import AppKit + +@main +struct AppBoxApp: App { + + @NSApplicationDelegateAdaptor(AppDelegate.self) private var appDelegate + @Environment(\.openWindow) private var openWindow + + var body: some Scene { + Window("AppBox - iOS App Wireless Installation", id: "home") { + HomeRootView() + .frame(minWidth: 780, minHeight: 400) + } + .defaultSize(width: 780, height: 400) + .commands { appCommands } + + Window("AppBox Dashboard", id: "dashboard") { + DashboardControllerView() + .frame(minWidth: 940, minHeight: 600) + } + .defaultSize(width: 940, height: 600) + .defaultLaunchBehavior(.suppressed) + } + + @CommandsBuilder private var appCommands: some Commands { + CommandGroup(after: .appInfo) { + Button("Check for Update") { NSApp.checkForUpdateTapped(nil) } + } + CommandGroup(replacing: .appSettings) { + Button("Preferences…") { PreferencesTabViewController.presentPreferences() } + .keyboardShortcut(",", modifiers: .command) + } + + CommandGroup(replacing: .newItem) { + Button("Home") { openWindow(id: "home") } + .keyboardShortcut("o", modifiers: .command) + Button("Dashboard") { openWindow(id: "dashboard") } + .keyboardShortcut("d", modifiers: .command) + } + + CommandGroup(replacing: .help) { + Button("Help") { + NSApp.helpButtonTapped(nil) + } + .keyboardShortcut("?", modifiers: .command) + Divider() + Button("License") { + NSApp.licenseTapped(nil) + } + Button("Release Notes") { + NSApp.releaseNotesTapped(nil) + } + } + } +} + +// MARK: - AppKit hosting + +/// Wraps the Home content so AppKit code (the ShowLink sheet's "Show in Dashboard") can open the SwiftUI dashboard window: `openWindow` only exists in the SwiftUI environment, so a notification bridges the two worlds. +private struct HomeRootView: View { + @Environment(\.openWindow) private var openWindow + var body: some View { + HomeControllerView() + .onReceive(NotificationCenter.default.publisher( + for: Notification.Name("AppBoxOpenDashboardNotification"))) { notification in + openWindow(id: "dashboard") + DashboardControllerView.reveal(notification.object as? String) + } + } +} + +private struct HomeControllerView: NSViewControllerRepresentable { + @MainActor private static let shared = HomeViewController() + func makeNSViewController(context: Context) -> HomeViewController { Self.shared } + func updateNSViewController(_ nsViewController: HomeViewController, context: Context) {} +} + +private struct DashboardControllerView: NSViewControllerRepresentable { + @MainActor private static let shared = DashboardViewController() + + @MainActor static func reveal(_ shortURL: String?) { + guard let shortURL, !shortURL.isEmpty else { return } + shared.revealBuild(shortURL: shortURL) + } + + func makeNSViewController(context: Context) -> DashboardViewController { Self.shared } + func updateNSViewController(_ nsViewController: DashboardViewController, context: Context) {} +} diff --git a/AppBox/AppBoxPrefixHeader.pch b/AppBox/AppBoxPrefixHeader.pch deleted file mode 100644 index 8db48e7d..00000000 --- a/AppBox/AppBoxPrefixHeader.pch +++ /dev/null @@ -1,52 +0,0 @@ -// -// AppBoxPrefixHeader.pch -// AppBox -// -// Created by Vineet Choudhary on 03/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#ifndef AppBoxPrefixHeader_pch -#define AppBoxPrefixHeader_pch - -@import ZipArchive; -#import -#import -@import CocoaLumberjack; - -#import "MBProgressHUD+ProgressHud.h" - -#import "UserData.h" -#import "Constants.h" -#import "AppDelegate.h" -#import "IPAUploadInfo.h" -#import "HTTPStatusCode.h" -#import "OtherServicesKeys.h" - -#import "Common.h" -#import "CLIIPAUpload.h" -#import "UploadManager.h" -#import "MailHandler.h" -#import "SlackClient.h" -#import "MSTeamsClient.h" -#import "UpdateHandler.h" -#import "DBErrorHandler.h" -#import "NetworkHandler.h" -#import "KeychainHandler.h" -#import "CLISupportHelper.h" -#import "DefaultAppHandler.h" -#import "NSApplication+MenuHandler.h" - -#import "NSURL+URL.h" -#import "NSDate+Date.h" -#import "NSString+String.h" -#import "NSException+Description.h" - -#import "Project+CoreDataProperties.h" -#import "UploadRecord+CoreDataProperties.h" -#import "AppBoxService+CoreDataProperties.h" -#import "ProvisionedDevice+CoreDataProperties.h" -#import "ProvisioningProfile+CoreDataProperties.h" - -static const DDLogLevel ddLogLevel = DDLogLevelAll; -#endif /* AppBoxPrefixHeader_pch */ diff --git a/AppBox/AppDelegate.h b/AppBox/AppDelegate.h deleted file mode 100644 index 22f10b2f..00000000 --- a/AppBox/AppDelegate.h +++ /dev/null @@ -1,43 +0,0 @@ -// -// AppDelegate.h -// AppBox -// -// Created by Vineet Choudhary on 29/08/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import -#import -#import - -#import "DefaultSettings.h" - -@interface AppDelegate : NSObject - -//stored properties -@property (atomic) BOOL processing; -@property (atomic) BOOL isReadyToUpload; -@property (atomic) BOOL isInternetConnected; -@property (atomic) NSInteger exitCode; - -//menu iboutlet -@property (nonatomic, weak) IBOutlet NSMenuItem *dropboxLogoutButton; -@property (nonatomic, weak) IBOutlet NSMenuItem *dropboxSpaceButton; -@property (nonatomic, weak) IBOutlet NSMenuItem *dropboxAccountButton; -@property (nonatomic, weak) IBOutlet NSMenuItem *dropboxNameButton; -@property (nonatomic, weak) IBOutlet NSMenuItem *cliInstallUninstallButton; - - -//coredata -@property (readonly, strong, nonatomic) NSPersistentStoreCoordinator *persistentStoreCoordinator; -@property (readonly, strong, nonatomic) NSManagedObjectModel *managedObjectModel; -@property (readonly, strong, nonatomic) NSManagedObjectContext *managedObjectContext; --(void)saveCoreDataChanges; - -+(AppDelegate *)appDelegate; -+(void)terminateWithExitCode:(NSInteger)code; --(void)openLatestLogFile; --(void)openFileWithPath:(NSString *)filePath; - -@end - diff --git a/AppBox/AppDelegate.m b/AppBox/AppDelegate.m deleted file mode 100644 index e195eecc..00000000 --- a/AppBox/AppDelegate.m +++ /dev/null @@ -1,437 +0,0 @@ -// -// AppDelegate.m -// AppBox -// -// Created by Vineet Choudhary on 29/08/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "AppDelegate.h" -#import - -@implementation AppDelegate { - DDFileLogger *fileLogger; - DDOSLogger *osLogger; - DDTTYLogger *ttyLogger; - id _openFileObserver; - id _ipaUploadObserver; -} - -- (void)awakeFromNib{ - [super awakeFromNib]; - //Handle URL Scheme - - [[NSAppleEventManager sharedAppleEventManager] setEventHandler:self andSelector:@selector(handleGetURLWithEvent:andReply:) forEventClass:kInternetEventClass andEventID:kAEGetURL]; - - //Init CocoaLumberjack - DDLogLevel logLevel = [UserData debugLog] ? DDLogLevelDebug : DDLogLevelInfo; - [DDLog addLogger:[DDOSLogger sharedInstance] withLevel:logLevel]; //OS logger - - //File logger - fileLogger = [[DDFileLogger alloc] init]; - fileLogger.doNotReuseLogFiles = true; - fileLogger.logFileManager.maximumNumberOfLogFiles = 7; - [DDLog addLogger:fileLogger withLevel:logLevel]; - - //TTY Logger - #if !DEBUG - ttyLogger = [DDTTYLogger sharedInstance]; - [DDLog addLogger:ttyLogger withLevel:logLevel]; - #endif - DDLogInfo(@"AppBox Started."); -} - -- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { - // Request notification authorization using modern UNUserNotificationCenter - UNUserNotificationCenter *center = [UNUserNotificationCenter currentNotificationCenter]; - [center setDelegate:self]; - [center requestAuthorizationWithOptions:(UNAuthorizationOptionAlert | UNAuthorizationOptionSound) - completionHandler:^(BOOL granted, NSError * _Nullable error) { - if (error) { - DDLogError(@"Notification authorization error: %@", error.localizedDescription); - } - }]; - - //Default Setting - [DefaultSettings setFirstTimeSettings]; - [DefaultSettings setEveryStartupSettings]; - - //Check for update - [UpdateHandler isNewVersionAvailableCompletion:^(bool available, NSURL *url) { - if (available){ - if (![UserData updateAlertEnable]){ - if (url == nil && [UpdateHandler isInstalledViaHomebrew]) { - [UpdateHandler showHomebrewUpdateAlert]; - } else { - [UpdateHandler showUpdateAlertWithUpdateURL:url]; - } - } - } - }]; - - //Check for arguments - NSArray *arguments = [[NSProcessInfo processInfo] arguments]; - DDLogDebug(@"All Command Line Arguments = %@",arguments); - for (NSString *argument in arguments) { - if ([argument containsString:abArgsIPA]) { - NSArray *components = [argument componentsSeparatedByString:abArgsIPA]; - if (components.count == 2) { - [self handleIPAAtPath:[components lastObject]]; - } else { - DDLogInfo(@"Invalid IPA Argument %@",arguments); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - break; - } - } - - //[self setAppBoxAsDefualt]; is now handled via Preferences -} - -- (void)applicationWillTerminate:(NSNotification *)aNotification { - DDLogInfo(@"AppBox Terminated."); - // Clean up notification observers - if (_openFileObserver) { - [[NSNotificationCenter defaultCenter] removeObserver:_openFileObserver]; - _openFileObserver = nil; - } - if (_ipaUploadObserver) { - [[NSNotificationCenter defaultCenter] removeObserver:_ipaUploadObserver]; - _ipaUploadObserver = nil; - } - [self saveCoreDataChanges]; - [self deleteTemporaryFiles]; - // Exit with specific code for CI if set - if (self.exitCode != 0) { - exit((int)self.exitCode); - } -} - -- (BOOL)applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)sender{ - return YES; -} - --(BOOL)application:(NSApplication *)sender openFile:(NSString *)filename{ - if (self.processing){ - return YES; - } - [self openFileWithPath:filename]; - return YES; -} - --(void)openFileWithPath:(NSString *)filePath{ - if (self.isReadyToUpload) { - DDLogDebug(@"AppBox is ready to use."); - [[NSNotificationCenter defaultCenter] postNotificationName:abUseOpenFilesNotification object:filePath]; - } else { - // Remove any previous observer before adding a new one - if (_openFileObserver) { - [[NSNotificationCenter defaultCenter] removeObserver:_openFileObserver]; - } - _openFileObserver = [[NSNotificationCenter defaultCenter] addObserverForName:abAppBoxReadyToUseNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification * _Nonnull note) { - DDLogDebug(@"AppBox is ready to use. [Block]"); - [[NSNotificationCenter defaultCenter] postNotificationName:abUseOpenFilesNotification object:filePath]; - }]; - } -} - -//MARK: - AppDelegate Helper - -+(AppDelegate *)appDelegate{ - return ((AppDelegate *)[[NSApplication sharedApplication] delegate]); -} - -+(void)terminateWithExitCode:(NSInteger)code { - [AppDelegate appDelegate].exitCode = code; - dispatch_async(dispatch_get_main_queue(), ^{ - [[NSApplication sharedApplication] terminate:nil]; - }); -} - --(void)openLatestLogFile { - NSString *latestLogFile = fileLogger.logFileManager.sortedLogFilePaths.firstObject; - if (latestLogFile == nil) { - DDLogInfo(@"No log file found."); - } else { - [[NSWorkspace sharedWorkspace] openURL:[NSURL fileURLWithPath:latestLogFile]]; - } -} - -//URISchem URL Handler --(void)handleGetURLWithEvent:(NSAppleEventDescriptor *)event andReply:(NSAppleEventDescriptor *)reply{ - NSString *urlString = [[event paramDescriptorForKeyword:keyDirectObject] stringValue]; - if (!urlString || urlString.length == 0) { - DDLogWarn(@"Received empty URL event"); - return; - } - NSURL *url = [NSURL URLWithString:urlString]; - if (!url) { - DDLogWarn(@"Failed to parse URL: %@", urlString); - return; - } - DDLogInfo(@"Handling URL = %@",url); - - //Check for Dropbox auth - [DBClientsManager handleRedirectURL:url completion:^(DBOAuthResult * _Nullable authResult) { - if (authResult != nil) { - if ([authResult isSuccess]) { - DDLogInfo(@"Success! User is logged into Dropbox."); - [[NSNotificationCenter defaultCenter] postNotificationName:abDropBoxLoggedInNotification object:nil]; - } else if ([authResult isCancel]) { - DDLogInfo(@"Authorization flow was manually canceled by user."); - [Common showAlertWithTitle:@"Authorization Canceled." andMessage:abEmptyString]; - } else if ([authResult isError]) { - DDLogInfo(@"Error: %@", authResult.errorDescription); - [Common showAlertWithTitle:@"Authorization Canceled." andMessage:abEmptyString]; - } - } else if (url != nil) { - DDLogInfo(@"query = %@", url.query); - // if (url.query != nil && url.query.length > 0) { - // [self handleProjectAtPath:url.query]; - // } - } - }]; -} - --(void)handleIPAAtPath:(NSString *)ipaPath { - IPAUploadInfo *ipaUploadInfo = [CLIIPAUpload ipaUploadInfoWithIPAPath:ipaPath]; - if (self.isReadyToUpload) { - DDLogInfo(@"AppBox is ready to upload IPA."); - [[NSNotificationCenter defaultCenter] postNotificationName:abBuildRepoNotification object:ipaUploadInfo]; - } else { - // Remove any previous observer before adding a new one - if (_ipaUploadObserver) { - [[NSNotificationCenter defaultCenter] removeObserver:_ipaUploadObserver]; - } - _ipaUploadObserver = [[NSNotificationCenter defaultCenter] addObserverForName:abAppBoxReadyToUseNotification object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification * _Nonnull note) { - DDLogInfo(@"AppBox is ready to upload IPA. [Block]"); - [[NSNotificationCenter defaultCenter] postNotificationName:abBuildRepoNotification object:ipaUploadInfo]; - }]; - } -} - -//MARK: - UNUserNotificationCenter Delegate --(void)userNotificationCenter:(UNUserNotificationCenter *)center didReceiveNotificationResponse:(UNNotificationResponse *)response withCompletionHandler:(void (^)(void))completionHandler { - [center removeDeliveredNotificationsWithIdentifiers:@[response.notification.request.identifier]]; - completionHandler(); -} - --(void)userNotificationCenter:(UNUserNotificationCenter *)center willPresentNotification:(UNNotification *)notification withCompletionHandler:(void (^)(UNNotificationPresentationOptions))completionHandler { - completionHandler(UNNotificationPresentationOptionList | UNNotificationPresentationOptionBanner | UNNotificationPresentationOptionSound); -} - -//MARK: - Core Data stack - -@synthesize persistentStoreCoordinator = _persistentStoreCoordinator; -@synthesize managedObjectModel = _managedObjectModel; -@synthesize managedObjectContext = _managedObjectContext; - -- (NSURL *)applicationDocumentsDirectory { - // The directory the application uses to store the Core Data store file. This code uses a directory named "com.developerinsider.AppBox" in the user's Application Support directory. - NSURL *appSupportURL = [[[NSFileManager defaultManager] URLsForDirectory:NSApplicationSupportDirectory inDomains:NSUserDomainMask] lastObject]; - return [appSupportURL URLByAppendingPathComponent:@"com.developerinsider.AppBox"]; -} - -- (NSManagedObjectModel *)managedObjectModel { - // The managed object model for the application. It is a fatal error for the application not to be able to find and load its model. - if (_managedObjectModel) { - return _managedObjectModel; - } - - NSURL *modelURL = [[NSBundle mainBundle] URLForResource:@"AppBox" withExtension:@"momd"]; - _managedObjectModel = [[NSManagedObjectModel alloc] initWithContentsOfURL:modelURL]; - return _managedObjectModel; -} - -- (NSPersistentStoreCoordinator *)persistentStoreCoordinator { - // The persistent store coordinator for the application. This implementation creates and returns a coordinator, having added the store for the application to it. (The directory for the store is created, if necessary.) - if (_persistentStoreCoordinator) { - return _persistentStoreCoordinator; - } - - NSFileManager *fileManager = [NSFileManager defaultManager]; - NSURL *applicationDocumentsDirectory = [self applicationDocumentsDirectory]; - BOOL shouldFail = NO; - NSError *error = nil; - NSString *failureReason = @"There was an error creating or loading the application's saved data."; - - // Make sure the application files directory is there - NSDictionary *properties = [applicationDocumentsDirectory resourceValuesForKeys:@[NSURLIsDirectoryKey] error:&error]; - if (properties) { - if (![properties[NSURLIsDirectoryKey] boolValue]) { - failureReason = [NSString stringWithFormat:@"Expected a folder to store application data, found a file (%@).", [applicationDocumentsDirectory path]]; - shouldFail = YES; - } - } else if ([error code] == NSFileReadNoSuchFileError) { - error = nil; - [fileManager createDirectoryAtPath:[applicationDocumentsDirectory path] withIntermediateDirectories:YES attributes:nil error:&error]; - } - - if (!shouldFail && !error) { - NSPersistentStoreCoordinator *coordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]]; - NSURL *xmlStoreURL = [applicationDocumentsDirectory URLByAppendingPathComponent:@"OSXCoreDataObjC.storedata"]; - NSURL *sqliteStoreURL = [applicationDocumentsDirectory URLByAppendingPathComponent:@"OSXCoreDataObjC.sqlite"]; - NSDictionary *persistentStoreOptions = @{NSInferMappingModelAutomaticallyOption: @YES, - NSMigratePersistentStoresAutomaticallyOption: @YES}; - - // Use SQLite store for new installs; migrate existing XML stores for backward compatibility - BOOL xmlStoreExists = [fileManager fileExistsAtPath:xmlStoreURL.path]; - BOOL sqliteStoreExists = [fileManager fileExistsAtPath:sqliteStoreURL.path]; - - if (xmlStoreExists && !sqliteStoreExists) { - // Migrate existing XML store to SQLite - NSPersistentStore *xmlStore = [coordinator addPersistentStoreWithType:NSXMLStoreType - configuration:nil - URL:xmlStoreURL - options:persistentStoreOptions - error:&error]; - if (xmlStore) { - NSPersistentStore *sqliteStore = [coordinator migratePersistentStore:xmlStore - toURL:sqliteStoreURL - options:persistentStoreOptions - withType:NSSQLiteStoreType - error:&error]; - if (sqliteStore) { - DDLogInfo(@"Successfully migrated Core Data store from XML to SQLite."); - // Remove old XML store file after successful migration - [fileManager removeItemAtURL:xmlStoreURL error:nil]; - } else { - DDLogError(@"Failed to migrate to SQLite store: %@", error.localizedDescription); - coordinator = nil; - } - } else { - DDLogError(@"Failed to open existing XML store for migration: %@", error.localizedDescription); - coordinator = nil; - } - } else { - // Use SQLite store (new install or already migrated) - if (![coordinator addPersistentStoreWithType:NSSQLiteStoreType - configuration:nil - URL:sqliteStoreURL - options:persistentStoreOptions - error:&error]) { - coordinator = nil; - } - } - _persistentStoreCoordinator = coordinator; - } - - if (shouldFail || error) { - // Report any error we got. - NSMutableDictionary *dict = [NSMutableDictionary dictionary]; - dict[NSLocalizedDescriptionKey] = @"Failed to initialize the application's saved data"; - dict[NSLocalizedFailureReasonErrorKey] = failureReason; - if (error) { - dict[NSUnderlyingErrorKey] = error; - } - error = [NSError errorWithDomain:@"com.developerinsider.AppBox" code:9999 userInfo:dict]; - [[NSApplication sharedApplication] presentError:error]; - } - return _persistentStoreCoordinator; -} - -- (NSManagedObjectContext *)managedObjectContext { - // Returns the managed object context for the application (which is already bound to the persistent store coordinator for the application.) - if (_managedObjectContext) { - return _managedObjectContext; - } - - NSPersistentStoreCoordinator *coordinator = [self persistentStoreCoordinator]; - if (!coordinator) { - return nil; - } - _managedObjectContext = [[NSManagedObjectContext alloc] initWithConcurrencyType:NSMainQueueConcurrencyType]; - [_managedObjectContext setPersistentStoreCoordinator:coordinator]; - - return _managedObjectContext; -} - -//MARK: - Core Data Saving and Undo support - -- (void)saveCoreDataChanges{ - // Performs the save action for the application, which is to send the save: message to the application's managed object context. Any encountered errors are presented to the user. - if (![[self managedObjectContext] commitEditing]) { - NSLog(@"%@:%@ unable to commit editing before saving", [self class], NSStringFromSelector(_cmd)); - } - - NSError *error = nil; - if ([[self managedObjectContext] hasChanges] && ![[self managedObjectContext] save:&error]) { - [[NSApplication sharedApplication] presentError:error]; - } -} - -- (NSUndoManager *)windowWillReturnUndoManager:(NSWindow *)window { - // Returns the NSUndoManager for the application. In this case, the manager returned is that of the managed object context for the application. - return [[self managedObjectContext] undoManager]; -} - -- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender { - // Save changes in the application's managed object context before the application terminates. - - if (!_managedObjectContext) { - return NSTerminateNow; - } - - if (![[self managedObjectContext] commitEditing]) { - NSLog(@"%@:%@ unable to commit editing to terminate", [self class], NSStringFromSelector(_cmd)); - return NSTerminateCancel; - } - - if (![[self managedObjectContext] hasChanges]) { - return NSTerminateNow; - } - - NSError *error = nil; - if (![[self managedObjectContext] save:&error]) { - - // Customize this code block to include application-specific recovery steps. - BOOL result = [sender presentError:error]; - if (result) { - return NSTerminateCancel; - } - - NSString *question = NSLocalizedString(@"Could not save changes while quitting. Quit anyway?", @"Quit without saves error question message"); - NSString *info = NSLocalizedString(@"Quitting now will lose any changes you have made since the last successful save", @"Quit without saves error question info"); - NSString *quitButton = NSLocalizedString(@"Quit anyway", @"Quit anyway button title"); - NSString *cancelButton = NSLocalizedString(@"Cancel", @"Cancel button title"); - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText:question]; - [alert setInformativeText:info]; - [alert addButtonWithTitle:quitButton]; - [alert addButtonWithTitle:cancelButton]; - - NSInteger answer = [alert runModal]; - - if (answer == NSAlertFirstButtonReturn) { - return NSTerminateCancel; - } - } - - return NSTerminateNow; -} - -// MARK: - Other helpers -- (void)deleteTemporaryFiles { - NSError *error = nil; - NSArray* tmpDirectory = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:NSTemporaryDirectory() error:&error]; - if (error) { - DDLogError(@"Failed to list temporary directory: %@", error.localizedDescription); - return; - } - // Only remove files created by AppBox: UUID-named working directories and manifest.plist - NSString *uuidPattern = @"^[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}$"; - NSPredicate *uuidPredicate = [NSPredicate predicateWithFormat:@"SELF MATCHES[c] %@", uuidPattern]; - for (NSString *file in tmpDirectory) { - if (![file isEqualToString:@"manifest.plist"] && ![uuidPredicate evaluateWithObject:file]) { - continue; - } - NSError *removeError = nil; - NSString *filePath = [NSTemporaryDirectory() stringByAppendingPathComponent:file]; - [[NSFileManager defaultManager] removeItemAtPath:filePath error:&removeError]; - if (removeError) { - DDLogError(@"Failed to remove temp file %@: %@", file, removeError.localizedDescription); - } - } -} - -@end diff --git a/AppBox/AppDelegate.swift b/AppBox/AppDelegate.swift new file mode 100644 index 00000000..4a75ad7d --- /dev/null +++ b/AppBox/AppDelegate.swift @@ -0,0 +1,204 @@ +// +// AppDelegate.swift +// AppBox + +import AppKit +import os +import UserNotifications +import AppBoxCore + +public final class AppDelegate: NSObject, NSApplicationDelegate, UNUserNotificationCenterDelegate { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "AppDelegate") + + var processing = false + var isReadyToUpload = false + + private let connectivityLock = NSLock() + private var _isInternetConnected = false + var isInternetConnected: Bool { + get { connectivityLock.lock(); defer { connectivityLock.unlock() }; return _isInternetConnected } + set { connectivityLock.lock(); defer { connectivityLock.unlock() }; _isInternetConnected = newValue } + } + + private var openFileObserver: NSObjectProtocol? + + public private(set) static var appDelegate: AppDelegate! + + public override init() { + super.init() + AppDelegate.appDelegate = self + } + + // MARK: - Lifecycle + + public func applicationDidFinishLaunching(_ notification: Notification) { + NSAppleEventManager.shared().setEventHandler(self, + andSelector: #selector(handleGetURL(withEvent:andReply:)), + forEventClass: AEEventClass(kInternetEventClass), + andEventID: AEEventID(kAEGetURL)) + Self.log.info("AppBox Started.") + + UploadManager.setupDBClientsManager() + + Task { await AppServices.appKeyProvider.refresh(using: AppServices.serviceClient) } + + NotificationCenter.default.addObserver(self, selector: #selector(handleDropboxLoggedOut(_:)), + name: Notification.Name("DropBoxLoggedOutNotification"), object: nil) + + let center = UNUserNotificationCenter.current() + center.delegate = self + center.requestAuthorization(options: [.alert, .sound]) { _, error in + if let error { Self.log.error("Notification authorization error: \(error.localizedDescription)") } + } + + DefaultSettings.setFirstTimeSettings() + DefaultSettings.setEveryStartupSettings() + + WebhookSecrets.shared.migrateFromUserDefaultsIfNeeded() + + UpdateHandler.isNewVersionAvailable { available, url in + if available && !UserData.updateAlertEnable() { + if url == nil && UpdateHandler.isInstalledViaHomebrew() { + UpdateHandler.showHomebrewUpdateAlert() + } else { + UpdateHandler.showUpdateAlert(withUpdateURL: url) + } + } + } + + } + + public func applicationWillTerminate(_ notification: Notification) { + Self.log.info("AppBox Terminated.") + if let openFileObserver { NotificationCenter.default.removeObserver(openFileObserver) } + openFileObserver = nil + saveCoreDataChanges() + deleteTemporaryFiles() + } + + public func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { + true + } + + public func application(_ sender: NSApplication, openFile filename: String) -> Bool { + if processing { return true } + openFile(withPath: filename) + return true + } + + func openFile(withPath filePath: String) { + if isReadyToUpload { + NotificationCenter.default.post(name: Notification.Name("UseOpenFilesNotification"), object: filePath) + } else { + if let openFileObserver { NotificationCenter.default.removeObserver(openFileObserver) } + openFileObserver = NotificationCenter.default.addObserver( + forName: Notification.Name("AppBoxReadyToBuildNotification"), object: nil, queue: .main) { _ in + NotificationCenter.default.post(name: Notification.Name("UseOpenFilesNotification"), object: filePath) + } + } + } + + // MARK: - Helpers + + @objc private func handleDropboxLoggedOut(_ notification: Notification) { + guard DropboxSession.isAuthorized else { return } + DropboxSession.signOut() + UserData.setDropboxUsedSpace(0) + UserData.setDropboxAvailableSpace(0) + UserData.setLoggedInUserEmail("") + UserData.setLoggedInUserDisplayName("") + NSApp.updateAccountsMenu() + } + + @objc private func handleGetURL(withEvent event: NSAppleEventDescriptor, andReply reply: NSAppleEventDescriptor) { + guard let urlString = event.paramDescriptor(forKeyword: AEKeyword(keyDirectObject))?.stringValue, + !urlString.isEmpty else { + Self.log.warning("Received empty URL event") + return + } + guard let url = URL(string: urlString) else { + Self.log.warning("Failed to parse URL: \(urlString)") + return + } + Self.log.info("Handling URL = \(url)") + + _ = DropboxSession.handleRedirect(url) { success, errorMessage in + if success { + Self.log.info("Success! User is logged into Dropbox.") + NotificationCenter.default.post(name: Notification.Name("DropBoxLoggedInNotification"), object: nil) + } else { + Self.log.info("Dropbox authorization failed/cancelled: \(errorMessage ?? "")") + _ = Common.showAlert(withTitle: "Authorization Canceled.", andMessage: "") + } + } + } + + // MARK: - UNUserNotificationCenter delegate + + public func userNotificationCenter(_ center: UNUserNotificationCenter, + didReceive response: UNNotificationResponse, + withCompletionHandler completionHandler: @escaping () -> Void) { + center.removeDeliveredNotifications(withIdentifiers: [response.notification.request.identifier]) + completionHandler() + } + + public func userNotificationCenter(_ center: UNUserNotificationCenter, + willPresent notification: UNNotification, + withCompletionHandler completionHandler: @escaping (UNNotificationPresentationOptions) -> Void) { + completionHandler([.list, .banner, .sound]) + } + + // MARK: - Core Data stack (forwards to AppBoxCore's CoreDataStack) + + var managedObjectContext: NSManagedObjectContext? { + do { + return try CoreDataStack.shared.loadViewContext() + } catch { + NSApplication.shared.presentError(error) + return nil + } + } + + func saveCoreDataChanges() { + if managedObjectContext?.commitEditing() == false { + Self.log.info("unable to commit editing before saving") + } + do { try CoreDataStack.shared.saveChanges() } + catch { NSApplication.shared.presentError(error) } + } + + public func applicationShouldTerminate(_ sender: NSApplication) -> NSApplication.TerminateReply { + guard let context = CoreDataStack.shared.existingViewContext else { return .terminateNow } + if !context.commitEditing() { + Self.log.info("unable to commit editing to terminate") + return .terminateCancel + } + if !context.hasChanges { return .terminateNow } + + do { + try context.save() + } catch { + if sender.presentError(error) { return .terminateCancel } + let alert = NSAlert() + alert.messageText = "Could not save changes while quitting. Quit anyway?" + alert.informativeText = "Quitting now will lose any changes you have made since the last successful save" + alert.addButton(withTitle: "Quit anyway") + alert.addButton(withTitle: "Cancel") + if alert.runModal() == .alertSecondButtonReturn { return .terminateCancel } + } + return .terminateNow + } + + // MARK: - Temp cleanup + + private func deleteTemporaryFiles() { + let root = ABStorePaths.temporaryDirectoryURL + guard FileManager.default.fileExists(atPath: root.path) else { return } + do { + try FileManager.default.removeItem(at: root) + } catch { + Self.log.error("Failed to clear the AppBox temporary directory: \(error.localizedDescription)") + } + } +} diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/Contents.json b/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/Contents.json deleted file mode 100644 index 59c6f165..00000000 --- a/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "bar-chart@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "bar-chart@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/bar-chart@2x.png b/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/bar-chart@2x.png deleted file mode 100644 index 91a4a407..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/bar-chart@2x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/bar-chart@3x.png b/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/bar-chart@3x.png deleted file mode 100644 index 32fea9ee..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Dashboard/Analytics.imageset/bar-chart@3x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/Contents.json b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/Contents.json deleted file mode 100644 index 268e5bc2..00000000 --- a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "user@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "user@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/user@2x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/user@2x.png deleted file mode 100644 index 367ba21d..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/user@2x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/user@3x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/user@3x.png deleted file mode 100644 index 963ab548..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueAccount.imageset/user@3x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/Contents.json b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/Contents.json deleted file mode 100644 index c2617d2e..00000000 --- a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "mail@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "mail@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/mail@2x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/mail@2x.png deleted file mode 100644 index 2eac3e0f..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/mail@2x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/mail@3x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/mail@3x.png deleted file mode 100644 index c9d2fb34..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueEmail.imageset/mail@3x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/Contents.json b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/Contents.json deleted file mode 100644 index e2064d90..00000000 --- a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "info@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "info@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/info@2x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/info@2x.png deleted file mode 100644 index cb526c48..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/info@2x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/info@3x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/info@3x.png deleted file mode 100644 index c593fe7d..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueHelp.imageset/info@3x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/Contents.json b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/Contents.json deleted file mode 100644 index 224bf4d8..00000000 --- a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/Contents.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "images" : [ - { - "idiom" : "universal", - "scale" : "1x" - }, - { - "idiom" : "universal", - "filename" : "settings@2x.png", - "scale" : "2x" - }, - { - "idiom" : "universal", - "filename" : "settings@3x.png", - "scale" : "3x" - } - ], - "info" : { - "version" : 1, - "author" : "xcode" - } -} \ No newline at end of file diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/settings@2x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/settings@2x.png deleted file mode 100644 index 2d9db22b..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/settings@2x.png and /dev/null differ diff --git a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/settings@3x.png b/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/settings@3x.png deleted file mode 100644 index c8cfdeca..00000000 Binary files a/AppBox/Assets/AppBoxIcons.xcassets/Preferences/BlueSetting.imageset/settings@3x.png and /dev/null differ diff --git a/AppBox/Common/AppServices.swift b/AppBox/Common/AppServices.swift new file mode 100644 index 00000000..fa78a343 --- /dev/null +++ b/AppBox/Common/AppServices.swift @@ -0,0 +1,17 @@ +// +// AppServices.swift +// AppBox + +import Foundation +import AppBoxCore + +enum AppServices { + static let serviceClient = AppBoxServiceClient( + configuration: .production(clientToken: AppBoxSecrets.clientToken), + httpClient: URLSessionHTTPClient(), + tokenProvider: DropboxSessionTokenProvider()) + + static let appKeyProvider = DropboxAppKeyProvider( + store: UserDefaultsKeyValueStore(), + fallback: AppBoxSecrets.dropboxAppKey) +} diff --git a/AppBox/Common/CLIIPAUpload/CLIIPAUpload.h b/AppBox/Common/CLIIPAUpload/CLIIPAUpload.h deleted file mode 100644 index b569b79e..00000000 --- a/AppBox/Common/CLIIPAUpload/CLIIPAUpload.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// RepoBuilder.h -// AppBox -// -// Created by Vineet Choudhary on 07/04/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#import "IPAUploadInfo.h" - -@interface CLIIPAUpload : NSObject { - -} - -+ (IPAUploadInfo *)ipaUploadInfoWithIPAPath:(NSString *)ipaPath; - -@end diff --git a/AppBox/Common/CLIIPAUpload/CLIIPAUpload.m b/AppBox/Common/CLIIPAUpload/CLIIPAUpload.m deleted file mode 100644 index e7a43b0d..00000000 --- a/AppBox/Common/CLIIPAUpload/CLIIPAUpload.m +++ /dev/null @@ -1,145 +0,0 @@ -// -// RepoBuilder.m -// AppBox -// -// Created by Vineet Choudhary on 07/04/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "CLIIPAUpload.h" - -@implementation CLIIPAUpload{ - -} - -//MARK: - IPA -+ (IPAUploadInfo *)ipaUploadInfoWithIPAPath:(NSString *)ipaPath { - IPAUploadInfo *ipaUploadInfo = [[IPAUploadInfo alloc] initEmpty]; - ipaUploadInfo.ipaFullPath = [NSURL fileURLWithPath:ipaPath]; - [[self class] setCommonArgumentsToIPAUploadInfo:ipaUploadInfo]; - return ipaUploadInfo; -} - - -//MARK: - Common Arguments -+(void)setCommonArgumentsToIPAUploadInfo:(IPAUploadInfo *)ipaUploadInfo { - NSArray *arguments = [[NSProcessInfo processInfo] arguments]; - for (NSString *argument in arguments) { - - //Webhook Message - if ([argument containsString:abArgsWebHookMessage]) { - NSArray *components = [argument componentsSeparatedByString:abArgsWebHookMessage]; - if (components.count == 2) { - DDLogInfo(@"Webhook message configured."); - ipaUploadInfo.webhookMessage = [components lastObject]; - } else { - DDLogInfo(@"Invalid Webhook Message Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //Slack Webhook - else if ([argument containsString:abArgsSlackWebHook]) { - NSArray *components = [argument componentsSeparatedByString:abArgsSlackWebHook]; - if (components.count == 2) { - NSString *webhookURL = [components lastObject]; - if (![Common isValidWebhookURL:webhookURL]) { - DDLogError(@"Invalid Slack Webhook URL format. Must be a valid HTTP/HTTPS URL."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - DDLogInfo(@"Slack webhook configured."); - ipaUploadInfo.slackWebhook = webhookURL; - } else { - DDLogInfo(@"Invalid Slack Webhook Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //MS Teams Webhook - else if ([argument containsString:abArgsMSTeamsWebHook]) { - NSArray *components = [argument componentsSeparatedByString:abArgsMSTeamsWebHook]; - if (components.count == 2) { - NSString *webhookURL = [components lastObject]; - if (![Common isValidWebhookURL:webhookURL]) { - DDLogError(@"Invalid MS Teams Webhook URL format. Must be a valid HTTP/HTTPS URL."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - DDLogInfo(@"MS Teams webhook configured."); - ipaUploadInfo.msTeamsWebhook = webhookURL; - } else { - DDLogInfo(@"Invalid MS Teams Webhook Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //Emails - else if ([argument containsString:abArgsEmails]) { - NSArray *components = [argument componentsSeparatedByString:abArgsEmails]; - if (components.count == 2) { - NSString *emailList = [components lastObject]; - if (![MailHandler isAllValidEmail:emailList]) { - DDLogError(@"Invalid email format. Provide comma-separated valid email addresses."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - DDLogInfo(@"Email recipients configured."); - ipaUploadInfo.emails = emailList; - } else { - DDLogInfo(@"Invalid Emails Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //Personal Messages - else if ([argument containsString:abArgsPersonalMessage]) { - NSArray *components = [argument componentsSeparatedByString:abArgsPersonalMessage]; - if (components.count == 2) { - DDLogInfo(@"Personal message configured."); - ipaUploadInfo.personalMessage = [components lastObject]; - } else { - DDLogInfo(@"Invalid Personal Message Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //Keep Same Link - else if ([argument containsString:abArgsKeepSameLink]) { - NSArray *components = [argument componentsSeparatedByString:abArgsKeepSameLink]; - if (components.count == 2) { - DDLogInfo(@"Keep Same Link set to \"%@\".", [components lastObject]); - ipaUploadInfo.keepSameLink = ([[components lastObject] isEqualToString:@"0"] || ((BOOL)[[components lastObject] boolValue]) == NO) ? @0 : @1; - } else { - DDLogInfo(@"Invalid Keep Same Link Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //dropbox folder name - else if ([argument containsString:abArgsDropBoxFolderName]) { - NSArray *components = [argument componentsSeparatedByString:abArgsDropBoxFolderName]; - if (components.count == 2) { - DDLogInfo(@"Dropbox folder name configured."); - NSString *bundlePath = [NSString stringWithFormat:@"/%@",[components lastObject]]; - bundlePath = [bundlePath stringByReplacingOccurrencesOfString:@" " withString:abEmptyString]; - ipaUploadInfo.bundleDirectory = [NSURL URLWithString:bundlePath]; - } else { - DDLogInfo(@"Invalid Dropbox Folder Name Argument."); - [AppDelegate terminateWithExitCode:abExitCodeForInvalidCommand]; - } - } - - //Email and Email Subject Prefix - NSMutableSet *emails = [[NSMutableSet alloc] init]; - - if (ipaUploadInfo.emails && ipaUploadInfo.emails.length > 0) { - [emails addObjectsFromArray:[ipaUploadInfo.emails componentsSeparatedByString:@","]]; - } - - [emails removeObject:@""]; - if (emails.count > 0) { - ipaUploadInfo.emails = [emails.allObjects componentsJoinedByString:@","]; - } - - } -} - -@end diff --git a/AppBox/Common/CLISupportHelper/CLISupportHelper.h b/AppBox/Common/CLISupportHelper/CLISupportHelper.h deleted file mode 100644 index 8dd669e8..00000000 --- a/AppBox/Common/CLISupportHelper/CLISupportHelper.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// CLISupportInstaller.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN -@interface CLISupportHelper : NSObject - -+ (BOOL)install; -+ (BOOL)uninstall; -+ (BOOL)installPromptAfterLogin; -+ (BOOL)updatePromptAfterVersionUpdate; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Common/CLISupportHelper/CLISupportHelper.m b/AppBox/Common/CLISupportHelper/CLISupportHelper.m deleted file mode 100644 index c522eca2..00000000 --- a/AppBox/Common/CLISupportHelper/CLISupportHelper.m +++ /dev/null @@ -1,144 +0,0 @@ -// -// CLISupportHelper.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "CLISupportHelper.h" - -@implementation CLISupportHelper - -+ (BOOL)install { - if ([self runScript:@"install.sh"]) { - // Save app version as CLI version - NSString *appVersion = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - [UserData setCLIVersion:appVersion]; - - // Show success alert - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Success"]; - [alert setInformativeText:@"AppBox CLI tool installed successfully.\n\nYou can use it from terminal using the command \"appboxcli\"."]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle:@"OK"]; - [alert addButtonWithTitle:@"Learn More"]; - if ([alert runModal] == NSAlertSecondButtonReturn){ - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abAppBoxCLIHelpURL]]; - } - return YES; - }else{ - [Common showAlertWithTitle:@"Error" andMessage:@"Failed to install AppBox CLI tool."]; - return NO; - } -} - -+ (BOOL)uninstall { - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Are you sure?"]; - [alert setInformativeText:@"Do you want to uninstall AppBox CLI tool?"]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle:@"Yes"]; - [alert addButtonWithTitle:@"No"]; - if ([alert runModal] == NSAlertFirstButtonReturn){ - if ([self runScript:@"uninstall.sh"]){ - [Common showAlertWithTitle:@"Success" andMessage:@"AppBox CLI tool uninstalled successfully."]; - return YES; - }else{ - [Common showAlertWithTitle:@"Error" andMessage:@"Failed to uninstall AppBox CLI tool."]; - return NO; - } - } else { - return NO; - } -} - -+ (BOOL)installPromptAfterLogin { - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Install CLI Tool"]; - [alert setInformativeText:@"Do you want to install AppBox CLI tool to use AppBox from terminal?"]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle:@"Install"]; - [alert addButtonWithTitle:@"Not Now"]; - if ([alert runModal] == NSAlertFirstButtonReturn){ - return [self install]; - } else { - NSAlert *laterInstallOption = [[NSAlert alloc] init]; - [laterInstallOption setMessageText: @"You can install AppBox CLI tool later from the \"CLI\" menu bar option."]; - [laterInstallOption setAlertStyle:NSAlertStyleInformational]; - [laterInstallOption addButtonWithTitle:@"OK"]; - return NO; - } -} - -+ (BOOL)updatePromptAfterVersionUpdate { - NSString *appVersion = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - NSString *cliVersion = [UserData cliVersion]; - if ([appVersion isEqualToString:cliVersion] || cliVersion.isEmpty) { - return NO; - } - - if (![NSFileManager.defaultManager fileExistsAtPath:abCLIPath]) { - return NO; - } - - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Update CLI Tool"]; - [alert setInformativeText:@"A newer version of AppBox CLI tool is available. You must update it to use with the latest version of AppBox."]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle:@"Update"]; - [alert addButtonWithTitle:@"Uninstall"]; - if ([alert runModal] == NSAlertFirstButtonReturn){ - if ([self runScript:@"update.sh"]) { - [UserData setCLIVersion:appVersion]; - [Common showAlertWithTitle:@"Success" andMessage:@"AppBox CLI tool updated successfully."]; - return YES; - } else { - [Common showAlertWithTitle:@"Error" andMessage:@"Failed to update AppBox CLI tool."]; - return NO; - } - } else { - if ([self uninstall]) { - return YES; - } else { - return [self updatePromptAfterVersionUpdate]; - } - } -} - -+ (BOOL)runScript:(NSString *)script { - NSString * const kCLIName = @"appboxcli"; - NSString * const kCLIInstallPath = [NSString stringWithFormat:@"/usr/local/bin/%@", kCLIName]; - - AuthorizationRef authorization; - OSStatus status = AuthorizationCreate(NULL, NULL, kAuthorizationFlagDefaults, &authorization); - if (status == errAuthorizationSuccess) { - AuthorizationItem items = {kAuthorizationRightExecute, 0, NULL, 0}; - AuthorizationRights rights = {1, &items}; - status = AuthorizationCopyRights(authorization, &rights, NULL, kAuthorizationFlagDefaults | kAuthorizationFlagInteractionAllowed | kAuthorizationFlagExtendRights | kAuthorizationFlagPreAuthorize, NULL); - if (status == errAuthorizationSuccess) { - NSString *sharedSupportPath = NSBundle.mainBundle.sharedSupportPath; - NSString *installerPath = [sharedSupportPath stringByAppendingPathComponent:script]; - NSString *toolPath = [sharedSupportPath stringByAppendingPathComponent:kCLIName]; - char *arguments[] = {(char*)toolPath.fileSystemRepresentation, (char*)kCLIInstallPath.fileSystemRepresentation, NULL}; - FILE *communicationPipe = NULL; -#pragma clang diagnostic push -#pragma clang diagnostic ignored "-Wdeprecated-declarations" - status = AuthorizationExecuteWithPrivileges(authorization, installerPath.fileSystemRepresentation, kAuthorizationFlagDefaults, arguments, &communicationPipe); -#pragma clang diagnostic pop - if (status == errAuthorizationSuccess) { - char buffer[128]; - ssize_t count = read(fileno(communicationPipe), buffer, sizeof(buffer)); - NSData *data = [[NSData alloc] initWithBytes:buffer length:count]; - NSString *result = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding]; - if (![result isEqualToString:@"OK"]) { - status = -1; // Code doesn't matter, just not errAuthorizationSuccess - } - } - } - AuthorizationFree(authorization, kAuthorizationFlagDefaults); - } - return status == errAuthorizationSuccess; -} - -@end diff --git a/AppBox/Common/CLISupportHelper/CLISupportHelper.swift b/AppBox/Common/CLISupportHelper/CLISupportHelper.swift new file mode 100644 index 00000000..93483c6a --- /dev/null +++ b/AppBox/Common/CLISupportHelper/CLISupportHelper.swift @@ -0,0 +1,193 @@ +// +// CLISupportHelper.swift +// AppBox + +import Foundation +import AppKit + +public final class CLISupportHelper: NSObject { + + private static let cliPath = "/usr/local/bin/appboxcli" + private static let cliHelpURL = "https://docs.getappbox.com/CommandLineInterface/" + + /// The CLI binary shipped inside the app bundle that the /usr/local/bin symlink points to. + private static var toolPath: String { + guard let support = Bundle.main.sharedSupportPath else { return "" } + return (support as NSString).appendingPathComponent("appboxcli") + } + + @discardableResult + public class func install() -> Bool { + switch installSymlink() { + case .cancelled: + return false + case .failed(let reason): + showFailure(installing: true, reason: reason) + return false + case .succeeded: + break + } + UserData.setCLIVersion(Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String) + let alert = NSAlert() + alert.messageText = "Success" + alert.informativeText = "AppBox CLI tool installed successfully.\n\nYou can use it from terminal using the command \"appboxcli\"." + alert.alertStyle = .informational + alert.addButton(withTitle: "OK") + alert.addButton(withTitle: "Learn More") + if alert.runModal() == .alertSecondButtonReturn, let url = URL(string: cliHelpURL) { + NSWorkspace.shared.open(url) + } + return true + } + + @discardableResult + public class func uninstall() -> Bool { + let alert = NSAlert() + alert.messageText = "Are you sure?" + alert.informativeText = "Do you want to uninstall AppBox CLI tool?" + alert.alertStyle = .informational + alert.addButton(withTitle: "Yes") + alert.addButton(withTitle: "No") + guard alert.runModal() == .alertFirstButtonReturn else { return false } + switch uninstallSymlink() { + case .succeeded: + UserData.setCLIVersion(nil) + Common.showAlert(withTitle: "Success", andMessage: "AppBox CLI tool uninstalled successfully.") + return true + case .cancelled: + return false + case .failed(let reason): + showFailure(installing: false, reason: reason) + return false + } + } + + @discardableResult + public class func installPromptAfterLogin() -> Bool { + let alert = NSAlert() + alert.messageText = "Install CLI Tool" + alert.informativeText = "Do you want to install AppBox CLI tool to use AppBox from terminal?" + alert.alertStyle = .informational + alert.addButton(withTitle: "Install") + alert.addButton(withTitle: "Not Now") + if alert.runModal() == .alertFirstButtonReturn { + return install() + } + let later = NSAlert() + later.messageText = "You can install AppBox CLI tool later from the \"CLI\" menu bar option." + later.alertStyle = .informational + later.addButton(withTitle: "OK") + later.runModal() + return false + } + + @discardableResult + public class func updatePromptAfterVersionUpdate() -> Bool { + let appVersion = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" + let cliVersion = UserData.cliVersion() + if appVersion == cliVersion || cliVersion.isEmpty { return false } + guard FileManager.default.fileExists(atPath: cliPath) else { return false } + + let alert = NSAlert() + alert.messageText = "Update CLI Tool" + alert.informativeText = "A newer version of AppBox CLI tool is available. You must update it to use with the latest version of AppBox." + alert.alertStyle = .informational + alert.addButton(withTitle: "Update") + alert.addButton(withTitle: "Uninstall") + if alert.runModal() == .alertFirstButtonReturn { + switch installSymlink() { + case .succeeded: + UserData.setCLIVersion(appVersion) + Common.showAlert(withTitle: "Success", andMessage: "AppBox CLI tool updated successfully.") + return true + case .cancelled: + return false + case .failed(let reason): + showFailure(installing: true, reason: reason) + return false + } + } + return uninstall() + } + + // MARK: - Symlink management + + /// The outcome of an install or uninstall attempt, including an explicit user-cancelled case. + private enum SymlinkOutcome { + case succeeded + case cancelled + case failed(String) + } + + private static var installDirectory: String { (cliPath as NSString).deletingLastPathComponent } + + /// Links the CLI as the user, escalating behind the system authentication prompt when the destination isn't writable. + private class func installSymlink() -> SymlinkOutcome { + if createSymlink() { return .succeeded } + let command = "/bin/mkdir -p \(shellQuoted(installDirectory))" + + " && /bin/ln -sfn \(shellQuoted(toolPath)) \(shellQuoted(cliPath))" + return runPrivileged(command) + } + + /// Removes the link as the user, escalating behind the system authentication prompt when the destination isn't writable. + private class func uninstallSymlink() -> SymlinkOutcome { + if removeSymlink() { return .succeeded } + return runPrivileged("/bin/rm -f \(shellQuoted(cliPath))") + } + + /// Runs one shell command as root; macOS presents its own administrator password prompt. + private class func runPrivileged(_ command: String) -> SymlinkOutcome { + let source = "do shell script \"\(appleScriptEscaped(command))\" with administrator privileges" + guard let script = NSAppleScript(source: source) else { + return .failed("AppBox couldn't prepare the installation command.") + } + var errorInfo: NSDictionary? + script.executeAndReturnError(&errorInfo) + guard let errorInfo else { return .succeeded } + if errorInfo[NSAppleScript.errorNumber] as? Int == userCancelledErrorNumber { return .cancelled } + return .failed(errorInfo[NSAppleScript.errorMessage] as? String ?? "Unknown error.") + } + + /// `errAEWaitCanceled` — returned when the user dismisses the authentication prompt. + private static let userCancelledErrorNumber = -128 + + class func shellQuoted(_ value: String) -> String { + "'" + value.replacingOccurrences(of: "'", with: "'\\''") + "'" + } + + class func appleScriptEscaped(_ value: String) -> String { + value.replacingOccurrences(of: "\\", with: "\\\\") + .replacingOccurrences(of: "\"", with: "\\\"") + } + + private class func createSymlink() -> Bool { + let fm = FileManager.default + if !fm.fileExists(atPath: installDirectory) { + do { try fm.createDirectory(atPath: installDirectory, withIntermediateDirectories: true) } + catch { return false } + } + try? fm.removeItem(atPath: cliPath) + do { + try fm.createSymbolicLink(atPath: cliPath, withDestinationPath: toolPath) + return true + } catch { return false } + } + + private class func removeSymlink() -> Bool { + do { + try FileManager.default.removeItem(atPath: cliPath) + return true + } catch let error as NSError { + return error.domain == NSCocoaErrorDomain && error.code == NSFileNoSuchFileError + } + } + + private class func showFailure(installing: Bool, reason: String) { + let alert = NSAlert() + alert.messageText = installing ? "Couldn't install the CLI tool" : "Couldn't uninstall the CLI tool" + alert.informativeText = "AppBox couldn't \(installing ? "write to" : "remove the link from") \(installDirectory).\n\n\(reason)" + alert.alertStyle = .warning + alert.addButton(withTitle: "OK") + alert.runModal() + } +} diff --git a/AppBox/Common/Common.h b/AppBox/Common/Common.h deleted file mode 100644 index 3ac00e68..00000000 --- a/AppBox/Common/Common.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// Common.h -// AppBox -// -// Created by Vineet Choudhary on 06/09/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import -#import - -@interface Common : NSObject - -+ (NSString*)generateUUID; -+ (NSURL *)getFileDirectoryForFilePath:(NSURL *)filePath; -+ (NSError *)errorWithDesc:(NSString *)error andCode:(NSInteger)code; -+ (BOOL)isValidWebhookURL:(NSString *)urlString; - -+ (void)showNoInternetConnectionAvailabeAlert; -+ (void)showUploadNotificationWithName:(NSString *)name andURL:(NSURL *)url; -+ (NSModalResponse)showAlertWithTitle:(NSString *)title andMessage:(NSString *)message; - -+ (DBManager *)currentDBManager; -@end diff --git a/AppBox/Common/Common.m b/AppBox/Common/Common.m deleted file mode 100644 index f84d30ed..00000000 --- a/AppBox/Common/Common.m +++ /dev/null @@ -1,93 +0,0 @@ -// -// Common.m -// AppBox -// -// Created by Vineet Choudhary on 06/09/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "Common.h" -#import - -@implementation Common - -+ (NSString*)generateUUID { - NSMutableData *data = [NSMutableData dataWithLength:32]; - int result = SecRandomCopyBytes(kSecRandomDefault, 32, data.mutableBytes); - if (result != 0) { - DDLogError(@"Error generating random bytes: %d", errno); - return [[NSUUID UUID] UUIDString]; - } - NSString *base64EncodedData = [data base64EncodedStringWithOptions:0]; - base64EncodedData = [base64EncodedData stringByReplacingOccurrencesOfString:@"/" withString:abEmptyString]; - return base64EncodedData; -} - -+ (NSURL *)getFileDirectoryForFilePath:(NSURL *)filePath{ - NSArray *pathComponents = [filePath.relativePath pathComponents]; - NSString *fileDirectory = [NSString pathWithComponents:[pathComponents subarrayWithRange:NSMakeRange(0, pathComponents.count - 1)]]; - fileDirectory = [fileDirectory stringByAddingPercentEncodingWithAllowedCharacters:[NSCharacterSet URLPathAllowedCharacterSet]]; - return [NSURL URLWithString:fileDirectory]; -} - -+(NSError *)errorWithDesc:(NSString *)error andCode:(NSInteger)code{ - NSMutableDictionary *errorInfo = [[NSMutableDictionary alloc] init]; - [errorInfo setValue:error forKey:NSLocalizedDescriptionKey]; - return [NSError errorWithDomain:NSCocoaErrorDomain code:code userInfo:errorInfo]; -} - -+ (BOOL)isValidWebhookURL:(NSString *)urlString { - if (urlString.length == 0) return NO; - NSURL *url = [NSURL URLWithString:urlString]; - return (url != nil && url.scheme != nil && url.host != nil && - ([url.scheme isEqualToString:@"https"] || [url.scheme isEqualToString:@"http"])); -} - -//MARK: - Notifications -+ (NSModalResponse)showAlertWithTitle:(NSString *)title andMessage:(NSString *)message{ - DDLogInfo(@"ALERT -\nTitle - %@ Message - %@", title, message); - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: title == nil ? @"Error" : title]; - [alert setInformativeText:message == nil ? @"" : message]; - [alert setAlertStyle:NSAlertStyleWarning]; - return [alert runModal]; -} - -+ (void)showNoInternetConnectionAvailabeAlert{ - [Common showAlertWithTitle:@"Error" andMessage:@"There is no Internet connection."]; -} - -+ (void)showUploadNotificationWithName:(NSString *)name andURL:(NSURL *)url { - NSString *title = [NSString stringWithFormat:@"%@ Uploaded.", name]; - NSString *message = [NSString stringWithFormat:@"Share URL - %@", url.absoluteString]; - - UNMutableNotificationContent *content = [[UNMutableNotificationContent alloc] init]; - content.title = title; - content.body = message; - content.sound = [UNNotificationSound defaultSound]; - - UNTimeIntervalNotificationTrigger *trigger = [UNTimeIntervalNotificationTrigger triggerWithTimeInterval:1 repeats:NO]; - NSString *identifier = [[NSUUID UUID] UUIDString]; - UNNotificationRequest *request = [UNNotificationRequest requestWithIdentifier:identifier content:content trigger:trigger]; - - [[UNUserNotificationCenter currentNotificationCenter] addNotificationRequest:request withCompletionHandler:^(NSError * _Nullable error) { - if (error) { - DDLogError(@"Failed to schedule notification: %@", error.localizedDescription); - } - }]; -} - -+ (DBManager *)currentDBManager { - static DBManager *manager = nil; - static dispatch_once_t onceToken; - dispatch_once(&onceToken, ^{ - manager = [[DBManager alloc] init]; - manager.appName = [NSBundle.mainBundle.infoDictionary objectForKey:(NSString *)kCFBundleNameKey]; - manager.version = [NSBundle.mainBundle.infoDictionary objectForKey:@"CFBundleShortVersionString"]; - manager.bundleId = [NSBundle.mainBundle.infoDictionary objectForKey:(NSString *)kCFBundleIdentifierKey]; - }); - return manager; -} - - -@end diff --git a/AppBox/Common/Common.swift b/AppBox/Common/Common.swift new file mode 100644 index 00000000..2b8ee8d2 --- /dev/null +++ b/AppBox/Common/Common.swift @@ -0,0 +1,71 @@ +// +// Common.swift +// AppBox + +import Foundation +import AppKit +import UserNotifications +import Security +import os +import AppBoxCore + +public final class Common: NSObject { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "Common") + + public class func generateUUID() -> String { + var bytes = [UInt8](repeating: 0, count: 32) + let status = SecRandomCopyBytes(kSecRandomDefault, bytes.count, &bytes) + guard status == errSecSuccess else { + log.error("Error generating random bytes (status \(status, privacy: .public)).") + return UUID().uuidString + } + return Data(bytes).base64EncodedString().replacingOccurrences(of: "/", with: "") + } + + public class func getFileDirectory(forFilePath filePath: URL?) -> URL? { + guard let filePath else { return nil } + let components = (filePath.relativePath as NSString).pathComponents + guard !components.isEmpty else { return nil } + let directory = NSString.path(withComponents: Array(components.dropLast())) + guard let encoded = directory.addingPercentEncoding(withAllowedCharacters: .urlPathAllowed) else { + return nil + } + return URL(string: encoded) + } + + public class func error(withDesc desc: String?, andCode code: Int) -> NSError { + var userInfo: [String: Any]? = nil + if let desc { userInfo = [NSLocalizedDescriptionKey: desc] } + return NSError(domain: NSCocoaErrorDomain, code: code, userInfo: userInfo) + } + + // MARK: - Notifications + + + @discardableResult + public class func showAlert(withTitle title: String?, andMessage message: String?) -> Int { + log.info("ALERT - Title: \(title ?? "", privacy: .public) Message: \(message ?? "", privacy: .public)") + let alert = NSAlert() + alert.messageText = title ?? "Error" + alert.informativeText = message ?? "" + alert.alertStyle = .warning + return alert.runModal().rawValue + } + + public class func showUploadNotification(withName name: String, andURL url: URL) { + let content = UNMutableNotificationContent() + content.title = "\(name) Uploaded." + content.body = "Share URL - \(url.absoluteString)" + content.sound = .default + + let trigger = UNTimeIntervalNotificationTrigger(timeInterval: 1, repeats: false) + let request = UNNotificationRequest(identifier: UUID().uuidString, content: content, trigger: trigger) + UNUserNotificationCenter.current().add(request) { error in + if let error = error { + log.error("Failed to schedule notification: \(error.localizedDescription, privacy: .public)") + } + } + } + +} diff --git a/AppBox/Common/Constants.h b/AppBox/Common/Constants.h deleted file mode 100644 index 02a3354e..00000000 --- a/AppBox/Common/Constants.h +++ /dev/null @@ -1,110 +0,0 @@ -// -// Constants.h -// AppBox -// -// Created by Vineet Choudhary on 28/11/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#ifndef Constants_h -#define Constants_h - -//Base URL's -#define abGitHubReleaseBaseURL @"https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/releases/tag/" -#define abDropBoxAppBaseURL @"https://www.dropbox.com/home/Apps/AppBox%20-%20Build%2C%20Test%20and%20Distribute%20iOS%20Apps" - -//Other URL's -#define abDefaultLatestDownloadURL @"https://getappbox.com/download" -#define abDocumentationURL @"https://docs.getappbox.com" -#define abLicenseURL @"https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/blob/master/LICENSE.md" -#define abGitHubLatestRelease @"https://api.github.com/repos/getappbox/AppBox-iOSAppsWirelessInstallation/releases/latest" -#define abGitHubLatestReleaseURL @"https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/releases/latest" -#define abHomebrewCaskAPI @"https://formulae.brew.sh/api/cask/appbox.json" -#define abTwitterURL @"https://twitter.com/AppBoxHQ" -#define abSlackImage @"https://getappbox.com/images/AppBoxIcon.png" -#define abWebHookSetupURL @"https://my.slack.com/apps/new/A0F7XDUAZ-incoming-webhooks" - -//Help URL -#define abDownloadIPAHelpURL @"https://docs.getappbox.com/Features/downloadipa/" -#define abMoreDetailsHelpURL @"https://docs.getappbox.com/Features/moredetails/" -#define abKeepSameLinkReadMoreURL @"https://docs.getappbox.com/Features/keepsamelink/" -#define abUploadChunkSizeHelpURL @"https://docs.getappbox.com/Features/uploadchunksize/" -#define abDontShowPerviousBuildURL @"https://docs.getappbox.com/Features/keepsamelink/#12-install-previous-versions:~:text=How%20to%20Create%20Two%20Different%20Links%20for%20the%20Same%20Build%20with%20the%20%22Keep%20Same%20Link%22%20Option%3F" -#define abAppBoxCLIHelpURL @"https://docs.getappbox.com/CommandLineInterface/" - -//Unique links -static NSString *const UNIQUE_LINK_SHARED = @"uniqueLinkShared"; -static NSString *const UNIQUE_LINK_SHORT = @"uniqueLinkShort"; -static NSString *const FILE_NAME_UNIQUE_JSON = @"appinfo.json"; -static NSString *const FILE_NAME_SHARE_URL = @".appbox_share_value.json"; - -//notification -#define abDropBoxLoggedInNotification @"DropBoxLoggedInNotification" -#define abDropBoxLoggedOutNotification @"DropBoxLoggedOutNotification" -#define abBuildRepoNotification @"BuildRepoNotification" -#define abUseOpenFilesNotification @"UseOpenFilesNotification" -#define abAppBoxReadyToUseNotification @"AppBoxReadyToBuildNotification" -#define abStopAppBoxLocalServer @"StopAppBoxLocalServer" - -//messages -#define abConnectedToInternet @"Connected to the Internet." -#define abNotConnectedToInternet @"Waiting for the Internet Connection." - -#define abTeamId @"teamId" -#define abFullName @"fullName" -#define abTeamName @"teamName" -#define abExpiryDate @"expiryDate" - -//others -#define abEmptyString @"" -#define abTeamIdLength 10 -#define abBytesToMB (1024 * 1024) -#define abDropboxOutOfSpaceWarningSize 150 -#define abOnErrorMaxRetryCount 3 -#define abEndOfSessionLog @"abEndOfSessionLog" - -//Under development feature flags -#define abMultiDBAccounts 0 - - -//enums -typedef enum : NSUInteger { - DBFileTypeIPA, - DBFileTypeManifest, - DBFileTypeJson, -} DBFileType; - -// CLI Exit Codes -#define abExitCodeForInvalidCommand 127 -#define abExitCodeForUploadFailed 124 -#define abExitCodeUnZipIPAError 121 -#define abExitCodeInfoPlistNotFound 120 -#define abExitCodeIPAFileNotFound 119 -#define abExitCodeUnableToCreateManiFestFile 118 -#define abExitCodeForMailFailed 111 -#define abExitCodeForSuccess 0 - -// CLI Arguments -#define abArgsIPA @"ipa=" -#define abArgsEmails @"emails=" -#define abArgsPersonalMessage @"message=" -#define abArgsKeepSameLink @"keepsamelink=" -#define abArgsDropBoxFolderName @"dbfolder=" -#define abArgsWebHookMessage @"webhookmessage=" -#define abArgsSlackWebHook @"slackwebhook=" -#define abArgsMSTeamsWebHook @"msteamswebhook=" - -// CLI Path -#define abCLIPath @"/usr/local/bin/appboxcli" - -//Weakify & Strongify -#define weakify(var) __weak typeof(var) AHKWeak_##var = var; - -#define strongify(var) \ -_Pragma("clang diagnostic push") \ -_Pragma("clang diagnostic ignored \"-Wshadow\"") \ -__strong typeof(var) var = AHKWeak_##var; \ -_Pragma("clang diagnostic pop") - - -#endif /* Constants_h */ diff --git a/AppBox/Common/DBErrorHandler/DBErrorHandler.h b/AppBox/Common/DBErrorHandler/DBErrorHandler.h deleted file mode 100644 index 64c1450d..00000000 --- a/AppBox/Common/DBErrorHandler/DBErrorHandler.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// DBErrorHandler.h -// AppBox -// -// Created by Vineet Choudhary on 17/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface DBErrorHandler : NSObject - -+(void)handleNetworkErrorWith:(DBRequestError *)networkError abErrorMessage:(NSString *)abErrorMessage; -+(void)handleDeleteErrorWith:(DBFILESDeleteError *)deleteError; -+(void)handleUploadErrorWith:(DBFILESUploadError *)uploadError; -+(void)handleUploadSessionLookupError:(DBFILESUploadSessionLookupError *)error; -+(void)handleUploadSessionFinishError:(DBFILESUploadSessionFinishError *)error; -+(void)handleUploadSessionAppendError:(DBFILESUploadSessionAppendError *)error; - -@end diff --git a/AppBox/Common/DBErrorHandler/DBErrorHandler.m b/AppBox/Common/DBErrorHandler/DBErrorHandler.m deleted file mode 100644 index 76e6e41f..00000000 --- a/AppBox/Common/DBErrorHandler/DBErrorHandler.m +++ /dev/null @@ -1,226 +0,0 @@ -// -// DBErrorHandler.m -// AppBox -// -// Created by Vineet Choudhary on 17/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "DBErrorHandler.h" - -@implementation DBErrorHandler - -+(void)handleNetworkErrorWith:(DBRequestError *)networkError abErrorMessage:(NSString *)abErrorMessage { - NSMutableString *errorMessage = [[NSMutableString alloc] init]; - if (networkError) { - [errorMessage appendFormat:@"\n\nDropbox Request Error - "]; - [errorMessage appendFormat:@"\nError Content - %@", networkError.errorContent]; - [errorMessage appendFormat:@"\nStatus Code - %@", networkError.statusCode]; - [errorMessage appendFormat:@"\nRequest Id - %@", networkError.requestId]; - if (abErrorMessage) { - [errorMessage appendFormat:@"\n\nAppBox Error - %@", abErrorMessage]; - } - - switch (networkError.tag) { - case DBRequestErrorAuth:{ - [errorMessage insertString:@"Errors due to invalid authentication credentials. Please login Again." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - [[NSNotificationCenter defaultCenter] postNotificationName:abDropBoxLoggedOutNotification object:self]; - }break; - - case DBRequestErrorHttp:{ - [errorMessage insertString:@"Errors produced at the HTTP layer. Please check following details and try again." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - - case DBRequestErrorAccess:{ - [errorMessage insertString:@"Errors due to invalid permission to access." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - - case DBRequestErrorClient:{ - if (![[AppDelegate appDelegate] isInternetConnected]){ - [Common showNoInternetConnectionAvailabeAlert]; - } else { - [errorMessage insertString:@"Errors due to a problem on the client-side of the SDK. Please check following details and try again." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - } - }break; - - case DBRequestErrorBadInput:{ - [errorMessage insertString:@"Errors due to bad input parameters to an API Operation. Please report the issue." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - - case DBRequestErrorPathRoot:{ - [errorMessage insertString:@"Errors due to invalid authentication credentials." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - - case DBRequestErrorRateLimit:{ - [errorMessage insertString:@"Error caused by rate limiting." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - - case DBRequestErrorInternalServer:{ - [errorMessage insertString:@"Errors due to a problem on Dropbox Server. Please try again." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - - default:{ - [errorMessage insertString:@"Something goes wrong. Please try again." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - }break; - } - } else { - [errorMessage insertString:@"Something goes wrong. Please try again." atIndex:0]; - [Common showAlertWithTitle:@"Error" andMessage:errorMessage]; - } -} - -+(void)handleDeleteErrorWith:(DBFILESDeleteError *)deleteError{ - switch (deleteError.tag) { - case DBFILESDeleteErrorPathLookup:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Can't able to find file/folder."]; - }break; - - case DBFILESDeleteErrorPathWrite: { - [Common showAlertWithTitle:@"Error" andMessage:@"Can't able to write at give path."]; - }break; - - case DBFILESDeleteErrorTooManyFiles: { - [Common showAlertWithTitle:@"Error" andMessage:@"There are too many files in one request. Please try again."]; - }break; - - case DBFILESDeleteErrorTooManyWriteOperations: { - [Common showAlertWithTitle:@"Error" andMessage:@"There are too many write operations in user's Dropbox. Please try again."]; - }break; - - case DBFILESDeleteErrorOther: { - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - - default:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - } -} - -+(void)handleUploadErrorWith:(DBFILESUploadError *)uploadError{ - switch (uploadError.tag) { - case DBFILESUploadErrorPath:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Unable to save the uploaded contents to a file."]; - }break; - - case DBFILESUploadErrorOther:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - - default:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - } -} - -+(void)handleUploadSessionLookupError:(DBFILESUploadSessionLookupError *)error{ - switch (error.tag) { - case DBFILESUploadSessionLookupErrorClosed:{ - [Common showAlertWithTitle:@"Error" andMessage:@"You are attempting to append data to an upload session that has already been closed. Please try again."]; - }break; - - case DBFILESUploadSessionLookupErrorNotFound:{ - [Common showAlertWithTitle:@"Error" andMessage:@"The upload session ID was not found or has expired. Upload sessions are valid for 48 hours. Please try again."]; - }break; - - case DBFILESUploadSessionLookupErrorNotClosed:{ - [Common showAlertWithTitle:@"Error" andMessage:@"The session must be closed before calling upload_session/finish_batch. Please try again."]; - }break; - - case DBFILESUploadSessionLookupErrorIncorrectOffset:{ - [Common showAlertWithTitle:@"Error" andMessage:@"The specified offset was incorrect. Please try again."]; - }break; - - case DBFILESUploadSessionLookupErrorOther:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - - default: - break; - } -} - -+(void)handleUploadSessionAppendError:(DBFILESUploadSessionAppendError *)error { - switch (error.tag) { - case DBFILESUploadSessionAppendErrorNotFound: { - [Common showAlertWithTitle:@"Error" andMessage:@"Upload session not found. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorIncorrectOffset: { - [Common showAlertWithTitle:@"Error" andMessage:@"Offset is incorrect for the upload session. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorClosed: { - [Common showAlertWithTitle:@"Error" andMessage:@"Upload session closed. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorNotClosed: { - [Common showAlertWithTitle:@"Error" andMessage:@"Upload session not closed. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorTooLarge: { - [Common showAlertWithTitle:@"Error" andMessage:@"The file size is too large. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorConcurrentSessionInvalidOffset: { - [Common showAlertWithTitle:@"Error" andMessage:@"Invalid offset for the concurrent session. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorConcurrentSessionInvalidDataSize: { - [Common showAlertWithTitle:@"Error" andMessage:@"Invalid data size for the concurrent session. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorPayloadTooLarge: { - [Common showAlertWithTitle:@"Error" andMessage:@"The payload size is too large. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorOther: { - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - - case DBFILESUploadSessionAppendErrorContentHashMismatch: { - [Common showAlertWithTitle:@"Error" andMessage:@"The content hash does not match. Please try again."]; - }break; - - default: - break; - } -} - -+(void)handleUploadSessionFinishError:(DBFILESUploadSessionFinishError *)error{ - switch (error.tag) { - case DBFILESUploadSessionFinishErrorPath:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Unable to save the uploaded contents to a file. Please try again."]; - }break; - - case DBFILESUploadSessionFinishErrorLookupFailed:{ - [Common showAlertWithTitle:@"Error" andMessage:@"The session arguments are incorrect. Please try again."]; - }break; - - case DBFILESUploadSessionFinishErrorTooManyWriteOperations:{ - [Common showAlertWithTitle:@"Error" andMessage:@"There are too many write operations happening in the user's Dropbox. Please try again."]; - }break; - - case DBFILESUploadSessionFinishErrorTooManySharedFolderTargets:{ - [Common showAlertWithTitle:@"Error" andMessage:@"The batch request commits files into too many different shared folders. Please try again."]; - }break; - - case DBFILESUploadSessionFinishErrorOther:{ - [Common showAlertWithTitle:@"Error" andMessage:@"Something goes wrong. Please try again."]; - }break; - - default: - break; - } -} - -@end diff --git a/AppBox/Common/DBErrorHandler/DBErrorHandler.swift b/AppBox/Common/DBErrorHandler/DBErrorHandler.swift new file mode 100644 index 00000000..ffdb87a5 --- /dev/null +++ b/AppBox/Common/DBErrorHandler/DBErrorHandler.swift @@ -0,0 +1,52 @@ +// +// DBErrorHandler.swift +// AppBox + +import Foundation +import AppBoxCore + +public enum DBErrorHandler { + + public static func handleStorageError(_ error: Error, fallbackMessage: String?) { + let (detail, isAuth) = payload(for: error) + let fallback = fallbackMessage ?? "" + let message: String + if !fallback.isEmpty, !detail.isEmpty { + message = "\(fallback)\n\n\(detail)" + } else if !fallback.isEmpty { + message = fallback + } else if !detail.isEmpty { + message = detail + } else { + message = "Something goes wrong. Please try again." + } + + _ = Common.showAlert(withTitle: "Error", andMessage: message) + + if isAuth { + NotificationCenter.default.post(name: Notification.Name("DropBoxLoggedOutNotification"), object: self) + } + } + + /// User-facing message + whether re-login is needed, for a failed storage operation. + static func payload(for error: Error) -> (message: String, isAuth: Bool) { + guard let storage = error as? StorageError else { + return ((error as NSError).localizedDescription, false) + } + switch storage { + case .notAuthenticated, .authenticationFailed: + return ("You're not signed in to Dropbox. Please log in again.", true) + case .network: + return ("No internet connection. Please check your connection and try again.", false) + case .server, .rateLimited: + return ("Dropbox had a temporary problem. Please try again.", false) + case .conflict(let message): + let detail = message.isEmpty + ? "The app's install page was changed by another AppBox while this operation was running." + : message + return ("\(detail)\n\nNothing was overwritten — please try again.", false) + case .notFound, .cancelled, .unknown: + return ("Upload failed: \(storage)", false) + } + } +} diff --git a/AppBox/Common/DefaultAppHandler/DefaultAppHandler.h b/AppBox/Common/DefaultAppHandler/DefaultAppHandler.h deleted file mode 100644 index 390ed5a2..00000000 --- a/AppBox/Common/DefaultAppHandler/DefaultAppHandler.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// DefaultAppHandler.h -// AppBox -// -// Created by Vineet Choudhary on 07/06/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import - -extern NSNotificationName const ABDefaultIPAHandlerDidChangeNotification; - -@interface DefaultAppHandler : NSObject - -+ (BOOL)isDefaultIPAHandler; -+ (void)setAsDefaultIPAHandler; -+ (void)removeAsDefaultIPAHandler; - -@end diff --git a/AppBox/Common/DefaultAppHandler/DefaultAppHandler.m b/AppBox/Common/DefaultAppHandler/DefaultAppHandler.m deleted file mode 100644 index 7f0ae1dc..00000000 --- a/AppBox/Common/DefaultAppHandler/DefaultAppHandler.m +++ /dev/null @@ -1,106 +0,0 @@ -// -// DefaultAppHandler.m -// AppBox -// -// Created by Vineet Choudhary on 07/06/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import "DefaultAppHandler.h" - -NSNotificationName const ABDefaultIPAHandlerDidChangeNotification = @"ABDefaultIPAHandlerDidChangeNotification"; - -@implementation DefaultAppHandler - -+ (BOOL)isDefaultIPAHandler { - NSString *bundleId = [[NSBundle mainBundle] bundleIdentifier]; - CFStringRef defaultHandler = LSCopyDefaultRoleHandlerForContentType(CFSTR("com.apple.itunes.ipa"), kLSRolesAll); - if (defaultHandler == NULL) return NO; - BOOL isDefault = [(__bridge_transfer NSString *)defaultHandler isEqualToString:bundleId]; - return isDefault; -} - -+ (void)setAsDefaultIPAHandler { - NSString *bundleId = [[NSBundle mainBundle] bundleIdentifier]; - BOOL wasPreviouslyDefault = [self isDefaultIPAHandler]; - - OSStatus status = LSSetDefaultRoleHandlerForContentType(CFSTR("com.apple.itunes.ipa"), kLSRolesAll, (__bridge CFStringRef)bundleId); - if (status != noErr) { - DDLogError(@"Failed to set AppBox as default IPA handler (error %d).", (int)status); - } else { - DDLogInfo(@"AppBox set as default application for .ipa files."); - } - - // Observe app becoming active to detect when system popup closes - [self observeAppActivationWithPreviousState:wasPreviouslyDefault]; -} - -+ (void)removeAsDefaultIPAHandler { - NSString *appBoxBundleId = [[NSBundle mainBundle] bundleIdentifier]; - BOOL wasPreviouslyDefault = [self isDefaultIPAHandler]; - - // Find all handlers for IPA content type and pick the first one that isn't AppBox - CFArrayRef allHandlers = LSCopyAllRoleHandlersForContentType(CFSTR("com.apple.itunes.ipa"), kLSRolesAll); - if (allHandlers != NULL) { - NSArray *handlers = (__bridge_transfer NSArray *)allHandlers; - for (NSString *handler in handlers) { - if (![handler isEqualToString:appBoxBundleId]) { - OSStatus status = LSSetDefaultRoleHandlerForContentType(CFSTR("com.apple.itunes.ipa"), kLSRolesAll, (__bridge CFStringRef)handler); - if (status == noErr) { - DDLogInfo(@"Default IPA handler change requested to: %@", handler); - break; - } - } - } - } else { - // Fallback: set Archive Utility as default since IPA is a ZIP archive - OSStatus status = LSSetDefaultRoleHandlerForContentType(CFSTR("com.apple.itunes.ipa"), kLSRolesAll, CFSTR("com.apple.archiveutility")); - if (status == noErr) { - DDLogInfo(@"Default IPA handler change requested to Archive Utility."); - } else { - DDLogError(@"Failed to remove AppBox as default IPA handler (error %d).", (int)status); - } - } - - // Observe app becoming active to detect when system popup closes - [self observeAppActivationWithPreviousState:wasPreviouslyDefault]; -} - -#pragma mark - Private - -+ (void)observeAppActivationWithPreviousState:(BOOL)wasPreviouslyDefault { - // Wait 2 seconds for system popup to appear, then poll every 0.5s for state change - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ - // Post the current real status immediately - BOOL isNowDefault = [self isDefaultIPAHandler]; - [[NSNotificationCenter defaultCenter] - postNotificationName:ABDefaultIPAHandlerDidChangeNotification - object:nil - userInfo:@{@"isDefault": @(isNowDefault)}]; - - // Then keep polling every 0.5s until state changes or timeout (30s) - __block NSInteger attempts = 0; - __block BOOL lastKnownState = isNowDefault; - NSTimer *timer = [NSTimer scheduledTimerWithTimeInterval:0.5 repeats:YES block:^(NSTimer *t) { - attempts++; - BOOL currentState = [self isDefaultIPAHandler]; - - if (currentState != lastKnownState) { - lastKnownState = currentState; - [[NSNotificationCenter defaultCenter] - postNotificationName:ABDefaultIPAHandlerDidChangeNotification - object:nil - userInfo:@{@"isDefault": @(currentState)}]; - } - - // Stop after state changed from original or timeout - if (currentState != wasPreviouslyDefault || attempts >= 60) { - [t invalidate]; - DDLogInfo(@"IPA handler state resolved: was=%d, now=%d (attempts=%ld)", wasPreviouslyDefault, currentState, (long)attempts); - } - }]; - [[NSRunLoop mainRunLoop] addTimer:timer forMode:NSRunLoopCommonModes]; - }); -} - -@end diff --git a/AppBox/Common/DefaultAppHandler/DefaultAppHandler.swift b/AppBox/Common/DefaultAppHandler/DefaultAppHandler.swift new file mode 100644 index 00000000..aea6304a --- /dev/null +++ b/AppBox/Common/DefaultAppHandler/DefaultAppHandler.swift @@ -0,0 +1,90 @@ +// +// DefaultAppHandler.swift +// AppBox + +import Foundation +import CoreServices +import os + +public final class DefaultAppHandler: NSObject { + + /// Posted (on the main thread) when the default-.ipa-handler state may have changed. + public static let didChangeNotificationName = "ABDefaultIPAHandlerDidChangeNotification" + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "DefaultAppHandler") + private static let ipaContentType = "com.apple.itunes.ipa" as CFString + + public class func isDefaultIPAHandler() -> Bool { + guard let bundleId = Bundle.main.bundleIdentifier else { return false } + guard let handler = LSCopyDefaultRoleHandlerForContentType(ipaContentType, .all)?.takeRetainedValue() else { + return false + } + return (handler as String) == bundleId + } + + public class func setAsDefaultIPAHandler() { + guard let bundleId = Bundle.main.bundleIdentifier else { return } + let wasPreviouslyDefault = isDefaultIPAHandler() + let status = LSSetDefaultRoleHandlerForContentType(ipaContentType, .all, bundleId as CFString) + if status != noErr { + log.error("Failed to set AppBox as default IPA handler (error \(status, privacy: .public)).") + } else { + log.info("AppBox set as default application for .ipa files.") + } + observeAppActivation(wasPreviouslyDefault: wasPreviouslyDefault) + } + + public class func removeAsDefaultIPAHandler() { + guard let appBoxBundleId = Bundle.main.bundleIdentifier else { return } + let wasPreviouslyDefault = isDefaultIPAHandler() + + if let handlers = LSCopyAllRoleHandlersForContentType(ipaContentType, .all)?.takeRetainedValue() as? [String] { + for handler in handlers where handler != appBoxBundleId { + if LSSetDefaultRoleHandlerForContentType(ipaContentType, .all, handler as CFString) == noErr { + log.info("Default IPA handler change requested to: \(handler, privacy: .public)") + break + } + } + } else { + if LSSetDefaultRoleHandlerForContentType(ipaContentType, .all, "com.apple.archiveutility" as CFString) == noErr { + log.info("Default IPA handler change requested to Archive Utility.") + } else { + log.error("Failed to remove AppBox as default IPA handler.") + } + } + observeAppActivation(wasPreviouslyDefault: wasPreviouslyDefault) + } + + // MARK: - Private + + /// After a change, macOS shows a confirmation popup we can't observe directly, so we wait then poll the real state (a 2s delay, then every 0.5s up to ~30s). + private static func observeAppActivation(wasPreviouslyDefault: Bool) { + DispatchQueue.main.asyncAfter(deadline: .now() + 2.0) { + let isNowDefault = isDefaultIPAHandler() + post(isDefault: isNowDefault) + + var attempts = 0 + var lastKnownState = isNowDefault + let timer = Timer(timeInterval: 0.5, repeats: true) { t in + attempts += 1 + let currentState = isDefaultIPAHandler() + if currentState != lastKnownState { + lastKnownState = currentState + post(isDefault: currentState) + } + if currentState != wasPreviouslyDefault || attempts >= 60 { + t.invalidate() + log.info("IPA handler state resolved: was=\(wasPreviouslyDefault, privacy: .public), now=\(currentState, privacy: .public) (attempts=\(attempts, privacy: .public))") + } + } + RunLoop.main.add(timer, forMode: .common) + } + } + + private static func post(isDefault: Bool) { + NotificationCenter.default.post( + name: Notification.Name(didChangeNotificationName), + object: nil, + userInfo: ["isDefault": isDefault]) + } +} diff --git a/AppBox/Common/DefaultSettings/DefaultSettings.h b/AppBox/Common/DefaultSettings/DefaultSettings.h deleted file mode 100644 index deb501c1..00000000 --- a/AppBox/Common/DefaultSettings/DefaultSettings.h +++ /dev/null @@ -1,16 +0,0 @@ -// -// DefaultSettings.h -// AppBox -// -// Created by Vineet Choudhary on 08/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface DefaultSettings : NSObject - -+(void)setFirstTimeSettings; -+(void)setEveryStartupSettings; - -@end diff --git a/AppBox/Common/DefaultSettings/DefaultSettings.m b/AppBox/Common/DefaultSettings/DefaultSettings.m deleted file mode 100644 index f87d8560..00000000 --- a/AppBox/Common/DefaultSettings/DefaultSettings.m +++ /dev/null @@ -1,30 +0,0 @@ -// -// DefaultSettings.m -// AppBox -// -// Created by Vineet Choudhary on 08/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "DefaultSettings.h" - -@implementation DefaultSettings - -+(void)setFirstTimeSettings{ - if ([UserData isFirstTime]) { - [UserData setIsFirstTime:YES]; - [UserData setDownloadIPAEnable:NO]; - [UserData setMoreDetailsEnable:YES]; - [UserData setShowPreviousVersions:YES]; - } - - if([UserData isFirstTimeAfterUpdate]){ - - } -} - -+(void)setEveryStartupSettings{ - -} - -@end diff --git a/AppBox/Common/DefaultSettings/DefaultSettings.swift b/AppBox/Common/DefaultSettings/DefaultSettings.swift new file mode 100644 index 00000000..ff6c422b --- /dev/null +++ b/AppBox/Common/DefaultSettings/DefaultSettings.swift @@ -0,0 +1,22 @@ +// +// DefaultSettings.swift +// AppBox + +import Foundation + +public final class DefaultSettings: NSObject { + + public class func setFirstTimeSettings() { + if UserData.isFirstTime() { + UserData.setIsFirstTime(true) + UserData.setDownloadIPAEnable(false) + UserData.setMoreDetailsEnable(true) + UserData.setShowPreviousVersions(true) + } + + UserData.recordLaunchedVersion() + } + + public class func setEveryStartupSettings() { + } +} diff --git a/AppBox/Common/Extensions/NSColor+Color.h b/AppBox/Common/Extensions/NSColor+Color.h deleted file mode 100644 index f04380c5..00000000 --- a/AppBox/Common/Extensions/NSColor+Color.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// NSColor+Color.h -// AppBox -// -// Created by Vineet Choudhary on 19/03/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface NSColor (Color) - -+(NSColor *)appPrimary; - -@end diff --git a/AppBox/Common/Extensions/NSColor+Color.m b/AppBox/Common/Extensions/NSColor+Color.m deleted file mode 100644 index b2ee3217..00000000 --- a/AppBox/Common/Extensions/NSColor+Color.m +++ /dev/null @@ -1,17 +0,0 @@ -// -// NSColor+Color.m -// AppBox -// -// Created by Vineet Choudhary on 19/03/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "NSColor+Color.h" - -@implementation NSColor (Color) - -+(NSColor *)appPrimary{ - return [NSColor colorWithRed:(53.0/255.0) green:(151.0/255.0) blue:(223.0/255.0) alpha:1]; -} - -@end diff --git a/AppBox/Common/Extensions/NSDate+Date.h b/AppBox/Common/Extensions/NSDate+Date.h deleted file mode 100644 index 5f0ae046..00000000 --- a/AppBox/Common/Extensions/NSDate+Date.h +++ /dev/null @@ -1,15 +0,0 @@ -// -// NSDate+Date.h -// AppBox -// -// Created by Vineet Choudhary on 17/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface NSDate (Date) - -@property(nonatomic, strong, readonly) NSString *string; - -@end diff --git a/AppBox/Common/Extensions/NSDate+Date.m b/AppBox/Common/Extensions/NSDate+Date.m deleted file mode 100644 index c3c1c3b1..00000000 --- a/AppBox/Common/Extensions/NSDate+Date.m +++ /dev/null @@ -1,19 +0,0 @@ -// -// NSDate+Date.m -// AppBox -// -// Created by Vineet Choudhary on 17/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "NSDate+Date.h" - -@implementation NSDate (Date) - --(NSString *)string{ - NSDateFormatter *dateFormater = [[NSDateFormatter alloc] init]; - [dateFormater setDateFormat:@"YYYY-MM-dd, hh:mm a"]; - return [dateFormater stringFromDate:self]; -} - -@end diff --git a/AppBox/Common/Extensions/NSDate+Date.swift b/AppBox/Common/Extensions/NSDate+Date.swift new file mode 100644 index 00000000..6b7c1fca --- /dev/null +++ b/AppBox/Common/Extensions/NSDate+Date.swift @@ -0,0 +1,14 @@ +// +// NSDate+Date.swift +// AppBox + +import Foundation + +public extension NSDate { + + var string: String { + let formatter = DateFormatter() + formatter.dateFormat = "yyyy-MM-dd, hh:mm a" + return formatter.string(from: self as Date) + } +} diff --git a/AppBox/Common/Extensions/NSException+Description.h b/AppBox/Common/Extensions/NSException+Description.h deleted file mode 100644 index 88b614f6..00000000 --- a/AppBox/Common/Extensions/NSException+Description.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// NSException+Description.h -// AppBox -// -// Created by Vineet Choudhary on 04/12/24. -// Copyright © 2024 Developer Insider. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface NSException (Description) - --(NSString *)abDescription; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Common/Extensions/NSException+Description.m b/AppBox/Common/Extensions/NSException+Description.m deleted file mode 100644 index ece492e2..00000000 --- a/AppBox/Common/Extensions/NSException+Description.m +++ /dev/null @@ -1,17 +0,0 @@ -// -// NSException+Description.m -// AppBox -// -// Created by Vineet Choudhary on 04/12/24. -// Copyright © 2024 Developer Insider. All rights reserved. -// - -#import "NSException+Description.h" - -@implementation NSException (Description) - --(NSString *)abDescription { - return [NSString stringWithFormat:@"\n\nName: %@\nReason: %@\nUserInfo: %@", self.name, self.reason, self.userInfo]; -} - -@end diff --git a/AppBox/Common/Extensions/NSString+String.h b/AppBox/Common/Extensions/NSString+String.h deleted file mode 100644 index c7b37ede..00000000 --- a/AppBox/Common/Extensions/NSString+String.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// NSString+String.h -// AppBox -// -// Created by Vineet Choudhary on 08/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface NSString (String) - --(NSURL *)ipaURL; - --(bool)isEmpty; - -@end diff --git a/AppBox/Common/Extensions/NSString+String.m b/AppBox/Common/Extensions/NSString+String.m deleted file mode 100644 index 6552bb03..00000000 --- a/AppBox/Common/Extensions/NSString+String.m +++ /dev/null @@ -1,26 +0,0 @@ -// -// NSString+String.m -// AppBox -// -// Created by Vineet Choudhary on 08/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "NSString+String.h" - -@implementation NSString (String) - --(NSURL *)ipaURL{ - NSURL *url = [NSURL fileURLWithPath:self]; - if (url && [url.pathExtension.lowercaseString isEqualToString:@"ipa"]) { - return url; - } - return nil; -} - --(bool)isEmpty { - NSString *string = [self stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]; - return string.length == 0; -} - -@end diff --git a/AppBox/Common/Extensions/NSString+String.swift b/AppBox/Common/Extensions/NSString+String.swift new file mode 100644 index 00000000..d1828054 --- /dev/null +++ b/AppBox/Common/Extensions/NSString+String.swift @@ -0,0 +1,17 @@ +// +// NSString+String.swift +// AppBox + +import Foundation + +public extension NSString { + + func ipaURL() -> URL? { + let url = URL(fileURLWithPath: self as String) + return url.pathExtension.lowercased() == "ipa" ? url : nil + } + + func isEmpty() -> Bool { + return (self as String).trimmingCharacters(in: .whitespaces).isEmpty + } +} diff --git a/AppBox/Common/Extensions/NSURL+URL.h b/AppBox/Common/Extensions/NSURL+URL.h deleted file mode 100644 index 6b31cc41..00000000 --- a/AppBox/Common/Extensions/NSURL+URL.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// NSURL+URL.h -// AppBox -// -// Created by Vineet Choudhary on 15/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface NSURL (URL) - --(BOOL)isIPA; --(BOOL)acceptableURL; --(NSString *)stringValue; - -@end diff --git a/AppBox/Common/Extensions/NSURL+URL.m b/AppBox/Common/Extensions/NSURL+URL.m deleted file mode 100644 index cad3d641..00000000 --- a/AppBox/Common/Extensions/NSURL+URL.m +++ /dev/null @@ -1,25 +0,0 @@ -// -// NSURL+URL.m -// AppBox -// -// Created by Vineet Choudhary on 15/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "NSURL+URL.h" - -@implementation NSURL (URL) - --(BOOL)isIPA{ - return (self && [self.pathExtension.lowercaseString isEqualToString:@"ipa" ]); -} - --(BOOL)acceptableURL{ - return (self && [self.pathExtension.lowercaseString isEqualToString:@"ipa"]); -} - --(NSString *)stringValue { - return [NSString stringWithFormat:@"%@",self]; -} - -@end diff --git a/AppBox/Common/Extensions/NSURL+URL.swift b/AppBox/Common/Extensions/NSURL+URL.swift new file mode 100644 index 00000000..4fb1c414 --- /dev/null +++ b/AppBox/Common/Extensions/NSURL+URL.swift @@ -0,0 +1,12 @@ +// +// NSURL+URL.swift +// AppBox + +import Foundation + +public extension NSURL { + + func isIPA() -> Bool { + return pathExtension?.lowercased() == "ipa" + } +} diff --git a/AppBox/Common/KeychainHandler/KeychainHandler.h b/AppBox/Common/KeychainHandler/KeychainHandler.h deleted file mode 100644 index 0533ad69..00000000 --- a/AppBox/Common/KeychainHandler/KeychainHandler.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// KeychainHandler.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -/// Keychain attribute dictionary keys, matching the raw `SecItem` attribute -/// keys previously vended by SAMKeychain (kept for source compatibility). -extern NSString *const kSAMKeychainAccountKey; -extern NSString *const kSAMKeychainLabelKey; - -@interface KeychainHandler : NSObject - -/// Returns the attribute dictionaries for every generic-password keychain item -/// stored under `service`. Replaces `+[SAMKeychain accountsForService:]`. -+ (NSArray *)accountsForService:(NSString *)service; -+ (NSArray *)getAllITCAccounts; -+ (void)removeAllStoredCredentials; -+ (NSString *)errorMessageForStatus:(OSStatus)status; -@end diff --git a/AppBox/Common/KeychainHandler/KeychainHandler.m b/AppBox/Common/KeychainHandler/KeychainHandler.m deleted file mode 100644 index 54e7f327..00000000 --- a/AppBox/Common/KeychainHandler/KeychainHandler.m +++ /dev/null @@ -1,107 +0,0 @@ -// -// KeychainHandler.m -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "KeychainHandler.h" -#import - -// Raw SecItem attribute keys, identical to the values SAMKeychain exposed. -NSString *const kSAMKeychainAccountKey = @"acct"; -NSString *const kSAMKeychainLabelKey = @"labl"; - -static NSString *const CERTIFICATE_KEY = @"CerKey"; -static NSString *const CERTIFICATE_KEY_READABLE = @"CerKeyReadable"; - -@implementation KeychainHandler - -//MARK: - Accounts - -+ (NSArray *)accountsForService:(NSString *)service { - NSMutableDictionary *query = [NSMutableDictionary dictionary]; - query[(__bridge id)kSecClass] = (__bridge id)kSecClassGenericPassword; - if (service) { - query[(__bridge id)kSecAttrService] = service; - } - query[(__bridge id)kSecReturnAttributes] = (__bridge id)kCFBooleanTrue; - query[(__bridge id)kSecMatchLimit] = (__bridge id)kSecMatchLimitAll; - - CFTypeRef result = NULL; - OSStatus status = SecItemCopyMatching((__bridge CFDictionaryRef)query, &result); - if (status != errSecSuccess) { - if (result) { - CFRelease(result); - } - return @[]; - } - - NSArray *accounts = (__bridge_transfer NSArray *)result; - return accounts ?: @[]; -} - -//MARK: - ITC Accounts -+ (NSArray *)getAllITCAccounts { - NSMutableArray *filteredITCAccounts = [[NSMutableArray alloc] init]; -// NSArray *itcAccounts = [SAMKeychain accountsForService:abiTunesConnectService]; -// for (NSDictionary *account in itcAccounts) { -// if ([account.allKeys containsObject:kSAMKeychainAccountKey]) { -// [filteredITCAccounts addObject:account]; -// } -// } - return filteredITCAccounts; -} - -//MARK: - Keychain - -+(NSString *)errorMessageForStatus:(OSStatus)status { - CFStringRef errorMessage = SecCopyErrorMessageString(status, NULL); - NSString *errorString = (__bridge_transfer NSString *)errorMessage; - return errorString; -} - - -//MARK: - Remove All Cache, Cookies and Credentials -+ (void)removeAllStoredCredentials{ - // Delete any cached URLrequests! - NSURLCache *sharedCache = [NSURLCache sharedURLCache]; - [sharedCache removeAllCachedResponses]; - - // Also delete all stored cookies! - NSHTTPCookieStorage *cookieStorage = [NSHTTPCookieStorage sharedHTTPCookieStorage]; - NSArray *cookies = [cookieStorage cookies]; - for (NSHTTPCookie *cookie in cookies) { - [cookieStorage deleteCookie:cookie]; - } - - // Remove app-specific keychain items - NSDictionary *keychainQuery = @{ - (__bridge id)kSecClass: (__bridge id)kSecClassGenericPassword - }; - OSStatus keychainStatus = SecItemDelete((__bridge CFDictionaryRef)keychainQuery); - if (keychainStatus != errSecSuccess && keychainStatus != errSecItemNotFound) { - DDLogWarn(@"Failed to clear keychain items: %@", [self errorMessageForStatus:keychainStatus]); - } - - NSDictionary *credentialsDict = [[NSURLCredentialStorage sharedCredentialStorage] allCredentials]; - if ([credentialsDict count] > 0) { - // the credentialsDict has NSURLProtectionSpace objs as keys and dicts of userName => NSURLCredential - NSEnumerator *protectionSpaceEnumerator = [credentialsDict keyEnumerator]; - id urlProtectionSpace; - // iterate over all NSURLProtectionSpaces - while (urlProtectionSpace = [protectionSpaceEnumerator nextObject]) { - NSEnumerator *userNameEnumerator = [[credentialsDict objectForKey:urlProtectionSpace] keyEnumerator]; - id userName; - // iterate over all usernames for this protectionspace, which are the keys for the actual NSURLCredentials - while (userName = [userNameEnumerator nextObject]) { - NSURLCredential *cred = [[credentialsDict objectForKey:urlProtectionSpace] objectForKey:userName]; - [[NSURLCredentialStorage sharedCredentialStorage] removeCredential:cred forProtectionSpace:urlProtectionSpace]; - } - } - } -} - - -@end diff --git a/AppBox/Common/MailHandler/MailHandler.h b/AppBox/Common/MailHandler/MailHandler.h deleted file mode 100644 index 488280dd..00000000 --- a/AppBox/Common/MailHandler/MailHandler.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// MailHandler.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -@interface MailHandler : NSObject - -+ (void)showInvalidEmailAddressAlert; -+ (BOOL)isValidEmail:(NSString *)checkString; -+ (BOOL)isAllValidEmail:(NSString *)checkString; -+ (NSString *)parseMessage:(NSString *)message forIPAUploadInfo:(IPAUploadInfo *)ipaUploadInfo; - -@end diff --git a/AppBox/Common/MailHandler/MailHandler.m b/AppBox/Common/MailHandler/MailHandler.m deleted file mode 100644 index 481c94ff..00000000 --- a/AppBox/Common/MailHandler/MailHandler.m +++ /dev/null @@ -1,46 +0,0 @@ -// -// MailHandler.m -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "MailHandler.h" - -@implementation MailHandler - -//MARK: - Check Valid Email -+ (BOOL)isValidEmail:(NSString *)checkString{ - NSString *stricterFilterString = @"^[A-Z0-9a-z\\._%+-]+@([A-Za-z0-9-]+\\.)+[A-Za-z]{2,}$"; - NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", stricterFilterString]; - return [emailTest evaluateWithObject:checkString]; -} - -+ (BOOL)isAllValidEmail:(NSString *)checkString{ - NSString *stricterFilterString = @"(([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,}|[0-9]{1,3})(\\]?)(\\s*,\\s*|\\s*$))*"; - NSPredicate *emailTest = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", stricterFilterString]; - return [emailTest evaluateWithObject:checkString]; -} - -+ (void)showInvalidEmailAddressAlert{ - [Common showAlertWithTitle:@"Invalid email address" andMessage:@"The email address entered was invalid. Please reenter it (Example: username@example.com).\n\nFor multiple email please enter like (username@example.com,username2@example.com,username@example2.com)."]; -} - -//MARK: - Parse customised message with IPA Upload Info -+ (NSString *)parseMessage:(NSString *)message forIPAUploadInfo:(IPAUploadInfo *)ipaUploadInfo { - NSString *messageCopy = message.copy; - messageCopy = [messageCopy stringByReplacingOccurrencesOfString:@"{BUILD_NAME}" withString:ipaUploadInfo.name]; - messageCopy = [messageCopy stringByReplacingOccurrencesOfString:@"{BUILD_NUMBER}" withString:ipaUploadInfo.build]; - messageCopy = [messageCopy stringByReplacingOccurrencesOfString:@"{BUILD_VERSION}" withString:ipaUploadInfo.version]; - messageCopy = [messageCopy stringByReplacingOccurrencesOfString:@"{SHARE_URL}" withString: ipaUploadInfo.appShortShareableURL.absoluteString]; - - // If SHARE_URL keyword was not used, append it for compatibility - if (![message containsString: @"{SHARE_URL}"]) { - messageCopy = [messageCopy stringByAppendingFormat:@" - %@", ipaUploadInfo.appShortShareableURL]; - } - - return messageCopy; -} - -@end diff --git a/AppBox/Common/MailHandler/MailHandler.swift b/AppBox/Common/MailHandler/MailHandler.swift new file mode 100644 index 00000000..74f2ea46 --- /dev/null +++ b/AppBox/Common/MailHandler/MailHandler.swift @@ -0,0 +1,23 @@ +// +// MailHandler.swift +// AppBox + +import Foundation +import AppBoxCore + +public final class MailHandler: NSObject { + + public class func isValidEmail(_ checkString: String?) -> Bool { + ABMailBridge.isValidEmail(checkString ?? "") + } + + public class func isAllValidEmail(_ checkString: String?) -> Bool { + ABMailBridge.isAllValidEmails(checkString ?? "") + } + + public class func showInvalidEmailAddressAlert() { + Common.showAlert( + withTitle: "Invalid email address", + andMessage: "The email address entered was invalid. Please reenter it (Example: username@example.com).\n\nFor multiple email please enter like (username@example.com,username2@example.com,username@example2.com).") + } +} diff --git a/AppBox/Common/MobileProvision/MobileProvision.h b/AppBox/Common/MobileProvision/MobileProvision.h deleted file mode 100644 index f7b9f673..00000000 --- a/AppBox/Common/MobileProvision/MobileProvision.h +++ /dev/null @@ -1,34 +0,0 @@ -// -// MobileProvision.h -// AppBox -// -// Created by Vineet Choudhary on 16/02/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#define BuildTypeUnknown @"unknown" -#define BuildTypeAdHoc @"ad-hoc" -#define BuildTypePackage @"package" -#define BuildTypeAppStore @"app-store" -#define BuildTypeEnterprise @"enterprise" -#define BuildTypeDevelopment @"development" -#define BuildTypeDeveloperId @"developer-id" - -@interface MobileProvision : NSObject{ - NSDictionary *mobileProvision; -} - -@property(nonatomic, assign) BOOL isValid; -@property(nonatomic, strong) NSString *uuid; -@property(nonatomic, strong) NSString *teamId; -@property(nonatomic, strong) NSString *teamName; -@property(nonatomic, strong) NSString *buildType; -@property(nonatomic, strong) NSDate *createDate; -@property(nonatomic, strong) NSDate *expirationDate; -@property(nonatomic, strong) NSArray *provisionedDevices; - -- (instancetype)initWithPath:(NSString *)path; - -@end diff --git a/AppBox/Common/MobileProvision/MobileProvision.m b/AppBox/Common/MobileProvision/MobileProvision.m deleted file mode 100644 index 159d8163..00000000 --- a/AppBox/Common/MobileProvision/MobileProvision.m +++ /dev/null @@ -1,108 +0,0 @@ -// -// MobileProvision.m -// AppBox -// -// Created by Vineet Choudhary on 16/02/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "MobileProvision.h" - - -@implementation MobileProvision { - -} - -- (instancetype)initWithPath:(NSString *)path { - self = [super init]; - if (self) { - NSError *readError = nil; - NSString *binaryString = [NSString stringWithContentsOfFile:path encoding:NSISOLatin1StringEncoding error:&readError]; - if (!binaryString) { - DDLogError(@"Failed to read provisioning profile at %@: %@", path, readError.localizedDescription); - } - - NSScanner *scanner = [NSScanner scannerWithString:binaryString]; - BOOL ok = [scanner scanUpToString:@"" intoString:&plistString]; - if (!ok) { - DDLogError(@"Unable to find end of plist in provisioning profile at %@", path); - return self; - } - plistString = [NSString stringWithFormat:@"%@",plistString]; - - NSData *plistdata_latin1 = [plistString dataUsingEncoding:NSISOLatin1StringEncoding]; - NSError *error = nil; - mobileProvision = [NSPropertyListSerialization propertyListWithData:plistdata_latin1 options:NSPropertyListImmutable format:NULL error:&error]; - self.isValid = (mobileProvision != nil); - if (error) { - DDLogError(@"Error parsing extracted plist — %@", error); - return self; - } - - if(mobileProvision){ - //Get Build Type - if (![mobileProvision count]) { - self.buildType = BuildTypeDeveloperId; - } else if ([[mobileProvision objectForKey:@"ProvisionsAllDevices"] boolValue]) { - // enterprise distribution contains ProvisionsAllDevices - true - self.buildType = BuildTypeEnterprise; - } else if ([mobileProvision objectForKey:@"ProvisionedDevices"] && [((NSArray *)[mobileProvision objectForKey:@"ProvisionedDevices"]) count] > 0) { - NSDictionary *entitlements = [mobileProvision objectForKey:@"Entitlements"]; - // development contains UDIDs and get-task-allow is true - // ad hoc contains UDIDs and get-task-allow is false - if ([[entitlements objectForKey:@"get-task-allow"] boolValue]) { - self.buildType = BuildTypeDevelopment; - } else { - self.buildType = BuildTypeAdHoc; - } - } else { - // app store contains no UDIDs (if the file exists at all?) - self.buildType = BuildTypeAppStore; - } - - //Get TeamId - if ([mobileProvision objectForKey:@"TeamIdentifier"]) { - NSArray *teamIds = [mobileProvision objectForKey:@"TeamIdentifier"]; - if (teamIds.count > 0) { - self.teamId = teamIds.firstObject; - } - } - - //Get TeamName - if ([mobileProvision objectForKey:@"TeamName"]) { - self.teamName = [mobileProvision objectForKey:@"TeamName"]; - } - - //Get UUID - if ([mobileProvision objectForKey:@"UUID"]){ - self.uuid = [mobileProvision objectForKey:@"UUID"]; - } - - //Get ProvisionedDevices - if ([mobileProvision objectForKey:@"ProvisionedDevices"]){ - self.provisionedDevices = [mobileProvision objectForKey:@"ProvisionedDevices"]; - } - - - //Get CreationDate - if ([mobileProvision objectForKey:@"CreationDate"]){ - self.createDate = [mobileProvision objectForKey:@"CreationDate"]; - } - - //Get ExpirationDate - if ([mobileProvision objectForKey:@"ExpirationDate"]){ - self.expirationDate = [mobileProvision objectForKey:@"ExpirationDate"]; - } - } - - } - return self; -} - -@end diff --git a/AppBox/Common/MobileProvision/MobileProvision.swift b/AppBox/Common/MobileProvision/MobileProvision.swift new file mode 100644 index 00000000..414e600e --- /dev/null +++ b/AppBox/Common/MobileProvision/MobileProvision.swift @@ -0,0 +1,43 @@ +// +// MobileProvision.swift +// AppBox + +import Foundation +import AppBoxCore + +public final class MobileProvision: NSObject { + + public var isValid: Bool = false + public var uuid: String? + public var teamId: String? + public var teamName: String? + public var buildType: String? + public var createDate: Date? + public var expirationDate: Date? + public var provisionedDevices: [String]? + + public init(path: String) { + super.init() + let info = ABMobileProvisionParser.parseFile(atPath: path) + isValid = info.isValid + uuid = info.uuid + teamId = info.teamId + teamName = info.teamName + buildType = info.buildType + createDate = info.createDate + expirationDate = info.expirationDate + provisionedDevices = info.provisionedDevices + } + + public init(_ info: MobileProvisionInfo) { + super.init() + isValid = info.isValid + uuid = info.uuid + teamId = info.teamId + teamName = info.teamName + buildType = info.buildType + createDate = info.createDate + expirationDate = info.expirationDate + provisionedDevices = info.provisionedDevices + } +} diff --git a/AppBox/Common/NetworkHandler/HTTPStatusCode.h b/AppBox/Common/NetworkHandler/HTTPStatusCode.h deleted file mode 100644 index 6ece70b7..00000000 --- a/AppBox/Common/NetworkHandler/HTTPStatusCode.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// HTTPStatusCode.h -// AppBox -// -// Created by Vineet Choudhary on 23/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#ifndef HTTPStatusCode_h -#define HTTPStatusCode_h - -#define HTTP_OK 200 -#define HTTP_CREATED 201 -#define HTTP_ACCEPTED 202 -#define HTTP_NON_AUTHORITATIVE 203 -#define HTTP_NO_CONTENT 204 - - -#define HTTP_BAD_REQUEST 400 -#define HTTP_UNAUTHORIZED 401 -#define HTTP_PAYMENT_REQUIRED 402 -#define HTTP_FORBIDDEN 403 -#define HTTP_NOT_FOUND 404 -#define HTTP_CONFLICT 409 - -#endif /* HTTPStatusCode_h */ diff --git a/AppBox/Common/NetworkHandler/NetworkHandler.h b/AppBox/Common/NetworkHandler/NetworkHandler.h deleted file mode 100644 index 5907218d..00000000 --- a/AppBox/Common/NetworkHandler/NetworkHandler.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// NetworkHandler.h -// AppBox -// -// Created by Vineet Choudhary on 16/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -@interface NetworkHandler : NSObject - -typedef enum : NSUInteger { - RequestGET, - RequestPOST, -} RequestType; - -+(void)requestWithURL:(NSString *)url withParameters:(id)parmeters andRequestType:(RequestType)requestType andCompletetion:(void (^)(id responseObj, NSInteger httpStatus, NSError *error))completion; -+(void)getContentOfURL:(NSString *)url withParameters:(id)parmeters withRequestType:(RequestType)requestType andCompletetion:(void (^)(id responseObj, NSInteger statusCode, NSError *error))completion; - -@end diff --git a/AppBox/Common/NetworkHandler/NetworkHandler.m b/AppBox/Common/NetworkHandler/NetworkHandler.m deleted file mode 100644 index 6f39abcf..00000000 --- a/AppBox/Common/NetworkHandler/NetworkHandler.m +++ /dev/null @@ -1,137 +0,0 @@ -// -// NetworkHandler.m -// AppBox -// -// Created by Vineet Choudhary on 16/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "NetworkHandler.h" - -@implementation NetworkHandler - -//MARK: - JSON request, JSON response - -+(void)requestWithURL:(NSString *)url withParameters:(id)parmeters andRequestType:(RequestType)requestType andCompletetion:(void (^)(id responseObj, NSInteger httpStatus, NSError *error))completion{ - NSMutableURLRequest *request = [self jsonRequestWithURL:url parameters:parmeters requestType:requestType]; - if (request == nil) { - [self deliverResponse:nil status:0 error:[self errorWithCode:NSURLErrorBadURL message:@"Invalid request."] toCompletion:completion]; - return; - } - - DDLogDebug(@"Request In Progress - %@", url); - NSURLSessionDataTask *task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { - NSInteger statusCode = [response isKindOfClass:[NSHTTPURLResponse class]] ? ((NSHTTPURLResponse *)response).statusCode : 0; - - // Parse the body as JSON (mirrors AFJSONResponseSerializer). - id responseObject = nil; - if (data.length > 0) { - NSError *jsonError = nil; - responseObject = [NSJSONSerialization JSONObjectWithData:data options:0 error:&jsonError]; - if (jsonError) { - DDLogDebug(@"JSON parsing failed for URL: %@", jsonError.localizedDescription); - } - } - - BOOL httpSuccess = (statusCode >= 200 && statusCode < 300); - if (httpSuccess && responseObject != nil) { - // 2xx with a valid JSON body. - [self deliverResponse:responseObject status:statusCode error:nil toCompletion:completion]; - } else if (statusCode == HTTP_OK) { - // 200 with a non-JSON body (e.g. Slack "ok" / Teams "1"). - [self deliverResponse:@"ok" status:statusCode error:nil toCompletion:completion]; - } else { - [self deliverResponse:nil status:statusCode error:(error ?: [self errorWithCode:statusCode message:@"Request failed."]) toCompletion:completion]; - } - }]; - [task resume]; -} - -//MARK: - JSON request, raw (HTTP) response - -+(void)getContentOfURL:(NSString *)url withParameters:(id)parmeters withRequestType:(RequestType)requestType andCompletetion:(void (^)(id responseObj, NSInteger statusCode, NSError *error))completion{ - NSMutableURLRequest *request = [self jsonRequestWithURL:url parameters:parmeters requestType:requestType]; - if (request == nil) { - [self deliverResponse:nil status:0 error:[self errorWithCode:NSURLErrorBadURL message:@"Invalid request."] toCompletion:completion]; - return; - } - - DDLogDebug(@"Request In Progress - %@", url); - NSURLSessionDataTask *task = [[NSURLSession sharedSession] dataTaskWithRequest:request completionHandler:^(NSData * _Nullable data, NSURLResponse * _Nullable response, NSError * _Nullable error) { - NSInteger statusCode = [response isKindOfClass:[NSHTTPURLResponse class]] ? ((NSHTTPURLResponse *)response).statusCode : 0; - BOOL httpSuccess = (statusCode >= 200 && statusCode < 300); - if (httpSuccess && error == nil) { - [self deliverResponse:data status:statusCode error:nil toCompletion:completion]; - } else { - [self deliverResponse:nil status:statusCode error:(error ?: [self errorWithCode:statusCode message:@"Request failed."]) toCompletion:completion]; - } - }]; - [task resume]; -} - -//MARK: - Helpers - -+ (NSMutableURLRequest *)jsonRequestWithURL:(NSString *)urlString parameters:(id)parameters requestType:(RequestType)requestType { - NSString *finalURLString = urlString; - NSData *bodyData = nil; - - // Enforce HTTPS for security - if (finalURLString && [finalURLString hasPrefix:@"http://"]) { - finalURLString = [@"https://" stringByAppendingString:[finalURLString substringFromIndex:7]]; - } - - if (requestType == RequestPOST) { - if (parameters != nil) { - NSError *jsonError = nil; - bodyData = [NSJSONSerialization dataWithJSONObject:parameters options:0 error:&jsonError]; - if (jsonError != nil) { - return nil; - } - } - } else if ([parameters isKindOfClass:[NSDictionary class]] && [(NSDictionary *)parameters count] > 0) { - NSString *query = [self queryStringFromDictionary:parameters]; - NSString *separator = ([urlString rangeOfString:@"?"].location == NSNotFound) ? @"?" : @"&"; - finalURLString = [NSString stringWithFormat:@"%@%@%@", urlString, separator, query]; - } - - NSURL *url = [NSURL URLWithString:finalURLString]; - if (url == nil) { - return nil; - } - - NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; - request.HTTPMethod = (requestType == RequestPOST) ? @"POST" : @"GET"; - [request setValue:@"application/json" forHTTPHeaderField:@"Accept"]; - if (bodyData != nil) { - [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"]; - request.HTTPBody = bodyData; - } - return request; -} - -+ (NSString *)queryStringFromDictionary:(NSDictionary *)dictionary { - NSMutableCharacterSet *allowed = [[NSCharacterSet URLQueryAllowedCharacterSet] mutableCopy]; - [allowed removeCharactersInString:@"&=?+"]; - NSMutableArray *pairs = [NSMutableArray array]; - for (id key in dictionary) { - NSString *encodedKey = [[key description] stringByAddingPercentEncodingWithAllowedCharacters:allowed]; - NSString *encodedValue = [[dictionary[key] description] stringByAddingPercentEncodingWithAllowedCharacters:allowed]; - [pairs addObject:[NSString stringWithFormat:@"%@=%@", encodedKey, encodedValue]]; - } - return [pairs componentsJoinedByString:@"&"]; -} - -+ (NSError *)errorWithCode:(NSInteger)code message:(NSString *)message { - return [NSError errorWithDomain:@"AppBoxNetworkHandler" code:code userInfo:@{NSLocalizedDescriptionKey: message}]; -} - -+ (void)deliverResponse:(id)responseObj status:(NSInteger)status error:(NSError *)error toCompletion:(void (^)(id, NSInteger, NSError *))completion { - if (completion == nil) { - return; - } - dispatch_async(dispatch_get_main_queue(), ^{ - completion(responseObj, status, error); - }); -} - -@end diff --git a/AppBox/Common/OtherServicesKeys.h b/AppBox/Common/OtherServicesKeys.h deleted file mode 100644 index d8e4cb26..00000000 --- a/AppBox/Common/OtherServicesKeys.h +++ /dev/null @@ -1,12 +0,0 @@ -// -// OtherServicesKeys.h -// AppBox -// -// Created by Vineet Choudhary on 18/05/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#ifndef OtherServicesKeys_h -#define OtherServicesKeys_h - -#endif /* MailGunKeys_h */ diff --git a/AppBox/Common/ProgressHUD/MBProgressHUD+ProgressHud.h b/AppBox/Common/ProgressHUD/MBProgressHUD+ProgressHud.h deleted file mode 100644 index af309205..00000000 --- a/AppBox/Common/ProgressHUD/MBProgressHUD+ProgressHud.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// MBProgressHUD+ProgressHud.h -// AppBox -// -// Created by Vineet Choudhary on 18/05/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "ABHudViewController.h" -#import "DragDropView.h" - -@interface ABHudViewController (ProgressHud) - -+(void)showStatus:(NSString *)status onView:(NSView *)view; -+(void)showOnlyStatus:(NSString *)status onView:(NSView *)view; -+(void)hideAllHudFromView:(NSView *)view after:(NSTimeInterval)sec; -+(void)showStatus:(NSString *)status forSuccess:(BOOL)success onView:(NSView *)view; -+(void)showStatus:(NSString *)status witProgress:(double)progress onView:(NSView *)view; -@end diff --git a/AppBox/Common/ProgressHUD/MBProgressHUD+ProgressHud.m b/AppBox/Common/ProgressHUD/MBProgressHUD+ProgressHud.m deleted file mode 100644 index d11f58b7..00000000 --- a/AppBox/Common/ProgressHUD/MBProgressHUD+ProgressHud.m +++ /dev/null @@ -1,56 +0,0 @@ -// -// MBProgressHUD+ProgressHud.m -// AppBox -// -// Created by Vineet Choudhary on 18/05/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "MBProgressHUD+ProgressHud.h" - -@implementation ABHudViewController (ProgressHud) - -+(void)showStatus:(NSString *)status onView:(NSView *)view { - dispatch_async(dispatch_get_main_queue(), ^{ - ABHudViewController *hud = [ABHudViewController hudForView:view hide:NO]; - hud.status = status; - hud.hudType = HudTypeProgress; - hud.progress = [NSNumber numberWithInteger:-1]; - }); -} - -+(void)showStatus:(NSString *)status witProgress:(double)progress onView:(NSView *)view { - dispatch_async(dispatch_get_main_queue(), ^{ - ABHudViewController *hud = [ABHudViewController hudForView:view hide:NO]; - hud.progress = [NSNumber numberWithDouble:progress]; - hud.hudType = HudTypeProgress; - hud.status = status; - }); -} - -+(void)showStatus:(NSString *)status forSuccess:(BOOL)success onView:(NSView *)view { - dispatch_async(dispatch_get_main_queue(), ^{ - ABHudViewController *hud = [ABHudViewController hudForView:view hide:NO]; - hud.status = status; - hud.result = success; - hud.hudType = HudTypeResult; - [ABHudViewController hideAllHudFromView:view after:2]; - }); -} - -+(void)showOnlyStatus:(NSString *)status onView:(NSView *)view{ - dispatch_async(dispatch_get_main_queue(), ^{ - ABHudViewController *hud = [ABHudViewController hudForView:view hide:NO]; - hud.status = status; - hud.hudType = HudTypeStatus; - [ABHudViewController hideAllHudFromView:view after:3]; - }); -} - -+(void)hideAllHudFromView:(NSView *)view after:(NSTimeInterval)sec{ - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(sec * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ - [ABHudViewController hudForView:view hide:YES]; - }); -} - -@end diff --git a/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.h b/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.h deleted file mode 100644 index 20bbda87..00000000 --- a/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// MSTeamsClient.h -// AppBox -// -// Created by Vineet Choudhary on 19/03/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface MSTeamsClient : NSObject - -+ (void)sendMessage:(IPAUploadInfo *)ipaUploadInfo - webhook:(NSString *)webhook - message:(NSString *)message - completion:(void (^) (BOOL success))completion; - -@end diff --git a/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.m b/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.m deleted file mode 100644 index cfc5e474..00000000 --- a/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.m +++ /dev/null @@ -1,50 +0,0 @@ -// -// MSTeamsClient.m -// AppBox -// -// Created by Vineet Choudhary on 19/03/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "MSTeamsClient.h" - -@implementation MSTeamsClient - -+ (void)sendMessage:(IPAUploadInfo *)ipaUploadInfo - webhook:(NSString *)webhook - message:(NSString *)message - completion:(void (^) (BOOL success))completion{ - // Validate webhook URL - if (![Common isValidWebhookURL:webhook]) { - DDLogError(@"MS Teams Error - Invalid webhook URL: %@", webhook); - completion(NO); - return; - } - - //set slack message - NSString *finalMessage; - if (message.length > 0) { - finalMessage = [MailHandler parseMessage:message forIPAUploadInfo:ipaUploadInfo]; - } else { - finalMessage = [NSString stringWithFormat:@"%@ - %@ (%@) link - %@", ipaUploadInfo.name, ipaUploadInfo.version, ipaUploadInfo.build, ipaUploadInfo.appShortShareableURL]; - } - - - NSDictionary *parameters = @{@"text" : finalMessage}; - - //send message - [NetworkHandler requestWithURL:webhook withParameters:parameters andRequestType:RequestPOST andCompletetion:^(id responseObj, NSInteger httpStatus, NSError *error) { - if (responseObj && error == nil) { - DDLogInfo(@"Microsoft Team Response - %@", responseObj); - completion(YES); - } else if (error) { - DDLogInfo(@"Microsoft Team Error - %@", error.localizedDescription); - completion(NO); - } else { - DDLogInfo(@"Microsoft Team Error - Unknown Error"); - completion(NO); - } - }]; -} - -@end diff --git a/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.swift b/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.swift new file mode 100644 index 00000000..feef3403 --- /dev/null +++ b/AppBox/Common/ServiceIntegrations/MSTeamsClient/MSTeamsClient.swift @@ -0,0 +1,38 @@ +// +// MSTeamsClient.swift +// AppBox + +import Foundation +import AppBoxCore +import os + +public final class MSTeamsClient: NSObject { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "MSTeamsClient") + + public class func sendMessage(_ ipaUploadInfo: IPAUploadInfo, webhook: String?, + completion: @escaping (Bool) -> Void) { + guard WebhookURL.isValid(webhook), let webhook else { + log.error("MS Teams Error - Invalid webhook URL: \(webhook ?? "", privacy: .public)") + completion(false) + return + } + + let finalMessage = BuildNotificationMessage.text( + name: ipaUploadInfo.name ?? "", + version: ipaUploadInfo.version ?? "", + build: ipaUploadInfo.build ?? "", + installURL: ipaUploadInfo.appShortShareableURL?.absoluteString ?? "") + + Task { + do { + try await AppServices.serviceClient.sendNotification(service: .teams, webhookURL: webhook, text: finalMessage) + log.info("Microsoft Teams message sent") + await MainActor.run { completion(true) } + } catch { + log.info("Microsoft Teams Error - \(error.localizedDescription, privacy: .public)") + await MainActor.run { completion(false) } + } + } + } +} diff --git a/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.h b/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.h deleted file mode 100644 index 17765851..00000000 --- a/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.h +++ /dev/null @@ -1,18 +0,0 @@ -// -// SlackClient.h -// AppBox -// -// Created by Vineet Choudhary on 10/04/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface SlackClient : NSObject - -+ (void)sendMessage:(IPAUploadInfo *)ipaUploadInfo - webhook:(NSString *)webhook - message:(NSString *)message - completion:(void (^) (BOOL success))completion; - -@end diff --git a/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.m b/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.m deleted file mode 100644 index e62a9e9c..00000000 --- a/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.m +++ /dev/null @@ -1,57 +0,0 @@ -// -// SlackClient.m -// AppBox -// -// Created by Vineet Choudhary on 10/04/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "SlackClient.h" - -@implementation SlackClient - -+ (void)sendMessage:(IPAUploadInfo *)ipaUploadInfo - webhook:(NSString *)webhook - message:(NSString *)message - completion:(void (^) (BOOL success))completion { - // Validate webhook URL - if (![Common isValidWebhookURL:webhook]) { - DDLogError(@"Slack Error - Invalid webhook URL: %@", webhook); - completion(NO); - return; - } - - //set slack channel url and image - NSString *slackImage = abSlackImage; - - //set slack message - NSString *finalMessage; - if (message.length > 0) { - finalMessage = [MailHandler parseMessage:message forIPAUploadInfo:ipaUploadInfo]; - } else { - finalMessage = [NSString stringWithFormat:@"%@ - %@ (%@) link - %@", ipaUploadInfo.name, ipaUploadInfo.version, ipaUploadInfo.build, ipaUploadInfo.appShortShareableURL]; - } - - //create parameters dictionary - NSDictionary *parameters = @{ - @"username": @"AppBox", - @"icon_url": slackImage, - @"text": finalMessage - }; - - //send message - [NetworkHandler requestWithURL:webhook withParameters:parameters andRequestType:RequestPOST andCompletetion:^(id responseObj, NSInteger httpStatus, NSError *error) { - if (responseObj && error == nil) { - DDLogInfo(@"Slack Response - %@", responseObj); - completion(YES); - } else if (error) { - DDLogInfo(@"Slack Error - %@", error.localizedDescription); - completion(NO); - } else { - DDLogInfo(@"Slack Error - Unknown Error"); - completion(NO); - } - }]; -} - -@end diff --git a/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.swift b/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.swift new file mode 100644 index 00000000..ab6a4479 --- /dev/null +++ b/AppBox/Common/ServiceIntegrations/SlackClient/SlackClient.swift @@ -0,0 +1,38 @@ +// +// SlackClient.swift +// AppBox + +import Foundation +import AppBoxCore +import os + +public final class SlackClient: NSObject { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "SlackClient") + + public class func sendMessage(_ ipaUploadInfo: IPAUploadInfo, webhook: String?, + completion: @escaping (Bool) -> Void) { + guard WebhookURL.isValid(webhook), let webhook else { + log.error("Slack Error - Invalid webhook URL: \(webhook ?? "", privacy: .public)") + completion(false) + return + } + + let finalMessage = BuildNotificationMessage.text( + name: ipaUploadInfo.name ?? "", + version: ipaUploadInfo.version ?? "", + build: ipaUploadInfo.build ?? "", + installURL: ipaUploadInfo.appShortShareableURL?.absoluteString ?? "") + + Task { + do { + try await AppServices.serviceClient.sendNotification(service: .slack, webhookURL: webhook, text: finalMessage) + log.info("Slack message sent") + await MainActor.run { completion(true) } + } catch { + log.info("Slack Error - \(error.localizedDescription, privacy: .public)") + await MainActor.run { completion(false) } + } + } + } +} diff --git a/AppBox/Common/UISubClasses/AppBoxTableRowView.h b/AppBox/Common/UISubClasses/AppBoxTableRowView.h deleted file mode 100644 index a2c32820..00000000 --- a/AppBox/Common/UISubClasses/AppBoxTableRowView.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// AppBoxTableRowView.h -// AppBox -// -// Created by Vineet Choudhary on 19/03/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface AppBoxTableRowView : NSTableCellView - -@end diff --git a/AppBox/Common/UISubClasses/AppBoxTableRowView.m b/AppBox/Common/UISubClasses/AppBoxTableRowView.m deleted file mode 100644 index ea99acb9..00000000 --- a/AppBox/Common/UISubClasses/AppBoxTableRowView.m +++ /dev/null @@ -1,20 +0,0 @@ -// -// AppBoxTableRowView.m -// AppBox -// -// Created by Vineet Choudhary on 19/03/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "AppBoxTableRowView.h" - -@implementation AppBoxTableRowView - -- (void)drawRect:(NSRect)dirtyRect { - [super drawRect:dirtyRect]; - - // Drawing code here. -} - - -@end diff --git a/AppBox/Common/UISubClasses/AppBoxTableRowView.swift b/AppBox/Common/UISubClasses/AppBoxTableRowView.swift new file mode 100644 index 00000000..c2a24a5a --- /dev/null +++ b/AppBox/Common/UISubClasses/AppBoxTableRowView.swift @@ -0,0 +1,8 @@ +// +// AppBoxTableRowView.swift +// AppBox + +import AppKit + +public final class AppBoxTableRowView: NSTableCellView { +} diff --git a/AppBox/Common/UpdateHandler/UpdateHandler.h b/AppBox/Common/UpdateHandler/UpdateHandler.h deleted file mode 100644 index b1fc50cf..00000000 --- a/AppBox/Common/UpdateHandler/UpdateHandler.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// UpdateHandler.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -@interface UpdateHandler : NSObject - -+ (BOOL)isInstalledViaHomebrew; -+ (void)showAlreadyUptoDateAlert; -+ (void)showUpdateAlertWithUpdateURL:(NSURL *)url; -+ (void)showHomebrewUpdateAlert; -+ (void)isNewVersionAvailableCompletion:(void (^)(bool available, NSURL *url))completion; - -@end diff --git a/AppBox/Common/UpdateHandler/UpdateHandler.m b/AppBox/Common/UpdateHandler/UpdateHandler.m deleted file mode 100644 index 84c87d53..00000000 --- a/AppBox/Common/UpdateHandler/UpdateHandler.m +++ /dev/null @@ -1,187 +0,0 @@ -// -// UpdateHandler.m -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "UpdateHandler.h" - -@implementation UpdateHandler - -//MARK: - Homebrew Detection - -+ (BOOL)isInstalledViaHomebrew { - NSFileManager *fileManager = [NSFileManager defaultManager]; - // Check Apple Silicon Homebrew path - if ([fileManager fileExistsAtPath:@"/opt/homebrew/Caskroom/appbox"]) { - return YES; - } - // Check Intel Homebrew path - if ([fileManager fileExistsAtPath:@"/usr/local/Caskroom/appbox"]) { - return YES; - } - return NO; -} - -//MARK: - Check for update - -+ (void)showHomebrewUpdateAlert { - NSString *command = @"brew upgrade --cask appbox"; - - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText:@"New Version Available"]; - [alert setInformativeText:@"A newer version of \"AppBox\" is available.\n\nSince you installed AppBox via Homebrew, please run this command in Terminal:"]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert setAccessoryView:[self commandTextFieldWithString:command width:250]]; - [alert addButtonWithTitle:@"Copy & Close"]; - [alert addButtonWithTitle:@"Release Notes"]; - [alert addButtonWithTitle:@"Close"]; - NSModalResponse response = [alert runModal]; - if (response == NSAlertFirstButtonReturn) { - [[NSPasteboard generalPasteboard] clearContents]; - [[NSPasteboard generalPasteboard] setString:command forType:NSPasteboardTypeString]; - } else if (response == NSAlertSecondButtonReturn) { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abGitHubLatestReleaseURL]]; - } -} - -+ (void)showUpdateAlertWithUpdateURL:(NSURL *)url{ - NSString *command = @"curl -s https://getappbox.com/install.sh | bash"; - - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText:@"New Version Available"]; - [alert setInformativeText:@"A newer version of \"AppBox\" is available.\n\nTo update, run this command in Terminal:"]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert setAccessoryView:[self commandTextFieldWithString:command width:400]]; - [alert addButtonWithTitle:@"Copy & Close"]; - [alert addButtonWithTitle:@"Release Notes"]; - [alert addButtonWithTitle:@"Close"]; - NSModalResponse response = [alert runModal]; - if (response == NSAlertFirstButtonReturn){ - [[NSPasteboard generalPasteboard] clearContents]; - [[NSPasteboard generalPasteboard] setString:command forType:NSPasteboardTypeString]; - } else if (response == NSAlertSecondButtonReturn) { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abGitHubLatestReleaseURL]]; - } -} - -+ (NSView *)commandTextFieldWithString:(NSString *)command width:(CGFloat)width { - NSTextField *textField = [[NSTextField alloc] initWithFrame:NSMakeRect(0, 0, width, 20)]; - [textField setStringValue:[NSString stringWithFormat:@"%@", command]]; - [textField setEditable:NO]; - [textField setSelectable:YES]; - [textField setBordered:YES]; - [textField setBezelStyle:NSTextFieldRoundedBezel]; - [textField setFont:[NSFont monospacedSystemFontOfSize:12.0 weight:NSFontWeightMedium]]; - [textField setBackgroundColor:[NSColor controlBackgroundColor]]; - [textField setAlignment:NSTextAlignmentCenter]; - return textField; -} - -+ (void)showAlreadyUptoDateAlert{ - NSString *versionString = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - [Common showAlertWithTitle:@"You’re up-to-date!" andMessage:[NSString stringWithFormat:@"AppBox %@ is currently the newest version available.", versionString]]; -} - -+ (void)isNewVersionAvailableCompletion:(void (^)(bool available, NSURL *url))completion{ - @try { - DDLogDebug(@"Checking for new version..."); - - if ([self isInstalledViaHomebrew]) { - // Check Homebrew API for latest available version - [NetworkHandler requestWithURL:abHomebrewCaskAPI withParameters:nil andRequestType:RequestGET andCompletetion:^(id responseObj, NSInteger httpStatus, NSError *error) { - @try { - if (error == nil && [responseObj isKindOfClass:[NSDictionary class]] && - [((NSDictionary *)responseObj).allKeys containsObject:@"version"]) { - - NSString *latestVersion = [responseObj valueForKey:@"version"]; - NSString *versionString = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - if (!versionString || !latestVersion) { - completion(false, nil); - return; - } - - DDLogDebug(@"Current Version - %@ <=> Homebrew Latest Version - %@", versionString, latestVersion); - - NSString *cleanLatest = [self extractVersionString:latestVersion]; - NSString *cleanCurrent = [self extractVersionString:versionString]; - NSComparisonResult result = [cleanLatest compare:cleanCurrent options:NSNumericSearch]; - - completion((result == NSOrderedDescending), nil); - } else { - // Homebrew API failed — fallback to GitHub release check - DDLogInfo(@"Homebrew API failed, falling back to GitHub release check."); - [self checkGitHubReleaseWithCompletion:completion]; - } - } - @catch (NSException *exception) { - DDLogError(@"Exception %@",exception.abDescription); - [self checkGitHubReleaseWithCompletion:completion]; - } - }]; - } else { - [self checkGitHubReleaseWithCompletion:completion]; - } - } @catch (NSException *exception) { - completion(false, nil); - DDLogInfo(@"Exception %@",exception.abDescription); - } -} - -+ (void)checkGitHubReleaseWithCompletion:(void (^)(bool available, NSURL *url))completion { - [NetworkHandler requestWithURL:abGitHubLatestRelease withParameters:nil andRequestType:RequestGET andCompletetion:^(id responseObj, NSInteger httpStatus, NSError *error) { - @try { - if (error == nil && [responseObj isKindOfClass:[NSDictionary class]] && - [((NSDictionary *)responseObj).allKeys containsObject:@"tag_name"] && - [((NSDictionary *)responseObj).allKeys containsObject:@"html_url"]){ - - NSString *tag = [responseObj valueForKey:@"tag_name"]; - NSString *versionString = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - if (!versionString || !tag) { - completion(false, nil); - return; - } - - DDLogDebug(@"Current Version - %@ <=> GitHub Latest Version - %@", versionString, tag); - - NSString *latestVersion = [self extractVersionString:tag]; - NSString *currentVersion = [self extractVersionString:versionString]; - NSComparisonResult result = [latestVersion compare:currentVersion options:NSNumericSearch]; - - completion((result == NSOrderedDescending), [NSURL URLWithString:[responseObj valueForKey:@"html_url"]]); - } else { - completion(false, nil); - } - } - @catch (NSException *exception) { - DDLogError(@"Exception %@",exception.abDescription); - completion(false, nil); - } - }]; -} - -+ (NSString *)extractVersionString:(NSString *)input { - if (!input) return @"0"; - // Remove everything except digits and dots - NSMutableString *version = [NSMutableString string]; - BOOL foundDigit = NO; - for (NSUInteger i = 0; i < input.length; i++) { - unichar c = [input characterAtIndex:i]; - if (c >= '0' && c <= '9') { - [version appendFormat:@"%C", c]; - foundDigit = YES; - } else if (c == '.' && foundDigit) { - [version appendFormat:@"%C", c]; - } - } - // Remove trailing dot if any - if (version.length > 0 && [version characterAtIndex:version.length - 1] == '.') { - [version deleteCharactersInRange:NSMakeRange(version.length - 1, 1)]; - } - return version.length > 0 ? [version copy] : @"0"; -} - - -@end diff --git a/AppBox/Common/UpdateHandler/UpdateHandler.swift b/AppBox/Common/UpdateHandler/UpdateHandler.swift new file mode 100644 index 00000000..3a07ce88 --- /dev/null +++ b/AppBox/Common/UpdateHandler/UpdateHandler.swift @@ -0,0 +1,104 @@ +// +// UpdateHandler.swift +// AppBox + +import Foundation +import AppKit +import AppBoxCore +import os + +public final class UpdateHandler: NSObject { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "UpdateHandler") + private static let gitHubLatestReleaseURL = "https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/releases/latest" + + private static var currentVersion: String? { + Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String + } + + public class func isInstalledViaHomebrew() -> Bool { + return ABHomebrewDetector.isInstalledViaHomebrew() + } + + public class func showHomebrewUpdateAlert() { + let command = "brew upgrade --cask appbox" + let alert = NSAlert() + alert.messageText = "New Version Available" + alert.informativeText = "A newer version of \"AppBox\" is available.\n\nSince you installed AppBox via Homebrew, please run this command in Terminal:" + alert.alertStyle = .informational + alert.accessoryView = commandTextField(command, width: 250) + alert.addButton(withTitle: "Copy & Close") + alert.addButton(withTitle: "Release Notes") + alert.addButton(withTitle: "Close") + switch alert.runModal() { + case .alertFirstButtonReturn: + NSPasteboard.general.clearContents() + NSPasteboard.general.setString(command, forType: .string) + case .alertSecondButtonReturn: + if let url = URL(string: gitHubLatestReleaseURL) { NSWorkspace.shared.open(url) } + default: break + } + } + + public class func showUpdateAlert(withUpdateURL url: URL?) { + let command = "curl -s https://getappbox.com/install.sh | bash" + let alert = NSAlert() + alert.messageText = "New Version Available" + alert.informativeText = "A newer version of \"AppBox\" is available.\n\nTo update, run this command in Terminal:" + alert.alertStyle = .informational + alert.accessoryView = commandTextField(command, width: 400) + alert.addButton(withTitle: "Copy & Close") + alert.addButton(withTitle: "Release Notes") + alert.addButton(withTitle: "Close") + switch alert.runModal() { + case .alertFirstButtonReturn: + NSPasteboard.general.clearContents() + NSPasteboard.general.setString(command, forType: .string) + case .alertSecondButtonReturn: + if let releaseURL = URL(string: gitHubLatestReleaseURL) { NSWorkspace.shared.open(releaseURL) } + default: break + } + } + + public class func showAlreadyUptoDateAlert() { + let version = currentVersion ?? "" + Common.showAlert(withTitle: "You\u{2019}re up-to-date!", + andMessage: "AppBox \(version) is currently the newest version available.") + } + + /// Reports whether a newer version exists and, for direct (non-Homebrew) installs, the release URL. + public class func isNewVersionAvailable(completion: @escaping (Bool, URL?) -> Void) { + log.debug("Checking for new version...") + let installedViaHomebrew = isInstalledViaHomebrew() + let current = currentVersion + Task { + do { + let latest = try await AppServices.serviceClient.fetchLatestVersion() + if installedViaHomebrew { + let available = ABVersionCompare.isUpdateAvailable(latest: latest.homebrewVersion ?? latest.version, + current: current) + await MainActor.run { completion(available, nil) } + } else { + let available = ABVersionCompare.isUpdateAvailable(latest: latest.version, current: current) + await MainActor.run { completion(available, available ? latest.downloadURL : nil) } + } + } catch { + log.info("Update check failed: \(error.localizedDescription, privacy: .public)") + await MainActor.run { completion(false, nil) } + } + } + } + + private class func commandTextField(_ command: String, width: CGFloat) -> NSView { + let textField = NSTextField(frame: NSRect(x: 0, y: 0, width: width, height: 20)) + textField.stringValue = command + textField.isEditable = false + textField.isSelectable = true + textField.isBordered = true + textField.bezelStyle = .roundedBezel + textField.font = NSFont.monospacedSystemFont(ofSize: 12.0, weight: .medium) + textField.backgroundColor = .controlBackgroundColor + textField.alignment = .center + return textField + } +} diff --git a/AppBox/Common/UploadManager/UploadManager.h b/AppBox/Common/UploadManager/UploadManager.h deleted file mode 100644 index dec0d386..00000000 --- a/AppBox/Common/UploadManager/UploadManager.h +++ /dev/null @@ -1,47 +0,0 @@ -// -// UploadManager.h -// AppBox -// -// Created by Vineet Choudhary on 20/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#import "MobileProvision.h" - -@class ABUploadRecord; - -typedef void(^ProgressBlock)(NSString *title); -typedef void(^ErrorBlock)(NSError *error, BOOL terminate); -typedef void(^ITCLoginBlock)(void); -typedef void(^CompletionBlock)(void); - - -@interface UploadManager : NSObject{ - -} - -@property(nonatomic, assign) BOOL isCLIActive; -@property(nonatomic, strong) IPAUploadInfo *ipaUploadInfo; -@property(nonatomic, assign) DBFileType dbFileType; -@property(nonatomic, weak) NSViewController *currentViewController; -@property(nonatomic, weak) ABUploadRecord *uploadRecord; -@property(nonatomic, strong) NSBlockOperation *lastfailedOperation; - -//blocks -@property(nonatomic, strong) ProgressBlock progressBlock; -@property(nonatomic, strong) ErrorBlock errorBlock; -@property(nonatomic, strong) ITCLoginBlock itcLoginBlock; -@property(nonatomic, strong) CompletionBlock completionBlock; - - -+ (void)setupDBClientsManager; -- (instancetype)init; -- (void)uploadIPAFile:(NSURL *)ipaFileURL; -- (void)uploadIPAFileWithoutUnzip:(NSURL *)ipaURL; - -- (void)deleteBuildFromDashboard; -- (void)deleteBuildFromDropboxAndDashboard; - -@end diff --git a/AppBox/Common/UploadManager/UploadManager.m b/AppBox/Common/UploadManager/UploadManager.m deleted file mode 100644 index 38949eec..00000000 --- a/AppBox/Common/UploadManager/UploadManager.m +++ /dev/null @@ -1,918 +0,0 @@ -// -// UploadManager.m -// AppBox -// -// Created by Vineet Choudhary on 20/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "UploadManager.h" - -@implementation UploadManager { - //For Large Upload - NSString *sessionId; - NSUInteger ipaFileSize; - NSData *nextChunkToUpload; - NSUInteger chunkSize; - NSUInteger offset; - NSFileHandle *fileHandle; - DBFILESCommitInfo *fileCommitInfo; - - //For retry - NSInteger retryCount; - - // - NSString *workingDirectory; -} - -+(void)setupDBClientsManager{ - //Force Foreground Session - DBUserClient *client = [DBClientsManager authorizedClient]; - if (!client) { - DBTransportDefaultConfig *transportConfig = [[DBTransportDefaultConfig alloc] initWithAppKey:[[Common currentDBManager] getDBKey] forceForegroundSession:YES]; - [DBClientsManager setupWithTransportConfigDesktop:transportConfig]; - //Default Session (Background) - //[DBClientsManager setupWithAppKeyDesktop:[DBManager dbKey]]; - } -} - -- (instancetype)init { - self = [super init]; - if (self) { - retryCount = 0; - fileHandle = nil; - } - return self; -} - -- (void)dealloc { - [self closeFileHandle]; - [self cleanupWorkingDirectory]; -} - -- (void)closeFileHandle { - if (fileHandle) { - @try { - [fileHandle closeFile]; - } @catch (NSException *exception) { - DDLogError(@"Error closing file handle: %@", exception); - } - fileHandle = nil; - } -} - -- (void)cleanupWorkingDirectory { - if (workingDirectory && [[NSFileManager defaultManager] fileExistsAtPath:workingDirectory]) { - NSError *error = nil; - [[NSFileManager defaultManager] removeItemAtPath:workingDirectory error:&error]; - if (error) { - DDLogWarn(@"Failed to clean temp directory: %@", error.localizedDescription); - } else { - DDLogDebug(@"Cleaned up working directory: %@", workingDirectory); - } - } -} - -- (void)createNewWorkingDirectory { - workingDirectory = [NSTemporaryDirectory() stringByAppendingPathComponent: [[NSUUID UUID] UUIDString]]; - NSError *error = nil; - [[NSFileManager defaultManager] createDirectoryAtPath:workingDirectory withIntermediateDirectories:YES attributes:nil error:&error]; - if (error == nil) { - DDLogDebug(@"New temporaray working directory %@", workingDirectory); - } else { - DDLogInfo(@"Unable to create temporary working directory %@", workingDirectory); - } -} - -//MARK: - UnZip IPA File - --(void)uploadIPAFile:(NSURL *)ipaFileURL{ - DDLogDebug(@"Preparing to Upload IPA - %@", ipaFileURL); - NSString *ipaPath = [ipaFileURL.resourceSpecifier stringByRemovingPercentEncoding]; - weakify(self); - if ([[NSFileManager defaultManager] fileExistsAtPath:ipaPath]) { - DDLogDebug(@"Uploading IPA - %@", ipaPath); - //Unzip ipa - __block NSString *payloadEntry; - __block NSString *infoPlistPath; - - // Create new temp working directory - [self createNewWorkingDirectory]; - - DDLogInfo(@"Extracting IPA file..."); - DDLogDebug(@"Extracting Files to - %@", workingDirectory); - dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0), ^{ - [SSZipArchive unzipFileAtPath:ipaPath - toDestination:self->workingDirectory - overwrite:YES - password:nil - progressHandler:^(NSString * _Nonnull entry, unz_file_info zipInfo, long entryNumber, long total) { - dispatch_async(dispatch_get_main_queue(), ^{ - strongify(self); - - [self showStatus:@"Extracting files..." andShowProgressBar:YES withProgress:-1]; - - //Get payload entry - if (payloadEntry == nil && [entry containsString:@".app"]) { - [[entry pathComponents] enumerateObjectsUsingBlock:^(NSString * _Nonnull pathComponent, NSUInteger idx, BOOL * _Nonnull stop) { - if ((pathComponent.length > 4) && [[pathComponent substringFromIndex:(pathComponent.length-4)].lowercaseString isEqualToString: @".app"]) { - - DDLogDebug(@"Found payload at path = %@",entry); - payloadEntry = [NSString pathWithComponents:[[entry pathComponents] subarrayWithRange:NSMakeRange(0, idx+1)]]; - *stop = YES; - } - }]; - } - - //Get Info.plist entry - NSString *mainInfoPlistPath = [payloadEntry stringByAppendingPathComponent:@"Info.plist"].lowercaseString; - if ([entry.lowercaseString isEqualToString:mainInfoPlistPath]) { - DDLogDebug(@"Found Info.plist at path = %@",mainInfoPlistPath); - infoPlistPath = entry; - } - - //Get embedded mobile provision - if (self.ipaUploadInfo.mobileProvision == nil){ - NSString *mobileProvisionPath = [payloadEntry stringByAppendingPathComponent:@"embedded.mobileprovision"].lowercaseString; - if ([entry.lowercaseString isEqualToString:mobileProvisionPath]){ - DDLogDebug(@"Found mobileprovision at path = %@",mobileProvisionPath); - mobileProvisionPath = [self->workingDirectory stringByAppendingPathComponent: mobileProvisionPath]; - self.ipaUploadInfo.mobileProvision = [[MobileProvision alloc] initWithPath:mobileProvisionPath]; - } - } - - //show status and log files entry - DDLogDebug(@"%@-%@-%@",[NSNumber numberWithLong:entryNumber], [NSNumber numberWithLong:total], entry); - }); - } completionHandler:^(NSString * _Nonnull path, BOOL succeeded, NSError * _Nonnull error) { - strongify(self); - dispatch_async(dispatch_get_main_queue(), ^{ - if (error) { - //show error and return - if (self.isCLIActive) { - DDLogInfo(@"Error - %@", error.localizedDescription); - [AppDelegate terminateWithExitCode:abExitCodeUnZipIPAError]; - } else { - [Common showAlertWithTitle:@"AppBox - Error" andMessage:error.localizedDescription]; - } - self.errorBlock(nil, YES); - return; - } - - //get info.plist - DDLogDebug(@"Final Info.plist path = %@",infoPlistPath); - [self.ipaUploadInfo setIpaInfoPlist: [NSDictionary dictionaryWithContentsOfFile:[self->workingDirectory stringByAppendingPathComponent:infoPlistPath]]]; - - //show error if info.plist is nil or invalid - if (![self.ipaUploadInfo isValidInfoPlist]) { - if (self.isCLIActive) { - DDLogInfo(@"AppBox was not able to find Info.plist in your IPA."); - [AppDelegate terminateWithExitCode:abExitCodeInfoPlistNotFound]; - } else { - [Common showAlertWithTitle:@"AppBox - Error" andMessage:@"AppBox was not able to find Info.plist in your IPA."]; - } - self.errorBlock(nil, YES); - return; - } - - //set dropbox folder name - if (!self.ipaUploadInfo.bundleDirectory.absoluteString.isEmpty){ - [self.ipaUploadInfo upadteDbDirectoryByBundleDirectory]; - } - - if (![AppDelegate appDelegate].isInternetConnected){ - [self showStatus:abNotConnectedToInternet andShowProgressBar:YES withProgress:-1]; - } - - //prepare for upload and check ipa type - NSURL *ipaFileURL = ([self.ipaUploadInfo.ipaFullPath isFileURL]) ? self.ipaUploadInfo.ipaFullPath : [NSURL fileURLWithPath:ipaPath]; - [self.ipaUploadInfo setIpaFullPath:ipaFileURL]; - [self uploadIPAFileWithoutUnzip:ipaFileURL]; - }); - }]; - }); - }else{ - DDLogInfo(@"\n\n======\nFile Not Exist - %@\n======\n\n",ipaPath); - if (self.isCLIActive) { - [AppDelegate terminateWithExitCode:abExitCodeIPAFileNotFound]; - } else { - [Common showAlertWithTitle:@"IPA File Missing" andMessage:[NSString stringWithFormat:@"AppBox was not able to find IPA file at %@.",ipaFileURL.absoluteString]]; - } - self.errorBlock(nil, YES); - } -} - --(void)uploadIPAFileWithoutUnzip:(NSURL *)ipaURL{ - DDLogDebug(@"\n=========\nInfo.plist\n========\n %@", self.ipaUploadInfo.ipaInfoPlist); - - //upload ipa - self.dbFileType = DBFileTypeIPA; - if ([AppDelegate appDelegate].isInternetConnected) { - [self dbUploadFile:ipaURL.resourceSpecifier.stringByRemovingPercentEncoding to:self.ipaUploadInfo.dbIPAFullPath.absoluteString mode:[[DBFILESWriteMode alloc] initWithOverwrite]]; - } else { - self.lastfailedOperation = [NSBlockOperation blockOperationWithBlock:^{ - [self dbUploadFile:ipaURL.resourceSpecifier.stringByRemovingPercentEncoding to:self.ipaUploadInfo.dbIPAFullPath.absoluteString mode:[[DBFILESWriteMode alloc] initWithOverwrite]]; - }]; - } -} - - -//MARK: - UNIQUE Link Handlers --(void)handleAfterUniqueJsonMetaDataLoaded{ - if(self.ipaUploadInfo.uniqueLinkJsonMetaData){ - NSURL *path = [NSURL fileURLWithPath:[workingDirectory stringByAppendingPathComponent:FILE_NAME_UNIQUE_JSON]]; - weakify(self); - //download appinfo.json file - [[[DBClientsManager authorizedClient].filesRoutes downloadUrl:self.ipaUploadInfo.uniqueLinkJsonMetaData.pathDisplay overwrite:YES destination:path] - setResponseBlock:^(DBFILESFileMetadata * _Nullable response, DBFILESDownloadError * _Nullable routeError, DBRequestError * _Nullable error, NSURL * _Nonnull destination) { - strongify(self); - if (!self) return; - if (response){ - if([response.name hasSuffix:FILE_NAME_UNIQUE_JSON]){ - [self updateUniquLinkDictinory:[[self getUniqueJsonDict] mutableCopy]]; - } - } - else if (error){ - if (self.uploadRecord) { - self.errorBlock(error.nsError, NO); - [DBErrorHandler handleNetworkErrorWith:error abErrorMessage:@"Unable to fetch app records from Dropbox."]; - } - //create new appinfo.json - [self handleAfterUniqueJsonMetaDataLoaded]; - } - }]; - }else{ - [self updateUniquLinkDictinory:[NSMutableDictionary new]]; - } -} - --(NSDictionary *)getUniqueJsonDict{ - NSError *error; - NSDictionary *dictionary = [NSJSONSerialization JSONObjectWithData:[NSData dataWithContentsOfFile:[workingDirectory stringByAppendingPathComponent:FILE_NAME_UNIQUE_JSON]] options:kNilOptions error:&error]; - if (error) { - DDLogInfo(@"Error while parsing unique json file - %@", error.localizedDescription); - } - return dictionary; -} - --(void)updateUniquLinkDictinory:(NSMutableDictionary *)dictUniqueLink{ - if(![dictUniqueLink isKindOfClass:[NSDictionary class]]){ - dictUniqueLink = [NSMutableDictionary new]; - } - if (self.uploadRecord) { - NSMutableArray *versionHistory = [[dictUniqueLink objectForKey:@"versions"] mutableCopy]; - if(versionHistory){ - //remove version from history - [versionHistory enumerateObjectsUsingBlock:^(NSDictionary * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { - if ([[obj valueForKey:@"manifestLink"] isEqualToString:self.uploadRecord.dbSharedManifestURL]) { - [versionHistory removeObject:obj]; - *stop = YES; - } - }]; - - if (versionHistory.count > 0) { - //replace latest version with last version, if user removed first version - NSMutableDictionary *latestVersion = [dictUniqueLink objectForKey:@"latestVersion"]; - if (latestVersion && [[latestVersion valueForKey:@"manifestLink"] isEqualToString:self.uploadRecord.dbSharedManifestURL]){ - latestVersion = [versionHistory lastObject]; - } - [dictUniqueLink setObject:versionHistory forKey:@"versions"]; - [dictUniqueLink setObject:latestVersion forKey:@"latestVersion"]; - } else { - [self deleteBuildRootFolder]; - return; - } - } - } else { - NSNumber *currentTimeStamp = [NSNumber numberWithDouble:[[NSDate date] timeIntervalSince1970]]; - NSMutableDictionary *latestVersion = [[NSMutableDictionary alloc] init]; - [latestVersion setObject:self.ipaUploadInfo.name forKey:@"name"]; - [latestVersion setObject:self.ipaUploadInfo.version forKey:@"version"]; - [latestVersion setObject:self.ipaUploadInfo.build forKey:@"build"]; - [latestVersion setObject:self.ipaUploadInfo.identifer forKey:@"identifier"]; - [latestVersion setObject:self.ipaUploadInfo.manifestFileSharableURL.absoluteString forKey:@"manifestLink"]; - [latestVersion setObject:currentTimeStamp forKey:@"timestamp"]; - - //check if developer want to show donwload button IPA file button to the user - if ([UserData downloadIPAEnable]) { - [latestVersion setObject:self.ipaUploadInfo.ipaFileDBShareableURL.absoluteString forKey:@"ipaFileLink"]; - } - - //check if developer want to show more information about build - if ([UserData moreDetailsEnable]) { - //set basic details of app - if (self.ipaUploadInfo.miniOSVersion){ - [latestVersion setObject:self.ipaUploadInfo.miniOSVersion forKey:@"minosversion"]; - } - if (self.ipaUploadInfo.supportedDevice){ - [latestVersion setObject:self.ipaUploadInfo.supportedDevice forKey:@"supporteddevice"]; - } - if (self.ipaUploadInfo.buildType){ - [latestVersion setObject:self.ipaUploadInfo.buildType forKey:@"buildtype"]; - } - if (self.ipaUploadInfo.ipaFileSize) { - [latestVersion setObject:self.ipaUploadInfo.ipaFileSize forKey:@"ipafilesize"]; - } - - //set details which obtains from mobile provisioing profile - NSMutableDictionary *mobileProvision = [[NSMutableDictionary alloc] init]; - if (self.ipaUploadInfo.mobileProvision.createDate) { - NSNumber *create = [NSNumber numberWithDouble: self.ipaUploadInfo.mobileProvision.createDate.timeIntervalSince1970]; - [mobileProvision setObject:create forKey:@"createdate"]; - } - if (self.ipaUploadInfo.mobileProvision.expirationDate) { - NSNumber *expire = [NSNumber numberWithDouble: self.ipaUploadInfo.mobileProvision.expirationDate.timeIntervalSince1970]; - [mobileProvision setObject:expire forKey:@"expirationdata"]; - } - if (self.ipaUploadInfo.mobileProvision.teamId) { - [mobileProvision setObject:self.ipaUploadInfo.mobileProvision.teamId forKey:@"teamid"]; - } - if (self.ipaUploadInfo.mobileProvision.teamName) { - [mobileProvision setObject:self.ipaUploadInfo.mobileProvision.teamName forKey:@"teamname"]; - } - if (self.ipaUploadInfo.mobileProvision.uuid) { - [mobileProvision setObject:self.ipaUploadInfo.mobileProvision.uuid forKey:@"uuid"]; - } - if (mobileProvision.allKeys.count > 0) { - [latestVersion setObject:mobileProvision forKey:@"mobileprovision"]; - } - - //Hide some information of provisioned deviecs UDIDs - NSMutableArray *modifiedProvisionedDevices = [[NSMutableArray alloc] init]; - [self.ipaUploadInfo.mobileProvision.provisionedDevices enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { - if (obj.length > 30) { - NSString *modifiedProvisioning = [obj stringByReplacingCharactersInRange:NSMakeRange(10, 20) withString:@"....."]; - [modifiedProvisionedDevices addObject:modifiedProvisioning]; - } else if (obj.length > 20) { - NSString *modifiedProvisioning = [obj stringByReplacingCharactersInRange:NSMakeRange(8, 5) withString:@"....."]; - [modifiedProvisionedDevices addObject:modifiedProvisioning]; - } - }]; - if (self.ipaUploadInfo.mobileProvision.provisionedDevices) { - [mobileProvision setObject:modifiedProvisionedDevices forKey:@"devicesudid"]; - } - } - - NSMutableArray *versionHistory = [[dictUniqueLink objectForKey:@"versions"] mutableCopy]; - if ([UserData showPreviousVersions]) { - if(!versionHistory){ - versionHistory = [NSMutableArray new]; - } - } else { - versionHistory = [NSMutableArray new]; - } - [versionHistory addObject:latestVersion]; - [dictUniqueLink setObject:versionHistory forKey:@"versions"]; - [dictUniqueLink setObject:latestVersion forKey:@"latestVersion"]; - } - [self writeUniqueJsonWithDict:dictUniqueLink]; - self.ipaUploadInfo.uniquelinkShareableURL = [NSURL URLWithString:[dictUniqueLink objectForKey:UNIQUE_LINK_SHARED]]; - self.ipaUploadInfo.appShortShareableURL = [NSURL URLWithString:[dictUniqueLink objectForKey:UNIQUE_LINK_SHORT]]; - [self uploadUniqueLinkJsonFile]; -} - --(void)writeUniqueJsonWithDict:(NSDictionary *)jsonDict{ - NSString *path = [workingDirectory stringByAppendingPathComponent:FILE_NAME_UNIQUE_JSON]; - if([[NSFileManager defaultManager] fileExistsAtPath:path]){ - [[NSFileManager defaultManager] removeItemAtPath:path error:nil]; - } - NSError *error; - NSData *jsonData = [NSJSONSerialization dataWithJSONObject:jsonDict options:NSJSONWritingPrettyPrinted error:&error]; - if (error) { - DDLogError(@"Failed to serialize JSON: %@", error.localizedDescription); - return; - } - NSError *writeError = nil; - BOOL success = [jsonData writeToFile:path options:NSDataWritingAtomic error:&writeError]; - if (!success) { - DDLogError(@"Failed to write JSON file: %@", writeError.localizedDescription); - } -} - --(void)uploadUniqueLinkJsonFile{ - self.dbFileType = DBFileTypeJson; - NSURL *path = [NSURL fileURLWithPath:[workingDirectory stringByAppendingPathComponent:FILE_NAME_UNIQUE_JSON]]; - - //set mode for appinfo.json file to upload/update - DBFILESWriteMode *mode = (self.ipaUploadInfo.uniqueLinkJsonMetaData) ? [[DBFILESWriteMode alloc] initWithUpdate:self.ipaUploadInfo.uniqueLinkJsonMetaData.rev] : [[DBFILESWriteMode alloc] initWithOverwrite]; - [self dbUploadFile:path.resourceSpecifier to:self.ipaUploadInfo.dbAppInfoJSONFullPath.absoluteString mode:mode]; -} - -//MARK: - Update AppInfo.JSON file --(void)loadAppInfoMetaData{ - weakify(self); - DBFILESListRevisionsMode *revisionMode = [[DBFILESListRevisionsMode alloc] initWithPath]; - [[[DBClientsManager authorizedClient].filesRoutes listRevisions:self.ipaUploadInfo.dbAppInfoJSONFullPath.absoluteString mode:revisionMode limit:@1 ] setResponseBlock:^(DBFILESListRevisionsResult * _Nullable response, DBFILESListRevisionsError * _Nullable routeError, DBRequestError * _Nullable error) { - strongify(self); - if (!self) return; - //check there is any rev available - if (response && response.isDeleted.boolValue == NO && response.entries.count > 0){ - DDLogDebug(@"Loaded Meta Data %@",response); - self.ipaUploadInfo.uniqueLinkJsonMetaData = [response.entries firstObject]; - } - - //handle meta data - [self handleAfterUniqueJsonMetaDataLoaded]; - }]; - -} - -//MARK: - Upload Files - --(void)dbUploadFile:(NSString *)file to:(NSString *)path mode:(DBFILESWriteMode *)mode{ - DDLogInfo(@"Uploading - %@", file.lastPathComponent); - - //Upload large ipa file with dropbox session api - if (self.ipaUploadInfo.ipaFileSize.integerValue > 150 && self.dbFileType == DBFileTypeIPA) { - [self dbUploadLargeFile:file to:path mode:mode]; - return; - } - - //uploadUrl:path inputUrl:file - weakify(self); - [[[[DBClientsManager authorizedClient].filesRoutes uploadUrl:path mode:mode autorename:@NO clientModified:nil mute:@NO propertyGroups:nil strictConflict:@NO contentHash:nil inputUrl:file] - //Track response with result and error - setResponseBlock:^(DBFILESFileMetadata * _Nullable response, DBFILESUploadError * _Nullable routeError, DBRequestError * _Nullable error) { - strongify(self); - if (!self) return; - if (response) { - //reset retry count - self->retryCount = 0; - - //AppInfo.json file uploaded and creating shared url - if(self.dbFileType == DBFileTypeJson){ - self.ipaUploadInfo.uniqueLinkJsonMetaData = response; - if(self.ipaUploadInfo.appShortShareableURL){ - if (self.uploadRecord) { - [self deleteBuildFolder]; - } else { - self.completionBlock(); - } - return; - }else{ - //create shared url for appinfo.json - [self dbCreateSharedURLForFile:response.pathDisplay]; - } - } - //IPA file uploaded and creating shared url - else if (self.dbFileType == DBFileTypeIPA){ - NSString *status = [NSString stringWithFormat:@"Creating Sharable Link for IPA"]; - [self showStatus:status andShowProgressBar:YES withProgress:-1]; - - //create shared url for ipa - [self dbCreateSharedURLForFile:response.pathDisplay]; - } - //Manifest file uploaded and creating shared url - else if (self.dbFileType == DBFileTypeManifest){ - NSString *status = [NSString stringWithFormat:@"Creating Sharable Link for Manifest"]; - [self showStatus:status andShowProgressBar:YES withProgress:-1]; - - //create shared url for manifest - [self dbCreateSharedURLForFile:response.pathDisplay]; - } - } - //unable to upload file, show error - else { - NSBlockOperation *retryOperation = [NSBlockOperation blockOperationWithBlock:^{ [self dbUploadFile:file to:path mode:mode]; }]; - [self handleChunkUploadWithRouteError:nil finishError:nil uploadError:nil networkError:error retryBlock:retryOperation]; - } - }] - - //Track and show upload progress - setProgressBlock:^(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite) { - strongify(self); - if (!self) return; - if (!self.uploadRecord) { - //Calculate and show progress based on file type - CGFloat progress = ((totalBytesWritten * 100) / totalBytesExpectedToWrite) ; - if (self.dbFileType == DBFileTypeIPA) { - NSString *status = [NSString stringWithFormat:@"Uploading IPA (%@%%)",[NSNumber numberWithInt:progress]]; - [self showStatus:status andShowProgressBar:YES withProgress:progress/100]; - }else if (self.dbFileType == DBFileTypeManifest){ - NSString *status = [NSString stringWithFormat:@"Uploading Manifest (%@%%)",[NSNumber numberWithInt:progress]]; - [self showStatus:status andShowProgressBar:YES withProgress:progress/100]; - }else if (self.dbFileType == DBFileTypeJson){ - NSString *status = [NSString stringWithFormat:@"Uploading AppInfo (%@%%)",[NSNumber numberWithInt:progress]]; - [self showStatus:status andShowProgressBar:YES withProgress:progress/100]; - } - } - }]; -} - --(void)dbUploadLargeFile:(NSString *)file to:(NSString *)path mode:(DBFILESWriteMode *)mode{ - offset = 0; - chunkSize = [UserData uploadChunkSize] * abBytesToMB; - - // Get file size from attributes instead of loading entire file into memory - NSError *fileSizeError = nil; - NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:file error:&fileSizeError]; - if (fileSizeError || !fileAttributes) { - DDLogError(@"Failed to get file attributes: %@", fileSizeError.localizedDescription); - self.errorBlock(fileSizeError, YES); - return; - } - ipaFileSize = [fileAttributes fileSize]; - - // Close any previously open file handle before opening a new one - [self closeFileHandle]; - fileHandle = [NSFileHandle fileHandleForReadingAtPath:file]; - if (!fileHandle) { - DDLogError(@"Failed to open file for reading: %@", file); - self.errorBlock(nil, YES); - return; - } - nextChunkToUpload = [fileHandle readDataOfLength:chunkSize]; - fileCommitInfo = [[DBFILESCommitInfo alloc] initWithPath:path mode:mode autorename:@NO clientModified:nil mute:@NO propertyGroups:nil strictConflict:@NO]; - - weakify(self); - [[[[DBClientsManager authorizedClient].filesRoutes uploadSessionStartData:nextChunkToUpload] setResponseBlock:^(DBFILESUploadSessionStartResult * _Nullable result, DBFILESUploadSessionStartError * _Nullable routeError, DBRequestError * _Nullable networkError) { - strongify(self); - if (!self) return; - if (result) { - self->sessionId = result.sessionId; - self->offset += self->nextChunkToUpload.length; - [self uploadNextChunk]; - } else { - NSBlockOperation *retryOperation = [NSBlockOperation blockOperationWithBlock:^{ [self dbUploadLargeFile:file to:path mode:mode]; }]; - [self handleChunkUploadWithRouteError:nil finishError:nil uploadError:nil networkError:networkError retryBlock:retryOperation]; - } - }] setProgressBlock:^(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite) { - [self updateProgressBytesWritten:bytesWritten totalBytesWritten:totalBytesWritten totalBytesExpectedToWrite:totalBytesExpectedToWrite]; - }]; -} - --(void)uploadNextChunk{ - nextChunkToUpload = [fileHandle readDataOfLength:chunkSize]; - DBFILESUploadSessionCursor *cursor = [[DBFILESUploadSessionCursor alloc] initWithSessionId:sessionId offset:[NSNumber numberWithUnsignedInteger:offset]]; - - weakify(self); - if (nextChunkToUpload.length < chunkSize) { - [[[[DBClientsManager authorizedClient].filesRoutes uploadSessionFinishData:cursor commit:fileCommitInfo inputData:nextChunkToUpload] setResponseBlock:^(DBFILESFileMetadata * _Nullable result, DBFILESUploadSessionFinishError * _Nullable routeError, DBRequestError * _Nullable networkError) { - strongify(self); - if (!self) return; - - // Close file handle after upload finishes - [self closeFileHandle]; - - if (result) { - //reset retry count - self->retryCount = 0; - - if (self.dbFileType == DBFileTypeIPA){ - NSString *status = [NSString stringWithFormat:@"Creating Sharable Link for IPA"]; - [self showStatus:status andShowProgressBar:YES withProgress:-1]; - - //create shared url for ipa - [self dbCreateSharedURLForFile:result.pathDisplay]; - } - } else { - NSBlockOperation *retryOperation = [NSBlockOperation blockOperationWithBlock:^{ [self uploadNextChunk]; }]; - [self handleChunkUploadWithRouteError:nil finishError:routeError uploadError:nil networkError:networkError retryBlock:retryOperation]; - } - }] setProgressBlock:^(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite) { - strongify(self); - if (!self) return; - [self updateProgressBytesWritten:bytesWritten totalBytesWritten:totalBytesWritten totalBytesExpectedToWrite:totalBytesExpectedToWrite]; - }]; - } else { - [[[[DBClientsManager authorizedClient].filesRoutes uploadSessionAppendV2Data:cursor inputData:nextChunkToUpload] setResponseBlock:^(DBNilObject * _Nullable result, DBFILESUploadSessionAppendError * _Nullable routeError, DBRequestError * _Nullable networkError) { - strongify(self); - if (!self) return; - if (result) { - self->offset += self->nextChunkToUpload.length; - [self uploadNextChunk]; - } else { - NSBlockOperation *retryOperation = [NSBlockOperation blockOperationWithBlock:^{ [self uploadNextChunk]; }]; - [self handleChunkUploadWithRouteError:routeError finishError:nil uploadError:nil networkError:networkError retryBlock:retryOperation]; - } - }] setProgressBlock:^(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite) { - strongify(self); - if (!self) return; - [self updateProgressBytesWritten:bytesWritten totalBytesWritten:totalBytesWritten totalBytesExpectedToWrite:totalBytesExpectedToWrite]; - }]; - } -} - -//MARK: - Upload File Helper -//Helper to Handle Chunk Upload Error --(void)handleChunkUploadWithRouteError:(DBFILESUploadSessionAppendError * _Nullable)routeError - finishError:(DBFILESUploadSessionFinishError * _Nullable)finishError - uploadError:(DBFILESUploadError * _Nullable)uploadError - networkError:(DBRequestError * _Nullable)networkError - retryBlock:(NSBlockOperation *)operation { - BOOL connectivityLost = (networkError != nil && [UploadManager isConnectivityError:networkError.nsError]); - - if (connectivityLost && ![[AppDelegate appDelegate] isInternetConnected]) { - self.lastfailedOperation = operation; - } - - else if (networkError && retryCount < abOnErrorMaxRetryCount && [[AppDelegate appDelegate] isInternetConnected] && - (connectivityLost || networkError.tag == DBRequestErrorClient || networkError.tag == DBRequestErrorInternalServer)) { - retryCount++; - DDLogInfo(@"Retrying (%ld) IPA Upload due to some error.", (long)retryCount); - [operation start]; - } - - //Handle other errors - else { - retryCount = 0; - - //Exit AppBox if running from CLI - if (self.isCLIActive) { - [AppDelegate terminateWithExitCode:abExitCodeForUploadFailed]; - } - - //Call Error Block - self.errorBlock(nil, YES); - - //Handle Route and Network Errors - if (routeError) { - [DBErrorHandler handleUploadSessionAppendError:routeError]; - } else if (finishError) { - [DBErrorHandler handleUploadSessionFinishError:finishError]; - } else if (uploadError) { - [DBErrorHandler handleUploadErrorWith:uploadError]; - } else { - [DBErrorHandler handleNetworkErrorWith:networkError abErrorMessage:nil]; - } - } -} - -// NSURLError codes that mean the network path is unavailable, so the upload -// should pause and resume on reconnect rather than be treated as a hard failure. -+ (BOOL)isConnectivityError:(NSError *)error { - if (error == nil || ![error.domain isEqualToString:NSURLErrorDomain]) { - return NO; - } - switch (error.code) { - case NSURLErrorNotConnectedToInternet: // -1009 - case NSURLErrorNetworkConnectionLost: // -1005 - case NSURLErrorCannotConnectToHost: // -1004 - case NSURLErrorCannotFindHost: // -1003 - case NSURLErrorDNSLookupFailed: // -1006 - case NSURLErrorTimedOut: // -1001 - case NSURLErrorDataNotAllowed: // -1020 - case NSURLErrorInternationalRoamingOff: // -1018 - return YES; - default: - return NO; - } -} - --(void)updateProgressBytesWritten:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite{ - //CGFloat progress = ((totalBytesWritten * 100) / totalBytesExpectedToWrite) ; - if (ipaFileSize == 0) return; - NSUInteger newBytesWritten = offset + totalBytesWritten; - CGFloat progress = (newBytesWritten * 100 / ipaFileSize); - NSString *status = [NSString stringWithFormat:@"Uploading IPA (%@%%)", [NSNumber numberWithInt:progress]]; - [self showStatus:status andShowProgressBar:YES withProgress:progress/100]; -} - -//MARK: - Dropbox Create/Get Shared Link --(void)dbCreateSharedURLForFile:(NSString *)file{ - weakify(self); - [[[DBClientsManager authorizedClient].sharingRoutes createSharedLinkWithSettings:file] - //Track response with result and error - setResponseBlock:^(DBSHARINGSharedLinkMetadata * _Nullable response, DBSHARINGCreateSharedLinkWithSettingsError * _Nullable routeError, DBRequestError * _Nullable error) { - strongify(self); - if (!self) return; - if (response){ - [self handleSharedURLResult:response.url]; - }else{ - [self handleSharedURLError:error forFile:file]; - } - }]; -} - --(void)dbGetSharedURLForFile:(NSString *)file{ - weakify(self); - [[[DBClientsManager authorizedClient].sharingRoutes listSharedLinks:file cursor:nil directOnly:nil] setResponseBlock:^(DBSHARINGListSharedLinksResult * _Nullable response, DBSHARINGListSharedLinksError * _Nullable routeError, DBRequestError * _Nullable error) { - strongify(self); - if (!self) return; - if (response && response.links && response.links.count > 0){ - [self handleSharedURLResult:[[response.links firstObject] url]]; - }else{ - [self handleSharedURLError:error forFile:file]; - } - }]; -} - --(void)handleSharedURLError:(DBRequestError *)error forFile:(NSString *)file{ - DDLogInfo(@"Create Share Link Error - %@",error); - - //Handle clint side SDK error - if ([error isClientError]){ - if ([[AppDelegate appDelegate] isInternetConnected]){ - [self dbCreateSharedURLForFile:file]; - }else{ - self.lastfailedOperation = [NSBlockOperation blockOperationWithBlock:^{ - [self dbCreateSharedURLForFile:file]; - }]; - } - } - - //Retry upload if there is any conflict in file upload - else if([error isHttpError] && error.statusCode.integerValue == 409 && retryCount < abOnErrorMaxRetryCount){ - [self dbGetSharedURLForFile:file]; - } - - //Handle DB Client and Server error by Retrying Upto 3 times - else if (retryCount < abOnErrorMaxRetryCount) { - retryCount++; - [self dbCreateSharedURLForFile:file]; - DDLogInfo(@"Retrying (%ld) Shared URL due to some error.", (long)retryCount); - } - - //Handle other errors - else { - if (self.isCLIActive) { - [AppDelegate terminateWithExitCode:abExitCodeForUploadFailed]; - } - retryCount = 0; - [DBErrorHandler handleNetworkErrorWith:error abErrorMessage:@"Unable to create a share URL for the file."]; - self.errorBlock(nil, YES); - } -} - -// Safely removes the "?dl=1" suffix from Dropbox shared URLs --(NSString *)removeDLSuffixFromURL:(NSString *)url{ - if (!url || url.length == 0) { - DDLogWarn(@"Received nil or empty URL for DL suffix removal"); - return url ?: @""; - } - NSString *suffix = @"?dl=1"; - if ([url hasSuffix:suffix]) { - return [url substringToIndex:url.length - suffix.length]; - } - DDLogDebug(@"URL does not have expected ?dl=1 suffix: %@", url); - return url; -} - --(void)handleSharedURLResult:(NSString *)url{ - weakify(self); - - //Create manifest file with share IPA url and upload manifest file - if (self.dbFileType == DBFileTypeIPA) { - NSString *shareableLink = [self removeDLSuffixFromURL:url]; - self.ipaUploadInfo.ipaFileDBShareableURL = [NSURL URLWithString:shareableLink]; - [self.ipaUploadInfo createManifestWithIPAURL:self.ipaUploadInfo.ipaFileDBShareableURL completion:^(NSURL *manifestURL) { - strongify(self); - if (!self) return; - if (manifestURL == nil){ - //show error if manifest file url is nil - if (self.isCLIActive) { - [AppDelegate terminateWithExitCode:abExitCodeUnableToCreateManiFestFile]; - } - [Common showAlertWithTitle:@"Error" andMessage:@"Unable to create manifest file!!"]; - self.errorBlock(nil, YES); - } else { - //change file type and upload manifest - self.dbFileType = DBFileTypeManifest; - [self dbUploadFile:manifestURL.resourceSpecifier to:self.ipaUploadInfo.dbManifestFullPath.absoluteString mode:[[DBFILESWriteMode alloc] initWithOverwrite]]; - } - }]; - - } - //if same link enable load appinfo.json otherwise Create short shareable url of manifest - else if (self.dbFileType == DBFileTypeManifest){ - NSString *shareableLink = [self removeDLSuffixFromURL:url]; - DDLogDebug(@"Manifest Sharable link - %@",shareableLink); - self.ipaUploadInfo.manifestFileSharableURL = [NSURL URLWithString:shareableLink]; - if(self.ipaUploadInfo.isKeepSameLinkEnabled){ - //Download previously uploaded appinfo - DBFILESListRevisionsMode *revisionMode = [[DBFILESListRevisionsMode alloc] initWithPath]; - [[[DBClientsManager authorizedClient].filesRoutes listRevisions:self.ipaUploadInfo.dbAppInfoJSONFullPath.absoluteString mode:revisionMode limit:@1] setResponseBlock:^(DBFILESListRevisionsResult * _Nullable response, DBFILESListRevisionsError * _Nullable routeError, DBRequestError * _Nullable error) { - strongify(self); - if (!self) return; - //check there is any rev available - if (response && response.isDeleted.boolValue == NO && response.entries.count > 0){ - DDLogDebug(@"Loaded Meta Data %@",response); - self.ipaUploadInfo.uniqueLinkJsonMetaData = [response.entries firstObject]; - } - - //handle meta data - [self handleAfterUniqueJsonMetaDataLoaded]; - }]; - }else{ - [self updateUniquLinkDictinory:nil]; - } - } - - //create app info file short sharable url - else if (self.dbFileType == DBFileTypeJson){ - NSString *shareableLink = [self removeDLSuffixFromURL:url]; - DDLogDebug(@"AppInfo Sharable link - %@",shareableLink); - self.ipaUploadInfo.uniquelinkShareableURL = [NSURL URLWithString:shareableLink]; - NSMutableDictionary *dictUniqueLink = [[self getUniqueJsonDict] mutableCopy]; - [dictUniqueLink setObject:shareableLink forKey:UNIQUE_LINK_SHARED]; - [self writeUniqueJsonWithDict:dictUniqueLink]; - DDLogDebug(@"\n=======\nAppInfo\n=======\n %@", dictUniqueLink); - if(self.ipaUploadInfo.appShortShareableURL){ - self.completionBlock(); - }else{ - [self createUniqueShortSharableUrl]; - } - } -} - -//MARK: - Create ShortSharable URL --(void)createUniqueShortSharableUrl{ - //Create Short URL - weakify(self); - [[TinyURL shared] shortenURLWithIPAUploadInfo:self.ipaUploadInfo.abpIPAUploadInfo completion:^(NSURL *shortURL, NSError *error) { - strongify(self); - dispatch_async(dispatch_get_main_queue(), ^{ - if (error) { - self.ipaUploadInfo.appLongShareableURL = shortURL; - DDLogInfo(@"Error in creating short URL - %@", error.localizedDescription); - } - [self createAndUploadJsonWithURL:shortURL]; - }); - }]; -} - --(void)createAndUploadJsonWithURL:(NSURL *)shareURL{ - self.ipaUploadInfo.appShortShareableURL = shareURL; - NSMutableDictionary *dictUniqueFile = [[self getUniqueJsonDict] mutableCopy]; - [dictUniqueFile setObject:shareURL.absoluteString forKey:UNIQUE_LINK_SHORT]; - [self writeUniqueJsonWithDict:dictUniqueFile]; - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ - //upload file unique short url - [self uploadUniqueLinkJsonFile]; - }); -} - -//MARK: - Delete Files --(void)deleteBuildFromDropboxAndDashboard { - [self createNewWorkingDirectory]; - [self showStatus:@"Deleting..." andShowProgressBar:YES withProgress:-1]; - if (self.ipaUploadInfo.isKeepSameLinkEnabled) { - [self deleteBuildDetailsFromAppInfoJSON]; - } else { - [self deleteBuildFolder]; - } -} - --(void)deleteBuildFromDashboard { - [self showStatus:@"Deleting..." andShowProgressBar:YES withProgress:-1]; - self.completionBlock(); -} - --(void)deleteBuildFolder { - weakify(self); - [[[[DBClientsManager authorizedClient] filesRoutes] delete_V2:self.ipaUploadInfo.dbDirectory.absoluteString] setResponseBlock:^(DBFILESDeleteResult * _Nullable result, DBFILESDeleteError * _Nullable routeError, DBRequestError * _Nullable networkError) { - strongify(self); - if (!self) return; - [ABHudViewController hideAllHudFromView:self.currentViewController.view after:0]; - if (result) { - self.completionBlock(); - } else if (routeError) { - [DBErrorHandler handleDeleteErrorWith:routeError]; - } else if (networkError) { - [DBErrorHandler handleNetworkErrorWith:networkError abErrorMessage:@"Unable to delete build folder."]; - } - }]; -} - --(void)deleteBuildRootFolder{ - weakify(self); - [[[[DBClientsManager authorizedClient] filesRoutes] delete_V2:self.uploadRecord.dbFolderName] setResponseBlock:^(DBFILESDeleteResult * _Nullable result, DBFILESDeleteError * _Nullable routeError, DBRequestError * _Nullable networkError) { - strongify(self); - if (!self) return; - [ABHudViewController hideAllHudFromView:self.currentViewController.view after:0]; - if (result) { - self.completionBlock(); - } else if (routeError) { - [DBErrorHandler handleDeleteErrorWith:routeError]; - } else if (networkError) { - [DBErrorHandler handleNetworkErrorWith:networkError abErrorMessage:@"Unable to delete file."]; - } - }]; -} - --(void)deleteBuildDetailsFromAppInfoJSON{ - [self loadAppInfoMetaData]; -} - -//MARK: - Show Status --(void)showStatus:(NSString *)status andShowProgressBar:(BOOL)showProgressBar withProgress:(double)progress{ - //log status in session log - DDLogDebug(@"%@",status); - - //start/stop/progress based on showProgressBar and progress - if (progress == -1){ - if (showProgressBar){ - [ABHudViewController showStatus:status onView:self.currentViewController.view]; - }else{ - [ABHudViewController showOnlyStatus:status onView:self.currentViewController.view]; - } - }else{ - if (showProgressBar){ - [ABHudViewController showStatus:status witProgress:progress onView:self.currentViewController.view]; - }else{ - [ABHudViewController showOnlyStatus:status onView:self.currentViewController.view]; - } - } -} - -@end diff --git a/AppBox/Common/UploadManager/UploadManager.swift b/AppBox/Common/UploadManager/UploadManager.swift new file mode 100644 index 00000000..fe7dba29 --- /dev/null +++ b/AppBox/Common/UploadManager/UploadManager.swift @@ -0,0 +1,308 @@ +// +// UploadManager.swift +// AppBox + +import AppKit +import os +import AppBoxCore + +public final class UploadManager: NSObject { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "UploadManager") + + public var ipaUploadInfo: IPAUploadInfo? + public weak var currentViewController: NSViewController? + public weak var uploadRecord: ABUploadRecord? + public var lastfailedOperation: BlockOperation? + + public var errorBlock: ((Error?, Bool) -> Void)? + public var completionBlock: (() -> Void)? + + private var workingDirectory: String? + + // MARK: - Setup + + public static func setupDBClientsManager() { + DropboxSession.setup(appKey: AppServices.appKeyProvider.cachedKey()) + } + + deinit { + cleanupWorkingDirectory() + } + + private func cleanupWorkingDirectory() { + guard let workingDirectory, FileManager.default.fileExists(atPath: workingDirectory) else { + return + } + + do { + try FileManager.default.removeItem(atPath: workingDirectory) + } catch { + Self.log.warning("Failed to clean temp directory: \(error.localizedDescription)") + } + } + + private func createNewWorkingDirectory() { + do { + workingDirectory = try ABStorePaths.makeTemporaryWorkingDirectory(prefix: "delete-").path + } catch { + Self.log.info("Unable to create temporary working directory: \(error.localizedDescription)") + } + } + + // MARK: - Upload + + public func uploadIPAFile(_ ipaFileURL: URL) { + let ipaPath = (ipaFileURL as NSURL).resourceSpecifier?.removingPercentEncoding ?? ipaFileURL.path + let localURL = URL(fileURLWithPath: ipaPath) + guard let info = ipaUploadInfo else { return } + info.ipaFullPath = localURL + + if !AppDelegate.appDelegate.isInternetConnected { + showStatus("Waiting for the Internet Connection.", showProgressBar: true, withProgress: -1) + } + uploadIPAFileWithoutUnzip(localURL) + } + + public func uploadIPAFileWithoutUnzip(_ ipaURL: URL) { + if AppDelegate.appDelegate.isInternetConnected { + runUpload(withIPAURL: ipaURL) + } else { + lastfailedOperation = BlockOperation { [weak self] in + self?.runUpload(withIPAURL: ipaURL) + } + } + } + + private func runUpload(withIPAURL ipaURL: URL) { + guard let info = ipaUploadInfo else { return } + + let settings = UploadSettings( + chunkSizeMB: UserData.uploadChunkSize(), + includeIPALink: UserData.downloadIPAEnable(), + includeDetails: UserData.moreDetailsEnable(), + keepPreviousVersions: UserData.showPreviousVersions()) + let request = BuildUploadRequest( + ipaURL: ipaURL, + settings: settings, + keepSameLink: info.isKeepSameLinkEnabled, + bundleDirectory: info.bundleDirectory?.absoluteString, + uuid: info.uuid ?? Common.generateUUID()) + + let reachability = ClosureReachability { AppDelegate.appDelegate.isInternetConnected } + let provider = DropboxSession.makeProvider(chunkSizeBytes: settings.chunkSizeBytes, + reachability: reachability) + let reporter = ClosureProgressReporter { [weak self] message, fraction in + DispatchQueue.main.async { self?.reportUploadProgress(message: message, fraction: fraction) } + } + let shortLink = ClosureShortLinkService { [weak self] request in + await self?.shortenLink(for: request) ?? nil + } + + let service = BuildUploadService(provider: provider, progress: reporter, + shortLinkService: shortLink, reachability: reachability) + Task { [weak self] in + do { + let outcome = try await service.run(request) + DispatchQueue.main.async { self?.handleUploadSuccess(outcome) } + } catch { + DispatchQueue.main.async { self?.handleUploadFailure(error) } + } + } + } + + private func reportUploadProgress(message: String?, fraction: Double) { + var status = (message?.isEmpty == false) ? message! : "Finalising…" + if fraction >= 0 { + status += " (\(Int(fraction * 100))%)" + } + showStatus(status, showProgressBar: true, withProgress: fraction < 0 ? -1 : fraction) + } + + /// Stash the long (unique) link, then ask the AppBox backend to shorten it — nil falls back to the long URL (the coordinator's existing behavior). + private func shortenLink(for request: ShortLinkRequest) async -> URL? { + await MainActor.run { [weak self] in + self?.ipaUploadInfo?.uniquelinkShareableURL = request.longURL + } + return await AppServices.serviceClient.shortLink(for: request) + } + + /// Copies the pipeline's metadata, paths and links back onto the model the sheets and dashboard read. + private func handleUploadSuccess(_ outcome: BuildUploadOutcome) { + if let info = ipaUploadInfo { + info.uuid = outcome.uuid + info.name = outcome.metadata.name + info.version = outcome.metadata.version + info.build = outcome.metadata.build + info.identifer = outcome.metadata.identifier + info.miniOSVersion = outcome.metadata.minimumOSVersion + info.supportedDevice = outcome.metadata.supportedDevice + info.ipaFileSize = NSNumber(value: outcome.ipaFileSizeMB) + if let provisioning = outcome.provisioning { + info.buildType = provisioning.buildType + info.mobileProvision = MobileProvision(provisioning) + } + + info.bundleDirectory = URL(string: outcome.paths.bundleDirectory) + info.dbDirectory = URL(string: outcome.paths.buildDirectory) + info.dbIPAFullPath = URL(string: "/" + outcome.paths.ipa.components.joined(separator: "/")) + info.dbManifestFullPath = URL(string: "/" + outcome.paths.manifest.components.joined(separator: "/")) + info.dbAppInfoJSONFullPath = URL(string: "/" + outcome.paths.appInfo.components.joined(separator: "/")) + + info.ipaFileDBShareableURL = outcome.result.ipaLink + info.manifestFileSharableURL = outcome.result.manifestLink + info.uniquelinkShareableURL = outcome.result.appInfoSharedLink + info.appShortShareableURL = outcome.result.shortLink + info.appLongShareableURL = outcome.result.installLink + } + completionBlock?() + } + + private func handleUploadFailure(_ error: Error) { + if let uploadError = error as? BuildUploadError { + switch uploadError { + case .ipaNotFound, .invalidInfoPlist, .extractionFailed: + _ = Common.showAlert(withTitle: "AppBox - Error", andMessage: uploadError.message) + errorBlock?(nil, true) + return + case .manifestCreationFailed(let underlying), .uploadFailed(let underlying): + DBErrorHandler.handleStorageError(underlying, fallbackMessage: nil) + errorBlock?(underlying, true) + return + } + } + DBErrorHandler.handleStorageError(error, fallbackMessage: nil) + errorBlock?(error, true) + } + + // MARK: - Delete + + public func deleteBuildFromDropboxAndDashboard() { + let keepSameLink = ipaUploadInfo?.isKeepSameLinkEnabled ?? false + let appInfoPath = ipaUploadInfo?.dbAppInfoJSONFullPath?.absoluteString ?? "" + let appFolder = uploadRecord?.dbFolderName ?? "" + let buildFolder = ipaUploadInfo?.dbDirectory?.absoluteString ?? "" + let requiredPaths = keepSameLink ? [appInfoPath, appFolder] : [buildFolder] + guard requiredPaths.allSatisfy({ !$0.isEmpty }) else { + _ = Common.showAlert( + withTitle: "Can't delete from Dropbox", + andMessage: "This build is missing its Dropbox location, so AppBox doesn't know what to remove.\n\nUse \"Delete only from Dashboard\" to remove the record.") + errorBlock?(nil, true) + return + } + + createNewWorkingDirectory() + showStatus("Deleting...", showProgressBar: true, withProgress: -1) + + let plan = DeletePlan( + keepSameLink: keepSameLink, + appInfoRemotePath: RemotePath(path: appInfoPath), + manifestLinkToRemove: uploadRecord?.dbSharedManifestURL ?? "", + appFolderPath: RemotePath(path: appFolder), + buildFolderPath: RemotePath(path: buildFolder), + workingDirectory: URL(fileURLWithPath: workingDirectory ?? "")) + + let chunkSizeBytes = UserData.uploadChunkSize() * (1024 * 1024) + let reachability = ClosureReachability { AppDelegate.appDelegate.isInternetConnected } + let provider = DropboxSession.makeProvider(chunkSizeBytes: chunkSizeBytes, reachability: reachability) + let reporter = ClosureProgressReporter { [weak self] message, _ in + DispatchQueue.main.async { + self?.showStatus(message ?? "Deleting...", showProgressBar: true, withProgress: -1) + } + } + + let coordinator = DeleteCoordinator(provider: provider, progress: reporter, reachability: reachability) + Task { [weak self] in + do { + _ = try await coordinator.run(plan) + DispatchQueue.main.async { self?.handleDeleteSuccess() } + } catch { + DispatchQueue.main.async { self?.handleDeleteFailure(error) } + } + } + } + + private func handleDeleteSuccess() { + if let view = currentViewController?.view { + ABHudViewController.hideAllHud(fromView: view, after: 0) + } + + completionBlock?() + } + + private func handleDeleteFailure(_ error: Error) { + if let view = currentViewController?.view { + ABHudViewController.hideAllHud(fromView: view, after: 0) + } + + DBErrorHandler.handleStorageError(error, fallbackMessage: "Unable to delete build.") + } + + public func deleteBuildFromDashboard() { + showStatus("Deleting...", showProgressBar: true, withProgress: -1) + completionBlock?() + } + + // MARK: - Status / HUD + + private func showStatus(_ status: String, showProgressBar: Bool, withProgress progress: Double) { + Self.log.debug("\(status)") + guard let view = currentViewController?.view else { + return + } + + if progress == -1 { + if showProgressBar { + ABHudViewController.showStatus(status, onView: view) + } else { + ABHudViewController.showOnlyStatus(status, onView: view) + } + } else { + if showProgressBar { + ABHudViewController.showStatus(status, witProgress: progress, onView: view) + } else { + ABHudViewController.showOnlyStatus(status, onView: view) + } + } + } +} + +extension UploadManager: @unchecked Sendable {} + +// MARK: - Core protocol adapters (closure-backed) + +private final class ClosureReachability: Reachability { + private let block: () -> Bool + + init(_ block: @escaping () -> Bool) { + self.block = block + } + + var isConnected: Bool { + block() + } +} + +private final class ClosureProgressReporter: ProgressReporter { + private let block: (String?, Double) -> Void + + init(_ block: @escaping (String?, Double) -> Void) { + self.block = block + } + + func report(stage: UploadStage, message: String?, fractionCompleted: Double?) { + block(message, fractionCompleted ?? -1) + } +} + +private final class ClosureShortLinkService: ShortLinkService { + private let block: (ShortLinkRequest) async -> URL? + + init(_ block: @escaping (ShortLinkRequest) async -> URL?) { + self.block = block + } + + func shortLink(for request: ShortLinkRequest) async -> URL? { + await block(request) + } +} diff --git a/AppBox/Common/UserManager/DBAccountManager.h b/AppBox/Common/UserManager/DBAccountManager.h deleted file mode 100644 index 78218a96..00000000 --- a/AppBox/Common/UserManager/DBAccountManager.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// DBAccountManager.h -// AppBox -// -// Created by Vineet Choudhary on 25/09/21. -// Copyright © 2021 Developer Insider. All rights reserved. -// - -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface DBAccountManager : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Common/UserManager/DBAccountManager.m b/AppBox/Common/UserManager/DBAccountManager.m deleted file mode 100644 index 2501049c..00000000 --- a/AppBox/Common/UserManager/DBAccountManager.m +++ /dev/null @@ -1,27 +0,0 @@ -// -// DBAccountManager.m -// AppBox -// -// Created by Vineet Choudhary on 25/09/21. -// Copyright © 2021 Developer Insider. All rights reserved. -// - -#import "DBAccountManager.h" - -static NSString *const abDBAccountService = @"AppBox Linked Dropbox Account"; - -@implementation DBAccountManager - -+ (NSArray *)getAllDBAccounts { - NSMutableArray *filteredDBAccounts = [[NSMutableArray alloc] init]; - NSArray *dbAccounts = [KeychainHandler accountsForService:abDBAccountService]; - for (NSDictionary *dbAccount in dbAccounts) { - if ([dbAccount.allKeys containsObject:kSAMKeychainAccountKey]) { - [filteredDBAccounts addObject:dbAccount]; - } - } - - return filteredDBAccounts; -} - -@end diff --git a/AppBox/Common/UserManager/UserData.h b/AppBox/Common/UserManager/UserData.h deleted file mode 100644 index 499287f7..00000000 --- a/AppBox/Common/UserManager/UserData.h +++ /dev/null @@ -1,71 +0,0 @@ -// -// UserData.h -// AppBox -// -// Created by Vineet Choudhary on 12/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -@interface UserData : NSObject - -//MARK: - Logged In User -+(BOOL)isLoggedIn; -+(NSString *)loggedInUserEmail; -+(void)setLoggedInUserEmail:(NSString *)userEmail; -+(NSString *)loggedInUserDisplayName; -+(void)setLoggedInUserDisplayName:(NSString *)loggedInUserDisplayName; - -// Dropbox Used and Available Space -+(NSNumber *)dropboxUsedSpace; -+(NSNumber *)dropboxAvailableSpace; -+(void)setDropboxUsedSpace:(NSNumber *)usedSpace; -+(void)setDropboxAvailableSpace:(NSNumber *)availableSpace; - -// MARK: - Preferences... -// Default emails and message -+(NSString *)userEmail; -+(void)setUserEmail:(NSString *)userEmail; -+(NSString *)userMessage; -+(void)setUserMessage:(NSString *)userMessage; - -// Slack, Hangout Chat and Microsoft Team Webhooks -+(NSString *)userSlackChannel; -+(void)setUserSlackChannel:(NSString *)slackChannel; -+(NSString *)userSlackMessage; -+(void)setUserSlackMessage:(NSString *)slackMessage; -+(NSString *)userHangoutChatWebHook; -+(void)setUserHangoutChatWebHook:(NSString *)slackChannel; -+(NSString *)userMicrosoftTeamWebHook; -+(void)setUserMicrosoftTeamWebHook:(NSString *)slackChannel; - -//AppBox Installation page settings -+(BOOL)downloadIPAEnable; -+(void)setDownloadIPAEnable:(BOOL)downloadIPA; -+(BOOL)moreDetailsEnable; -+(void)setMoreDetailsEnable:(BOOL)moreDetails; -+(BOOL)showPreviousVersions; -+(void)setShowPreviousVersions:(BOOL)previousVersion; - -//AppBox user check -+(BOOL)isFirstTime; -+(void)setIsFirstTime:(BOOL)isFirstTime; -+(BOOL)isFirstTimeAfterUpdate; -+(void)setIsFirstTimeAfterUpdate:(BOOL)isFirstTime; - -//AppBox Dropbox Upload Setting -+(NSInteger)uploadChunkSize; -+(void)setUploadChunkSize:(NSInteger)chunkSize; - -//General Settings -+(BOOL)debugLog; -+(void)setEnableDebugLog:(BOOL)debugLog; -+(BOOL)updateAlertEnable; -+(void)setUpdateAlertEnable:(BOOL)updateAlert; - -//CLI Settings -+(NSString *)cliVersion; -+(void)setCLIVersion:(NSString *)cliVersion; - -@end diff --git a/AppBox/Common/UserManager/UserData.m b/AppBox/Common/UserManager/UserData.m deleted file mode 100644 index b9dd706c..00000000 --- a/AppBox/Common/UserManager/UserData.m +++ /dev/null @@ -1,223 +0,0 @@ -// -// UserData.m -// AppBox -// -// Created by Vineet Choudhary on 12/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "UserData.h" - - -@implementation UserData - -//MARK: - Logged In User -+(BOOL)isLoggedIn { - return [DBClientsManager authorizedClients] && ([DBClientsManager authorizedClients].count > 0); -} - -#define LoggedInUserEmail @"LoggedInUserEmail" -+(NSString *)loggedInUserEmail { - NSString *userEmail = [[NSUserDefaults standardUserDefaults] stringForKey:LoggedInUserEmail]; - return userEmail == nil ? abEmptyString : userEmail; -} - -+(void)setLoggedInUserEmail:(NSString *)loggedInUserEmail { - [[NSUserDefaults standardUserDefaults] setValue:loggedInUserEmail forKey:LoggedInUserEmail]; -} - -#define LoggedInUserDisplayName @"LoggedInUserDisplayName" -+(NSString *)loggedInUserDisplayName { - NSString *displayName = [[NSUserDefaults standardUserDefaults] stringForKey:LoggedInUserDisplayName]; - return displayName == nil ? abEmptyString : displayName; -} - -+(void)setLoggedInUserDisplayName:(NSString *)loggedInUserDisplayName { - [[NSUserDefaults standardUserDefaults] setValue:loggedInUserDisplayName forKey:LoggedInUserDisplayName]; -} - -//MARK: - Dropbox - - -#define DropboxUsedSpace @"DropboxUsedSpace" - -+(NSNumber *)dropboxUsedSpace{ - return @([[NSUserDefaults standardUserDefaults] doubleForKey:DropboxUsedSpace]); -} - -+(void)setDropboxUsedSpace:(NSNumber *)usedSpace{ - [[NSUserDefaults standardUserDefaults] setInteger:usedSpace.integerValue forKey:DropboxUsedSpace]; -} - -//MARK: - Preferences... -//MARK: - Email Releated - - -#define UserEmail @"UserEmail" - -+(NSString *)userEmail{ - NSString *userEmail = [[NSUserDefaults standardUserDefaults] stringForKey:UserEmail]; - return userEmail == nil ? abEmptyString : userEmail; -} - -+(void)setUserEmail:(NSString *)userEmail{ - [[NSUserDefaults standardUserDefaults] setValue:userEmail forKey:UserEmail]; -} - -#define UserMessage @"UserMessage" - -+(NSString *)userMessage{ - NSString *userMessage = [[NSUserDefaults standardUserDefaults] stringForKey:UserMessage]; - return userMessage == nil ? abEmptyString : userMessage; -} - -+(void)setUserMessage:(NSString *)userMessage{ - [[NSUserDefaults standardUserDefaults] setValue:userMessage forKey:UserMessage]; -} - -#define UserSlackChannel @"UserSlackChannel" - -+(NSString *)userSlackChannel { - NSString *userSlackChannel = [[NSUserDefaults standardUserDefaults] stringForKey:UserSlackChannel]; - return userSlackChannel == nil ? abEmptyString : userSlackChannel; -} - -+(void)setUserSlackChannel:(NSString *)slackChannel { - [[NSUserDefaults standardUserDefaults] setValue:slackChannel forKey:UserSlackChannel]; -} - -#define UserHangoutChatWebHook @"UserHangoutChatWebHook" - -+(NSString *)userHangoutChatWebHook { - NSString *userHangoutChatWebHook = [[NSUserDefaults standardUserDefaults] stringForKey:UserHangoutChatWebHook]; - return userHangoutChatWebHook == nil ? abEmptyString : userHangoutChatWebHook; -} - -+(void)setUserHangoutChatWebHook:(NSString *)slackChannel { - [[NSUserDefaults standardUserDefaults] setValue:slackChannel forKey:UserHangoutChatWebHook]; -} - -#define UserMicrosoftTeamWebHook @"UserMicrosoftTeamWebHook" - -+(NSString *)userMicrosoftTeamWebHook { - NSString *userMicrosoftTeamWebHook = [[NSUserDefaults standardUserDefaults] stringForKey:UserMicrosoftTeamWebHook]; - return userMicrosoftTeamWebHook == nil ? abEmptyString : userMicrosoftTeamWebHook; -} - -+(void)setUserMicrosoftTeamWebHook:(NSString *)slackChannel { - [[NSUserDefaults standardUserDefaults] setValue:slackChannel forKey:UserMicrosoftTeamWebHook]; -} - -#define UserSlackMessage @"UserSlackMessage" - -+(NSString *)userSlackMessage { - NSString *userSlackMessage = [[NSUserDefaults standardUserDefaults] stringForKey:UserSlackMessage]; - return userSlackMessage == nil ? abEmptyString : userSlackMessage; -} - -+(void)setUserSlackMessage:(NSString *)slackMessage { - [[NSUserDefaults standardUserDefaults] setValue:slackMessage forKey:UserSlackMessage]; -} - -#define DropboxAvailableSpace @"DropboxAvailableSpace" - -+(NSNumber *)dropboxAvailableSpace{ - return @([[NSUserDefaults standardUserDefaults] doubleForKey:DropboxAvailableSpace]); -} - -+(void)setDropboxAvailableSpace:(NSNumber *)availableSpace{ - [[NSUserDefaults standardUserDefaults] setInteger:availableSpace.integerValue forKey:DropboxAvailableSpace]; -} - -//MARK: - AppBox Installation Page Settings - -#define DonwloadIPAEnable @"DonwloadIPAEnable" -+(BOOL)downloadIPAEnable{ - return [[NSUserDefaults standardUserDefaults] boolForKey:DonwloadIPAEnable]; -} - -+(void)setDownloadIPAEnable:(BOOL)downloadIPA{ - [[NSUserDefaults standardUserDefaults] setBool:downloadIPA forKey:DonwloadIPAEnable]; -} - -#define MoreDetailsEnable @"MoreDetailsEnable" -+(BOOL)moreDetailsEnable{ - return [[NSUserDefaults standardUserDefaults] boolForKey:MoreDetailsEnable]; -} - -+(void)setMoreDetailsEnable:(BOOL)moreDetails{ - [[NSUserDefaults standardUserDefaults] setBool:moreDetails forKey:MoreDetailsEnable]; -} - -#define ShowPreviousVersions @"ShowPreviousVersions" -+(BOOL)showPreviousVersions{ - return [[NSUserDefaults standardUserDefaults] boolForKey:ShowPreviousVersions]; -} - -+(void)setShowPreviousVersions:(BOOL)previousVersion{ - [[NSUserDefaults standardUserDefaults] setBool:previousVersion forKey:ShowPreviousVersions]; -} - - -//MARK: - App Settings - -#define AppSettingIsFirstTime @"AppSettingIsFirstTime" -+(BOOL)isFirstTime{ - return ![[NSUserDefaults standardUserDefaults] boolForKey:AppSettingIsFirstTime]; -} - -+(void)setIsFirstTime:(BOOL)isFirstTime{ - [[NSUserDefaults standardUserDefaults] setBool:isFirstTime forKey:AppSettingIsFirstTime]; -} - -+(NSString *)appSettingIsFirstTimeAfterUpdate{ - NSString *versionString = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - return [NSString stringWithFormat:@"AppSettingIsFirstTimeAfterUpdate%@", versionString]; -} - -+(BOOL)isFirstTimeAfterUpdate{ - return ![[NSUserDefaults standardUserDefaults] boolForKey:[self appSettingIsFirstTimeAfterUpdate]]; -} - -+(void)setIsFirstTimeAfterUpdate:(BOOL)isFirstTime{ - [[NSUserDefaults standardUserDefaults] setBool:isFirstTime forKey:[self appSettingIsFirstTimeAfterUpdate]]; -} - -//MARK: - Chunk Size - -#define UploadChunkSize @"UploadChunkSize" -+(NSInteger)uploadChunkSize{ - NSInteger chunkSize = [[NSUserDefaults standardUserDefaults] integerForKey:UploadChunkSize]; - return chunkSize > 0 ? chunkSize : 100; -} - -+(void)setUploadChunkSize:(NSInteger)chunkSize{ - [[NSUserDefaults standardUserDefaults] setInteger:chunkSize forKey:UploadChunkSize]; -} - -//MARK: - CI Settings - -#define DebugLogEnable @"DebugLogEnable" -+(BOOL)debugLog{ - return [[NSUserDefaults standardUserDefaults] boolForKey:DebugLogEnable]; -} - -+(void)setEnableDebugLog:(BOOL)debugLog{ - [[NSUserDefaults standardUserDefaults] setBool:debugLog forKey:DebugLogEnable]; -} - -#define UpdateAlertEnable @"UpdateAlertEnable" -+(BOOL)updateAlertEnable{ - return [[NSUserDefaults standardUserDefaults] boolForKey:UpdateAlertEnable]; -} - -+(void)setUpdateAlertEnable:(BOOL)updateAlert{ - [[NSUserDefaults standardUserDefaults] setBool:updateAlert forKey:UpdateAlertEnable]; -} - -//MARK: - CLI Settings - -#define CLIVersion @"CLIVersion" -+(NSString *)cliVersion{ - NSString *cliVersion = [[NSUserDefaults standardUserDefaults] stringForKey:CLIVersion]; - return cliVersion == nil ? abEmptyString : cliVersion; -} - -+(void)setCLIVersion:(NSString *)cliVersion{ - [[NSUserDefaults standardUserDefaults] setValue:cliVersion forKey:CLIVersion]; -} - -@end diff --git a/AppBox/Common/UserManager/UserData.swift b/AppBox/Common/UserManager/UserData.swift new file mode 100644 index 00000000..8ab443d4 --- /dev/null +++ b/AppBox/Common/UserManager/UserData.swift @@ -0,0 +1,182 @@ +// +// UserData.swift +// AppBox + +import Foundation +import AppBoxCore + +public final class UserData: NSObject { + + private static var defaults: UserDefaults { .standard } + + // MARK: - Logged In User + + public class func isLoggedIn() -> Bool { + DropboxSession.isAuthorized + } + + public class func loggedInUserEmail() -> String { + defaults.string(forKey: "LoggedInUserEmail") ?? "" + } + + public class func setLoggedInUserEmail(_ value: String?) { + defaults.set(value, forKey: "LoggedInUserEmail") + } + + public class func loggedInUserDisplayName() -> String { + defaults.string(forKey: "LoggedInUserDisplayName") ?? "" + } + + public class func setLoggedInUserDisplayName(_ value: String?) { + defaults.set(value, forKey: "LoggedInUserDisplayName") + } + + // MARK: - Dropbox space + + public class func dropboxUsedSpace() -> NSNumber { + NSNumber(value: defaults.double(forKey: "DropboxUsedSpace")) + } + + public class func setDropboxUsedSpace(_ usedSpace: NSNumber) { + defaults.set(usedSpace.intValue, forKey: "DropboxUsedSpace") + } + + public class func dropboxAvailableSpace() -> NSNumber { + NSNumber(value: defaults.double(forKey: "DropboxAvailableSpace")) + } + + public class func setDropboxAvailableSpace(_ availableSpace: NSNumber) { + defaults.set(availableSpace.intValue, forKey: "DropboxAvailableSpace") + } + + // MARK: - Email / message + + public class func userEmail() -> String { + defaults.string(forKey: "UserEmail") ?? "" + } + + public class func setUserEmail(_ value: String?) { + defaults.set(value, forKey: "UserEmail") + } + + public class func userMessage() -> String { + defaults.string(forKey: "UserMessage") ?? "" + } + + public class func setUserMessage(_ value: String?) { + defaults.set(value, forKey: "UserMessage") + } + + // MARK: - Webhooks (secrets -> Keychain via Core WebhookSecrets; S3) + + public class func userSlackChannel() -> String { + WebhookSecrets.shared.slackWebhook ?? "" + } + + public class func setUserSlackChannel(_ slackChannel: String?) { + WebhookSecrets.shared.slackWebhook = slackChannel + } + + public class func userMicrosoftTeamWebHook() -> String { + WebhookSecrets.shared.teamsWebhook ?? "" + } + + public class func setUserMicrosoftTeamWebHook(_ value: String?) { + WebhookSecrets.shared.teamsWebhook = value + } + + // MARK: - Install-page settings + + public class func downloadIPAEnable() -> Bool { + defaults.bool(forKey: "DonwloadIPAEnable") + } + + public class func setDownloadIPAEnable(_ downloadIPA: Bool) { + defaults.set(downloadIPA, forKey: "DonwloadIPAEnable") + } + + public class func moreDetailsEnable() -> Bool { + defaults.bool(forKey: "MoreDetailsEnable") + } + + public class func setMoreDetailsEnable(_ moreDetails: Bool) { + defaults.set(moreDetails, forKey: "MoreDetailsEnable") + } + + public class func showPreviousVersions() -> Bool { + defaults.bool(forKey: "ShowPreviousVersions") + } + + public class func setShowPreviousVersions(_ previousVersion: Bool) { + defaults.set(previousVersion, forKey: "ShowPreviousVersions") + } + + // MARK: - App user check + + public class func isFirstTime() -> Bool { + !defaults.bool(forKey: "AppSettingIsFirstTime") + } + + public class func setIsFirstTime(_ isFirstTime: Bool) { + defaults.set(isFirstTime, forKey: "AppSettingIsFirstTime") + } + + private static var currentAppVersion: String { + Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" + } + + public class func lastLaunchedVersion() -> String { + defaults.string(forKey: "AppBoxLastLaunchedVersion") ?? "" + } + + public class func isFirstTimeAfterUpdate() -> Bool { + let previous = lastLaunchedVersion() + guard !previous.isEmpty else { + return false + } + return VersionCompare.isUpdateAvailable(latest: currentAppVersion, current: previous) + } + + public class func recordLaunchedVersion() { + defaults.set(currentAppVersion, forKey: "AppBoxLastLaunchedVersion") + } + + // MARK: - Chunk size + + public class func uploadChunkSize() -> Int { + let chunkSize = defaults.integer(forKey: "UploadChunkSize") + return chunkSize > 0 ? chunkSize : 100 + } + + public class func setUploadChunkSize(_ chunkSize: Int) { + defaults.set(chunkSize, forKey: "UploadChunkSize") + } + + // MARK: - General settings + + public class func debugLog() -> Bool { + defaults.bool(forKey: "DebugLogEnable") + } + + public class func setEnableDebugLog(_ debugLog: Bool) { + defaults.set(debugLog, forKey: "DebugLogEnable") + } + + public class func updateAlertEnable() -> Bool { + defaults.bool(forKey: "UpdateAlertEnable") + } + + public class func setUpdateAlertEnable(_ updateAlert: Bool) { + defaults.set(updateAlert, forKey: "UpdateAlertEnable") + } + + // MARK: - CLI + + public class func cliVersion() -> String { + defaults.string(forKey: "CLIVersion") ?? "" + } + + public class func setCLIVersion(_ cliVersion: String?) { + defaults.set(cliVersion, forKey: "CLIVersion") + } +} diff --git a/AppBox/Info.plist b/AppBox/Info.plist index bdfeb500..68aeb02f 100644 --- a/AppBox/Info.plist +++ b/AppBox/Info.plist @@ -4,10 +4,27 @@ CFBundleDevelopmentRegion en + CFBundleDocumentTypes + + + CFBundleTypeExtensions + + ipa + + CFBundleTypeName + iOS App Archive + CFBundleTypeRole + Editor + LSHandlerRank + Alternate + LSItemContentTypes + + com.apple.itunes.ipa + + + CFBundleExecutable $(EXECUTABLE_NAME) - CFBundleIconFile - CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion @@ -29,7 +46,6 @@ Dropbox CFBundleURLSchemes - db-86tfx5bu3356fqo db-mzwu8mq9xdtilpr @@ -46,37 +62,22 @@ CFBundleVersion $(CURRENT_PROJECT_VERSION) - CFBundleDocumentTypes - - - CFBundleTypeName - iOS App Archive - CFBundleTypeRole - Editor - LSHandlerRank - Alternate - LSItemContentTypes - - com.apple.itunes.ipa - - CFBundleTypeExtensions - - ipa - - - + LSMinimumSystemVersion + $(MACOSX_DEPLOYMENT_TARGET) + NSHumanReadableCopyright + Copyright © 2016-26 Developer Insider. All rights reserved. UTImportedTypeDeclarations - UTTypeIdentifier - com.apple.itunes.ipa - UTTypeDescription - iOS App Archive UTTypeConformsTo public.data public.archive + UTTypeDescription + iOS App Archive + UTTypeIdentifier + com.apple.itunes.ipa UTTypeTagSpecification public.filename-extension @@ -86,20 +87,5 @@ - LSApplicationCategoryType - public.app-category.developer-tools - LSApplicationQueriesSchemes - - dbapi-8-emm - dbapi-2 - - LSMinimumSystemVersion - $(MACOSX_DEPLOYMENT_TARGET) - NSHumanReadableCopyright - Copyright © 2016-26 Developer Insider. All rights reserved. - NSMainStoryboardFile - Main - NSPrincipalClass - NSApplication diff --git a/AppBox/Model/CoreDataModel/ABProject+AppBox.swift b/AppBox/Model/CoreDataModel/ABProject+AppBox.swift new file mode 100644 index 00000000..9fecb9bb --- /dev/null +++ b/AppBox/Model/CoreDataModel/ABProject+AppBox.swift @@ -0,0 +1,57 @@ +// +// ABProject+AppBox.swift +// AppBox + +import Foundation +import CoreData +import AppBoxCore + +extension ABProject { + + /// Find-or-create the project for this IPA, append a new UploadRecord (with its provisioning profile + devices), and save. + public static func addProject(withIPAUploadInfo info: IPAUploadInfo) -> ABProject? { + do { + let context = try CoreDataStack.shared.loadViewContext() + return try BuildRecordStore.save(info.buildRecordInput, in: context) { + try CoreDataStack.shared.saveChanges() + } + } catch { + _ = Common.showAlert(withTitle: "Error", andMessage: error.localizedDescription) + return nil + } + } +} + +private extension IPAUploadInfo { + + /// The bundle-level folder, matching the old `pathComponents[0] + pathComponents[1]` derivation. + var dbFolderName: String { + let components = dbDirectory?.pathComponents ?? [] + return components.count > 1 ? components[0] + components[1] : "" + } + + var buildRecordInput: BuildRecordInput { + BuildRecordInput( + identifier: identifer ?? "", + name: name ?? "", + version: version ?? "", + build: build ?? "", + buildType: buildType, + localIPAPath: (ipaFullPath as NSURL?)?.resourceSpecifier?.removingPercentEncoding, + keepSameLink: isKeepSameLinkEnabled, + bundleDirectory: dbFolderName, + buildDirectory: dbDirectory?.absoluteString ?? "", + ipaRemotePath: dbIPAFullPath?.absoluteString ?? "", + manifestRemotePath: dbManifestFullPath?.absoluteString ?? "", + appInfoRemotePath: dbAppInfoJSONFullPath?.absoluteString ?? "", + sharedIPAURL: ipaFileDBShareableURL?.absoluteString, + sharedManifestURL: manifestFileSharableURL?.absoluteString, + shortURL: appShortShareableURL?.absoluteString, + provisioning: mobileProvision.map { + MobileProvisionInfo(isValid: $0.isValid, uuid: $0.uuid, teamId: $0.teamId, + teamName: $0.teamName, buildType: $0.buildType, + createDate: $0.createDate, expirationDate: $0.expirationDate, + provisionedDevices: $0.provisionedDevices) + }) + } +} diff --git a/AppBox/Model/CoreDataModel/ABUploadRecord+AppBox.swift b/AppBox/Model/CoreDataModel/ABUploadRecord+AppBox.swift new file mode 100644 index 00000000..1ad11264 --- /dev/null +++ b/AppBox/Model/CoreDataModel/ABUploadRecord+AppBox.swift @@ -0,0 +1,35 @@ +// +// ABUploadRecord+AppBox.swift +// AppBox + +import Foundation +import AppBoxCore + +extension ABUploadRecord { + + /// Reconstruct an `IPAUploadInfo` from this record (used to re-open a build from the dashboard). + public var ipaUploadInfo: IPAUploadInfo { + let info = IPAUploadInfo() + + info.name = project?.name + info.identifer = project?.bundleIdentifier + info.version = version + info.build = build + info.buildType = buildType + + info.dbIPAFullPath = dbIPAFullPath.flatMap { URL(string: $0) } + info.dbManifestFullPath = dbManifestFullPath.flatMap { URL(string: $0) } + info.dbAppInfoJSONFullPath = dbAppInfoFullPath.flatMap { URL(string: $0) } + info.dbDirectory = dbDirectroy.flatMap { URL(string: $0) } + info.ipaFileDBShareableURL = dbSharedIPAURL.flatMap { URL(string: $0) } + info.manifestFileSharableURL = dbSharedManifestURL.flatMap { URL(string: $0) } + info.uniquelinkShareableURL = dbSharedAppInfoURL.flatMap { URL(string: $0) } + info.appShortShareableURL = shortURL.flatMap { URL(string: $0) } + + info.isKeepSameLinkEnabled = keepSameLink?.boolValue ?? false + + if let localBuildPath { info.ipaFullPath = URL(fileURLWithPath: localBuildPath) } + + return info + } +} diff --git a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataClass.h b/AppBox/Model/CoreDataModel/AppBoxService+CoreDataClass.h deleted file mode 100644 index 102e9dca..00000000 --- a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataClass.h +++ /dev/null @@ -1,22 +0,0 @@ -// -// AppBoxService+CoreDataClass.h -// -// -// Created by Vineet Choudhary on 25/09/21. -// -// - -#import -#import - -@class ABUploadRecord; - -NS_ASSUME_NONNULL_BEGIN - -@interface AppBoxService : NSManagedObject - -@end - -NS_ASSUME_NONNULL_END - -#import "AppBoxService+CoreDataProperties.h" diff --git a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataClass.m b/AppBox/Model/CoreDataModel/AppBoxService+CoreDataClass.m deleted file mode 100644 index da2ac0ca..00000000 --- a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataClass.m +++ /dev/null @@ -1,13 +0,0 @@ -// -// AppBoxService+CoreDataClass.m -// -// -// Created by Vineet Choudhary on 25/09/21. -// -// - -#import "AppBoxService+CoreDataClass.h" - -@implementation AppBoxService - -@end diff --git a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataProperties.h b/AppBox/Model/CoreDataModel/AppBoxService+CoreDataProperties.h deleted file mode 100644 index 7e08ea71..00000000 --- a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataProperties.h +++ /dev/null @@ -1,37 +0,0 @@ -// -// AppBoxService+CoreDataProperties.h -// -// -// Created by Vineet Choudhary on 25/09/21. -// -// - -#import "AppBoxService+CoreDataClass.h" - - -NS_ASSUME_NONNULL_BEGIN - -@interface AppBoxService (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest; - -@property (nullable, nonatomic, copy) NSString *name; -@property (nullable, nonatomic, copy) NSString *accountEmail; -@property (nullable, nonatomic, copy) NSString *accountId; -@property (nullable, nonatomic, copy) NSString *accountAccessKey; -@property (nullable, nonatomic, copy) NSString *baseURL; -@property (nullable, nonatomic, retain) NSString *accountSecretKey; -@property (nullable, nonatomic, retain) NSSet *uploadRecords; - -@end - -@interface AppBoxService (CoreDataGeneratedAccessors) - -- (void)addUploadRecordsObject:(ABUploadRecord *)value; -- (void)removeUploadRecordsObject:(ABUploadRecord *)value; -- (void)addUploadRecords:(NSSet *)values; -- (void)removeUploadRecords:(NSSet *)values; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataProperties.m b/AppBox/Model/CoreDataModel/AppBoxService+CoreDataProperties.m deleted file mode 100644 index be58e460..00000000 --- a/AppBox/Model/CoreDataModel/AppBoxService+CoreDataProperties.m +++ /dev/null @@ -1,25 +0,0 @@ -// -// AppBoxService+CoreDataProperties.m -// -// -// Created by Vineet Choudhary on 25/09/21. -// -// - -#import "AppBoxService+CoreDataProperties.h" - -@implementation AppBoxService (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest { - return [NSFetchRequest fetchRequestWithEntityName:@"AppBoxService"]; -} - -@dynamic name; -@dynamic accountEmail; -@dynamic accountId; -@dynamic accountAccessKey; -@dynamic baseURL; -@dynamic accountSecretKey; -@dynamic uploadRecords; - -@end diff --git a/AppBox/Model/CoreDataModel/Project+CoreDataClass.h b/AppBox/Model/CoreDataModel/Project+CoreDataClass.h deleted file mode 100644 index a6f9d885..00000000 --- a/AppBox/Model/CoreDataModel/Project+CoreDataClass.h +++ /dev/null @@ -1,24 +0,0 @@ -// -// ABProject+CoreDataClass.h -// -// -// Created by Vineet Choudhary on 17/10/17. -// -// - -#import -#import - -@class CISetting, ABUploadRecord; - -NS_ASSUME_NONNULL_BEGIN - -@interface ABProject : NSManagedObject - -+(ABProject *)addProjectWithIPAUploadInfo:(IPAUploadInfo *)ipaUploadInfo; - -@end - -NS_ASSUME_NONNULL_END - -#import "Project+CoreDataProperties.h" diff --git a/AppBox/Model/CoreDataModel/Project+CoreDataClass.m b/AppBox/Model/CoreDataModel/Project+CoreDataClass.m deleted file mode 100644 index 531f92fb..00000000 --- a/AppBox/Model/CoreDataModel/Project+CoreDataClass.m +++ /dev/null @@ -1,152 +0,0 @@ -// -// ABProject+CoreDataClass.m -// -// -// Created by Vineet Choudhary on 17/10/17. -// -// - -#import "Project+CoreDataClass.h" - -@implementation ABProject - -+(ABProject *)addProjectWithIPAUploadInfo:(IPAUploadInfo *)ipaUploadInfo{ - - @try { - //fetch existing project with same identifer (if any) - NSError *error; - NSFetchRequest *fetchRequest = [ABProject fetchRequest]; - [fetchRequest setPredicate:[NSPredicate predicateWithFormat:@"SELF.bundleIdentifier = %@", ipaUploadInfo.identifer]]; - NSArray *projects = [[[AppDelegate appDelegate] managedObjectContext] executeFetchRequest:fetchRequest error:&error]; - if (error){ - //error in fetch request - [Common showAlertWithTitle:@"Error" andMessage:error.localizedDescription]; - }else{ - ABProject *project; - if (projects.count > 0){ - //use existing project - project = [projects lastObject]; - }else{ - //create new project - project = [NSEntityDescription insertNewObjectForEntityForName:@"Project" inManagedObjectContext:[[AppDelegate appDelegate] managedObjectContext]]; - [project setBundleIdentifier:ipaUploadInfo.identifer]; - } - - //set other project properties - [project setName:ipaUploadInfo.name]; - - //create new upload record - ABUploadRecord *uploadRecord = [NSEntityDescription insertNewObjectForEntityForName:@"UploadRecord" inManagedObjectContext:[[AppDelegate appDelegate] managedObjectContext]]; - - //set upload details - if (ipaUploadInfo.buildType){ - [uploadRecord setBuildType:ipaUploadInfo.buildType]; - } - if (ipaUploadInfo.dbAppInfoJSONFullPath){ - [uploadRecord setDbAppInfoFullPath:ipaUploadInfo.dbAppInfoJSONFullPath.absoluteString]; - } - if (ipaUploadInfo.dbDirectory){ - [uploadRecord setDbDirectroy:ipaUploadInfo.dbDirectory.absoluteString]; - NSArray *pathComponents = [ipaUploadInfo.dbDirectory pathComponents]; - if (pathComponents.count > 1) { - [uploadRecord setDbFolderName:[NSString stringWithFormat:@"%@%@", pathComponents[0], pathComponents[1]]]; - } - } - if (ipaUploadInfo.dbIPAFullPath){ - [uploadRecord setDbIPAFullPath:ipaUploadInfo.dbIPAFullPath.absoluteString]; - } - if (ipaUploadInfo.dbManifestFullPath){ - [uploadRecord setDbManifestFullPath:ipaUploadInfo.dbManifestFullPath.absoluteString]; - } - if (ipaUploadInfo.ipaFileDBShareableURL){ - [uploadRecord setDbSharedIPAURL:ipaUploadInfo.ipaFileDBShareableURL.absoluteString]; - } - if (ipaUploadInfo.manifestFileSharableURL){ - [uploadRecord setDbSharedManifestURL:ipaUploadInfo.manifestFileSharableURL.absoluteString]; - } - - if (ipaUploadInfo.ipaFullPath){ - [uploadRecord setLocalBuildPath:[ipaUploadInfo.ipaFullPath.resourceSpecifier stringByRemovingPercentEncoding]]; - } - if (ipaUploadInfo.appShortShareableURL){ - [uploadRecord setShortURL:ipaUploadInfo.appShortShareableURL.stringValue]; - } - if (ipaUploadInfo.build){ - [uploadRecord setBuild:ipaUploadInfo.build]; - } - if (ipaUploadInfo.version){ - [uploadRecord setVersion:ipaUploadInfo.version]; - } - - [uploadRecord setKeepSameLink:[NSNumber numberWithBool:ipaUploadInfo.isKeepSameLinkEnabled]]; - [uploadRecord setDatetime:[NSDate date]]; - - if (ipaUploadInfo.mobileProvision){ - @try { - //check either existing provisioning profile already exist or not - NSFetchRequest *provisioningProfileFetchRequest = [ABProvisioningProfile fetchRequest]; - NSPredicate *predicate = [NSPredicate predicateWithFormat:@"uuid = %@", ipaUploadInfo.mobileProvision.uuid]; - [provisioningProfileFetchRequest setPredicate:predicate]; - NSArray *fetchedResult = [[[AppDelegate appDelegate] managedObjectContext] executeFetchRequest:provisioningProfileFetchRequest error:nil]; - - if (fetchedResult.count > 0 && [fetchedResult.firstObject isKindOfClass:[ABProvisioningProfile class]]) { - //if provisioning profile exist update records - ABProvisioningProfile *provisioningProfile = (ABProvisioningProfile *)fetchedResult.firstObject; - [provisioningProfile addUploadRecordObject:uploadRecord]; - [uploadRecord setProvisioningProfile:provisioningProfile]; - } else { - //Create new provisioning profile record - NSMutableOrderedSet *provisionDeviceSet = [[NSMutableOrderedSet alloc] init]; - [ipaUploadInfo.mobileProvision.provisionedDevices enumerateObjectsUsingBlock:^(NSString * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { - //Create ProvisionedDevice Object and Add into Set - ABProvisionedDevice *device = [NSEntityDescription insertNewObjectForEntityForName:@"ProvisionedDevice" inManagedObjectContext:[[AppDelegate appDelegate] managedObjectContext]]; - [device setDeviceId:obj]; - [provisionDeviceSet addObject:device]; - }]; - - ABProvisioningProfile *provisioningProfile = [NSEntityDescription insertNewObjectForEntityForName:@"ProvisioningProfile" inManagedObjectContext:[[AppDelegate appDelegate] managedObjectContext]]; - [provisioningProfile setUuid:ipaUploadInfo.mobileProvision.uuid]; - [provisioningProfile setTeamId:ipaUploadInfo.mobileProvision.teamId]; - [provisioningProfile setTeamName:ipaUploadInfo.mobileProvision.teamName]; - [provisioningProfile setBuildType:ipaUploadInfo.mobileProvision.buildType]; - [provisioningProfile setCreateDate:ipaUploadInfo.mobileProvision.createDate]; - [provisioningProfile setExpirationDate:ipaUploadInfo.mobileProvision.expirationDate]; - [provisioningProfile addProvisionedDevices:provisionDeviceSet]; - - NSMutableOrderedSet *uploadRecordsSet; - if (provisioningProfile.uploadRecord && provisioningProfile.uploadRecord.count > 0){ - uploadRecordsSet = [[NSMutableOrderedSet alloc] initWithOrderedSet:provisioningProfile.uploadRecord]; - } else { - uploadRecordsSet = [[NSMutableOrderedSet alloc] init]; - } - [uploadRecordsSet addObject:uploadRecord]; - [provisioningProfile addUploadRecord:uploadRecordsSet]; - [uploadRecord setProvisioningProfile:provisioningProfile]; - } - } @catch (NSException *exception) { - DDLogError(@"Exception %@",exception.abDescription); - } - } - - - - NSMutableOrderedSet *uploadRecordsSet; - if (project.uploadRecords.count > 0){ - uploadRecordsSet = [[NSMutableOrderedSet alloc] initWithOrderedSet:project.uploadRecords]; - }else{ - uploadRecordsSet = [[NSMutableOrderedSet alloc] init]; - } - [uploadRecordsSet addObject:uploadRecord]; - [project addUploadRecords:uploadRecordsSet]; - - [[AppDelegate appDelegate] saveCoreDataChanges]; - - return project; - } - } @catch (NSException *exception) { - DDLogError(@"Exception %@",exception.abDescription); - } - return nil; -} - -@end diff --git a/AppBox/Model/CoreDataModel/Project+CoreDataProperties.h b/AppBox/Model/CoreDataModel/Project+CoreDataProperties.h deleted file mode 100644 index 6389f636..00000000 --- a/AppBox/Model/CoreDataModel/Project+CoreDataProperties.h +++ /dev/null @@ -1,51 +0,0 @@ -// -// ABProject+CoreDataProperties.h -// -// -// Created by Vineet Choudhary on 11/10/18. -// -// - -#import "Project+CoreDataClass.h" - - -NS_ASSUME_NONNULL_BEGIN - -@interface ABProject (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest; - -@property (nullable, nonatomic, copy) NSString *bundleIdentifier; -@property (nullable, nonatomic, copy) NSString *name; -@property (nullable, nonatomic, retain) NSOrderedSet *ciSettings; -@property (nullable, nonatomic, retain) NSOrderedSet *uploadRecords; - -@end - -@interface ABProject (CoreDataGeneratedAccessors) - -- (void)insertObject:(CISetting *)value inCiSettingsAtIndex:(NSUInteger)idx; -- (void)removeObjectFromCiSettingsAtIndex:(NSUInteger)idx; -- (void)insertCiSettings:(NSArray *)value atIndexes:(NSIndexSet *)indexes; -- (void)removeCiSettingsAtIndexes:(NSIndexSet *)indexes; -- (void)replaceObjectInCiSettingsAtIndex:(NSUInteger)idx withObject:(CISetting *)value; -- (void)replaceCiSettingsAtIndexes:(NSIndexSet *)indexes withCiSettings:(NSArray *)values; -- (void)addCiSettingsObject:(CISetting *)value; -- (void)removeCiSettingsObject:(CISetting *)value; -- (void)addCiSettings:(NSOrderedSet *)values; -- (void)removeCiSettings:(NSOrderedSet *)values; - -- (void)insertObject:(ABUploadRecord *)value inUploadRecordsAtIndex:(NSUInteger)idx; -- (void)removeObjectFromUploadRecordsAtIndex:(NSUInteger)idx; -- (void)insertUploadRecords:(NSArray *)value atIndexes:(NSIndexSet *)indexes; -- (void)removeUploadRecordsAtIndexes:(NSIndexSet *)indexes; -- (void)replaceObjectInUploadRecordsAtIndex:(NSUInteger)idx withObject:(ABUploadRecord *)value; -- (void)replaceUploadRecordsAtIndexes:(NSIndexSet *)indexes withUploadRecords:(NSArray *)values; -- (void)addUploadRecordsObject:(ABUploadRecord *)value; -- (void)removeUploadRecordsObject:(ABUploadRecord *)value; -- (void)addUploadRecords:(NSOrderedSet *)values; -- (void)removeUploadRecords:(NSOrderedSet *)values; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Model/CoreDataModel/Project+CoreDataProperties.m b/AppBox/Model/CoreDataModel/Project+CoreDataProperties.m deleted file mode 100644 index 72e490b3..00000000 --- a/AppBox/Model/CoreDataModel/Project+CoreDataProperties.m +++ /dev/null @@ -1,22 +0,0 @@ -// -// ABProject+CoreDataProperties.m -// -// -// Created by Vineet Choudhary on 11/10/18. -// -// - -#import "Project+CoreDataProperties.h" - -@implementation ABProject (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest { - return [NSFetchRequest fetchRequestWithEntityName:@"Project"]; -} - -@dynamic bundleIdentifier; -@dynamic name; -@dynamic ciSettings; -@dynamic uploadRecords; - -@end diff --git a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataClass.h b/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataClass.h deleted file mode 100644 index 6bf3b079..00000000 --- a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataClass.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// ABProvisionedDevice+CoreDataClass.h -// -// -// Created by Vineet Choudhary on 29/10/17. -// -// - -#import -#import - -NS_ASSUME_NONNULL_BEGIN - -@interface ABProvisionedDevice : NSManagedObject - -@end - -NS_ASSUME_NONNULL_END - -#import "ProvisionedDevice+CoreDataProperties.h" diff --git a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataClass.m b/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataClass.m deleted file mode 100644 index 297a7f08..00000000 --- a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataClass.m +++ /dev/null @@ -1,13 +0,0 @@ -// -// ABProvisionedDevice+CoreDataClass.m -// -// -// Created by Vineet Choudhary on 29/10/17. -// -// - -#import "ProvisionedDevice+CoreDataClass.h" - -@implementation ABProvisionedDevice - -@end diff --git a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataProperties.h b/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataProperties.h deleted file mode 100644 index 5f32ea0b..00000000 --- a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataProperties.h +++ /dev/null @@ -1,22 +0,0 @@ -// -// ABProvisionedDevice+CoreDataProperties.h -// -// -// Created by Vineet Choudhary on 11/10/18. -// -// - -#import "ProvisionedDevice+CoreDataClass.h" - - -NS_ASSUME_NONNULL_BEGIN - -@interface ABProvisionedDevice (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest; - -@property (nullable, nonatomic, copy) NSString *deviceId; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataProperties.m b/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataProperties.m deleted file mode 100644 index a94f9492..00000000 --- a/AppBox/Model/CoreDataModel/ProvisionedDevice+CoreDataProperties.m +++ /dev/null @@ -1,19 +0,0 @@ -// -// ABProvisionedDevice+CoreDataProperties.m -// -// -// Created by Vineet Choudhary on 11/10/18. -// -// - -#import "ProvisionedDevice+CoreDataProperties.h" - -@implementation ABProvisionedDevice (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest { - return [NSFetchRequest fetchRequestWithEntityName:@"ProvisionedDevice"]; -} - -@dynamic deviceId; - -@end diff --git a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataClass.h b/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataClass.h deleted file mode 100644 index 936ca7e7..00000000 --- a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataClass.h +++ /dev/null @@ -1,21 +0,0 @@ -// -// ABProvisioningProfile+CoreDataClass.h -// -// -// Created by Vineet Choudhary on 29/10/17. -// -// - -#import - -@class ABProvisionedDevice, ABUploadRecord; - -NS_ASSUME_NONNULL_BEGIN - -@interface ABProvisioningProfile : NSManagedObject - -@end - -NS_ASSUME_NONNULL_END - -#import "ProvisioningProfile+CoreDataProperties.h" diff --git a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataClass.m b/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataClass.m deleted file mode 100644 index f5131e0d..00000000 --- a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataClass.m +++ /dev/null @@ -1,13 +0,0 @@ -// -// ABProvisioningProfile+CoreDataClass.m -// -// -// Created by Vineet Choudhary on 29/10/17. -// -// - -#import "ProvisioningProfile+CoreDataClass.h" - -@implementation ABProvisioningProfile - -@end diff --git a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataProperties.h b/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataProperties.h deleted file mode 100644 index 8687a3a7..00000000 --- a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataProperties.h +++ /dev/null @@ -1,55 +0,0 @@ -// -// ABProvisioningProfile+CoreDataProperties.h -// -// -// Created by Vineet Choudhary on 11/10/18. -// -// - -#import "ProvisioningProfile+CoreDataClass.h" - - -NS_ASSUME_NONNULL_BEGIN - -@interface ABProvisioningProfile (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest; - -@property (nullable, nonatomic, copy) NSString *buildType; -@property (nullable, nonatomic, copy) NSDate *createDate; -@property (nullable, nonatomic, copy) NSDate *expirationDate; -@property (nullable, nonatomic, copy) NSString *teamId; -@property (nullable, nonatomic, copy) NSString *teamName; -@property (nullable, nonatomic, copy) NSString *uuid; -@property (nullable, nonatomic, retain) NSOrderedSet *provisionedDevices; -@property (nullable, nonatomic, retain) NSOrderedSet *uploadRecord; - -@end - -@interface ABProvisioningProfile (CoreDataGeneratedAccessors) - -- (void)insertObject:(ABProvisionedDevice *)value inProvisionedDevicesAtIndex:(NSUInteger)idx; -- (void)removeObjectFromProvisionedDevicesAtIndex:(NSUInteger)idx; -- (void)insertProvisionedDevices:(NSArray *)value atIndexes:(NSIndexSet *)indexes; -- (void)removeProvisionedDevicesAtIndexes:(NSIndexSet *)indexes; -- (void)replaceObjectInProvisionedDevicesAtIndex:(NSUInteger)idx withObject:(ABProvisionedDevice *)value; -- (void)replaceProvisionedDevicesAtIndexes:(NSIndexSet *)indexes withProvisionedDevices:(NSArray *)values; -- (void)addProvisionedDevicesObject:(ABProvisionedDevice *)value; -- (void)removeProvisionedDevicesObject:(ABProvisionedDevice *)value; -- (void)addProvisionedDevices:(NSOrderedSet *)values; -- (void)removeProvisionedDevices:(NSOrderedSet *)values; - -- (void)insertObject:(ABUploadRecord *)value inUploadRecordAtIndex:(NSUInteger)idx; -- (void)removeObjectFromUploadRecordAtIndex:(NSUInteger)idx; -- (void)insertUploadRecord:(NSArray *)value atIndexes:(NSIndexSet *)indexes; -- (void)removeUploadRecordAtIndexes:(NSIndexSet *)indexes; -- (void)replaceObjectInUploadRecordAtIndex:(NSUInteger)idx withObject:(ABUploadRecord *)value; -- (void)replaceUploadRecordAtIndexes:(NSIndexSet *)indexes withUploadRecord:(NSArray *)values; -- (void)addUploadRecordObject:(ABUploadRecord *)value; -- (void)removeUploadRecordObject:(ABUploadRecord *)value; -- (void)addUploadRecord:(NSOrderedSet *)values; -- (void)removeUploadRecord:(NSOrderedSet *)values; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataProperties.m b/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataProperties.m deleted file mode 100644 index d4adaa77..00000000 --- a/AppBox/Model/CoreDataModel/ProvisioningProfile+CoreDataProperties.m +++ /dev/null @@ -1,26 +0,0 @@ -// -// ABProvisioningProfile+CoreDataProperties.m -// -// -// Created by Vineet Choudhary on 11/10/18. -// -// - -#import "ProvisioningProfile+CoreDataProperties.h" - -@implementation ABProvisioningProfile (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest { - return [NSFetchRequest fetchRequestWithEntityName:@"ProvisioningProfile"]; -} - -@dynamic buildType; -@dynamic createDate; -@dynamic expirationDate; -@dynamic teamId; -@dynamic teamName; -@dynamic uuid; -@dynamic provisionedDevices; -@dynamic uploadRecord; - -@end diff --git a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataClass.h b/AppBox/Model/CoreDataModel/UploadRecord+CoreDataClass.h deleted file mode 100644 index f7aeea4b..00000000 --- a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataClass.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// ABUploadRecord+CoreDataClass.h -// -// -// Created by Vineet Choudhary on 17/10/17. -// -// - -#import -#import - -@class ABProject; -@class ABProvisioningProfile; -@class AppBoxService; - -NS_ASSUME_NONNULL_BEGIN - -@interface ABUploadRecord : NSManagedObject - -@property(nonatomic, retain) IPAUploadInfo *ipaUploadInfo; - -@end - -NS_ASSUME_NONNULL_END - -#import "UploadRecord+CoreDataProperties.h" diff --git a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataClass.m b/AppBox/Model/CoreDataModel/UploadRecord+CoreDataClass.m deleted file mode 100644 index 7aaaf2de..00000000 --- a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataClass.m +++ /dev/null @@ -1,72 +0,0 @@ -// -// ABUploadRecord+CoreDataClass.m -// -// -// Created by Vineet Choudhary on 17/10/17. -// -// - -#import "UploadRecord+CoreDataClass.h" - -@implementation ABUploadRecord - -@dynamic ipaUploadInfo; - --(IPAUploadInfo *)ipaUploadInfo{ - IPAUploadInfo *ipaUploadInfo = [[IPAUploadInfo alloc] init]; - - //Basic Details - if (self.project.name){ - ipaUploadInfo.name = self.project.name; - } - if (self.project.bundleIdentifier){ - ipaUploadInfo.identifer = self.project.bundleIdentifier; - } - if (self.version) { - ipaUploadInfo.version = self.version; - } - if (self.build) { - ipaUploadInfo.build = self.build; - } - if (self.buildType){ - ipaUploadInfo.buildType = self.buildType; - } - - //Dropbox path and shared URL - if (self.dbIPAFullPath) { - ipaUploadInfo.dbIPAFullPath = [NSURL URLWithString:self.dbIPAFullPath]; - } - if (self.dbManifestFullPath) { - ipaUploadInfo.dbManifestFullPath = [NSURL URLWithString:self.dbManifestFullPath]; - } - if (self.dbAppInfoFullPath){ - ipaUploadInfo.dbAppInfoJSONFullPath = [NSURL URLWithString:self.dbAppInfoFullPath]; - } - if (self.dbDirectroy){ - ipaUploadInfo.dbDirectory = [NSURL URLWithString:self.dbDirectroy]; - } - if (self.dbSharedIPAURL){ - ipaUploadInfo.ipaFileDBShareableURL = [NSURL URLWithString:self.dbSharedIPAURL]; - } - if (self.dbSharedManifestURL){ - ipaUploadInfo.manifestFileSharableURL = [NSURL URLWithString:self.dbSharedManifestURL]; - } - if (self.dbSharedAppInfoURL){ - ipaUploadInfo.uniquelinkShareableURL = [NSURL URLWithString:self.dbSharedAppInfoURL]; - } - if (self.shortURL){ - ipaUploadInfo.appShortShareableURL = [NSURL URLWithString:self.shortURL]; - } - - //Keep Same Link - ipaUploadInfo.isKeepSameLinkEnabled = self.keepSameLink.boolValue; - - //Local Path - if (self.localBuildPath) { - ipaUploadInfo.ipaFullPath = [NSURL fileURLWithPath:self.localBuildPath]; - } - - return ipaUploadInfo; -} - -@end diff --git a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataProperties.h b/AppBox/Model/CoreDataModel/UploadRecord+CoreDataProperties.h deleted file mode 100644 index 87f11b52..00000000 --- a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataProperties.h +++ /dev/null @@ -1,42 +0,0 @@ -// -// UploadRecord+CoreDataProperties.h -// -// -// Created by Vineet Choudhary on 25/09/21. -// -// - -#import "UploadRecord+CoreDataClass.h" - - -NS_ASSUME_NONNULL_BEGIN - -@interface ABUploadRecord (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest; - -@property (nullable, nonatomic, copy) NSString *build; -@property (nullable, nonatomic, copy) NSString *buildType; -@property (nullable, nonatomic, copy) NSDate *datetime; -@property (nullable, nonatomic, copy) NSString *dbAppInfoFullPath; -@property (nullable, nonatomic, copy) NSString *dbDirectroy; -@property (nullable, nonatomic, copy) NSString *dbFolderName; -@property (nullable, nonatomic, copy) NSString *dbIPAFullPath; -@property (nullable, nonatomic, copy) NSString *dbManifestFullPath; -@property (nullable, nonatomic, copy) NSString *dbSharedAppInfoURL; -@property (nullable, nonatomic, copy) NSString *dbSharedIPAURL; -@property (nullable, nonatomic, copy) NSString *dbSharedManifestURL; -@property (nullable, nonatomic, copy) NSNumber *keepSameLink; -@property (nullable, nonatomic, copy) NSString *localBuildPath; -@property (nullable, nonatomic, copy) NSString *mailURL; -@property (nullable, nonatomic, copy) NSString *projectPath; -@property (nullable, nonatomic, copy) NSString *shortURL; -@property (nullable, nonatomic, copy) NSString *teamId; -@property (nullable, nonatomic, copy) NSString *version; -@property (nullable, nonatomic, retain) ABProject *project; -@property (nullable, nonatomic, retain) ABProvisioningProfile *provisioningProfile; -@property (nullable, nonatomic, retain) AppBoxService *service; - -@end - -NS_ASSUME_NONNULL_END diff --git a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataProperties.m b/AppBox/Model/CoreDataModel/UploadRecord+CoreDataProperties.m deleted file mode 100644 index b8ec055f..00000000 --- a/AppBox/Model/CoreDataModel/UploadRecord+CoreDataProperties.m +++ /dev/null @@ -1,39 +0,0 @@ -// -// ABUploadRecord+CoreDataProperties.m -// -// -// Created by Vineet Choudhary on 25/09/21. -// -// - -#import "UploadRecord+CoreDataProperties.h" - -@implementation ABUploadRecord (CoreDataProperties) - -+ (NSFetchRequest *)fetchRequest { - return [NSFetchRequest fetchRequestWithEntityName:@"UploadRecord"]; -} - -@dynamic build; -@dynamic buildType; -@dynamic datetime; -@dynamic dbAppInfoFullPath; -@dynamic dbDirectroy; -@dynamic dbFolderName; -@dynamic dbIPAFullPath; -@dynamic dbManifestFullPath; -@dynamic dbSharedAppInfoURL; -@dynamic dbSharedIPAURL; -@dynamic dbSharedManifestURL; -@dynamic keepSameLink; -@dynamic localBuildPath; -@dynamic mailURL; -@dynamic projectPath; -@dynamic shortURL; -@dynamic teamId; -@dynamic version; -@dynamic project; -@dynamic provisioningProfile; -@dynamic service; - -@end diff --git a/AppBox/Model/IPAInfoModel/IPAUploadInfo.h b/AppBox/Model/IPAInfoModel/IPAUploadInfo.h deleted file mode 100644 index 7c6411a4..00000000 --- a/AppBox/Model/IPAInfoModel/IPAUploadInfo.h +++ /dev/null @@ -1,65 +0,0 @@ -// -// IPAUploadInfo.h -// AppBox -// -// Created by Vineet Choudhary on 03/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -#import "MobileProvision.h" - -@interface IPAUploadInfo : NSObject - -//Project Basic Properties -@property(nonatomic, retain) NSString *uuid; -@property(nonatomic, retain) NSString *name; -@property(nonatomic, retain) NSString *version; -@property(nonatomic, retain) NSString *build; -@property(nonatomic, retain) NSString *identifer; -@property(nonatomic, retain) NSString *buildType; -@property(nonatomic, retain) NSNumber *ipaFileSize; -@property(nonatomic, retain) NSString *miniOSVersion; -@property(nonatomic, retain) NSString *supportedDevice; -@property(nonatomic, retain, readonly) ABPIPAUploadInfo *abpIPAUploadInfo; - -//Local URLS -@property(nonatomic, retain) NSURL *ipaFullPath; - -//Info.plist, and provisioning information -@property(nonatomic, retain) NSDictionary *ipaInfoPlist; -@property(nonatomic, retain) MobileProvision *mobileProvision; - -//UniqueLink.json -@property(nonatomic, assign) BOOL isKeepSameLinkEnabled; -@property(nonatomic, retain) NSURL *uniquelinkShareableURL; -@property(nonatomic, retain) DBFILESFileMetadata *uniqueLinkJsonMetaData; - -//Share Settings -@property(nonatomic, retain) NSString *emails; -@property(nonatomic, retain) NSNumber *keepSameLink; -@property(nonatomic, retain) NSString *personalMessage; -@property(nonatomic, retain) NSString *webhookMessage; -@property(nonatomic, retain) NSString *slackWebhook; -@property(nonatomic, retain) NSString *msTeamsWebhook; - -//Shareable URL DropBox or Google Shortern -@property(nonatomic, retain) NSURL *dbDirectory; -@property(nonatomic, retain) NSURL *dbIPAFullPath; -@property(nonatomic, retain) NSURL *dbManifestFullPath; -@property(nonatomic, retain) NSURL *dbAppInfoJSONFullPath; - -@property(nonatomic, retain) NSURL *bundleDirectory; -@property(nonatomic, retain) NSURL *ipaFileDBShareableURL; -@property(nonatomic, retain) NSURL *manifestFileSharableURL; -@property(nonatomic, retain) NSURL *appLongShareableURL; -@property(nonatomic, retain) NSURL *appShortShareableURL; - -- (instancetype)initEmpty; -- (BOOL)isValidInfoPlist; -- (BOOL)exportSharedURLInSystemFile; -- (void)createUDIDAndIsNew:(BOOL)isNew; -- (void)upadteDbDirectoryByBundleDirectory; -- (void)createManifestWithIPAURL:(NSURL *)ipaURL completion:(void(^)(NSURL *manifestURL))completion; -@end diff --git a/AppBox/Model/IPAInfoModel/IPAUploadInfo.m b/AppBox/Model/IPAInfoModel/IPAUploadInfo.m deleted file mode 100644 index 4243c13a..00000000 --- a/AppBox/Model/IPAInfoModel/IPAUploadInfo.m +++ /dev/null @@ -1,222 +0,0 @@ -// -// IPAUploadInfo.m -// AppBox -// -// Created by Vineet Choudhary on 03/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "IPAUploadInfo.h" - -@implementation IPAUploadInfo - -//MARK: - Init - -- (instancetype)initEmpty { - self = [super init]; - if (self) { - self.keepSameLink = @0; - self.emails = abEmptyString; - self.buildType = abEmptyString; - self.personalMessage = abEmptyString; - } - return self; -} - -//MARK: - Helper --(void)createUDIDAndIsNew:(BOOL)isNew{ - if (isNew || _uuid == nil){ - [self setUuid: [Common generateUUID]]; - } -} - --(void)createManifestWithIPAURL:(NSURL *)ipaURL completion:(void(^)(NSURL *manifestURL))completion{ - NSMutableDictionary *assetsDict = [[NSMutableDictionary alloc] init]; - [assetsDict setValue:self.ipaFileDBShareableURL.absoluteString forKey:@"url"]; - [assetsDict setValue:@"software-package" forKey:@"kind"]; - - //TODO: Upload ICONS - NSMutableDictionary *iconDict = [[NSMutableDictionary alloc] init]; - [iconDict setValue:@"display-image" forKey:@"kind"]; - [iconDict setValue:@NO forKey:@"needs-shine"]; - [iconDict setValue:@"" forKey:@"url"]; - - NSMutableDictionary *metadataDict = [[NSMutableDictionary alloc] init]; - [metadataDict setValue:@"software" forKey:@"kind"]; - [metadataDict setValue:self.name forKey:@"title"]; - [metadataDict setValue:self.identifer forKey:@"bundle-identifier"]; - [metadataDict setValue:self.version forKey:@"bundle-version"]; - - NSMutableDictionary *mainItemDict = [[NSMutableDictionary alloc] init]; - [mainItemDict setValue:[NSArray arrayWithObjects:assetsDict, nil] forKey:@"assets"]; - [mainItemDict setValue:metadataDict forKey:@"metadata"]; - - NSMutableDictionary *manifestDict = [[NSMutableDictionary alloc] init]; - [manifestDict setValue:[NSArray arrayWithObjects:mainItemDict, nil] forKey:@"items"]; - - DDLogDebug(@"\n========\nManifest\n========\n %@", manifestDict); - - NSString *manifestPath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"manifest.plist"]; - if ([manifestDict writeToFile:manifestPath atomically:YES]){ - DDLogDebug(@"Menifest File Created and Saved at %@", manifestPath); - dispatch_async(dispatch_get_main_queue(), ^{ - completion([NSURL fileURLWithPath:manifestPath]); - }); - }else{ - DDLogInfo(@"Can't able to save menifest file"); - completion(nil); - } -} - -//validate info plist for current ipa file -- (BOOL)isValidInfoPlist{ - if (self.ipaInfoPlist == nil){ - return false; - } - - //check required value for manifest file - if (self.name != nil && self.build != nil && self.identifer != nil && self.version != nil){ - return true; - } - return false; -} - -//MARK: - Getter -- (NSString *)uuid{ - [self createUDIDAndIsNew:NO]; - return _uuid; -} - --(ABPIPAUploadInfo *)abpIPAUploadInfo{ - ABPIPAUploadInfo *ipaUploadInfo = [[ABPIPAUploadInfo alloc] init]; - [ipaUploadInfo setName:self.name]; - [ipaUploadInfo setVersion:self.version]; - [ipaUploadInfo setBuild:self.build]; - [ipaUploadInfo setIdentifer:self.identifer]; - [ipaUploadInfo setBuildType:self.buildType]; - [ipaUploadInfo setIpaFileSize:self.ipaFileSize]; - [ipaUploadInfo setMiniOSVersion:self.miniOSVersion]; - [ipaUploadInfo setSupportedDevice:self.supportedDevice]; - - [ipaUploadInfo setIsKeepSameLinkEnabled:self.isKeepSameLinkEnabled]; - [ipaUploadInfo setUniquelinkShareableURL:self.uniquelinkShareableURL]; - - [ipaUploadInfo setDbAppInfoJSONFullPath:self.dbAppInfoJSONFullPath]; - [ipaUploadInfo setAppShortShareableURL:self.appShortShareableURL]; - - [ipaUploadInfo setEmails:self.emails]; - [ipaUploadInfo setPersonalMessage:self.personalMessage]; - [ipaUploadInfo setDbManager:[Common currentDBManager]]; - - return ipaUploadInfo; -} - -//MARK: - Setter - --(void)setIpaFullPath:(NSURL *)ipaFullPath{ - _ipaFullPath = ipaFullPath; - NSError *error; - NSDictionary *fileAttributes = [[NSFileManager defaultManager] attributesOfItemAtPath:ipaFullPath.resourceSpecifier.stringByRemovingPercentEncoding error:&error]; - if (error) { - _ipaFileSize = [NSNumber numberWithLongLong:0]; - } else { - NSNumber *fileSizeNumber = [fileAttributes objectForKey:NSFileSize]; - long long fileSize = [fileSizeNumber longLongValue]; - _ipaFileSize = [NSNumber numberWithLongLong:(fileSize/1000000)]; - } - -} - -- (void)setName:(NSString *)name{ - _name = [name stringByReplacingOccurrencesOfString:@" " withString:abEmptyString]; -} - -- (void)setIpaInfoPlist:(NSDictionary *)ipaInfoPlist{ - _ipaInfoPlist = ipaInfoPlist; - [self createUDIDAndIsNew:YES]; - if ([ipaInfoPlist valueForKey:@"CFBundleName"] != nil){ - [self setName: [ipaInfoPlist valueForKey:@"CFBundleName"]]; - } - [self setBuild: [ipaInfoPlist valueForKey:@"CFBundleVersion"]]; - [self setIdentifer:[self.ipaInfoPlist valueForKey:@"CFBundleIdentifier"]]; - [self setVersion: [ipaInfoPlist valueForKey:@"CFBundleShortVersionString"]]; - [self setMiniOSVersion:[ipaInfoPlist valueForKey:@"MinimumOSVersion"]]; - - //Supported Devices - NSArray *supportedDeviceKey = [ipaInfoPlist valueForKey:@"UIDeviceFamily"]; - NSMutableString *supportedDevice = [[NSMutableString alloc] init]; - [supportedDeviceKey enumerateObjectsUsingBlock:^(id _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { - if ([obj integerValue] == 1) { - [supportedDevice appendString:@"iPhone"]; - } else if ([obj integerValue] == 2) { - if (supportedDevice.length > 0){ - [supportedDevice appendString:@" and "]; - } - [supportedDevice appendString:@"iPad"]; - } - }]; - [self setSupportedDevice:supportedDevice]; - - //Bundle directory path - NSString *bundlePath = [NSString stringWithFormat:@"/%@",self.identifer]; - if (self.bundleDirectory.absoluteString.length == 0){ - [self setBundleDirectory:[NSURL URLWithString:bundlePath]]; - } - [self upadteDbDirectoryByBundleDirectory]; -} - --(void)setMobileProvision:(MobileProvision *)mobileProvision{ - _mobileProvision = mobileProvision; - if (self.mobileProvision){ - if (!self.buildType) self.buildType = self.mobileProvision.buildType; - } -} - -- (void)upadteDbDirectoryByBundleDirectory{ - //Build URL for DropBox - NSString *validName = [self validURLString:self.name]; - NSString *validVersion = [self validURLString:self.version]; - NSString *validBuild = [self validURLString:self.build]; - NSString *validUUID = [self validURLString:self.uuid]; - NSString *validBundleDirectory = [self validURLString:self.bundleDirectory.absoluteString]; - - NSString *toPath = [validBundleDirectory stringByAppendingPathComponent:[NSString stringWithFormat:@"%@-ver%@(%@)-%@",validName, validVersion, validBuild, validUUID]]; - [self setDbDirectory:[NSURL URLWithString:toPath]]; - - NSString * dbIPAFullPathString = [NSString stringWithFormat:@"%@/%@.ipa", toPath, validName]; - [self setDbIPAFullPath:[NSURL URLWithString:dbIPAFullPathString]]; - - [self setDbManifestFullPath:[NSURL URLWithString:[NSString stringWithFormat:@"%@/manifest.plist",toPath]]]; - - if (self.isKeepSameLinkEnabled){ - [self setDbAppInfoJSONFullPath:[NSURL URLWithString:[NSString stringWithFormat:@"%@/%@",validBundleDirectory,FILE_NAME_UNIQUE_JSON]]]; - } else { - [self setDbAppInfoJSONFullPath:[NSURL URLWithString:[NSString stringWithFormat:@"%@/%@",toPath, FILE_NAME_UNIQUE_JSON]]]; - } -} - --(NSString *)validURLString:(NSString *)urlString{ - NSString *temp = [[urlString componentsSeparatedByCharactersInSet:[NSCharacterSet URLQueryAllowedCharacterSet].invertedSet] componentsJoinedByString:@""]; - return temp.length == 0 ? @"AppBox" : temp; -} - -- (BOOL)exportSharedURLInSystemFile { - // Set Shared Variables - NSMutableDictionary *exportVariable = [[NSMutableDictionary alloc] init]; - [exportVariable setValue: [NSString stringWithFormat:@"%@", self.appShortShareableURL] forKey: @"APPBOX_SHARE_URL"]; - [exportVariable setValue: [NSString stringWithFormat:@"%@", self.ipaFileDBShareableURL] forKey: @"APPBOX_IPA_URL"]; - [exportVariable setValue: [NSString stringWithFormat:@"%@", self.manifestFileSharableURL] forKey: @"APPBOX_MANIFEST_URL"]; - - NSString *homeDirectory = NSHomeDirectory(); - NSString *path = [homeDirectory stringByAppendingPathComponent: FILE_NAME_SHARE_URL]; - - if([[NSFileManager defaultManager] fileExistsAtPath:path]){ - [[NSFileManager defaultManager] removeItemAtPath:path error:nil]; - } - - NSError *error; - NSData *jsonData = [NSJSONSerialization dataWithJSONObject:exportVariable options:NSJSONWritingPrettyPrinted error:&error]; - return [jsonData writeToFile:path atomically:YES]; -} - -@end diff --git a/AppBox/Model/IPAInfoModel/IPAUploadInfo.swift b/AppBox/Model/IPAInfoModel/IPAUploadInfo.swift new file mode 100644 index 00000000..062c2b77 --- /dev/null +++ b/AppBox/Model/IPAInfoModel/IPAUploadInfo.swift @@ -0,0 +1,145 @@ +// +// IPAUploadInfo.swift +// AppBox + +import Foundation +import AppBoxCore + +public final class IPAUploadInfo: NSObject { + + // MARK: - Project basic properties + + private var _uuid: String? + public var uuid: String? { + get { createUDIDAndIsNew(false); return _uuid } + set { _uuid = newValue } + } + + private var _name: String? + public var name: String? { + get { _name } + set { _name = newValue.map { ABIPAInfo.stripSpaces($0) } } + } + + public var version: String? + public var build: String? + public var identifer: String? + public var buildType: String? + public var ipaFileSize: NSNumber? + public var miniOSVersion: String? + public var supportedDevice: String? + + // MARK: - Local URLs + + private var _ipaFullPath: URL? + public var ipaFullPath: URL? { + get { _ipaFullPath } + set { + _ipaFullPath = newValue + if let path = (newValue as NSURL?)?.resourceSpecifier?.removingPercentEncoding, + let attributes = try? FileManager.default.attributesOfItem(atPath: path), + let size = (attributes[.size] as? NSNumber)?.int64Value { + ipaFileSize = NSNumber(value: size / 1_000_000) + } else { + ipaFileSize = NSNumber(value: 0) + } + } + } + + // MARK: - Info.plist + provisioning + + private var _ipaInfoPlist: [AnyHashable: Any]? + public var ipaInfoPlist: [AnyHashable: Any]? { + get { _ipaInfoPlist } + set { + _ipaInfoPlist = newValue + createUDIDAndIsNew(true) + if let bundleName = newValue?["CFBundleName"] as? String { name = bundleName } + build = newValue?["CFBundleVersion"] as? String + identifer = newValue?["CFBundleIdentifier"] as? String + version = newValue?["CFBundleShortVersionString"] as? String + miniOSVersion = newValue?["MinimumOSVersion"] as? String + supportedDevice = ABIPAInfo.supportedDevice(fromDeviceFamily: newValue?["UIDeviceFamily"] as? [NSNumber]) + + let bundlePath = "/\(identifer ?? "")" + if (bundleDirectory?.absoluteString ?? "").isEmpty { + bundleDirectory = URL(string: bundlePath) + } + upadteDbDirectoryByBundleDirectory() + } + } + + private var _mobileProvision: MobileProvision? + public var mobileProvision: MobileProvision? { + get { _mobileProvision } + set { + _mobileProvision = newValue + if let provision = newValue, buildType == nil { buildType = provision.buildType } + } + } + + // MARK: - UniqueLink.json + + public var isKeepSameLinkEnabled: Bool = false + public var uniquelinkShareableURL: URL? + + // MARK: - Share settings + + public var emails: String? + public var keepSameLink: NSNumber? + public var personalMessage: String? + public var slackWebhook: String? + public var msTeamsWebhook: String? + + // MARK: - Shareable URLs (Dropbox / shortened) + + public var dbDirectory: URL? + public var dbIPAFullPath: URL? + public var dbManifestFullPath: URL? + public var dbAppInfoJSONFullPath: URL? + public var bundleDirectory: URL? + public var ipaFileDBShareableURL: URL? + public var manifestFileSharableURL: URL? + public var appLongShareableURL: URL? + public var appShortShareableURL: URL? + + // MARK: - Init + + public override init() { + super.init() + keepSameLink = NSNumber(value: 0) + emails = "" + buildType = "" + personalMessage = "" + } + + // MARK: - Helpers + + public func createUDIDAndIsNew(_ isNew: Bool) { + if isNew || _uuid == nil { + _uuid = Common.generateUUID() + } + } + + public func isValidInfoPlist() -> Bool { + guard ipaInfoPlist != nil else { return false } + return name != nil && build != nil && identifer != nil && version != nil + } + + public func upadteDbDirectoryByBundleDirectory() { + let metadata = BuildMetadata(name: name ?? "", version: version ?? "", build: build ?? "", + identifier: identifer ?? "", minimumOSVersion: miniOSVersion, + supportedDevice: supportedDevice ?? "") + let paths = BuildRemotePaths(metadata: metadata, uuid: uuid ?? "", + bundleDirectory: bundleDirectory?.absoluteString, + keepSameLink: isKeepSameLinkEnabled) + dbDirectory = URL(string: paths.buildDirectory) + dbIPAFullPath = URL(string: paths.ipa.path) + dbManifestFullPath = URL(string: paths.manifest.path) + dbAppInfoJSONFullPath = URL(string: paths.appInfo.path) + } + + public func validURLString(_ urlString: String?) -> String { + return ABIPAInfo.sanitizedURLString(urlString) + } +} diff --git a/AppBox/ViewController/ABHudViewController/ABHudViewController.h b/AppBox/ViewController/ABHudViewController/ABHudViewController.h deleted file mode 100644 index 9bb30ff6..00000000 --- a/AppBox/ViewController/ABHudViewController/ABHudViewController.h +++ /dev/null @@ -1,33 +0,0 @@ -// -// ABHudViewController.h -// AppBox -// -// Created by Vineet Choudhary on 29/12/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import -#import -#import - -typedef enum : NSUInteger { - HudTypeProgress, - HudTypeStatus, - HudTypeResult, -} HudType; - -@interface ABHudViewController : NSViewController { - __weak IBOutlet NSProgressIndicator *progressIndicator; - __weak IBOutlet NSTextField *progressLabel; - __weak IBOutlet NSImageView *resultImageView; -} - -@property(nonatomic, weak) NSView *hudSuperView; -@property(nonatomic, strong) NSString *status; -@property(nonatomic, strong) NSNumber *progress; -@property(nonatomic, assign) HudType hudType; -@property(nonatomic, assign) BOOL result; - -+ (ABHudViewController *)hudForView:(NSView *)view hide:(BOOL)hide; - -@end diff --git a/AppBox/ViewController/ABHudViewController/ABHudViewController.m b/AppBox/ViewController/ABHudViewController/ABHudViewController.m deleted file mode 100644 index ff75722a..00000000 --- a/AppBox/ViewController/ABHudViewController/ABHudViewController.m +++ /dev/null @@ -1,119 +0,0 @@ -// -// ABHudViewController.m -// AppBox -// -// Created by Vineet Choudhary on 29/12/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "ABHudViewController.h" - -@interface ABHudViewController () - -@end - -@implementation ABHudViewController { - NSNumber *adIndex; -} - -//MARK: - Hud View -+ (ABHudViewController *)hudForView:(NSView *)view hide:(BOOL)hide{ - static NSMutableDictionary *hudDictionary = nil; - if (hudDictionary == nil) { - hudDictionary = [[NSMutableDictionary alloc] init]; - } - if (hide) { - if ([hudDictionary.allKeys containsObject:view.description]) { - ABHudViewController *hud = [hudDictionary objectForKey:view.description]; - [hud.view removeFromSuperview]; - [hudDictionary removeObjectForKey:view.description]; - } - return nil; - } else { - ABHudViewController *hud; - if ([hudDictionary.allKeys containsObject:view.description]) { - hud = [hudDictionary objectForKey:view.description]; - } else { - hud = [[ABHudViewController alloc] initWithNibName:NSStringFromClass([ABHudViewController class]) bundle:nil]; - view.postsFrameChangedNotifications = YES; - hud.view.frame = view.frame; - hud.hudSuperView = view; - [[NSNotificationCenter defaultCenter] addObserver:hud selector:@selector(viewFrameChanged:) name:NSViewFrameDidChangeNotification object:nil]; - [hudDictionary setObject:hud forKey:view.description]; - } - if (![view.subviews containsObject:hud.view]) { - [view addSubview:hud.view]; - } - return hud; - } -} - -//MARK: - View Lifecycle -- (void)viewDidLoad { - [super viewDidLoad]; - - //White color progress indicator - CIFilter *lighten = [CIFilter filterWithName:@"CIColorControls"]; - [lighten setDefaults]; - [lighten setValue:@1 forKey:@"inputBrightness"]; - [progressIndicator setContentFilters:[NSArray arrayWithObjects:lighten, nil]]; -} - -- (void)viewFrameChanged:(NSNotification *)notifictaion { - self.view.frame = self.hudSuperView.frame; -} - -//MARK: - Properties --(void)setStatus:(NSString *)status{ - _status = status; - [progressLabel setStringValue: status]; -} - --(void)setProgress:(NSNumber *)progress{ - _progress = progress; - [resultImageView setHidden:YES]; - [progressIndicator setHidden:NO]; - [progressIndicator startAnimation:self]; - if (progress.integerValue == -1){ - [progressIndicator setIndeterminate: YES]; - } else { - [progressIndicator setIndeterminate: NO]; - [progressIndicator setDoubleValue: progress.doubleValue]; - } -} - --(void)setResult:(BOOL)result{ - _result = result; - [resultImageView setHidden:NO]; - [progressIndicator setHidden:YES]; - NSImage *resultImage = result ? [NSImage imageNamed:@"Check"] : [NSImage imageNamed:@"Multiply"]; - [resultImageView setImage:resultImage]; -} - --(void)setHudType:(HudType)hudType{ - switch (hudType) { - case HudTypeResult:{ - [resultImageView setHidden:NO]; - [progressIndicator setHidden:YES]; - }break; - - case HudTypeStatus: { - [progressIndicator setHidden:YES]; - [resultImageView setHidden:YES]; - }break; - - case HudTypeProgress: { - [progressIndicator setHidden:NO]; - [resultImageView setHidden:YES]; - }break; - - default: - break; - } -} - -- (void)dealloc { - [[NSNotificationCenter defaultCenter] removeObserver:self]; -} - -@end diff --git a/AppBox/ViewController/ABHudViewController/ABHudViewController.swift b/AppBox/ViewController/ABHudViewController/ABHudViewController.swift new file mode 100644 index 00000000..3c7eb9de --- /dev/null +++ b/AppBox/ViewController/ABHudViewController/ABHudViewController.swift @@ -0,0 +1,192 @@ +// +// ABHudViewController.swift +// AppBox + +import AppKit +import SwiftUI + +// MARK: - HUD state (drives the SwiftUI island) + +private enum HudMode { + case progress + case status + case result +} + +private final class HudState: ObservableObject { + @Published var status: String = "" + @Published var mode: HudMode = .progress + @Published var progress: Double? = nil + @Published var success: Bool = true +} + +// MARK: - SwiftUI HUD content (a centered, 70%-black rounded box) + +private struct HudContentView: View { + @ObservedObject var state: HudState + + var body: some View { + VStack(spacing: 8) { + switch state.mode { + case .progress: + Group { + if let fraction = state.progress { + ProgressView(value: fraction, total: 1) + } else { + ProgressView() + } + } + .progressViewStyle(.linear) + .frame(width: 110) + .tint(.white) + .animation(.easeInOut(duration: 0.3), value: state.progress) + case .result: + Image(state.success ? "Check" : "Multiply") + .resizable() + .scaledToFit() + .frame(width: 28, height: 28) + case .status: + EmptyView() + } + + if !state.status.isEmpty { + Text(state.status) + .font(IslandTypography.body.monospaced()) + .foregroundStyle(.white) + .multilineTextAlignment(.center) + .fixedSize(horizontal: false, vertical: true) + .contentTransition(.numericText()) + .animation(.easeInOut(duration: 0.25), value: state.status) + } + } + .frame(maxWidth: .infinity, maxHeight: .infinity) + .background(Color.black.opacity(0.75)) + } +} + +// MARK: - Full-bleed click blocker + +/// Swallows every mouse event in its bounds so the host view's content can't be interacted with while the HUD is up — the same role the nib's `DisabledView` root view played. +private final class HudContainerView: NSView { + override func hitTest(_ point: NSPoint) -> NSView? { + let local = convert(point, from: superview) + return bounds.contains(local) ? self : nil + } + override func mouseDown(with event: NSEvent) { /* swallow */ } + override func rightMouseDown(with event: NSEvent) { /* swallow */ } + override func mouseDragged(with event: NSEvent) { /* swallow */ } +} + +// MARK: - The HUD view controller + +public final class ABHudViewController: NSViewController { + + private let hudState = HudState() + private weak var hudSuperView: NSView? + /// Bumped on every show so an earlier deferred `hideAllHud` can't dismiss a newer active HUD. + private var hideGeneration = 0 + + private static var huds: [ObjectIdentifier: ABHudViewController] = [:] + + /// Drop entries whose host view is gone (window closed mid-operation) — they'd otherwise leak for the app's lifetime, and a later view allocated at the recycled address would inherit them. + private static func purgeStaleEntries() { + huds = huds.filter { _, hud in hud.hudSuperView != nil } + } + + public override func loadView() { + let container = HudContainerView() + let hosting = NSHostingView(rootView: HudContentView(state: hudState).islandTypography()) + hosting.sizingOptions = [] + hosting.translatesAutoresizingMaskIntoConstraints = false + container.addSubview(hosting) + NSLayoutConstraint.activate([ + hosting.leadingAnchor.constraint(equalTo: container.leadingAnchor), + hosting.trailingAnchor.constraint(equalTo: container.trailingAnchor), + hosting.topAnchor.constraint(equalTo: container.topAnchor), + hosting.bottomAnchor.constraint(equalTo: container.bottomAnchor), + ]) + view = container + } + + // MARK: - Hud lifecycle + + /// Reuse-or-create the HUD overlaying `view`, or tear it down when `hide` is true. + @discardableResult + public static func hud(for view: NSView, hide: Bool) -> ABHudViewController? { + purgeStaleEntries() + let key = ObjectIdentifier(view) + if hide { + if let hud = huds[key] { + hud.view.removeFromSuperview() + huds.removeValue(forKey: key) + } + return nil + } + + let hud: ABHudViewController + if let existing = huds[key] { + hud = existing + } else { + hud = ABHudViewController() + hud.hudSuperView = view + huds[key] = hud + } + hud.hideGeneration += 1 + hud.view.frame = view.bounds + hud.view.autoresizingMask = [.width, .height] + if !view.subviews.contains(hud.view) { + view.addSubview(hud.view) + } + return hud + } + + // MARK: - Convenience API (the former MBProgressHUD+ProgressHud category) + + public static func showStatus(_ status: String, onView view: NSView) { + DispatchQueue.main.async { + guard let hud = hud(for: view, hide: false) else { return } + hud.hudState.status = status + hud.hudState.mode = .progress + hud.hudState.progress = nil + } + } + + public static func showStatus(_ status: String, witProgress progress: Double, onView view: NSView) { + DispatchQueue.main.async { + guard let hud = hud(for: view, hide: false) else { return } + hud.hudState.progress = progress < 0 ? nil : progress + hud.hudState.mode = .progress + hud.hudState.status = status + } + } + + public static func showStatus(_ status: String, forSuccess success: Bool, onView view: NSView) { + DispatchQueue.main.async { + guard let hud = hud(for: view, hide: false) else { return } + hud.hudState.status = status + hud.hudState.success = success + hud.hudState.mode = .result + hideAllHud(fromView: view, after: 2) + } + } + + public static func showOnlyStatus(_ status: String, onView view: NSView) { + DispatchQueue.main.async { + guard let hud = hud(for: view, hide: false) else { return } + hud.hudState.status = status + hud.hudState.mode = .status + hideAllHud(fromView: view, after: 3) + } + } + + public static func hideAllHud(fromView view: NSView, after sec: TimeInterval) { + DispatchQueue.main.async { + let key = ObjectIdentifier(view) + let generation = huds[key]?.hideGeneration + DispatchQueue.main.asyncAfter(deadline: .now() + sec) { + guard huds[key]?.hideGeneration == generation else { return } + _ = hud(for: view, hide: true) + } + } + } +} diff --git a/AppBox/ViewController/ABHudViewController/ABHudViewController.xib b/AppBox/ViewController/ABHudViewController/ABHudViewController.xib deleted file mode 100644 index d29154ba..00000000 --- a/AppBox/ViewController/ABHudViewController/ABHudViewController.xib +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/ABHudViewController/DisabledView/DisabledView.h b/AppBox/ViewController/ABHudViewController/DisabledView/DisabledView.h deleted file mode 100644 index 99a7ced1..00000000 --- a/AppBox/ViewController/ABHudViewController/DisabledView/DisabledView.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// DisabledView.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface DisabledView : NSView - -@end diff --git a/AppBox/ViewController/ABHudViewController/DisabledView/DisabledView.m b/AppBox/ViewController/ABHudViewController/DisabledView/DisabledView.m deleted file mode 100644 index 588b660f..00000000 --- a/AppBox/ViewController/ABHudViewController/DisabledView/DisabledView.m +++ /dev/null @@ -1,22 +0,0 @@ -// -// DisabledView.m -// AppBox -// -// Created by Vineet Choudhary on 30/12/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "DisabledView.h" - -@implementation DisabledView - -- (void)drawRect:(NSRect)dirtyRect { - [super drawRect:dirtyRect]; - - // Drawing code here. -} - --(void)mouseDown:(NSEvent *)theEvent{ - -} -@end diff --git a/AppBox/ViewController/DashboardViewController/DashboardView.swift b/AppBox/ViewController/DashboardViewController/DashboardView.swift new file mode 100644 index 00000000..4ddfd5ef --- /dev/null +++ b/AppBox/ViewController/DashboardViewController/DashboardView.swift @@ -0,0 +1,260 @@ +// +// DashboardView.swift +// AppBox + +import SwiftUI +import AppKit + +/// A build history entry, flattened to display strings by the host. +public final class BuildRow: NSObject { + public let recordIndex: Int + public let name: String + public let bundleId: String + public let versionBuild: String + public let shortURL: String + public let date: String + public let buildType: String + public let team: String + + public init(recordIndex: Int, name: String, bundleId: String, versionBuild: String, shortURL: String, + date: String, buildType: String, team: String) { + self.recordIndex = recordIndex + self.name = name + self.bundleId = bundleId + self.versionBuild = versionBuild + self.shortURL = shortURL + self.date = date + self.buildType = buildType + self.team = team + super.init() + } +} + +/// Bridges the build list + actions between the controller and the SwiftUI view. +public final class DashboardModel: NSObject, ObservableObject { + @Published fileprivate(set) var builds: [BuildRow] = [] + @Published fileprivate(set) var requestedShortURL: String? + + public var onCopyURL: ((Int) -> Void)? + public var onOpenURL: ((Int) -> Void)? + public var onShowQR: ((Int) -> Void)? + public var onProvisioning: ((Int) -> Void)? + public var onShowInFinder: ((Int) -> Void)? + public var onShowInDropbox: ((Int) -> Void)? + public var onDelete: ((Int) -> Void)? + + public func setBuilds(_ newBuilds: [BuildRow]) { + builds = newBuilds + } + + public func requestSelection(shortURL: String?) { + requestedShortURL = shortURL + } + + /// Distinct app names, sorted alphabetically (case-insensitive) for stable, predictable ordering — so deleting a build never reshuffles the app list by upload date. + static func orderedApps(_ builds: [BuildRow]) -> [String] { + var seen = Set() + var names: [String] = [] + for build in builds where !seen.contains(build.name) { + seen.insert(build.name) + names.append(build.name) + } + return names.sorted { $0.localizedCaseInsensitiveCompare($1) == .orderedAscending } + } +} + +struct DashboardView: View { + @ObservedObject var model: DashboardModel + // @Published ("publishing changes from within view updates"). + @State private var selectedAppName: String? + @State private var selection: Int? + + private var apps: [String] { DashboardModel.orderedApps(model.builds) } + + private var effectiveApp: String? { + if let selectedAppName, apps.contains(selectedAppName) { return selectedAppName } + return model.builds.first?.name ?? apps.first + } + + /// The selected app's builds (newest first, as delivered by the controller). + private var appBuilds: [BuildRow] { model.builds.filter { $0.name == effectiveApp } } + + /// The build to show within the app: the user's pick while it still exists, else the app's newest build. + private var effectiveSelection: Int? { + if let selection, appBuilds.contains(where: { $0.recordIndex == selection }) { + return selection + } + return appBuilds.first?.recordIndex + } + private var selectedBuild: BuildRow? { + guard let index = effectiveSelection else { return nil } + return appBuilds.first { $0.recordIndex == index } + } + + private var listSelection: Binding { + Binding(get: { effectiveSelection }, set: { selection = $0 }) + } + + var body: some View { + NavigationView { + sidebar + detail + } + .frame(minWidth: 780, idealWidth: 940, minHeight: 460, idealHeight: 600) + .onChange(of: model.requestedShortURL, initial: true) { _, _ in + selectRequestedBuild() + } + } + + private func selectRequestedBuild() { + guard let shortURL = model.requestedShortURL, !shortURL.isEmpty, + let build = model.builds.first(where: { $0.shortURL == shortURL }) else { return } + selectedAppName = build.name + selection = build.recordIndex + model.requestSelection(shortURL: nil) + } + + // MARK: Sidebar + + private var sidebar: some View { + VStack(spacing: 0) { + if !apps.isEmpty { + VStack(alignment: .leading, spacing: 6) { + Text("App").font(IslandTypography.caption).foregroundColor(.secondary) + Picker("", selection: appPickerBinding) { + ForEach(apps, id: \.self) { Text($0).font(IslandTypography.body).tag(Optional($0)) } + } + .labelsHidden() + .frame(maxWidth: .infinity) + } + .padding(12) + Divider() + } + + List(selection: listSelection) { + ForEach(appBuilds, id: \.recordIndex) { build in + buildRow(build).tag(build.recordIndex) + } + } + .listStyle(.sidebar) + .onKeyPress(.return) { + guard let index = effectiveSelection else { return .ignored } + model.onOpenURL?(index) + return .handled + } + .onDeleteCommand { + if let index = effectiveSelection { model.onDelete?(index) } + } + } + .frame(minWidth: 250, idealWidth: 285, maxWidth: 340) + } + + /// Picking an app selects it by name and resets the build pick so it re-derives to that app's newest build. + private var appPickerBinding: Binding { + Binding( + get: { effectiveApp }, + set: { newApp in + selectedAppName = newApp + selection = nil + } + ) + } + + private func buildRow(_ build: BuildRow) -> some View { + HStack(spacing: 10) { + Image(systemName: "shippingbox.fill") + .font(IslandTypography.title3).foregroundColor(.accentColor).frame(width: 22) + VStack(alignment: .leading, spacing: 2) { + Text(build.versionBuild).font(IslandTypography.body).fontWeight(.medium).lineLimit(1) + Text(build.date).font(IslandTypography.caption).foregroundColor(.secondary).lineLimit(1) + } + Spacer() + } + .padding(.vertical, 4) + } + + // MARK: Detail + + @ViewBuilder private var detail: some View { + if let build = selectedBuild { + buildDetail(build) + } else { + emptyState + } + } + + private func buildDetail(_ build: BuildRow) -> some View { + ScrollView { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + VStack(alignment: .leading, spacing: 2) { + Text(build.name).font(IslandTypography.title2).bold() + Text(build.versionBuild).font(IslandTypography.subheadline).foregroundColor(.secondary) + } + + IslandSection("Build details") { + detailRow("Bundle ID", build.bundleId) + detailRow("Version", build.versionBuild) + detailRow("Build type", build.buildType) + detailRow("Team", build.team) + detailRow("Uploaded", build.date) + detailRow("Short URL", build.shortURL) + } + + actions(recordIndex: build.recordIndex) + } + .padding(IslandMetrics.padding) + .frame(maxWidth: 620, alignment: .leading) + .frame(maxWidth: .infinity, alignment: .leading) + } + } + + private func actions(recordIndex: Int) -> some View { + VStack(alignment: .leading, spacing: 10) { + Text("Actions").font(IslandTypography.headline) + HStack(spacing: 10) { + actionButton("Open", "safari") { model.onOpenURL?(recordIndex) } + actionButton("Copy Link", "doc.on.doc") { model.onCopyURL?(recordIndex) } + actionButton("QR Code", "qrcode") { model.onShowQR?(recordIndex) } + } + HStack(spacing: 10) { + actionButton("Provisioning", "checkmark.seal") { model.onProvisioning?(recordIndex) } + actionButton("Show in Finder", "folder") { model.onShowInFinder?(recordIndex) } + actionButton("Show in Dropbox", "shippingbox") { model.onShowInDropbox?(recordIndex) } + } + Divider().padding(.vertical, 4) + Button(role: .destructive) { model.onDelete?(recordIndex) } label: { + Label("Delete Build", systemImage: "trash") + } + } + } + + private func actionButton(_ title: String, _ systemImage: String, action: @escaping () -> Void) -> some View { + Button(action: action) { Label(title, systemImage: systemImage) } + } + + private func detailRow(_ label: String, _ value: String) -> some View { + HStack(alignment: .firstTextBaseline, spacing: 8) { + Text(label).font(IslandTypography.caption).foregroundColor(.secondary).frame(width: 96, alignment: .leading) + Text(value.isEmpty ? "—" : value).textSelection(.enabled) + .frame(maxWidth: .infinity, alignment: .leading) + } + } + + private var emptyState: some View { + VStack(spacing: 12) { + Image(systemName: "shippingbox").font(IslandTypography.system(46)).foregroundColor(.secondary) + Text("No builds yet").font(IslandTypography.title3) + Text("Builds you upload will appear here.").foregroundColor(.secondary) + } + .frame(maxWidth: .infinity, maxHeight: .infinity) + } +} + +/// Wraps the SwiftUI view in an NSView for the controller to host. +public final class DashboardHost: NSObject { + public static func makeView(model: DashboardModel) -> NSView { + let host = NSHostingView(rootView: DashboardView(model: model).islandTypography()) + host.sizingOptions = [] + return host + } +} diff --git a/AppBox/ViewController/DashboardViewController/DashboardViewController.h b/AppBox/ViewController/DashboardViewController/DashboardViewController.h deleted file mode 100644 index 53357d52..00000000 --- a/AppBox/ViewController/DashboardViewController/DashboardViewController.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// DashboardViewController.h -// AppBox -// -// Created by Vineet Choudhary on 19/09/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - - -#import "QRCodeViewController.h" -#import "Project+CoreDataClass.h" -#import "UploadRecord+CoreDataClass.h" -#import "ProvisioningDetailsViewController.h" - -@interface DashboardViewController : NSViewController { - __weak IBOutlet NSLayoutConstraint *actionViewHeightConstraint; -} -@property (weak) IBOutlet NSView *openURLView; -@property (weak) IBOutlet NSView *cloneURLView; -@property (weak) IBOutlet NSView *showQRCodeView; -@property (weak) IBOutlet NSView *deleteBuildView; -@property (weak) IBOutlet NSView *provisioningProfileView; -@property (weak) IBOutlet NSView *showInFinderView; -@property (weak) IBOutlet NSView *showInDropboxView; - -@property (weak) IBOutlet NSTableView *dashboardTableView; -@end diff --git a/AppBox/ViewController/DashboardViewController/DashboardViewController.m b/AppBox/ViewController/DashboardViewController/DashboardViewController.m deleted file mode 100644 index 9593db7f..00000000 --- a/AppBox/ViewController/DashboardViewController/DashboardViewController.m +++ /dev/null @@ -1,276 +0,0 @@ -// -// DashboardViewController.m -// AppBox -// -// Created by Vineet Choudhary on 19/09/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "DashboardViewController.h" - -#define ShortURLCellId @"ShortURLCellId" - -typedef enum : NSUInteger { - DashBoardColumnName = 0, - DashBoardColumnBundleIdentifer, - DashBoardColumnVersion, - DashBoardColumnShortURL, - DashBoardColumnDate, - DashBoardColumnBuidlType, - DashBoardColumnScheme, - DashBoardColumnTeamId -} DashBoardColumn; - - -@implementation DashboardViewController{ - NSMutableArray *uploadRecords; - UploadManager *uploadManager; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - - //Setup TableView - [_dashboardTableView setAllowsEmptySelection:NO]; - - //Load data - [self loadData]; - [self setupUploadManager]; - - //Coredata changes notification - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loadData) name:NSManagedObjectContextObjectsDidChangeNotification object:nil]; -} - --(void)viewDidDisappear{ - [super viewDidDisappear]; - [[NSNotificationCenter defaultCenter] removeObserver:self]; -} - --(void)setupUploadManager{ - uploadManager = [[UploadManager alloc] init]; - [uploadManager setCurrentViewController:self]; - __weak typeof(self) weakSelf = self; - __weak UploadManager *weakUploadManager = uploadManager; - [uploadManager setCompletionBlock:^{ - [ABHudViewController hideAllHudFromView:weakSelf.view after:0]; - if (weakUploadManager.uploadRecord){ - [[[AppDelegate appDelegate] managedObjectContext] deleteObject: weakUploadManager.uploadRecord]; - } - [[AppDelegate appDelegate] saveCoreDataChanges]; - [weakSelf loadData]; - }]; - - [uploadManager setErrorBlock:^(NSError *error, BOOL terminate){ - [ABHudViewController hideAllHudFromView:weakSelf.view after:0]; - }]; -} - --(void)loadData{ - NSError *error; - NSFetchRequest *fetchRequest = [ABUploadRecord fetchRequest]; - NSSortDescriptor *sortDescriptor = [NSSortDescriptor sortDescriptorWithKey:@"datetime" ascending:NO]; - [fetchRequest setSortDescriptors:@[sortDescriptor]]; - NSArray *fetchResults = [[[AppDelegate appDelegate] managedObjectContext] executeFetchRequest:fetchRequest error:&error]; - - //remove any existing upload request - if (uploadRecords){ - [uploadRecords removeAllObjects]; - } - - //handle fetchrequest error, manage action view and reload data - if (error){ - [Common showAlertWithTitle:@"Error" andMessage:error.localizedDescription]; - }else if (fetchResults.count > 0){ - uploadRecords = [NSMutableArray arrayWithArray:fetchResults]; - } else if (fetchResults.count == 0) { - [self setActionButtonViewHidden:YES]; - } - [_dashboardTableView reloadData]; -} - --(void)setActionButtonViewHidden:(BOOL)hidden{ - [NSAnimationContext runAnimationGroup:^(NSAnimationContext * _Nonnull context) { - context.duration = 0.25; - context.allowsImplicitAnimation = YES; - actionViewHeightConstraint.constant = hidden ? 0 : 65; - self.openURLView.hidden = hidden; - self.cloneURLView.hidden = hidden; - self.showQRCodeView.hidden = hidden; - self.deleteBuildView.hidden = hidden; - self.provisioningProfileView.hidden = hidden; - self.showInFinderView.hidden = hidden; - self.showInDropboxView.hidden = hidden; - [self.view layoutSubtreeIfNeeded]; - } completionHandler:nil]; -} - -//MARK: - NSTableView Delegate and DataSource --(NSInteger)numberOfRowsInTableView:(NSTableView *)tableView{ - return uploadRecords.count; -} - --(NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row{ - if (row < 0 || row >= (NSInteger)uploadRecords.count) { - return nil; - } - ABUploadRecord *uploadRecord = [uploadRecords objectAtIndex:row]; - NSTableCellView *cell = [tableView makeViewWithIdentifier:ShortURLCellId owner:nil]; - - //Name - if (tableColumn == [tableView.tableColumns objectAtIndex:DashBoardColumnName]) { - NSString *name = uploadRecord.project.name == nil ? @"N/A" : uploadRecord.project.name; - [cell.textField setStringValue: name]; - } - - //Bundle Identifer - else if (tableColumn == [tableView.tableColumns objectAtIndex:DashBoardColumnBundleIdentifer]) { - NSString *bundleIdentifer = uploadRecord.project.bundleIdentifier == nil ? @"N/A" : uploadRecord.project.bundleIdentifier; - [cell.textField setStringValue: bundleIdentifer]; - } - - //Version and Build - else if (tableColumn == [tableView.tableColumns objectAtIndex: DashBoardColumnVersion]){ - NSString *version = uploadRecord.version == nil ? @"N/A" : uploadRecord.version; - NSString *build = uploadRecord.build == nil ? @"N/A" : uploadRecord.build; - [cell.textField setStringValue:[NSString stringWithFormat:@"%@ (%@)", version, build]]; - } - - //Short URL - else if (tableColumn == [tableView.tableColumns objectAtIndex:DashBoardColumnShortURL]){ - NSString *shortURL = uploadRecord.shortURL == nil ? @"N/A" : uploadRecord.shortURL; - [cell.textField setStringValue:shortURL]; - } - - //Upload Date - else if (tableColumn == [tableView.tableColumns objectAtIndex:DashBoardColumnDate]){ - NSString *uploadDate = uploadRecord.datetime == nil ? @"N/A" : uploadRecord.datetime.string; - [cell.textField setStringValue:uploadDate]; - } - - //Build Type - else if (tableColumn == [tableView.tableColumns objectAtIndex:DashBoardColumnBuidlType]){ - if (uploadRecord.provisioningProfile && uploadRecord.provisioningProfile.buildType) { - [cell.textField setStringValue:uploadRecord.provisioningProfile.buildType.capitalizedString]; - } else { - [cell.textField setStringValue:@"N/A"]; - } - } - - //TeamId - else if (tableColumn == [tableView.tableColumns objectAtIndex:DashBoardColumnTeamId]){ - if (uploadRecord.provisioningProfile && uploadRecord.provisioningProfile.teamId && uploadRecord.provisioningProfile.teamName) { - [cell.textField setStringValue:[NSString stringWithFormat:@"%@ - %@", uploadRecord.provisioningProfile.teamId, uploadRecord.provisioningProfile.teamName]]; - } else { - [cell.textField setStringValue:@"N/A"]; - } - } - return cell; -} - --(BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(NSInteger)row{ - [self setActionButtonViewHidden:NO]; - return YES; -} - -//MARK: - Build Action -- (IBAction)copyURLButtonTapped:(NSButton *)sender { - ABUploadRecord *uploadRecord = [self selectedUploadRecord]; - if (uploadRecord){ - [[NSPasteboard generalPasteboard] clearContents]; - [[NSPasteboard generalPasteboard] setString:uploadRecord.shortURL forType:NSPasteboardTypeString]; - [ABHudViewController showOnlyStatus:@"Copied!!" onView:self.view]; - } -} - -- (IBAction)deleteBuildButtonTapped:(NSButton *)sender { - ABUploadRecord *uploadRecord = [self selectedUploadRecord]; - - if (uploadRecord){ - //Show Delete Alert - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Are you sure you want to delete this build?"]; - [alert setInformativeText:[NSString stringWithFormat:@"You're about to delete \"%@-%@(%@)\". This is permanent!", uploadRecord.project.name, uploadRecord.version, uploadRecord.build]]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle: @"Delete from Dropbox and Dashboard"]; - [alert addButtonWithTitle: @"Delete only from Dashboard"]; - [alert addButtonWithTitle: @"Cancel"]; - NSModalResponse modelResponse = [alert runModal]; - - //delete from dropbox and dashboard - if (modelResponse == NSAlertFirstButtonReturn) { - [uploadManager setUploadRecord: uploadRecord]; - [uploadManager setIpaUploadInfo: uploadRecord.ipaUploadInfo]; - [uploadManager deleteBuildFromDropboxAndDashboard]; - } - - //delete only from dashboard - else if (modelResponse == NSAlertSecondButtonReturn) { - [uploadManager setUploadRecord: uploadRecord]; - [uploadManager setIpaUploadInfo: uploadRecord.ipaUploadInfo]; - [uploadManager deleteBuildFromDashboard]; - } - } -} - -- (IBAction)provisioningDetailsButtonTapped:(NSButton *)sender { - ABUploadRecord *uploadRecord = [self selectedUploadRecord]; - if (uploadRecord){ - if (uploadRecord.provisioningProfile){ - ProvisioningDetailsViewController *provisioningDetailsViewController = [[ProvisioningDetailsViewController alloc] initWithNibName:NSStringFromClass([ProvisioningDetailsViewController class]) bundle:nil]; - [provisioningDetailsViewController setUploadRecord:uploadRecord]; - [self presentViewControllerAsSheet:provisioningDetailsViewController]; - } else { - [Common showAlertWithTitle:@"Information" andMessage:@"Provisioning profiles details not available for this build."]; - } - } -} - -- (IBAction)openURLButtonTapped:(NSButton *)sender { - ABUploadRecord *uploadRecord = [self selectedUploadRecord]; - if (uploadRecord){ - NSURL *analyticsURL = [NSURL URLWithString:uploadRecord.shortURL]; - [[NSWorkspace sharedWorkspace] openURL:analyticsURL]; - } -} - -- (IBAction)showQRCodeButtonTapped:(NSButton *)sender { - NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Main" bundle:nil]; - QRCodeViewController *qrCodeViewController = [storyBoard instantiateControllerWithIdentifier:NSStringFromClass([QRCodeViewController class])]; - [qrCodeViewController setUploadRecord:[self selectedUploadRecord]]; - [self presentViewControllerAsSheet:qrCodeViewController]; -} - - - -- (IBAction)showInFinderButtonTapped:(NSButton *)sender { - ABUploadRecord *uploadRecord = [self selectedUploadRecord]; - if (uploadRecord){ - BOOL isDirectory = NO; - if ([[NSFileManager defaultManager] fileExistsAtPath:uploadRecord.localBuildPath isDirectory:&isDirectory]) { - NSURL *fileURL = [NSURL fileURLWithPath:uploadRecord.localBuildPath]; - [[NSWorkspace sharedWorkspace] activateFileViewerSelectingURLs:@[fileURL]]; - } else { - [Common showAlertWithTitle:@"Error" andMessage:@"File not found."]; - } - } -} - -- (IBAction)showInDropBoxButtonTapped:(NSButton *)sender { - ABUploadRecord *uploadRecord = [self selectedUploadRecord]; - if (uploadRecord){ - NSString *dropboxURLString = [NSString stringWithFormat:@"%@%@", abDropBoxAppBaseURL, uploadRecord.dbDirectroy]; - NSURL *dropboxURL = [NSURL URLWithString: dropboxURLString]; - [[NSWorkspace sharedWorkspace] openURL:dropboxURL]; - } -} - -//MARK: - Helper Method --(ABUploadRecord *)selectedUploadRecord{ - NSInteger selectedRow = _dashboardTableView.selectedRow; - if (selectedRow < 0 || uploadRecords == nil || selectedRow >= (NSInteger)uploadRecords.count){ - return nil; - } - return [uploadRecords objectAtIndex:selectedRow]; -} - -@end diff --git a/AppBox/ViewController/DashboardViewController/DashboardViewController.swift b/AppBox/ViewController/DashboardViewController/DashboardViewController.swift new file mode 100644 index 00000000..5118e947 --- /dev/null +++ b/AppBox/ViewController/DashboardViewController/DashboardViewController.swift @@ -0,0 +1,227 @@ +// +// DashboardViewController.swift +// AppBox + +import AppKit +import AppBoxCore + +public final class DashboardViewController: NSViewController { + + private var uploadRecords: [ABUploadRecord] = [] + private var uploadManager: UploadManager? + private var model: DashboardModel? + + public override func loadView() { + let model = DashboardModel() + self.model = model + model.onCopyURL = { [weak self] index in + self?.copyURL(at: index) + } + model.onOpenURL = { [weak self] index in + self?.openURL(at: index) + } + model.onShowQR = { [weak self] index in + self?.showQRCode(at: index) + } + model.onProvisioning = { [weak self] index in + self?.showProvisioningDetails(at: index) + } + model.onShowInFinder = { [weak self] index in + self?.showInFinder(at: index) + } + model.onShowInDropbox = { [weak self] index in + self?.showInDropbox(at: index) + } + model.onDelete = { [weak self] index in + self?.deleteBuild(at: index) + } + + let host = DashboardHost.makeView(model: model) + let container = NSView(frame: NSRect(x: 0, y: 0, width: 940, height: 600)) + host.translatesAutoresizingMaskIntoConstraints = false + container.addSubview(host) + NSLayoutConstraint.activate([ + host.topAnchor.constraint(equalTo: container.topAnchor), + host.bottomAnchor.constraint(equalTo: container.bottomAnchor), + host.leadingAnchor.constraint(equalTo: container.leadingAnchor), + host.trailingAnchor.constraint(equalTo: container.trailingAnchor), + ]) + view = container + } + + public override func viewDidLoad() { + super.viewDidLoad() + setupUploadManager() + } + + public override func viewWillAppear() { + super.viewWillAppear() + loadData() + NotificationCenter.default.addObserver( + self, + selector: #selector(loadData), + name: .NSManagedObjectContextObjectsDidChange, + object: nil) + } + + public override func viewDidDisappear() { + super.viewDidDisappear() + NotificationCenter.default.removeObserver( + self, + name: .NSManagedObjectContextObjectsDidChange, + object: nil) + } + + private func setupUploadManager() { + let manager = UploadManager() + manager.currentViewController = self + uploadManager = manager + manager.completionBlock = { [weak self, weak manager] in + guard let self else { return } + ABHudViewController.hideAllHud(fromView: self.view, after: 0) + if let record = manager?.uploadRecord { + AppDelegate.appDelegate.managedObjectContext?.delete(record) + } + AppDelegate.appDelegate.saveCoreDataChanges() + self.loadData() + } + manager.errorBlock = { [weak self] _, _ in + guard let self else { return } + ABHudViewController.hideAllHud(fromView: self.view, after: 0) + } + } + + public func revealBuild(shortURL: String) { + loadData() + model?.requestSelection(shortURL: shortURL) + } + + @objc private func loadData() { + let fetch = NSFetchRequest(entityName: "UploadRecord") + fetch.sortDescriptors = [NSSortDescriptor(key: "datetime", ascending: false)] + do { + uploadRecords = try AppDelegate.appDelegate.managedObjectContext?.fetch(fetch) ?? [] + } catch { + _ = Common.showAlert(withTitle: "Error", andMessage: error.localizedDescription) + uploadRecords = [] + } + let rows = uploadRecords.enumerated().map { buildRow(from: $0.element, index: $0.offset) } + model?.setBuilds(rows) + } + + // MARK: - Row mapping + + private func buildRow(from record: ABUploadRecord, index: Int) -> BuildRow { + let name = record.project?.name ?? "N/A" + let bundleId = record.project?.bundleIdentifier ?? "N/A" + let version = record.version ?? "N/A" + let build = record.build ?? "N/A" + let versionBuild = "\(version) (\(build))" + let shortURL = record.shortURL ?? "N/A" + let date = (record.datetime as NSDate?)?.string ?? "N/A" + let buildType = record.provisioningProfile?.buildType?.capitalized ?? "N/A" + let team: String + if let teamId = record.provisioningProfile?.teamId, let teamName = record.provisioningProfile?.teamName { + team = "\(teamId) - \(teamName)" + } else { + team = "N/A" + } + return BuildRow( + recordIndex: index, + name: name, + bundleId: bundleId, + versionBuild: versionBuild, + shortURL: shortURL, + date: date, + buildType: buildType, + team: team) + } + + private func record(at index: Int) -> ABUploadRecord? { + guard index >= 0, index < uploadRecords.count else { return nil } + return uploadRecords[index] + } + + // MARK: - Build actions + + private func copyURL(at index: Int) { + guard let record = record(at: index), let shortURL = record.shortURL else { return } + NSPasteboard.general.clearContents() + NSPasteboard.general.setString(shortURL, forType: .string) + ABHudViewController.showOnlyStatus("Copied!!", onView: view) + } + + private func openURL(at index: Int) { + guard let record = record(at: index), let shortURL = record.shortURL, let url = URL(string: shortURL) else { + return + } + NSWorkspace.shared.open(url) + } + + private func showQRCode(at index: Int) { + guard let record = record(at: index) else { + return + } + let qr = QRCodeViewController() + qr.uploadRecord = record + presentAsSheet(qr) + } + + private func showProvisioningDetails(at index: Int) { + guard let record = record(at: index) else { + return + } + if record.provisioningProfile != nil { + let vc = ProvisioningDetailsViewController() + vc.uploadRecord = record + presentAsSheet(vc) + } else { + _ = Common.showAlert( + withTitle: "Information", + andMessage: "Provisioning profiles details not available for this build.") + } + } + + private func showInFinder(at index: Int) { + guard let record = record(at: index), let localBuildPath = record.localBuildPath else { + return + } + if FileManager.default.fileExists(atPath: localBuildPath) { + NSWorkspace.shared.activateFileViewerSelecting([URL(fileURLWithPath: localBuildPath)]) + } else { + _ = Common.showAlert(withTitle: "Error", andMessage: "File not found.") + } + } + + private func showInDropbox(at index: Int) { + guard let record = record(at: index) else { return } + let base = "https://www.dropbox.com/home/Apps/AppBox%20-%20Build%2C%20Test%20and%20Distribute%20iOS%20Apps" + if let url = URL(string: "\(base)\(record.dbDirectroy ?? "")") { + NSWorkspace.shared.open(url) + } + } + + private func deleteBuild(at index: Int) { + guard let record = record(at: index) else { return } + let alert = NSAlert() + alert.messageText = "Are you sure you want to delete this build?" + alert.informativeText = "You're about to delete \"\(record.project?.name ?? "")-\(record.version ?? "")(\(record.build ?? ""))\". This is permanent!" + alert.alertStyle = .informational + alert.addButton(withTitle: "Delete from Dropbox and Dashboard") + alert.addButton(withTitle: "Delete only from Dashboard") + alert.addButton(withTitle: "Cancel") + + switch alert.runModal() { + case .alertFirstButtonReturn: + uploadManager?.uploadRecord = record + uploadManager?.ipaUploadInfo = record.ipaUploadInfo + uploadManager?.deleteBuildFromDropboxAndDashboard() + case .alertSecondButtonReturn: + uploadManager?.uploadRecord = record + uploadManager?.ipaUploadInfo = record.ipaUploadInfo + uploadManager?.deleteBuildFromDashboard() + default: + break + } + } +} diff --git a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsView.swift b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsView.swift new file mode 100644 index 00000000..ed52634e --- /dev/null +++ b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsView.swift @@ -0,0 +1,114 @@ +// +// ProvisioningDetailsView.swift +// AppBox + +import SwiftUI +import AppKit +import AppBoxCore + +struct ProvisioningDetailsInfo { + let title: String + let uuid: String + let buildType: String + let createDate: String + let expirationDate: String + let team: String + let devices: String + let deviceIds: [String] + let mobileProvisionPath: String +} + +struct ProvisioningDetailsView: View { + let info: ProvisioningDetailsInfo + let onClose: () -> Void + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + Text(info.title).font(IslandTypography.headline) + + GroupBox { + VStack(alignment: .leading, spacing: IslandMetrics.fieldSpacing) { + row("UUID", info.uuid) + row("Type", info.buildType) + row("Created", info.createDate) + row("Expires", info.expirationDate) + row("Team", info.team) + row("Devices", info.devices) + } + .frame(maxWidth: .infinity, alignment: .leading) + .padding(6) + } + + HStack(spacing: 10) { + Button("Copy Device UUIDs", action: copyDeviceUUIDs) + Button("Show in Finder", action: showInFinder) + Spacer() + Button("Close", action: onClose).keyboardShortcut(.cancelAction) + } + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.sheetWidth) + } + + private func row(_ label: String, _ value: String) -> some View { + HStack(alignment: .firstTextBaseline, spacing: 8) { + Text(label).font(IslandTypography.caption).foregroundColor(.secondary).frame(width: 90, alignment: .leading) + Text(value.isEmpty ? "—" : value).textSelection(.enabled).frame(maxWidth: .infinity, alignment: .leading) + } + } + + private func copyDeviceUUIDs() { + let joined = info.deviceIds.map { "\($0),\n" }.joined() + NSPasteboard.general.clearContents() + NSPasteboard.general.setString(joined, forType: .string) + } + + private func showInFinder() { + if FileManager.default.fileExists(atPath: info.mobileProvisionPath) { + NSWorkspace.shared.activateFileViewerSelecting([URL(fileURLWithPath: info.mobileProvisionPath)]) + } else { + let alert = NSAlert() + alert.messageText = "Error" + alert.informativeText = "File not found." + alert.runModal() + } + } +} + +public final class ProvisioningDetailsHost: NSObject { + public static func makeView(record: ABUploadRecord, onClose: @escaping () -> Void) -> NSView { + NSHostingView(rootView: ProvisioningDetailsView(info: info(from: record), onClose: onClose).islandTypography()) + } + + private static func info(from record: ABUploadRecord) -> ProvisioningDetailsInfo { + let profile = record.provisioningProfile + + let formatter = DateFormatter() + formatter.dateFormat = "YYYY-MM-dd, hh:mm a" + func dateString(_ date: Date?) -> String { date.map { formatter.string(from: $0) } ?? "" } + + let deviceIds = (profile?.provisionedDevices?.array as? [ABProvisionedDevice])?.compactMap { $0.deviceId } ?? [] + let buildType = profile?.buildType ?? "" + let devices: String + if buildType == "enterprise" { + devices = "∞ Devices" + } else { + let count = profile?.provisionedDevices?.count ?? 0 + devices = "\(count) Device\(count > 1 ? "s" : "")" + } + + let uuid = profile?.uuid ?? "" + let path = ("~/Library/MobileDevice/Provisioning Profiles/\(uuid).mobileprovision" as NSString).expandingTildeInPath + + return ProvisioningDetailsInfo( + title: "\(record.project?.name ?? "") - Provisioning Profile Details", + uuid: uuid, + buildType: buildType.capitalized, + createDate: dateString(profile?.createDate), + expirationDate: dateString(profile?.expirationDate), + team: "\(profile?.teamId ?? "") - \(profile?.teamName ?? "")", + devices: devices, + deviceIds: deviceIds, + mobileProvisionPath: path) + } +} diff --git a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.h b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.h deleted file mode 100644 index 49e25f1b..00000000 --- a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.h +++ /dev/null @@ -1,27 +0,0 @@ -// -// ProvisioningDetailsViewController.h -// AppBox -// -// Created by Vineet Choudhary on 29/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#import "Project+CoreDataProperties.h" -#import "ProvisionedDevice+CoreDataProperties.h" - -@interface ProvisioningDetailsViewController : NSViewController{ - - __weak IBOutlet NSTextField *labelTitle; - __weak IBOutlet NSTextField *labelUUID; - __weak IBOutlet NSTextField *labelTeam; - __weak IBOutlet NSTextField *labelType; - __weak IBOutlet NSTextField *labelCreationDate; - __weak IBOutlet NSTextField *labelExpirationDate; - __weak IBOutlet NSTextField *labelProvisionedDevices; -} - -@property(nonatomic, strong) ABUploadRecord *uploadRecord; - -@end diff --git a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.m b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.m deleted file mode 100644 index d80977cb..00000000 --- a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.m +++ /dev/null @@ -1,69 +0,0 @@ -// -// ProvisioningDetailsViewController.m -// AppBox -// -// Created by Vineet Choudhary on 29/10/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "ProvisioningDetailsViewController.h" - -@interface ProvisioningDetailsViewController () - -@end - -@implementation ProvisioningDetailsViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - - //title label - [labelTitle setStringValue:[NSString stringWithFormat:@"%@ - Provisioning Profile Details", self.uploadRecord.project.name]]; - - //uuid, type, create & expiration date label - [labelUUID setStringValue:self.uploadRecord.provisioningProfile.uuid]; - [labelCreationDate setStringValue:self.uploadRecord.provisioningProfile.createDate.string]; - [labelType setStringValue:self.uploadRecord.provisioningProfile.buildType.capitalizedString]; - [labelExpirationDate setStringValue:self.uploadRecord.provisioningProfile.expirationDate.string]; - - //team label - [labelTeam setStringValue:[NSString stringWithFormat:@"%@ - %@", self.uploadRecord.provisioningProfile.teamId, self.uploadRecord.provisioningProfile.teamName]]; - - //device label - if ([self.uploadRecord.provisioningProfile.buildType isEqualToString: BuildTypeEnterprise]){ - [labelProvisionedDevices setStringValue:[NSString stringWithFormat:@"∞ Devices"]]; - } else { - NSNumber *totalDevices = [NSNumber numberWithInteger:self.uploadRecord.provisioningProfile.provisionedDevices.count]; - NSString *postFix = totalDevices.integerValue > 1 ? @"s" : @""; - [labelProvisionedDevices setStringValue:[NSString stringWithFormat:@"%@ Device%@", totalDevices, postFix]]; - } -} - - -- (IBAction)copyAllDeviceUUIDTapped:(NSButton *)sender { - NSMutableString *devices = [[NSMutableString alloc] init]; - [self.uploadRecord.provisioningProfile.provisionedDevices enumerateObjectsUsingBlock:^(ABProvisionedDevice * _Nonnull obj, NSUInteger idx, BOOL * _Nonnull stop) { - [devices appendFormat:@"%@,\n",obj.deviceId]; - }]; - [[NSPasteboard generalPasteboard] clearContents]; - [[NSPasteboard generalPasteboard] setString:devices forType:NSPasteboardTypeString]; -} - -- (IBAction)showInFinderButtonTapped:(NSButton *)sender { - NSString *path = [NSString stringWithFormat:@"~/Library/MobileDevice/Provisioning Profiles/%@.mobileprovision", self.uploadRecord.provisioningProfile.uuid]; - path = [path stringByExpandingTildeInPath]; - BOOL isDirectory = NO; - if ([[NSFileManager defaultManager] fileExistsAtPath:path isDirectory:&isDirectory]) { - NSURL *fileURL = [NSURL fileURLWithPath:path]; - [[NSWorkspace sharedWorkspace] activateFileViewerSelectingURLs:@[fileURL]]; - } else { - [Common showAlertWithTitle:@"Error" andMessage:@"File not found."]; - } -} - -- (IBAction)closeButtonTapped:(NSButton *)sender { - [self dismissController:self]; -} - - -@end diff --git a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.swift b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.swift new file mode 100644 index 00000000..30aa9487 --- /dev/null +++ b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.swift @@ -0,0 +1,21 @@ +// +// ProvisioningDetailsViewController.swift +// AppBox + +import AppKit +import AppBoxCore + +public final class ProvisioningDetailsViewController: NSViewController { + + public var uploadRecord: ABUploadRecord? + + public override func loadView() { + guard let uploadRecord else { + view = NSView() + return + } + view = ProvisioningDetailsHost.makeView(record: uploadRecord, onClose: { [weak self] in + self?.dismiss(nil) + }) + } +} diff --git a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.xib b/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.xib deleted file mode 100644 index 0c5cf302..00000000 --- a/AppBox/ViewController/DashboardViewController/ProvisioningDetailsViewController/ProvisioningDetailsViewController.xib +++ /dev/null @@ -1,273 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/DropboxViewController/DropboxLoginView.swift b/AppBox/ViewController/DropboxViewController/DropboxLoginView.swift new file mode 100644 index 00000000..5860788c --- /dev/null +++ b/AppBox/ViewController/DropboxViewController/DropboxLoginView.swift @@ -0,0 +1,54 @@ +// +// DropboxLoginView.swift +// AppBox + +import SwiftUI +import AppKit + +struct DropboxLoginView: View { + let quitTitle: String + let onConnect: () -> Void + let onQuit: () -> Void + + var body: some View { + VStack(spacing: 16) { + Image(systemName: "shippingbox.fill") + .font(IslandTypography.system(44)) + .foregroundColor(.accentColor) + + Text("Connect to Dropbox").font(IslandTypography.title3).fontWeight(.medium) + + Text("AppBox uploads your builds to Dropbox and only accesses its own app folder.") + .multilineTextAlignment(.center) + .foregroundColor(.secondary) + .fixedSize(horizontal: false, vertical: true) + + VStack(spacing: 8) { + Button("Connect to Dropbox", action: onConnect) + .keyboardShortcut(.defaultAction) + .buttonStyle(.borderedProminent) + .controlSize(.large) + Button(quitTitle, action: onQuit) + .keyboardShortcut(.cancelAction) + .buttonStyle(.plain) + .foregroundColor(.secondary) + } + .padding(.top, 4) + } + .padding(IslandMetrics.padding) + .frame(width: 420) + } +} + +public final class DropboxLoginHost: NSObject { + public static func makeView( + quitTitle: String, + onConnect: @escaping () -> Void, + onQuit: @escaping () -> Void) -> NSView { + let dbLoginView = DropboxLoginView( + quitTitle: quitTitle, + onConnect: onConnect, + onQuit: onQuit).islandTypography() + return NSHostingView(rootView: dbLoginView) + } +} diff --git a/AppBox/ViewController/DropboxViewController/DropboxViewController.h b/AppBox/ViewController/DropboxViewController/DropboxViewController.h deleted file mode 100644 index dcfa4fcb..00000000 --- a/AppBox/ViewController/DropboxViewController/DropboxViewController.h +++ /dev/null @@ -1,19 +0,0 @@ -// -// DropboxViewController.h -// AppBox -// -// Created by Vineet Choudhary on 28/11/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -@interface DropboxViewController : NSViewController{ - __weak IBOutlet NSButton *buttonQuit; - __weak IBOutlet NSButton *buttonConnectDropbox; -} - -- (IBAction)buttonQuitTapped:(NSButton *)sender; -- (IBAction)buttonConnectDropboxTapped:(NSButton *)sender; - -@end diff --git a/AppBox/ViewController/DropboxViewController/DropboxViewController.m b/AppBox/ViewController/DropboxViewController/DropboxViewController.m deleted file mode 100644 index 0c8b2eb7..00000000 --- a/AppBox/ViewController/DropboxViewController/DropboxViewController.m +++ /dev/null @@ -1,48 +0,0 @@ -// -// DropboxViewController.m -// AppBox -// -// Created by Vineet Choudhary on 28/11/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "DropboxViewController.h" - - -@implementation DropboxViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - - //DB Authentication Notification - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleLoggedInNotification:) name:abDropBoxLoggedInNotification object:nil]; - - //Set quit button title - [buttonQuit setTitle:[UserData isLoggedIn] ? @"Cancel" : @"Quit"]; -} - -- (IBAction)buttonConnectDropboxTapped:(NSButton *)sender { - //Authenticate user - [DBClientsManager authorizeFromControllerDesktopV2:[NSWorkspace sharedWorkspace] controller:self loadingStatusDelegate:nil openURL:^(NSURL * _Nonnull url) { - [[NSWorkspace sharedWorkspace] openURL:url]; - } scopeRequest:nil]; -} - -- (IBAction)buttonQuitTapped:(NSButton *)sender { - [self dismissController:self]; - if (![UserData isLoggedIn]) { - [NSApp terminate:self]; - } -} - -//MARK: - Event Handler -- (void)handleLoggedInNotification:(NSNotification *)notification{ - [[NSApplication sharedApplication] updateAccountsMenu]; - [self dismissController:self]; -} - -- (void)dealloc { - [[NSNotificationCenter defaultCenter] removeObserver:self]; -} - -@end diff --git a/AppBox/ViewController/DropboxViewController/DropboxViewController.swift b/AppBox/ViewController/DropboxViewController/DropboxViewController.swift new file mode 100644 index 00000000..25cc8ebf --- /dev/null +++ b/AppBox/ViewController/DropboxViewController/DropboxViewController.swift @@ -0,0 +1,50 @@ +// +// DropboxViewController.swift +// AppBox + +import AppKit +import AppBoxCore + +public final class DropboxViewController: NSViewController { + + public override func loadView() { + let quitTitle = UserData.isLoggedIn() ? "Cancel" : "Quit" + view = DropboxLoginHost.makeView( + quitTitle: quitTitle, + onConnect: { [weak self] in + self?.connectDropbox() + }, + onQuit: { [weak self] in + self?.quitTapped() + }) + } + + public override func viewDidLoad() { + super.viewDidLoad() + NotificationCenter.default.addObserver( + self, + selector: #selector(handleLoggedInNotification(_:)), + name: Notification.Name("DropBoxLoggedInNotification"), + object: nil) + } + + private func connectDropbox() { + DropboxLogin.present(from: self) + } + + private func quitTapped() { + dismiss(self) + if !UserData.isLoggedIn() { + NSApp.terminate(self) + } + } + + @objc private func handleLoggedInNotification(_ notification: Notification) { + NSApp.updateAccountsMenu() + dismiss(self) + } + + deinit { + NotificationCenter.default.removeObserver(self) + } +} diff --git a/AppBox/ViewController/HomeViewController/DragDropView/DragDropView.h b/AppBox/ViewController/HomeViewController/DragDropView/DragDropView.h deleted file mode 100644 index 24b6a7cc..00000000 --- a/AppBox/ViewController/HomeViewController/DragDropView/DragDropView.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// DragDropView.h -// AppBox -// -// Created by Vineet Choudhary on 15/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface DragDropView : NSView - -@end diff --git a/AppBox/ViewController/HomeViewController/DragDropView/DragDropView.m b/AppBox/ViewController/HomeViewController/DragDropView/DragDropView.m deleted file mode 100644 index 427411db..00000000 --- a/AppBox/ViewController/HomeViewController/DragDropView/DragDropView.m +++ /dev/null @@ -1,45 +0,0 @@ -// -// DragDropView.m -// AppBox -// -// Created by Vineet Choudhary on 15/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "DragDropView.h" - -@implementation DragDropView{ - NSSet *acceptedType; - NSDictionary *readOptions; -} - -- (void)drawRect:(NSRect)dirtyRect { - [super drawRect:dirtyRect]; - acceptedType = [NSSet setWithObjects:@"com.apple.iTunes.ipa", NSPasteboardTypeURL, NSPasteboardTypeFileURL, nil]; - readOptions = @{NSPasteboardURLReadingContentsConformToTypesKey: acceptedType.allObjects}; - [self registerForDraggedTypes:acceptedType.allObjects]; -} - -- (NSString *)getFilePath:(id)sender{ - NSPasteboard *pasteboard = [sender draggingPasteboard]; - NSDictionary *options = [NSDictionary dictionaryWithObject:@YES forKey:NSPasteboardURLReadingFileURLsOnlyKey]; - NSArray *results = [pasteboard readObjectsForClasses:[NSArray arrayWithObject:[NSURL class]] options:options]; - return (results.count > 0) ? [results.firstObject relativePath] : nil; -} - --(NSDragOperation)draggingEntered:(id)sender{ - if (sender.draggingPasteboard.pasteboardItems.count > 1 || [AppDelegate appDelegate].processing) { - return NSDragOperationNone; - } - NSString *filePath = [self getFilePath:sender]; - return ([acceptedType intersectsSet:[NSSet setWithArray:sender.draggingPasteboard.types]] && filePath.ipaURL) ? NSDragOperationCopy : NSDragOperationNone; -} - --(BOOL)performDragOperation:(id)sender{ - NSString *filePath = [self getFilePath:sender]; - DDLogDebug(@"Dropped file: %@", filePath); - [[AppDelegate appDelegate] openFileWithPath:filePath]; - return YES; -} - -@end diff --git a/AppBox/ViewController/HomeViewController/HomeView.swift b/AppBox/ViewController/HomeViewController/HomeView.swift new file mode 100644 index 00000000..9a38201f --- /dev/null +++ b/AppBox/ViewController/HomeViewController/HomeView.swift @@ -0,0 +1,163 @@ +// +// HomeView.swift +// AppBox + +import SwiftUI +import AppKit +import UniformTypeIdentifiers + +public final class HomeModel: NSObject, ObservableObject { + @Published fileprivate(set) var fileName: String? + @Published fileprivate(set) var isProcessing: Bool = false + @Published fileprivate var emails: String = "" + @Published fileprivate var message: String = "" + @Published fileprivate var keepSameLink: Bool = false + + public var onChooseFile: (() -> Void)? + public var onFileDropped: ((String) -> Void)? + public var onUpload: (() -> Void)? + public var onAdvanced: (() -> Void)? + public var onSameLinkHelp: (() -> Void)? + + public var emailsText: String { get { emails } set { emails = newValue } } + public var messageText: String { get { message } set { message = newValue } } + public var keepSameLinkEnabled: Bool { get { keepSameLink } set { keepSameLink = newValue } } + + public func setFileName(_ name: String?) { fileName = name } + public func setProcessing(_ processing: Bool) { isProcessing = processing } +} + +struct HomeView: View { + @ObservedObject var model: HomeModel + @State private var isDropTargeted = false + + private var hasFile: Bool { model.fileName != nil } + private var canUpload: Bool { hasFile && !model.isProcessing } + + var body: some View { + ZStack { + if hasFile { + fileSelectedLayout + .transition(.opacity.combined(with: .move(edge: .bottom))) + } else { + emptyLayout + .transition(.opacity) + } + } + .frame(minWidth: 780, minHeight: 400) + .animation(.easeInOut(duration: 0.3), value: hasFile) + } + + // MARK: Empty state — a large drop zone fills the window + private var emptyLayout: some View { + bigDropZone.padding(IslandMetrics.padding) + } + + // MARK: File selected — compact file header, then the options + actions appear + private var fileSelectedLayout: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + fileHeader + + IslandSection("Send Email") { + LabeledField(label: "Email Address", + prompt: "user@example.com, user2@example.com, …", text: $model.emails) + LabeledField(label: "Personal Message", + prompt: "Add a personal message", text: $model.message) + } + + HStack(spacing: 8) { + Toggle("Keep the same link for this app", isOn: $model.keepSameLink) + Button { model.onSameLinkHelp?() } label: { Image(systemName: "questionmark.circle") } + .buttonStyle(.borderless) + .help("Learn more") + Spacer() + } + + Spacer(minLength: 0) + + HStack { + Button("Other Settings…") { model.onAdvanced?() } + Spacer() + Button("Upload IPA") { model.onUpload?() } + .keyboardShortcut(.defaultAction) + .buttonStyle(.borderedProminent) + .controlSize(.large) + .disabled(!canUpload) + } + } + .padding(IslandMetrics.padding) + .disabled(model.isProcessing) + } + + // MARK: Drop zones + + private var dropZoneShape: RoundedRectangle { + RoundedRectangle(cornerRadius: 12) + } + + private var bigDropZone: some View { + Button { model.onChooseFile?() } label: { + VStack(spacing: 14) { + Image(systemName: "arrow.down.doc") + .font(IslandTypography.system(52, weight: .light)) + .foregroundColor(.accentColor) + VStack(spacing: 4) { + Text("Drop your .ipa here").font(IslandTypography.title3).fontWeight(.medium) + Text("or click to choose a file").foregroundColor(.secondary) + } + } + .frame(maxWidth: .infinity, maxHeight: .infinity) + .background( + dropZoneShape + .strokeBorder(style: StrokeStyle(lineWidth: 1.5, dash: [7])) + .foregroundColor(isDropTargeted ? .accentColor : .secondary.opacity(0.4)) + ) + .contentShape(dropZoneShape) + } + .buttonStyle(.plain) + .onDrop(of: [.fileURL], isTargeted: $isDropTargeted) { handleDrop($0) } + } + + private var fileHeader: some View { + Button { model.onChooseFile?() } label: { + HStack(spacing: 12) { + Image(systemName: "shippingbox.fill").font(IslandTypography.title2).foregroundColor(.accentColor) + VStack(alignment: .leading, spacing: 2) { + Text("Selected IPA").font(IslandTypography.caption).foregroundColor(.secondary) + Text(model.fileName ?? "").fontWeight(.medium).lineLimit(1) + } + Spacer() + Text("Change").font(IslandTypography.callout).foregroundColor(.accentColor) + } + .padding(14) + .background(RoundedRectangle(cornerRadius: 10).fill(Color(nsColor: .controlBackgroundColor))) + .overlay( + RoundedRectangle(cornerRadius: 10) + .strokeBorder(isDropTargeted ? Color.accentColor : Color.secondary.opacity(0.25)) + ) + } + .buttonStyle(.plain) + .onDrop(of: [.fileURL], isTargeted: $isDropTargeted) { handleDrop($0) } + } + + private func handleDrop(_ providers: [NSItemProvider]) -> Bool { + guard !model.isProcessing, let provider = providers.first else { return false } + provider.loadItem(forTypeIdentifier: UTType.fileURL.identifier, options: nil) { item, _ in + var url: URL? + if let data = item as? Data { url = URL(dataRepresentation: data, relativeTo: nil) } + else if let direct = item as? URL { url = direct } + guard let url, url.pathExtension.lowercased() == "ipa" else { return } + DispatchQueue.main.async { model.onFileDropped?(url.path) } + } + return true + } +} + +/// Wraps the SwiftUI view in an NSView for the controller to host. +public final class HomeHost: NSObject { + public static func makeView(model: HomeModel) -> NSView { + let host = NSHostingView(rootView: HomeView(model: model).islandTypography()) + host.sizingOptions = [] + return host + } +} diff --git a/AppBox/ViewController/HomeViewController/HomeViewController.h b/AppBox/ViewController/HomeViewController/HomeViewController.h deleted file mode 100644 index 365ed019..00000000 --- a/AppBox/ViewController/HomeViewController/HomeViewController.h +++ /dev/null @@ -1,37 +0,0 @@ -// -// HomeViewController.h -// AppBox -// -// Created by Vineet Choudhary on 29/08/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import -#import "MobileProvision.h" -#import "DropboxViewController.h" -#import "ShowLinkViewController.h" -#import "UploadAdvancedSettingViewController.h" - -@interface HomeViewController : NSViewController { - - //Build & Upload IPA - __weak IBOutlet NSPathControl *selectedFilePath; - __weak IBOutlet NSButton *buttonAction; - __weak IBOutlet NSButton *buttonAdvanced; - __weak IBOutlet NSButton *buttonUniqueLink; - __weak IBOutlet NSLayoutConstraint *buildOptionBoxHeightConstraint; - - //Mail and Shutdown - IBOutlet NSTextField *textFieldEmail; - IBOutlet NSTextField *textFieldMessage; -} - -- (IBAction)actionButtonTapped:(NSButton *)sender; -- (IBAction)selectedFilePathHandler:(NSPathControl *)sender; -- (IBAction)buttonUniqueLinkTapped:(NSButton *)sender; - -- (IBAction)textFieldMailValueChanged:(NSTextField *)sender; -- (IBAction)textFieldDevMessageValueChanged:(NSTextField *)sender; - - -@end diff --git a/AppBox/ViewController/HomeViewController/HomeViewController.m b/AppBox/ViewController/HomeViewController/HomeViewController.m deleted file mode 100644 index 25c61975..00000000 --- a/AppBox/ViewController/HomeViewController/HomeViewController.m +++ /dev/null @@ -1,517 +0,0 @@ -// -// HomeViewController.m -// AppBox -// -// Created by Vineet Choudhary on 29/08/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "HomeViewController.h" -#import - -@interface HomeViewController() - -@property (nonatomic, assign) BOOL isCLIActive; -@property (nonatomic, strong) IPAUploadInfo *ipaUploadInfo; -@property (nonatomic, strong) UploadManager *uploadManager; -@property (nonatomic, assign) NSInteger processExecuteCount; - -@end - -@implementation HomeViewController{ - nw_path_monitor_t _pathMonitor; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - - self.ipaUploadInfo = [[IPAUploadInfo alloc] init]; - buildOptionBoxHeightConstraint.constant = 0; - - //Notification Handler - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initCLIUpload:) name:abBuildRepoNotification object:nil]; - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(dropboxLogoutHandler:) name:abDropBoxLoggedOutNotification object:nil]; - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(handleLoggedInNotification:) name:abDropBoxLoggedInNotification object:nil]; - [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(initOpenFilesProcess:) name:abUseOpenFilesNotification object:nil]; - - //setup dropbox - [UploadManager setupDBClientsManager]; - [self setupUploadManager]; - - //update cli tool and user account menu details - [[NSApplication sharedApplication] updateCLIMenu]; - [[NSApplication sharedApplication] updateAccountsMenu]; - - //Start monitoring internet connection - weakify(self); - _pathMonitor = nw_path_monitor_create(); - nw_path_monitor_set_queue(_pathMonitor, dispatch_get_main_queue()); - nw_path_monitor_set_update_handler(_pathMonitor, ^(nw_path_t _Nonnull path) { - strongify(self); - BOOL connected = (nw_path_get_status(path) == nw_path_status_satisfied); - [[AppDelegate appDelegate] setIsInternetConnected:connected]; - if ([AppDelegate appDelegate].processing){ - if (!connected){ - [self showStatus:abNotConnectedToInternet andShowProgressBar:YES withProgress:-1]; - }else{ - //[self showStatus:abConnectedToInternet andShowProgressBar:NO withProgress:-1]; - //restart last failed operation - if (self.uploadManager.lastfailedOperation){ - [self.uploadManager.lastfailedOperation start]; - self.uploadManager.lastfailedOperation = nil; - } - } - } - }); - nw_path_monitor_start(_pathMonitor); -} - -- (void)viewWillAppear{ - [super viewWillAppear]; - [self updateMenuButtons]; - - //Handle Dropbox Login - if ([DBClientsManager authorizedClient] == nil) { - [self performSegueWithIdentifier:@"DropBoxLogin" sender:self]; - } else { - [[[DBClientsManager authorizedClient].usersRoutes getCurrentAccount] setResponseBlock:^(DBUSERSFullAccount * _Nullable result, DBNilObject * _Nullable routeError, DBRequestError * _Nullable networkError) { - dispatch_async(dispatch_get_main_queue(), ^{ - if (result) { - [[Common currentDBManager] registerUserId:result.email]; - } else if (networkError.tag == DBRequestErrorAuth) { - [[NSNotificationCenter defaultCenter] postNotificationName:abDropBoxLoggedOutNotification object:self]; - } - }); - }]; - } - [[AppDelegate appDelegate] setIsReadyToUpload:YES]; - [[NSNotificationCenter defaultCenter] postNotificationName:abAppBoxReadyToUseNotification object:self]; -} - --(void)viewDidAppear { - [super viewDidAppear]; - - //update cli tool if needed - if ([CLISupportHelper updatePromptAfterVersionUpdate]) { - [[NSApplication sharedApplication] updateCLIMenu]; - } -} - -//MARK: - Upload Manager --(void)setupUploadManager{ - self.uploadManager = [[UploadManager alloc] init]; - [self.uploadManager setIpaUploadInfo:self.ipaUploadInfo]; - [self.uploadManager setIsCLIActive:self.isCLIActive]; - [self.uploadManager setCurrentViewController:self]; - - weakify(self); - [self.uploadManager setProgressBlock:^(NSString *title){ - - }]; - - [self.uploadManager setErrorBlock:^(NSError *error, BOOL terminate){ - strongify(self); - if (terminate && self.isCLIActive) { - [AppDelegate terminateWithExitCode:abExitCodeForUploadFailed]; - } - if (terminate) { - [self viewStateForProgressFinish:YES]; - } - }]; - - [self.uploadManager setItcLoginBlock:^(){ - strongify(self); - [self performSegueWithIdentifier:@"ITCLogin" sender:self]; - }]; - - [self.uploadManager setCompletionBlock:^(){ - strongify(self); - [self showUploadCompleteNotification]; - [self exportSharedURLInSystemFile]; - [self shareURLOnSlackMSTeamChannel]; - - weakify(self); - [self shareURLOnEmailComplition:^(BOOL success) { - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(5 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ - strongify(self); - [self showLinkViewControllerIfNeededWithExitCode:success ? abExitCodeForSuccess : abExitCodeForMailFailed]; - }); - }]; - }]; -} - - -//MARK: - Build Repo / Open Files Notification -- (void)initCLIUpload:(NSNotification *)notification { - if ([notification.object isKindOfClass:[IPAUploadInfo class]]) { - [self initCLIUploadProcessWithIPAUploadInfo:[notification object]]; - } -} - -- (void)initOpenFilesProcess:(NSNotification *)notification { - if ([notification.object isKindOfClass:[NSString class]]) { - NSURL *fileURL = [notification.object ipaURL]; - if (fileURL) { - [selectedFilePath setURL:fileURL.filePathURL]; - [self selectedFilePathHandler:selectedFilePath]; - return; - } - } -} - -- (void)exportSharedURLInSystemFile{ - if (self.isCLIActive) { - [self.ipaUploadInfo exportSharedURLInSystemFile]; - } -} - -//MARK: - Controls Action Handler - -#pragma mark → Project / Workspace Controls Action -//Project Path Handler -- (IBAction)selectedFilePathHandler:(NSPathControl *)sender { - NSURL *url = [sender.URL filePathURL]; - if (url.isIPA && ![self.ipaUploadInfo.ipaFullPath isEqual:url]) { - [self viewStateForProgressFinish:YES]; - [self.ipaUploadInfo setIpaFullPath: url]; - [selectedFilePath setURL:url]; - [self updateViewState]; - - //Get last time valid data - BOOL enable = selectedFilePath.URL.isIPA; - [textFieldEmail setStringValue: enable ? [UserData userEmail] : abEmptyString]; - [textFieldMessage setStringValue: enable ? [UserData userMessage] : abEmptyString]; - } -} - -- (void)initCLIUploadProcessWithIPAUploadInfo:(IPAUploadInfo *)ipaUploadInfo { - NSURL *ipaURL = ipaUploadInfo.ipaFullPath; - if (ipaURL == nil) { - return; - } - - self.isCLIActive = YES; - self.ipaUploadInfo = ipaUploadInfo; - [self.ipaUploadInfo setIpaFullPath:ipaURL]; - [self.uploadManager setIsCLIActive:YES]; - [self.uploadManager setIpaUploadInfo:self.ipaUploadInfo]; - [selectedFilePath setURL:ipaURL]; - if (ipaUploadInfo.emails.length != 0) { - [textFieldEmail setStringValue:ipaUploadInfo.emails]; - } - if (ipaUploadInfo.personalMessage.length != 0) { - [textFieldMessage setStringValue:ipaUploadInfo.personalMessage]; - } - [buttonUniqueLink setState:ipaUploadInfo.keepSameLink.boolValue ? NSControlStateValueOn : NSControlStateValueOff]; - [self buttonUniqueLinkTapped:buttonUniqueLink]; - [self actionButtonTapped:buttonAction]; -} - -#pragma mark → IPA File Controlles Actions -//IPA File Path Handler - -- (IBAction)buttonUniqueLinkTapped:(NSButton *)sender{ - self.ipaUploadInfo.isKeepSameLinkEnabled = (sender.state == NSControlStateValueOn); -} - -- (IBAction)buttonSameLinkHelpTapped:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abKeepSameLinkReadMoreURL]]; -} - - -#pragma mark → Mail Controls Action - -//email id text field -- (IBAction)textFieldMailValueChanged:(NSTextField *)sender { - //removed spaces - [sender setStringValue: [sender.stringValue stringByReplacingOccurrencesOfString:@" " withString:abEmptyString]]; - - //check all mails vaild or not and setup mailed option based on this - BOOL isAllMailVaild = sender.stringValue.length > 0 && [MailHandler isAllValidEmail:sender.stringValue]; - if (isAllMailVaild){ - [self.ipaUploadInfo setEmails:sender.stringValue]; - } else if (sender.stringValue.length > 0) { - [MailHandler showInvalidEmailAddressAlert]; - } -} - -//developer message text field -- (IBAction)textFieldDevMessageValueChanged:(NSTextField *)sender { - [self.ipaUploadInfo setPersonalMessage:sender.stringValue]; -} - -#pragma mark → Final Action Button (Build/IPA/CI) -//Build Button Action -- (IBAction)actionButtonTapped:(NSButton *)sender { - if (textFieldEmail.stringValue.isEmpty || [MailHandler isAllValidEmail:textFieldEmail.stringValue]){ - if ([AppDelegate appDelegate].processing){ - DDLogInfo(@"A request already in progress."); - return; - } - - //set processing flag - [[AppDelegate appDelegate] setProcessing:true]; - [[textFieldEmail window] makeFirstResponder:self.view]; - - // start upload process - [self.uploadManager uploadIPAFile:self.ipaUploadInfo.ipaFullPath]; - [self viewStateForProgressFinish:![AppDelegate appDelegate].processing]; - }else{ - [MailHandler showInvalidEmailAddressAlert]; - } -} - - -//MARK: - Dropbox Helper - -#pragma mark → Dropbox Notification Handler -- (void)handleLoggedInNotification:(NSNotification *)notification{ - [self updateMenuButtons]; - [self viewStateForProgressFinish:YES]; - [self promptCLIInstallIfNeeded]; -} - -- (void)dropboxLogoutHandler:(id)sender{ - //handle dropbox logout for authorized users - if ([DBClientsManager authorizedClient]){ - [DBClientsManager unlinkAndResetClients]; - - //update home view state - [self viewStateForProgressFinish:YES]; - - //reset logged in user details and update accounts menu - [UserData setDropboxUsedSpace:@0]; - [UserData setDropboxAvailableSpace:@0]; - [UserData setLoggedInUserEmail:@""]; - [UserData setLoggedInUserDisplayName:@""]; - [[NSApplication sharedApplication] updateAccountsMenu]; - - //show login page - [self performSegueWithIdentifier:@"DropBoxLogin" sender:self]; - } -} - -- (void)promptCLIInstallIfNeeded{ - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ - if (![[NSFileManager defaultManager] fileExistsAtPath:abCLIPath]) { - [CLISupportHelper installPromptAfterLogin]; - } - }); -} - - -//MARK: - Controller Helpers - - --(void)viewStateForProgressFinish:(BOOL)finish{ - DDLogDebug(@"Updating view setting for finish - %@", [NSNumber numberWithBool:finish]); - [[AppDelegate appDelegate] setProcessing:!finish]; - [[AppDelegate appDelegate] setIsReadyToUpload:finish]; - - //reset ipa upload info - if (finish){ - self.ipaUploadInfo = [[IPAUploadInfo alloc] init]; - [self.uploadManager setIpaUploadInfo:self.ipaUploadInfo]; - [ABHudViewController hudForView:self.view hide:YES]; - buildOptionBoxHeightConstraint.constant = 0; - } - - //unique link - [buttonUniqueLink setEnabled:finish]; - [buttonUniqueLink setState: finish ? NSControlStateValueOff : buttonUniqueLink.state]; - - //ipa - [selectedFilePath setEnabled:finish]; - [selectedFilePath setURL: finish ? nil : selectedFilePath.URL.filePathURL]; - - //action button - [self updateViewState]; - - //logout buttons - [self updateMenuButtons]; -} - --(void)showStatus:(NSString *)status andShowProgressBar:(BOOL)showProgressBar withProgress:(double)progress{ - //log status in session log - DDLogInfo(@"%@",status); - - //start/stop/progress based on showProgressBar and progress - if (progress == -1){ - if (showProgressBar){ - [ABHudViewController showStatus:status onView:self.view]; - }else{ - [ABHudViewController showOnlyStatus:status onView:self.view]; - } - }else{ - if (showProgressBar){ - [ABHudViewController showStatus:status witProgress:progress onView:self.view]; - }else{ - [ABHudViewController showOnlyStatus:status onView:self.view]; - } - } -} - --(void)updateViewState{ - //Update menu buttons - [self updateMenuButtons]; - - - BOOL enable = selectedFilePath.URL.isIPA; - - //Enable text fields - [textFieldEmail setEnabled:enable]; - [textFieldMessage setEnabled:enable]; - - //Reset text field content - [textFieldEmail setStringValue: enable ? textFieldEmail.stringValue : abEmptyString]; - [textFieldMessage setStringValue: enable ? textFieldMessage.stringValue : abEmptyString]; - - //Just for confirm changes - [self textFieldMailValueChanged:textFieldEmail]; - [self textFieldDevMessageValueChanged:textFieldMessage]; - - //update main action button - [buttonAction setEnabled:enable]; - [buttonAction setTitle:@"Upload IPA"]; - - //update keepsame link - [buttonUniqueLink setEnabled:(enable && ![[AppDelegate appDelegate] processing])]; - - //update advanced button - [buttonAdvanced setEnabled:enable]; - -} - --(void)updateMenuButtons{ - //Menu Buttons - BOOL enable = ([DBClientsManager authorizedClient] && selectedFilePath.enabled); - [[[AppDelegate appDelegate] dropboxLogoutButton] setEnabled:enable]; -} - -//get optional feature enable/disable dictionary --(NSDictionary *)getBasicViewStateWithOthersSettings:(NSDictionary *)otherSettings{ - if (otherSettings == nil){ - otherSettings = @{}; - } - NSMutableDictionary *viewState = [[NSMutableDictionary alloc] initWithDictionary:otherSettings]; - [viewState setValue:[NSNumber numberWithInteger: buttonUniqueLink.state] forKey:@"Same Link"]; - return viewState; -} - -//MARK: - TabView Delegate - --(void)tabView:(NSTabView *)tabView didSelectTabViewItem:(NSTabViewItem *)tabViewItem{ - //update view state based on selected tap - [self updateViewState]; -} - --(BOOL)tabView:(NSTabView *)tabView shouldSelectTabViewItem:(NSTabViewItem *)tabViewItem{ - return ![AppDelegate appDelegate].processing; -} - -//MARK: - ProjectAdvancedViewDelegate - -- (void)uploadAdvancedSettingSaveButtonTapped:(NSButton *)sender{ - -} - -- (void)uploadAdvancedSettingCancelButtonTapped:(NSButton *)sender{ - -} - -//MARK: - Share URL - --(void)showUploadCompleteNotification { - if (self.isCLIActive) { - return; - } - [Common showUploadNotificationWithName:self.ipaUploadInfo.name andURL:self.ipaUploadInfo.appShortShareableURL]; -} - --(void)shareURLOnSlackMSTeamChannel { - // Share URL on Slack/Microsoft Team Channel - NSString *message; - if (self.ipaUploadInfo.webhookMessage) { - message = self.ipaUploadInfo.webhookMessage; - } else { - message = [UserData userSlackMessage]; - } - - NSString *slackWebhook; - if (self.ipaUploadInfo.slackWebhook) { - slackWebhook = self.ipaUploadInfo.slackWebhook; - } else { - slackWebhook = [UserData userSlackChannel]; - } - if (slackWebhook.length > 0){ - [self showStatus:@"Sending Message on Slack..." andShowProgressBar:YES withProgress:-1]; - [SlackClient sendMessage:self.ipaUploadInfo - webhook:slackWebhook - message:message - completion:^(BOOL success) {}]; - } - - NSString *msTeamWebhook; - if (self.ipaUploadInfo.msTeamsWebhook) { - msTeamWebhook = self.ipaUploadInfo.msTeamsWebhook; - } else { - msTeamWebhook = [UserData userMicrosoftTeamWebHook]; - } - if (msTeamWebhook.length > 0){ - [self showStatus:@"Sending Message on Microsoft Team..." andShowProgressBar:YES withProgress:-1]; - [MSTeamsClient sendMessage:self.ipaUploadInfo - webhook:msTeamWebhook - message:message - completion:^(BOOL success) {}]; - } -} - --(void)shareURLOnEmailComplition:(void (^) (BOOL success))completion { - if (textFieldEmail.stringValue.length > 0 && [MailHandler isAllValidEmail:textFieldEmail.stringValue]) { - [self showStatus:@"Sending Mail..." andShowProgressBar:YES withProgress:-1]; - [MailGun sendMailWithIPAUploadInfo:self.ipaUploadInfo.abpIPAUploadInfo complition:^(BOOL success, NSError *error) { - dispatch_async(dispatch_get_main_queue(), ^{ - if (success) { - [ABHudViewController showStatus:@"Mail Sent" forSuccess:YES onView:self.view]; - completion(YES); - } else { - [ABHudViewController showStatus:@"Mail Failed" forSuccess:NO onView:self.view]; - completion(NO); - } - }); - }]; - } else { - completion(YES); - } -} - --(void)showLinkViewControllerIfNeededWithExitCode:(int)exitCode { - DDLogInfo(@"\n\n\nSHARE URL - %@\n\n\n.", self.ipaUploadInfo.appShortShareableURL); - if (self.isCLIActive){ - [self viewStateForProgressFinish:YES]; - [AppDelegate terminateWithExitCode:exitCode]; - }else{ - [self performSegueWithIdentifier:@"ShowLink" sender:self]; - } -} - -//MARK: - Navigation - --(void)prepareForSegue:(NSStoryboardSegue *)segue sender:(id)sender{ - //prepare to show link - if ([segue.destinationController isKindOfClass:[ShowLinkViewController class]]) { - //set ipa upload info to destination - [((ShowLinkViewController *)segue.destinationController) setIpaUploadInfo:self.ipaUploadInfo]; - [self viewStateForProgressFinish:YES]; - } - - //prepare to show advanced upload settings - else if([segue.destinationController isKindOfClass:[UploadAdvancedSettingViewController class]]){ - UploadAdvancedSettingViewController *projectAdvancedViewController = ((UploadAdvancedSettingViewController *)segue.destinationController); - [projectAdvancedViewController setIpaUploadInfo:self.ipaUploadInfo]; - [projectAdvancedViewController setDelegate:self]; - } -} - -- (void)dealloc { - [[NSNotificationCenter defaultCenter] removeObserver:self]; - if (_pathMonitor) { - nw_path_monitor_cancel(_pathMonitor); - _pathMonitor = nil; - } -} - -@end diff --git a/AppBox/ViewController/HomeViewController/HomeViewController.swift b/AppBox/ViewController/HomeViewController/HomeViewController.swift new file mode 100644 index 00000000..65a0368e --- /dev/null +++ b/AppBox/ViewController/HomeViewController/HomeViewController.swift @@ -0,0 +1,335 @@ +// +// HomeViewController.swift +// AppBox + +import AppKit +import Network +import os +import UniformTypeIdentifiers +import AppBoxCore + +public final class HomeViewController: NSViewController, UploadAdvancedSettingViewDelegate { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "Home") + + private var ipaUploadInfo = IPAUploadInfo() + private var uploadManager: UploadManager? + private var model: HomeModel? + private var pathMonitor: NWPathMonitor? + + public override func loadView() { + ipaUploadInfo = IPAUploadInfo() + + let model = HomeModel() + self.model = model + model.onChooseFile = { [weak self] in self?.chooseIPAFile() } + model.onFileDropped = { path in AppDelegate.appDelegate.openFile(withPath: path) } + model.onUpload = { [weak self] in self?.uploadTapped() } + model.onAdvanced = { [weak self] in self?.advancedTapped() } + model.onSameLinkHelp = { + if let url = URL(string: "https://docs.getappbox.com/Features/keepsamelink/") { + NSWorkspace.shared.open(url) + } + } + + let host = HomeHost.makeView(model: model) + let container = NSView(frame: NSRect(x: 0, y: 0, width: 780, height: 400)) + host.translatesAutoresizingMaskIntoConstraints = false + container.addSubview(host) + NSLayoutConstraint.activate([ + host.topAnchor.constraint(equalTo: container.topAnchor), + host.bottomAnchor.constraint(equalTo: container.bottomAnchor), + host.leadingAnchor.constraint(equalTo: container.leadingAnchor), + host.trailingAnchor.constraint(equalTo: container.trailingAnchor), + ]) + view = container + } + + public override func viewDidLoad() { + super.viewDidLoad() + + let center = NotificationCenter.default + center.addObserver( + self, + selector: #selector(dropboxLogoutHandler(_:)), + name: Notification.Name("DropBoxLoggedOutNotification"), + object: nil) + center.addObserver( + self, + selector: #selector(handleLoggedInNotification(_:)), + name: Notification.Name("DropBoxLoggedInNotification"), + object: nil) + center.addObserver( + self, + selector: #selector(initOpenFilesProcess(_:)), + name: Notification.Name("UseOpenFilesNotification"), + object: nil) + + UploadManager.setupDBClientsManager() + setupUploadManager() + NSApp.updateAccountsMenu() + + let monitor = NWPathMonitor() + pathMonitor = monitor + monitor.pathUpdateHandler = { [weak self] path in + guard let self else { return } + let connected = (path.status == .satisfied) + AppDelegate.appDelegate.isInternetConnected = connected + if AppDelegate.appDelegate.processing { + if !connected { + self.showStatus("Waiting for the Internet Connection.", showProgressBar: true, withProgress: -1) + } else if let op = self.uploadManager?.lastfailedOperation { + op.start() + self.uploadManager?.lastfailedOperation = nil + } + } + } + monitor.start(queue: .main) + } + + public override func viewWillAppear() { + super.viewWillAppear() + + if !DropboxSession.isAuthorized { + presentAsSheet(DropboxViewController()) + } else { + DropboxTransport.shared.currentAccount { _, _, error in + if DropboxTransport.isAuthError(error) { + NotificationCenter.default.post(name: Notification.Name("DropBoxLoggedOutNotification"), object: self) + } + } + } + AppDelegate.appDelegate.isReadyToUpload = true + NotificationCenter.default.post(name: Notification.Name("AppBoxReadyToBuildNotification"), object: self) + } + + public override func viewDidAppear() { + super.viewDidAppear() + CLISupportHelper.updatePromptAfterVersionUpdate() + } + + // MARK: - Upload manager + + private func setupUploadManager() { + let manager = UploadManager() + manager.ipaUploadInfo = ipaUploadInfo + manager.currentViewController = self + uploadManager = manager + + manager.errorBlock = { [weak self] _, terminate in + guard terminate else { return } + self?.viewState(forProgressFinish: true) + } + + manager.completionBlock = { [weak self] in + guard let self else { return } + self.showUploadCompleteNotification() + self.shareURLOnSlackMSTeamChannel() + self.shareURLOnEmail { + DispatchQueue.main.asyncAfter(deadline: .now() + 1.5) { [weak self] in + self?.presentShareLink() + } + } + } + } + + // MARK: - Build Repo / Open Files notifications + + @objc private func initOpenFilesProcess(_ notification: Notification) { + if let path = notification.object as? String, let fileURL = (path as NSString).ipaURL() { + handleSelectedFileURL(fileURL) + } + } + + // MARK: - File selection + + private func chooseIPAFile() { + let panel = NSOpenPanel() + panel.allowedContentTypes = [UTType(filenameExtension: "ipa") ?? .zip] + panel.allowsMultipleSelection = false + panel.canChooseDirectories = false + panel.canChooseFiles = true + if panel.runModal() == .OK, let url = panel.url { + handleSelectedFileURL(url) + } + } + + private func handleSelectedFileURL(_ url: URL) { + let fileURL = (url as NSURL).filePathURL ?? url + if (fileURL as NSURL).isIPA() { + viewState(forProgressFinish: true) + ipaUploadInfo.ipaFullPath = fileURL + model?.setFileName(fileURL.lastPathComponent) + model?.emailsText = UserData.userEmail() + model?.messageText = UserData.userMessage() + } + } + + // MARK: - Actions + + private func advancedTapped() { + syncIPAUploadInfoFromModel() + let advanced = UploadAdvancedSettingViewController() + advanced.ipaUploadInfo = ipaUploadInfo + advanced.delegate = self + presentAsSheet(advanced) + } + + private func syncIPAUploadInfoFromModel() { + if let emails = model?.emailsText, !emails.isEmpty, MailHandler.isAllValidEmail(emails) { + ipaUploadInfo.emails = emails + } + ipaUploadInfo.personalMessage = model?.messageText + ipaUploadInfo.isKeepSameLinkEnabled = model?.keepSameLinkEnabled ?? false + } + + private func uploadTapped() { + let emails = (model?.emailsText ?? "").replacingOccurrences(of: " ", with: "") + model?.emailsText = emails + if !(emails.isEmpty || MailHandler.isAllValidEmail(emails)) { + MailHandler.showInvalidEmailAddressAlert() + return + } + if AppDelegate.appDelegate.processing { + Self.log.info("A request already in progress.") + return + } + + syncIPAUploadInfoFromModel() + AppDelegate.appDelegate.processing = true + view.window?.makeFirstResponder(view) + + uploadManager?.uploadIPAFile(ipaUploadInfo.ipaFullPath ?? URL(fileURLWithPath: "")) + viewState(forProgressFinish: !AppDelegate.appDelegate.processing) + } + + // MARK: - Dropbox notifications + + @objc private func handleLoggedInNotification(_ notification: Notification) { + viewState(forProgressFinish: true) + promptCLIInstallIfNeeded() + } + + @objc private func dropboxLogoutHandler(_ sender: Any?) { + viewState(forProgressFinish: true) + if !(presentedViewControllers?.contains(where: { $0 is DropboxViewController }) ?? false) { + presentAsSheet(DropboxViewController()) + } + } + + private func promptCLIInstallIfNeeded() { + DispatchQueue.main.asyncAfter(deadline: .now() + 1) { + if !FileManager.default.fileExists(atPath: "/usr/local/bin/appboxcli") { + CLISupportHelper.installPromptAfterLogin() + } + } + } + + // MARK: - View state / HUD + + private func viewState(forProgressFinish finish: Bool) { + AppDelegate.appDelegate.processing = !finish + AppDelegate.appDelegate.isReadyToUpload = finish + + if finish { + ipaUploadInfo = IPAUploadInfo() + uploadManager?.ipaUploadInfo = ipaUploadInfo + ABHudViewController.hud(for: view, hide: true) + model?.setFileName(nil) + model?.emailsText = "" + model?.messageText = "" + model?.keepSameLinkEnabled = false + } + model?.setProcessing(!finish) + } + + private func showStatus(_ status: String, showProgressBar: Bool, withProgress progress: Double) { + Self.log.info("\(status)") + if progress == -1 { + if showProgressBar { + ABHudViewController.showStatus(status, onView: view) + } else { + ABHudViewController.showOnlyStatus(status, onView: view) + } + } else { + if showProgressBar { + ABHudViewController.showStatus(status, witProgress: progress, onView: view) + } else { + ABHudViewController.showOnlyStatus(status, onView: view) + } + } + } + + // MARK: - UploadAdvancedSettingViewDelegate + + public func uploadAdvancedSettingSaveButtonTapped(_ sender: NSButton?) {} + public func uploadAdvancedSettingCancelButtonTapped(_ sender: NSButton?) {} + + // MARK: - Share URL + + private func showUploadCompleteNotification() { + guard let url = ipaUploadInfo.appShortShareableURL else { return } + Common.showUploadNotification(withName: ipaUploadInfo.name ?? "", andURL: url) + } + + private func shareURLOnSlackMSTeamChannel() { + let slackWebhook = ipaUploadInfo.slackWebhook ?? UserData.userSlackChannel() + if !slackWebhook.isEmpty { + showStatus("Sending Message on Slack...", showProgressBar: true, withProgress: -1) + SlackClient.sendMessage(ipaUploadInfo, webhook: slackWebhook) { _ in } + } + + let msTeamWebhook = ipaUploadInfo.msTeamsWebhook ?? UserData.userMicrosoftTeamWebHook() + if !msTeamWebhook.isEmpty { + showStatus("Sending Message on Microsoft Team...", showProgressBar: true, withProgress: -1) + MSTeamsClient.sendMessage(ipaUploadInfo, webhook: msTeamWebhook) { _ in } + } + } + + private func shareURLOnEmail(_ completion: @escaping () -> Void) { + guard let emails = ipaUploadInfo.emails, !emails.isEmpty, MailHandler.isAllValidEmail(emails), + let installURL = ipaUploadInfo.appShortShareableURL else { + completion() + return + } + showStatus("Sending Mail...", showProgressBar: true, withProgress: -1) + + let info = ipaUploadInfo + let personalMessage = (info.personalMessage?.isEmpty == false) ? info.personalMessage : nil + let request = BuildEmailRequest( + name: info.name ?? "", version: info.version ?? "", build: info.build ?? "", + to: emails.components(separatedBy: ",").map { $0.trimmingCharacters(in: .whitespaces) }.filter { !$0.isEmpty }, + installURL: installURL, + personalMessage: personalMessage) + + Task { [weak self] in + do { + try await AppServices.serviceClient.sendBuildEmail(request) + await MainActor.run { + guard let self else { return } + ABHudViewController.showStatus("Mail Sent", forSuccess: true, onView: self.view) + completion() + } + } catch { + await MainActor.run { + guard let self else { return } + Self.log.error("Build-upload mail failed: \(error.localizedDescription)") + ABHudViewController.showStatus("Mail Failed", forSuccess: false, onView: self.view) + completion() + } + } + } + } + + private func presentShareLink() { + let showLink = ShowLinkViewController() + showLink.ipaUploadInfo = ipaUploadInfo + viewState(forProgressFinish: true) + presentAsSheet(showLink) + } + + deinit { + NotificationCenter.default.removeObserver(self) + pathMonitor?.cancel() + } +} diff --git a/AppBox/ViewController/HomeViewController/HomeWindowController/HomeWindowController.h b/AppBox/ViewController/HomeViewController/HomeWindowController/HomeWindowController.h deleted file mode 100644 index 739a9fb6..00000000 --- a/AppBox/ViewController/HomeViewController/HomeWindowController/HomeWindowController.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// HomeWindowController.h -// AppBox -// -// Created by Vineet Choudhary on 11/12/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface HomeWindowController : NSWindowController - -@end diff --git a/AppBox/ViewController/HomeViewController/HomeWindowController/HomeWindowController.m b/AppBox/ViewController/HomeViewController/HomeWindowController/HomeWindowController.m deleted file mode 100644 index 00dbf859..00000000 --- a/AppBox/ViewController/HomeViewController/HomeWindowController/HomeWindowController.m +++ /dev/null @@ -1,41 +0,0 @@ -// -// HomeWindowController.m -// AppBox -// -// Created by Vineet Choudhary on 11/12/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "HomeWindowController.h" - -@interface HomeWindowController () - -@end - -@implementation HomeWindowController - -- (void)windowDidLoad { - [super windowDidLoad]; - - // Implement this method to handle any initialization after your window controller's window has been loaded from its nib file. -} - --(BOOL)windowShouldClose:(id)sender{ - if ([[AppDelegate appDelegate] processing]){ - //show alert if anything in processing - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Are you sure you want to close the \"AppBox\"?"]; - [alert setInformativeText:@"Closing this will stop the current task."]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle:@"Stop Tasks"]; - [alert addButtonWithTitle:@"NO"]; - if ([alert runModal] == NSAlertFirstButtonReturn){ - return YES; - } - return NO; - }else{ - return YES; - } -} - -@end diff --git a/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.h b/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.h deleted file mode 100644 index e5dfebf6..00000000 --- a/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.h +++ /dev/null @@ -1,39 +0,0 @@ -// -// NSApplication+MenuHandler.h -// AppBox -// -// Created by Vineet Choudhary on 02/01/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#import "PreferencesTabViewController.h" - -@interface NSApplication (MenuHandler) - -//AppBox -- (IBAction)preferencesTapped:(NSMenuItem *)sender; -- (IBAction)checkForUpdateTapped:(NSMenuItem *)sender; - -//File -- (IBAction)showDashboardTapped:(NSMenuItem *)sender; -- (IBAction)showLocalServerTapped:(NSMenuItem *)sender; - -//Accounts -- (void)updateAccountsMenu; -- (IBAction)dropboxSpaceTapped:(NSMenuItem *)sender; -- (IBAction)logoutDropBoxTapped:(NSMenuItem *)sender; - -//CLI -- (void)updateCLIMenu; -- (IBAction)cliInstallUninstallTapped:(NSMenuItem *)sender; - -//Help -- (IBAction)licenseTapped:(NSMenuItem *)sender; -- (IBAction)latestNewsTapped:(NSMenuItem *)sender; -- (IBAction)helpButtonTapped:(NSMenuItem *)sender; -- (IBAction)releaseNotesTapped:(NSMenuItem *)sender; - -//Window -@end diff --git a/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.m b/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.m deleted file mode 100644 index c7b31c4a..00000000 --- a/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.m +++ /dev/null @@ -1,174 +0,0 @@ -// -// NSApplication+MenuHandler.m -// AppBox -// -// Created by Vineet Choudhary on 02/01/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "NSApplication+MenuHandler.h" - -@implementation NSApplication (MenuHandler) - - -//MARK: - AppBox -- (IBAction)checkForUpdateTapped:(NSMenuItem *)sender { - [UpdateHandler isNewVersionAvailableCompletion:^(bool available, NSURL *url) { - if (available){ - if (url == nil && [UpdateHandler isInstalledViaHomebrew]) { - [UpdateHandler showHomebrewUpdateAlert]; - } else { - [UpdateHandler showUpdateAlertWithUpdateURL:url]; - } - }else{ - [UpdateHandler showAlreadyUptoDateAlert]; - } - }]; -} - -//MARK: - File -- (IBAction)viewLogFileTapped:(NSMenuItem *)sender { - [[AppDelegate appDelegate] openLatestLogFile]; -} - -- (IBAction)preferencesTapped:(NSMenuItem *)sender { - [PreferencesTabViewController presentPreferences]; -} - -//MARK: - Accounts -- (void)updateAccountsMenu{ - [self updateDropboxButton]; - - //get user account details - [[[DBClientsManager authorizedClient].usersRoutes getCurrentAccount] setResponseBlock:^(DBUSERSFullAccount * _Nullable result, DBNilObject * _Nullable routeError, DBRequestError * _Nullable networkError) { - if (result) { - @try { - [UserData setLoggedInUserEmail:result.email]; - [UserData setLoggedInUserDisplayName:result.name.displayName]; - dispatch_async(dispatch_get_main_queue(), ^{ - [self updateDropboxButton]; - }); - } @catch (NSException *exception) { - DDLogError(@"Exception %@",exception.abDescription); - } - } - }]; - - //get spaces usage - [[[DBClientsManager authorizedClient].usersRoutes getSpaceUsage] - setResponseBlock:^(DBUSERSSpaceUsage * _Nullable response, DBNilObject * _Nullable routeError, DBRequestError * _Nullable error) { - if (response){ - @try { - NSNumber *usage = @(response.used.longValue / abBytesToMB); - NSNumber *allocated = @(response.allocation.individual.allocated.longValue / abBytesToMB); - - //save space usage in user default - [UserData setDropboxUsedSpace:usage]; - [UserData setDropboxAvailableSpace:allocated]; - - //log space usage - DDLogInfo(@"DropBox Used Space : %@MB", usage); - DDLogInfo(@"DropBox Available Space : %@MB", allocated); - - dispatch_async(dispatch_get_main_queue(), ^{ - [self updateDropboxButton]; - - //check if dopbox running out of space - if ((allocated.integerValue - usage.integerValue) < abDropboxOutOfSpaceWarningSize){ - [Common showAlertWithTitle:@"Warning" andMessage:[NSString stringWithFormat:@"You're running out of Dropbox space\n\n %@MB of %@MB used.", usage, allocated]]; - } - }); - } @catch (NSException *exception) { - DDLogError(@"Exception %@",exception.abDescription); - } - } - }]; -} - -- (void)updateDropboxButton{ - //Dropbox account menu - NSString *email = [UserData loggedInUserEmail]; - - NSMenuItem *dropboxAccountButton = [[AppDelegate appDelegate] dropboxAccountButton]; - NSString *dropboxAccountButtonTitle = [NSString stringWithFormat:@"Email: %@", email]; - [dropboxAccountButton setHidden:email.isEmpty]; - [dropboxAccountButton setTitle:dropboxAccountButtonTitle]; - - //Dropbox account name menu - NSString *displayName = [UserData loggedInUserDisplayName]; - NSMenuItem *dropboxNameButton = [[AppDelegate appDelegate] dropboxNameButton]; - NSString *dropboxNameButtonTitle = [NSString stringWithFormat:@"Name: %@", displayName]; - [dropboxNameButton setHidden:displayName.isEmpty]; - [dropboxNameButton setTitle:dropboxNameButtonTitle]; - - //Dropbox space menu - NSNumber *used = [UserData dropboxUsedSpace]; - NSNumber *available = [UserData dropboxAvailableSpace]; - - NSMenuItem *dropboxSpaceButton = [[AppDelegate appDelegate] dropboxSpaceButton]; - NSString *dropboxSpaceButtonTitle = [NSString stringWithFormat:@"Usage: %@MB of %@MB used", used, available]; - [dropboxSpaceButton setTitle:dropboxSpaceButtonTitle]; -} - -- (IBAction)logoutDropBoxTapped:(NSMenuItem *)sender { - NSAlert *alert = [[NSAlert alloc] init]; - [alert setMessageText: @"Are you sure?"]; - [alert setInformativeText:@"Do you want to logout current dropbox account?"]; - [alert setAlertStyle:NSAlertStyleInformational]; - [alert addButtonWithTitle:@"Yes"]; - [alert addButtonWithTitle:@"No"]; - if ([alert runModal] == NSAlertFirstButtonReturn){ - [[NSNotificationCenter defaultCenter] postNotificationName:abDropBoxLoggedOutNotification object:sender]; - [sender setEnabled:NO]; - } -} - -- (IBAction)dropboxSpaceTapped:(NSMenuItem *)sender { - [self updateAccountsMenu]; -} - -//MARK: - CLI -- (void)updateCLIMenu{ - NSMenuItem *cliInstallUninstallButton = [[AppDelegate appDelegate] cliInstallUninstallButton]; - if ([[NSFileManager defaultManager] fileExistsAtPath:abCLIPath]){ - [cliInstallUninstallButton setTitle:@"Uninstall CLI Tool"]; - }else{ - [cliInstallUninstallButton setTitle:@"Install CLI Tool"]; - } -} - -- (IBAction)cliInstallUninstallTapped:(NSMenuItem *)sender { - if ([[NSFileManager defaultManager] fileExistsAtPath:abCLIPath]){ - [CLISupportHelper uninstall]; - } else { - [CLISupportHelper install]; - } - [self updateCLIMenu]; -} - - -//MARK: - Help -- (IBAction)helpButtonTapped:(NSMenuItem *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abDocumentationURL]]; -} - -- (IBAction)latestNewsTapped:(NSMenuItem *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abTwitterURL]]; -} - -- (IBAction)releaseNotesTapped:(NSMenuItem *)sender { - NSString *versionString = [[[NSBundle mainBundle] infoDictionary] valueForKey:@"CFBundleShortVersionString"]; - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@%@",abGitHubReleaseBaseURL,versionString]]]; -} - -- (IBAction)showDashboardTapped:(NSMenuItem *)sender { -} - -- (IBAction)showLocalServerTapped:(NSMenuItem *)sender { -} - -- (IBAction)licenseTapped:(NSMenuItem *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abLicenseURL]]; - -} -@end diff --git a/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.swift b/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.swift new file mode 100644 index 00000000..83f765e3 --- /dev/null +++ b/AppBox/ViewController/MenuHandler/NSApplication+MenuHandler.swift @@ -0,0 +1,76 @@ +// +// NSApplication+MenuHandler.swift +// AppBox + +import AppKit +import os +import AppBoxCore + +extension NSApplication { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "MenuHandler") + + // MARK: - AppBox + + func checkForUpdateTapped(_ sender: NSMenuItem?) { + UpdateHandler.isNewVersionAvailable { available, url in + if available { + if url == nil && UpdateHandler.isInstalledViaHomebrew() { + UpdateHandler.showHomebrewUpdateAlert() + } else { + UpdateHandler.showUpdateAlert(withUpdateURL: url) + } + } else { + UpdateHandler.showAlreadyUptoDateAlert() + } + } + } + + + // MARK: - Dropbox account (refresh identity + space usage into UserData; surfaced in the Accounts pane) + + public func updateAccountsMenu() { + DropboxTransport.shared.currentAccount { email, displayName, _ in + DispatchQueue.main.async { + if let email { + UserData.setLoggedInUserEmail(email) + UserData.setLoggedInUserDisplayName(displayName) + } + } + } + + DropboxTransport.shared.spaceUsage { usedMB, allocatedMB, error in + DispatchQueue.main.async { + guard error == nil else { return } + UserData.setDropboxUsedSpace(NSNumber(value: usedMB)) + UserData.setDropboxAvailableSpace(NSNumber(value: allocatedMB)) + Self.log.info("DropBox Used Space : \(usedMB)MB") + Self.log.info("DropBox Available Space : \(allocatedMB)MB") + + if (allocatedMB - usedMB) < 150 { + _ = Common.showAlert(withTitle: "Warning", + andMessage: "You're running out of Dropbox space\n\n \(usedMB)MB of \(allocatedMB)MB used.") + } + } + } + } + + // MARK: - Help + + func helpButtonTapped(_ sender: NSMenuItem?) { + if let url = URL(string: "https://docs.getappbox.com") { NSWorkspace.shared.open(url) } + } + + func releaseNotesTapped(_ sender: NSMenuItem?) { + let version = Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" + if let url = URL(string: "https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/releases/tag/\(version)") { + NSWorkspace.shared.open(url) + } + } + + func licenseTapped(_ sender: NSMenuItem?) { + if let url = URL(string: "https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/blob/master/LICENSE.md") { + NSWorkspace.shared.open(url) + } + } +} diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountCellView/AccountCellView.h b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountCellView/AccountCellView.h deleted file mode 100644 index f69a33c2..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountCellView/AccountCellView.h +++ /dev/null @@ -1,14 +0,0 @@ -// -// AccountCellView.h -// AppBox -// -// Created by Vineet Choudhary on 05/02/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface AccountCellView : NSTableCellView -@property(nonatomic, weak) IBOutlet NSTextField * accountIdLabel; -@property(nonatomic, weak) IBOutlet NSTextField * accountDescLabel; -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountCellView/AccountCellView.m b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountCellView/AccountCellView.m deleted file mode 100644 index 3b745819..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountCellView/AccountCellView.m +++ /dev/null @@ -1,19 +0,0 @@ -// -// AccountCellView.m -// AppBox -// -// Created by Vineet Choudhary on 05/02/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "AccountCellView.h" - -@implementation AccountCellView - -- (void)drawRect:(NSRect)dirtyRect { - [super drawRect:dirtyRect]; - - // Drawing code here. -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesView.swift b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesView.swift new file mode 100644 index 00000000..eae3982e --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesView.swift @@ -0,0 +1,100 @@ +// +// AccountPreferencesView.swift +// AppBox + +import SwiftUI +import AppKit + +public final class AccountsModel: NSObject, ObservableObject { + @Published fileprivate(set) var isConnected: Bool = false + @Published fileprivate(set) var displayName: String = "" + @Published fileprivate(set) var email: String = "" + @Published fileprivate(set) var usedSpaceMB: Int = 0 + @Published fileprivate(set) var totalSpaceMB: Int = 0 + + public var onConnect: (() -> Void)? + public var onDisconnect: (() -> Void)? + + public func update(connected: Bool, displayName: String, email: String, + usedSpaceMB: Int, totalSpaceMB: Int) { + self.isConnected = connected + self.displayName = displayName + self.email = email + self.usedSpaceMB = usedSpaceMB + self.totalSpaceMB = totalSpaceMB + } +} + +struct AccountPreferencesView: View { + @ObservedObject var model: AccountsModel + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + IslandSection("Dropbox") { + if model.isConnected { + connectedContent + } else { + HStack { + Text("No Dropbox account connected.").foregroundColor(.secondary) + Spacer() + Button("Connect…") { model.onConnect?() } + } + } + } + + Spacer(minLength: 0) + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.paneWidth, + height: IslandMetrics.accountPaneHeight, + alignment: .topLeading) + } + + private var connectedContent: some View { + VStack(alignment: .leading, spacing: IslandMetrics.fieldSpacing) { + HStack(spacing: 12) { + Image(systemName: "shippingbox.fill").font(IslandTypography.title).foregroundColor(.accentColor) + VStack(alignment: .leading, spacing: 2) { + Text(model.displayName.isEmpty ? "Dropbox account" : model.displayName) + .fontWeight(.medium) + if !model.email.isEmpty { + Text(model.email).font(IslandTypography.caption).foregroundColor(.secondary) + } + } + Spacer() + Button("Disconnect") { model.onDisconnect?() } + } + + if model.totalSpaceMB > 0 { + Divider() + VStack(alignment: .leading, spacing: 4) { + HStack { + Text("Storage").font(IslandTypography.caption).foregroundColor(.secondary) + Spacer() + Text("\(formatSpace(model.usedSpaceMB)) of \(formatSpace(model.totalSpaceMB)) used") + .font(IslandTypography.caption).foregroundColor(.secondary) + } + ProgressView(value: usedFraction) + } + } + } + } + + private var usedFraction: Double { + guard model.totalSpaceMB > 0 else { return 0 } + return min(1, Double(model.usedSpaceMB) / Double(model.totalSpaceMB)) + } + + private func formatSpace(_ mb: Int) -> String { + let value = Double(mb) + if value >= 1_048_576 { return String(format: "%.2f TB", value / 1_048_576) } + if value >= 1024 { return String(format: "%.1f GB", value / 1024) } + return "\(mb) MB" + } +} + +public final class AccountsHost: NSObject { + public static func makeView(model: AccountsModel) -> NSView { + NSHostingView(rootView: AccountPreferencesView(model: model).islandTypography()) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.h b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.h deleted file mode 100644 index 973c028c..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.h +++ /dev/null @@ -1,28 +0,0 @@ -// -// AccountPreferencesViewController.h -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#import "AccountCellView.h" -#import "DropboxViewController.h" -#import "SelectAccountViewController.h" - -@interface AccountPreferencesViewController : NSViewController { - __weak IBOutlet NSTableView *accountTableView; - __weak IBOutlet NSTextField *accountNameLabel; - __weak IBOutlet NSTextField *accountIdLabel; - __weak IBOutlet NSTextField *accountDescLabel; - __weak IBOutlet NSButton *addAccountButton; - __weak IBOutlet NSButton *deleteAccountButton; - __weak IBOutlet NSButton *updateAccountButton; -} - -- (IBAction)addAccountButtonTapped:(NSButton *)sender; -- (IBAction)deleteAccountButtonTapped:(NSButton *)sender; - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.m b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.m deleted file mode 100644 index ca5a22af..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.m +++ /dev/null @@ -1,85 +0,0 @@ -// -// AccountPreferencesViewController.m -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "AccountPreferencesViewController.h" - -@interface AccountPreferencesViewController () - -@end - -@implementation AccountPreferencesViewController{ - NSArray *itcAccounts; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - [self loadAccounts]; -} - --(void)loadAccounts{ - itcAccounts = [KeychainHandler getAllITCAccounts]; -} - -//MARK: - AccountPreferencesViewController Delegate --(NSInteger)numberOfRowsInTableView:(NSTableView *)tableView{ - return itcAccounts.count; -} - --(NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row{ - AccountCellView *cell = [tableView makeViewWithIdentifier:@"AccountCell" owner:self]; - NSDictionary *keyChainAccount = [NSDictionary dictionaryWithDictionary:[itcAccounts objectAtIndex:row]]; - [cell.accountIdLabel setStringValue:[keyChainAccount valueForKey:kSAMKeychainAccountKey]]; - [cell.accountDescLabel setStringValue:[keyChainAccount valueForKey:kSAMKeychainLabelKey]]; - return cell; -} - --(BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(NSInteger)row{ - NSDictionary *keyChainAccount = [NSDictionary dictionaryWithDictionary:[itcAccounts objectAtIndex:row]]; - [accountNameLabel setStringValue:[keyChainAccount valueForKey:kSAMKeychainLabelKey]]; - [accountIdLabel setStringValue:[keyChainAccount valueForKey:kSAMKeychainAccountKey]]; - [accountDescLabel setStringValue:[keyChainAccount valueForKey:kSAMKeychainAccountKey]]; - return YES; -} - -//MARK: - Actions -- (IBAction)addAccountButtonTapped:(NSButton *)sender { - SelectAccountViewController *selectAccountViewController = [[SelectAccountViewController alloc] initWithNibName:NSStringFromClass([SelectAccountViewController class]) bundle:nil]; - selectAccountViewController.delegate = self; - [self presentViewControllerAsSheet:selectAccountViewController]; -} - -- (IBAction)deleteAccountButtonTapped:(NSButton *)sender { - NSInteger selectedRow = [accountTableView selectedRow]; - if (selectedRow >= 0) { - NSDictionary *keyChainAccount = [NSDictionary dictionaryWithDictionary:[itcAccounts objectAtIndex:selectedRow]]; - //[SAMKeychain deletePasswordForService:abiTunesConnectService account:[keyChainAccount valueForKey:kSAMKeychainAccountKey]]; - } - [self loadAccounts]; - [accountTableView reloadData]; -} - - -//MARK: - SelectAccountViewController Delegate --(void)selectedAccountType:(AccountType)accountType{ - NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Main" bundle:nil]; - switch (accountType) { - case AccountTypeDropBox: { - DropboxViewController *dropboxViewController = [storyBoard instantiateControllerWithIdentifier:NSStringFromClass([DropboxViewController class])]; - [self presentViewControllerAsSheet:dropboxViewController]; - }break; - } -} - --(void)itcLoginResult:(BOOL)success{ - if (success) { - [self loadAccounts]; - [accountTableView reloadData]; - } -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.swift b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.swift new file mode 100644 index 00000000..fe4da10b --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.swift @@ -0,0 +1,96 @@ +// +// AccountPreferencesViewController.swift +// AppBox + +import AppKit +import AppBoxCore + +public final class AccountPreferencesViewController: NSViewController { + + private var model: AccountsModel? + + public override func loadView() { + let model = AccountsModel() + self.model = model + model.onConnect = { [weak self] in + self?.connectDropbox() + } + model.onDisconnect = { [weak self] in + self?.disconnectDropbox() + } + view = AccountsHost.makeView(model: model) + } + + public override func viewDidLoad() { + super.viewDidLoad() + NotificationCenter.default.addObserver( + self, + selector: #selector(refreshAccount), + name: Notification.Name("DropBoxLoggedInNotification"), + object: nil) + NotificationCenter.default.addObserver( + self, + selector: #selector(refreshAccount), + name: Notification.Name("DropBoxLoggedOutNotification"), + object: nil) + } + + public override func viewWillAppear() { + super.viewWillAppear() + refreshAccount() + } + + // MARK: - Account data + private func pushModel() { + DispatchQueue.main.async { [weak self] in + self?.applyModel() + } + } + + private func applyModel() { + model?.update( + connected: DropboxSession.isAuthorized, + displayName: UserData.loggedInUserDisplayName(), + email: UserData.loggedInUserEmail(), + usedSpaceMB: UserData.dropboxUsedSpace().intValue, + totalSpaceMB: UserData.dropboxAvailableSpace().intValue) + } + + @objc private func refreshAccount() { + pushModel() + guard DropboxSession.isAuthorized else { return } + + DropboxTransport.shared.currentAccount { [weak self] email, displayName, _ in + DispatchQueue.main.async { + if let email { + UserData.setLoggedInUserEmail(email) + UserData.setLoggedInUserDisplayName(displayName) + } + self?.pushModel() + } + } + DropboxTransport.shared.spaceUsage { [weak self] usedMB, allocatedMB, error in + DispatchQueue.main.async { + if error == nil { + UserData.setDropboxUsedSpace(NSNumber(value: usedMB)) + UserData.setDropboxAvailableSpace(NSNumber(value: allocatedMB)) + } + self?.pushModel() + } + } + } + + // MARK: - Actions (invoked by the SwiftUI view's callbacks) + + private func connectDropbox() { + presentAsSheet(DropboxViewController()) + } + + private func disconnectDropbox() { + NotificationCenter.default.post(name: Notification.Name("DropBoxLoggedOutNotification"), object: self) + } + + deinit { + NotificationCenter.default.removeObserver(self) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.xib b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.xib deleted file mode 100644 index b3537764..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/AccountPreferencesViewController.xib +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountCellView/SelectAccountCellView.h b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountCellView/SelectAccountCellView.h deleted file mode 100644 index 15874ef4..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountCellView/SelectAccountCellView.h +++ /dev/null @@ -1,17 +0,0 @@ -// -// SelectAccountCellView.h -// AppBox -// -// Created by Vineet Choudhary on 05/02/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface SelectAccountCellView : NSTableCellView{ - -} - -@property(nonatomic, weak) IBOutlet NSTextField * accountNameLabel; - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountCellView/SelectAccountCellView.m b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountCellView/SelectAccountCellView.m deleted file mode 100644 index 8ce558b8..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountCellView/SelectAccountCellView.m +++ /dev/null @@ -1,17 +0,0 @@ -// -// SelectAccountCellView.m -// AppBox -// -// Created by Vineet Choudhary on 05/02/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "SelectAccountCellView.h" - -@implementation SelectAccountCellView - -- (void)drawRect:(NSRect)dirtyRect { - [super drawRect:dirtyRect]; -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.h b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.h deleted file mode 100644 index c8ca7833..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.h +++ /dev/null @@ -1,31 +0,0 @@ -// -// SelectAccountViewController.h -// AppBox -// -// Created by Vineet Choudhary on 05/02/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -#import "SelectAccountCellView.h" - -typedef enum : NSUInteger { - AccountTypeDropBox -} AccountType; - -@protocol SelectAccountViewControllerDelegate --(void)selectedAccountType:(AccountType)accountType; -@end - -@interface SelectAccountViewController : NSViewController { - __weak IBOutlet NSTableView *accountTypeTableView; - __weak IBOutlet NSButton *continueButton; -} - -@property(nonatomic, weak) id delegate; - -- (IBAction)cancelButtonTapped:(NSButton *)sender; -- (IBAction)continueButtonTapped:(NSButton *)sender; - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.m b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.m deleted file mode 100644 index c63399fc..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.m +++ /dev/null @@ -1,46 +0,0 @@ -// -// SelectAccountViewController.m -// AppBox -// -// Created by Vineet Choudhary on 05/02/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import "SelectAccountViewController.h" - -@implementation SelectAccountViewController{ - NSArray *accounts; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - accounts = @[@"Add Dropbox Account"]; -} - -//MARK: - NSTableView Datasource and Delegate --(NSInteger)numberOfRowsInTableView:(NSTableView *)tableView{ - return accounts.count; -} - --(NSView *)tableView:(NSTableView *)tableView viewForTableColumn:(NSTableColumn *)tableColumn row:(NSInteger)row{ - SelectAccountCellView *cell = [tableView makeViewWithIdentifier:@"AccountName" owner:self]; - [cell.accountNameLabel setStringValue:[accounts objectAtIndex:row]]; - return cell; -} - --(BOOL)tableView:(NSTableView *)tableView shouldSelectRow:(NSInteger)row{ - return YES; -} - -//MARK: - Actions -- (IBAction)cancelButtonTapped:(NSButton *)sender { - [self dismissController:self]; -} - -- (IBAction)continueButtonTapped:(NSButton *)sender { - [self dismissController:self]; - [self.delegate selectedAccountType:[accountTypeTableView selectedRow]]; -} - - -@end diff --git a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.xib b/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.xib deleted file mode 100644 index ca016a9e..00000000 --- a/AppBox/ViewController/PreferencesViewController/AccountPreferencesViewController/SelectAccountViewController/SelectAccountViewController.xib +++ /dev/null @@ -1,161 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesView.swift b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesView.swift new file mode 100644 index 00000000..aa974698 --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesView.swift @@ -0,0 +1,60 @@ +// +// EmailPreferencesView.swift +// AppBox + +import SwiftUI +import AppBoxCore +import AppKit + +public final class EmailModel: NSObject, ObservableObject { + @Published fileprivate var emails: String + @Published fileprivate var message: String + @Published fileprivate(set) var isSendingTest: Bool = false + + public var onSave: (() -> Void)? + public var onSendTest: (() -> Void)? + + public var emailsText: String { get { emails } set { emails = newValue } } + public var messageText: String { get { message } set { message = newValue } } + public func setSendingTest(_ sending: Bool) { isSendingTest = sending } + + public init(emails: String, message: String) { + self.emails = emails + self.message = message + super.init() + } +} + +struct EmailPreferencesView: View { + @ObservedObject var model: EmailModel + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + IslandSection("Email Notification") { + LabeledField(label: "Recipient Emails", prompt: "Comma-separated email addresses", text: $model.emails) + LabeledField(label: "Personal Message", prompt: "Optional message to include in the email", text: $model.message) + IslandFootnote(lines: ["Included in the email under \"Message from the developer\"."]) + } + HStack(spacing: 8) { + if model.isSendingTest { + ProgressView().controlSize(.small) + Text("Sending…").foregroundColor(.secondary) + } else { + Button("Send Test Mail") { model.onSendTest?() } + } + Spacer() + Button("Save") { model.onSave?() } + .keyboardShortcut(.defaultAction) + .disabled(model.isSendingTest) + } + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.paneWidth) + } +} + +public final class EmailPreferencesHost: NSObject { + public static func makeView(model: EmailModel) -> NSView { + NSHostingView(rootView: EmailPreferencesView(model: model).islandTypography()) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.h b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.h deleted file mode 100644 index 4cb7b0f8..00000000 --- a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// EmailPreferencesViewController.h -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface EmailPreferencesViewController : NSViewController { - IBOutlet NSButton *saveButton; - IBOutlet NSButton *testMailButton; - - IBOutlet NSTextField *emailTextField; - IBOutlet NSTextField *personalMessageTextField; -} - -- (IBAction)saveButtonTapped:(NSButton *)sender; -- (IBAction)sendTestMailButtonTapped:(NSButton *)sender; - - -@end diff --git a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.m b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.m deleted file mode 100644 index 538241fc..00000000 --- a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.m +++ /dev/null @@ -1,80 +0,0 @@ -// -// EmailPreferencesViewController.m -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "EmailPreferencesViewController.h" - -@interface EmailPreferencesViewController () - -@end - -@implementation EmailPreferencesViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - - //set user emails and password - [emailTextField setStringValue:[UserData userEmail]]; - [personalMessageTextField setStringValue:[UserData userMessage]]; -} - -- (BOOL)isValidEmailDetails { - if (emailTextField.stringValue.length > 0 && [MailHandler isAllValidEmail:emailTextField.stringValue]) { - return YES; - } else { - [MailHandler showInvalidEmailAddressAlert]; - } - return NO; -} - -//MARK: - Control Actions -- (IBAction)saveButtonTapped:(NSButton *)sender { - [self.view.window makeFirstResponder:self.view]; - if (emailTextField.stringValue.isEmpty && personalMessageTextField.stringValue.isEmpty) { - [UserData setUserEmail:emailTextField.stringValue]; - [UserData setUserMessage:personalMessageTextField.stringValue]; - [ABHudViewController showStatus:@"Details Cleared!" forSuccess:YES onView:self.view]; - } else if ([self isValidEmailDetails]) { - [UserData setUserEmail:emailTextField.stringValue]; - [UserData setUserMessage:personalMessageTextField.stringValue]; - [ABHudViewController showStatus:@"Details Saved!" forSuccess:YES onView:self.view]; - } -} - -- (IBAction)sendTestMailButtonTapped:(NSButton *)sender { - [self.view.window makeFirstResponder:self.view]; - - if (![self isValidEmailDetails]) { - return; - } - - //create a test ipa upload info for demo email - IPAUploadInfo *ipaUploadInfo = [[IPAUploadInfo alloc] init]; - [ipaUploadInfo setName:@"TestApp"]; - [ipaUploadInfo setVersion:@"1.0"]; - [ipaUploadInfo setBuild:@"1"]; - [ipaUploadInfo setEmails: emailTextField.stringValue]; - [ipaUploadInfo setAppShortShareableURL:[NSURL URLWithString:@"https://getappbox.com"]]; - [ipaUploadInfo setPersonalMessage: [MailHandler parseMessage:personalMessageTextField.stringValue forIPAUploadInfo:ipaUploadInfo]]; - - //send mail - [ABHudViewController showStatus:@"Sending Test Mail" onView:self.view]; - weakify(self); - [MailGun sendMailWithIPAUploadInfo:ipaUploadInfo.abpIPAUploadInfo complition:^(BOOL success, NSError *error) { - dispatch_async(dispatch_get_main_queue(), ^{ - strongify(self); - [ABHudViewController hideAllHudFromView:self.view after:0]; - if (success) { - [ABHudViewController showStatus:@"Mail Sent" forSuccess:YES onView:self.view]; - } else { - [ABHudViewController showStatus:@"Mail Failed" forSuccess:NO onView:self.view]; - } - }); - }]; -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.swift b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.swift new file mode 100644 index 00000000..ef6caf69 --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.swift @@ -0,0 +1,100 @@ +// +// EmailPreferencesViewController.swift +// AppBox + +import AppKit +import AppBoxCore +import os + +public final class EmailPreferencesViewController: NSViewController { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "EmailPreferences") + private var model: EmailModel? + + public override func loadView() { + let model = EmailModel(emails: UserData.userEmail(), message: UserData.userMessage()) + self.model = model + model.onSave = { [weak self] in + self?.saveTapped() + } + model.onSendTest = { [weak self] in + self?.sendTestTapped() + } + view = EmailPreferencesHost.makeView(model: model) + } + + // MARK: - Actions (invoked by the SwiftUI form's callbacks) + + private func isValidEmails(_ emails: String) -> Bool { + if !emails.isEmpty, MailHandler.isAllValidEmail(emails) { + return true + } + MailHandler.showInvalidEmailAddressAlert() + return false + } + + private func saveTapped() { + guard let model else { return } + let emails = model.emailsText + let message = model.messageText + let emailsEmpty = emails.trimmingCharacters(in: .whitespaces).isEmpty + let messageEmpty = message.trimmingCharacters(in: .whitespaces).isEmpty + if emailsEmpty && messageEmpty { + UserData.setUserEmail(emails) + UserData.setUserMessage(message) + Common.showAlert(withTitle: "Saved", andMessage: "Email settings cleared.") + } else if isValidEmails(emails) { + UserData.setUserEmail(emails) + UserData.setUserMessage(message) + Common.showAlert(withTitle: "Saved", andMessage: "Email settings saved.") + } + } + + private func sendTestTapped() { + guard let model else { return } + let emails = model.emailsText + let message = model.messageText + guard isValidEmails(emails) else { return } + guard DropboxSession.isAuthorized else { + Common.showAlert( + withTitle: "Connect Dropbox", + andMessage: "Connect your Dropbox account first to send a test email.") + return + } + + var personalMessage: String? + if !message.trimmingCharacters(in: .whitespaces).isEmpty { + personalMessage = message + } + let request = BuildEmailRequest( + name: "TestApp", + version: "1.0", + build: "1", + to: emails.components(separatedBy: ",") + .map { $0.trimmingCharacters(in: .whitespaces) } + .filter { !$0.isEmpty }, + installURL: URL(string: "https://getappbox.com")!, + personalMessage: personalMessage) + + model.setSendingTest(true) + Task { [weak self] in + do { + try await AppServices.serviceClient.sendBuildEmail(request) + await MainActor.run { + self?.model?.setSendingTest(false) + Common.showAlert( + withTitle: "Mail Sent", + andMessage: "The test email was sent successfully.") + } + } catch { + await MainActor.run { + self?.model?.setSendingTest(false) + Self.log.error("Test mail failed: \(error.localizedDescription, privacy: .public)") + Common.showAlert( + withTitle: "Mail Failed", + andMessage: "Unable to send the test email. See the AppBox logs in Console.app for details.") + } + } + } + } +} diff --git a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.xib b/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.xib deleted file mode 100644 index 09536281..00000000 --- a/AppBox/ViewController/PreferencesViewController/EmailPreferencesViewController/EmailPreferencesViewController.xib +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Supported Keywords: -{BUILD_NAME} - For Build Name -{BUILD_VERSION} - For Build Version -{BUILD_NUMBER} - For Build Number - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/GeneralPreferencesView.swift b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/GeneralPreferencesView.swift new file mode 100644 index 00000000..94799719 --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/GeneralPreferencesView.swift @@ -0,0 +1,128 @@ +// +// GeneralPreferencesView.swift +// AppBox + +import SwiftUI +import AppKit + +struct GeneralPreferencesView: View { + let chunkSizes: [Int] + let helpURLs: [String: String] + let onChunkSize: (Int) -> Void + let onBoolChange: (String, Bool) -> Void + let onSetDefaultHandler: (Bool) -> Void + let onToggleCLI: () -> Bool + + @State private var chunkSize: Int + @State private var downloadIPA: Bool + @State private var moreDetails: Bool + @State private var hidePreviousVersions: Bool + @State private var updateAlert: Bool + @State private var limitedLog: Bool + @State private var isDefaultHandler: Bool + @State private var cliInstalled: Bool + + init(chunkSize: Int, chunkSizes: [Int], downloadIPA: Bool, moreDetails: Bool, + hidePreviousVersions: Bool, updateAlert: Bool, limitedLog: Bool, isDefaultHandler: Bool, + cliInstalled: Bool, helpURLs: [String: String], + onChunkSize: @escaping (Int) -> Void, + onBoolChange: @escaping (String, Bool) -> Void, + onSetDefaultHandler: @escaping (Bool) -> Void, + onToggleCLI: @escaping () -> Bool) { + self.chunkSizes = chunkSizes + self.helpURLs = helpURLs + self.onChunkSize = onChunkSize + self.onBoolChange = onBoolChange + self.onSetDefaultHandler = onSetDefaultHandler + self.onToggleCLI = onToggleCLI + _chunkSize = State(initialValue: chunkSize) + _downloadIPA = State(initialValue: downloadIPA) + _moreDetails = State(initialValue: moreDetails) + _hidePreviousVersions = State(initialValue: hidePreviousVersions) + _updateAlert = State(initialValue: updateAlert) + _limitedLog = State(initialValue: limitedLog) + _isDefaultHandler = State(initialValue: isDefaultHandler) + _cliInstalled = State(initialValue: cliInstalled) + } + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + IslandSection("Upload") { + HStack { + Text("Upload chunk size (MB)") + Spacer() + Picker("", selection: chunkBinding) { + ForEach(chunkSizes, id: \.self) { Text("\($0)").font(IslandTypography.body).tag($0) } + } + .labelsHidden() + .frame(width: 90) + HelpLinkButton(urlString: helpURLs["chunkSize"]) + } + toggleRow("Include a download-IPA link", key: "downloadIPA", value: $downloadIPA) + toggleRow("Include more build details", key: "moreDetails", value: $moreDetails) + toggleRow("Don't show previous versions on the install page", key: "hidePreviousVersions", value: $hidePreviousVersions) + } + + IslandSection("General") { + toggleRow("Check for updates", key: "updateAlert", value: $updateAlert) + toggleRow("Limited logging", key: "limitedLog", value: $limitedLog) + Toggle("Set AppBox as the default handler for .ipa files", isOn: Binding( + get: { isDefaultHandler }, + set: { isDefaultHandler = $0; onSetDefaultHandler($0) })) + .frame(maxWidth: .infinity, alignment: .leading) + } + + IslandSection("Command-Line Tool") { + HStack { + VStack(alignment: .leading, spacing: 2) { + Text(cliInstalled ? "Installed at /usr/local/bin/appboxcli" : "Not installed") + Text("Upload builds from your terminal or CI.") + .font(IslandTypography.caption).foregroundColor(.secondary) + } + Spacer() + Button(cliInstalled ? "Uninstall" : "Install") { cliInstalled = onToggleCLI() } + HelpLinkButton(urlString: helpURLs["cli"]) + } + } + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.paneWidth) + .onReceive(NotificationCenter.default.publisher(for: Notification.Name("ABDefaultIPAHandlerDidChangeNotification"))) { note in + if let isDefault = note.userInfo?["isDefault"] as? Bool { + isDefaultHandler = isDefault + } + } + } + + private var chunkBinding: Binding { + Binding(get: { chunkSize }, set: { chunkSize = $0; onChunkSize($0) }) + } + + private func toggleRow(_ label: String, key: String, value: Binding) -> some View { + HStack { + Toggle(label, isOn: Binding(get: { value.wrappedValue }, + set: { value.wrappedValue = $0; onBoolChange(key, $0) })) + Spacer() + HelpLinkButton(urlString: helpURLs[key]) + } + } +} + +public final class GeneralPreferencesHost: NSObject { + public static func makeView(chunkSize: Int, chunkSizes: [Int], + downloadIPA: Bool, moreDetails: Bool, hidePreviousVersions: Bool, + updateAlert: Bool, limitedLog: Bool, isDefaultHandler: Bool, + cliInstalled: Bool, helpURLs: [String: String], + onChunkSize: @escaping (Int) -> Void, + onBoolChange: @escaping (String, Bool) -> Void, + onSetDefaultHandler: @escaping (Bool) -> Void, + onToggleCLI: @escaping () -> Bool) -> NSView { + NSHostingView(rootView: GeneralPreferencesView( + chunkSize: chunkSize, chunkSizes: chunkSizes, + downloadIPA: downloadIPA, moreDetails: moreDetails, hidePreviousVersions: hidePreviousVersions, + updateAlert: updateAlert, limitedLog: limitedLog, isDefaultHandler: isDefaultHandler, + cliInstalled: cliInstalled, helpURLs: helpURLs, + onChunkSize: onChunkSize, onBoolChange: onBoolChange, onSetDefaultHandler: onSetDefaultHandler, + onToggleCLI: onToggleCLI).islandTypography()) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.h b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.h deleted file mode 100644 index a592b828..00000000 --- a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.h +++ /dev/null @@ -1,40 +0,0 @@ -// -// PreferencesViewController.h -// AppBox -// -// Created by Vineet Choudhary on 27/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface PreferencesViewController : NSViewController { - __weak IBOutlet NSComboBox *chunkSizeComboBox; - __weak IBOutlet NSButton *downloadIPAButton; - __weak IBOutlet NSButton *moreDetailsButton; - __weak IBOutlet NSButton *showPerviousBuildsButton; - - __weak IBOutlet NSButton *updateAlertCheckBox; - __weak IBOutlet NSButton *limitedLogCheckBox; - __weak IBOutlet NSButton *defaultIPAHandlerCheckBox; -} - -//AppBox Upload Settings -- (IBAction)chunckSizeComboBoxValueChanged:(NSComboBox *)sender; -- (IBAction)downloadIPACheckBoxValueChanged:(NSButton *)sender; -- (IBAction)moreDetailsCheckBoxValueChanged:(NSButton *)sender; -- (IBAction)showPreviousVersionCheckBoxValueChanged:(NSButton *)sender; - -//Help Buttons Action -- (IBAction)helpDownloadIPAButtonAction:(NSButton *)sender; -- (IBAction)helpMoreInformationAction:(NSButton *)sender; -- (IBAction)helpDontShowPerviousBuildAction:(NSButton *)sender; -- (IBAction)helpUploadChunkSizeAction:(NSButton *)sender; - -//General -- (IBAction)updateAlertCheckBoxChanged:(NSButton *)sender; -- (IBAction)limitedLogCheckBoxChanged:(NSButton *)sender; -- (IBAction)defaultIPAHandlerCheckBoxChanged:(NSButton *)sender; - - -@end diff --git a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.m b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.m deleted file mode 100644 index c2f9aa70..00000000 --- a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.m +++ /dev/null @@ -1,101 +0,0 @@ -// -// PreferencesViewController.m -// AppBox -// -// Created by Vineet Choudhary on 27/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "PreferencesViewController.h" - -@interface PreferencesViewController () - -@end - -@implementation PreferencesViewController { - NSArray *chunkSizes; -} - -- (void)viewDidLoad { - [super viewDidLoad]; - - chunkSizes = @[@10, @25, @50, @75, @100, @125, @150]; - - //set settings - [downloadIPAButton setState:[UserData downloadIPAEnable]]; - [moreDetailsButton setState:[UserData moreDetailsEnable]]; - [showPerviousBuildsButton setState:![UserData showPreviousVersions]]; - - NSNumber *chunkSize = [NSNumber numberWithInteger:[UserData uploadChunkSize]]; - [chunkSizeComboBox selectItemAtIndex:[chunkSizes indexOfObject:chunkSize]]; - - //set general settings - [limitedLogCheckBox setState: [UserData debugLog] ? NSControlStateValueOff : NSControlStateValueOn]; - [updateAlertCheckBox setState: [UserData updateAlertEnable] ? NSControlStateValueOn : NSControlStateValueOff]; - [defaultIPAHandlerCheckBox setState: [DefaultAppHandler isDefaultIPAHandler] ? NSControlStateValueOn : NSControlStateValueOff]; - - // Observe default IPA handler changes - [[NSNotificationCenter defaultCenter] addObserver:self - selector:@selector(defaultIPAHandlerDidChange:) - name:ABDefaultIPAHandlerDidChangeNotification - object:nil]; -} - -- (void)dealloc { - [[NSNotificationCenter defaultCenter] removeObserver:self name:ABDefaultIPAHandlerDidChangeNotification object:nil]; -} - -- (IBAction)chunckSizeComboBoxValueChanged:(NSComboBox *)sender { - [UserData setUploadChunkSize:[chunkSizes[[sender indexOfSelectedItem]] integerValue]]; -} - -- (IBAction)downloadIPACheckBoxValueChanged:(NSButton *)sender { - [UserData setDownloadIPAEnable:(sender.state == NSControlStateValueOn)]; -} - -- (IBAction)moreDetailsCheckBoxValueChanged:(NSButton *)sender { - [UserData setMoreDetailsEnable:(sender.state == NSControlStateValueOn)]; -} - -- (IBAction)showPreviousVersionCheckBoxValueChanged:(NSButton *)sender { - [UserData setShowPreviousVersions:(sender.state == NSControlStateValueOff)]; -} - -- (IBAction)helpDownloadIPAButtonAction:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abDownloadIPAHelpURL]]; -} - -- (IBAction)helpMoreInformationAction:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abMoreDetailsHelpURL]]; -} - -- (IBAction)helpDontShowPerviousBuildAction:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abDontShowPerviousBuildURL]]; -} - -- (IBAction)helpUploadChunkSizeAction:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abUploadChunkSizeHelpURL]]; -} - -- (IBAction)updateAlertCheckBoxChanged:(NSButton *)sender { - [UserData setUpdateAlertEnable:(sender.state == NSControlStateValueOn)]; -} - -- (IBAction)limitedLogCheckBoxChanged:(NSButton *)sender { - [UserData setEnableDebugLog:(sender.state != NSControlStateValueOn)]; -} - -- (IBAction)defaultIPAHandlerCheckBoxChanged:(NSButton *)sender { - if (sender.state == NSControlStateValueOn) { - [DefaultAppHandler setAsDefaultIPAHandler]; - } else { - [DefaultAppHandler removeAsDefaultIPAHandler]; - } -} - -- (void)defaultIPAHandlerDidChange:(NSNotification *)notification { - BOOL isDefault = [notification.userInfo[@"isDefault"] boolValue]; - [defaultIPAHandlerCheckBox setState:isDefault ? NSControlStateValueOn : NSControlStateValueOff]; -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.swift b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.swift new file mode 100644 index 00000000..1254b16f --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.swift @@ -0,0 +1,63 @@ +// +// PreferencesViewController.swift +// AppBox + +import AppKit + +public final class PreferencesViewController: NSViewController { + + private static let cliPath = "/usr/local/bin/appboxcli" + + public override func loadView() { + let chunkSizes = [10, 25, 50, 75, 100, 125, 150] + let helpURLs = [ + "downloadIPA": "https://docs.getappbox.com/Features/downloadipa/", + "moreDetails": "https://docs.getappbox.com/Features/moredetails/", + "hidePreviousVersions": "https://docs.getappbox.com/Features/keepsamelink/#12-install-previous-versions:~:text=How%20to%20Create%20Two%20Different%20Links%20for%20the%20Same%20Build%20with%20the%20%22Keep%20Same%20Link%22%20Option%3F", + "chunkSize": "https://docs.getappbox.com/Features/uploadchunksize/", + "cli": "https://docs.getappbox.com/CommandLineInterface/", + ] + let cliInstalled = FileManager.default.fileExists(atPath: Self.cliPath) + + view = GeneralPreferencesHost.makeView( + chunkSize: UserData.uploadChunkSize(), + chunkSizes: chunkSizes, + downloadIPA: UserData.downloadIPAEnable(), + moreDetails: UserData.moreDetailsEnable(), + hidePreviousVersions: !UserData.showPreviousVersions(), + updateAlert: !UserData.updateAlertEnable(), + limitedLog: !UserData.debugLog(), + isDefaultHandler: DefaultAppHandler.isDefaultIPAHandler(), + cliInstalled: cliInstalled, + helpURLs: helpURLs, + onChunkSize: { UserData.setUploadChunkSize($0) }, + onBoolChange: { key, isOn in + switch key { + case "downloadIPA": + UserData.setDownloadIPAEnable(isOn) + case "moreDetails": + UserData.setMoreDetailsEnable(isOn) + case "hidePreviousVersions": + UserData.setShowPreviousVersions(!isOn) + case "updateAlert": + UserData.setUpdateAlertEnable(!isOn) + case "limitedLog": + UserData.setEnableDebugLog(!isOn) + default: + break + } + }, + onSetDefaultHandler: { isOn in + if isOn { DefaultAppHandler.setAsDefaultIPAHandler() } + else { DefaultAppHandler.removeAsDefaultIPAHandler() } + }, + onToggleCLI: { + if FileManager.default.fileExists(atPath: Self.cliPath) { + _ = CLISupportHelper.uninstall() + } else { + _ = CLISupportHelper.install() + } + return FileManager.default.fileExists(atPath: Self.cliPath) + }) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.xib b/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.xib deleted file mode 100644 index 46adfaa3..00000000 --- a/AppBox/ViewController/PreferencesViewController/GeneralPreferencesViewController/PreferencesViewController.xib +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 10 MB - 25 MB - 50 MB - 75 MB - 100 MB - 125 MB - 150 MB - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesView.swift b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesView.swift new file mode 100644 index 00000000..f1dbdf5d --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesView.swift @@ -0,0 +1,90 @@ +// +// HelpPreferencesView.swift +// AppBox + +import SwiftUI +import AppKit + +struct HelpPreferencesView: View { + let documentationURL: String + let cliURL: String + let releasesURL: String + let licenseURL: String + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + header + + IslandSection("Help & Documentation") { + linkRow("Documentation", subtitle: "Guides and feature references", + systemImage: "book", urlString: documentationURL) + Divider() + linkRow("Command-Line Interface", subtitle: "Automate uploads from your terminal", + systemImage: "terminal", urlString: cliURL) + } + + IslandSection("About AppBox") { + linkRow("What's New", subtitle: "Latest release notes on GitHub", + systemImage: "sparkles", urlString: releasesURL) + Divider() + linkRow("License", subtitle: "Open-source license", + systemImage: "doc.text", urlString: licenseURL) + } + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.paneWidth) + } + + private var header: some View { + HStack(spacing: 14) { + Image(nsImage: NSApp.applicationIconImage) + .resizable() + .frame(width: 56, height: 56) + VStack(alignment: .leading, spacing: 2) { + Text("AppBox").font(IslandTypography.title2).bold() + Text(versionString).font(IslandTypography.subheadline).foregroundColor(.secondary) + Text("Build, test and distribute iOS apps wirelessly.") + .font(IslandTypography.caption).foregroundColor(.secondary) + } + Spacer() + } + } + + private var versionString: String { + let info = Bundle.main.infoDictionary + let short = info?["CFBundleShortVersionString"] as? String ?? "—" + let build = info?["CFBundleVersion"] as? String ?? "—" + return "Version \(short) (\(build))" + } + + private func linkRow(_ title: String, subtitle: String, systemImage: String, urlString: String) -> some View { + Button { + if let url = URL(string: urlString) { NSWorkspace.shared.open(url) } + } label: { + HStack(spacing: 12) { + Image(systemName: systemImage) + .font(IslandTypography.system(15)) + .foregroundColor(.accentColor) + .frame(width: 24) + VStack(alignment: .leading, spacing: 1) { + Text(title).foregroundColor(.primary) + Text(subtitle).font(IslandTypography.caption).foregroundColor(.secondary) + } + Spacer() + Image(systemName: "arrow.up.right").font(IslandTypography.caption).foregroundColor(.secondary) + } + .contentShape(Rectangle()) + .padding(.vertical, 2) + } + .buttonStyle(.plain) + } +} + +public final class HelpPreferencesHost: NSObject { + public static func makeView(documentationURL: String, cliURL: String, + releasesURL: String, licenseURL: String) -> NSView { + NSHostingView(rootView: HelpPreferencesView( + documentationURL: documentationURL, cliURL: cliURL, + releasesURL: releasesURL, licenseURL: licenseURL).islandTypography()) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.h b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.h deleted file mode 100644 index 33a34255..00000000 --- a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.h +++ /dev/null @@ -1,13 +0,0 @@ -// -// HelpPreferencesViewController.h -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface HelpPreferencesViewController : NSViewController - -@end diff --git a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.m b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.m deleted file mode 100644 index d025e946..00000000 --- a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.m +++ /dev/null @@ -1,22 +0,0 @@ -// -// HelpPreferencesViewController.m -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "HelpPreferencesViewController.h" - -@interface HelpPreferencesViewController () - -@end - -@implementation HelpPreferencesViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - // Do view setup here. -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.swift b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.swift new file mode 100644 index 00000000..7665a55e --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.swift @@ -0,0 +1,16 @@ +// +// HelpPreferencesViewController.swift +// AppBox + +import AppKit + +public final class HelpPreferencesViewController: NSViewController { + + public override func loadView() { + view = HelpPreferencesHost.makeView( + documentationURL: "https://docs.getappbox.com", + cliURL: "https://docs.getappbox.com/CommandLineInterface/", + releasesURL: "https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/releases/latest", + licenseURL: "https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/blob/master/LICENSE.md") + } +} diff --git a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.xib b/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.xib deleted file mode 100644 index 3bedd815..00000000 --- a/AppBox/ViewController/PreferencesViewController/HelpPreferencesViewController/HelpPreferencesViewController.xib +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/PreferencesViewController/PreferencesContainerView.swift b/AppBox/ViewController/PreferencesViewController/PreferencesContainerView.swift new file mode 100644 index 00000000..f81e2680 --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/PreferencesContainerView.swift @@ -0,0 +1,93 @@ +// +// PreferencesContainerView.swift +// AppBox + +import SwiftUI +import AppKit + +/// One preferences entry: a sidebar title + SF Symbol + tile tint, plus the pane's AppKit content view and its fitting size (measured by the host) so the SwiftUI layout sizes deterministically. +public final class PreferencePane: NSObject { + public let title: String + public let systemImage: String + public let tint: NSColor + public let view: NSView + public let preferredSize: CGSize + + public init(title: String, systemImage: String, tint: NSColor, + view: NSView, preferredSize: CGSize) { + self.title = title + self.systemImage = systemImage + self.tint = tint + self.view = view + self.preferredSize = preferredSize + super.init() + } +} + +/// Hosts a pane's existing AppKit view inside the SwiftUI detail column. +private struct PaneRepresentable: NSViewRepresentable { + let nsView: NSView + func makeNSView(context: Context) -> NSView { nsView } + func updateNSView(_ nsView: NSView, context: Context) {} +} + +struct PreferencesContainerView: View { + let panes: [PreferencePane] + @State private var selection: Int? = 0 + + private var detailWidth: CGFloat { panes.map { $0.preferredSize.width }.max() ?? 600 } + private var detailHeight: CGFloat { max(panes.map { $0.preferredSize.height }.max() ?? 400, 360) } + + var body: some View { + NavigationView { + List(selection: $selection) { + ForEach(panes.indices, id: \.self) { index in + sidebarRow(panes[index]).tag(index) + } + } + .listStyle(.sidebar) + .frame(minWidth: 235, idealWidth: 250, maxWidth: 280) + + detail + } + .frame(width: 250 + detailWidth + 16, height: detailHeight) + } + + /// An Xcode/System-Settings-style row: a rounded colored tile holding a white glyph, then the title. + private func sidebarRow(_ pane: PreferencePane) -> some View { + HStack(spacing: 10) { + RoundedRectangle(cornerRadius: 5, style: .continuous) + .fill(Color(nsColor: pane.tint)) + .frame(width: 20, height: 20) + .overlay( + Image(systemName: pane.systemImage) + .font(IslandTypography.system(12, weight: .semibold)) + .foregroundColor(.white) + ) + Text(pane.title).font(IslandTypography.body) + } + .padding(.vertical, 3) + } + + @ViewBuilder private var detail: some View { + if let selection, panes.indices.contains(selection) { + let pane = panes[selection] + VStack(alignment: .leading, spacing: 0) { + PaneRepresentable(nsView: pane.view) + .frame(width: pane.preferredSize.width, height: pane.preferredSize.height) + Spacer(minLength: 0) + } + .frame(maxWidth: .infinity, maxHeight: .infinity, alignment: .topLeading) + .id(selection) // force the representable to re-host the selected pane's view + } else { + Color.clear + } + } +} + +/// Builds the SwiftUI container view from the assembled panes. +public final class PreferencesContainerHost: NSObject { + public static func makeView(panes: [PreferencePane]) -> NSView { + NSHostingView(rootView: PreferencesContainerView(panes: panes).islandTypography()) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.h b/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.h deleted file mode 100644 index 84e63296..00000000 --- a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// PreferencesTabViewController.h -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -#import "PreferencesViewController.h" -#import "HelpPreferencesViewController.h" -#import "EmailPreferencesViewController.h" -#import "ThirdPartyPreferencesViewController.h" -#import "AccountPreferencesViewController.h" - -@interface PreferencesTabViewController : NSTabViewController{ - -} - -+ (void)presentPreferences; - -@end diff --git a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.m b/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.m deleted file mode 100644 index b4a3239b..00000000 --- a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.m +++ /dev/null @@ -1,75 +0,0 @@ -// -// PreferencesTabViewController.m -// AppBox -// -// Created by Vineet Choudhary on 28/03/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "PreferencesTabViewController.h" - -@interface PreferencesTabViewController () - -@end - -@implementation PreferencesTabViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - // Do view setup here. -} - -- (void)viewWillAppear { - [super viewWillAppear]; - [self setTabStyle:NSTabViewControllerTabStyleToolbar]; - [self.tabView setControlSize:NSControlSizeRegular]; - [self setTitle:@"AppBox Preferences"]; - - //General Preferences - PreferencesViewController *preferencesViewController = [[PreferencesViewController alloc] initWithNibName:NSStringFromClass([PreferencesViewController class]) bundle:nil]; - NSTabViewItem *generalPreferencesTabViewItem = [[NSTabViewItem alloc] initWithIdentifier:@"general"]; - [generalPreferencesTabViewItem setLabel:@"General"]; - [generalPreferencesTabViewItem setImage:[NSImage imageNamed:@"BlueSetting"]]; - [generalPreferencesTabViewItem setViewController:preferencesViewController]; - [self addTabViewItem:generalPreferencesTabViewItem]; - - //Accounts Preferences - if (abMultiDBAccounts) { - AccountPreferencesViewController *accountPreferencesViewController = [[AccountPreferencesViewController alloc] initWithNibName:NSStringFromClass([AccountPreferencesViewController class]) bundle:nil]; - NSTabViewItem *accountPreferencesTabViewItem = [[NSTabViewItem alloc] initWithIdentifier:@"accounts"]; - [accountPreferencesTabViewItem setLabel:@"Accounts"]; - [accountPreferencesTabViewItem setImage:[NSImage imageNamed:@"BlueAccount"]]; - [accountPreferencesTabViewItem setViewController:accountPreferencesViewController]; - [self addTabViewItem:accountPreferencesTabViewItem]; - } - - //Mail Preferences - EmailPreferencesViewController *emailPreferencesViewController = [[EmailPreferencesViewController alloc] initWithNibName:NSStringFromClass([EmailPreferencesViewController class]) bundle:nil]; - NSTabViewItem *emailPreferencesTabViewItem = [[NSTabViewItem alloc] initWithIdentifier:@"email"]; - [emailPreferencesTabViewItem setLabel:@"Email"]; - [emailPreferencesTabViewItem setImage:[NSImage imageNamed:@"BlueEmail"]]; - [emailPreferencesTabViewItem setViewController:emailPreferencesViewController]; - [self addTabViewItem:emailPreferencesTabViewItem]; - - //Integrations Preferences - ThirdPartyPreferencesViewController *thirdPartyPreferencesViewController = [[ThirdPartyPreferencesViewController alloc] initWithNibName:NSStringFromClass([ThirdPartyPreferencesViewController class]) bundle:nil]; - NSTabViewItem *thirdPartyPreferencesTabViewItem = [[NSTabViewItem alloc] initWithIdentifier:@"slack"]; - [thirdPartyPreferencesTabViewItem setLabel:@"3rd Party"]; - [thirdPartyPreferencesTabViewItem setImage:[NSImage imageNamed:@"Integration"]]; - [thirdPartyPreferencesTabViewItem setViewController:thirdPartyPreferencesViewController]; - [self addTabViewItem:thirdPartyPreferencesTabViewItem]; - - //Help Preferences - HelpPreferencesViewController *helpPreferencesViewController = [[HelpPreferencesViewController alloc] initWithNibName:NSStringFromClass([HelpPreferencesViewController class]) bundle:nil]; - NSTabViewItem *helpPreferencesTabViewItem = [[NSTabViewItem alloc] initWithIdentifier:@"help"]; - [helpPreferencesTabViewItem setLabel:@"Help"]; - [helpPreferencesTabViewItem setImage:[NSImage imageNamed:@"BlueHelp"]]; - [helpPreferencesTabViewItem setViewController:helpPreferencesViewController]; -} - -+ (void)presentPreferences { - PreferencesTabViewController *pref = [[PreferencesTabViewController alloc] initWithNibName:NSStringFromClass([PreferencesTabViewController class]) bundle:nil]; - [[NSApplication sharedApplication].keyWindow.contentViewController presentViewControllerAsModalWindow:pref]; -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.swift b/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.swift new file mode 100644 index 00000000..b9f14cb9 --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.swift @@ -0,0 +1,68 @@ +// +// PreferencesTabViewController.swift +// AppBox + +import AppKit + +public final class PreferencesTabViewController: NSViewController { + + private var panes: [NSViewController] = [] + + public override func loadView() { + var panes: [NSViewController] = [] + var tabs: [PreferencePane] = [] + + let general = PreferencesViewController() + panes.append(general) + tabs.append(pane(for: general, title: "General", systemImage: "gearshape", tint: .systemGray)) + + let account = AccountPreferencesViewController() + panes.append(account) + tabs.append(pane(for: account, title: "Accounts", systemImage: "person.crop.circle", tint: .systemTeal)) + + let email = EmailPreferencesViewController() + panes.append(email) + tabs.append(pane(for: email, title: "Email", systemImage: "envelope", tint: .systemBlue)) + + let thirdParty = ThirdPartyPreferencesViewController() + panes.append(thirdParty) + tabs.append(pane(for: thirdParty, title: "3rd Party", systemImage: "puzzlepiece.extension", tint: .systemPurple)) + + let help = HelpPreferencesViewController() + panes.append(help) + tabs.append(pane(for: help, title: "Help", systemImage: "questionmark.circle", tint: .systemPink)) + + self.panes = panes + view = PreferencesContainerHost.makeView(panes: tabs) + } + + private func pane(for controller: NSViewController, title: String, systemImage: String, tint: NSColor) -> PreferencePane { + let view = controller.view + view.layoutSubtreeIfNeeded() + return PreferencePane(title: title, systemImage: systemImage, tint: tint, view: view, preferredSize: view.fittingSize) + } + + public override func viewDidLoad() { + super.viewDidLoad() + title = "AppBox Preferences" + } + + public override func viewDidAppear() { + super.viewDidAppear() + view.window?.styleMask.remove(.resizable) + } + + private static weak var current: PreferencesTabViewController? + + public class func presentPreferences() { + if let existing = current, let window = existing.view.window { + window.makeKeyAndOrderFront(nil) + return + } + let host = (NSApp.keyWindow ?? NSApp.mainWindow ?? NSApp.windows.first { $0.isVisible })?.contentViewController + guard let host else { return } + let pref = PreferencesTabViewController() + current = pref + host.presentAsModalWindow(pref) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.xib b/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.xib deleted file mode 100644 index e998c778..00000000 --- a/AppBox/ViewController/PreferencesViewController/PreferencesTabViewController.xib +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesView.swift b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesView.swift new file mode 100644 index 00000000..f5ef8bf5 --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesView.swift @@ -0,0 +1,80 @@ +// +// ThirdPartyPreferencesView.swift +// AppBox + +import SwiftUI +import AppBoxCore +import AppKit + +public final class ThirdPartyModel: NSObject, ObservableObject { + @Published fileprivate var slackWebhook: String + @Published fileprivate var teamsWebhook: String + @Published fileprivate(set) var isTestingSlack: Bool = false + @Published fileprivate(set) var isTestingTeams: Bool = false + + public var onSave: (() -> Void)? + public var onTestSlack: (() -> Void)? + public var onTestTeams: (() -> Void)? + public var onSetupWebhook: (() -> Void)? + + public var slackWebhookText: String { get { slackWebhook } set { slackWebhook = newValue } } + public var teamsWebhookText: String { get { teamsWebhook } set { teamsWebhook = newValue } } + public func setTestingSlack(_ testing: Bool) { isTestingSlack = testing } + public func setTestingTeams(_ testing: Bool) { isTestingTeams = testing } + + public init(slackWebhook: String, teamsWebhook: String) { + self.slackWebhook = slackWebhook + self.teamsWebhook = teamsWebhook + super.init() + } +} + +struct ThirdPartyPreferencesView: View { + @ObservedObject var model: ThirdPartyModel + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + IslandSection("Slack") { + LabeledField(label: "Incoming Webhook URL", prompt: "https://hooks.slack.com/services/…", text: $model.slackWebhook) + HStack(spacing: 8) { + if model.isTestingSlack { + ProgressView().controlSize(.small) + Text("Sending…").foregroundColor(.secondary) + } else { + Button("Test Slack") { model.onTestSlack?() } + Button("Set up a webhook…") { model.onSetupWebhook?() }.buttonStyle(.link) + } + Spacer() + } + } + + IslandSection("Microsoft Teams") { + LabeledField(label: "Incoming Webhook URL", prompt: "https://outlook.office.com/webhook/…", text: $model.teamsWebhook) + HStack(spacing: 8) { + if model.isTestingTeams { + ProgressView().controlSize(.small) + Text("Sending…").foregroundColor(.secondary) + } else { + Button("Test Teams") { model.onTestTeams?() } + } + Spacer() + } + } + + HStack { + Spacer() + Button("Save") { model.onSave?() } + .keyboardShortcut(.defaultAction) + .disabled(model.isTestingSlack || model.isTestingTeams) + } + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.paneWidth) + } +} + +public final class ThirdPartyPreferencesHost: NSObject { + public static func makeView(model: ThirdPartyModel) -> NSView { + NSHostingView(rootView: ThirdPartyPreferencesView(model: model).islandTypography()) + } +} diff --git a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.h b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.h deleted file mode 100644 index f33407cf..00000000 --- a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.h +++ /dev/null @@ -1,26 +0,0 @@ -// -// ThirdPartyPreferencesViewController.h -// AppBox -// -// Created by Vineet Choudhary on 10/05/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface ThirdPartyPreferencesViewController : NSViewController { - __weak IBOutlet NSTextField *slackChannelTextField; - __weak IBOutlet NSTextField *slackMessageTextField; - __weak IBOutlet NSTextField *microsoftTeamWebHook; -} - -- (IBAction)saveButtonTapped:(NSButton *)sender; -- (IBAction)testSlackButtonTapped:(NSButton *)sender; -- (IBAction)testMicrosoftTeamButtonTapped:(NSButton *)sender; - - - -- (IBAction)setupNewSlackWebhook:(NSButton *)sender; - - -@end diff --git a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.m b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.m deleted file mode 100644 index 24ef6648..00000000 --- a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.m +++ /dev/null @@ -1,98 +0,0 @@ -// -// ThirdPartyPreferencesViewController.m -// AppBox -// -// Created by Vineet Choudhary on 10/05/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "ThirdPartyPreferencesViewController.h" - -@implementation ThirdPartyPreferencesViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - - [slackChannelTextField setStringValue:[UserData userSlackChannel]]; - [microsoftTeamWebHook setStringValue:[UserData userMicrosoftTeamWebHook]]; - [slackMessageTextField setStringValue:[UserData userSlackMessage]]; -} - - -- (BOOL)validateWebHookURLWithSlack:(BOOL)slack msTeams:(BOOL)msTeams{ - NSString *slackURL = [slackChannelTextField.stringValue stringByRemovingPercentEncoding]; - if ([NSURL URLWithString:slackURL] == nil && slack) { - [Common showAlertWithTitle:@"Error" andMessage:@"Please enter a valid Slack WebHook URL."]; - return NO; - } - - NSString *microsoftTeamURL = [microsoftTeamWebHook.stringValue stringByRemovingPercentEncoding]; - if ([NSURL URLWithString:microsoftTeamURL] == nil && msTeams) { - [Common showAlertWithTitle:@"Error" andMessage:@"Please enter a valid Microsoft Team WebHook URL."]; - return NO; - } - return YES; -} - -- (IBAction)saveButtonTapped:(NSButton *)sender { - [self.view.window makeFirstResponder:self.view]; - if (![self validateWebHookURLWithSlack:YES msTeams:YES]) { - return; - } - [UserData setUserSlackChannel:slackChannelTextField.stringValue]; - [UserData setUserMicrosoftTeamWebHook:microsoftTeamWebHook.stringValue]; - [UserData setUserSlackMessage:slackMessageTextField.stringValue]; - [ABHudViewController showStatus:@"Details Saved!" forSuccess:YES onView:self.view]; -} - -- (IBAction)testSlackButtonTapped:(NSButton *)sender { - [self.view.window makeFirstResponder:self.view]; - if (![self validateWebHookURLWithSlack:YES msTeams:NO]) { - return; - } - NSString *webhook = [slackChannelTextField.stringValue stringByRemovingPercentEncoding]; - NSString *message = slackMessageTextField.stringValue; - [ABHudViewController showStatus:@"Sending Test Message..." onView:self.view]; - [SlackClient sendMessage:[self demoIPAUploadInfo] webhook:webhook message:message completion:^(BOOL success) { - [ABHudViewController hideAllHudFromView:self.view after:0]; - if (success) { - [ABHudViewController showStatus:@"Message Sent." forSuccess:YES onView:self.view]; - } else { - [ABHudViewController showStatus:@"Message Failed." forSuccess:NO onView:self.view]; - } - }]; -} - -- (IBAction)testMicrosoftTeamButtonTapped:(NSButton *)sender { - [self.view.window makeFirstResponder:self.view]; - if (![self validateWebHookURLWithSlack:NO msTeams:YES]) { - return; - } - NSString *webhook = [microsoftTeamWebHook.stringValue stringByRemovingPercentEncoding]; - NSString *message = slackMessageTextField.stringValue; - [ABHudViewController showStatus:@"Sending Test Message..." onView:self.view]; - [MSTeamsClient sendMessage:[self demoIPAUploadInfo] webhook:webhook message:message completion:^(BOOL success) { - [ABHudViewController hideAllHudFromView:self.view after:0]; - if (success) { - [ABHudViewController showStatus:@"Message Sent." forSuccess:YES onView:self.view]; - } else { - [ABHudViewController showStatus:@"Message Failed." forSuccess:NO onView:self.view]; - } - }]; -} - -- (IBAction)setupNewSlackWebhook:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:abWebHookSetupURL]]; -} - --(IPAUploadInfo *)demoIPAUploadInfo{ - //create a test ipa upload info for demo email - IPAUploadInfo *ipaUploadInfo = [[IPAUploadInfo alloc] init]; - [ipaUploadInfo setName:@"TestApp"]; - [ipaUploadInfo setVersion:@"1.0"]; - [ipaUploadInfo setBuild:@"1"]; - [ipaUploadInfo setAppShortShareableURL:[NSURL URLWithString:@"https://getappbox.com"]]; - return ipaUploadInfo; -} - -@end diff --git a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.swift b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.swift new file mode 100644 index 00000000..f71e790d --- /dev/null +++ b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.swift @@ -0,0 +1,121 @@ +// +// ThirdPartyPreferencesViewController.swift +// AppBox + +import AppKit +import AppBoxCore +import os + +public final class ThirdPartyPreferencesViewController: NSViewController { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox", category: "ThirdPartyPreferences") + private var model: ThirdPartyModel? + + public override func loadView() { + let model = ThirdPartyModel( + slackWebhook: UserData.userSlackChannel(), + teamsWebhook: UserData.userMicrosoftTeamWebHook()) + self.model = model + model.onSave = { [weak self] in self?.saveTapped() } + model.onTestSlack = { [weak self] in self?.testSlackTapped() } + model.onTestTeams = { [weak self] in self?.testTeamsTapped() } + model.onSetupWebhook = { + if let url = URL(string: "https://my.slack.com/apps/new/A0F7XDUAZ-incoming-webhooks") { + NSWorkspace.shared.open(url) + } + } + view = ThirdPartyPreferencesHost.makeView(model: model) + } + + // MARK: - Actions (invoked by the SwiftUI form's callbacks) + + private func isValidWebHookURL(_ urlString: String, name: String, allowEmpty: Bool = false) -> Bool { + let decoded = urlString.removingPercentEncoding ?? urlString + if decoded.isEmpty { + if allowEmpty { return true } + Common.showAlert(withTitle: "Error", andMessage: "Please enter a \(name) WebHook URL.") + return false + } + if URL(string: decoded) == nil { + Common.showAlert(withTitle: "Error", andMessage: "Please enter a valid \(name) WebHook URL.") + return false + } + return true + } + + private func saveTapped() { + guard let model else { return } + let slack = model.slackWebhookText + let teams = model.teamsWebhookText + guard isValidWebHookURL(slack, name: "Slack", allowEmpty: true), + isValidWebHookURL(teams, name: "Microsoft Team", allowEmpty: true) else { return } + UserData.setUserSlackChannel(slack) + UserData.setUserMicrosoftTeamWebHook(teams) + Common.showAlert(withTitle: "Saved", andMessage: "Integration settings saved.") + } + + private func testSlackTapped() { + guard let model else { return } + let webhook = model.slackWebhookText + guard isValidWebHookURL(webhook, name: "Slack") else { return } + guard requireDropboxSession() else { return } + model.setTestingSlack(true) + SlackClient.sendMessage( + demoIPAUploadInfo(), + webhook: webhook.removingPercentEncoding ?? webhook) { [weak self] success in + DispatchQueue.main.async { + self?.model?.setTestingSlack(false) + self?.finishWebhookTest(success, service: "Slack") + } + } + } + + private func testTeamsTapped() { + guard let model else { return } + let webhook = model.teamsWebhookText + guard isValidWebHookURL(webhook, name: "Microsoft Team") else { return } + guard requireDropboxSession() else { return } + model.setTestingTeams(true) + MSTeamsClient.sendMessage( + demoIPAUploadInfo(), + webhook: webhook.removingPercentEncoding ?? webhook) { [weak self] success in + DispatchQueue.main.async { + self?.model?.setTestingTeams(false) + self?.finishWebhookTest(success, service: "Microsoft Teams") + } + } + } + + private func finishWebhookTest(_ success: Bool, service: String) { + if success { + Common.showAlert( + withTitle: "Message Sent", + andMessage: "A test message was sent to \(service).") + } else { + Self.log.error("\(service, privacy: .public) test webhook failed.") + Common.showAlert( + withTitle: "\(service) Test Failed", + andMessage: "Couldn't send a test message to \(service). Please check the webhook URL.") + } + } + + /// Test notifications go through the backend, which authenticates the caller by their Dropbox session — so a test needs a connected account (previously the send was direct from the app). + private func requireDropboxSession() -> Bool { + guard DropboxSession.isAuthorized else { + Common.showAlert( + withTitle: "Connect Dropbox", + andMessage: "Connect your Dropbox account first to send a test notification.") + return false + } + return true + } + + private func demoIPAUploadInfo() -> IPAUploadInfo { + let info = IPAUploadInfo() + info.name = "TestApp" + info.version = "1.0" + info.build = "1" + info.appShortShareableURL = URL(string: "https://getappbox.com") + return info + } +} diff --git a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.xib b/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.xib deleted file mode 100644 index 8efbd76a..00000000 --- a/AppBox/ViewController/PreferencesViewController/ThirdPartyPreferencesViewController/ThirdPartyPreferencesViewController.xib +++ /dev/null @@ -1,186 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Supported Keywords: -{BUILD_NAME} - For Build Name -{BUILD_VERSION} - For Build Version -{BUILD_NUMBER} - For Build Number -{SHARE_URL} - For Download URL - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/QRCodeViewController/QRCodeView.swift b/AppBox/ViewController/QRCodeViewController/QRCodeView.swift new file mode 100644 index 00000000..a5882a89 --- /dev/null +++ b/AppBox/ViewController/QRCodeViewController/QRCodeView.swift @@ -0,0 +1,81 @@ +// +// QRCodeView.swift +// AppBox + +import SwiftUI +import CoreImage +import AppKit + +struct QRCodeView: View { + let urlString: String + let onClose: () -> Void + + var body: some View { + VStack(spacing: IslandMetrics.sectionSpacing) { + Text("Scan to Install").font(IslandTypography.headline) + + Group { + if let image = QRCodeImage.make(for: urlString, size: CGSize(width: 240, height: 240)) { + Image(nsImage: image) + .resizable() + .interpolation(.none) + .scaledToFit() + .accessibilityLabel("QR code for the install link") + } else { + Text("Unable to generate QR code.") + .foregroundColor(.secondary) + } + } + .frame(width: 240, height: 240) + + Text(urlString) + .font(IslandTypography.caption) + .foregroundColor(.secondary) + .lineLimit(1) + .truncationMode(.middle) + .frame(maxWidth: .infinity) + + Button("Close", action: onClose) + .keyboardShortcut(.cancelAction) + } + .padding(IslandMetrics.padding) + .frame(width: IslandMetrics.qrWidth) + } +} + +/// QR rendering `: `CIQRCodeGenerator` → `CIFalseColor` (label color on a clear background, so it adapts to light/dark) → nearest-neighbour upscale for crisp modules. +enum QRCodeImage { + static func make(for string: String, size: CGSize) -> NSImage? { + guard let data = string.data(using: .isoLatin1), + let qrFilter = CIFilter(name: "CIQRCodeGenerator") else { return nil } + qrFilter.setValue(data, forKey: "inputMessage") + qrFilter.setValue("M", forKey: "inputCorrectionLevel") + guard let qrImage = qrFilter.outputImage else { return nil } + + let coloredImage: CIImage + if let colorFilter = CIFilter(name: "CIFalseColor") { + colorFilter.setValue(qrImage, forKey: kCIInputImageKey) + colorFilter.setValue(CIColor(cgColor: NSColor.labelColor.cgColor), forKey: "inputColor0") + colorFilter.setValue(CIColor(red: 0, green: 0, blue: 0, alpha: 0), forKey: "inputColor1") + coloredImage = colorFilter.outputImage ?? qrImage + } else { + coloredImage = qrImage + } + + let extent = coloredImage.extent + guard extent.width > 0, extent.height > 0 else { return nil } + let scale = min(size.width / extent.width, size.height / extent.height) + let scaled = coloredImage.samplingNearest().transformed(by: CGAffineTransform(scaleX: scale, y: scale)) + + let image = NSImage(size: size) + image.addRepresentation(NSCIImageRep(ciImage: scaled)) + return image + } +} + +/// `@objc` factory so the `QRCodeViewController` can obtain the hosted view — it can't name the generic `NSHostingView` itself. +public final class QRCodeHost: NSObject { + public static func makeView(urlString: String, onClose: @escaping () -> Void) -> NSView { + NSHostingView(rootView: QRCodeView(urlString: urlString, onClose: onClose).islandTypography()) + } +} diff --git a/AppBox/ViewController/QRCodeViewController/QRCodeViewController.h b/AppBox/ViewController/QRCodeViewController/QRCodeViewController.h deleted file mode 100644 index 7e0da00d..00000000 --- a/AppBox/ViewController/QRCodeViewController/QRCodeViewController.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// QRCodeViewController.h -// AppBox -// -// Created by Vineet Choudhary on 18/01/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import - -@interface QRCodeViewController : NSViewController{ - __weak IBOutlet NSImageView *imageViewQRCode; -} - -@property(nonatomic, strong) IPAUploadInfo *ipaUploadInfo; -@property(nonatomic, strong) ABUploadRecord *uploadRecord; - -- (IBAction)buttonCloseTapped:(NSButton *)sender; - -@end diff --git a/AppBox/ViewController/QRCodeViewController/QRCodeViewController.m b/AppBox/ViewController/QRCodeViewController/QRCodeViewController.m deleted file mode 100644 index 7097aff6..00000000 --- a/AppBox/ViewController/QRCodeViewController/QRCodeViewController.m +++ /dev/null @@ -1,79 +0,0 @@ -// -// QRCodeViewController.m -// AppBox -// -// Created by Vineet Choudhary on 18/01/17. -// Copyright © 2017 Developer Insider. All rights reserved. -// - -#import "QRCodeViewController.h" -#import - -@implementation QRCodeViewController{ -} - -- (void)viewDidLoad { - [super viewDidLoad]; - - //create qr code and show in imageview - NSString *url; - if (self.ipaUploadInfo) { - url = self.ipaUploadInfo.appShortShareableURL.stringValue; - } else if (self.uploadRecord){ - url = self.uploadRecord.shortURL; - } else { - url = @"No URL found."; - } - NSImage *image = [self qrCodeImageForString:url size:NSMakeSize(250, 250)]; - if (image){ - [imageViewQRCode setImage:image]; - }else{ - [Common showAlertWithTitle:@"Error" andMessage:@"Unable to generate QR code."]; - } -} - -- (NSImage *)qrCodeImageForString:(NSString *)string size:(NSSize)size { - NSData *data = [string dataUsingEncoding:NSISOLatin1StringEncoding]; - if (data == nil) { - return nil; - } - - CIFilter *qrFilter = [CIFilter filterWithName:@"CIQRCodeGenerator"]; - [qrFilter setValue:data forKey:@"inputMessage"]; - [qrFilter setValue:@"M" forKey:@"inputCorrectionLevel"]; - CIImage *qrImage = qrFilter.outputImage; - if (qrImage == nil) { - return nil; - } - - __block CIColor *onColor = nil; - [self.view.effectiveAppearance performAsCurrentDrawingAppearance:^{ - onColor = [CIColor colorWithCGColor:NSColor.labelColor.CGColor]; - }]; - if (onColor == nil) { - onColor = [CIColor colorWithCGColor:NSColor.labelColor.CGColor]; - } - - // Map the black data modules to the label color and the white background to clear. - CIFilter *colorFilter = [CIFilter filterWithName:@"CIFalseColor"]; - [colorFilter setValue:qrImage forKey:kCIInputImageKey]; - [colorFilter setValue:onColor forKey:@"inputColor0"]; - [colorFilter setValue:[CIColor colorWithRed:0.0 green:0.0 blue:0.0 alpha:0.0] forKey:@"inputColor1"]; - CIImage *coloredImage = colorFilter.outputImage ?: qrImage; - - // Scale up using nearest-neighbour sampling so the modules stay crisp. - CGRect extent = coloredImage.extent; - CGFloat scale = MIN(size.width / extent.size.width, size.height / extent.size.height); - CIImage *scaledImage = [[coloredImage imageBySamplingNearest] - imageByApplyingTransform:CGAffineTransformMakeScale(scale, scale)]; - - NSCIImageRep *rep = [NSCIImageRep imageRepWithCIImage:scaledImage]; - NSImage *image = [[NSImage alloc] initWithSize:size]; - [image addRepresentation:rep]; - return image; -} - -- (IBAction)buttonCloseTapped:(NSButton *)sender { - [self dismissController:self]; -} -@end diff --git a/AppBox/ViewController/QRCodeViewController/QRCodeViewController.swift b/AppBox/ViewController/QRCodeViewController/QRCodeViewController.swift new file mode 100644 index 00000000..d350e377 --- /dev/null +++ b/AppBox/ViewController/QRCodeViewController/QRCodeViewController.swift @@ -0,0 +1,29 @@ +// +// QRCodeViewController.swift +// AppBox + +import AppKit +import AppBoxCore + +public final class QRCodeViewController: NSViewController { + + public var ipaUploadInfo: IPAUploadInfo? + public var uploadRecord: ABUploadRecord? + + public override func loadView() { + var url: String? + if let ipaUploadInfo { + url = ipaUploadInfo.appShortShareableURL?.absoluteString + } else if let uploadRecord { + url = uploadRecord.shortURL + } + + if (url ?? "").isEmpty { + url = "No URL found." + } + + view = QRCodeHost.makeView(urlString: url ?? "", onClose: { [weak self] in + self?.dismiss(nil) + }) + } +} diff --git a/AppBox/ViewController/ShowLinkViewController/ShowLinkView.swift b/AppBox/ViewController/ShowLinkViewController/ShowLinkView.swift new file mode 100644 index 00000000..d800363d --- /dev/null +++ b/AppBox/ViewController/ShowLinkViewController/ShowLinkView.swift @@ -0,0 +1,80 @@ +// +// ShowLinkView.swift +// AppBox + +import SwiftUI +import AppKit + +struct ShowLinkView: View { + let link: String + let isLongURL: Bool + let onShowQR: () -> Void + let onShowDashboard: () -> Void + let onClose: () -> Void + + @State private var copied = false + + private var hint: String { + isLongURL + ? "Your app is ready. Copy this link and share it with anyone. (Our URL shortener is temporarily unavailable, so this is the full link.)" + : "Your app is ready. Copy this link and share it with anyone." + } + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + Text("Your link is ready").font(IslandTypography.headline) + + Text(hint) + .foregroundColor(.secondary) + .fixedSize(horizontal: false, vertical: true) + + Text(link) + .font(IslandTypography.headline.monospaced()) + .textSelection(.enabled) + .frame(maxWidth: .infinity, alignment: .leading) + .padding(10) + .background(RoundedRectangle(cornerRadius: 6).fill(Color(nsColor: .textBackgroundColor))) + .overlay(RoundedRectangle(cornerRadius: 6).strokeBorder(Color(nsColor: .separatorColor))) + + HStack(spacing: 10) { + Button(copied ? "Copied!" : "Copy", action: copyLink) + Button("Open", action: openLink).keyboardShortcut(.defaultAction) + Button("QR Code", action: onShowQR) + Button("Show in Dashboard", action: onShowDashboard) + Spacer() + Button("Close", action: onClose).keyboardShortcut(.cancelAction) + } + } + .padding(IslandMetrics.padding) + .frame(width: 560) + } + + private func copyLink() { + NSPasteboard.general.clearContents() + NSPasteboard.general.setString(link, forType: .string) + copied = true + DispatchQueue.main.asyncAfter(deadline: .now() + 1) { copied = false } + } + + private func openLink() { + guard let url = URL(string: link) else { return } + NSWorkspace.shared.open(url) + } +} + +public final class ShowLinkHost: NSObject { + public static func makeView( + link: String, + isLongURL: Bool, + onShowQR: @escaping () -> Void, + onShowDashboard: @escaping () -> Void, + onClose: @escaping () -> Void) -> NSView { + let showLinkView = ShowLinkView( + link: link, + isLongURL: isLongURL, + onShowQR: onShowQR, + onShowDashboard: onShowDashboard, + onClose: onClose).islandTypography() + return NSHostingView(rootView: showLinkView) + } +} diff --git a/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.h b/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.h deleted file mode 100644 index 1423d64e..00000000 --- a/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.h +++ /dev/null @@ -1,29 +0,0 @@ -// -// ShowLinkViewController.h -// AppBox -// -// Created by Vineet Choudhary on 07/09/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import -#import "QRCodeViewController.h" -#import "Project+CoreDataClass.h" -#import "DashboardViewController.h" - -@interface ShowLinkViewController : NSViewController{ - IBOutlet NSTextField *textFieldHint; - IBOutlet NSTextField *textFieldAppLink; - IBOutlet NSButton *buttonCopyToClipboard; - __weak IBOutlet NSLayoutConstraint *linkHeightConstraint; - __weak IBOutlet NSLayoutConstraint *linkHintHeightConstraint; -} - -@property(nonatomic, strong) IPAUploadInfo *ipaUploadInfo; - -- (IBAction)buttonCloseTapped:(NSButton *)sender; -- (IBAction)buttonCopyToClipboardTapped:(NSButton *)sender; -- (IBAction)buttonOpenURLAction:(NSButton *)sender; - - -@end diff --git a/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.m b/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.m deleted file mode 100644 index 95096920..00000000 --- a/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.m +++ /dev/null @@ -1,63 +0,0 @@ -// -// ShowLinkViewController.m -// AppBox -// -// Created by Vineet Choudhary on 07/09/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "ShowLinkViewController.h" - -#define ShortURLUserHint @"Your app is ready. Copy this link and send it to anyone." -#define LongURLUserHint @"Your app is ready. Copy this link and send it to anyone, sorry for long url, our shortener URL API getting failed currently." - -@interface ShowLinkViewController () - -@end - -@implementation ShowLinkViewController - -- (void)viewDidLoad { - [super viewDidLoad]; - [textFieldAppLink setStringValue: self.ipaUploadInfo.appShortShareableURL.stringValue]; - if ([self.ipaUploadInfo.appShortShareableURL isEqualTo:self.ipaUploadInfo.appLongShareableURL]) { - [textFieldHint setStringValue:LongURLUserHint]; - [linkHeightConstraint setConstant:70]; - [linkHintHeightConstraint setConstant:40]; - } else { - [textFieldHint setStringValue:ShortURLUserHint]; - [linkHeightConstraint setConstant:30]; - [linkHintHeightConstraint setConstant:20]; - } - - //Save Project Details - [ABProject addProjectWithIPAUploadInfo:self.ipaUploadInfo]; -} - - -- (IBAction)buttonCopyToClipboardTapped:(NSButton *)sender { - [[NSPasteboard generalPasteboard] clearContents]; - [[NSPasteboard generalPasteboard] setString:self.ipaUploadInfo.appShortShareableURL.stringValue forType:NSPasteboardTypeString]; - [sender setTitle:@"Copied!!"]; - dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ - [sender setTitle:@"Copy to Clipboard"]; - }); -} - -- (IBAction)buttonOpenURLAction:(NSButton *)sender { - [[NSWorkspace sharedWorkspace] openURL:self.ipaUploadInfo.appShortShareableURL]; -} - - -- (IBAction)buttonCloseTapped:(NSButton *)sender { - [self dismissController:self]; -} - -//MARK: - Navigation --(void)prepareForSegue:(NSStoryboardSegue *)segue sender:(id)sender{ - if ([segue.destinationController isKindOfClass:[QRCodeViewController class]]){ - ((QRCodeViewController *) segue.destinationController).ipaUploadInfo = self.ipaUploadInfo; - } -} - -@end diff --git a/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.swift b/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.swift new file mode 100644 index 00000000..7a51a11c --- /dev/null +++ b/AppBox/ViewController/ShowLinkViewController/ShowLinkViewController.swift @@ -0,0 +1,44 @@ +// +// ShowLinkViewController.swift +// AppBox + +import AppKit +import AppBoxCore + +public final class ShowLinkViewController: NSViewController { + + public var ipaUploadInfo: IPAUploadInfo? + + public override func loadView() { + let link = ipaUploadInfo?.appShortShareableURL?.absoluteString ?? "" + let isLongURL = ipaUploadInfo?.appShortShareableURL == ipaUploadInfo?.appLongShareableURL + view = ShowLinkHost.makeView( + link: link, + isLongURL: isLongURL, + onShowQR: { [weak self] in + self?.presentQRCodeSheet() + }, + onShowDashboard: { [weak self] in + NotificationCenter.default.post( + name: Notification.Name("AppBoxOpenDashboardNotification"), + object: self?.ipaUploadInfo?.appShortShareableURL?.absoluteString) + self?.dismiss(nil) + }, + onClose: { [weak self] in + self?.dismiss(nil) + }) + } + + public override func viewDidLoad() { + super.viewDidLoad() + if let info = ipaUploadInfo { + _ = ABProject.addProject(withIPAUploadInfo: info) + } + } + + private func presentQRCodeSheet() { + let qr = QRCodeViewController() + qr.ipaUploadInfo = ipaUploadInfo + presentAsSheet(qr) + } +} diff --git a/AppBox/ViewController/Storyboard/Main.storyboard b/AppBox/ViewController/Storyboard/Main.storyboard deleted file mode 100644 index 3d9b9878..00000000 --- a/AppBox/ViewController/Storyboard/Main.storyboard +++ /dev/null @@ -1,1558 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - xcodeproj - xcworkspace - ipa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/AppBox/ViewController/SwiftUI/IslandStyle.swift b/AppBox/ViewController/SwiftUI/IslandStyle.swift new file mode 100644 index 00000000..3740af67 --- /dev/null +++ b/AppBox/ViewController/SwiftUI/IslandStyle.swift @@ -0,0 +1,134 @@ +// +// IslandStyle.swift +// AppBox + +import SwiftUI +import AppKit + +enum IslandMetrics { + static let padding: CGFloat = 24 + static let sectionSpacing: CGFloat = 20 + static let fieldSpacing: CGFloat = 12 + + static let qrWidth: CGFloat = 320 + static let sheetWidth: CGFloat = 540 + static let paneWidth: CGFloat = 660 + + static let accountPaneHeight: CGFloat = 320 +} + +/// The app's type scale. Every text style derives from `scale`, so the whole UI resizes from one number. +enum IslandTypography { + static let scale: CGFloat = 1.2 + + /// The macOS system size for a text style, scaled and rounded to a whole point. + static func size(_ base: CGFloat) -> CGFloat { + (base * scale).rounded() + } + + static let caption = Font.system(size: size(10)) + static let subheadline = Font.system(size: size(11)) + static let callout = Font.system(size: size(12)) + static let body = Font.system(size: size(13)) + static let headline = Font.system(size: size(13), weight: .semibold) + static let title3 = Font.system(size: size(15)) + static let title2 = Font.system(size: size(17)) + static let title = Font.system(size: size(22)) + + static func system(_ base: CGFloat, weight: Font.Weight = .regular) -> Font { + .system(size: size(base), weight: weight) + } +} + +extension View { + /// Applies the app's type scale as the default font for a hosted SwiftUI root. + func islandTypography() -> some View { + environment(\.font, IslandTypography.body) + .controlSize(.large) + } +} + +/// A caption label above a rounded-border text field — the standard island form field. +struct LabeledField: View { + let label: String + let prompt: String + @Binding var text: String + + var body: some View { + VStack(alignment: .leading, spacing: 6) { + Text(label).font(IslandTypography.subheadline).foregroundColor(.secondary) + TextField(prompt, text: $text) + .textFieldStyle(.roundedBorder) + .controlSize(.large) + } + } +} + +/// A titled card section (GroupBox) with consistent header + inner spacing. +struct IslandSection: View { + let title: String + @ViewBuilder let content: () -> Content + + init(_ title: String, @ViewBuilder content: @escaping () -> Content) { + self.title = title + self.content = content + } + + var body: some View { + VStack(alignment: .leading, spacing: 8) { + Text(title) + .font(IslandTypography.headline) + .padding(.leading, 2) + GroupBox { + VStack(alignment: .leading, spacing: IslandMetrics.fieldSpacing) { + content() + } + .frame(maxWidth: .infinity, alignment: .leading) + .padding(8) + } + } + } +} + +/// A caption-sized note under a field: an optional title above a list of lines. +struct IslandFootnote: View { + let title: String? + let lines: [String] + + init(_ title: String? = nil, lines: [String]) { + self.title = title + self.lines = lines + } + + var body: some View { + VStack(alignment: .leading, spacing: 3) { + if let title { + Text(title) + .font(IslandTypography.caption) + .foregroundColor(.secondary) + } + ForEach(lines, id: \.self) { line in + Text(line) + .font(IslandTypography.caption) + .foregroundColor(.secondary) + .textSelection(.enabled) + } + } + .frame(maxWidth: .infinity, alignment: .leading) + } +} + +/// A small inline "?" help button that opens a URL. +struct HelpLinkButton: View { + let urlString: String? + + var body: some View { + if let urlString, let url = URL(string: urlString) { + Button { NSWorkspace.shared.open(url) } label: { + Image(systemName: "questionmark.circle") + } + .buttonStyle(.borderless) + .help("Learn more") + } + } +} diff --git a/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingView.swift b/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingView.swift new file mode 100644 index 00000000..c8edc6d1 --- /dev/null +++ b/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingView.swift @@ -0,0 +1,57 @@ +// +// UploadAdvancedSettingView.swift +// AppBox + +import SwiftUI +import AppKit + +public final class AdvancedSettingsModel: NSObject, ObservableObject { + @Published fileprivate var folderName: String + let fieldEnabled: Bool + + public var onSave: (() -> Void)? + public var onCancel: (() -> Void)? + + /// Bridge so the controller can read the field on save. + public var folderNameText: String { folderName } + + public init(folderName: String, fieldEnabled: Bool) { + self.folderName = folderName + self.fieldEnabled = fieldEnabled + super.init() + } +} + +struct UploadAdvancedSettingView: View { + @ObservedObject var model: AdvancedSettingsModel + + var body: some View { + VStack(alignment: .leading, spacing: IslandMetrics.sectionSpacing) { + Text("Other Settings").font(IslandTypography.headline) + + VStack(alignment: .leading, spacing: 6) { + LabeledField(label: "Custom Dropbox folder name", + prompt: "e.g. MyApp", text: $model.folderName) + .disabled(!model.fieldEnabled) + if !model.fieldEnabled { + Text("Turn on “Keep the same link” to set a custom folder.") + .font(IslandTypography.caption).foregroundColor(.secondary) + } + } + + HStack { + Spacer() + Button("Cancel") { model.onCancel?() }.keyboardShortcut(.cancelAction) + Button("Save") { model.onSave?() }.keyboardShortcut(.defaultAction) + } + } + .padding(IslandMetrics.padding) + .frame(width: 440) + } +} + +public final class AdvancedSettingsHost: NSObject { + public static func makeView(model: AdvancedSettingsModel) -> NSView { + NSHostingView(rootView: UploadAdvancedSettingView(model: model).islandTypography()) + } +} diff --git a/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.h b/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.h deleted file mode 100644 index 4ddb2d5f..00000000 --- a/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.h +++ /dev/null @@ -1,32 +0,0 @@ -// -// UploadAdvancedSettingViewController.h -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -@class UploadAdvancedSettingViewController; -@protocol UploadAdvancedSettingViewDelegate - -- (void)uploadAdvancedSettingSaveButtonTapped:(NSButton *)sender; -- (void)uploadAdvancedSettingCancelButtonTapped:(NSButton *)sender; - -@end - -@interface UploadAdvancedSettingViewController : NSViewController{ - -} - -@property(nonatomic, strong) IPAUploadInfo *ipaUploadInfo; -@property(weak) id delegate; - -@property (weak) IBOutlet NSTextField *dbFolderNameTextField; - - -- (IBAction)buttonSaveTapped:(NSButton *)sender; -- (IBAction)buttonCancelTapped:(NSButton *)sender; - -@end diff --git a/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.m b/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.m deleted file mode 100644 index 3303e4ba..00000000 --- a/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.m +++ /dev/null @@ -1,52 +0,0 @@ -// -// UploadAdvancedSettingViewController.m -// AppBox -// -// Created by Vineet Choudhary on 30/12/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import "UploadAdvancedSettingViewController.h" - -@implementation UploadAdvancedSettingViewController{ - -} - -- (void)viewDidLoad { - [super viewDidLoad]; - - if (self.ipaUploadInfo.bundleDirectory) { - [self.dbFolderNameTextField setStringValue:self.ipaUploadInfo.bundleDirectory.lastPathComponent]; - } - [self.dbFolderNameTextField setEnabled:self.ipaUploadInfo.isKeepSameLinkEnabled]; -} - -- (void)viewDidDisappear{ - [super viewDidDisappear]; -} - -//MARK: - Action Button Tapped -- (IBAction)buttonCancelTapped:(NSButton *)sender { - [self dismissController:self]; - [self.delegate uploadAdvancedSettingCancelButtonTapped:sender]; -} - -- (IBAction)buttonSaveTapped:(NSButton *)sender { - if (self.delegate != nil){ - [self.delegate uploadAdvancedSettingSaveButtonTapped:sender]; - } - - if(![self.dbFolderNameTextField.stringValue isEqualToString:self.ipaUploadInfo.identifer] && self.dbFolderNameTextField.stringValue.length>0){ - NSString *bundlePath = [NSString stringWithFormat:@"/%@",self.dbFolderNameTextField.stringValue]; - bundlePath = [bundlePath stringByReplacingOccurrencesOfString:@" " withString:abEmptyString]; - [self.ipaUploadInfo setBundleDirectory:[NSURL URLWithString:bundlePath]]; - } - - [self dismissController:self]; -} - - - - - -@end diff --git a/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.swift b/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.swift new file mode 100644 index 00000000..058510f5 --- /dev/null +++ b/AppBox/ViewController/UploadAdvancedSettingViewController/UploadAdvancedSettingViewController.swift @@ -0,0 +1,46 @@ +// +// UploadAdvancedSettingViewController.swift +// AppBox + +import AppKit + +public protocol UploadAdvancedSettingViewDelegate: AnyObject { + func uploadAdvancedSettingSaveButtonTapped(_ sender: NSButton?) + func uploadAdvancedSettingCancelButtonTapped(_ sender: NSButton?) +} + +public final class UploadAdvancedSettingViewController: NSViewController { + + public var ipaUploadInfo: IPAUploadInfo? + public weak var delegate: UploadAdvancedSettingViewDelegate? + + private var model: AdvancedSettingsModel? + + public override func loadView() { + let folder = ipaUploadInfo?.bundleDirectory?.lastPathComponent ?? "" + let model = AdvancedSettingsModel(folderName: folder, + fieldEnabled: ipaUploadInfo?.isKeepSameLinkEnabled ?? false) + self.model = model + model.onSave = { [weak self] in self?.saveSettings() } + model.onCancel = { [weak self] in self?.cancelSettings() } + view = AdvancedSettingsHost.makeView(model: model) + } + + // MARK: - Actions (invoked by the SwiftUI view's callbacks) + + private func cancelSettings() { + dismiss(self) + delegate?.uploadAdvancedSettingCancelButtonTapped(nil) + } + + private func saveSettings() { + delegate?.uploadAdvancedSettingSaveButtonTapped(nil) + + if let folder = model?.folderNameText, folder != ipaUploadInfo?.identifer, !folder.isEmpty { + let bundlePath = "/\(folder)".replacingOccurrences(of: " ", with: "") + ipaUploadInfo?.bundleDirectory = URL(string: bundlePath) + } + + dismiss(self) + } +} diff --git a/AppBox/main.m b/AppBox/main.m deleted file mode 100644 index 0e5449b5..00000000 --- a/AppBox/main.m +++ /dev/null @@ -1,13 +0,0 @@ -// -// main.m -// AppBox -// -// Created by Vineet Choudhary on 29/08/16. -// Copyright © 2016 Developer Insider. All rights reserved. -// - -#import - -int main(int argc, const char * argv[]) { - return NSApplicationMain(argc, argv); -} diff --git a/AppBoxCLI/AppBoxCLI.swift b/AppBoxCLI/AppBoxCLI.swift index ea963c84..375e31a3 100644 --- a/AppBoxCLI/AppBoxCLI.swift +++ b/AppBoxCLI/AppBoxCLI.swift @@ -1,18 +1,161 @@ // -// ParsableLaunchArguments.swift +// AppBoxCLI.swift // AppBoxCLI // // Created by Vineet Choudhary on 06/09/25. // Copyright © 2025 Developer Insider. All rights reserved. -// import Foundation import ArgumentParser +import AppBoxCore +import AppKit + +/// The CLI's backend client, mirroring the GUI's `AppServices`. +enum AppBoxCLIServices { + static let serviceClient = AppBoxServiceClient( + configuration: .production(clientToken: AppBoxSecrets.clientToken), + httpClient: URLSessionHTTPClient(), + tokenProvider: DropboxSessionTokenProvider()) +} -struct AppBoxCLI: ParsableCommand { +/// Root command. +@main +@available(macOS 10.15, *) +struct AppBoxCLI: AsyncParsableCommand { static let configuration = CommandConfiguration( commandName: "appboxcli", - abstract: "AppBox is a tool for iOS developers to deploy Development, Ad-Hoc, and In-house (Enterprise) applications directly to the devices from your Dropbox account." + abstract: "AppBox is a tool for iOS developers to deploy Development, Ad-Hoc, and In-house (Enterprise) applications directly to the devices from your Dropbox account.", + subcommands: [Upload.self, Login.self, Logout.self, WhoAmI.self, Space.self, List.self, Delete.self], + defaultSubcommand: Upload.self + ) +} + +/// `appboxcli delete` — interactively delete a build from Dropbox and the dashboard (the GUI's "Delete from Dropbox and Dashboard"), or `--dashboard-only` to just drop the record. +struct Delete: AsyncParsableCommand { + static let configuration = CommandConfiguration( + commandName: "delete", + abstract: "Delete a build from Dropbox and your dashboard (interactive).") + + @Flag(name: .customLong("dashboard-only"), + help: "Remove the record from the dashboard only; leave the Dropbox files in place.") + var dashboardOnly = false + + private static func appBoxIsRunning() -> Bool { + !NSRunningApplication.runningApplications(withBundleIdentifier: "com.developerinsider.AppBox").isEmpty + } + + func run() async throws { + if Self.appBoxIsRunning() { + print("AppBox is open. Quit AppBox before deleting from the CLI (both can't safely write the store).") + throw ExitCode.failure + } + + let service = BuildDeletionService(appKey: DropboxAppKey.value()) + let builds: [BuildHistoryEntry] + do { + builds = try service.loadBuilds() + } catch { + print("Error: \(error.localizedDescription)") + throw ExitCode.failure + } + guard !builds.isEmpty else { + print("No uploads to delete.") + return + } + + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd HH:mm" + for (i, b) in builds.enumerated() { + let date = b.datetime.map { dateFormatter.string(from: $0) } ?? "—" + let app = b.appName ?? b.bundleIdentifier ?? "—" + print("[\(i + 1)] \(date) \(app) \(b.version ?? "—") (\(b.build ?? "—")) \(b.shortURL ?? "—")") + } + + print("\nEnter the number to delete (Return to cancel): ", terminator: "") + fflush(stdout) + guard let line = readLine(strippingNewline: true)?.trimmingCharacters(in: .whitespaces), + let choice = Int(line), choice >= 1, choice <= builds.count else { + print("Cancelled.") + return + } + let index = choice - 1 + let chosen = builds[index] + let target = "\(chosen.appName ?? chosen.bundleIdentifier ?? "build") \(chosen.version ?? "")(\(chosen.build ?? ""))" + let scope = dashboardOnly ? "the dashboard only" : "Dropbox and the dashboard" + print("Delete \"\(target)\" from \(scope)? [y/N]: ", terminator: "") + fflush(stdout) + guard let confirm = readLine(strippingNewline: true)?.lowercased(), confirm == "y" || confirm == "yes" else { + print("Cancelled.") + return + } + + if Self.appBoxIsRunning() { + print("AppBox was opened while this prompt was waiting. Quit AppBox and run delete again.") + throw ExitCode.failure + } + + do { + try await service.delete(at: index, fromDropbox: !dashboardOnly) + print("\u{2713} Deleted.") + } catch { + print("Error: \(cliMessage(for: error))") + throw ExitCode.failure + } + } +} + +/// `appboxcli list` — prints the upload history (the GUI Dashboard's data) from the shared Core Data store via AppBoxCore's `BuildHistoryStore` (opened read-only, so it's safe alongside a running GUI). +struct List: ParsableCommand { + static let configuration = CommandConfiguration( + commandName: "list", + abstract: "List your AppBox upload history (newest first).") + + func run() throws { + let builds: [BuildHistoryEntry] + do { + builds = try BuildHistoryStore().recentBuilds() + } catch { + print("Error: \(error.localizedDescription)") + throw ExitCode.failure + } + guard !builds.isEmpty else { + print("No uploads yet.") + return + } + printTable(builds) + } + + private func printTable(_ builds: [BuildHistoryEntry]) { + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd HH:mm" + + var rows: [(date: String, app: String, version: String, type: String, link: String)] = + [(date: "DATE", app: "APP", version: "VERSION", type: "TYPE", link: "LINK")] + for b in builds { + rows.append(( + date: b.datetime.map { dateFormatter.string(from: $0) } ?? "—", + app: b.appName ?? b.bundleIdentifier ?? "—", + version: "\(b.version ?? "—") (\(b.build ?? "—"))", + type: b.buildType ?? "—", + link: b.shortURL ?? "—")) + } + + let wDate = rows.map { $0.date.count }.max() ?? 0 + let wApp = rows.map { $0.app.count }.max() ?? 0 + let wVersion = rows.map { $0.version.count }.max() ?? 0 + let wType = rows.map { $0.type.count }.max() ?? 0 + func pad(_ s: String, _ width: Int) -> String { s.padding(toLength: width, withPad: " ", startingAt: 0) } + + for row in rows { + print("\(pad(row.date, wDate)) \(pad(row.app, wApp)) \(pad(row.version, wVersion)) \(pad(row.type, wType)) \(row.link)") + } + } +} + +struct Upload: AsyncParsableCommand { + static let configuration = CommandConfiguration( + commandName: "upload", + abstract: "Upload an IPA and create an install link (default command)." ) @Option( @@ -32,7 +175,7 @@ struct AppBoxCLI: ParsableCommand { @Option( name: .customLong("message"), help: .init( - "[Optional] \nAttach personal message in the email. \nSupported Keywords: {BUILD_NAME}, {BUILD_VERSION}, and {BUILD_NUMBER}\n", + "[Optional] \nAttach a personal message to the email, shown under \"Message from the developer\".\n", valueName: "email message")) var message: String? @@ -48,11 +191,8 @@ struct AppBoxCLI: ParsableCommand { valueName: "dropbox folder")) var dropboxFolder: String? - @Option( - name: .customLong("webhookmessage"), - help: .init( - "[Optional] \nCustom message to send along with Slack or Microsoft Teams notification. \nSupported Keywords: {BUILD_NAME}, {BUILD_VERSION}, {BUILD_NUMBER}, {SHARE_URL}\n", - valueName: "webhook message")) + /// Retired in 4.0 — the notification text is generated. Still accepted so existing CI scripts don't fail on an unknown option. + @Option(name: .customLong("webhookmessage"), help: .hidden) var webhookMessage: String? @Option( @@ -69,85 +209,87 @@ struct AppBoxCLI: ParsableCommand { valueName: "msteams webhook")) var msTeamsWebhook: String? - mutating func run() { - startAppBox() + func run() async throws { + try await publish() } } -extension AppBoxCLI { - private func startAppBox() { - let appBoxPath = "/Applications/AppBox.app/Contents/MacOS/AppBox" - guard FileManager.default.fileExists(atPath: appBoxPath) else { - print("\nAppBox is not installed in /Applications folder. AppBox must be installed at /Applications/AppBox.app to use the AppBox CLI tool.") - Foundation.exit(1) - } +extension Upload { - let task = Process() - task.launchPath = appBoxPath - task.arguments = buildArguments() - captureStandardOutput(task: task) + /// Streams each pipeline stage to stdout so a CI log shows the same progress the GUI HUD would. + private final class PrintingProgressReporter: ProgressReporter { + private var lastLine = "" - do { - try task.run() - task.waitUntilExit() - Foundation.exit(task.terminationStatus) - } catch { - print("Failed to start AppBox: \(error)") - Foundation.exit(1) + func report(stage: UploadStage, message: String?, fractionCompleted: Double?) { + var line = message ?? "Finalising…" + if let fractionCompleted, fractionCompleted >= 0 { + line += " (\(Int(fractionCompleted * 100))%)" + } + guard line != lastLine else { return } + lastLine = line + print(line) + fflush(stdout) } } - private func buildArguments() -> [String] { - var arguments = [String]() - - arguments.append("ipa=\(ipaPath)") - - if let emails, !emails.isEmpty { - arguments.append("emails=\(emails)") + /// ArgumentParser calls this before `run()`; rejects bad input, matching the argument checks the GUI used to run. + func validate() throws { + if webhookMessage != nil { + print("NOTE - --webhookmessage is no longer used; the notification text is generated from the build.") } - - if let message, !message.isEmpty { - arguments.append("message=\(message)") + if let emails, !emails.isEmpty, !EmailValidator.isAllValidEmails(emails) { + print("ERROR - Invalid email address format in emails argument.") + throw ExitCode(127) } - - if let dropboxFolder, !dropboxFolder.isEmpty { - arguments.append("dbfolder=\(dropboxFolder)") - } - - if keepSameLink { - arguments.append("keepsamelink=1") - } - - if let webhookMessage, !webhookMessage.isEmpty { - arguments.append("webhookmessage=\(webhookMessage)") + if let slackWebhook, !slackWebhook.isEmpty, !WebhookURL.isValid(slackWebhook) { + print("ERROR - Invalid Slack Webhook URL. Only https:// webhook URLs are supported.") + throw ExitCode(127) } - - if let slackWebhook, !slackWebhook.isEmpty { - arguments.append("slackwebhook=\(slackWebhook)") + if let msTeamsWebhook, !msTeamsWebhook.isEmpty, !WebhookURL.isValid(msTeamsWebhook) { + print("ERROR - Invalid Microsoft Teams Webhook URL. Only https:// webhook URLs are supported.") + throw ExitCode(127) } + } - if let msTeamsWebhook, !msTeamsWebhook.isEmpty { - arguments.append("msteamswebhook=\(msTeamsWebhook)") - } + private func publish() async throws { + let ipaURL = URL(fileURLWithPath: (ipaPath as NSString).expandingTildeInPath) + let share = BuildShareOptions( + emails: (emails ?? "").components(separatedBy: ",") + .map { $0.trimmingCharacters(in: .whitespaces) } + .filter { !$0.isEmpty }, + personalMessage: message, + slackWebhook: slackWebhook, + msTeamsWebhook: msTeamsWebhook) - return arguments - } + let request = BuildUploadRequest( + ipaURL: ipaURL, + settings: UploadSettings(), + share: share, + keepSameLink: keepSameLink, + bundleDirectory: dropboxFolder.map { "/" + $0.replacingOccurrences(of: " ", with: "") }) - private func captureStandardOutput(task: Process) { - let pipe = Pipe() - task.standardOutput = pipe - task.standardError = pipe - pipe.fileHandleForReading.waitForDataInBackgroundAndNotify() - - NotificationCenter.default.addObserver( - forName: .NSFileHandleDataAvailable, - object: pipe.fileHandleForReading, - queue: nil) { _ in - let data = pipe.fileHandleForReading.availableData - if let output = String(data: data, encoding: .utf8), !output.isEmpty { - print(output.trimmingCharacters(in: .whitespacesAndNewlines)) - } - pipe.fileHandleForReading.waitForDataInBackgroundAndNotify() + let service = BuildPublishService(appKey: DropboxAppKey.value(), + serviceClient: AppBoxCLIServices.serviceClient) + do { + let (outcome, report) = try await service.publish(request, progress: PrintingProgressReporter()) + ShareURLExport.write(shareURL: outcome.result.shortLink, + ipaURL: outcome.result.ipaLink, + manifestURL: outcome.result.manifestLink) + print("SHARE URL - \(outcome.result.shortLink.absoluteString)") + fflush(stdout) + if let recordSaveError = report.recordSaveError { + print("WARNING - the build is live but could not be added to your dashboard: \(recordSaveError.localizedDescription)") + } + if report.emailSent == false { + print("WARNING - the build email could not be sent.") } + if report.slackSent == false || report.teamsSent == false { + print("WARNING - a webhook notification could not be sent.") + } + throw ExitCode(report.emailSent == false ? 111 : 0) + } catch let error as BuildUploadError { + print("ERROR - \(error.message)") + throw ExitCode(error.exitCode) + } } } diff --git a/AppBoxCLI/DropboxAuthCommands.swift b/AppBoxCLI/DropboxAuthCommands.swift new file mode 100644 index 00000000..940e0d32 --- /dev/null +++ b/AppBoxCLI/DropboxAuthCommands.swift @@ -0,0 +1,146 @@ +// +// DropboxAuthCommands.swift +// AppBoxCLI +// +// Copyright © 2026 Developer Insider. + +import Foundation +import ArgumentParser +import AppBoxCore + +/// The Dropbox app key — a public OAuth client_id (PKCE protects the flow without a secret). +enum DropboxAppKey { + static func value() -> String { + AppBoxSecrets.dropboxAppKey + } +} + +struct Login: AsyncParsableCommand { + static let configuration = CommandConfiguration( + commandName: "login", + abstract: "Log in to Dropbox (opens your browser to authorize AppBox).") + + func run() async throws { + let auth = DropboxCLIAuth(appKey: DropboxAppKey.value()) + if auth.isAuthorized { + print("Already logged in to Dropbox.") + return + } + + let request = auth.beginAuthorization() + print("Opening your browser to authorize AppBox with Dropbox…") + openInBrowser(request.authorizeURL) + print("If it doesn't open automatically, visit:\n\(request.authorizeURL.absoluteString)\n") + print("After approving, Dropbox shows an access code. Paste it here and press Return:") + + guard let code = readLine(strippingNewline: true)?.trimmingCharacters(in: .whitespacesAndNewlines), + !code.isEmpty else { + print("No authorization code entered. Aborted.") + throw ExitCode.failure + } + + try await auth.completeLogin(request, code: code) + print("\u{2713} Logged in to Dropbox.") + } + + private func openInBrowser(_ url: URL) { + let task = Process() + task.executableURL = URL(fileURLWithPath: "/usr/bin/open") + task.arguments = [url.absoluteString] + try? task.run() + } +} + +struct Logout: ParsableCommand { + static let configuration = CommandConfiguration( + commandName: "logout", + abstract: "Log out of Dropbox on this machine (also signs out the AppBox app — they share one session).") + + @Flag(name: .customLong("force"), help: "Skip the confirmation prompt.") + var force = false + + func run() throws { + if !force { + print("This also logs the AppBox app out of Dropbox (they share one session). Continue? [y/N]: ", terminator: "") + fflush(stdout) + guard let confirm = readLine(strippingNewline: true)?.lowercased(), confirm == "y" || confirm == "yes" else { + print("Cancelled.") + return + } + } + DropboxCLIAuth(appKey: DropboxAppKey.value()).signOut() + print("\u{2713} Logged out of Dropbox.") + } +} + +struct WhoAmI: AsyncParsableCommand { + static let configuration = CommandConfiguration( + commandName: "whoami", + abstract: "Show the Dropbox account you're currently logged in as.") + + func run() async throws { + let session = DropboxCLISession(appKey: DropboxAppKey.value()) + let account: DropboxCLISession.AccountInfo + do { + account = try await session.currentAccount() + } catch { + print("Error: \(cliMessage(for: error))") + throw ExitCode.failure + } + + print("Name: \(account.displayName)") + print("Email: \(account.email)\(account.emailVerified ? "" : " (unverified)")") + print("Account: \(account.accountType)") + if let team = account.teamName { print("Team: \(team)") } + if let country = account.country { print("Country: \(country)") } + print("Locale: \(account.locale)") + if account.isPaired { print("Paired: has a linked personal + work account") } + print("ID: \(account.accountId)") + } +} + +struct Space: AsyncParsableCommand { + static let configuration = CommandConfiguration( + commandName: "space", + abstract: "Show Dropbox storage usage (used / total / available).") + + func run() async throws { + let session = DropboxCLISession(appKey: DropboxAppKey.value()) + let usage: DropboxCLISession.SpaceUsage + do { + usage = try await session.spaceUsage() + } catch { + print("Error: \(cliMessage(for: error))") + throw ExitCode.failure + } + + let formatter = ByteCountFormatter() + formatter.allowedUnits = [.useGB, .useMB, .useKB] + formatter.countStyle = .binary + func human(_ bytes: UInt64) -> String { formatter.string(fromByteCount: Int64(clamping: bytes)) } + + print("Used: \(human(usage.usedBytes))") + if let allocated = usage.allocatedBytes { + print("Total: \(human(allocated))") + if let available = usage.availableBytes { + let percent = allocated > 0 ? Double(usage.usedBytes) / Double(allocated) * 100 : 0 + print("Available: \(human(available))") + print(String(format: "Usage: %.1f%%", percent)) + } + } + switch usage.allocation { + case .individual: + print("Plan: Individual") + case .team(let teamUsed, let teamAllocated, _, _): + print("Plan: Team") + print("Team used: \(human(teamUsed)) of \(human(teamAllocated))") + case .other: + break + } + } +} + +/// Extract a clean, user-facing message from a thrown error for terminal output (so a failed query prints "Error: Not logged in…" rather than a raw enum case). +func cliMessage(for error: Error) -> String { + StorageErrorText.cliMessage(for: error) +} diff --git a/AppBoxCLI/Scripts/install.sh b/AppBoxCLI/Scripts/install.sh deleted file mode 100755 index 036aaf6f..00000000 --- a/AppBoxCLI/Scripts/install.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/sh -ex - -TOOL_PATH="$1" -INSTALL_PATH="$2" -INSTALL_DIR=`dirname "$INSTALL_PATH"` - -mkdir -p "$INSTALL_DIR" -ln -sf "$TOOL_PATH" "$INSTALL_PATH" - -printf "OK" diff --git a/AppBoxCLI/Scripts/uninstall.sh b/AppBoxCLI/Scripts/uninstall.sh deleted file mode 100755 index 76dfbec0..00000000 --- a/AppBoxCLI/Scripts/uninstall.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh -ex - -TOOL_PATH="$1" -INSTALL_PATH="$2" -rm -f "$INSTALL_PATH" - -printf "OK" diff --git a/AppBoxCLI/Scripts/update.sh b/AppBoxCLI/Scripts/update.sh deleted file mode 100755 index 16b0f928..00000000 --- a/AppBoxCLI/Scripts/update.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/sh -ex - -TOOL_PATH="$1" -INSTALL_PATH="$2" -rm -f "$INSTALL_PATH" - -INSTALL_DIR=`dirname "$INSTALL_PATH"` -mkdir -p "$INSTALL_DIR" -ln -sf "$TOOL_PATH" "$INSTALL_PATH" - -printf "OK" diff --git a/AppBoxCLI/main.swift b/AppBoxCLI/main.swift deleted file mode 100644 index 773f8fcb..00000000 --- a/AppBoxCLI/main.swift +++ /dev/null @@ -1,12 +0,0 @@ -// -// main.swift -// AppBoxCLI -// -// Created by Vineet Choudhary on 04/09/25. -// Copyright © 2025 Developer Insider. All rights reserved. -// - -import Foundation - -var command = AppBoxCLI.parseOrExit() -command.run() diff --git a/AppBoxCore/.gitignore b/AppBoxCore/.gitignore new file mode 100644 index 00000000..c50e1917 --- /dev/null +++ b/AppBoxCore/.gitignore @@ -0,0 +1,4 @@ +.build/ +.swiftpm/ +DerivedData/ +*.xcodeproj diff --git a/AppBoxCore/Package.resolved b/AppBoxCore/Package.resolved new file mode 100644 index 00000000..cec4d6c2 --- /dev/null +++ b/AppBoxCore/Package.resolved @@ -0,0 +1,23 @@ +{ + "pins" : [ + { + "identity" : "swiftydropbox", + "kind" : "remoteSourceControl", + "location" : "https://github.com/dropbox/SwiftyDropbox.git", + "state" : { + "revision" : "e315e0b14edb83f022134aef389deb4e8bee6bbf", + "version" : "10.2.4" + } + }, + { + "identity" : "zipfoundation", + "kind" : "remoteSourceControl", + "location" : "https://github.com/weichsel/ZIPFoundation.git", + "state" : { + "revision" : "22787ffb59de99e5dc1fbfe80b19c97a904ad48d", + "version" : "0.9.20" + } + } + ], + "version" : 2 +} diff --git a/AppBoxCore/Package.swift b/AppBoxCore/Package.swift new file mode 100644 index 00000000..748c5968 --- /dev/null +++ b/AppBoxCore/Package.swift @@ -0,0 +1,29 @@ +// swift-tools-version:5.9 +import PackageDescription + +let package = Package( + name: "AppBoxCore", + platforms: [ + .macOS("15.0") // macOS 15 floor (supports the latest two: macOS 15 + 26); GUI + CLI both consume it. + ], + products: [ + .library(name: "AppBoxCore", targets: ["AppBoxCore"]) + ], + dependencies: [ + .package(url: "https://github.com/dropbox/SwiftyDropbox.git", .upToNextMajor(from: "10.0.0")), + .package(url: "https://github.com/weichsel/ZIPFoundation.git", .upToNextMajor(from: "0.9.0")) + ], + targets: [ + .target( + name: "AppBoxCore", + dependencies: [ + .product(name: "SwiftyDropbox", package: "SwiftyDropbox"), + .product(name: "ZIPFoundation", package: "ZIPFoundation") + ], + resources: [ + .process("CoreData/Resources") + ] + ), + .testTarget(name: "AppBoxCoreTests", dependencies: ["AppBoxCore"]) + ] +) diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/ArchiveExtractor.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/ArchiveExtractor.swift new file mode 100644 index 00000000..ef333944 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/ArchiveExtractor.swift @@ -0,0 +1,10 @@ +import Foundation + +/// Abstraction over unzipping an archive (production: ZIPFoundation). +public protocol ArchiveExtractor: AnyObject { + /// Extracts the zip at `archiveURL` into `destinationURL`, creating the destination if needed. + func extract(archiveAt archiveURL: URL, to destinationURL: URL) throws + + /// Lists the entry paths inside the zip (without extracting) — used to locate the payload before unzipping. + func entries(ofArchiveAt archiveURL: URL) throws -> [String] +} diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/FileSystem.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/FileSystem.swift new file mode 100644 index 00000000..2591725a --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/FileSystem.swift @@ -0,0 +1,43 @@ +import Foundation + +/// A subset of file attributes Core actually needs. +public struct FileAttributes: Equatable, Sendable { + public let size: Int64 + /// POSIX permission bits (e.g. + public let posixPermissions: Int? + + public init(size: Int64, posixPermissions: Int?) { + self.size = size + self.posixPermissions = posixPermissions + } +} + +/// A seekable, chunked reader over a file — used by the resumable uploader to stream a large IPA without loading it fully into memory. +public protocol FileReadHandle: AnyObject { + /// Reads up to `count` bytes from the current offset (fewer at EOF, empty when exhausted). + func read(upToCount count: Int) throws -> Data + func seek(toOffset offset: UInt64) throws + func close() throws +} + +/// Abstraction over the file system (production: `FileManager` + `FileHandle`). +public protocol FileSystem: AnyObject { + func temporaryDirectory() -> URL + + /// Creates a fresh, uniquely-named directory (default permissions `0o700`) and returns it. + func createUniqueDirectory(permissions: Int?) throws -> URL + func createDirectory(at url: URL, permissions: Int?) throws + + func fileExists(at url: URL) -> Bool + func removeItem(at url: URL) throws + func attributes(of url: URL) throws -> FileAttributes + + func read(contentsOf url: URL) throws -> Data + func write(_ data: Data, to url: URL) throws + + func openForReading(_ url: URL) throws -> FileReadHandle +} + +public extension FileSystem { + func createUniqueDirectory() throws -> URL { try createUniqueDirectory(permissions: 0o700) } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/HTTPClient.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/HTTPClient.swift new file mode 100644 index 00000000..d062d083 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/HTTPClient.swift @@ -0,0 +1,41 @@ +import Foundation + +public enum HTTPMethod: String, Sendable { + case get = "GET" + case post = "POST" + case put = "PUT" + case delete = "DELETE" +} + +public struct HTTPRequest: Sendable { + public var url: URL + public var method: HTTPMethod + public var headers: [String: String] + public var body: Data? + + public init(url: URL, method: HTTPMethod = .get, headers: [String: String] = [:], body: Data? = nil) { + self.url = url + self.method = method + self.headers = headers + self.body = body + } +} + +public struct HTTPResponse: Sendable { + public let statusCode: Int + public let data: Data + public let headers: [String: String] + + public init(statusCode: Int, data: Data, headers: [String: String] = [:]) { + self.statusCode = statusCode + self.data = data + self.headers = headers + } + + public var isSuccess: Bool { (200..<300).contains(statusCode) } +} + +/// Abstraction over HTTP networking (production: `URLSession`). +public protocol HTTPClient: AnyObject { + func send(_ request: HTTPRequest) async throws -> HTTPResponse +} diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/KeyValueStore.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/KeyValueStore.swift new file mode 100644 index 00000000..bc0c3bd6 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/KeyValueStore.swift @@ -0,0 +1,13 @@ +import Foundation + +/// Abstraction over a small key/value preferences store (production: `UserDefaults`). +public protocol KeyValueStore: AnyObject { + func bool(forKey key: String) -> Bool + func integer(forKey key: String) -> Int + func string(forKey key: String) -> String? + func data(forKey key: String) -> Data? + func object(forKey key: String) -> Any? + + func set(_ value: Any?, forKey key: String) + func removeObject(forKey key: String) +} diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/SecureStore.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/SecureStore.swift new file mode 100644 index 00000000..aacde95a --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/SecureStore.swift @@ -0,0 +1,34 @@ +import Foundation + +/// Error surface for `SecureStore` operations. +public enum SecureStoreError: Error, Equatable { + /// An `OSStatus` returned by the Keychain Services API. + case keychain(status: Int32) + /// The stored payload existed but could not be decoded as expected. + case malformedData +} + +/// Abstraction over secure credential storage (production: the macOS Keychain). +public protocol SecureStore: AnyObject { + func data(forAccount account: String, service: String) throws -> Data? + func set(_ data: Data, forAccount account: String, service: String) throws + func removeItem(forAccount account: String, service: String) throws + + /// All account identifiers currently stored for `service`. + func accounts(forService service: String) throws -> [String] + func removeAllItems(forService service: String) throws +} + +public extension SecureStore { + /// Convenience: store a UTF-8 string. + func setString(_ value: String, forAccount account: String, service: String) throws { + try set(Data(value.utf8), forAccount: account, service: service) + } + + /// Convenience: read a UTF-8 string. + func string(forAccount account: String, service: String) throws -> String? { + guard let data = try data(forAccount: account, service: service) else { return nil } + guard let string = String(data: data, encoding: .utf8) else { throw SecureStoreError.malformedData } + return string + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/Services.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/Services.swift new file mode 100644 index 00000000..ccf1ae62 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/Services.swift @@ -0,0 +1,40 @@ +import Foundation + +// MARK: - DateProvider + +/// Abstraction over "the current time" (production: `Date()`). +public protocol DateProvider: AnyObject { + func now() -> Date +} + +// MARK: - Reachability + +/// Abstraction over network reachability (production: `NWPathMonitor`, wired in a later phase). +public protocol Reachability: AnyObject { + var isConnected: Bool { get } +} + +// MARK: - ProgressReporter + +/// Coarse stages of an upload, surfaced to whatever UI is driving it. +public enum UploadStage: Equatable, Sendable { + case preparing + case extracting + case uploading + case creatingLink + case finalizing + case completed + case failed +} + +/// UI-agnostic sink for upload progress. +public protocol ProgressReporter: AnyObject { + /// - stage: the coarse phase the upload is in. + func report(stage: UploadStage, message: String?, fractionCompleted: Double?) +} + +/// A no-op `ProgressReporter` for contexts that don't surface progress (and as a safe default). +public final class NullProgressReporter: ProgressReporter { + public init() {} + public func report(stage: UploadStage, message: String?, fractionCompleted: Double?) {} +} diff --git a/AppBoxCore/Sources/AppBoxCore/Abstractions/ShortLinkService.swift b/AppBoxCore/Sources/AppBoxCore/Abstractions/ShortLinkService.swift new file mode 100644 index 00000000..7c9bf0e8 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Abstractions/ShortLinkService.swift @@ -0,0 +1,24 @@ +import Foundation + +/// Shortens an app's long shareable (`appinfo.json`) URL into the public `appbox.me/xxxx` link. +public protocol ShortLinkService: AnyObject { + /// Return a short URL for the request's `longURL`, or `nil` to fall back to the long URL (a shortener failure leaves the long link in place — uploads still succeed offline). + func shortLink(for request: ShortLinkRequest) async -> URL? +} + +/// What the short-link backend needs to mint a link: the app's identity plus the long URL. +public struct ShortLinkRequest: Equatable, Sendable { + public var name: String + public var version: String + public var build: String + public var identifier: String + public var longURL: URL + + public init(name: String, version: String, build: String, identifier: String, longURL: URL) { + self.name = name + self.version = version + self.build = build + self.identifier = identifier + self.longURL = longURL + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Adapters/FileManagerFileSystem.swift b/AppBoxCore/Sources/AppBoxCore/Adapters/FileManagerFileSystem.swift new file mode 100644 index 00000000..46a37c12 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Adapters/FileManagerFileSystem.swift @@ -0,0 +1,76 @@ +import Foundation + +/// Production `FileSystem` backed by `FileManager` + `FileHandle`. +public final class FileManagerFileSystem: FileSystem { + private let fileManager: FileManager + + public init(fileManager: FileManager = .default) { + self.fileManager = fileManager + } + + public func temporaryDirectory() -> URL { + fileManager.temporaryDirectory + } + + public func createUniqueDirectory(permissions: Int?) throws -> URL { + let url = fileManager.temporaryDirectory.appendingPathComponent(UUID().uuidString, isDirectory: true) + try createDirectory(at: url, permissions: permissions) + return url + } + + public func createDirectory(at url: URL, permissions: Int?) throws { + var attributes: [FileAttributeKey: Any]? + if let permissions { + attributes = [.posixPermissions: NSNumber(value: permissions)] + } + try fileManager.createDirectory(at: url, withIntermediateDirectories: true, attributes: attributes) + } + + public func fileExists(at url: URL) -> Bool { + fileManager.fileExists(atPath: url.path) + } + + public func removeItem(at url: URL) throws { + try fileManager.removeItem(at: url) + } + + public func attributes(of url: URL) throws -> FileAttributes { + let attributes = try fileManager.attributesOfItem(atPath: url.path) + let size = (attributes[.size] as? NSNumber)?.int64Value ?? 0 + let permissions = (attributes[.posixPermissions] as? NSNumber)?.intValue + return FileAttributes(size: size, posixPermissions: permissions) + } + + public func read(contentsOf url: URL) throws -> Data { + try Data(contentsOf: url) + } + + public func write(_ data: Data, to url: URL) throws { + try data.write(to: url, options: .atomic) + } + + public func openForReading(_ url: URL) throws -> FileReadHandle { + FileHandleReadHandle(handle: try FileHandle(forReadingFrom: url)) + } +} + +/// `FileReadHandle` over a `FileHandle`. +final class FileHandleReadHandle: FileReadHandle { + private let handle: FileHandle + + init(handle: FileHandle) { + self.handle = handle + } + + func read(upToCount count: Int) throws -> Data { + try handle.read(upToCount: count) ?? Data() + } + + func seek(toOffset offset: UInt64) throws { + try handle.seek(toOffset: offset) + } + + func close() throws { + try handle.close() + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Adapters/KeychainSecureStore.swift b/AppBoxCore/Sources/AppBoxCore/Adapters/KeychainSecureStore.swift new file mode 100644 index 00000000..531a42a8 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Adapters/KeychainSecureStore.swift @@ -0,0 +1,76 @@ +import Foundation +import Security + +/// Production `SecureStore` backed by the macOS Keychain (generic-password items). +public final class KeychainSecureStore: SecureStore { + private let accessGroup: String? + + public init(accessGroup: String? = nil) { + self.accessGroup = accessGroup + } + + private func baseQuery(account: String?, service: String) -> [String: Any] { + var query: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: service + ] + if let account { query[kSecAttrAccount as String] = account } + if let accessGroup { + query[kSecAttrAccessGroup as String] = accessGroup + query[kSecUseDataProtectionKeychain as String] = true + } + return query + } + + public func data(forAccount account: String, service: String) throws -> Data? { + var query = baseQuery(account: account, service: service) + query[kSecReturnData as String] = true + query[kSecMatchLimit as String] = kSecMatchLimitOne + + var item: AnyObject? + let status = SecItemCopyMatching(query as CFDictionary, &item) + if status == errSecItemNotFound { return nil } + guard status == errSecSuccess else { throw SecureStoreError.keychain(status: status) } + return item as? Data + } + + public func set(_ data: Data, forAccount account: String, service: String) throws { + let query = baseQuery(account: account, service: service) + + let updateStatus = SecItemUpdate(query as CFDictionary, [kSecValueData as String: data] as CFDictionary) + if updateStatus == errSecSuccess { return } + guard updateStatus == errSecItemNotFound else { throw SecureStoreError.keychain(status: updateStatus) } + + var addQuery = query + addQuery[kSecValueData as String] = data + let addStatus = SecItemAdd(addQuery as CFDictionary, nil) + guard addStatus == errSecSuccess else { throw SecureStoreError.keychain(status: addStatus) } + } + + public func removeItem(forAccount account: String, service: String) throws { + let status = SecItemDelete(baseQuery(account: account, service: service) as CFDictionary) + guard status == errSecSuccess || status == errSecItemNotFound else { + throw SecureStoreError.keychain(status: status) + } + } + + public func accounts(forService service: String) throws -> [String] { + var query = baseQuery(account: nil, service: service) + query[kSecMatchLimit as String] = kSecMatchLimitAll + query[kSecReturnAttributes as String] = true + + var items: AnyObject? + let status = SecItemCopyMatching(query as CFDictionary, &items) + if status == errSecItemNotFound { return [] } + guard status == errSecSuccess else { throw SecureStoreError.keychain(status: status) } + let attributeList = items as? [[String: Any]] ?? [] + return attributeList.compactMap { $0[kSecAttrAccount as String] as? String } + } + + public func removeAllItems(forService service: String) throws { + let status = SecItemDelete(baseQuery(account: nil, service: service) as CFDictionary) + guard status == errSecSuccess || status == errSecItemNotFound else { + throw SecureStoreError.keychain(status: status) + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Adapters/SystemDateProvider.swift b/AppBoxCore/Sources/AppBoxCore/Adapters/SystemDateProvider.swift new file mode 100644 index 00000000..3928db6d --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Adapters/SystemDateProvider.swift @@ -0,0 +1,7 @@ +import Foundation + +/// Production `DateProvider` returning the real current time. +public final class SystemDateProvider: DateProvider { + public init() {} + public func now() -> Date { Date() } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Adapters/URLSessionHTTPClient.swift b/AppBoxCore/Sources/AppBoxCore/Adapters/URLSessionHTTPClient.swift new file mode 100644 index 00000000..def001de --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Adapters/URLSessionHTTPClient.swift @@ -0,0 +1,30 @@ +import Foundation + +/// Production `HTTPClient` backed by `URLSession`. +public final class URLSessionHTTPClient: HTTPClient { + private let session: URLSession + + public init(session: URLSession = .shared) { + self.session = session + } + + public func send(_ request: HTTPRequest) async throws -> HTTPResponse { + var urlRequest = URLRequest(url: request.url) + urlRequest.httpMethod = request.method.rawValue + urlRequest.httpBody = request.body + for (field, value) in request.headers { + urlRequest.setValue(value, forHTTPHeaderField: field) + } + + let (data, response) = try await session.data(for: urlRequest) + let http = response as? HTTPURLResponse + + var headers: [String: String] = [:] + for (key, value) in http?.allHeaderFields ?? [:] { + if let key = key as? String, let value = value as? String { + headers[key] = value + } + } + return HTTPResponse(statusCode: http?.statusCode ?? 0, data: data, headers: headers) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Adapters/UserDefaultsKeyValueStore.swift b/AppBoxCore/Sources/AppBoxCore/Adapters/UserDefaultsKeyValueStore.swift new file mode 100644 index 00000000..66c12374 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Adapters/UserDefaultsKeyValueStore.swift @@ -0,0 +1,18 @@ +import Foundation + +/// Production `KeyValueStore` backed by `UserDefaults`. +public final class UserDefaultsKeyValueStore: KeyValueStore { + private let defaults: UserDefaults + + public init(defaults: UserDefaults = .standard) { + self.defaults = defaults + } + + public func bool(forKey key: String) -> Bool { defaults.bool(forKey: key) } + public func integer(forKey key: String) -> Int { defaults.integer(forKey: key) } + public func string(forKey key: String) -> String? { defaults.string(forKey: key) } + public func data(forKey key: String) -> Data? { defaults.data(forKey: key) } + public func object(forKey key: String) -> Any? { defaults.object(forKey: key) } + public func set(_ value: Any?, forKey key: String) { defaults.set(value, forKey: key) } + public func removeObject(forKey key: String) { defaults.removeObject(forKey: key) } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Adapters/ZipFoundationArchiveExtractor.swift b/AppBoxCore/Sources/AppBoxCore/Adapters/ZipFoundationArchiveExtractor.swift new file mode 100644 index 00000000..5b2a5871 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Adapters/ZipFoundationArchiveExtractor.swift @@ -0,0 +1,23 @@ +import Foundation +import ZIPFoundation + +/// Production `ArchiveExtractor` backed by ZIPFoundation. +public final class ZipFoundationArchiveExtractor: ArchiveExtractor { + private let fileManager: FileManager + + public init(fileManager: FileManager = .default) { + self.fileManager = fileManager + } + + public func extract(archiveAt archiveURL: URL, to destinationURL: URL) throws { + if !fileManager.fileExists(atPath: destinationURL.path) { + try fileManager.createDirectory(at: destinationURL, withIntermediateDirectories: true) + } + try fileManager.unzipItem(at: archiveURL, to: destinationURL) + } + + public func entries(ofArchiveAt archiveURL: URL) throws -> [String] { + let archive = try Archive(url: archiveURL, accessMode: .read) + return archive.map { $0.path } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Backend/AppBoxServiceClient.swift b/AppBoxCore/Sources/AppBoxCore/Backend/AppBoxServiceClient.swift new file mode 100644 index 00000000..5b704425 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Backend/AppBoxServiceClient.swift @@ -0,0 +1,197 @@ +import Foundation +import os + +/// Where the AppBox backend (install-helper's `/api/v1`) lives and how the client identifies itself. +public struct AppBoxServiceConfiguration: Sendable { + public var baseURL: URL + /// Static shared secret sent as `X-AppBox-Client-Token`. + public var clientToken: String + + public init(baseURL: URL, clientToken: String) { + self.baseURL = baseURL + self.clientToken = clientToken + } + + /// The deployed backend (`api.getappbox.com` → install-helper). + public static func production(clientToken: String) -> AppBoxServiceConfiguration { + AppBoxServiceConfiguration(baseURL: URL(string: "https://api.getappbox.com/api/v1")!, + clientToken: clientToken) + } +} + +/// Supplies the logged-in user's Dropbox access token (refreshed if near expiry) — the backend verifies it to ensure only real AppBox users can send mail / mint short links. +public protocol DropboxAccessTokenProviding: AnyObject { + func currentAccessToken() async -> String? +} + +/// Production token source: the live SwiftyDropbox session (GUI and CLI both configure it). +public final class DropboxSessionTokenProvider: DropboxAccessTokenProviding { + public init() {} + public func currentAccessToken() async -> String? { + await DropboxSession.currentAccessToken() + } +} + +public enum AppBoxServiceError: Error { + /// No Dropbox login, or the backend rejected the token (401). + case notAuthenticated + /// The backend answered with a non-success status; `message` is its error envelope text. + case invalidResponse(status: Int, message: String?) + case network(Error) +} + +/// The latest AppBox version, as reported by the backend (`GET /latest-version`). +public struct LatestVersion: Decodable, Sendable { + public let version: String + public let downloadURL: URL? + public let homebrewVersion: String? +} + +/// An incoming-webhook target for `POST /notify`. +public enum NotificationService: String, Sendable { + case slack + case teams +} + +/// The build-notification email, ready to send; the backend wraps `personalMessage` in the HTML shell under "Message from the developer". +public struct BuildEmailRequest: Equatable, Sendable { + public var name: String + public var version: String + public var build: String + public var to: [String] + public var installURL: URL + public var personalMessage: String? + + public init(name: String, version: String, build: String, to: [String], + installURL: URL, personalMessage: String? = nil) { + self.name = name + self.version = version + self.build = build + self.to = to + self.installURL = installURL + self.personalMessage = personalMessage + } +} + +/// Client for the AppBox backend — replaces the retired ABPrivate SDK's direct Mailgun/YOURLS calls (the provider credentials now live only on the server). +public final class AppBoxServiceClient { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox.core", category: "AppBoxService") + + private let configuration: AppBoxServiceConfiguration + private let httpClient: HTTPClient + private let tokenProvider: DropboxAccessTokenProviding + + public init(configuration: AppBoxServiceConfiguration, + httpClient: HTTPClient, + tokenProvider: DropboxAccessTokenProviding) { + self.configuration = configuration + self.httpClient = httpClient + self.tokenProvider = tokenProvider + } + + // MARK: - GET /config + + public func fetchDropboxAppKey() async throws -> String { + struct ConfigResponse: Decodable { let dropboxAppKey: String } + let response = try await send(.get, path: "config", body: nil, dropboxToken: nil) + guard response.isSuccess else { throw error(from: response) } + return try JSONDecoder().decode(ConfigResponse.self, from: response.data).dropboxAppKey + } + + // MARK: - GET /latest-version + + /// The latest version (client token only — the update check runs before any Dropbox login). + public func fetchLatestVersion() async throws -> LatestVersion { + let response = try await send(.get, path: "latest-version", body: nil, dropboxToken: nil) + guard response.isSuccess else { throw error(from: response) } + return try JSONDecoder().decode(LatestVersion.self, from: response.data) + } + + // MARK: - POST /notify + + /// Relay an upload notification to a Slack/Teams incoming webhook. + public func sendNotification(service: NotificationService, webhookURL: String, text: String) async throws { + guard let token = await tokenProvider.currentAccessToken() else { + throw AppBoxServiceError.notAuthenticated + } + struct Payload: Encodable { let service, webhookURL, text: String } + let payload = Payload(service: service.rawValue, webhookURL: webhookURL, text: text) + let response = try await send(.post, path: "notify", + body: try JSONEncoder().encode(payload), dropboxToken: token) + guard response.isSuccess else { throw error(from: response) } + } + + // MARK: - POST /mail/send + + public func sendBuildEmail(_ request: BuildEmailRequest) async throws { + guard let token = await tokenProvider.currentAccessToken() else { + throw AppBoxServiceError.notAuthenticated + } + struct Payload: Encodable { + let name, version, build: String + let to: [String] + let installURL: String + let personalMessage: String? + } + let payload = Payload(name: request.name, version: request.version, build: request.build, + to: request.to, installURL: request.installURL.absoluteString, + personalMessage: request.personalMessage) + let response = try await send(.post, path: "mail/send", + body: try JSONEncoder().encode(payload), dropboxToken: token) + guard response.isSuccess else { throw error(from: response) } + } + + // MARK: - Helpers + + private func send(_ method: HTTPMethod, path: String, body: Data?, dropboxToken: String?) async throws -> HTTPResponse { + var headers = ["X-AppBox-Client-Token": configuration.clientToken] + if body != nil { headers["Content-Type"] = "application/json" } + if let dropboxToken { headers["Authorization"] = "Bearer \(dropboxToken)" } + let url = configuration.baseURL.appendingPathComponent(path) + do { + return try await httpClient.send(HTTPRequest(url: url, method: method, headers: headers, body: body)) + } catch { + throw AppBoxServiceError.network(error) + } + } + + private func error(from response: HTTPResponse) -> AppBoxServiceError { + struct Envelope: Decodable { + struct Detail: Decodable { let code: String; let message: String } + let error: Detail + } + let message = (try? JSONDecoder().decode(Envelope.self, from: response.data))?.error.message + if response.statusCode == 401 { return .notAuthenticated } + return .invalidResponse(status: response.statusCode, message: message) + } +} + +// MARK: - ShortLinkService + +extension AppBoxServiceClient: ShortLinkService { + /// POST /shorten. + public func shortLink(for request: ShortLinkRequest) async -> URL? { + guard let token = await tokenProvider.currentAccessToken() else { + Self.log.info("Short-link skipped: no Dropbox session.") + return nil + } + struct Payload: Encodable { let url, name, version, build, identifier: String } + struct ShortenResponse: Decodable { let shortURL: String } + do { + let payload = Payload(url: request.longURL.absoluteString, name: request.name, + version: request.version, build: request.build, + identifier: request.identifier) + let response = try await send(.post, path: "shorten", + body: try JSONEncoder().encode(payload), dropboxToken: token) + guard response.isSuccess else { + Self.log.info("Short-link failed (HTTP \(response.statusCode)); using the long URL.") + return nil + } + return URL(string: try JSONDecoder().decode(ShortenResponse.self, from: response.data).shortURL) + } catch { + Self.log.info("Short-link failed (\(error.localizedDescription)); using the long URL.") + return nil + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Backend/DropboxAppKeyProvider.swift b/AppBoxCore/Sources/AppBoxCore/Backend/DropboxAppKeyProvider.swift new file mode 100644 index 00000000..eebc10ef --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Backend/DropboxAppKeyProvider.swift @@ -0,0 +1,36 @@ +import Foundation +import os + +/// Sources the Dropbox app key: cached backend value when available, else the injected fallback (the composition root supplies the build's compiled-in key, generated from the gitignored `.env`) — so launch (which must configure SwiftyDropbox before any network call) never blocks, and the backend can rotate the key without an app release (alongside one that updates the `db-` URL scheme). +public final class DropboxAppKeyProvider { + + public static let cacheKey = "DropboxAppKey" + private static let log = Logger(subsystem: "com.developerinsider.AppBox.core", category: "AppKey") + + private let store: KeyValueStore + private let fallback: String + + public init(store: KeyValueStore, fallback: String) { + self.store = store + self.fallback = fallback + } + + /// Synchronous — usable at launch, pre-network: the cached backend value or the fallback. + public func cachedKey() -> String { + if let cached = store.string(forKey: Self.cacheKey), !cached.isEmpty { + return cached + } + return fallback + } + + /// Fetch the key from the backend and cache it for the NEXT launch (SwiftyDropbox is already configured by the time this can run). + public func refresh(using service: AppBoxServiceClient) async { + do { + let key = try await service.fetchDropboxAppKey() + guard !key.isEmpty else { return } + store.set(key, forKey: Self.cacheKey) + } catch { + Self.log.info("Dropbox app-key refresh failed (using cache/fallback): \(error.localizedDescription)") + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/BuildInfo.swift b/AppBoxCore/Sources/AppBoxCore/BuildInfo.swift new file mode 100644 index 00000000..19a539ad --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/BuildInfo.swift @@ -0,0 +1,11 @@ +import Foundation + +/// Trivial, UI-free build/version surface for `AppBoxCore` — the module name and a cheap linked check. +public final class ABCoreBuildInfo: NSObject { + + /// Marketing version of the Core module, kept in sync with the app release line. + public static let moduleName: String = "AppBoxCore" + + /// Returns true — a cheap way for the host targets to assert the module linked & loaded. + public static func isLinked() -> Bool { true } +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/ABProject.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/ABProject.swift new file mode 100644 index 00000000..30c0ca6c --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/ABProject.swift @@ -0,0 +1,10 @@ +import CoreData +import Foundation + +/// Core Data entity `Project` (model `AppBox4`). +@objc(ABProject) +public class ABProject: NSManagedObject { + @NSManaged public var bundleIdentifier: String? + @NSManaged public var name: String? + @NSManaged public var uploadRecords: NSOrderedSet? +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/ABProvisionedDevice.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/ABProvisionedDevice.swift new file mode 100644 index 00000000..7a70c552 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/ABProvisionedDevice.swift @@ -0,0 +1,8 @@ +import CoreData +import Foundation + +/// Core Data entity `ProvisionedDevice` (model `AppBox4`) — just a stored device UDID. +@objc(ABProvisionedDevice) +public class ABProvisionedDevice: NSManagedObject { + @NSManaged public var deviceId: String? +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/ABProvisioningProfile.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/ABProvisioningProfile.swift new file mode 100644 index 00000000..40d40f24 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/ABProvisioningProfile.swift @@ -0,0 +1,15 @@ +import CoreData +import Foundation + +/// Core Data entity `ProvisioningProfile` (model `AppBox4`). +@objc(ABProvisioningProfile) +public class ABProvisioningProfile: NSManagedObject { + @NSManaged public var buildType: String? + @NSManaged public var createDate: Date? + @NSManaged public var expirationDate: Date? + @NSManaged public var teamId: String? + @NSManaged public var teamName: String? + @NSManaged public var uuid: String? + @NSManaged public var provisionedDevices: NSOrderedSet? + @NSManaged public var uploadRecord: NSOrderedSet? +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/ABStorePaths.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/ABStorePaths.swift new file mode 100644 index 00000000..5aa90e5a --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/ABStorePaths.swift @@ -0,0 +1,37 @@ +import Foundation + +/// Single source of truth for the AppBox Core Data store location, so the GUI (and, the CLI) point at the same file. +public final class ABStorePaths: NSObject { + + /// `~/Library/Application Support/com.developerinsider.AppBox`. + public static var applicationSupportDirectoryURL: URL { + let base = FileManager.default.urls(for: .applicationSupportDirectory, in: .userDomainMask).last + ?? URL(fileURLWithPath: NSHomeDirectory()).appendingPathComponent("Library/Application Support") + return base.appendingPathComponent("com.developerinsider.AppBox") + } + + /// The SQLite store URL. + public static var sqliteStoreURL: URL { + applicationSupportDirectoryURL.appendingPathComponent("OSXCoreDataObjC.sqlite") + } + + /// The legacy XML store URL. + public static var storedataStoreURL: URL { + applicationSupportDirectoryURL.appendingPathComponent("OSXCoreDataObjC.storedata") + } + + /// AppBox's own subdirectory of the (per-user, process-shared) temporary directory + public static var temporaryDirectoryURL: URL { + URL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("AppBox", isDirectory: true) + } + + /// A fresh, private scratch directory under `temporaryDirectoryURL`. + public static func makeTemporaryWorkingDirectory(prefix: String = "") throws -> URL { + let url = temporaryDirectoryURL.appendingPathComponent(prefix + UUID().uuidString, isDirectory: true) + try FileManager.default.createDirectory( + at: url, + withIntermediateDirectories: true, + attributes: [.posixPermissions: 0o700]) + return url + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/ABUploadRecord.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/ABUploadRecord.swift new file mode 100644 index 00000000..1d39b111 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/ABUploadRecord.swift @@ -0,0 +1,29 @@ +import CoreData +import Foundation + +/// Core Data entity `UploadRecord` (model `AppBox4`). +@objc(ABUploadRecord) +public class ABUploadRecord: NSManagedObject { + @NSManaged public var build: String? + @NSManaged public var buildType: String? + @NSManaged public var datetime: Date? + @NSManaged public var dbAppInfoFullPath: String? + @NSManaged public var dbDirectroy: String? + @NSManaged public var dbFolderName: String? + @NSManaged public var dbIPAFullPath: String? + @NSManaged public var dbManifestFullPath: String? + @NSManaged public var dbSharedAppInfoURL: String? + @NSManaged public var dbSharedIPAURL: String? + @NSManaged public var dbSharedManifestURL: String? + @NSManaged public var keepSameLink: NSNumber? + @NSManaged public var localBuildPath: String? + @NSManaged public var mailURL: String? + @NSManaged public var projectPath: String? + @NSManaged public var shortURL: String? + @NSManaged public var teamId: String? + @NSManaged public var version: String? + + @NSManaged public var project: ABProject? + @NSManaged public var provisioningProfile: ABProvisioningProfile? + @NSManaged public var service: AppBoxService? +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/AppBoxService.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/AppBoxService.swift new file mode 100644 index 00000000..e7693009 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/AppBoxService.swift @@ -0,0 +1,14 @@ +import CoreData +import Foundation + +/// Core Data entity `AppBoxService` (model `AppBox4`). +@objc(AppBoxService) +public class AppBoxService: NSManagedObject { + @NSManaged public var name: String? + @NSManaged public var accountEmail: String? + @NSManaged public var accountId: String? + @NSManaged public var accountAccessKey: String? + @NSManaged public var accountSecretKey: String? + @NSManaged public var baseURL: String? + @NSManaged public var uploadRecords: NSSet? +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/BuildDeletionService.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/BuildDeletionService.swift new file mode 100644 index 00000000..773428bf --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/BuildDeletionService.swift @@ -0,0 +1,83 @@ +import CoreData +import Foundation + +/// Deletes a build from the CLI — the write counterpart to `BuildHistoryStore`, and the CLI's path into the Core `DeleteCoordinator`. +public final class BuildDeletionService { + + private let stack: CoreDataStack + private let providerFactory: () -> StorageProvider + /// The fetched records, held so `delete(at:)` operates on the same objects/context `loadBuilds()` returned. + private var records: [ABUploadRecord] = [] + + /// Inject a stack + provider factory (tests pass a temp store + a fake provider). + public init(stack: CoreDataStack, providerFactory: @escaping () -> StorageProvider) { + self.stack = stack + self.providerFactory = providerFactory + } + + /// The CLI wiring: the real store opened read-write + a Dropbox provider on the CLI's authorized client. + public convenience init(appKey: String) { + self.init(stack: CoreDataStack(), providerFactory: { + CLIDropboxClient.ensureConfigured(appKey: appKey) + return DropboxSession.makeProvider() + }) + } + + /// Upload records newest-first (matches the Dashboard / `list`), held for a subsequent `delete(at:)`. + @discardableResult + public func loadBuilds() throws -> [BuildHistoryEntry] { + let context = try stack.loadViewContext() + return try context.performAndWait { + let request = NSFetchRequest(entityName: "UploadRecord") + request.sortDescriptors = [NSSortDescriptor(key: "datetime", ascending: false)] + records = try context.fetch(request) + return records.map(BuildHistoryEntry.init) + } + } + + /// Delete the build at `index` (into the last `loadBuilds()` result). + public func delete(at index: Int, fromDropbox: Bool) async throws { + guard records.indices.contains(index) else { + throw NSError(domain: "com.developerinsider.AppBox", code: 9998, userInfo: [ + NSLocalizedDescriptionKey: "No build at that position. List the builds again."]) + } + let record = records[index] + let context = try stack.loadViewContext() + + if fromDropbox { + let workingDirectory = try makeWorkingDirectory() + defer { + try? FileManager.default.removeItem(at: workingDirectory) + } + let plan: DeletePlan = try context.performAndWait { + let keepSameLink = record.keepSameLink?.boolValue ?? false + let appInfoPath = record.dbAppInfoFullPath ?? "" + let appFolder = record.dbFolderName ?? "" + let buildFolder = record.dbDirectroy ?? "" + let requiredPaths = keepSameLink ? [appInfoPath, appFolder] : [buildFolder] + guard requiredPaths.allSatisfy({ !$0.isEmpty }) else { + throw NSError(domain: "com.developerinsider.AppBox", code: 9997, userInfo: [ + NSLocalizedDescriptionKey: "This record is missing its Dropbox location. Use --dashboard-only to remove it from the dashboard."]) + } + return DeletePlan( + keepSameLink: keepSameLink, + appInfoRemotePath: RemotePath(path: appInfoPath), + manifestLinkToRemove: record.dbSharedManifestURL ?? "", + appFolderPath: RemotePath(path: appFolder), + buildFolderPath: RemotePath(path: buildFolder), + workingDirectory: workingDirectory) + } + _ = try await DeleteCoordinator(provider: providerFactory()).run(plan) + } + + try context.performAndWait { + context.delete(record) + try stack.saveChanges() + } + records.remove(at: index) + } + + private func makeWorkingDirectory() throws -> URL { + try ABStorePaths.makeTemporaryWorkingDirectory(prefix: "delete-") + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/BuildHistoryStore.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/BuildHistoryStore.swift new file mode 100644 index 00000000..15394043 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/BuildHistoryStore.swift @@ -0,0 +1,51 @@ +import CoreData +import Foundation + +/// One row of AppBox upload history — the data the GUI Dashboard shows, as plain values so the CLI never touches `NSManagedObject`. +public struct BuildHistoryEntry: Equatable { + public let appName: String? + public let bundleIdentifier: String? + public let version: String? + public let build: String? + public let buildType: String? + public let teamName: String? + public let datetime: Date? + public let shortURL: String? + + init(record: ABUploadRecord) { + appName = record.project?.name + bundleIdentifier = record.project?.bundleIdentifier + version = record.version + build = record.build + buildType = record.provisioningProfile?.buildType + teamName = record.provisioningProfile?.teamName + datetime = record.datetime + shortURL = record.shortURL + } +} + +/// Reads the AppBox upload history from the shared Core Data store for the CLI — the counterpart to `DropboxCLISession` (which reads Dropbox). +public final class BuildHistoryStore { + + private let stack: CoreDataStack + + /// Inject a stack (tests use a temp store + the programmatic model). + public init(stack: CoreDataStack) { + self.stack = stack + } + + /// The real on-disk store, opened read-only (the CLI default). + public convenience init() { + self.init(stack: CoreDataStack.readOnlyOnRealStore()) + } + + /// Upload records, newest first (matches the Dashboard's `datetime` descending sort). + public func recentBuilds() throws -> [BuildHistoryEntry] { + let context = try stack.loadViewContext() + return try context.performAndWait { + let request = NSFetchRequest(entityName: "UploadRecord") + request.sortDescriptors = [NSSortDescriptor(key: "datetime", ascending: false)] + return try context.fetch(request).map(BuildHistoryEntry.init) + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/BuildRecordStore.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/BuildRecordStore.swift new file mode 100644 index 00000000..1018f86e --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/BuildRecordStore.swift @@ -0,0 +1,164 @@ +// +// BuildRecordStore.swift +// AppBoxCore +// + +import Foundation +import CoreData + +/// The dashboard fields for one completed upload. +public struct BuildRecordInput { + public var identifier: String + public var name: String + public var version: String + public var build: String + public var buildType: String? + public var localIPAPath: String? + public var keepSameLink: Bool + + public var bundleDirectory: String + public var buildDirectory: String + public var ipaRemotePath: String + public var manifestRemotePath: String + public var appInfoRemotePath: String + + public var sharedIPAURL: String? + public var sharedManifestURL: String? + public var sharedAppInfoURL: String? + public var shortURL: String? + + public var provisioning: MobileProvisionInfo? + public var date: Date + + public init(identifier: String, name: String, version: String, build: String, + buildType: String? = nil, localIPAPath: String? = nil, keepSameLink: Bool = false, + bundleDirectory: String, buildDirectory: String, ipaRemotePath: String, + manifestRemotePath: String, appInfoRemotePath: String, + sharedIPAURL: String? = nil, sharedManifestURL: String? = nil, + sharedAppInfoURL: String? = nil, shortURL: String? = nil, + provisioning: MobileProvisionInfo? = nil, date: Date = Date()) { + self.identifier = identifier + self.name = name + self.version = version + self.build = build + self.buildType = buildType + self.localIPAPath = localIPAPath + self.keepSameLink = keepSameLink + self.bundleDirectory = bundleDirectory + self.buildDirectory = buildDirectory + self.ipaRemotePath = ipaRemotePath + self.manifestRemotePath = manifestRemotePath + self.appInfoRemotePath = appInfoRemotePath + self.sharedIPAURL = sharedIPAURL + self.sharedManifestURL = sharedManifestURL + self.sharedAppInfoURL = sharedAppInfoURL + self.shortURL = shortURL + self.provisioning = provisioning + self.date = date + } +} + +extension BuildRecordInput { + /// Builds the dashboard entry for a finished upload. + public init(outcome: BuildUploadOutcome, localIPAPath: String?, keepSameLink: Bool, date: Date = Date()) { + self.init(identifier: outcome.metadata.identifier, + name: outcome.metadata.name, + version: outcome.metadata.version, + build: outcome.metadata.build, + buildType: outcome.provisioning?.buildType, + localIPAPath: localIPAPath, + keepSameLink: keepSameLink, + bundleDirectory: outcome.paths.bundleDirectory, + buildDirectory: outcome.paths.buildDirectory, + ipaRemotePath: "/" + outcome.paths.ipa.components.joined(separator: "/"), + manifestRemotePath: "/" + outcome.paths.manifest.components.joined(separator: "/"), + appInfoRemotePath: "/" + outcome.paths.appInfo.components.joined(separator: "/"), + sharedIPAURL: outcome.result.ipaLink.absoluteString, + sharedManifestURL: outcome.result.manifestLink.absoluteString, + sharedAppInfoURL: outcome.result.appInfoSharedLink.absoluteString, + shortURL: outcome.result.shortLink.absoluteString, + provisioning: outcome.provisioning, + date: date) + } +} + +/// Writes completed uploads into the shared Core Data store that both the app and the CLI read. +public enum BuildRecordStore { + + /// Finds or creates the project, appends an upload record with its provisioning profile and devices, then saves. + @discardableResult + public static func save(_ input: BuildRecordInput, + in context: NSManagedObjectContext, + save: () throws -> Void) throws -> ABProject { + let fetch = NSFetchRequest(entityName: "Project") + fetch.predicate = NSPredicate(format: "SELF.bundleIdentifier = %@", input.identifier) + let projects = try context.fetch(fetch) + + let project: ABProject + if let existing = projects.last { + project = existing + } else { + project = NSEntityDescription.insertNewObject(forEntityName: "Project", into: context) as! ABProject + project.bundleIdentifier = input.identifier + } + project.name = input.name + + let record = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: context) as! ABUploadRecord + record.buildType = input.buildType + record.dbAppInfoFullPath = input.appInfoRemotePath + record.dbDirectroy = input.buildDirectory + record.dbFolderName = input.bundleDirectory + record.dbIPAFullPath = input.ipaRemotePath + record.dbManifestFullPath = input.manifestRemotePath + record.dbSharedIPAURL = input.sharedIPAURL + record.dbSharedManifestURL = input.sharedManifestURL + record.dbSharedAppInfoURL = input.sharedAppInfoURL + record.localBuildPath = input.localIPAPath + record.shortURL = input.shortURL + record.build = input.build + record.version = input.version + record.keepSameLink = NSNumber(value: input.keepSameLink) + record.datetime = input.date + + if let provisioning = input.provisioning { + record.provisioningProfile = profile(for: provisioning, in: context, record: record) + } + + project.mutableOrderedSetValue(forKey: "uploadRecords").add(record) + try save() + return project + } + + private static func profile(for provisioning: MobileProvisionInfo, + in context: NSManagedObjectContext, + record: ABUploadRecord) -> ABProvisioningProfile { + let fetch = NSFetchRequest(entityName: "ProvisioningProfile") + fetch.predicate = NSPredicate(format: "uuid = %@", provisioning.uuid ?? "") + let existing = ((try? context.fetch(fetch)) ?? []).first + + let profile: ABProvisioningProfile + if let existing { + profile = existing + } else { + profile = NSEntityDescription.insertNewObject(forEntityName: "ProvisioningProfile", + into: context) as! ABProvisioningProfile + profile.uuid = provisioning.uuid + profile.teamId = provisioning.teamId + profile.teamName = provisioning.teamName + profile.buildType = provisioning.buildType + profile.createDate = provisioning.createDate + profile.expirationDate = provisioning.expirationDate + + let devices = NSMutableOrderedSet() + for deviceId in provisioning.provisionedDevices ?? [] { + let device = NSEntityDescription.insertNewObject(forEntityName: "ProvisionedDevice", + into: context) as! ABProvisionedDevice + device.deviceId = deviceId + devices.add(device) + } + profile.mutableOrderedSetValue(forKey: "provisionedDevices").union(devices) + } + profile.mutableOrderedSetValue(forKey: "uploadRecord").add(record) + return profile + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/CoreData/CoreDataStack.swift b/AppBoxCore/Sources/AppBoxCore/CoreData/CoreDataStack.swift new file mode 100644 index 00000000..42562777 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/CoreData/CoreDataStack.swift @@ -0,0 +1,166 @@ +import CoreData +import Foundation +import os + +/// The AppBox Core Data stack, moved out of `AppDelegate.m` into Core so the GUI and the standalone CLI load the SAME compiled model and point at the SAME store. +public final class CoreDataStack: NSObject { + + /// The process-wide stack pointed at the real on-disk store. + public static let shared = CoreDataStack() + + private static let log = Logger(subsystem: "com.developerinsider.AppBox.core", category: "CoreData") + + private let applicationSupportDirectoryURL: URL + private let sqliteStoreURL: URL + private let storedataStoreURL: URL + private let injectedModel: NSManagedObjectModel? + private let readOnly: Bool + + private var _coordinator: NSPersistentStoreCoordinator? + private var _viewContext: NSManagedObjectContext? + + /// Real-store initializer (used by `shared`): real store paths, model from `Bundle.module`. + public override convenience init() { + self.init(applicationSupportDirectoryURL: ABStorePaths.applicationSupportDirectoryURL, + sqliteStoreURL: ABStorePaths.sqliteStoreURL, + storedataStoreURL: ABStorePaths.storedataStoreURL, + model: nil) + } + + /// A read-only stack on the real store — for the CLI, which only reads the upload history and must not contend with a running GUI's writes (Core Data's SQLite WAL allows a concurrent reader). + public static func readOnlyOnRealStore() -> CoreDataStack { + CoreDataStack(applicationSupportDirectoryURL: ABStorePaths.applicationSupportDirectoryURL, + sqliteStoreURL: ABStorePaths.sqliteStoreURL, + storedataStoreURL: ABStorePaths.storedataStoreURL, + model: nil, readOnly: true) + } + + /// Designated initializer — store locations and the model are injectable so tests can use a temp directory and the programmatic model (the compiled `.momd` is absent under `swift test`). + public init(applicationSupportDirectoryURL: URL, sqliteStoreURL: URL, storedataStoreURL: URL, + model: NSManagedObjectModel? = nil, readOnly: Bool = false) { + self.applicationSupportDirectoryURL = applicationSupportDirectoryURL + self.sqliteStoreURL = sqliteStoreURL + self.storedataStoreURL = storedataStoreURL + self.injectedModel = model + self.readOnly = readOnly + super.init() + } + + // MARK: - Model + + /// Loads the compiled `AppBox.momd` from the module resource bundle. + public static func loadManagedObjectModel() -> NSManagedObjectModel? { + guard let url = moduleResourceBundle?.url(forResource: "AppBox", withExtension: "momd") else { + return nil + } + return NSManagedObjectModel(contentsOf: url) + } + + /// Locates `AppBoxCore_AppBoxCore.bundle` without the generated `Bundle.module` accessor, which `fatalError`s when the bundle is absent — a missing bundle must surface as the "Failed to load the AppBox managed object model" NSError, not a crash. + private static var moduleResourceBundle: Bundle? { + let bundleName = "AppBoxCore_AppBoxCore.bundle" + var candidates: [URL?] = [ + Bundle.main.resourceURL, + Bundle(for: CoreDataStack.self).resourceURL, + Bundle.main.bundleURL, + ] + if let executable = Bundle.main.executableURL?.resolvingSymlinksInPath() { + candidates.append(executable.deletingLastPathComponent()) + } + for candidate in candidates { + if let url = candidate?.appendingPathComponent(bundleName), + FileManager.default.fileExists(atPath: url.path), + let bundle = Bundle(url: url) { + return bundle + } + } + return nil + } + + // MARK: - Context (lazy, idempotent) + + /// Returns the main-queue view context, building the coordinator + store on first call. + public func loadViewContext() throws -> NSManagedObjectContext { + if let ctx = _viewContext { return ctx } + let coordinator = try makeCoordinator() + let ctx = NSManagedObjectContext(concurrencyType: .mainQueueConcurrencyType) + ctx.persistentStoreCoordinator = coordinator + _viewContext = ctx + return ctx + } + + /// The view context if it has already been built, else nil — used by `saveChanges()` so a save before any fetch is a no-op (matches the original `if (_managedObjectContext) …`). + public var existingViewContext: NSManagedObjectContext? { _viewContext } + + // MARK: - Save + + /// Saves pending changes on the view context. + public func saveChanges() throws { + guard let ctx = _viewContext, ctx.hasChanges else { return } + try ctx.save() + } + + // MARK: - Coordinator + store (mirrors AppDelegate.m persistentStoreCoordinator) + + private func makeCoordinator() throws -> NSPersistentStoreCoordinator { + if let coordinator = _coordinator { return coordinator } + + guard let model = injectedModel ?? CoreDataStack.loadManagedObjectModel() else { + throw makeError("Failed to load the AppBox managed object model (AppBox.momd).") + } + + let fileManager = FileManager.default + + if readOnly { + guard fileManager.fileExists(atPath: sqliteStoreURL.path) else { + throw makeError("No AppBox upload history found. Upload a build with the AppBox app first.") + } + let coordinator = NSPersistentStoreCoordinator(managedObjectModel: model) + try coordinator.addPersistentStore(ofType: NSSQLiteStoreType, configurationName: nil, + at: sqliteStoreURL, options: [NSReadOnlyPersistentStoreOption: true]) + _coordinator = coordinator + return coordinator + } + + var isDirectory: ObjCBool = false + if fileManager.fileExists(atPath: applicationSupportDirectoryURL.path, isDirectory: &isDirectory) { + if !isDirectory.boolValue { + throw makeError("Expected a folder to store application data, found a file (\(applicationSupportDirectoryURL.path)).") + } + } else { + try fileManager.createDirectory(at: applicationSupportDirectoryURL, + withIntermediateDirectories: true, attributes: nil) + } + + let coordinator = NSPersistentStoreCoordinator(managedObjectModel: model) + let options: [AnyHashable: Any] = [ + NSInferMappingModelAutomaticallyOption: true, + NSMigratePersistentStoresAutomaticallyOption: true + ] + + let xmlExists = fileManager.fileExists(atPath: storedataStoreURL.path) + let sqliteExists = fileManager.fileExists(atPath: sqliteStoreURL.path) + + if xmlExists && !sqliteExists { + let xmlStore = try coordinator.addPersistentStore(ofType: NSXMLStoreType, configurationName: nil, + at: storedataStoreURL, options: options) + _ = try coordinator.migratePersistentStore(xmlStore, to: sqliteStoreURL, + options: options, withType: NSSQLiteStoreType) + CoreDataStack.log.info("Migrated Core Data store from XML to SQLite.") + try? fileManager.removeItem(at: storedataStoreURL) + } else { + try coordinator.addPersistentStore(ofType: NSSQLiteStoreType, configurationName: nil, + at: sqliteStoreURL, options: options) + } + + _coordinator = coordinator + return coordinator + } + + private func makeError(_ reason: String) -> NSError { + NSError(domain: "com.developerinsider.AppBox", code: 9999, userInfo: [ + NSLocalizedDescriptionKey: "Failed to initialize the application's saved data", + NSLocalizedFailureReasonErrorKey: reason + ]) + } +} diff --git a/AppBox/AppBox.xcdatamodeld/.xccurrentversion b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/.xccurrentversion similarity index 100% rename from AppBox/AppBox.xcdatamodeld/.xccurrentversion rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/.xccurrentversion diff --git a/AppBox/AppBox.xcdatamodeld/AppBox.xcdatamodel/contents b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox.xcdatamodel/contents similarity index 100% rename from AppBox/AppBox.xcdatamodeld/AppBox.xcdatamodel/contents rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox.xcdatamodel/contents diff --git a/AppBox/AppBox.xcdatamodeld/AppBox2.xcdatamodel/contents b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox2.xcdatamodel/contents similarity index 100% rename from AppBox/AppBox.xcdatamodeld/AppBox2.xcdatamodel/contents rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox2.xcdatamodel/contents diff --git a/AppBox/AppBox.xcdatamodeld/AppBox3.xcdatamodel/contents b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox3.xcdatamodel/contents similarity index 100% rename from AppBox/AppBox.xcdatamodeld/AppBox3.xcdatamodel/contents rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox3.xcdatamodel/contents diff --git a/AppBox/AppBox.xcdatamodeld/AppBox4.xcdatamodel/contents b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox4.xcdatamodel/contents similarity index 100% rename from AppBox/AppBox.xcdatamodeld/AppBox4.xcdatamodel/contents rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/AppBox.xcdatamodeld/AppBox4.xcdatamodel/contents diff --git a/AppBox/Model/CoreDataMigration/CoreDataMigration2to3.xcmappingmodel/xcmapping.xml b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/CoreDataMigration2to3.xcmappingmodel/xcmapping.xml similarity index 100% rename from AppBox/Model/CoreDataMigration/CoreDataMigration2to3.xcmappingmodel/xcmapping.xml rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/CoreDataMigration2to3.xcmappingmodel/xcmapping.xml diff --git a/AppBox/Model/CoreDataMigration/CoreDataMigration3to4.xcmappingmodel/xcmapping.xml b/AppBoxCore/Sources/AppBoxCore/CoreData/Resources/CoreDataMigration3to4.xcmappingmodel/xcmapping.xml similarity index 100% rename from AppBox/Model/CoreDataMigration/CoreDataMigration3to4.xcmappingmodel/xcmapping.xml rename to AppBoxCore/Sources/AppBoxCore/CoreData/Resources/CoreDataMigration3to4.xcmappingmodel/xcmapping.xml diff --git a/AppBoxCore/Sources/AppBoxCore/IPA/IPAExtractor.swift b/AppBoxCore/Sources/AppBoxCore/IPA/IPAExtractor.swift new file mode 100644 index 00000000..c73f44ce --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/IPA/IPAExtractor.swift @@ -0,0 +1,74 @@ +import Foundation + +/// Locations of the interesting files inside an extracted IPA (paths relative to the archive root). +public struct IPAPayloadLayout: Equatable { + public let payloadAppPath: String // e.g. "Payload/MyApp.app" + public let infoPlistPath: String // e.g. "Payload/MyApp.app/Info.plist" + public let mobileProvisionPath: String? // e.g. "Payload/MyApp.app/embedded.mobileprovision" +} + +/// Pure logic to locate the `.app` payload, its `Info.plist`, and the embedded provisioning profile from a list of archive entry paths. +public enum ExtractedIPALocator { + + /// Returns the layout, or `nil` if no `.app` payload with an `Info.plist` is present. + public static func locate(entries: [String]) -> IPAPayloadLayout? { + guard let payloadApp = payloadAppPath(in: entries) else { return nil } + + let infoLower = (payloadApp + "/Info.plist").lowercased() + let provisionLower = (payloadApp + "/embedded.mobileprovision").lowercased() + + guard let infoPlist = entries.first(where: { $0.lowercased() == infoLower }) else { return nil } + let provision = entries.first(where: { $0.lowercased() == provisionLower }) + + return IPAPayloadLayout(payloadAppPath: payloadApp, infoPlistPath: infoPlist, mobileProvisionPath: provision) + } + + /// First entry whose path contains a `*.app` component, truncated to that component. + private static func payloadAppPath(in entries: [String]) -> String? { + for entry in entries where entry.lowercased().contains(".app") { + let components = entry.components(separatedBy: "/") + for (index, component) in components.enumerated() + where component.count > 4 && component.lowercased().hasSuffix(".app") { + return components[0...index].joined(separator: "/") + } + } + return nil + } +} + +public enum IPAExtractionError: Error, Equatable { + /// No `.app` payload (with an `Info.plist`) was found in the archive. + case invalidIPA +} + +/// Absolute URLs to the extracted IPA's payload and metadata files. +public struct ExtractedIPA: Equatable { + public let workingDirectory: URL + public let payloadAppURL: URL + public let infoPlistURL: URL + public let mobileProvisionURL: URL? +} + +/// Unzips an IPA (via `ArchiveExtractor`) and resolves the payload / Info.plist / provisioning locations. +public final class IPAExtractor { + + private let archiveExtractor: ArchiveExtractor + + public init(archiveExtractor: ArchiveExtractor) { + self.archiveExtractor = archiveExtractor + } + + public func extract(ipaAt ipaURL: URL, to destination: URL) throws -> ExtractedIPA { + let entries = try archiveExtractor.entries(ofArchiveAt: ipaURL) + guard let layout = ExtractedIPALocator.locate(entries: entries) else { + throw IPAExtractionError.invalidIPA + } + try archiveExtractor.extract(archiveAt: ipaURL, to: destination) + return ExtractedIPA( + workingDirectory: destination, + payloadAppURL: destination.appendingPathComponent(layout.payloadAppPath), + infoPlistURL: destination.appendingPathComponent(layout.infoPlistPath), + mobileProvisionURL: layout.mobileProvisionPath.map { destination.appendingPathComponent($0) } + ) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/IPA/IPAFieldHelpers.swift b/AppBoxCore/Sources/AppBoxCore/IPA/IPAFieldHelpers.swift new file mode 100644 index 00000000..aabab483 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/IPA/IPAFieldHelpers.swift @@ -0,0 +1,74 @@ +import Foundation + +/// Pure helpers for deriving display/URL-safe names and the supported-device string. +public enum IPAName { + + /// Removes spaces from a build name (matches the old `setName:`). + public static func stripSpaces(_ name: String) -> String { + name.replacingOccurrences(of: " ", with: "") + } + + /// Keeps only characters allowed in a URL query component, falling back to `"AppBox"` when the result would be empty (matches the old `validURLString:`). + public static func sanitizedForURL(_ string: String?) -> String { + guard let string else { return "AppBox" } + let allowed = CharacterSet.urlQueryAllowed + let filtered = String(String.UnicodeScalarView(string.unicodeScalars.filter { allowed.contains($0) })) + return filtered.isEmpty ? "AppBox" : filtered + } + + /// Characters that are legal in a URL query but must not survive into a single remote path segment + private static let pathComponentSeparators = CharacterSet(charactersIn: "/?") + + /// One path segment (app name, version, build, uuid): `sanitizedForURL` minus the characters that would restructure the path. + public static func sanitizedPathComponent(_ string: String?) -> String { + let sanitized = sanitizedForURL(string) + let filtered = String(String.UnicodeScalarView( + sanitized.unicodeScalars.filter { !pathComponentSeparators.contains($0) })) + return filtered.isEmpty ? "AppBox" : filtered + } + + /// A whole path: each segment sanitized as a segment, so `/` keeps its structural meaning and nothing else can introduce more of it. + public static func sanitizedPath(_ string: String?) -> String { + guard let string, !string.isEmpty else { return "AppBox" } + let sanitized = string.components(separatedBy: "/") + .map { $0.isEmpty ? "" : sanitizedPathComponent($0) } + .joined(separator: "/") + return sanitized.isEmpty || sanitized == "/" ? "AppBox" : sanitized + } +} + +public enum IPADeviceFamily { + + /// Maps an Info.plist `UIDeviceFamily` value to a human name. + public static func name(for value: Int) -> String? { + switch value { + case 1: return "iPhone" + case 2: return "iPad" + case 3: return "Apple TV" + case 4: return "Apple Watch" + case 6: return "Mac" + case 7: return "Apple Vision Pro" + default: return nil + } + } + + /// Maps a `UIDeviceFamily` array to a display string, e.g. + public static func describe(_ deviceFamily: [Int]?) -> String { + guard let deviceFamily else { return "" } + return deviceFamily.compactMap(name(for:)).joined(separator: " and ") + } +} + +public final class ABIPAInfo: NSObject { + public static func sanitizedURLString(_ string: String?) -> String { + IPAName.sanitizedForURL(string) + } + + public static func stripSpaces(_ name: String) -> String { + IPAName.stripSpaces(name) + } + + public static func supportedDevice(fromDeviceFamily family: [NSNumber]?) -> String { + IPADeviceFamily.describe(family?.map(\.intValue)) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Mail/MailLogic.swift b/AppBoxCore/Sources/AppBoxCore/Mail/MailLogic.swift new file mode 100644 index 00000000..2eca6843 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Mail/MailLogic.swift @@ -0,0 +1,45 @@ +import Foundation + +// MARK: - Email validation + +public enum EmailValidator { + + private static let singleEmailPattern = + #"^[A-Z0-9a-z\._%+-]+@([A-Za-z0-9-]+\.)+[A-Za-z]{2,}$"# + private static let allEmailsPattern = + #"(([a-zA-Z0-9_\-\.]+)@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.)|(([a-zA-Z0-9\-]+\.)+))([a-zA-Z]{2,}|[0-9]{1,3})(\]?)(\s*,\s*|\s*$))*"# + + /// True if `string` is a single valid email address. + public static func isValidEmail(_ string: String) -> Bool { + matches(string, pattern: singleEmailPattern) + } + + /// True if `string` is a comma-separated list of valid email addresses. + public static func isAllValidEmails(_ string: String) -> Bool { + matches(string, pattern: allEmailsPattern) + } + + private static func matches(_ string: String, pattern: String) -> Bool { + NSPredicate(format: "SELF MATCHES %@", pattern).evaluate(with: string) + } +} + +// MARK: - Notification text + +/// Builds the Slack/Teams notification text, which is entirely generated from the build. +public enum BuildNotificationMessage { + public static func text(name: String, version: String, build: String, installURL: String) -> String { + "\(name) \(version) (\(build)) is ready to test. Install - \(installURL)" + } +} + +/// Thin surface used by the app's `MailHandler` shim. +public final class ABMailBridge: NSObject { + public static func isValidEmail(_ string: String) -> Bool { + EmailValidator.isValidEmail(string) + } + + public static func isAllValidEmails(_ string: String) -> Bool { + EmailValidator.isAllValidEmails(string) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Notifications/NotificationPayload.swift b/AppBoxCore/Sources/AppBoxCore/Notifications/NotificationPayload.swift new file mode 100644 index 00000000..e40b9231 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Notifications/NotificationPayload.swift @@ -0,0 +1,12 @@ +import Foundation + +/// Validation for user-supplied incoming-webhook URLs; https-only, matching the S5 hardening. +public enum WebhookURL { + public static func isValid(_ urlString: String?) -> Bool { + guard let urlString, !urlString.isEmpty, + let url = URL(string: urlString), + url.host != nil, + url.scheme == "https" else { return false } + return true + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Provisioning/MobileProvisionParser.swift b/AppBoxCore/Sources/AppBoxCore/Provisioning/MobileProvisionParser.swift new file mode 100644 index 00000000..f2b242f5 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Provisioning/MobileProvisionParser.swift @@ -0,0 +1,126 @@ +import Foundation + +/// Distribution build types, matching the `BuildType*` string constants from the code. +public enum BuildType { + public static let unknown = "unknown" + public static let adHoc = "ad-hoc" + public static let package = "package" + public static let appStore = "app-store" + public static let enterprise = "enterprise" + public static let development = "development" + public static let developerId = "developer-id" +} + +/// Parsed contents of an embedded `.mobileprovision` profile. +public struct MobileProvisionInfo: Equatable { + public let isValid: Bool + public let uuid: String? + public let teamId: String? + public let teamName: String? + public let buildType: String? + public let createDate: Date? + public let expirationDate: Date? + public let provisionedDevices: [String]? + + public static let invalid = MobileProvisionInfo( + isValid: false, uuid: nil, teamId: nil, teamName: nil, + buildType: nil, createDate: nil, expirationDate: nil, provisionedDevices: nil + ) + + public init(isValid: Bool, uuid: String?, teamId: String?, teamName: String?, buildType: String?, + createDate: Date?, expirationDate: Date?, provisionedDevices: [String]?) { + self.isValid = isValid + self.uuid = uuid + self.teamId = teamId + self.teamName = teamName + self.buildType = buildType + self.createDate = createDate + self.expirationDate = expirationDate + self.provisionedDevices = provisionedDevices + } +} + +/// Parses a `.mobileprovision` file. +public enum MobileProvisionParser { + + /// Parse the raw bytes of a `.mobileprovision` file. + public static func parse(data: Data) -> MobileProvisionInfo { + guard let binaryString = String(data: data, encoding: .isoLatin1), + let start = binaryString.range(of: "", range: start.lowerBound.. MobileProvisionInfo { + guard fileSystem.fileExists(at: url), let data = try? fileSystem.read(contentsOf: url) else { + return .invalid + } + return parse(data: data) + } + + private static func makeInfo(from dict: [String: Any]) -> MobileProvisionInfo { + let buildType: String + if dict.isEmpty { + buildType = BuildType.developerId + } else if (dict["ProvisionsAllDevices"] as? Bool) == true { + buildType = BuildType.enterprise + } else if let devices = dict["ProvisionedDevices"] as? [String], !devices.isEmpty { + let entitlements = dict["Entitlements"] as? [String: Any] + let getTaskAllow = (entitlements?["get-task-allow"] as? Bool) == true + buildType = getTaskAllow ? BuildType.development : BuildType.adHoc + } else { + buildType = BuildType.appStore + } + + return MobileProvisionInfo( + isValid: true, + uuid: dict["UUID"] as? String, + teamId: (dict["TeamIdentifier"] as? [String])?.first, + teamName: dict["TeamName"] as? String, + buildType: buildType, + createDate: dict["CreationDate"] as? Date, + expirationDate: dict["ExpirationDate"] as? Date, + provisionedDevices: dict["ProvisionedDevices"] as? [String] + ) + } +} + +public final class ABMobileProvisionInfo: NSObject { + public let isValid: Bool + public let uuid: String? + public let teamId: String? + public let teamName: String? + public let buildType: String? + public let createDate: Date? + public let expirationDate: Date? + public let provisionedDevices: [String]? + + init(_ info: MobileProvisionInfo) { + isValid = info.isValid + uuid = info.uuid + teamId = info.teamId + teamName = info.teamName + buildType = info.buildType + createDate = info.createDate + expirationDate = info.expirationDate + provisionedDevices = info.provisionedDevices + } +} + +public final class ABMobileProvisionParser: NSObject { + public static func parseFile(atPath path: String) -> ABMobileProvisionInfo { + ABMobileProvisionInfo(MobileProvisionParser.parse(contentsOf: URL(fileURLWithPath: path), + fileSystem: FileManagerFileSystem())) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/CLIDropboxClient.swift b/AppBoxCore/Sources/AppBoxCore/Storage/CLIDropboxClient.swift new file mode 100644 index 00000000..4550b714 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/CLIDropboxClient.swift @@ -0,0 +1,16 @@ +import Foundation +import SwiftyDropbox + +/// One-time, process-wide setup of `DropboxClientsManager` for the CLI. +public enum CLIDropboxClient { + private static var configured = false + + /// Installs the OAuth manager with the CLI-safe Keychain store (idempotent). + public static func ensureConfigured(appKey: String, + secureStorage: SecureStorageAccess = CLISecureStorageAccess(service: "com.developerinsider.AppBox.dropbox.authv2")) { + if !configured { + configured = true + DropboxClientsManager.setupWithAppKeyDesktop(appKey, secureStorageAccess: secureStorage) + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/CLISecureStorageAccess.swift b/AppBoxCore/Sources/AppBoxCore/Storage/CLISecureStorageAccess.swift new file mode 100644 index 00000000..c152ae38 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/CLISecureStorageAccess.swift @@ -0,0 +1,74 @@ +import Foundation +import SwiftyDropbox + +/// A `SecureStorageAccess` for non-app contexts (the CLI). +public final class CLISecureStorageAccess: SecureStorageAccess { + + private let service: String + + public init(service: String) { + self.service = service + } + + public func checkAccessibilityMigrationOneTime() { + } + + public func setAccessTokenData(for userId: String, data: Data) -> Bool { + let query = query(account: userId, extra: [kSecValueData as String: data as AnyObject]) + SecItemDelete(query) + return SecItemAdd(query, nil) == errSecSuccess + } + + public func getAllUserIds() -> [String] { + let query = query(account: nil, extra: [ + kSecReturnAttributes as String: kCFBooleanTrue!, + kSecMatchLimit as String: kSecMatchLimitAll, + ]) + var result: AnyObject? + guard SecItemCopyMatching(query, &result) == errSecSuccess else { return [] } + let items = result as? [[String: AnyObject]] ?? [] + return items.compactMap { $0[kSecAttrAccount as String] as? String } + } + + public func getDropboxAccessToken(for key: String) -> DropboxAccessToken? { + guard let data = data(for: key) else { return nil } + if let token = try? JSONDecoder().decode(DropboxAccessToken.self, from: data) { + return token + } + if let string = String(data: data, encoding: .utf8) { + return DropboxAccessToken(accessToken: string, uid: key) + } + return nil + } + + public func deleteInfo(for key: String) -> Bool { + SecItemDelete(query(account: key, extra: [:])) == errSecSuccess + } + + public func deleteInfoForAllKeys() -> Bool { + SecItemDelete(query(account: nil, extra: [:])) == errSecSuccess + } + + // MARK: Helpers + + private func data(for key: String) -> Data? { + let query = query(account: key, extra: [ + kSecReturnData as String: kCFBooleanTrue!, + kSecMatchLimit as String: kSecMatchLimitOne, + ]) + var result: AnyObject? + guard SecItemCopyMatching(query, &result) == errSecSuccess else { return nil } + return result as? Data + } + + private func query(account: String?, extra: [String: AnyObject]) -> CFDictionary { + var dict: [String: AnyObject] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: service as AnyObject, + kSecAttrAccessible as String: kSecAttrAccessibleAfterFirstUnlockThisDeviceOnly, + ] + if let account { dict[kSecAttrAccount as String] = account as AnyObject } + for (key, value) in extra { dict[key] = value } + return dict as CFDictionary + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxCLIAuth.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxCLIAuth.swift new file mode 100644 index 00000000..c3c4c1d0 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxCLIAuth.swift @@ -0,0 +1,61 @@ +import Foundation +import SwiftyDropbox + +/// Headless Dropbox login for the CLI: the paste-code Authorization-Code-with-PKCE flow. +public final class DropboxCLIAuth { + + /// An in-flight authorization. + public struct AuthorizationRequest { + public let authorizeURL: URL + let verifier: String + } + + private let appKey: String + private let scopes: [String] + private let httpClient: HTTPClient + private let secureStorage: SecureStorageAccess + + /// `secureStorage` defaults to a CLI-safe Keychain store — SwiftyDropbox's default impl `fatalError`s in a non-`.app` (command-line) process. + public init(appKey: String, scopes: [String] = DropboxPKCEAuth.defaultScopes, + httpClient: HTTPClient = URLSessionHTTPClient(), + secureStorage: SecureStorageAccess = CLISecureStorageAccess(service: "com.developerinsider.AppBox.dropbox.authv2")) { + self.appKey = appKey + self.scopes = scopes + self.httpClient = httpClient + self.secureStorage = secureStorage + } + + /// True if a Dropbox token is already stored (no login needed). + public var isAuthorized: Bool { + DropboxOAuthManager(appKey: appKey, secureStorageAccess: secureStorage) + .getFirstAccessToken() != nil + } + + /// Begin a login: generate a PKCE pair and the authorize URL (no `redirect_uri`, so Dropbox shows the code). + public func beginAuthorization() -> AuthorizationRequest { + let pkce = DropboxPKCEAuth.generatePKCE() + let url = DropboxPKCEAuth.authorizeURL(appKey: appKey, codeChallenge: pkce.challenge, scopes: scopes) + return AuthorizationRequest(authorizeURL: url, verifier: pkce.verifier) + } + + /// Exchange the pasted `code` for tokens and store them. + public func completeLogin(_ request: AuthorizationRequest, code: String) async throws { + let token = try await DropboxPKCEAuth.exchangeCode(code, appKey: appKey, + codeVerifier: request.verifier, + httpClient: httpClient) + let expiration = token.expiresIn.map { Date().timeIntervalSince1970 + $0 } + let dbToken = DropboxAccessToken(accessToken: token.accessToken, + uid: token.uid.isEmpty ? "dropbox" : token.uid, + refreshToken: token.refreshToken, + tokenExpirationTimestamp: expiration) + let oauthManager = DropboxOAuthManager(appKey: appKey, secureStorageAccess: secureStorage) + guard oauthManager.storeAccessToken(dbToken) else { + throw StorageError.authenticationFailed("Could not store the Dropbox token in the keychain.") + } + } + + public func signOut() { + _ = DropboxOAuthManager(appKey: appKey, secureStorageAccess: secureStorage) + .clearStoredAccessTokens() + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxCLISession.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxCLISession.swift new file mode 100644 index 00000000..be6adc82 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxCLISession.swift @@ -0,0 +1,120 @@ +import Foundation +import SwiftyDropbox + +/// Authorized Dropbox queries for the CLI: account identity (`whoami`) and storage usage (`space`). +public final class DropboxCLISession { + + /// The signed-in Dropbox account (the bits worth showing in `whoami`). + public struct AccountInfo: Equatable { + public let displayName: String + public let email: String + public let emailVerified: Bool + public let accountId: String + public let accountType: String + public let country: String? + public let locale: String + public let teamName: String? + public let isPaired: Bool + } + + /// Dropbox storage usage. + public struct SpaceUsage: Equatable { + public enum Allocation: Equatable { + case individual(allocated: UInt64) + /// A team account. + case team(used: UInt64, allocated: UInt64, userAllocated: UInt64, userUsed: UInt64) + case other + } + + /// This user's own usage (the API's per-user `used`, not any team-wide total). + public let usedBytes: UInt64 + public let allocation: Allocation + + /// The total space available to **this user** — the individual allocation, or the member's within-team quota. + public var allocatedBytes: UInt64? { + switch allocation { + case .individual(let allocated): return allocated + case .team(_, _, let userAllocated, _): return userAllocated > 0 ? userAllocated : nil + case .other: return nil + } + } + + /// Remaining space (allocated − used), clamped at 0, when a personal total is known. + public var availableBytes: UInt64? { + guard let allocated = allocatedBytes else { return nil } + return allocated > usedBytes ? allocated - usedBytes : 0 + } + } + + private let appKey: String + private let secureStorage: SecureStorageAccess + + /// `secureStorage` defaults to the same CLI-safe Keychain store `DropboxCLIAuth` writes to, so the token stored at login is the one these queries read. + public init(appKey: String, + secureStorage: SecureStorageAccess = CLISecureStorageAccess(service: "com.developerinsider.AppBox.dropbox.authv2")) { + self.appKey = appKey + self.secureStorage = secureStorage + } + + /// Fetch the current account (`users/get_current_account`). + public func currentAccount() async throws -> AccountInfo { + let client = try authorizedClient() + switch await client.users.getCurrentAccount().responseResult() { + case .success(let account): + return AccountInfo( + displayName: account.name.displayName, + email: account.email, + emailVerified: account.emailVerified, + accountId: account.accountId, + accountType: DropboxCLISession.describe(account.accountType), + country: account.country, + locale: account.locale, + teamName: account.team?.name, + isPaired: account.isPaired + ) + case .failure(let error): + throw DropboxStorageProvider.map(error) + } + } + + /// Fetch storage usage (`users/get_space_usage`). + public func spaceUsage() async throws -> SpaceUsage { + let client = try authorizedClient() + switch await client.users.getSpaceUsage().responseResult() { + case .success(let usage): + let allocation: SpaceUsage.Allocation + switch usage.allocation { + case .individual(let individual): + allocation = .individual(allocated: individual.allocated) + case .team(let team): + allocation = .team(used: team.used, allocated: team.allocated, + userAllocated: team.userWithinTeamSpaceAllocated, + userUsed: team.userWithinTeamSpaceUsedCached) + case .other: + allocation = .other + } + return SpaceUsage(usedBytes: usage.used, allocation: allocation) + case .failure(let error): + throw DropboxStorageProvider.map(error) + } + } + + // MARK: - Client setup + + private func authorizedClient() throws -> DropboxClient { + CLIDropboxClient.ensureConfigured(appKey: appKey, secureStorage: secureStorage) + guard let client = DropboxClientsManager.authorizedClient else { + throw StorageError.authenticationFailed("Not logged in to Dropbox. Run `appboxcli login` first.") + } + return client + } + + private static func describe(_ type: UsersCommon.AccountType) -> String { + switch type { + case .basic: return "Basic" + case .pro: return "Pro" + case .business: return "Business" + @unknown default: return "Unknown" + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxChunkUploadSession.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxChunkUploadSession.swift new file mode 100644 index 00000000..e1f961b5 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxChunkUploadSession.swift @@ -0,0 +1,67 @@ +import Foundation +import SwiftyDropbox + +/// SwiftyDropbox-backed `ChunkUploadSession` (uploadSessionStart → AppendV2 … → Finish). +final class DropboxChunkUploadSession: ChunkUploadSession { + private let client: DropboxClient + private let commit: Files.CommitInfo + /// Set when `finish` succeeds — the committed file's path/rev, for callers that need it. + private(set) var finishedMetadata: RemoteFileRef? + + init(client: DropboxClient, remotePath: String, mode: Files.WriteMode) { + self.client = client + self.commit = Files.CommitInfo(path: remotePath, mode: mode, autorename: false, mute: false) + } + + func start(data: Data, progress: @escaping (Int) -> Void) async -> SessionStartResult { + await withCheckedContinuation { (continuation: CheckedContinuation) in + client.files.uploadSessionStart(input: data) + .progress { p in progress(Int(p.completedUnitCount)) } + .response(queue: .main) { result, error in + if let result { + continuation.resume(returning: .started(sessionID: result.sessionId)) + } else { + continuation.resume(returning: .failure(DropboxStorageProvider.map(error))) + } + } + } + } + + func append(sessionID: String, offset: Int, data: Data, progress: @escaping (Int) -> Void) async -> ChunkResult { + let cursor = Files.UploadSessionCursor(sessionId: sessionID, offset: UInt64(offset)) + return await withCheckedContinuation { (continuation: CheckedContinuation) in + client.files.uploadSessionAppendV2(cursor: cursor, input: data) + .progress { p in progress(Int(p.completedUnitCount)) } + .response(queue: .main) { result, error in + if result != nil { + continuation.resume(returning: .committed) + } else if case .routeError(let boxed, _, _, _)? = error, + case .incorrectOffset(let offsetError) = boxed.unboxed { + continuation.resume(returning: .incorrectOffset(expectedOffset: Int(offsetError.correctOffset))) + } else { + continuation.resume(returning: .failure(DropboxStorageProvider.map(error))) + } + } + } + } + + func finish(sessionID: String, offset: Int, data: Data, progress: @escaping (Int) -> Void) async -> ChunkResult { + let cursor = Files.UploadSessionCursor(sessionId: sessionID, offset: UInt64(offset)) + return await withCheckedContinuation { (continuation: CheckedContinuation) in + client.files.uploadSessionFinish(cursor: cursor, commit: commit, input: data) + .progress { p in progress(Int(p.completedUnitCount)) } + .response(queue: .main) { result, error in + if let result { + self.finishedMetadata = RemoteFileRef(pathDisplay: result.pathDisplay ?? self.commit.path, rev: result.rev) + continuation.resume(returning: .committed) + } else if case .routeError(let boxed, _, _, _)? = error, + case .lookupFailed(let lookup) = boxed.unboxed, + case .incorrectOffset(let offsetError) = lookup { + continuation.resume(returning: .incorrectOffset(expectedOffset: Int(offsetError.correctOffset))) + } else { + continuation.resume(returning: .failure(DropboxStorageProvider.map(error))) + } + } + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxLogin.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxLogin.swift new file mode 100644 index 00000000..6b6a1475 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxLogin.swift @@ -0,0 +1,30 @@ +#if canImport(AppKit) +import AppKit +import Foundation +import SwiftyDropbox + +/// The one piece of the Dropbox transport that genuinely needs AppKit: the interactive OAuth flow. +public final class DropboxLogin: NSObject { + + /// Scopes AppBox needs: read the account (email/name + space usage), read/write file contents (upload/download IPAs + appinfo.json), and create/list shared links. + static let scopes = [ + "account_info.read", + "files.content.write", + "files.content.read", + "sharing.write", + "sharing.read", + ] + + /// Present the Dropbox authorization flow from `controller`. + public static func present(from controller: NSViewController) { + let scopeRequest = ScopeRequest(scopeType: .user, scopes: scopes, includeGrantedScopes: false) + DropboxClientsManager.authorizeFromControllerV2( + sharedApplication: NSApplication.shared, + controller: controller, + loadingStatusDelegate: nil, + openURL: { url in NSWorkspace.shared.open(url) }, + scopeRequest: scopeRequest + ) + } +} +#endif diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxPKCEAuth.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxPKCEAuth.swift new file mode 100644 index 00000000..6add591f --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxPKCEAuth.swift @@ -0,0 +1,129 @@ +import Foundation +import CryptoKit + +/// The OAuth 2.0 Authorization-Code-with-PKCE pieces a headless client (the CLI) needs to log in to Dropbox without an app context: generate the PKCE pair, build the authorization URL, and exchange the returned code for tokens. +public enum DropboxPKCEAuth { + + public static let authorizeEndpoint = URL(string: "https://www.dropbox.com/oauth2/authorize")! + public static let tokenEndpoint = URL(string: "https://api.dropboxapi.com/oauth2/token")! + + /// Scopes AppBox needs (mirrors the GUI's `ABDropboxLogin`). + public static let defaultScopes = [ + "account_info.read", + "files.content.write", + "files.content.read", + "sharing.write", + "sharing.read", + ] + + // MARK: PKCE + + /// A PKCE verifier/challenge pair (RFC 7636, S256). + public struct PKCE: Equatable { + public let verifier: String + public let challenge: String + } + + /// Generate a PKCE pair: a high-entropy `code_verifier` and its `S256` `code_challenge`. + public static func generatePKCE() -> PKCE { + let verifier = base64URLEncode(randomData(count: 64)) + let challenge = base64URLEncode(Data(SHA256.hash(data: Data(verifier.utf8)))) + return PKCE(verifier: verifier, challenge: challenge) + } + + /// A random URL-safe value for the OAuth `state` (CSRF protection). + public static func randomState() -> String { + base64URLEncode(randomData(count: 32)) + } + + // MARK: Authorize URL + + /// Build the authorization URL the user opens in a browser. + public static func authorizeURL(appKey: String, redirectURI: String? = nil, codeChallenge: String, + state: String? = nil, scopes: [String] = defaultScopes) -> URL { + var items = [ + URLQueryItem(name: "client_id", value: appKey), + URLQueryItem(name: "response_type", value: "code"), + URLQueryItem(name: "code_challenge", value: codeChallenge), + URLQueryItem(name: "code_challenge_method", value: "S256"), + URLQueryItem(name: "token_access_type", value: "offline"), + URLQueryItem(name: "scope", value: scopes.joined(separator: " ")), + ] + if let redirectURI { items.append(URLQueryItem(name: "redirect_uri", value: redirectURI)) } + if let state { items.append(URLQueryItem(name: "state", value: state)) } + var components = URLComponents(url: authorizeEndpoint, resolvingAgainstBaseURL: false)! + components.queryItems = items + return components.url! + } + + // MARK: Token exchange + + /// The token endpoint's response. + public struct TokenResponse: Equatable { + public let accessToken: String + public let refreshToken: String? + public let uid: String + public let expiresIn: TimeInterval? + } + + /// Exchange the authorization `code` for access/refresh tokens. + public static func exchangeCode(_ code: String, appKey: String, codeVerifier: String, + redirectURI: String? = nil, httpClient: HTTPClient) async throws -> TokenResponse { + var form: [String: String] = [ + "code": code, + "grant_type": "authorization_code", + "client_id": appKey, + "code_verifier": codeVerifier, + ] + if let redirectURI { form["redirect_uri"] = redirectURI } + let request = HTTPRequest( + url: tokenEndpoint, method: .post, + headers: ["Content-Type": "application/x-www-form-urlencoded"], + body: Data(formURLEncode(form).utf8)) + let response = try await httpClient.send(request) + guard response.isSuccess else { + throw StorageError.authenticationFailed("Token exchange failed (HTTP \(response.statusCode)): \(String(decoding: response.data, as: UTF8.self))") + } + return try parseTokenResponse(response.data) + } + + /// Parse the token endpoint's JSON. + public static func parseTokenResponse(_ data: Data) throws -> TokenResponse { + guard let json = (try? JSONSerialization.jsonObject(with: data)) as? [String: Any], + let accessToken = json["access_token"] as? String else { + throw StorageError.authenticationFailed("Malformed token response") + } + let uid = (json["uid"] as? String) ?? (json["account_id"] as? String) ?? "" + let refreshToken = json["refresh_token"] as? String + let expiresIn = (json["expires_in"] as? NSNumber)?.doubleValue + return TokenResponse(accessToken: accessToken, refreshToken: refreshToken, uid: uid, expiresIn: expiresIn) + } + + // MARK: Helpers + + static func randomData(count: Int) -> Data { + var bytes = [UInt8](repeating: 0, count: count) + if SecRandomCopyBytes(kSecRandomDefault, count, &bytes) != errSecSuccess { + bytes = (0.. String { + data.base64EncodedString() + .replacingOccurrences(of: "+", with: "-") + .replacingOccurrences(of: "/", with: "_") + .replacingOccurrences(of: "=", with: "") + } + + static func formURLEncode(_ params: [String: String]) -> String { + var allowed = CharacterSet.alphanumerics + allowed.insert(charactersIn: "-._~") + return params.map { key, value in + let k = key.addingPercentEncoding(withAllowedCharacters: allowed) ?? key + let v = value.addingPercentEncoding(withAllowedCharacters: allowed) ?? value + return "\(k)=\(v)" + }.joined(separator: "&") + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxSession.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxSession.swift new file mode 100644 index 00000000..d706c266 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxSession.swift @@ -0,0 +1,61 @@ +import Foundation +import SwiftyDropbox + +/// Non-UI Dropbox session management on SwiftyDropbox configure the SDK, handle the OAuth redirect, report auth state, sign out, and vend a `DropboxStorageProvider`. +public final class DropboxSession: NSObject { + + /// SwiftyDropbox's `setupWithAppKeyDesktop` installs the shared OAuth manager and `precondition`s that it is only ever called once per process — a second call crashes. + private static var isConfigured = false + + /// Call at launch with the Dropbox app key (`DropboxAppKeyProvider.cachedKey()`). + public static func setup(appKey: String) { + guard !isConfigured else { return } + isConfigured = true + DropboxTokenMigration.migrateIfNeeded() + DropboxClientsManager.setupWithAppKeyDesktop(appKey) + } + + public static var isAuthorized: Bool { + DropboxClientsManager.authorizedClient != nil + } + + /// Handle the `db-://` OAuth redirect. + @discardableResult + public static func handleRedirect(_ url: URL, completion: @escaping (Bool, String?) -> Void) -> Bool { + DropboxClientsManager.handleRedirectURL(url, includeBackgroundClient: false) { result in + switch result { + case .success: + completion(true, nil) + case .cancel: + completion(false, "Dropbox authorization was cancelled.") + case .error(_, let description): + completion(false, description ?? "Dropbox authorization failed.") + case .none: + break + } + } + } + + public static func signOut() { + DropboxClientsManager.unlinkClients() + } + + /// The logged-in user's Dropbox access token, refreshed when near expiry — used to authenticate to the AppBox backend (mail / short links), which verifies it against Dropbox. + public static func currentAccessToken() async -> String? { + guard let provider = DropboxClientsManager.authorizedClient?.accessTokenProvider else { + return nil + } + return await withCheckedContinuation { continuation in + provider.refreshAccessTokenIfNecessary { _ in + continuation.resume(returning: provider.accessToken) + } + } + } + + /// A `StorageProvider` backed by the currently authorized Dropbox client. + public static func makeProvider(chunkSizeBytes: Int = 100 * 1024 * 1024, + reachability: Reachability? = nil) -> DropboxStorageProvider { + DropboxStorageProvider(clientProvider: { DropboxClientsManager.authorizedClient }, + chunkSizeBytes: chunkSizeBytes, reachability: reachability) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxStorageProvider.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxStorageProvider.swift new file mode 100644 index 00000000..3c958cc5 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxStorageProvider.swift @@ -0,0 +1,259 @@ +import Foundation +import SwiftyDropbox + +/// `StorageProvider` backed by the SwiftyDropbox SDK. +public final class DropboxStorageProvider: StorageProvider { + + public let id: StorageProviderID = .dropbox + public private(set) var currentAccount: StorageAccount? + + private let clientProvider: () -> DropboxClient? + /// Chunk size for the upload-session path (large files). + private let chunkSizeBytes: Int + /// Files larger than this go through a chunked upload session; the single-shot API rejects uploads over 150 MB. + private let chunkThresholdBytes: Int + /// Optional reachability so the chunked uploader can pause-until-online instead of failing. + private let reachability: Reachability? + + public init(clientProvider: @escaping () -> DropboxClient?, + chunkSizeBytes: Int = 100 * 1024 * 1024, + chunkThresholdBytes: Int = 150 * 1_000_000, + reachability: Reachability? = nil) { + self.clientProvider = clientProvider + self.chunkSizeBytes = max(chunkSizeBytes, 1) + self.chunkThresholdBytes = chunkThresholdBytes + self.reachability = reachability + } + + private func requireClient() throws -> DropboxClient { + guard let client = clientProvider() else { throw StorageError.notAuthenticated } + return client + } + + // MARK: Auth + + @discardableResult + public func authenticate() async throws -> StorageAccount { + guard clientProvider() != nil else { throw StorageError.notAuthenticated } + let account = StorageAccount(providerID: .dropbox, accountID: "dropbox") + currentAccount = account + return account + } + + public func signOut() throws { + currentAccount = nil + } + + // MARK: Upload + + public func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws { + _ = try await upload(fileAt: localURL, to: remotePath, ifRevisionMatches: nil, progress: progress) + } + + /// Upload with optimistic concurrency: a non-nil `precondition` becomes `WriteMode.update(rev)` (the write applies only on top of exactly that revision — a concurrent writer surfaces as `StorageError.conflict` instead of being clobbered). + @discardableResult + public func upload(fileAt localURL: URL, to remotePath: RemotePath, + ifRevisionMatches precondition: String?, progress: ((Double) -> Void)?) async throws -> String? { + let client = try requireClient() + let mode: Files.WriteMode = precondition.map { .update($0) } ?? .overwrite + + let fileSize = (try? FileManager.default.attributesOfItem(atPath: localURL.path)[.size] as? Int) ?? nil + if (fileSize ?? Int.max) > chunkThresholdBytes { + return try await uploadChunked(client, fileAt: localURL, to: remotePath, mode: mode, progress: progress) + } + + let data = try Data(contentsOf: localURL) + return try await withCheckedThrowingContinuation { (continuation: CheckedContinuation) in + client.files.upload(path: remotePath.path, mode: mode, input: data) + .progress { progressData in + progress?(progressData.fractionCompleted) + } + .response { metadata, error in + if let error { + continuation.resume(throwing: DropboxStorageProvider.map(error)) + } else { + progress?(1.0) + continuation.resume(returning: metadata?.rev) + } + } + } + } + + /// Chunked upload-session path with mid-session resume, driven by the provider-agnostic `ResumableUploader` over a SwiftyDropbox `DropboxChunkUploadSession`. + @discardableResult + private func uploadChunked(_ client: DropboxClient, fileAt localURL: URL, to remotePath: RemotePath, + mode: Files.WriteMode, progress: ((Double) -> Void)?) async throws -> String? { + guard let source = FileChunkSource(path: localURL.path) else { + throw StorageError.unknown("Unable to open the file to upload.") + } + let session = DropboxChunkUploadSession(client: client, remotePath: remotePath.path, mode: mode) + let uploader = ResumableUploader(chunkSize: chunkSizeBytes, reachability: reachability) + try await uploader.upload(source: source, session: session, progress: progress) + return session.finishedMetadata?.rev + } + + // MARK: Shareable links + + private enum CreateLinkOutcome { + case link(String) + case alreadyExists + case failed(StorageError) + } + + public func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink { + let client = try requireClient() + let outcome: CreateLinkOutcome = await withCheckedContinuation { continuation in + client.sharing.createSharedLinkWithSettings(path: remotePath.path) + .response { result, error in + if let result { + continuation.resume(returning: .link(result.url)) + } else if case .routeError(let boxed, _, _, _)? = error, + case .sharedLinkAlreadyExists = boxed.unboxed { + continuation.resume(returning: .alreadyExists) + } else { + continuation.resume(returning: .failed(DropboxStorageProvider.map(error))) + } + } + } + switch outcome { + case .link(let url): + return DropboxStorageProvider.shareableLink(url) + case .alreadyExists: + if let existing = try await existingShareableLink(for: remotePath) { return existing } + throw StorageError.conflict("Shared link already exists but could not be fetched") + case .failed(let error): + throw error + } + } + + public func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? { + let client = try requireClient() + let links: [Sharing.SharedLinkMetadata] = try await withCheckedThrowingContinuation { continuation in + client.sharing.listSharedLinks(path: remotePath.path, directOnly: true) + .response { result, error in + if let result { + continuation.resume(returning: result.links) + } else { + continuation.resume(throwing: DropboxStorageProvider.map(error)) + } + } + } + return links.first.map { DropboxStorageProvider.shareableLink($0.url) } + } + + // MARK: Revisions / delete + + public func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] { + let client = try requireClient() + let result: Files.ListRevisionsResult = try await withCheckedThrowingContinuation { continuation in + client.files.listRevisions(path: remotePath.path) + .response { result, error in + if let result { + continuation.resume(returning: result) + } else { + continuation.resume(throwing: DropboxStorageProvider.map(error)) + } + } + } + return result.entries.map { + RemoteRevision(revisionID: $0.rev, modified: $0.serverModified, size: Int64($0.size)) + } + } + + public func delete(at remotePath: RemotePath) async throws { + let client = try requireClient() + try await withCheckedThrowingContinuation { (continuation: CheckedContinuation) in + client.files.deleteV2(path: remotePath.path) + .response { _, error in + if let error { + continuation.resume(throwing: DropboxStorageProvider.map(error)) + } else { + continuation.resume() + } + } + } + } + + public func download(from remotePath: RemotePath, to localURL: URL) async throws { + _ = try await downloadWithRevision(from: remotePath, to: localURL) + } + + /// Download returning the file's current rev — the base revision for a subsequent `ifRevisionMatches` upload of the same file. + @discardableResult + public func downloadWithRevision(from remotePath: RemotePath, to localURL: URL) async throws -> String? { + let client = try requireClient() + return try await withCheckedThrowingContinuation { (continuation: CheckedContinuation) in + client.files.download(path: remotePath.path, overwrite: true, destination: localURL) + .response { result, error in + if let error { + continuation.resume(throwing: DropboxStorageProvider.map(error)) + } else { + continuation.resume(returning: result?.0.rev) + } + } + } + } + + // MARK: Helpers + + /// Normalize a Dropbox share URL the way AppBox's dashboard expects: drop the `dl` query param, keep the `rlkey` (`DropboxTransport.normalizedShareURL`). + static func shareableLink(_ urlString: String) -> ShareableLink { + let normalized = DropboxTransport.normalizedShareURL(urlString) + let url = URL(string: normalized) ?? URL(string: urlString) ?? URL(fileURLWithPath: "/") + return ShareableLink(url: url, isDirectDownload: false) + } + + /// Collapse SwiftyDropbox's `CallError` into the provider-agnostic `StorageError`. + static func map(_ error: CallError?) -> StorageError { + guard let error else { return .unknown("Unknown Dropbox error") } + switch error { + case .authError, .accessError: + return .notAuthenticated + case .rateLimitError(let rateLimitError, _, _, _): + return .rateLimited(retryAfter: TimeInterval(rateLimitError.retryAfter)) + case .internalServerError(let code, let message, _): + return .server("HTTP \(code): \(message ?? "")") + case .httpError(let code, let message, _): + if let code, (500..<600).contains(code) { return .server("HTTP \(code): \(message ?? "")") } + return .unknown("HTTP \(code.map(String.init) ?? "?"): \(message ?? "HTTP error")") + case .reconnectionError, .clientError: + return .network(String(describing: error)) + case .routeError(let boxed, _, _, _): + if isPathNotFound(boxed.unboxed) { return .notFound } + if isWriteConflict(boxed.unboxed) { + return .conflict("The file changed on Dropbox while this operation was running " + + "(another AppBox may be uploading or deleting the same app). Please retry.") + } + return .unknown(String(describing: error)) + case .badInputError(let message, _): + return .unknown(message ?? "Bad input") + case .serializationError: + return .unknown(String(describing: error)) + } + } + + /// Whether an upload route error is a write-conflict (the `WriteMode.update(rev)` precondition failed because the remote file changed). + private static func isWriteConflict(_ routeError: Any) -> Bool { + guard let uploadError = routeError as? Files.UploadError, + case .path(let writeFailed) = uploadError, + case .conflict = writeFailed.reason else { return false } + return true + } + + /// Whether a route error is a path-lookup "not found" for the routes the pipeline uses. + private static func isPathNotFound(_ routeError: Any) -> Bool { + switch routeError { + case let deleteError as Files.DeleteError: + if case .pathLookup(let lookup) = deleteError, case .notFound = lookup { return true } + case let downloadError as Files.DownloadError: + if case .path(let lookup) = downloadError, case .notFound = lookup { return true } + case let listError as Files.ListRevisionsError: + if case .path(let lookup) = listError, case .notFound = lookup { return true } + case let metadataError as Files.GetMetadataError: + if case .path(let lookup) = metadataError, case .notFound = lookup { return true } + default: + break + } + return false + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxTokenMigration.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxTokenMigration.swift new file mode 100644 index 00000000..59012848 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxTokenMigration.swift @@ -0,0 +1,96 @@ +import Foundation +import os +import SwiftyDropbox + +/// One-time migration of a v3 Dropbox login (vendored **ObjectiveDropboxOfficial** 7.4.x) into the **SwiftyDropbox** token store, so users updating to v4 stay signed in instead of being bounced to the login screen. +enum DropboxTokenMigration { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox.core", category: "DropboxMigration") + + /// Convert any legacy archived tokens in the Keychain to SwiftyDropbox's JSON format. + static func migrateIfNeeded() { + guard let bundleId = Bundle.main.bundleIdentifier else { return } + let service = "\(bundleId).dropbox.authv2" + let storage = SecureStorageAccessDefaultImpl() + + var migrated = 0 + for uid in storage.getAllUserIds() { + guard let data = rawKeychainData(service: service, account: uid) else { continue } + if (try? JSONDecoder().decode(DropboxAccessToken.self, from: data)) != nil { continue } + guard let legacy = LegacyDBAccessToken.decode(from: data) else { continue } + let token = makeToken(from: legacy) + guard let json = try? JSONEncoder().encode(token) else { continue } + if storage.setAccessTokenData(for: uid, data: json) { migrated += 1 } + } + if migrated > 0 { + log.info("Migrated \(migrated, privacy: .public) legacy Dropbox token(s) to SwiftyDropbox.") + } + } + + /// Map a decoded legacy token onto a SwiftyDropbox `DropboxAccessToken`. + static func makeToken(from legacy: LegacyDBAccessToken) -> DropboxAccessToken { + let refresh = (legacy.refreshToken?.isEmpty == false) ? legacy.refreshToken : nil + let expiry = legacy.tokenExpirationTimestamp > 0 ? legacy.tokenExpirationTimestamp : nil + return DropboxAccessToken(accessToken: legacy.accessToken, uid: legacy.uid, + refreshToken: refresh, tokenExpirationTimestamp: expiry) + } + + private static func rawKeychainData(service: String, account: String) -> Data? { + let query: [String: Any] = [ + kSecClass as String: kSecClassGenericPassword, + kSecAttrService as String: service, + kSecAttrAccount as String: account, + kSecReturnData as String: kCFBooleanTrue as Any, + kSecMatchLimit as String: kSecMatchLimitOne, + ] + var result: AnyObject? + guard SecItemCopyMatching(query as CFDictionary, &result) == errSecSuccess else { return nil } + return result as? Data + } +} + +/// Minimal stand-in for the removed ObjectiveDropboxOfficial `DBAccessToken`, just enough to decode its `NSKeyedArchiver` representation. +final class LegacyDBAccessToken: NSObject, NSSecureCoding { + static var supportsSecureCoding: Bool { true } + + let uid: String + let accessToken: String + let refreshToken: String? + let tokenExpirationTimestamp: Double + + init(uid: String, accessToken: String, refreshToken: String?, tokenExpirationTimestamp: Double) { + self.uid = uid + self.accessToken = accessToken + self.refreshToken = refreshToken + self.tokenExpirationTimestamp = tokenExpirationTimestamp + } + + required init?(coder: NSCoder) { + guard let uid = coder.decodeObject(of: NSString.self, forKey: "uid") as String?, + let accessToken = coder.decodeObject(of: NSString.self, forKey: "accessToken") as String? else { + return nil + } + self.uid = uid + self.accessToken = accessToken + self.refreshToken = coder.decodeObject(of: NSString.self, forKey: "refreshToken") as String? + self.tokenExpirationTimestamp = coder.decodeDouble(forKey: "tokenExpirationTimestamp") + super.init() + } + + func encode(with coder: NSCoder) { + coder.encode(uid as NSString, forKey: "uid") + coder.encode(accessToken as NSString, forKey: "accessToken") + coder.encode(refreshToken as NSString?, forKey: "refreshToken") + coder.encode(tokenExpirationTimestamp, forKey: "tokenExpirationTimestamp") + } + + /// Decode an `NSKeyedArchiver` archive whose root class is `DBAccessToken` into this stand-in. + static func decode(from data: Data) -> LegacyDBAccessToken? { + guard let unarchiver = try? NSKeyedUnarchiver(forReadingFrom: data) else { return nil } + unarchiver.requiresSecureCoding = false + unarchiver.setClass(LegacyDBAccessToken.self, forClassName: "DBAccessToken") + let token = unarchiver.decodeObject(of: LegacyDBAccessToken.self, forKey: NSKeyedArchiveRootObjectKey) + unarchiver.finishDecoding() + return token + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/DropboxTransport.swift b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxTransport.swift new file mode 100644 index 00000000..b811916b --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/DropboxTransport.swift @@ -0,0 +1,189 @@ +import Foundation +import SwiftyDropbox + +/// A reference to a remote Dropbox file: just the bits the upload pipeline needs after a write or a revision lookup (the path to share/download, and the revision to update in place). +public final class RemoteFileRef: NSObject { + public let pathDisplay: String + public let rev: String + + public init(pathDisplay: String, rev: String) { + self.pathDisplay = pathDisplay + self.rev = rev + } +} + +/// Dropbox transport over the SwiftyDropbox SDK. +public final class DropboxTransport: NSObject { + + public static let shared = DropboxTransport() + + /// NSError domain for transport failures. + public static let errorDomain = "AppBoxCore.DropboxTransport" + /// userInfo key holding the `ABUploadFailureKind` raw value (so the retry policy can read it). + static let failureKindKey = "ABFailureKind" + /// userInfo key holding a `Bool` — true when the failure means the user must re-authenticate. + static let authErrorKey = "ABIsAuthError" + + private func client() -> DropboxClient? { DropboxClientsManager.authorizedClient } + + private func onMain(_ block: @escaping () -> Void) { DispatchQueue.main.async(execute: block) } + + // MARK: - Upload + + /// Single-shot upload of a local file. + // MARK: - Shareable links + + /// Create a shared link for `path` and return it normalized for AppBox's dashboard (the `dl` query param stripped — see `normalizedShareURL`). + /// Fetch an existing shared link for `path` (used on a 409 conflict when one already exists). + // MARK: - Revisions / download / delete + + /// The latest live revision of `path`, or nil if the file doesn't exist / was deleted. + public func download(fromPath path: String, toLocalURL localURL: URL, completion: @escaping (NSError?) -> Void) { + guard let client = client() else { return failNotAuthenticated { _, e in completion(e) } } + client.files.download(path: path, overwrite: true, destination: localURL) + .response(queue: .main) { result, error in + completion(result != nil ? nil : DropboxTransport.nsError(from: error)) + } + } + + public func delete(atPath path: String, completion: @escaping (NSError?) -> Void) { + guard let client = client() else { return failNotAuthenticated { _, e in completion(e) } } + client.files.deleteV2(path: path) + .response(queue: .main) { result, error in + completion(result != nil ? nil : DropboxTransport.nsError(from: error)) + } + } + + // MARK: - Account + + /// The signed-in account's email + display name (for the account menu / `registerUserId`). + public func currentAccount(completion: @escaping (String?, String?, NSError?) -> Void) { + guard let client = client() else { return onMain { completion(nil, nil, DropboxTransport.notAuthenticatedError()) } } + client.users.getCurrentAccount() + .response(queue: .main) { account, error in + if let account { + completion(account.email, account.name.displayName, nil) + } else { + completion(nil, nil, DropboxTransport.nsError(from: error)) + } + } + } + + /// Used / allocated Dropbox space in **megabytes** (mirrors the old menu math). + public func spaceUsage(completion: @escaping (Int, Int, NSError?) -> Void) { + guard let client = client() else { return onMain { completion(0, 0, DropboxTransport.notAuthenticatedError()) } } + client.users.getSpaceUsage() + .response(queue: .main) { usage, error in + if let usage { + let usedMB = Int(usage.used / (1024 * 1024)) + var allocatedMB = 0 + if case .individual(let individual) = usage.allocation { + allocatedMB = Int(individual.allocated / (1024 * 1024)) + } + completion(usedMB, allocatedMB, nil) + } else { + completion(0, 0, DropboxTransport.nsError(from: error)) + } + } + } + + // MARK: - Error helpers + + /// Read the retry classification an upload error carries, for `ABUploadRetryPolicy`. + public static func failureKind(for error: NSError?) -> ABUploadFailureKind { + guard let raw = error?.userInfo[failureKindKey] as? Int, + let kind = ABUploadFailureKind(rawValue: raw) else { return .none } + return kind + } + + /// Whether an error means the Dropbox session is no longer valid (re-login required). + public static func isAuthError(_ error: NSError?) -> Bool { + (error?.userInfo[authErrorKey] as? Bool) ?? false + } + + // MARK: - Private helpers + + private func failNotAuthenticated(_ completion: @escaping (RemoteFileRef?, NSError?) -> Void) { + onMain { completion(nil, DropboxTransport.notAuthenticatedError()) } + } + + static func notAuthenticatedError() -> NSError { + nsError(message: "You're not signed in to Dropbox. Please log in again.", kind: .other, isAuth: true) + } + + /// Normalize a Dropbox share URL for AppBox: drop the `dl` query parameter, keep everything else (notably the `rlkey` in the modern `scl/fi` links). + static func normalizedShareURL(_ raw: String) -> String { + guard var components = URLComponents(string: raw) else { + return fallbackStripDL(raw) + } + if let items = components.queryItems { + let filtered = items.filter { $0.name != "dl" } + components.queryItems = filtered.isEmpty ? nil : filtered + } + return components.string ?? fallbackStripDL(raw) + } + + private static func fallbackStripDL(_ raw: String) -> String { + for suffix in ["?dl=0", "?dl=1", "&dl=0", "&dl=1"] where raw.hasSuffix(suffix) { + return String(raw.dropLast(suffix.count)) + } + return raw + } + + // MARK: Error mapping + + static func nsError(message: String, kind: ABUploadFailureKind, isAuth: Bool) -> NSError { + NSError(domain: errorDomain, code: kind.rawValue, userInfo: [ + NSLocalizedDescriptionKey: message, + failureKindKey: kind.rawValue, + authErrorKey: isAuth, + ]) + } + + /// Collapse a SwiftyDropbox `CallError` into an `NSError` that carries a user-facing message, the retry classification, and an auth flag. + static func nsError(from callError: CallError?) -> NSError { + guard let callError else { + return nsError(message: "Something went wrong. Please try again.", kind: .other, isAuth: false) + } + let (kind, isAuth) = classify(callError) + let message: String + switch kind { + case .connectivity: + message = "No internet connection. Please check your connection and try again." + case .retryableServer: + message = "Dropbox had a temporary problem. Please try again." + case .other where isAuth: + message = "Your Dropbox session has expired. Please log in again." + case .other, .none: + message = "Dropbox request failed: \(callError)" + } + return nsError(message: message, kind: kind, isAuth: isAuth) + } + + private static func classify(_ callError: CallError) -> (ABUploadFailureKind, Bool) { + switch callError { + case .authError, .accessError: + return (.other, true) + case .rateLimitError, .internalServerError: + return (.retryableServer, false) + case .httpError(let code, _, _): + if let code, (500..<600).contains(code) { return (.retryableServer, false) } + return (.other, false) + case .clientError(let clientError): + return (isConnectivity(clientError) ? .connectivity : .retryableServer, false) + case .reconnectionError(let underlying): + return (UploadRetryPolicy.isConnectivityError(underlying) ? .connectivity : .retryableServer, false) + case .routeError, .badInputError, .serializationError: + return (.other, false) + } + } + + private static func isConnectivity(_ clientError: ClientError) -> Bool { + switch clientError { + case .urlSessionError(let underlying), .other(let underlying): + return UploadRetryPolicy.isConnectivityError(underlying) + default: + return false + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/StorageErrorText.swift b/AppBoxCore/Sources/AppBoxCore/Storage/StorageErrorText.swift new file mode 100644 index 00000000..1e0aa979 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/StorageErrorText.swift @@ -0,0 +1,29 @@ +// +// StorageErrorText.swift +// AppBoxCore +// + +import Foundation + +/// Terminal-facing text for a failed storage operation. The GUI phrases these differently (see `DBErrorHandler`), so the two mappings stay separate on purpose. +public enum StorageErrorText { + + public static func cliMessage(for error: Error) -> String { + guard let storage = error as? StorageError else { + return (error as NSError).localizedDescription + } + switch storage { + case .notAuthenticated: + return "Not logged in to Dropbox. Run `appboxcli login` first." + case .authenticationFailed(let message), .network(let message), + .conflict(let message), .server(let message), .unknown(let message): + return message + case .notFound: + return "Not found." + case .rateLimited: + return "Dropbox is rate-limiting requests. Please try again shortly." + case .cancelled: + return "Cancelled." + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/StorageProvider.swift b/AppBoxCore/Sources/AppBoxCore/Storage/StorageProvider.swift new file mode 100644 index 00000000..c0ac0c27 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/StorageProvider.swift @@ -0,0 +1,174 @@ +import Foundation + +// MARK: - Identity + +/// Identifies a cloud-storage backend. +public enum StorageProviderID: String, Sendable, CaseIterable { + case dropbox + case googleDrive + case s3 + case webDAV +} + +// MARK: - Value types + +/// An authenticated account on some provider. +public struct StorageAccount: Equatable, Sendable { + public let providerID: StorageProviderID + public let accountID: String + public let displayName: String? + public let email: String? + + public init(providerID: StorageProviderID, accountID: String, displayName: String? = nil, email: String? = nil) { + self.providerID = providerID + self.accountID = accountID + self.displayName = displayName + self.email = email + } +} + +/// A provider-agnostic destination path, expressed as ordered components (e.g. +public struct RemotePath: Equatable, Sendable { + public let components: [String] + + public init(_ components: [String]) { + self.components = components + } + + public init(path: String) { + self.components = path.split(separator: "/").map(String.init) + } + + /// POSIX-style joined path, always leading-slashed (Dropbox-style). + public var path: String { "/" + components.joined(separator: "/") } + + public func appending(_ component: String) -> RemotePath { RemotePath(components + [component]) } +} + +/// A link that can be handed to a device to download a file. +public struct ShareableLink: Equatable, Sendable { + public let url: URL + public let isDirectDownload: Bool + + public init(url: URL, isDirectDownload: Bool) { + self.url = url + self.isDirectDownload = isDirectDownload + } +} + +/// A stored revision of a remote file (used for "install previous version" / dashboard history). +public struct RemoteRevision: Equatable, Sendable { + public let revisionID: String + public let modified: Date + public let size: Int64 + + public init(revisionID: String, modified: Date, size: Int64) { + self.revisionID = revisionID + self.modified = modified + self.size = size + } +} + +// MARK: - Errors + +/// Unified error surface across providers — each provider maps its own SDK/HTTP errors onto these cases so the upload pipeline (and `UploadRetryPolicy`) can reason about failures without knowing which backend produced them. +public enum StorageError: Error, Equatable { + case notAuthenticated + case authenticationFailed(String) + /// Transient connectivity/transport failure — safe to retry. + case network(String) + /// Provider asked us to back off; `retryAfter` is seconds if the provider supplied it. + case rateLimited(retryAfter: TimeInterval?) + case notFound + case conflict(String) + /// Provider-side (5xx-equivalent) failure — generally retryable. + case server(String) + case cancelled + case unknown(String) + + /// Whether a retry could plausibly succeed (drives `UploadRetryPolicy`). + public var isRetryable: Bool { + switch self { + case .network, .server, .rateLimited: + return true + case .notAuthenticated, .authenticationFailed, .notFound, .conflict, .cancelled, .unknown: + return false + } + } +} + +// MARK: - Provider + +/// Provider-agnostic cloud storage. +public protocol StorageProvider: AnyObject { + var id: StorageProviderID { get } + + /// The currently authenticated account, or `nil` if signed out. + var currentAccount: StorageAccount? { get } + + /// Authenticate (provider decides how — OAuth, token, etc.) and return the account. + @discardableResult + func authenticate() async throws -> StorageAccount + func signOut() throws + + /// Upload a local file to `remotePath`. + func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws + + /// Upload with optimistic concurrency for shared files (the app-wide `appinfo.json`): when `precondition` is non-nil the write must apply on top of exactly that revision — if the remote file changed in the meantime the provider throws `StorageError.conflict` instead of clobbering it. + @discardableResult + func upload(fileAt localURL: URL, to remotePath: RemotePath, + ifRevisionMatches precondition: String?, progress: ((Double) -> Void)?) async throws -> String? + + /// Create (or fetch, if it already exists) a shareable direct-download link. + func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink + /// An existing shareable link if one is already published, else `nil`. + func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? + + func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] + func delete(at remotePath: RemotePath) async throws + + /// Download the file at `remotePath` to `localURL` (used to fetch the existing appinfo.json when keeping the same link). + func download(from remotePath: RemotePath, to localURL: URL) async throws + + /// Like `download(from:to:)` but returns the downloaded file's current revision (nil when the provider doesn't surface revisions) — the base for a subsequent `ifRevisionMatches` upload. + @discardableResult + func downloadWithRevision(from remotePath: RemotePath, to localURL: URL) async throws -> String? +} + +public extension StorageProvider { + @discardableResult + func upload(fileAt localURL: URL, to remotePath: RemotePath, + ifRevisionMatches precondition: String?, progress: ((Double) -> Void)?) async throws -> String? { + try await upload(fileAt: localURL, to: remotePath, progress: progress) + return nil + } + + @discardableResult + func downloadWithRevision(from remotePath: RemotePath, to localURL: URL) async throws -> String? { + try await download(from: remotePath, to: localURL) + return nil + } +} + +// MARK: - Registry + +/// Maps a `StorageProviderID` to a factory that builds its `StorageProvider`. +public final class StorageProviderRegistry { + public typealias Factory = () -> StorageProvider + + private var factories: [StorageProviderID: Factory] = [:] + + public init() {} + + public func register(_ id: StorageProviderID, factory: @escaping Factory) { + factories[id] = factory + } + + public func makeProvider(_ id: StorageProviderID) -> StorageProvider? { + factories[id]?() + } + + public var registeredProviders: [StorageProviderID] { + Array(factories.keys) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Storage/WebhookSecrets.swift b/AppBoxCore/Sources/AppBoxCore/Storage/WebhookSecrets.swift new file mode 100644 index 00000000..179e52ea --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Storage/WebhookSecrets.swift @@ -0,0 +1,96 @@ +import Foundation +import os + +/// Stores the webhook-notification secrets (Slack / Microsoft Teams incoming-webhook URLs) in the Keychain instead of plaintext `UserDefaults` — security item **S3** — and migrates any value an earlier version left in `UserDefaults` into the Keychain once, then removes the `UserDefaults` key. +public final class WebhookSecrets: NSObject { + + public static let shared = WebhookSecrets() + + private static let service = "com.developerinsider.AppBox.webhooks" + private static let log = Logger(subsystem: "com.developerinsider.AppBox.core", category: "WebhookSecrets") + + /// The three secrets: their Keychain account and the legacy `UserDefaults` key they migrate from. + private enum Secret: CaseIterable { + case slack, teams + var account: String { + switch self { + case .slack: return "slack" + case .teams: return "msteams" + } + } + var legacyDefaultsKey: String { + switch self { + case .slack: return "UserSlackChannel" + case .teams: return "UserMicrosoftTeamWebHook" + } + } + } + + private let secureStore: SecureStore + private let keyValueStore: KeyValueStore + + public override convenience init() { + self.init(secureStore: KeychainSecureStore(), keyValueStore: UserDefaultsKeyValueStore()) + } + + /// Injectable for tests (in-memory fakes). + public init(secureStore: SecureStore, keyValueStore: KeyValueStore) { + self.secureStore = secureStore + self.keyValueStore = keyValueStore + super.init() + } + + // MARK: - Accessors (nil when unset) + + public var slackWebhook: String? { + get { value(for: .slack) } + set { setValue(newValue, for: .slack) } + } + public var teamsWebhook: String? { + get { value(for: .teams) } + set { setValue(newValue, for: .teams) } + } + + private func value(for secret: Secret) -> String? { + if let stored = try? secureStore.string(forAccount: secret.account, service: Self.service), !stored.isEmpty { + return stored + } + let legacy = keyValueStore.string(forKey: secret.legacyDefaultsKey) + return (legacy?.isEmpty == false) ? legacy : nil + } + + private func setValue(_ value: String?, for secret: Secret) { + do { + if let value, !value.isEmpty { + try secureStore.setString(value, forAccount: secret.account, service: Self.service) + } else { + try secureStore.removeItem(forAccount: secret.account, service: Self.service) + } + keyValueStore.removeObject(forKey: secret.legacyDefaultsKey) + } catch { + Self.log.error("Failed to store the \(secret.account, privacy: .public) webhook in the Keychain: \(String(describing: error), privacy: .public)") + } + } + + // MARK: - Migration + + /// Move any webhook secret still in `UserDefaults` into the Keychain, then delete the `UserDefaults` key. + public func migrateFromUserDefaultsIfNeeded() { + for secret in Secret.allCases { + guard let legacy = keyValueStore.string(forKey: secret.legacyDefaultsKey), !legacy.isEmpty else { + continue + } + if let existing = try? secureStore.string(forAccount: secret.account, service: Self.service), !existing.isEmpty { + keyValueStore.removeObject(forKey: secret.legacyDefaultsKey) + continue + } + do { + try secureStore.setString(legacy, forAccount: secret.account, service: Self.service) + keyValueStore.removeObject(forKey: secret.legacyDefaultsKey) + Self.log.info("Migrated the \(secret.account, privacy: .public) webhook from UserDefaults to the Keychain.") + } catch { + Self.log.error("Could not migrate the \(secret.account, privacy: .public) webhook to the Keychain; leaving it in UserDefaults.") + } + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Update/HomebrewDetector.swift b/AppBoxCore/Sources/AppBoxCore/Update/HomebrewDetector.swift new file mode 100644 index 00000000..d2402c5b --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Update/HomebrewDetector.swift @@ -0,0 +1,27 @@ +import Foundation + +/// Detects whether AppBox was installed via the Homebrew `appbox` cask, by checking the cask directories for Apple-silicon and Intel Homebrew prefixes. +public struct HomebrewDetector { + + /// Caskroom paths checked, in order: Apple silicon, then Intel. + public static let caskPaths = [ + "/opt/homebrew/Caskroom/appbox", + "/usr/local/Caskroom/appbox" + ] + + private let fileSystem: FileSystem + + public init(fileSystem: FileSystem) { + self.fileSystem = fileSystem + } + + public var isInstalled: Bool { + HomebrewDetector.caskPaths.contains { fileSystem.fileExists(at: URL(fileURLWithPath: $0)) } + } +} + +public final class ABHomebrewDetector: NSObject { + public static func isInstalledViaHomebrew() -> Bool { + HomebrewDetector(fileSystem: FileManagerFileSystem()).isInstalled + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Update/VersionCompare.swift b/AppBoxCore/Sources/AppBoxCore/Update/VersionCompare.swift new file mode 100644 index 00000000..b2d1d2a9 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Update/VersionCompare.swift @@ -0,0 +1,41 @@ +import Foundation + +/// Version-string extraction and comparison. +public enum VersionCompare { + + /// Extracts a dotted numeric version from arbitrary text (e.g. + public static func extractVersion(from input: String?) -> String { + guard let input else { return "0" } + var version = "" + for character in input { + if character >= "0" && character <= "9" { + version.append(character) + } else if character == "." && !version.isEmpty { + version.append(character) + } else if !version.isEmpty { + break + } + } + while version.hasSuffix(".") { + version.removeLast() + } + return version.isEmpty ? "0" : version + } + + /// True if `latest` represents a newer version than `current` (numeric comparison of the extracted version strings, like `NSString.compare(_:options: .numeric)`). + public static func isUpdateAvailable(latest: String?, current: String?) -> Bool { + let latestVersion = extractVersion(from: latest) + let currentVersion = extractVersion(from: current) + return latestVersion.compare(currentVersion, options: .numeric) == .orderedDescending + } +} + +public final class ABVersionCompare: NSObject { + public static func extractVersion(_ input: String?) -> String { + VersionCompare.extractVersion(from: input) + } + + public static func isUpdateAvailable(latest: String?, current: String?) -> Bool { + VersionCompare.isUpdateAvailable(latest: latest, current: current) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/AppInfoJSON.swift b/AppBoxCore/Sources/AppBoxCore/Upload/AppInfoJSON.swift new file mode 100644 index 00000000..a65eed74 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/AppInfoJSON.swift @@ -0,0 +1,167 @@ +import Foundation + +public struct ProvisioningJSON: Codable, Equatable { + public var createdate: Double? + public var expirationdata: Double? + public var teamid: String? + public var teamname: String? + public var uuid: String? + public var devicesudid: [String]? + + public var isEmpty: Bool { + createdate == nil && expirationdata == nil && teamid == nil && + teamname == nil && uuid == nil && (devicesudid?.isEmpty ?? true) + } +} + +public struct AppVersionEntry: Codable, Equatable { + public var name: String + public var version: String + public var build: String + public var identifier: String + public var manifestLink: String + public var timestamp: Double + public var ipaFileLink: String? + public var minosversion: String? + public var supporteddevice: String? + public var buildtype: String? + public var ipafilesize: Int? + public var mobileprovision: ProvisioningJSON? +} + +extension AppVersionEntry { + /// Tolerant decoding: legacy / hand-edited `appinfo.json` entries may miss core fields — the ObjC reader used plain NSDictionary lookups and tolerated anything. + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + name = try container.decodeIfPresent(String.self, forKey: .name) ?? "" + version = try container.decodeIfPresent(String.self, forKey: .version) ?? "" + build = try container.decodeIfPresent(String.self, forKey: .build) ?? "" + identifier = try container.decodeIfPresent(String.self, forKey: .identifier) ?? "" + manifestLink = try container.decodeIfPresent(String.self, forKey: .manifestLink) ?? "" + timestamp = try container.decodeIfPresent(Double.self, forKey: .timestamp) ?? 0 + ipaFileLink = try container.decodeIfPresent(String.self, forKey: .ipaFileLink) + minosversion = try container.decodeIfPresent(String.self, forKey: .minosversion) + supporteddevice = try container.decodeIfPresent(String.self, forKey: .supporteddevice) + buildtype = try container.decodeIfPresent(String.self, forKey: .buildtype) + ipafilesize = try container.decodeIfPresent(Int.self, forKey: .ipafilesize) + mobileprovision = try container.decodeIfPresent(ProvisioningJSON.self, forKey: .mobileprovision) + } +} + +/// Inputs for one build's version entry (primitive values pulled from `IPAUploadInfo` + the user's preference flags by the caller). +public struct AppVersionInput { + public var name: String + public var version: String + public var build: String + public var identifier: String + public var manifestLink: String + public var timestamp: Double + public var shareableIPALink: String + + public var includeIPALink: Bool + public var includeDetails: Bool + + public var minOSVersion: String? + public var supportedDevice: String? + public var buildType: String? + public var ipaFileSizeMB: Int? + public var provisioningCreateDate: Date? + public var provisioningExpirationDate: Date? + public var teamId: String? + public var teamName: String? + public var provisioningUUID: String? + public var provisionedDevices: [String]? + + public init(name: String, version: String, build: String, identifier: String, + manifestLink: String, timestamp: Double, shareableIPALink: String, + includeIPALink: Bool, includeDetails: Bool, + minOSVersion: String? = nil, supportedDevice: String? = nil, buildType: String? = nil, + ipaFileSizeMB: Int? = nil, provisioningCreateDate: Date? = nil, + provisioningExpirationDate: Date? = nil, teamId: String? = nil, teamName: String? = nil, + provisioningUUID: String? = nil, provisionedDevices: [String]? = nil) { + self.name = name; self.version = version; self.build = build; self.identifier = identifier + self.manifestLink = manifestLink; self.timestamp = timestamp; self.shareableIPALink = shareableIPALink + self.includeIPALink = includeIPALink; self.includeDetails = includeDetails + self.minOSVersion = minOSVersion; self.supportedDevice = supportedDevice; self.buildType = buildType + self.ipaFileSizeMB = ipaFileSizeMB; self.provisioningCreateDate = provisioningCreateDate + self.provisioningExpirationDate = provisioningExpirationDate; self.teamId = teamId + self.teamName = teamName; self.provisioningUUID = provisioningUUID + self.provisionedDevices = provisionedDevices + } +} + +/// Masks provisioned-device UDIDs the way the install page expects (hide the middle). +public enum DeviceUDIDMasker { + public static func mask(_ udid: String) -> String? { + let count = udid.count + if count > 30 { return replacing(udid, location: 10, length: 20) } + if count > 20 { return replacing(udid, location: 8, length: 5) } + return nil + } + + private static func replacing(_ string: String, location: Int, length: Int) -> String { + let start = string.index(string.startIndex, offsetBy: location) + let end = string.index(start, offsetBy: length) + return string.replacingCharacters(in: start.. AppVersionEntry { + var entry = AppVersionEntry(name: input.name, version: input.version, build: input.build, + identifier: input.identifier, manifestLink: input.manifestLink, + timestamp: input.timestamp) + if input.includeIPALink { + entry.ipaFileLink = input.shareableIPALink + } + if input.includeDetails { + entry.minosversion = input.minOSVersion + entry.supporteddevice = input.supportedDevice + entry.buildtype = input.buildType + entry.ipafilesize = input.ipaFileSizeMB + + var provisioning = ProvisioningJSON() + provisioning.createdate = input.provisioningCreateDate?.timeIntervalSince1970 + provisioning.expirationdata = input.provisioningExpirationDate?.timeIntervalSince1970 + provisioning.teamid = input.teamId + provisioning.teamname = input.teamName + provisioning.uuid = input.provisioningUUID + if let devices = input.provisionedDevices { + provisioning.devicesudid = devices.compactMap(DeviceUDIDMasker.mask) + } + if !provisioning.isEmpty { + entry.mobileprovision = provisioning + } + } + return entry + } + + /// Append `entry` to the history, resetting it first unless previous versions are kept. + public static func updatedHistory(_ history: [AppVersionEntry], adding entry: AppVersionEntry, + keepPreviousVersions: Bool) -> [AppVersionEntry] { + var versions = keepPreviousVersions ? history : [] + versions.append(entry) + return versions + } + + /// Outcome of removing one build's version from the history. + public enum VersionRemoval: Equatable { + case updated(versions: [AppVersionEntry], latestVersion: AppVersionEntry) + case historyEmptied + } + + /// Remove the (first) version whose `manifestLink` matches `link`. + public static func removingVersion(withManifestLink link: String, + from versions: [AppVersionEntry], + latestVersion: AppVersionEntry?) -> VersionRemoval { + var remaining = versions + if let index = remaining.firstIndex(where: { $0.manifestLink == link }) { + remaining.remove(at: index) + } + guard let last = remaining.last else { return .historyEmptied } + let newLatest = (latestVersion != nil && latestVersion!.manifestLink != link) ? latestVersion! : last + return .updated(versions: remaining, latestVersion: newLatest) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/BuildMetadata.swift b/AppBoxCore/Sources/AppBoxCore/Upload/BuildMetadata.swift new file mode 100644 index 00000000..9136eea5 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/BuildMetadata.swift @@ -0,0 +1,102 @@ +// +// BuildMetadata.swift +// AppBoxCore +// + +import Foundation + +/// The build fields AppBox reads out of an IPA's `Info.plist`. +public struct BuildMetadata: Equatable, Sendable { + public let name: String + public let version: String + public let build: String + public let identifier: String + public let minimumOSVersion: String? + public let supportedDevice: String + + public init(name: String, version: String, build: String, identifier: String, + minimumOSVersion: String?, supportedDevice: String) { + self.name = IPAName.stripSpaces(name) + self.version = version + self.build = build + self.identifier = identifier + self.minimumOSVersion = minimumOSVersion + self.supportedDevice = supportedDevice + } + + /// Returns nil when any of the four required keys is missing, which is the old `isValidInfoPlist` check. + public init?(infoPlist: [AnyHashable: Any]) { + guard let name = infoPlist["CFBundleName"] as? String, + let build = infoPlist["CFBundleVersion"] as? String, + let identifier = infoPlist["CFBundleIdentifier"] as? String, + let version = infoPlist["CFBundleShortVersionString"] as? String else { + return nil + } + self.init(name: name, + version: version, + build: build, + identifier: identifier, + minimumOSVersion: infoPlist["MinimumOSVersion"] as? String, + supportedDevice: IPADeviceFamily.describe((infoPlist["UIDeviceFamily"] as? [NSNumber])?.map(\.intValue))) + } + + /// Reads and parses the `Info.plist` an `IPAExtractor` produced. + public static func read(fromInfoPlistAt url: URL) -> BuildMetadata? { + guard let data = try? Data(contentsOf: url), + let plist = try? PropertyListSerialization.propertyList(from: data, options: [], format: nil), + let dictionary = plist as? [AnyHashable: Any] else { + return nil + } + return BuildMetadata(infoPlist: dictionary) + } +} + +/// Where a build's files land in the storage provider. +public struct BuildRemotePaths: Equatable, Sendable { + public let bundleDirectory: String + public let buildDirectory: String + public let ipa: RemotePath + public let manifest: RemotePath + public let appInfo: RemotePath + + /// Derives the layout used since v3: `/-ver()-/`, with `appinfo.json` hoisted to the bundle directory when the short link must stay stable. + public init(metadata: BuildMetadata, uuid: String, bundleDirectory: String? = nil, keepSameLink: Bool) { + let requested = (bundleDirectory?.isEmpty == false) ? bundleDirectory! : "/\(metadata.identifier)" + let validBundleDirectory = IPAName.sanitizedPath(requested) + let validName = IPAName.sanitizedPathComponent(metadata.name) + let folder = validName + + "-ver\(IPAName.sanitizedPathComponent(metadata.version))" + + "(\(IPAName.sanitizedPathComponent(metadata.build)))" + + "-\(IPAName.sanitizedPathComponent(uuid))" + let buildDirectory = (validBundleDirectory as NSString).appendingPathComponent(folder) + + self.bundleDirectory = validBundleDirectory + self.buildDirectory = buildDirectory + self.ipa = RemotePath(path: "\(buildDirectory)/\(validName).ipa") + self.manifest = RemotePath(path: "\(buildDirectory)/manifest.plist") + self.appInfo = RemotePath(path: keepSameLink + ? "\(validBundleDirectory)/appinfo.json" + : "\(buildDirectory)/appinfo.json") + } +} + +/// Writes the share URLs to `~/.appbox_share_value.json` so a CI step can read them back. +public enum ShareURLExport { + public static let fileName = ".appbox_share_value.json" + + @discardableResult + public static func write(shareURL: URL?, ipaURL: URL?, manifestURL: URL?, + toDirectory directory: String = NSHomeDirectory()) -> Bool { + let values = [ + "APPBOX_SHARE_URL": shareURL?.absoluteString ?? "", + "APPBOX_IPA_URL": ipaURL?.absoluteString ?? "", + "APPBOX_MANIFEST_URL": manifestURL?.absoluteString ?? "" + ] + guard let data = try? JSONSerialization.data(withJSONObject: values, options: .prettyPrinted) else { + return false + } + let path = (directory as NSString).appendingPathComponent(fileName) + try? FileManager.default.removeItem(atPath: path) + return (try? data.write(to: URL(fileURLWithPath: path), options: .atomic)) != nil + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/BuildPublishService.swift b/AppBoxCore/Sources/AppBoxCore/Upload/BuildPublishService.swift new file mode 100644 index 00000000..c8546505 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/BuildPublishService.swift @@ -0,0 +1,120 @@ +// +// BuildPublishService.swift +// AppBoxCore +// + +import CoreData +import Foundation +import os + +/// The share steps that ran after a build went live, and whether each succeeded. +public struct BuildShareReport { + public var emailSent: Bool? + public var slackSent: Bool? + public var teamsSent: Bool? + public var recordSaveError: Error? +} + +/// Uploads a build, records it in the shared dashboard store, and fans out the email and webhook notifications — the whole "publish a build" flow behind one call. +public final class BuildPublishService { + + private static let log = Logger(subsystem: "com.developerinsider.AppBox.core", category: "Publish") + + private let stack: CoreDataStack + private let providerFactory: (UploadSettings) -> StorageProvider + private let serviceClient: AppBoxServiceClient? + + /// Inject a stack, provider factory and backend client (tests pass a temp store and fakes). + public init( + stack: CoreDataStack, + providerFactory: @escaping (UploadSettings) -> StorageProvider, + serviceClient: AppBoxServiceClient? = nil) { + self.stack = stack + self.providerFactory = providerFactory + self.serviceClient = serviceClient + } + + /// The CLI wiring: the real store opened read-write plus a Dropbox provider on the CLI's authorized client. + public convenience init(appKey: String, serviceClient: AppBoxServiceClient?) { + self.init(stack: CoreDataStack(), providerFactory: { settings in + CLIDropboxClient.ensureConfigured(appKey: appKey) + return DropboxSession.makeProvider(chunkSizeBytes: settings.chunkSizeBytes) + }, serviceClient: serviceClient) + } + + /// Runs the upload, saves the dashboard record, then sends the configured notifications. + public func publish(_ request: BuildUploadRequest, + progress: ProgressReporter = NullProgressReporter()) async throws + -> (outcome: BuildUploadOutcome, share: BuildShareReport) { + let service = BuildUploadService(provider: providerFactory(request.settings), + progress: progress, + shortLinkService: serviceClient) + let outcome = try await service.run(request) + + var recordSaveError: Error? + do { + try saveRecord(for: outcome, request: request) + } catch { + recordSaveError = error + Self.log.error("The build uploaded but its dashboard record could not be saved: \(error.localizedDescription, privacy: .public)") + } + + var share = await sendNotifications(for: outcome, options: request.share) + share.recordSaveError = recordSaveError + return (outcome, share) + } + + private func saveRecord(for outcome: BuildUploadOutcome, request: BuildUploadRequest) throws { + let context = try stack.loadViewContext() + let input = BuildRecordInput(outcome: outcome, + localIPAPath: request.ipaURL.path, + keepSameLink: request.keepSameLink) + try context.performAndWait { + try BuildRecordStore.save(input, in: context) { try stack.saveChanges() } + } + } + + private func sendNotifications(for outcome: BuildUploadOutcome, + options: BuildShareOptions) async -> BuildShareReport { + var report = BuildShareReport() + guard let serviceClient else { return report } + + let installURL = outcome.result.shortLink + + if options.hasEmailRecipients { + let personal = options.personalMessage + let request = BuildEmailRequest(name: outcome.metadata.name, + version: outcome.metadata.version, + build: outcome.metadata.build, + to: options.emails, + installURL: installURL, + personalMessage: personal) + report.emailSent = await succeeded { try await serviceClient.sendBuildEmail(request) } + } + + let text = BuildNotificationMessage.text(name: outcome.metadata.name, + version: outcome.metadata.version, + build: outcome.metadata.build, + installURL: installURL.absoluteString) + if let slack = options.slackWebhook, !slack.isEmpty { + report.slackSent = await succeeded { + try await serviceClient.sendNotification(service: .slack, webhookURL: slack, text: text) + } + } + if let teams = options.msTeamsWebhook, !teams.isEmpty { + report.teamsSent = await succeeded { + try await serviceClient.sendNotification(service: .teams, webhookURL: teams, text: text) + } + } + return report + } + + private func succeeded(_ work: () async throws -> Void) async -> Bool { + do { + try await work() + return true + } catch { + return false + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/BuildUploadService.swift b/AppBoxCore/Sources/AppBoxCore/Upload/BuildUploadService.swift new file mode 100644 index 00000000..f26f1324 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/BuildUploadService.swift @@ -0,0 +1,175 @@ +// +// BuildUploadService.swift +// AppBoxCore +// + +import Foundation + +/// Everything one build upload needs, independent of who is driving it. +public struct BuildUploadRequest { + public var ipaURL: URL + public var settings: UploadSettings + public var share: BuildShareOptions + public var keepSameLink: Bool + /// Custom storage folder; defaults to the app's bundle identifier. + public var bundleDirectory: String? + /// Identifies this build's folder; pass a fresh value per upload. + public var uuid: String + + public init(ipaURL: URL, settings: UploadSettings = UploadSettings(), + share: BuildShareOptions = BuildShareOptions(), keepSameLink: Bool = false, + bundleDirectory: String? = nil, uuid: String = UUID().uuidString) { + self.ipaURL = ipaURL + self.settings = settings + self.share = share + self.keepSameLink = keepSameLink + self.bundleDirectory = bundleDirectory + self.uuid = uuid + } +} + +/// What a completed upload produced. +public struct BuildUploadOutcome { + public let uuid: String + public let metadata: BuildMetadata + public let paths: BuildRemotePaths + public let provisioning: MobileProvisionInfo? + public let ipaFileSizeMB: Int + public let result: UploadResult +} + +/// Failures a build upload can end in; `exitCode` matches the codes the CLI has always returned. +public enum BuildUploadError: Error { + case ipaNotFound(URL) + case invalidInfoPlist + case extractionFailed(Error) + case manifestCreationFailed(Error) + case uploadFailed(Error) + + public var exitCode: Int32 { + switch self { + case .manifestCreationFailed: return 118 + case .ipaNotFound: return 119 + case .invalidInfoPlist: return 120 + case .extractionFailed: return 121 + case .uploadFailed: return 124 + } + } + + public var message: String { + switch self { + case .ipaNotFound(let url): return "AppBox was not able to find IPA file at \(url.path)." + case .invalidInfoPlist: return "AppBox was not able to find Info.plist in your IPA." + case .extractionFailed(let error): return error.localizedDescription + case .manifestCreationFailed(let error): return error.localizedDescription + case .uploadFailed(let error): return error.localizedDescription + } + } +} + +/// Runs a build from a local IPA to a shareable install link: extract, read metadata, upload, and publish the manifest and install page. +public final class BuildUploadService { + + private let provider: StorageProvider + private let progress: ProgressReporter + private let shortLinkService: ShortLinkService? + private let reachability: Reachability? + private let archiveExtractor: ArchiveExtractor + private let fileSystem: FileSystem + private let dateProvider: DateProvider + + public init(provider: StorageProvider, + progress: ProgressReporter = NullProgressReporter(), + shortLinkService: ShortLinkService? = nil, + reachability: Reachability? = nil, + archiveExtractor: ArchiveExtractor = ZipFoundationArchiveExtractor(), + fileSystem: FileSystem = FileManagerFileSystem(), + dateProvider: DateProvider = SystemDateProvider()) { + self.provider = provider + self.progress = progress + self.shortLinkService = shortLinkService + self.reachability = reachability + self.archiveExtractor = archiveExtractor + self.fileSystem = fileSystem + self.dateProvider = dateProvider + } + + public func run(_ request: BuildUploadRequest) async throws -> BuildUploadOutcome { + let ipaURL = URL(fileURLWithPath: request.ipaURL.path) + guard fileSystem.fileExists(at: ipaURL) else { + throw BuildUploadError.ipaNotFound(ipaURL) + } + + let workingDirectory = try makeWorkingDirectory() + defer { try? FileManager.default.removeItem(at: workingDirectory) } + + progress.report(stage: .extracting, message: "Extracting files...", fractionCompleted: nil) + let extracted: ExtractedIPA + do { + extracted = try IPAExtractor(archiveExtractor: archiveExtractor) + .extract(ipaAt: ipaURL, to: workingDirectory) + } catch { + throw BuildUploadError.extractionFailed(error) + } + + guard let metadata = BuildMetadata.read(fromInfoPlistAt: extracted.infoPlistURL) else { + throw BuildUploadError.invalidInfoPlist + } + + let provisioning = extracted.mobileProvisionURL.map { + MobileProvisionParser.parse(contentsOf: $0, fileSystem: fileSystem) + } + let paths = BuildRemotePaths(metadata: metadata, uuid: request.uuid, + bundleDirectory: request.bundleDirectory, + keepSameLink: request.keepSameLink) + let sizeMB = ipaFileSizeMB(at: ipaURL) + + let entry = AppVersionInput( + name: metadata.name, version: metadata.version, build: metadata.build, + identifier: metadata.identifier, manifestLink: "", timestamp: 0, shareableIPALink: "", + includeIPALink: request.settings.includeIPALink, + includeDetails: request.settings.includeDetails, + minOSVersion: metadata.minimumOSVersion, supportedDevice: metadata.supportedDevice, + buildType: provisioning?.buildType, ipaFileSizeMB: sizeMB, + provisioningCreateDate: provisioning?.createDate, + provisioningExpirationDate: provisioning?.expirationDate, + teamId: provisioning?.teamId, teamName: provisioning?.teamName, + provisioningUUID: provisioning?.uuid, provisionedDevices: provisioning?.provisionedDevices) + + let plan = UploadPlan( + ipaLocalURL: ipaURL, workingDirectory: workingDirectory, + ipaRemotePath: paths.ipa, manifestRemotePath: paths.manifest, appInfoRemotePath: paths.appInfo, + name: metadata.name, version: metadata.version, build: metadata.build, + identifier: metadata.identifier, entryInput: entry, + keepSameLink: request.keepSameLink, + keepPreviousVersions: request.settings.keepPreviousVersions) + + let coordinator = UploadCoordinator(provider: provider, progress: progress, + dateProvider: dateProvider, + shortLinkService: shortLinkService, reachability: reachability) + do { + let result = try await coordinator.run(plan) + return BuildUploadOutcome(uuid: request.uuid, metadata: metadata, paths: paths, + provisioning: provisioning, ipaFileSizeMB: sizeMB, result: result) + } catch let error as UploadCoordinatorError { + if case .manifestCreationFailed(let underlying) = error { + throw BuildUploadError.manifestCreationFailed(underlying) + } + throw BuildUploadError.uploadFailed(error) + } catch { + throw BuildUploadError.uploadFailed(error) + } + } + + private func makeWorkingDirectory() throws -> URL { + try ABStorePaths.makeTemporaryWorkingDirectory(prefix: "upload-") + } + + private func ipaFileSizeMB(at url: URL) -> Int { + guard let attributes = try? FileManager.default.attributesOfItem(atPath: url.path), + let size = (attributes[.size] as? NSNumber)?.int64Value else { + return 0 + } + return Int(size / 1_000_000) + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/DeleteCoordinator.swift b/AppBoxCore/Sources/AppBoxCore/Upload/DeleteCoordinator.swift new file mode 100644 index 00000000..6eae1b69 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/DeleteCoordinator.swift @@ -0,0 +1,135 @@ +import Foundation + +/// Inputs for deleting one build, precomputed by the caller (provider-agnostic — no Dropbox/SDK types). +public struct DeletePlan { + /// Reuse one app-wide `appinfo.json` (remove just this version) vs. + public var keepSameLink: Bool + /// The shared app-level `appinfo.json` (only used when `keepSameLink`). + public var appInfoRemotePath: RemotePath + /// Identifies the version to remove: its `manifestLink` in `appinfo.json` (the record's shared manifest URL). + public var manifestLinkToRemove: String + /// The app's root folder — deleted when removing this version empties the history. + public var appFolderPath: RemotePath + /// This build's folder — deleted directly when `keepSameLink` is off. + public var buildFolderPath: RemotePath + /// A writable scratch directory for the downloaded/rewritten `appinfo.json`. + public var workingDirectory: URL + + public init(keepSameLink: Bool, appInfoRemotePath: RemotePath, manifestLinkToRemove: String, + appFolderPath: RemotePath, buildFolderPath: RemotePath, workingDirectory: URL) { + self.keepSameLink = keepSameLink + self.appInfoRemotePath = appInfoRemotePath + self.manifestLinkToRemove = manifestLinkToRemove + self.appFolderPath = appFolderPath + self.buildFolderPath = buildFolderPath + self.workingDirectory = workingDirectory + } +} + +/// What a delete did: removed a whole folder, or removed one version and re-uploaded `appinfo.json`. +public enum DeleteOutcome: Equatable { + case deletedFolder(RemotePath) + case updatedAppInfo +} + +/// The delete state machine, the counterpart to `UploadCoordinator`. +public final class DeleteCoordinator { + + private let provider: StorageProvider + private let progress: ProgressReporter + private let retry: ConnectivityAwareRetry + + public init(provider: StorageProvider, + progress: ProgressReporter = NullProgressReporter(), + maxRetries: Int = UploadRetryPolicy.maxRetryCount, + reachability: Reachability? = nil, + pollNanoseconds: UInt64 = 500_000_000) { + self.provider = provider + self.progress = progress + self.retry = ConnectivityAwareRetry(maxRetries: maxRetries, + reachability: reachability, + pollNanoseconds: pollNanoseconds) + } + + public func run(_ plan: DeletePlan) async throws -> DeleteOutcome { + progress.report(stage: .preparing, message: "Deleting…", fractionCompleted: nil) + + guard plan.keepSameLink else { + try await delete(plan.buildFolderPath) + progress.report(stage: .completed, message: nil, fractionCompleted: nil) + return .deletedFolder(plan.buildFolderPath) + } + + let appInfoURL = plan.workingDirectory.appendingPathComponent(UploadCoordinator.appInfoFilename) + guard let (file, revision) = try await downloadAppInfo(from: plan.appInfoRemotePath, to: appInfoURL) else { + progress.report(stage: .completed, message: nil, fractionCompleted: nil) + return .updatedAppInfo + } + + switch AppInfoJSON.removingVersion(withManifestLink: plan.manifestLinkToRemove, + from: file.versions, latestVersion: file.latestVersion) { + case .historyEmptied: + try await delete(plan.appFolderPath) + progress.report(stage: .completed, message: nil, fractionCompleted: nil) + return .deletedFolder(plan.appFolderPath) + case let .updated(versions, latestVersion): + var updated = file + updated.versions = versions + updated.latestVersion = latestVersion + try write(updated, to: appInfoURL) + try await upload(appInfoURL, to: plan.appInfoRemotePath, ifRevisionMatches: revision) + progress.report(stage: .completed, message: nil, fractionCompleted: nil) + return .updatedAppInfo + } + } + + // MARK: - Steps + + private func delete(_ remotePath: RemotePath) async throws { + progress.report(stage: .preparing, message: "Deleting…", fractionCompleted: nil) + try await withRetry { try await self.provider.delete(at: remotePath) } + } + + private func upload(_ localURL: URL, to remotePath: RemotePath, ifRevisionMatches precondition: String?) async throws { + progress.report(stage: .uploading, message: "Updating app records", fractionCompleted: nil) + try await withRetry { + _ = try await self.provider.upload(fileAt: localURL, to: remotePath, + ifRevisionMatches: precondition, progress: nil) + } + } + + /// Downloads + decodes the shared `appinfo.json` and the revision it was read at, or `nil` if the file no longer exists. + private func downloadAppInfo(from remotePath: RemotePath, to localURL: URL) async throws -> (AppInfoFile, String?)? { + progress.report(stage: .preparing, message: "Fetching app records", fractionCompleted: nil) + let revision: String? + do { + revision = try await withRetry { try await self.provider.downloadWithRevision(from: remotePath, to: localURL) } + } catch StorageError.notFound { + return nil + } + let data = try Data(contentsOf: localURL) + return (try JSONDecoder().decode(AppInfoFile.self, from: data), revision) + } + + private func write(_ file: AppInfoFile, to url: URL) throws { + let encoder = JSONEncoder() + encoder.outputFormatting = [.prettyPrinted] + try encoder.encode(file).write(to: url, options: .atomic) + } + + /// Retry a `StorageError` via `ConnectivityAwareRetry` (matches `UploadCoordinator`): bounded retries while online, pause-then-resume while offline, fail otherwise. + private func withRetry(_ operation: () async throws -> T) async throws -> T { + var attempts = 0 + while true { + try Task.checkCancellation() + do { + return try await operation() + } catch let error as StorageError { + switch try await retry.evaluate(error, attempts: attempts) { + case .retry(let counted): if counted { attempts += 1 } + case .fail: throw error + } + } + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/InstallLink.swift b/AppBoxCore/Sources/AppBoxCore/Upload/InstallLink.swift new file mode 100644 index 00000000..a376432c --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/InstallLink.swift @@ -0,0 +1,20 @@ +import Foundation + +/// Builds the AppBox install-page URL for a Dropbox `appinfo.json` share link. +public enum InstallLink { + public static let defaultBase = "https://web.getappbox.com" + + /// The install-page URL for a Dropbox share URL, or `nil` if `dropboxShareURL` isn't a dropbox.com link (caller should then keep whatever link it already has). + public static func make(fromDropboxShareURL dropboxShareURL: URL, base: String = defaultBase) -> URL? { + let absolute = dropboxShareURL.absoluteString + guard let range = absolute.range(of: "dropbox.com") else { return nil } + let sharePath = escapedForQueryValue(String(absolute[range.upperBound...])) + return URL(string: "\(base)?url=\(sharePath)") + } + + static func escapedForQueryValue(_ value: String) -> String { + value.replacingOccurrences(of: "%", with: "%25") + .replacingOccurrences(of: "&", with: "%26") + .replacingOccurrences(of: "#", with: "%23") + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/ManifestBuilder.swift b/AppBoxCore/Sources/AppBoxCore/Upload/ManifestBuilder.swift new file mode 100644 index 00000000..b8448c3d --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/ManifestBuilder.swift @@ -0,0 +1,51 @@ +import Foundation + +/// The OTA install `manifest.plist` structure (the `itms-services://?action=download-manifest` format). +public struct OTAManifest: Codable, Equatable { + public let items: [Item] + + public struct Item: Codable, Equatable { + public let assets: [Asset] + public let metadata: Metadata + } + + public struct Asset: Codable, Equatable { + public let kind: String + public let url: String + } + + public struct Metadata: Codable, Equatable { + public let kind: String + public let title: String + public let bundleIdentifier: String + public let bundleVersion: String + + enum CodingKeys: String, CodingKey { + case kind, title + case bundleIdentifier = "bundle-identifier" + case bundleVersion = "bundle-version" + } + } +} + +public enum ManifestBuilder { + + /// Builds the manifest for one build. + public static func make(ipaShareableURL: String, name: String, identifier: String, version: String) -> OTAManifest { + OTAManifest(items: [ + OTAManifest.Item( + assets: [OTAManifest.Asset(kind: "software-package", url: ipaShareableURL)], + metadata: OTAManifest.Metadata(kind: "software", title: name, + bundleIdentifier: identifier, bundleVersion: version) + ) + ]) + } + + /// XML-plist data for the manifest (what gets written to `manifest.plist` and uploaded). + public static func plistData(for manifest: OTAManifest) throws -> Data { + let encoder = PropertyListEncoder() + encoder.outputFormat = .xml + return try encoder.encode(manifest) + } +} + diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/ResumableUploader.swift b/AppBoxCore/Sources/AppBoxCore/Upload/ResumableUploader.swift new file mode 100644 index 00000000..497b852b --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/ResumableUploader.swift @@ -0,0 +1,200 @@ +import Foundation + +// MARK: - Seams + +/// Source of file bytes for a resumable upload. +public protocol ChunkSource { + var totalSize: Int { get } + /// Read up to `maxLength` bytes starting at `offset`; fewer (or empty) at EOF. + func read(at offset: Int, maxLength: Int) throws -> Data + func close() +} + +/// A `ChunkSource` backed by a file on disk (never loads the whole file into memory). +public final class FileChunkSource: ChunkSource { + private let handle: FileHandle + public let totalSize: Int + + public init?(path: String) { + guard let handle = FileHandle(forReadingAtPath: path) else { return nil } + guard let size = (try? FileManager.default.attributesOfItem(atPath: path))?[.size] as? Int else { + try? handle.close() + return nil + } + self.handle = handle + self.totalSize = size + } + + public func read(at offset: Int, maxLength: Int) throws -> Data { + try handle.seek(toOffset: UInt64(offset)) + return try handle.read(upToCount: maxLength) ?? Data() + } + + public func close() { try? handle.close() } +} + +/// Outcome of opening an upload session. +public enum SessionStartResult { + case started(sessionID: String) + case failure(StorageError) +} + +/// Outcome of committing one chunk (append or finish). +public enum ChunkResult { + case committed + /// The server's committed offset differs from ours — resync to `expectedOffset` and continue. + case incorrectOffset(expectedOffset: Int) + case failure(StorageError) +} + +/// Provider-agnostic upload-session primitives (Dropbox: uploadSessionStart/AppendV2/Finish). +public protocol ChunkUploadSession { + func start(data: Data, progress: @escaping (Int) -> Void) async -> SessionStartResult + func append(sessionID: String, offset: Int, data: Data, progress: @escaping (Int) -> Void) async -> ChunkResult + func finish(sessionID: String, offset: Int, data: Data, progress: @escaping (Int) -> Void) async -> ChunkResult +} + +// MARK: - Connectivity-aware retry + +/// Shared retry decision for the upload pipeline (used by both `ResumableUploader` and `UploadCoordinator`). +struct ConnectivityAwareRetry { + let maxRetries: Int + let reachability: Reachability? + let pollNanoseconds: UInt64 + + enum Outcome { case retry(counted: Bool); case fail } + + /// Throws `CancellationError` when the surrounding task is cancelled — every wait in here uses `try await Task.sleep`, so a cancelled upload aborts instead of busy-waiting the poll loop. + func evaluate(_ error: StorageError, attempts: Int) async throws -> Outcome { + let kind = UploadFailureKind(error) + + if kind == .connectivity, reachability != nil { + try await Task.sleep(nanoseconds: pollNanoseconds) + } + + switch UploadRetryPolicy.decide(failure: kind, + retryCount: attempts, + isConnected: reachability?.isConnected ?? true, + maxRetryCount: maxRetries) { + case .pauseUntilOnline: + try await waitUntilConnected() + return .retry(counted: false) + case .retry: + if case .rateLimited(let retryAfter) = error { + try await Task.sleep(nanoseconds: UInt64(min(max(retryAfter ?? 1, 1), 60)) * 1_000_000_000) + } else if kind == .retryableServer { + try await Task.sleep(nanoseconds: pollNanoseconds * UInt64(attempts + 1)) + } + return .retry(counted: true) + case .fail: + return .fail + } + } + + private func waitUntilConnected() async throws { + guard let reachability else { return } + while !reachability.isConnected { + try await Task.sleep(nanoseconds: pollNanoseconds) + } + } +} + +// MARK: - Driver + +/// Drives an upload session chunk by chunk with **mid-session resume**: a transient (`isRetryable`) failure retries the *same* chunk in place (no full restart), and a server `incorrectOffset` resyncs to the server's committed offset and continues. +public struct ResumableUploader { + public let chunkSize: Int + public let maxRetriesPerChunk: Int + /// Safety cap on `incorrectOffset` resyncs so a misbehaving server can't loop us forever. + public let maxResyncs: Int + private let retry: ConnectivityAwareRetry + + public init(chunkSize: Int, + maxRetriesPerChunk: Int = UploadRetryPolicy.maxRetryCount, + maxResyncs: Int = 16, + reachability: Reachability? = nil, + pollNanoseconds: UInt64 = 500_000_000) { + self.chunkSize = max(chunkSize, 1) + self.maxRetriesPerChunk = maxRetriesPerChunk + self.maxResyncs = maxResyncs + self.retry = ConnectivityAwareRetry(maxRetries: maxRetriesPerChunk, + reachability: reachability, + pollNanoseconds: pollNanoseconds) + } + + public func upload(source: ChunkSource, session: ChunkUploadSession, progress: ((Double) -> Void)? = nil) async throws { + defer { source.close() } + let total = source.totalSize + func report(committed: Int, inChunk: Int) { + guard total > 0 else { return } + progress?(min(Double(committed + inChunk) / Double(total), 1.0)) + } + + let firstChunk = try source.read(at: 0, maxLength: chunkSize) + let sessionID = try await startWithRetry(session, data: firstChunk) { report(committed: 0, inChunk: $0) } + var offset = firstChunk.count + report(committed: offset, inChunk: 0) + + var resyncs = 0 + while true { + let chunk = try source.read(at: offset, maxLength: chunkSize) + let isLast = offset + chunk.count >= total + switch try await commitChunk(session, sessionID: sessionID, offset: offset, data: chunk, isLast: isLast, + progress: { report(committed: offset, inChunk: $0) }) { + case .advanced: + offset += chunk.count + report(committed: offset, inChunk: 0) + if isLast { return } + case .resync(let expected): + resyncs += 1 + if resyncs > maxResyncs { + throw StorageError.unknown("Upload could not resync after \(maxResyncs) attempts") + } + offset = expected + } + } + } + + // MARK: Private + + private enum ChunkProgress { case advanced; case resync(Int) } + + private func startWithRetry(_ session: ChunkUploadSession, data: Data, + progress: @escaping (Int) -> Void) async throws -> String { + var attempts = 0 + while true { + try Task.checkCancellation() + switch await session.start(data: data, progress: progress) { + case .started(let sessionID): + return sessionID + case .failure(let error): + switch try await retry.evaluate(error, attempts: attempts) { + case .retry(let counted): if counted { attempts += 1 } + case .fail: throw error + } + } + } + } + + private func commitChunk(_ session: ChunkUploadSession, sessionID: String, offset: Int, data: Data, + isLast: Bool, progress: @escaping (Int) -> Void) async throws -> ChunkProgress { + var attempts = 0 + while true { + try Task.checkCancellation() + let result = isLast + ? await session.finish(sessionID: sessionID, offset: offset, data: data, progress: progress) + : await session.append(sessionID: sessionID, offset: offset, data: data, progress: progress) + switch result { + case .committed: + return .advanced + case .incorrectOffset(let expected): + return .resync(expected) + case .failure(let error): + switch try await retry.evaluate(error, attempts: attempts) { + case .retry(let counted): if counted { attempts += 1 } + case .fail: throw error + } + } + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/UploadCoordinator.swift b/AppBoxCore/Sources/AppBoxCore/Upload/UploadCoordinator.swift new file mode 100644 index 00000000..78f1f8ec --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/UploadCoordinator.swift @@ -0,0 +1,232 @@ +import Foundation + +/// Inputs for one upload, precomputed by the caller (provider-agnostic — no Dropbox/SDK types). +public struct UploadPlan { + /// The extracted `.ipa` on disk. + public var ipaLocalURL: URL + /// A writable per-upload directory for the generated `manifest.plist` / `appinfo.json`. + public var workingDirectory: URL + + public var ipaRemotePath: RemotePath + public var manifestRemotePath: RemotePath + public var appInfoRemotePath: RemotePath + + public var name: String + public var version: String + public var build: String + public var identifier: String + + /// The version-entry inputs. + public var entryInput: AppVersionInput + + /// Reuse one app-wide `appinfo.json` (and keep history) vs. + public var keepSameLink: Bool + /// Keep older versions in the history, or reset to just this build. + public var keepPreviousVersions: Bool + + public init(ipaLocalURL: URL, workingDirectory: URL, + ipaRemotePath: RemotePath, manifestRemotePath: RemotePath, appInfoRemotePath: RemotePath, + name: String, version: String, build: String, identifier: String, + entryInput: AppVersionInput, keepSameLink: Bool, keepPreviousVersions: Bool) { + self.ipaLocalURL = ipaLocalURL + self.workingDirectory = workingDirectory + self.ipaRemotePath = ipaRemotePath + self.manifestRemotePath = manifestRemotePath + self.appInfoRemotePath = appInfoRemotePath + self.name = name + self.version = version + self.build = build + self.identifier = identifier + self.entryInput = entryInput + self.keepSameLink = keepSameLink + self.keepPreviousVersions = keepPreviousVersions + } +} + +/// The shareable links produced by a successful upload. +public struct UploadResult: Equatable, Sendable { + public var ipaLink: URL + public var manifestLink: URL + /// The Dropbox shared link for `appinfo.json` (the canonical file location). + public var appInfoSharedLink: URL + /// The AppBox install-page URL (`web.getappbox.com?url=…`) that the short link resolves to — the fallback shown to the user when the shortener is unavailable. + public var installLink: URL + /// The `appbox.me/xxxx` short link, or `installLink` when the shortener was unavailable. + public var shortLink: URL +} + +/// Coordinator failures that aren't provider `StorageError`s. +public enum UploadCoordinatorError: Error { + case manifestCreationFailed(underlying: Error) +} + +/// The on-disk / uploaded `appinfo.json` (the per-app "unique link" file). +struct AppInfoFile: Codable, Equatable { + var latestVersion: AppVersionEntry? + var versions: [AppVersionEntry] + var uniqueLinkShared: String? + var uniqueLinkShort: String? + + init(latestVersion: AppVersionEntry? = nil, versions: [AppVersionEntry] = [], + uniqueLinkShared: String? = nil, uniqueLinkShort: String? = nil) { + self.latestVersion = latestVersion + self.versions = versions + self.uniqueLinkShared = uniqueLinkShared + self.uniqueLinkShort = uniqueLinkShort + } +} + +extension AppInfoFile { + /// Tolerant decoding: legacy / hand-edited `appinfo.json` files may lack `versions` entirely (the ObjC reader used plain NSDictionary lookups and shrugged). + init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + latestVersion = try container.decodeIfPresent(AppVersionEntry.self, forKey: .latestVersion) + versions = try container.decodeIfPresent([AppVersionEntry].self, forKey: .versions) ?? [] + uniqueLinkShared = try container.decodeIfPresent(String.self, forKey: .uniqueLinkShared) + uniqueLinkShort = try container.decodeIfPresent(String.self, forKey: .uniqueLinkShort) + } +} + +/// The upload happy-path state machine. +public final class UploadCoordinator { + + public static let appInfoFilename = "appinfo.json" + public static let manifestFilename = "manifest.plist" + + private let provider: StorageProvider + private let progress: ProgressReporter + private let dateProvider: DateProvider + private let shortLinkService: ShortLinkService? + private let retry: ConnectivityAwareRetry + + public init(provider: StorageProvider, + progress: ProgressReporter = NullProgressReporter(), + dateProvider: DateProvider = SystemDateProvider(), + shortLinkService: ShortLinkService? = nil, + maxRetries: Int = UploadRetryPolicy.maxRetryCount, + reachability: Reachability? = nil, + pollNanoseconds: UInt64 = 500_000_000) { + self.provider = provider + self.progress = progress + self.dateProvider = dateProvider + self.shortLinkService = shortLinkService + self.retry = ConnectivityAwareRetry(maxRetries: maxRetries, + reachability: reachability, + pollNanoseconds: pollNanoseconds) + } + + public func run(_ plan: UploadPlan) async throws -> UploadResult { + progress.report(stage: .preparing, message: "Preparing…", fractionCompleted: nil) + + try await upload(plan.ipaLocalURL, to: plan.ipaRemotePath, message: "Uploading IPA", reportsProgress: true) + let ipaLink = try await createLink(for: plan.ipaRemotePath, message: "Creating Sharable Link for IPA") + + let manifest = ManifestBuilder.make(ipaShareableURL: ipaLink.url.absoluteString, + name: plan.name, identifier: plan.identifier, version: plan.version) + let manifestURL = plan.workingDirectory.appendingPathComponent(Self.manifestFilename) + do { + try ManifestBuilder.plistData(for: manifest).write(to: manifestURL, options: .atomic) + } catch { + throw UploadCoordinatorError.manifestCreationFailed(underlying: error) + } + try await upload(manifestURL, to: plan.manifestRemotePath, message: "Uploading Manifest") + let manifestLink = try await createLink(for: plan.manifestRemotePath, message: "Creating Sharable Link for Manifest") + + var entryInput = plan.entryInput + entryInput.manifestLink = manifestLink.url.absoluteString + entryInput.shareableIPALink = ipaLink.url.absoluteString + entryInput.timestamp = dateProvider.now().timeIntervalSince1970 + let entry = AppInfoJSON.makeEntry(entryInput) + + var history: [AppVersionEntry] = [] + var appInfoRevision: String? + if plan.keepSameLink { + (history, appInfoRevision) = try await loadExistingHistory(plan) + } + let versions = AppInfoJSON.updatedHistory(history, adding: entry, keepPreviousVersions: plan.keepPreviousVersions) + + var file = AppInfoFile(latestVersion: entry, versions: versions) + let appInfoURL = plan.workingDirectory.appendingPathComponent(Self.appInfoFilename) + try write(file, to: appInfoURL) + appInfoRevision = try await upload(appInfoURL, to: plan.appInfoRemotePath, message: "Uploading AppInfo", + ifRevisionMatches: appInfoRevision) + + let appInfoShared = try await createLink(for: plan.appInfoRemotePath, message: "Creating Sharable Link for AppInfo") + let installLink = InstallLink.make(fromDropboxShareURL: appInfoShared.url) ?? appInfoShared.url + let shortURL = await shortenedLink(for: plan, shortenURL: appInfoShared.url, fallback: installLink) + + file.uniqueLinkShared = appInfoShared.url.absoluteString + file.uniqueLinkShort = shortURL.absoluteString + try write(file, to: appInfoURL) + try await upload(appInfoURL, to: plan.appInfoRemotePath, message: "Uploading AppInfo", + ifRevisionMatches: appInfoRevision) + + progress.report(stage: .completed, message: "Finalising…", fractionCompleted: nil) + return UploadResult(ipaLink: ipaLink.url, manifestLink: manifestLink.url, + appInfoSharedLink: appInfoShared.url, installLink: installLink, shortLink: shortURL) + } + + // MARK: - Steps + + /// Returns the uploaded file's new revision (nil if the provider doesn't surface one), so a follow-up upload of the same file can be preconditioned on it. + @discardableResult + private func upload(_ localURL: URL, to remotePath: RemotePath, message: String, + reportsProgress: Bool = false, ifRevisionMatches precondition: String? = nil) async throws -> String? { + progress.report(stage: .uploading, message: message, fractionCompleted: nil) + return try await withRetry { + let reporter: ((Double) -> Void)? = reportsProgress ? { fraction in + self.progress.report(stage: .uploading, message: message, fractionCompleted: fraction) + } : nil + return try await self.provider.upload(fileAt: localURL, to: remotePath, + ifRevisionMatches: precondition, progress: reporter) + } + } + + private func createLink(for remotePath: RemotePath, message: String) async throws -> ShareableLink { + progress.report(stage: .creatingLink, message: message, fractionCompleted: nil) + return try await withRetry { try await self.provider.createShareableLink(for: remotePath) } + } + + /// Shorten `shortenURL` (the Dropbox appinfo link the service knows how to wrap), returning the short link — or `fallback` (the install-page URL) when the shortener is unavailable. + private func shortenedLink(for plan: UploadPlan, shortenURL: URL, fallback: URL) async -> URL { + guard let service = shortLinkService else { return fallback } + let request = ShortLinkRequest(name: plan.name, version: plan.version, build: plan.build, + identifier: plan.identifier, longURL: shortenURL) + return await service.shortLink(for: request) ?? fallback + } + + /// The existing shared history plus the revision it was read at (the precondition for the re-upload). + private func loadExistingHistory(_ plan: UploadPlan) async throws -> ([AppVersionEntry], String?) { + let temp = plan.workingDirectory.appendingPathComponent("existing-\(Self.appInfoFilename)") + let revision: String? + do { + revision = try await withRetry { try await self.provider.downloadWithRevision(from: plan.appInfoRemotePath, to: temp) } + } catch StorageError.notFound { + return ([], nil) + } + let data = try Data(contentsOf: temp) + return ((try? JSONDecoder().decode(AppInfoFile.self, from: data).versions) ?? [], revision) + } + + private func write(_ file: AppInfoFile, to url: URL) throws { + let encoder = JSONEncoder() + encoder.outputFormatting = [.prettyPrinted] + try encoder.encode(file).write(to: url, options: .atomic) + } + + /// Retry a `StorageError` via `ConnectivityAwareRetry`: bounded retries while online, pause-then- resume while offline, fail otherwise. + private func withRetry(_ operation: () async throws -> T) async throws -> T { + var attempts = 0 + while true { + try Task.checkCancellation() + do { + return try await operation() + } catch let error as StorageError { + switch try await retry.evaluate(error, attempts: attempts) { + case .retry(let counted): if counted { attempts += 1 } + case .fail: throw error + } + } + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/UploadRetryPolicy.swift b/AppBoxCore/Sources/AppBoxCore/Upload/UploadRetryPolicy.swift new file mode 100644 index 00000000..8b6c5694 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/UploadRetryPolicy.swift @@ -0,0 +1,86 @@ +import Foundation + +/// What to do after an upload chunk/request fails. +public enum RetryDecision: Equatable { + /// Retry now (the caller increments the retry count). + case retry + /// The network path is down — stop and resume when connectivity returns. + case pauseUntilOnline + /// Give up and surface the error. + case fail +} + +/// Provider-agnostic classification of an upload failure, so the retry rule doesn't depend on a specific SDK's error type. +public enum UploadFailureKind: Equatable { + /// The network path is unavailable (e.g. + case connectivity + /// A transient server/client-side error that's worth retrying while online (maps the old `DBRequestErrorClient` / `DBRequestErrorInternalServer`, rate limits, 5xx). + case retryableServer + /// Anything else — not retryable (auth, route/validation errors, …). + case other +} + +/// Pure retry-decision logic. +public enum UploadRetryPolicy { + + /// Mirrors `abOnErrorMaxRetryCount`. + public static let maxRetryCount = 3 + + /// Decide what to do given the failure, how many retries have already happened, and whether the network is currently reachable. + public static func decide(failure: UploadFailureKind?, + retryCount: Int, + isConnected: Bool, + maxRetryCount: Int = maxRetryCount) -> RetryDecision { + guard let failure else { return .fail } + + if failure == .connectivity && !isConnected { + return .pauseUntilOnline + } + + if retryCount < maxRetryCount && isConnected && + (failure == .connectivity || failure == .retryableServer) { + return .retry + } + + return .fail + } + + /// NSURLError codes meaning the network path is unavailable (mirror of the old `+isConnectivityError:`). + public static func isConnectivityError(_ error: Error?) -> Bool { + guard let error else { return false } + let nsError = error as NSError + guard nsError.domain == NSURLErrorDomain else { return false } + let connectivityCodes: Set = [ + NSURLErrorNotConnectedToInternet, + NSURLErrorNetworkConnectionLost, + NSURLErrorCannotConnectToHost, + NSURLErrorCannotFindHost, + NSURLErrorDNSLookupFailed, + NSURLErrorTimedOut, + NSURLErrorDataNotAllowed, + NSURLErrorInternationalRoamingOff + ] + return connectivityCodes.contains(nsError.code) + } +} + +public enum ABUploadFailureKind: Int { + case none = 0 + case connectivity = 1 + case retryableServer = 2 + case other = 3 +} + +public extension UploadFailureKind { + /// Classify a `StorageError` for the retry policy (used once the pipeline runs on `StorageProvider`): transient transport → connectivity; server/rate-limit → retryableServer; everything else → other. + init(_ storageError: StorageError) { + switch storageError { + case .network: + self = .connectivity + case .server, .rateLimited: + self = .retryableServer + case .notAuthenticated, .authenticationFailed, .notFound, .conflict, .cancelled, .unknown: + self = .other + } + } +} diff --git a/AppBoxCore/Sources/AppBoxCore/Upload/UploadSettings.swift b/AppBoxCore/Sources/AppBoxCore/Upload/UploadSettings.swift new file mode 100644 index 00000000..a73bc407 --- /dev/null +++ b/AppBoxCore/Sources/AppBoxCore/Upload/UploadSettings.swift @@ -0,0 +1,50 @@ +// +// UploadSettings.swift +// AppBoxCore +// + +import Foundation + +/// The preferences an upload needs, injected so Core doesn't reach into the GUI's defaults. +public struct UploadSettings: Equatable, Sendable { + /// Default chunk size + public static let defaultChunkSizeMB = 100 + /// Dropbox upload chunk size, in megabytes. + public var chunkSizeMB: Int + /// Include the raw IPA link on the install page. + public var includeIPALink: Bool + /// Include the expanded build details on the install page. + public var includeDetails: Bool + /// Keep earlier versions listed in `appinfo.json`. + public var keepPreviousVersions: Bool + + public init(chunkSizeMB: Int = UploadSettings.defaultChunkSizeMB, + includeIPALink: Bool = false, + includeDetails: Bool = false, + keepPreviousVersions: Bool = true) { + self.chunkSizeMB = chunkSizeMB + self.includeIPALink = includeIPALink + self.includeDetails = includeDetails + self.keepPreviousVersions = keepPreviousVersions + } + + public var chunkSizeBytes: Int { chunkSizeMB * 1024 * 1024 } +} + +/// The share destinations an upload should fan out to once the build is live. +public struct BuildShareOptions: Equatable, Sendable { + public var emails: [String] + public var personalMessage: String? + public var slackWebhook: String? + public var msTeamsWebhook: String? + + public init(emails: [String] = [], personalMessage: String? = nil, + slackWebhook: String? = nil, msTeamsWebhook: String? = nil) { + self.emails = emails + self.personalMessage = personalMessage + self.slackWebhook = slackWebhook + self.msTeamsWebhook = msTeamsWebhook + } + + public var hasEmailRecipients: Bool { !emails.isEmpty } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/AdapterTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/AdapterTests.swift new file mode 100644 index 00000000..2930eae5 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/AdapterTests.swift @@ -0,0 +1,66 @@ +import XCTest +@testable import AppBoxCore + +final class AdapterTests: XCTestCase { + + func testUserDefaultsStore_roundTripAndRemove() throws { + let suiteName = "AppBoxCoreTests-\(UUID().uuidString)" + let defaults = try XCTUnwrap(UserDefaults(suiteName: suiteName)) + defer { defaults.removePersistentDomain(forName: suiteName) } + let store = UserDefaultsKeyValueStore(defaults: defaults) + + store.set("hello", forKey: "greeting") + store.set(true, forKey: "flag") + store.set(42, forKey: "count") + + XCTAssertEqual(store.string(forKey: "greeting"), "hello") + XCTAssertTrue(store.bool(forKey: "flag")) + XCTAssertEqual(store.integer(forKey: "count"), 42) + + store.removeObject(forKey: "greeting") + XCTAssertNil(store.string(forKey: "greeting")) + } + + func testFileSystem_uniqueDirectoryIsOwnerOnly() throws { + let fs = FileManagerFileSystem() + let dir = try fs.createUniqueDirectory(permissions: 0o700) + defer { try? fs.removeItem(at: dir) } + + XCTAssertTrue(fs.fileExists(at: dir)) + XCTAssertEqual(try fs.attributes(of: dir).posixPermissions, 0o700) + } + + func testFileSystem_uniqueDirectoriesDiffer() throws { + let fs = FileManagerFileSystem() + let a = try fs.createUniqueDirectory() + let b = try fs.createUniqueDirectory() + defer { try? fs.removeItem(at: a); try? fs.removeItem(at: b) } + XCTAssertNotEqual(a, b) + } + + func testFileSystem_writeReadAndChunkedRead() throws { + let fs = FileManagerFileSystem() + let dir = try fs.createUniqueDirectory() + defer { try? fs.removeItem(at: dir) } + let file = dir.appendingPathComponent("data.bin") + let payload = Data((0..<10).map { UInt8($0) }) + try fs.write(payload, to: file) + + XCTAssertEqual(try fs.read(contentsOf: file), payload) + XCTAssertEqual(try fs.attributes(of: file).size, 10) + + let handle = try fs.openForReading(file) + defer { try? handle.close() } + XCTAssertEqual(Array(try handle.read(upToCount: 4)), [0, 1, 2, 3]) + try handle.seek(toOffset: 8) + XCTAssertEqual(Array(try handle.read(upToCount: 100)), [8, 9]) + } + + func testSystemDateProvider_returnsCurrentTime() { + let before = Date() + let now = SystemDateProvider().now() + let after = Date() + XCTAssertGreaterThanOrEqual(now, before) + XCTAssertLessThanOrEqual(now, after) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/AppBoxServiceClientTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/AppBoxServiceClientTests.swift new file mode 100644 index 00000000..503ed2a6 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/AppBoxServiceClientTests.swift @@ -0,0 +1,208 @@ +import XCTest +@testable import AppBoxCore + +final class AppBoxServiceClientTests: XCTestCase { + + private let configuration = AppBoxServiceConfiguration( + baseURL: URL(string: "https://api.test.local/api/v1")!, + clientToken: "test-token") + + private func makeClient(responder: @escaping (HTTPRequest) throws -> HTTPResponse, + token: String? = "dropbox-token") -> (AppBoxServiceClient, StubHTTPClient) { + let http = StubHTTPClient(responder: responder) + let client = AppBoxServiceClient(configuration: configuration, httpClient: http, + tokenProvider: StubTokenProvider(token: token)) + return (client, http) + } + + private func json(_ string: String, status: Int = 200) -> HTTPResponse { + HTTPResponse(statusCode: status, data: Data(string.utf8)) + } + + // MARK: - fetchDropboxAppKey + + func testFetchDropboxAppKey_sendsClientTokenAndDecodesKey() async throws { + let (client, http) = makeClient(responder: { _ in self.json(#"{"dropboxAppKey":"key123"}"#) }) + let key = try await client.fetchDropboxAppKey() + + XCTAssertEqual(key, "key123") + let request = try XCTUnwrap(http.sentRequests.first) + XCTAssertEqual(request.url.absoluteString, "https://api.test.local/api/v1/config") + XCTAssertEqual(request.method, .get) + XCTAssertEqual(request.headers["X-AppBox-Client-Token"], "test-token") + XCTAssertNil(request.headers["Authorization"]) + } + + func testFetchDropboxAppKey_401ThrowsNotAuthenticated() async { + let (client, _) = makeClient(responder: { _ in + self.json(#"{"error":{"code":"invalid_client_token","message":"nope"}}"#, status: 401) + }) + do { + _ = try await client.fetchDropboxAppKey() + XCTFail("expected notAuthenticated") + } catch AppBoxServiceError.notAuthenticated { + } catch { + XCTFail("unexpected error: \(error)") + } + } + + // MARK: - shortLink (ShortLinkService) + + private var shortLinkRequest: ShortLinkRequest { + ShortLinkRequest(name: "App", version: "1.0", build: "7", identifier: "com.x.y", + longURL: URL(string: "https://www.dropbox.com/scl/fi/x/appinfo.json?rlkey=1")!) + } + + func testShortLink_sendsBothAuthHeadersAndFieldNames() async throws { + let (client, http) = makeClient(responder: { _ in self.json(#"{"shortURL":"https://appbox.me/x1"}"#) }) + let url = await client.shortLink(for: shortLinkRequest) + + XCTAssertEqual(url?.absoluteString, "https://appbox.me/x1") + let request = try XCTUnwrap(http.sentRequests.first) + XCTAssertEqual(request.url.absoluteString, "https://api.test.local/api/v1/shorten") + XCTAssertEqual(request.headers["X-AppBox-Client-Token"], "test-token") + XCTAssertEqual(request.headers["Authorization"], "Bearer dropbox-token") + XCTAssertEqual(request.headers["Content-Type"], "application/json") + let body = try JSONSerialization.jsonObject(with: XCTUnwrap(request.body)) as? [String: Any] + XCTAssertEqual(body?["url"] as? String, "https://www.dropbox.com/scl/fi/x/appinfo.json?rlkey=1") + XCTAssertEqual(body?["identifier"] as? String, "com.x.y") + XCTAssertEqual(Set((body ?? [:]).keys), ["url", "name", "version", "build", "identifier"]) + } + + func testShortLink_failuresFallBackToNil() async { + let (failing, _) = makeClient(responder: { _ in self.json(#"{"error":{"code":"shortener_unavailable","message":"x"}}"#, status: 502) }) + let failed = await failing.shortLink(for: shortLinkRequest) + XCTAssertNil(failed) + + struct Boom: Error {} + let (throwing, _) = makeClient(responder: { _ in throw Boom() }) + let thrown = await throwing.shortLink(for: shortLinkRequest) + XCTAssertNil(thrown) + + let (loggedOut, http) = makeClient(responder: { _ in self.json("{}") }, token: nil) + let skipped = await loggedOut.shortLink(for: shortLinkRequest) + XCTAssertNil(skipped) + XCTAssertTrue(http.sentRequests.isEmpty) + } + + // MARK: - sendBuildEmail + + private var email: BuildEmailRequest { + BuildEmailRequest(name: "App", version: "1.0", build: "7", to: ["a@b.com", "c@d.io"], + installURL: URL(string: "https://appbox.me/x1")!, personalMessage: "Hi QA") + } + + func testSendBuildEmail_sendsPayloadAndSucceeds() async throws { + let (client, http) = makeClient(responder: { _ in self.json(#"{"id":""}"#) }) + try await client.sendBuildEmail(email) + + let request = try XCTUnwrap(http.sentRequests.first) + XCTAssertEqual(request.url.absoluteString, "https://api.test.local/api/v1/mail/send") + XCTAssertEqual(request.headers["Authorization"], "Bearer dropbox-token") + let body = try JSONSerialization.jsonObject(with: XCTUnwrap(request.body)) as? [String: Any] + XCTAssertEqual(body?["to"] as? [String], ["a@b.com", "c@d.io"]) + XCTAssertEqual(body?["installURL"] as? String, "https://appbox.me/x1") + XCTAssertEqual(body?["personalMessage"] as? String, "Hi QA") + } + + func testSendBuildEmail_loggedOutThrowsNotAuthenticated() async { + let (client, http) = makeClient(responder: { _ in self.json("{}") }, token: nil) + do { + try await client.sendBuildEmail(email) + XCTFail("expected notAuthenticated") + } catch AppBoxServiceError.notAuthenticated { + XCTAssertTrue(http.sentRequests.isEmpty) + } catch { + XCTFail("unexpected error: \(error)") + } + } + + // MARK: - fetchLatestVersion + + func testFetchLatestVersion_clientTokenOnlyAndDecodes() async throws { + let (client, http) = makeClient(responder: { _ in + self.json(#"{"version":"3.8.0","downloadURL":"https://github.com/x/releases/tag/3.8.0","homebrewVersion":"3.7.9"}"#) + }) + let latest = try await client.fetchLatestVersion() + + XCTAssertEqual(latest.version, "3.8.0") + XCTAssertEqual(latest.downloadURL?.absoluteString, "https://github.com/x/releases/tag/3.8.0") + XCTAssertEqual(latest.homebrewVersion, "3.7.9") + let request = try XCTUnwrap(http.sentRequests.first) + XCTAssertEqual(request.url.absoluteString, "https://api.test.local/api/v1/latest-version") + XCTAssertEqual(request.method, .get) + XCTAssertEqual(request.headers["X-AppBox-Client-Token"], "test-token") + XCTAssertNil(request.headers["Authorization"]) + } + + func testFetchLatestVersion_serverErrorThrows() async { + let (client, _) = makeClient(responder: { _ in + self.json(#"{"error":{"code":"update_check_unavailable","message":"down"}}"#, status: 502) + }) + do { + _ = try await client.fetchLatestVersion() + XCTFail("expected invalidResponse") + } catch AppBoxServiceError.invalidResponse(let status, _) { + XCTAssertEqual(status, 502) + } catch { + XCTFail("unexpected error: \(error)") + } + } + + // MARK: - sendNotification + + func testSendNotification_sendsServiceWebhookAndText() async throws { + let (client, http) = makeClient(responder: { _ in self.json("{}") }) + try await client.sendNotification(service: .slack, + webhookURL: "https://hooks.slack.com/services/x", text: "hello") + + let request = try XCTUnwrap(http.sentRequests.first) + XCTAssertEqual(request.url.absoluteString, "https://api.test.local/api/v1/notify") + XCTAssertEqual(request.headers["Authorization"], "Bearer dropbox-token") + let body = try JSONSerialization.jsonObject(with: XCTUnwrap(request.body)) as? [String: Any] + XCTAssertEqual(body?["service"] as? String, "slack") + XCTAssertEqual(body?["webhookURL"] as? String, "https://hooks.slack.com/services/x") + XCTAssertEqual(body?["text"] as? String, "hello") + } + + func testSendNotification_loggedOutThrowsWithoutRequest() async { + let (client, http) = makeClient(responder: { _ in self.json("{}") }, token: nil) + do { + try await client.sendNotification(service: .teams, webhookURL: "https://acme.webhook.office.com/x", text: "hi") + XCTFail("expected notAuthenticated") + } catch AppBoxServiceError.notAuthenticated { + XCTAssertTrue(http.sentRequests.isEmpty) + } catch { + XCTFail("unexpected error: \(error)") + } + } + + func testSendNotification_serverFailureThrows() async { + let (client, _) = makeClient(responder: { _ in + self.json(#"{"error":{"code":"notify_failed","message":"down"}}"#, status: 502) + }) + do { + try await client.sendNotification(service: .slack, webhookURL: "https://hooks.slack.com/services/x", text: "x") + XCTFail("expected invalidResponse") + } catch AppBoxServiceError.invalidResponse(let status, _) { + XCTAssertEqual(status, 502) + } catch { + XCTFail("unexpected error: \(error)") + } + } + + func testSendBuildEmail_providerFailureSurfacesStatusAndMessage() async { + let (client, _) = makeClient(responder: { _ in + self.json(#"{"error":{"code":"mail_provider_error","message":"Mail provider responded 500."}}"#, status: 502) + }) + do { + try await client.sendBuildEmail(email) + XCTFail("expected invalidResponse") + } catch let AppBoxServiceError.invalidResponse(status, message) { + XCTAssertEqual(status, 502) + XCTAssertEqual(message, "Mail provider responded 500.") + } catch { + XCTFail("unexpected error: \(error)") + } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/AppInfoJSONTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/AppInfoJSONTests.swift new file mode 100644 index 00000000..a622861b --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/AppInfoJSONTests.swift @@ -0,0 +1,144 @@ +import XCTest +@testable import AppBoxCore + +final class DeviceUDIDMaskerTests: XCTestCase { + + func testLongUDID_masksMiddle() { + let udid = String(repeating: "A", count: 40) + let masked = DeviceUDIDMasker.mask(udid) + XCTAssertEqual(masked, String(repeating: "A", count: 10) + "....." + String(repeating: "A", count: 10)) + } + + func testMediumUDID_masksShorterMiddle() { + let udid = String(repeating: "B", count: 25) // 21...30 + let masked = DeviceUDIDMasker.mask(udid) + XCTAssertEqual(masked, String(repeating: "B", count: 8) + "....." + String(repeating: "B", count: 12)) + } + + func testShortUDID_dropped() { + XCTAssertNil(DeviceUDIDMasker.mask(String(repeating: "C", count: 20))) + } +} + +final class AppInfoJSONTests: XCTestCase { + + private func baseInput(includeIPALink: Bool, includeDetails: Bool) -> AppVersionInput { + AppVersionInput(name: "AppBox", version: "4.2.0", build: "200", identifier: "com.x.app", + manifestLink: "https://m/manifest.plist", timestamp: 1_700_000_000, + shareableIPALink: "https://m/app.ipa", + includeIPALink: includeIPALink, includeDetails: includeDetails, + minOSVersion: "14.0", supportedDevice: "iPhone and iPad", buildType: "ad-hoc", + ipaFileSizeMB: 42, teamId: "TEAM1", teamName: "Team", + provisioningUUID: "uuid-1", + provisionedDevices: [String(repeating: "D", count: 40), "short"]) + } + + func testMinimalEntry_flagsOff() { + let entry = AppInfoJSON.makeEntry(baseInput(includeIPALink: false, includeDetails: false)) + XCTAssertEqual(entry.name, "AppBox") + XCTAssertEqual(entry.manifestLink, "https://m/manifest.plist") + XCTAssertNil(entry.ipaFileLink) + XCTAssertNil(entry.minosversion) + XCTAssertNil(entry.mobileprovision) + } + + func testEntry_withIPALink() { + let entry = AppInfoJSON.makeEntry(baseInput(includeIPALink: true, includeDetails: false)) + XCTAssertEqual(entry.ipaFileLink, "https://m/app.ipa") + XCTAssertNil(entry.mobileprovision) + } + + func testEntry_withDetails_includesProvisioningAndMaskedDevices() { + let entry = AppInfoJSON.makeEntry(baseInput(includeIPALink: true, includeDetails: true)) + XCTAssertEqual(entry.minosversion, "14.0") + XCTAssertEqual(entry.supporteddevice, "iPhone and iPad") + XCTAssertEqual(entry.buildtype, "ad-hoc") + XCTAssertEqual(entry.ipafilesize, 42) + let provisioning = try? XCTUnwrap(entry.mobileprovision) + XCTAssertEqual(provisioning?.teamid, "TEAM1") + XCTAssertEqual(provisioning?.uuid, "uuid-1") + XCTAssertEqual(provisioning?.devicesudid?.count, 1) + XCTAssertTrue(provisioning?.devicesudid?.first?.contains(".....") ?? false) + } + + func testEntry_encodesExpectedJSONKeys() throws { + let entry = AppInfoJSON.makeEntry(baseInput(includeIPALink: true, includeDetails: true)) + let data = try JSONEncoder().encode(entry) + let json = try XCTUnwrap(try JSONSerialization.jsonObject(with: data) as? [String: Any]) + XCTAssertEqual(json["manifestLink"] as? String, "https://m/manifest.plist") + XCTAssertEqual(json["ipaFileLink"] as? String, "https://m/app.ipa") + XCTAssertNotNil(json["mobileprovision"]) + XCTAssertNil(json["unexpectedKey"]) + let provisioning = try XCTUnwrap(json["mobileprovision"] as? [String: Any]) + XCTAssertNotNil(provisioning["expirationdata"] ?? provisioning["teamid"]) // legacy keys present + } + + func testHistory_keepsPreviousVersions() { + let a = AppInfoJSON.makeEntry(baseInput(includeIPALink: false, includeDetails: false)) + let b = AppInfoJSON.makeEntry(baseInput(includeIPALink: true, includeDetails: false)) + let history = AppInfoJSON.updatedHistory([a], adding: b, keepPreviousVersions: true) + XCTAssertEqual(history.count, 2) + XCTAssertEqual(history.last?.ipaFileLink, "https://m/app.ipa") + } + + func testHistory_resetsWhenNotKeepingPrevious() { + let a = AppInfoJSON.makeEntry(baseInput(includeIPALink: false, includeDetails: false)) + let b = AppInfoJSON.makeEntry(baseInput(includeIPALink: true, includeDetails: false)) + let history = AppInfoJSON.updatedHistory([a], adding: b, keepPreviousVersions: false) + XCTAssertEqual(history.count, 1) + XCTAssertEqual(history.first?.ipaFileLink, "https://m/app.ipa") + } +} + +/// The removal half (keep-same-link delete) — symmetric with the add tests above. +final class AppInfoJSONRemovalTests: XCTestCase { + + private func entry(_ link: String) -> AppVersionEntry { + AppInfoJSON.makeEntry(AppVersionInput(name: "App", version: "1", build: "1", identifier: "com.x", + manifestLink: link, timestamp: 1, shareableIPALink: "ipa", + includeIPALink: false, includeDetails: false)) + } + + // MARK: Pure logic + + func testRemoveMiddle_keepsLatest() { + let (v1, v2, v3) = (entry("m1"), entry("m2"), entry("m3")) + let result = AppInfoJSON.removingVersion(withManifestLink: "m2", from: [v1, v2, v3], latestVersion: v3) + XCTAssertEqual(result, .updated(versions: [v1, v3], latestVersion: v3)) + } + + func testRemoveLatest_latestFollowsToLastRemaining() { + let (v1, v2, v3) = (entry("m1"), entry("m2"), entry("m3")) + let result = AppInfoJSON.removingVersion(withManifestLink: "m3", from: [v1, v2, v3], latestVersion: v3) + XCTAssertEqual(result, .updated(versions: [v1, v2], latestVersion: v2)) + } + + func testRemoveFirst_keepsLatest() { + let (v1, v2, v3) = (entry("m1"), entry("m2"), entry("m3")) + let result = AppInfoJSON.removingVersion(withManifestLink: "m1", from: [v1, v2, v3], latestVersion: v3) + XCTAssertEqual(result, .updated(versions: [v2, v3], latestVersion: v3)) + } + + func testRemoveLastRemaining_emptiesHistory() { + let v1 = entry("m1") + XCTAssertEqual(AppInfoJSON.removingVersion(withManifestLink: "m1", from: [v1], latestVersion: v1), + .historyEmptied) + } + + func testEmptyHistory_emptiesHistory() { + XCTAssertEqual(AppInfoJSON.removingVersion(withManifestLink: "m1", from: [], latestVersion: nil), + .historyEmptied) + } + + func testNilLatest_defaultsToLastRemaining() { + let (v1, v2) = (entry("m1"), entry("m2")) + let result = AppInfoJSON.removingVersion(withManifestLink: "m1", from: [v1, v2], latestVersion: nil) + XCTAssertEqual(result, .updated(versions: [v2], latestVersion: v2)) + } + + func testLinkNotFound_leavesHistoryAndLatestUnchanged() { + let (v1, v2) = (entry("m1"), entry("m2")) + let result = AppInfoJSON.removingVersion(withManifestLink: "nope", from: [v1, v2], latestVersion: v2) + XCTAssertEqual(result, .updated(versions: [v1, v2], latestVersion: v2)) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/ArchiveExtractorTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/ArchiveExtractorTests.swift new file mode 100644 index 00000000..b1bbce44 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/ArchiveExtractorTests.swift @@ -0,0 +1,45 @@ +import XCTest +import ZIPFoundation +@testable import AppBoxCore + +final class ArchiveExtractorTests: XCTestCase { + + func testExtractsZipContents() throws { + let fileManager = FileManager.default + let tmp = fileManager.temporaryDirectory.appendingPathComponent(UUID().uuidString, isDirectory: true) + try fileManager.createDirectory(at: tmp, withIntermediateDirectories: true) + defer { try? fileManager.removeItem(at: tmp) } + + let sourceDir = tmp.appendingPathComponent("Payload", isDirectory: true) + try fileManager.createDirectory(at: sourceDir, withIntermediateDirectories: true) + let file = sourceDir.appendingPathComponent("Info.txt") + try Data("AppBox".utf8).write(to: file) + let archive = tmp.appendingPathComponent("app.zip") + try fileManager.zipItem(at: sourceDir, to: archive) + + let outDir = tmp.appendingPathComponent("out", isDirectory: true) + try ZipFoundationArchiveExtractor().extract(archiveAt: archive, to: outDir) + + let extracted = outDir.appendingPathComponent("Payload/Info.txt") + XCTAssertTrue(fileManager.fileExists(atPath: extracted.path)) + XCTAssertEqual(try String(contentsOf: extracted, encoding: .utf8), "AppBox") + } + + func testExtractCreatesDestinationIfMissing() throws { + let fileManager = FileManager.default + let tmp = fileManager.temporaryDirectory.appendingPathComponent(UUID().uuidString, isDirectory: true) + try fileManager.createDirectory(at: tmp, withIntermediateDirectories: true) + defer { try? fileManager.removeItem(at: tmp) } + + let sourceDir = tmp.appendingPathComponent("src", isDirectory: true) + try fileManager.createDirectory(at: sourceDir, withIntermediateDirectories: true) + try Data("x".utf8).write(to: sourceDir.appendingPathComponent("f.txt")) + let archive = tmp.appendingPathComponent("a.zip") + try fileManager.zipItem(at: sourceDir, to: archive) + + let outDir = tmp.appendingPathComponent("does/not/exist/yet", isDirectory: true) + XCTAssertFalse(fileManager.fileExists(atPath: outDir.path)) + try ZipFoundationArchiveExtractor().extract(archiveAt: archive, to: outDir) + XCTAssertTrue(fileManager.fileExists(atPath: outDir.appendingPathComponent("src/f.txt").path)) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/BuildDeletionServiceTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/BuildDeletionServiceTests.swift new file mode 100644 index 00000000..438228dc --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/BuildDeletionServiceTests.swift @@ -0,0 +1,160 @@ +import CoreData +import XCTest +@testable import AppBoxCore + +/// Records what the `DeleteCoordinator` asked of the provider, and can fail deletes. +private final class RecordingProvider: StorageProvider { + let id: StorageProviderID = .dropbox + var currentAccount: StorageAccount? + var deleteError: StorageError? + + private(set) var deletedPaths: [RemotePath] = [] + private(set) var downloadedPaths: [RemotePath] = [] + private(set) var uploadedPaths: [RemotePath] = [] + + func authenticate() async throws -> StorageAccount { StorageAccount(providerID: .dropbox, accountID: "x") } + func signOut() throws {} + func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws { uploadedPaths.append(remotePath) } + func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink { ShareableLink(url: URL(string: "https://x")!, isDirectDownload: true) } + func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? { nil } + func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] { [] } + func delete(at remotePath: RemotePath) async throws { + if let deleteError { throw deleteError } + deletedPaths.append(remotePath) + } + func download(from remotePath: RemotePath, to localURL: URL) async throws { downloadedPaths.append(remotePath) } + + var usedAtAll: Bool { !deletedPaths.isEmpty || !downloadedPaths.isEmpty || !uploadedPaths.isEmpty } +} + +final class BuildDeletionServiceTests: XCTestCase { + + private var tempDir: URL! + + override func setUpWithError() throws { + tempDir = FileManager.default.temporaryDirectory.appendingPathComponent("BuildDeletionServiceTests-\(UUID().uuidString)") + try FileManager.default.createDirectory(at: tempDir, withIntermediateDirectories: true) + } + override func tearDownWithError() throws { + if let tempDir { try? FileManager.default.removeItem(at: tempDir) } + } + + private func makeModel() -> NSManagedObjectModel { + func attr(_ name: String, _ type: NSAttributeType) -> NSAttributeDescription { + let a = NSAttributeDescription(); a.name = name; a.attributeType = type; a.isOptional = true; return a + } + let project = NSEntityDescription(); project.name = "Project"; project.managedObjectClassName = "ABProject" + let record = NSEntityDescription(); record.name = "UploadRecord"; record.managedObjectClassName = "ABUploadRecord" + let profile = NSEntityDescription(); profile.name = "ProvisioningProfile"; profile.managedObjectClassName = "ABProvisioningProfile" + + project.properties = [attr("name", .stringAttributeType), attr("bundleIdentifier", .stringAttributeType)] + record.properties = [attr("version", .stringAttributeType), attr("build", .stringAttributeType), + attr("datetime", .dateAttributeType), attr("shortURL", .stringAttributeType), + attr("dbAppInfoFullPath", .stringAttributeType), attr("dbDirectroy", .stringAttributeType), + attr("dbFolderName", .stringAttributeType), attr("dbSharedManifestURL", .stringAttributeType), + attr("keepSameLink", .booleanAttributeType)] + profile.properties = [attr("buildType", .stringAttributeType), attr("teamName", .stringAttributeType)] + + let projUploads = NSRelationshipDescription(); projUploads.name = "uploadRecords"; projUploads.destinationEntity = record + projUploads.minCount = 0; projUploads.maxCount = 0; projUploads.isOrdered = true; projUploads.deleteRule = .nullifyDeleteRule + let recProject = NSRelationshipDescription(); recProject.name = "project"; recProject.destinationEntity = project + recProject.minCount = 0; recProject.maxCount = 1; recProject.deleteRule = .nullifyDeleteRule + projUploads.inverseRelationship = recProject; recProject.inverseRelationship = projUploads + + let profUploads = NSRelationshipDescription(); profUploads.name = "uploadRecord"; profUploads.destinationEntity = record + profUploads.minCount = 0; profUploads.maxCount = 0; profUploads.isOrdered = true; profUploads.deleteRule = .nullifyDeleteRule + let recProfile = NSRelationshipDescription(); recProfile.name = "provisioningProfile"; recProfile.destinationEntity = profile + recProfile.minCount = 0; recProfile.maxCount = 1; recProfile.deleteRule = .nullifyDeleteRule + profUploads.inverseRelationship = recProfile; recProfile.inverseRelationship = profUploads + + project.properties += [projUploads]; record.properties += [recProject, recProfile]; profile.properties += [profUploads] + + let model = NSManagedObjectModel(); model.entities = [project, record, profile]; return model + } + + private func writableStack(_ model: NSManagedObjectModel) -> CoreDataStack { + CoreDataStack(applicationSupportDirectoryURL: tempDir, + sqliteStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.sqlite"), + storedataStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.storedata"), + model: model) + } + + private func seedRecord(_ stack: CoreDataStack, name: String, keepSameLink: Bool, + buildFolder: String, manifestLink: String) throws { + let ctx = try stack.loadViewContext() + let project = NSEntityDescription.insertNewObject(forEntityName: "Project", into: ctx) as! ABProject + project.name = name; project.bundleIdentifier = "com.\(name)" + let record = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: ctx) as! ABUploadRecord + record.version = "1.0"; record.build = "1"; record.datetime = Date(timeIntervalSince1970: 1_000) + record.shortURL = "https://s/\(name)" + record.keepSameLink = NSNumber(value: keepSameLink) + record.dbDirectroy = buildFolder + record.dbFolderName = "/\(name)" + record.dbAppInfoFullPath = "/\(name)/appinfo.json" + record.dbSharedManifestURL = manifestLink + record.project = project + try stack.saveChanges() + } + + private func recordCount(_ stack: CoreDataStack) throws -> Int { + try stack.loadViewContext().count(for: NSFetchRequest(entityName: "UploadRecord")) + } + + // MARK: Tests + + func testDeleteFromDropbox_nonKeepSameLink_deletesFolderAndRecord() async throws { + let model = makeModel() + let stack = writableStack(model) + try seedRecord(stack, name: "App", keepSameLink: false, buildFolder: "/app/1.0", manifestLink: "m1") + let provider = RecordingProvider() + let service = BuildDeletionService(stack: stack, providerFactory: { provider }) + + XCTAssertEqual(try service.loadBuilds().count, 1) + try await service.delete(at: 0, fromDropbox: true) + + XCTAssertEqual(provider.deletedPaths.map(\.path), ["/app/1.0"]) // the build folder + XCTAssertEqual(try recordCount(stack), 0) + } + + func testDashboardOnly_removesRecordWithoutTouchingProvider() async throws { + let stack = writableStack(makeModel()) + try seedRecord(stack, name: "App", keepSameLink: false, buildFolder: "/app/1.0", manifestLink: "m1") + let provider = RecordingProvider() + let service = BuildDeletionService(stack: stack, providerFactory: { provider }) + + try service.loadBuilds() + try await service.delete(at: 0, fromDropbox: false) + + XCTAssertFalse(provider.usedAtAll) + XCTAssertEqual(try recordCount(stack), 0) + } + + func testDropboxFailure_leavesRecordIntact() async throws { + let stack = writableStack(makeModel()) + try seedRecord(stack, name: "App", keepSameLink: false, buildFolder: "/app/1.0", manifestLink: "m1") + let provider = RecordingProvider() + provider.deleteError = .notAuthenticated + let service = BuildDeletionService(stack: stack, providerFactory: { provider }) + + try service.loadBuilds() + do { + try await service.delete(at: 0, fromDropbox: true) + XCTFail("expected the delete to throw") + } catch let error as StorageError { + XCTAssertEqual(error, .notAuthenticated) + } + XCTAssertEqual(try recordCount(stack), 1) + } + + func testDeleteOutOfRange_throws() async throws { + let stack = writableStack(makeModel()) + let service = BuildDeletionService(stack: stack, providerFactory: { RecordingProvider() }) + try service.loadBuilds() + do { + try await service.delete(at: 3, fromDropbox: false) + XCTFail("expected an out-of-range delete to throw") + } catch { + XCTAssertTrue((error as NSError).localizedDescription.contains("No build at that position")) + } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/BuildHistoryStoreTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/BuildHistoryStoreTests.swift new file mode 100644 index 00000000..b0903add --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/BuildHistoryStoreTests.swift @@ -0,0 +1,128 @@ +import CoreData +import XCTest +@testable import AppBoxCore + +/// Exercises `BuildHistoryStore` against a TEMP on-disk SQLite store with the programmatic model (the compiled `.momd` is absent under `swift test`): the newest-first sort + field mapping, an empty store, the read-only open path, and the missing-store error. +final class BuildHistoryStoreTests: XCTestCase { + + private var tempDir: URL! + + override func setUpWithError() throws { + tempDir = FileManager.default.temporaryDirectory.appendingPathComponent("BuildHistoryStoreTests-\(UUID().uuidString)") + try FileManager.default.createDirectory(at: tempDir, withIntermediateDirectories: true) + } + + override func tearDownWithError() throws { + if let tempDir { try? FileManager.default.removeItem(at: tempDir) } + } + + // MARK: Model (Project ↔ UploadRecord → ProvisioningProfile, mirroring AppBox4's relevant slice) + + private func makeModel() -> NSManagedObjectModel { + func attr(_ name: String, _ type: NSAttributeType) -> NSAttributeDescription { + let a = NSAttributeDescription(); a.name = name; a.attributeType = type; a.isOptional = true; return a + } + let project = NSEntityDescription(); project.name = "Project"; project.managedObjectClassName = "ABProject" + let record = NSEntityDescription(); record.name = "UploadRecord"; record.managedObjectClassName = "ABUploadRecord" + let profile = NSEntityDescription(); profile.name = "ProvisioningProfile"; profile.managedObjectClassName = "ABProvisioningProfile" + + project.properties = [attr("name", .stringAttributeType), attr("bundleIdentifier", .stringAttributeType)] + record.properties = [attr("version", .stringAttributeType), attr("build", .stringAttributeType), + attr("datetime", .dateAttributeType), attr("shortURL", .stringAttributeType)] + profile.properties = [attr("buildType", .stringAttributeType), attr("teamName", .stringAttributeType)] + + func rel(_ name: String, _ dest: NSEntityDescription, toMany: Bool, ordered: Bool) -> NSRelationshipDescription { + let r = NSRelationshipDescription(); r.name = name; r.destinationEntity = dest + r.minCount = 0; r.maxCount = toMany ? 0 : 1; r.isOrdered = ordered; r.deleteRule = .nullifyDeleteRule + return r + } + let projUploads = rel("uploadRecords", record, toMany: true, ordered: true) + let recProject = rel("project", project, toMany: false, ordered: false) + projUploads.inverseRelationship = recProject; recProject.inverseRelationship = projUploads + + let profUploads = rel("uploadRecord", record, toMany: true, ordered: true) + let recProfile = rel("provisioningProfile", profile, toMany: false, ordered: false) + profUploads.inverseRelationship = recProfile; recProfile.inverseRelationship = profUploads + + project.properties += [projUploads] + record.properties += [recProject, recProfile] + profile.properties += [profUploads] + + let model = NSManagedObjectModel() + model.entities = [project, record, profile] + return model + } + + private func writableStack(_ model: NSManagedObjectModel) -> CoreDataStack { + CoreDataStack(applicationSupportDirectoryURL: tempDir, + sqliteStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.sqlite"), + storedataStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.storedata"), + model: model) + } + + @discardableResult + private func seed(_ stack: CoreDataStack, name: String, version: String, build: String, + buildType: String, team: String, date: Date, shortURL: String) throws -> NSManagedObject { + let ctx = try stack.loadViewContext() + let project = NSEntityDescription.insertNewObject(forEntityName: "Project", into: ctx) as! ABProject + project.name = name; project.bundleIdentifier = "com.\(name)" + let profile = NSEntityDescription.insertNewObject(forEntityName: "ProvisioningProfile", into: ctx) as! ABProvisioningProfile + profile.buildType = buildType; profile.teamName = team + let record = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: ctx) as! ABUploadRecord + record.version = version; record.build = build; record.datetime = date; record.shortURL = shortURL + record.project = project; record.provisioningProfile = profile + try stack.saveChanges() + return record + } + + // MARK: Tests + + func testRecentBuilds_newestFirstWithMappedFields() throws { + let model = makeModel() + let stack = writableStack(model) + try seed(stack, name: "Older", version: "1.0", build: "1", buildType: "ad-hoc", team: "T1", + date: Date(timeIntervalSince1970: 1_000), shortURL: "https://s/old") + try seed(stack, name: "Newer", version: "2.0", build: "9", buildType: "enterprise", team: "T2", + date: Date(timeIntervalSince1970: 2_000), shortURL: "https://s/new") + + let builds = try BuildHistoryStore(stack: stack).recentBuilds() + XCTAssertEqual(builds.count, 2) + XCTAssertEqual(builds.first?.appName, "Newer") // newest first + XCTAssertEqual(builds.first?.version, "2.0") + XCTAssertEqual(builds.first?.build, "9") + XCTAssertEqual(builds.first?.buildType, "enterprise") // from provisioning profile + XCTAssertEqual(builds.first?.teamName, "T2") + XCTAssertEqual(builds.first?.bundleIdentifier, "com.Newer") + XCTAssertEqual(builds.first?.shortURL, "https://s/new") + XCTAssertEqual(builds.last?.appName, "Older") + } + + func testRecentBuilds_emptyStore() throws { + let builds = try BuildHistoryStore(stack: writableStack(makeModel())).recentBuilds() + XCTAssertTrue(builds.isEmpty) + } + + func testReadOnlyStack_readsAPreSeededStore() throws { + let model = makeModel() + try seed(writableStack(model), name: "App", version: "3.1", build: "42", buildType: "ad-hoc", + team: "T", date: Date(timeIntervalSince1970: 5_000), shortURL: "https://s/x") + + let readOnly = CoreDataStack(applicationSupportDirectoryURL: tempDir, + sqliteStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.sqlite"), + storedataStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.storedata"), + model: model, readOnly: true) + let builds = try BuildHistoryStore(stack: readOnly).recentBuilds() + XCTAssertEqual(builds.first?.version, "3.1") + XCTAssertEqual(builds.first?.build, "42") + } + + func testReadOnlyStack_missingStoreThrowsClearError() { + let readOnly = CoreDataStack(applicationSupportDirectoryURL: tempDir, + sqliteStoreURL: tempDir.appendingPathComponent("does-not-exist.sqlite"), + storedataStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.storedata"), + model: makeModel(), readOnly: true) + XCTAssertThrowsError(try BuildHistoryStore(stack: readOnly).recentBuilds()) { error in + XCTAssertTrue((error as NSError).localizedFailureReason?.contains("No AppBox upload history") ?? false) + } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/BuildInfoTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/BuildInfoTests.swift new file mode 100644 index 00000000..c8a9d7ef --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/BuildInfoTests.swift @@ -0,0 +1,13 @@ +import XCTest +@testable import AppBoxCore + +final class BuildInfoTests: XCTestCase { + + func testModuleNameIsAppBoxCore() { + XCTAssertEqual(ABCoreBuildInfo.moduleName, "AppBoxCore") + } + + func testIsLinkedReturnsTrue() { + XCTAssertTrue(ABCoreBuildInfo.isLinked()) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/BuildMetadataTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/BuildMetadataTests.swift new file mode 100644 index 00000000..683e94e5 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/BuildMetadataTests.swift @@ -0,0 +1,108 @@ +import XCTest +@testable import AppBoxCore + +final class BuildMetadataTests: XCTestCase { + + private let plist: [AnyHashable: Any] = [ + "CFBundleName": "My App", + "CFBundleShortVersionString": "1.2", + "CFBundleVersion": "345", + "CFBundleIdentifier": "com.example.myapp", + "MinimumOSVersion": "15.0", + "UIDeviceFamily": [NSNumber(value: 1), NSNumber(value: 2)] + ] + + func testParsesInfoPlistAndStripsSpacesFromName() { + let metadata = BuildMetadata(infoPlist: plist) + XCTAssertEqual(metadata?.name, "MyApp") + XCTAssertEqual(metadata?.version, "1.2") + XCTAssertEqual(metadata?.build, "345") + XCTAssertEqual(metadata?.identifier, "com.example.myapp") + XCTAssertEqual(metadata?.minimumOSVersion, "15.0") + XCTAssertEqual(metadata?.supportedDevice, "iPhone and iPad") + } + + func testReturnsNilWhenARequiredKeyIsMissing() { + for key in ["CFBundleName", "CFBundleShortVersionString", "CFBundleVersion", "CFBundleIdentifier"] { + var partial = plist + partial.removeValue(forKey: key) + XCTAssertNil(BuildMetadata(infoPlist: partial), "missing \(key) should fail validation") + } + } + + func testOptionalKeysMayBeAbsent() { + var partial = plist + partial.removeValue(forKey: "MinimumOSVersion") + partial.removeValue(forKey: "UIDeviceFamily") + let metadata = BuildMetadata(infoPlist: partial) + XCTAssertNotNil(metadata) + XCTAssertNil(metadata?.minimumOSVersion) + XCTAssertEqual(metadata?.supportedDevice, "") + } + + // MARK: - Remote paths (must stay byte-identical to the v3/GUI layout) + + private var metadata: BuildMetadata { + BuildMetadata(name: "MyApp", version: "1.2", build: "345", + identifier: "com.example.myapp", minimumOSVersion: "15.0", supportedDevice: "iPhone") + } + + func testDerivesTheBundleRelativeBuildLayout() { + let paths = BuildRemotePaths(metadata: metadata, uuid: "ABC123", keepSameLink: false) + XCTAssertEqual(paths.bundleDirectory, "/com.example.myapp") + XCTAssertEqual(paths.buildDirectory, "/com.example.myapp/MyApp-ver1.2(345)-ABC123") + XCTAssertEqual(paths.ipa.components, ["com.example.myapp", "MyApp-ver1.2(345)-ABC123", "MyApp.ipa"]) + XCTAssertEqual(paths.manifest.components, ["com.example.myapp", "MyApp-ver1.2(345)-ABC123", "manifest.plist"]) + XCTAssertEqual(paths.appInfo.components, ["com.example.myapp", "MyApp-ver1.2(345)-ABC123", "appinfo.json"]) + } + + func testKeepSameLinkHoistsAppInfoToTheBundleDirectory() { + let paths = BuildRemotePaths(metadata: metadata, uuid: "ABC123", keepSameLink: true) + XCTAssertEqual(paths.appInfo.components, ["com.example.myapp", "appinfo.json"]) + XCTAssertEqual(paths.ipa.components, ["com.example.myapp", "MyApp-ver1.2(345)-ABC123", "MyApp.ipa"]) + } + + func testExplicitBundleDirectoryOverridesTheIdentifier() { + let paths = BuildRemotePaths(metadata: metadata, uuid: "ABC123", + bundleDirectory: "/CustomFolder", keepSameLink: false) + XCTAssertEqual(paths.bundleDirectory, "/CustomFolder") + XCTAssertEqual(paths.buildDirectory, "/CustomFolder/MyApp-ver1.2(345)-ABC123") + } + + func testNameWithPathCharactersStaysOneSegment() { + let awkward = BuildMetadata(name: "Is?My/App", version: "1.0", build: "1", + identifier: "com.example.myapp", + minimumOSVersion: nil, supportedDevice: "iPhone") + let paths = BuildRemotePaths(metadata: awkward, uuid: "ABC123", keepSameLink: false) + XCTAssertEqual(paths.buildDirectory, "/com.example.myapp/IsMyApp-ver1.0(1)-ABC123") + XCTAssertEqual(paths.ipa.components, ["com.example.myapp", "IsMyApp-ver1.0(1)-ABC123", "IsMyApp.ipa"]) + XCTAssertEqual(URL(string: paths.buildDirectory)?.path, paths.buildDirectory) + } + + func testEmptyBundleDirectoryFallsBackToTheIdentifier() { + let paths = BuildRemotePaths(metadata: metadata, uuid: "ABC123", + bundleDirectory: "", keepSameLink: false) + XCTAssertEqual(paths.bundleDirectory, "/com.example.myapp") + } + + // MARK: - Share URL export + + func testWritesShareURLsAsJSON() throws { + let directory = NSTemporaryDirectory() + UUID().uuidString + try FileManager.default.createDirectory(atPath: directory, withIntermediateDirectories: true) + defer { try? FileManager.default.removeItem(atPath: directory) } + + let wrote = ShareURLExport.write(shareURL: URL(string: "https://appbox.me/x1"), + ipaURL: URL(string: "https://dl/ipa"), + manifestURL: nil, + toDirectory: directory) + XCTAssertTrue(wrote) + + let path = (directory as NSString).appendingPathComponent(ShareURLExport.fileName) + let data = try Data(contentsOf: URL(fileURLWithPath: path)) + let values = try XCTUnwrap(JSONSerialization.jsonObject(with: data) as? [String: String]) + XCTAssertEqual(values["APPBOX_SHARE_URL"], "https://appbox.me/x1") + XCTAssertEqual(values["APPBOX_IPA_URL"], "https://dl/ipa") + XCTAssertEqual(values["APPBOX_MANIFEST_URL"], "") + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/BuildUploadServiceTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/BuildUploadServiceTests.swift new file mode 100644 index 00000000..4f8f8c93 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/BuildUploadServiceTests.swift @@ -0,0 +1,141 @@ +import XCTest +import ZIPFoundation +@testable import AppBoxCore + +final class BuildUploadServiceTests: XCTestCase { + + private var tmp: URL! + + override func setUpWithError() throws { + tmp = FileManager.default.temporaryDirectory.appendingPathComponent(UUID().uuidString, isDirectory: true) + try FileManager.default.createDirectory(at: tmp, withIntermediateDirectories: true) + } + + override func tearDownWithError() throws { + try? FileManager.default.removeItem(at: tmp) + } + + /// Builds a real .ipa containing a real binary Info.plist. + private func makeIPA(name: String = "My App", version: String = "1.2", build: String = "345", + identifier: String = "com.example.myapp") throws -> URL { + let appDir = tmp.appendingPathComponent("Payload/MyApp.app", isDirectory: true) + try FileManager.default.createDirectory(at: appDir, withIntermediateDirectories: true) + let plist: [String: Any] = [ + "CFBundleName": name, + "CFBundleShortVersionString": version, + "CFBundleVersion": build, + "CFBundleIdentifier": identifier, + "MinimumOSVersion": "15.0", + "UIDeviceFamily": [1, 2] + ] + let data = try PropertyListSerialization.data(fromPropertyList: plist, format: .binary, options: 0) + try data.write(to: appDir.appendingPathComponent("Info.plist")) + + let ipa = tmp.appendingPathComponent("app.ipa") + try FileManager.default.zipItem(at: tmp.appendingPathComponent("Payload"), to: ipa) + return ipa + } + + func testUploadsIPAManifestAndAppInfoToTheDerivedPaths() async throws { + let ipa = try makeIPA() + let provider = FakeStorageProvider() + let service = BuildUploadService(provider: provider) + + let outcome = try await service.run(BuildUploadRequest(ipaURL: ipa, uuid: "ABC123")) + + XCTAssertEqual(outcome.metadata.name, "MyApp") + XCTAssertEqual(outcome.metadata.version, "1.2") + XCTAssertEqual(outcome.metadata.build, "345") + XCTAssertEqual(outcome.metadata.identifier, "com.example.myapp") + XCTAssertEqual(outcome.paths.buildDirectory, "/com.example.myapp/MyApp-ver1.2(345)-ABC123") + + let uploaded = provider.uploadedFiles.map { $0.remote.components.joined(separator: "/") } + XCTAssertTrue(uploaded.contains("com.example.myapp/MyApp-ver1.2(345)-ABC123/MyApp.ipa"), "got \(uploaded)") + XCTAssertTrue(uploaded.contains { $0.hasSuffix("manifest.plist") }, "got \(uploaded)") + } + + /// Keep-same-link re-reads the existing appinfo.json, so the provider has to serve one back. + func testKeepSameLinkPutsAppInfoInTheBundleDirectoryAndPreservesHistory() async throws { + let ipa = try makeIPA() + let provider = UploadCoordinatorTests.LinkFakeProvider() + let prior = AppVersionEntry(name: "MyApp", version: "1.0", build: "1", + identifier: "com.example.myapp", manifestLink: "m", timestamp: 1) + provider.existingAppInfoJSON = try JSONEncoder().encode(AppInfoFile(latestVersion: prior, versions: [prior])) + + let service = BuildUploadService(provider: provider) + let outcome = try await service.run( + BuildUploadRequest(ipaURL: ipa, keepSameLink: true, uuid: "ABC123")) + + XCTAssertEqual(outcome.paths.appInfo.components, ["com.example.myapp", "appinfo.json"]) + XCTAssertEqual(provider.downloadedPaths.map(\.path), ["/com.example.myapp/appinfo.json"]) + } + + func testMissingIPAFailsWithExit119() async throws { + let service = BuildUploadService(provider: FakeStorageProvider()) + let missing = tmp.appendingPathComponent("nope.ipa") + + do { + _ = try await service.run(BuildUploadRequest(ipaURL: missing)) + XCTFail("expected failure") + } catch let error as BuildUploadError { + XCTAssertEqual(error.exitCode, 119) + guard case .ipaNotFound = error else { return XCTFail("wrong case: \(error)") } + } + } + + func testIPAWithoutAValidInfoPlistFailsWithExit120() async throws { + let appDir = tmp.appendingPathComponent("Payload/MyApp.app", isDirectory: true) + try FileManager.default.createDirectory(at: appDir, withIntermediateDirectories: true) + try Data("not a plist".utf8).write(to: appDir.appendingPathComponent("Info.plist")) + let ipa = tmp.appendingPathComponent("bad.ipa") + try FileManager.default.zipItem(at: tmp.appendingPathComponent("Payload"), to: ipa) + + let service = BuildUploadService(provider: FakeStorageProvider()) + do { + _ = try await service.run(BuildUploadRequest(ipaURL: ipa)) + XCTFail("expected failure") + } catch let error as BuildUploadError { + XCTAssertEqual(error.exitCode, 120) + guard case .invalidInfoPlist = error else { return XCTFail("wrong case: \(error)") } + } + } + + func testNonIPAArchiveFailsWithExit121() async throws { + let junk = tmp.appendingPathComponent("junk", isDirectory: true) + try FileManager.default.createDirectory(at: junk, withIntermediateDirectories: true) + try Data("x".utf8).write(to: junk.appendingPathComponent("readme.txt")) + let zip = tmp.appendingPathComponent("junk.ipa") + try FileManager.default.zipItem(at: junk, to: zip) + + let service = BuildUploadService(provider: FakeStorageProvider()) + do { + _ = try await service.run(BuildUploadRequest(ipaURL: zip)) + XCTFail("expected failure") + } catch let error as BuildUploadError { + XCTAssertEqual(error.exitCode, 121) + } + } + + func testUploadFailureFailsWithExit124() async throws { + let ipa = try makeIPA() + let provider = FakeStorageProvider() + provider.uploadError = StorageError.network("offline") + let service = BuildUploadService(provider: provider) + + do { + _ = try await service.run(BuildUploadRequest(ipaURL: ipa)) + XCTFail("expected failure") + } catch let error as BuildUploadError { + XCTAssertEqual(error.exitCode, 124) + } + } + + func testCleansUpItsWorkingDirectory() async throws { + let ipa = try makeIPA() + let before = try FileManager.default.contentsOfDirectory(atPath: NSTemporaryDirectory()).count + _ = try await BuildUploadService(provider: FakeStorageProvider()) + .run(BuildUploadRequest(ipaURL: ipa)) + let after = try FileManager.default.contentsOfDirectory(atPath: NSTemporaryDirectory()).count + XCTAssertEqual(before, after, "the extraction working directory should not be left behind") + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/CoreDataModelTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/CoreDataModelTests.swift new file mode 100644 index 00000000..69cc160b --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/CoreDataModelTests.swift @@ -0,0 +1,203 @@ +import CoreData +import XCTest +@testable import AppBoxCore + +/// Verifies the Swift `@objc` NSManagedObject subclasses match the `AppBox4` schema: the `@objc()` registration resolves rows to the right Swift class, every `@NSManaged` attribute round-trips with the correct type (notably `keepSameLink` as `NSNumber`), and the ordered / to-one relationships work. +final class CoreDataModelTests: XCTestCase { + + // MARK: Model builder (mirrors AppBox/AppBox.xcdatamodeld/AppBox4) + + private func attr(_ name: String, _ type: NSAttributeType) -> NSAttributeDescription { + let a = NSAttributeDescription() + a.name = name; a.attributeType = type; a.isOptional = true + return a + } + + private func rel(_ name: String, _ destination: NSEntityDescription, toMany: Bool, ordered: Bool) -> NSRelationshipDescription { + let r = NSRelationshipDescription() + r.name = name; r.destinationEntity = destination + r.minCount = 0; r.maxCount = toMany ? 0 : 1; r.isOrdered = ordered + r.deleteRule = .nullifyDeleteRule + return r + } + + private func makeModel() -> NSManagedObjectModel { + let project = NSEntityDescription(); project.name = "Project"; project.managedObjectClassName = "ABProject" + let uploadRecord = NSEntityDescription(); uploadRecord.name = "UploadRecord"; uploadRecord.managedObjectClassName = "ABUploadRecord" + let profile = NSEntityDescription(); profile.name = "ProvisioningProfile"; profile.managedObjectClassName = "ABProvisioningProfile" + let device = NSEntityDescription(); device.name = "ProvisionedDevice"; device.managedObjectClassName = "ABProvisionedDevice" + let service = NSEntityDescription(); service.name = "AppBoxService"; service.managedObjectClassName = "AppBoxService" + + project.properties = [attr("bundleIdentifier", .stringAttributeType), attr("name", .stringAttributeType)] + uploadRecord.properties = [ + attr("build", .stringAttributeType), attr("version", .stringAttributeType), + attr("datetime", .dateAttributeType), attr("keepSameLink", .booleanAttributeType), + attr("dbDirectroy", .stringAttributeType), attr("dbIPAFullPath", .stringAttributeType), + ] + profile.properties = [attr("uuid", .stringAttributeType), attr("teamId", .stringAttributeType), + attr("createDate", .dateAttributeType)] + device.properties = [attr("deviceId", .stringAttributeType)] + service.properties = [attr("accountEmail", .stringAttributeType), attr("name", .stringAttributeType)] + + let projUploads = rel("uploadRecords", uploadRecord, toMany: true, ordered: true) + let recProject = rel("project", project, toMany: false, ordered: false) + projUploads.inverseRelationship = recProject; recProject.inverseRelationship = projUploads + + let profUploads = rel("uploadRecord", uploadRecord, toMany: true, ordered: true) + let recProfile = rel("provisioningProfile", profile, toMany: false, ordered: false) + profUploads.inverseRelationship = recProfile; recProfile.inverseRelationship = profUploads + + let svcUploads = rel("uploadRecords", uploadRecord, toMany: true, ordered: false) + let recService = rel("service", service, toMany: false, ordered: false) + svcUploads.inverseRelationship = recService; recService.inverseRelationship = svcUploads + + let profDevices = rel("provisionedDevices", device, toMany: true, ordered: true) // one-way (no inverse) + + project.properties += [projUploads] + uploadRecord.properties += [recProject, recProfile, recService] + profile.properties += [profUploads, profDevices] + service.properties += [svcUploads] + + let model = NSManagedObjectModel() + model.entities = [project, uploadRecord, profile, device, service] + return model + } + + private func makeContext() throws -> NSManagedObjectContext { + let coordinator = NSPersistentStoreCoordinator(managedObjectModel: makeModel()) + try coordinator.addPersistentStore(ofType: NSInMemoryStoreType, configurationName: nil, at: nil, options: nil) + let ctx = NSManagedObjectContext(concurrencyType: .mainQueueConcurrencyType) + ctx.persistentStoreCoordinator = coordinator + return ctx + } + + /// The REAL shipping model — the `momc`-compiled `AppBox.momd` that Xcode bundles from `CoreData/Resources/AppBox.xcdatamodeld` into `Bundle.module`. + private func realModelURL() -> URL? { + Bundle.module.url(forResource: "AppBox", withExtension: "momd") + } + + private func makeRealModelContext(_ url: URL) throws -> NSManagedObjectContext { + let model = try XCTUnwrap(NSManagedObjectModel(contentsOf: url), "Failed to load AppBox.momd") + let coordinator = NSPersistentStoreCoordinator(managedObjectModel: model) + try coordinator.addPersistentStore(ofType: NSInMemoryStoreType, configurationName: nil, at: nil, options: nil) + let ctx = NSManagedObjectContext(concurrencyType: .mainQueueConcurrencyType) + ctx.persistentStoreCoordinator = coordinator + return ctx + } + + // MARK: Tests + + func testInsertResolvesToSwiftClassesAndRoundTrips() throws { + let ctx = try makeContext() + + let project = NSEntityDescription.insertNewObject(forEntityName: "Project", into: ctx) + let record = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: ctx) + let profile = NSEntityDescription.insertNewObject(forEntityName: "ProvisioningProfile", into: ctx) + let device = NSEntityDescription.insertNewObject(forEntityName: "ProvisionedDevice", into: ctx) + let service = NSEntityDescription.insertNewObject(forEntityName: "AppBoxService", into: ctx) + + // @objc(name) registration must resolve each entity to its Swift class. + let abProject = try XCTUnwrap(project as? ABProject) + let abRecord = try XCTUnwrap(record as? ABUploadRecord) + let abProfile = try XCTUnwrap(profile as? ABProvisioningProfile) + let abDevice = try XCTUnwrap(device as? ABProvisionedDevice) + let abService = try XCTUnwrap(service as? AppBoxService) + + abProject.name = "Test App" + abProject.bundleIdentifier = "com.test.app" + abRecord.version = "1.4" + abRecord.build = "42" + abRecord.datetime = Date(timeIntervalSince1970: 1000) + abRecord.keepSameLink = NSNumber(value: true) + abRecord.dbDirectroy = "/com.test.app/1.4" + abRecord.project = abProject + abProfile.uuid = "uuid-1" + abProfile.teamId = "TEAM1" + abDevice.deviceId = "device-1" + abProfile.mutableOrderedSetValue(forKey: "provisionedDevices").add(abDevice) + abRecord.provisioningProfile = abProfile + abService.accountEmail = "a@b.com" + abRecord.service = abService + abProject.mutableOrderedSetValue(forKey: "uploadRecords").add(abRecord) + + try ctx.save() + + let fetched = try ctx.fetch(NSFetchRequest(entityName: "UploadRecord")) + XCTAssertEqual(fetched.count, 1) + let r = try XCTUnwrap(fetched.first) + XCTAssertEqual(r.version, "1.4") + XCTAssertEqual(r.build, "42") + XCTAssertEqual(r.datetime, Date(timeIntervalSince1970: 1000)) + XCTAssertEqual(r.keepSameLink?.boolValue, true) + XCTAssertEqual(r.dbDirectroy, "/com.test.app/1.4") + XCTAssertEqual(r.project?.name, "Test App") + XCTAssertEqual(r.project?.bundleIdentifier, "com.test.app") + XCTAssertEqual(r.project?.uploadRecords?.count, 1) + XCTAssertEqual(r.provisioningProfile?.uuid, "uuid-1") + XCTAssertEqual(r.provisioningProfile?.provisionedDevices?.count, 1) + XCTAssertEqual((r.provisioningProfile?.provisionedDevices?.firstObject as? ABProvisionedDevice)?.deviceId, "device-1") + XCTAssertEqual(r.service?.accountEmail, "a@b.com") + } + + func testFetchByEntityNameResolvesToSwiftClass() throws { + let ctx = try makeContext() + let record = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: ctx) as? ABUploadRecord + record?.version = "9.9" + try ctx.save() + + let request = NSFetchRequest(entityName: "UploadRecord") + let results = try ctx.fetch(request) + XCTAssertEqual(results.count, 1) + XCTAssertEqual((results.first as? ABUploadRecord)?.version, "9.9") + } + + // MARK: Real shipping model (Bundle.module .momd) + + func testRealModelLoadsAndHasAppBox4Schema() throws { + try XCTSkipUnless(realModelURL() != nil, "AppBox.momd not in Bundle.module (swift test doesn't run momc; validated by the Xcode build)") + let model = try XCTUnwrap(NSManagedObjectModel(contentsOf: realModelURL()!)) + + let byName = Dictionary(uniqueKeysWithValues: model.entities.map { ($0.name ?? "", $0) }) + XCTAssertEqual(byName["Project"]?.managedObjectClassName, "ABProject") + XCTAssertEqual(byName["UploadRecord"]?.managedObjectClassName, "ABUploadRecord") + XCTAssertEqual(byName["ProvisioningProfile"]?.managedObjectClassName, "ABProvisioningProfile") + XCTAssertEqual(byName["ProvisionedDevice"]?.managedObjectClassName, "ABProvisionedDevice") + XCTAssertEqual(byName["AppBoxService"]?.managedObjectClassName, "AppBoxService") + } + + func testRealModelInsertResolvesToSwiftClassesAndRoundTrips() throws { + try XCTSkipUnless(realModelURL() != nil, "AppBox.momd not in Bundle.module (swift test doesn't run momc; validated by the Xcode build)") + let ctx = try makeRealModelContext(realModelURL()!) + + let record = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: ctx) as? ABUploadRecord + let project = NSEntityDescription.insertNewObject(forEntityName: "Project", into: ctx) as? ABProject + let profile = NSEntityDescription.insertNewObject(forEntityName: "ProvisioningProfile", into: ctx) as? ABProvisioningProfile + let device = NSEntityDescription.insertNewObject(forEntityName: "ProvisionedDevice", into: ctx) as? ABProvisionedDevice + + let abRecord = try XCTUnwrap(record, "UploadRecord did not resolve to ABUploadRecord against the real model") + let abProject = try XCTUnwrap(project) + let abProfile = try XCTUnwrap(profile) + let abDevice = try XCTUnwrap(device) + + abProject.name = "Real App" + abProject.bundleIdentifier = "com.real.app" + abRecord.version = "2.0" + abRecord.keepSameLink = NSNumber(value: true) + abRecord.project = abProject + abProfile.uuid = "real-uuid" + abDevice.deviceId = "real-device" + abProfile.mutableOrderedSetValue(forKey: "provisionedDevices").add(abDevice) + abRecord.provisioningProfile = abProfile + abProject.mutableOrderedSetValue(forKey: "uploadRecords").add(abRecord) + + try ctx.save() + + let fetched = try ctx.fetch(NSFetchRequest(entityName: "UploadRecord")) + let r = try XCTUnwrap(fetched.first) + XCTAssertEqual(r.version, "2.0") + XCTAssertEqual(r.keepSameLink?.boolValue, true) + XCTAssertEqual(r.project?.bundleIdentifier, "com.real.app") + XCTAssertEqual(r.provisioningProfile?.uuid, "real-uuid") + XCTAssertEqual(r.provisioningProfile?.provisionedDevices?.count, 1) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/CoreDataStackTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/CoreDataStackTests.swift new file mode 100644 index 00000000..30a88860 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/CoreDataStackTests.swift @@ -0,0 +1,93 @@ +import CoreData +import XCTest +@testable import AppBoxCore + +/// Exercises `CoreDataStack`'s coordinator/store logic against a TEMP on-disk SQLite store using the programmatic model (the compiled `.momd` is absent under `swift test`). +final class CoreDataStackTests: XCTestCase { + + private var tempDir: URL! + + override func setUpWithError() throws { + tempDir = FileManager.default.temporaryDirectory + .appendingPathComponent("CoreDataStackTests-\(UUID().uuidString)") + try FileManager.default.createDirectory(at: tempDir, withIntermediateDirectories: true) + } + + override func tearDownWithError() throws { + if let tempDir { try? FileManager.default.removeItem(at: tempDir) } + } + + private func makeModel() -> NSManagedObjectModel { + let record = NSEntityDescription() + record.name = "UploadRecord" + record.managedObjectClassName = "ABUploadRecord" + let version = NSAttributeDescription(); version.name = "version"; version.attributeType = .stringAttributeType; version.isOptional = true + let build = NSAttributeDescription(); build.name = "build"; build.attributeType = .stringAttributeType; build.isOptional = true + record.properties = [version, build] + let model = NSManagedObjectModel() + model.entities = [record] + return model + } + + private func makeStack(model: NSManagedObjectModel) -> CoreDataStack { + CoreDataStack(applicationSupportDirectoryURL: tempDir, + sqliteStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.sqlite"), + storedataStoreURL: tempDir.appendingPathComponent("OSXCoreDataObjC.storedata"), + model: model) + } + + func testCreatesSQLiteStoreAndPersistsAcrossInstances() throws { + let model = makeModel() + let sqliteURL = tempDir.appendingPathComponent("OSXCoreDataObjC.sqlite") + + let stack = makeStack(model: model) + let ctx = try stack.loadViewContext() + let record = try XCTUnwrap(NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: ctx) as? ABUploadRecord) + record.version = "1.0" + record.build = "7" + try stack.saveChanges() + XCTAssertTrue(FileManager.default.fileExists(atPath: sqliteURL.path), "SQLite store should be created on disk") + + let stack2 = makeStack(model: model) + let ctx2 = try stack2.loadViewContext() + let fetched = try ctx2.fetch(NSFetchRequest(entityName: "UploadRecord")) + XCTAssertEqual(fetched.count, 1) + XCTAssertEqual(fetched.first?.version, "1.0") + XCTAssertEqual(fetched.first?.build, "7") + } + + func testViewContextIsLazyAndCached() throws { + let stack = makeStack(model: makeModel()) + XCTAssertNil(stack.existingViewContext, "no context before first load") + let ctx = try stack.loadViewContext() + XCTAssertTrue(stack.existingViewContext === ctx, "context is cached") + XCTAssertTrue(try stack.loadViewContext() === ctx, "second load returns the same context") + } + + func testSaveBeforeLoadIsNoOp() throws { + let stack = makeStack(model: makeModel()) + XCTAssertNoThrow(try stack.saveChanges()) + } + + func testMigratesLegacyXMLStoreToSQLite() throws { + let model = makeModel() + let xmlURL = tempDir.appendingPathComponent("OSXCoreDataObjC.storedata") + let sqliteURL = tempDir.appendingPathComponent("OSXCoreDataObjC.sqlite") + + let seedCoordinator = NSPersistentStoreCoordinator(managedObjectModel: model) + try seedCoordinator.addPersistentStore(ofType: NSXMLStoreType, configurationName: nil, at: xmlURL, options: nil) + let seedCtx = NSManagedObjectContext(concurrencyType: .mainQueueConcurrencyType) + seedCtx.persistentStoreCoordinator = seedCoordinator + let seeded = NSEntityDescription.insertNewObject(forEntityName: "UploadRecord", into: seedCtx) as? ABUploadRecord + seeded?.version = "legacy-9.9" + try seedCtx.save() + XCTAssertTrue(FileManager.default.fileExists(atPath: xmlURL.path)) + + let stack = makeStack(model: model) + let ctx = try stack.loadViewContext() + XCTAssertTrue(FileManager.default.fileExists(atPath: sqliteURL.path), "SQLite store created") + XCTAssertFalse(FileManager.default.fileExists(atPath: xmlURL.path), "legacy XML store removed after migration") + let fetched = try ctx.fetch(NSFetchRequest(entityName: "UploadRecord")) + XCTAssertEqual(fetched.first?.version, "legacy-9.9", "migrated data survives") + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/DeleteCoordinatorTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/DeleteCoordinatorTests.swift new file mode 100644 index 00000000..71672910 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/DeleteCoordinatorTests.swift @@ -0,0 +1,221 @@ +import XCTest +@testable import AppBoxCore + +/// In-memory `StorageProvider` for delete tests — records deletes/downloads/uploads, serves a seeded `appinfo.json` on download (or `.notFound`), and can fail downloads a configurable number of times. +private final class DeleteFakeProvider: StorageProvider { + let id: StorageProviderID = .dropbox + var currentAccount: StorageAccount? + + var existingAppInfoJSON: Data? + var failDownloadsBeforeSuccess = 0 + private var downloadFailures = 0 + + private(set) var deletedPaths: [RemotePath] = [] + private(set) var downloadedPaths: [RemotePath] = [] + private(set) var uploads: [(path: RemotePath, data: Data)] = [] + + func authenticate() async throws -> StorageAccount { StorageAccount(providerID: .dropbox, accountID: "x") } + func signOut() throws {} + + func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws { + let data = (try? Data(contentsOf: localURL)) ?? Data() + uploads.append((remotePath, data)) + progress?(1.0) + } + + func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink { + ShareableLink(url: URL(string: "https://x")!, isDirectDownload: true) + } + func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? { nil } + func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] { [] } + func delete(at remotePath: RemotePath) async throws { deletedPaths.append(remotePath) } + + func download(from remotePath: RemotePath, to localURL: URL) async throws { + if downloadFailures < failDownloadsBeforeSuccess { + downloadFailures += 1 + throw StorageError.network("transient") + } + downloadedPaths.append(remotePath) + guard let data = existingAppInfoJSON else { throw StorageError.notFound } + try data.write(to: localURL) + } + + var existingAppInfoRevision: String? = "rev-7" + var conflictOnPreconditionedUpload = false + private(set) var uploadPreconditions: [String?] = [] + + func upload(fileAt localURL: URL, to remotePath: RemotePath, + ifRevisionMatches precondition: String?, progress: ((Double) -> Void)?) async throws -> String? { + uploadPreconditions.append(precondition) + if conflictOnPreconditionedUpload, precondition != nil { + throw StorageError.conflict("changed on the server") + } + try await upload(fileAt: localURL, to: remotePath, progress: progress) + return "rev-new" + } + + func downloadWithRevision(from remotePath: RemotePath, to localURL: URL) async throws -> String? { + try await download(from: remotePath, to: localURL) + return existingAppInfoRevision + } +} + +final class DeleteCoordinatorTests: XCTestCase { + + private var tempDir: URL! + + override func setUpWithError() throws { + tempDir = FileManager.default.temporaryDirectory.appendingPathComponent("DeleteCoordinatorTests-\(UUID().uuidString)") + try FileManager.default.createDirectory(at: tempDir, withIntermediateDirectories: true) + } + + override func tearDownWithError() throws { + if let tempDir { try? FileManager.default.removeItem(at: tempDir) } + } + + // MARK: Helpers + + private func entry(_ link: String) -> AppVersionEntry { + AppInfoJSON.makeEntry(AppVersionInput(name: "App", version: "1", build: "1", identifier: "com.x", + manifestLink: link, timestamp: 1, shareableIPALink: "ipa", + includeIPALink: false, includeDetails: false)) + } + + private func appInfoData(versions: [AppVersionEntry], latest: AppVersionEntry?) -> Data { + let file = AppInfoFile(latestVersion: latest, versions: versions, + uniqueLinkShared: "https://s/full", uniqueLinkShort: "https://s/abc") + let encoder = JSONEncoder(); encoder.outputFormatting = [.prettyPrinted] + return try! encoder.encode(file) + } + + private func decodeUploaded(_ data: Data) -> AppInfoFile { try! JSONDecoder().decode(AppInfoFile.self, from: data) } + + private func plan(keepSameLink: Bool, manifestToRemove: String = "m1") -> DeletePlan { + DeletePlan(keepSameLink: keepSameLink, + appInfoRemotePath: RemotePath(path: "/app/appinfo.json"), + manifestLinkToRemove: manifestToRemove, + appFolderPath: RemotePath(path: "/app"), + buildFolderPath: RemotePath(path: "/app/1.0"), + workingDirectory: tempDir) + } + + // MARK: Tests + + func testNonKeepSameLink_deletesBuildFolderOnly() async throws { + let provider = DeleteFakeProvider() + let outcome = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: false)) + + XCTAssertEqual(outcome, .deletedFolder(RemotePath(path: "/app/1.0"))) + XCTAssertEqual(provider.deletedPaths.map(\.path), ["/app/1.0"]) + XCTAssertTrue(provider.downloadedPaths.isEmpty) + XCTAssertTrue(provider.uploads.isEmpty) + } + + func testKeepSameLink_removeNonLast_reuploadsAppInfoWithoutVersion() async throws { + let provider = DeleteFakeProvider() + provider.existingAppInfoJSON = appInfoData(versions: [entry("m1"), entry("m2")], latest: entry("m2")) + let outcome = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true, manifestToRemove: "m1")) + + XCTAssertEqual(outcome, .updatedAppInfo) + XCTAssertTrue(provider.deletedPaths.isEmpty) + XCTAssertEqual(provider.uploads.map(\.path.path), ["/app/appinfo.json"]) + let uploaded = decodeUploaded(provider.uploads[0].data) + XCTAssertEqual(uploaded.versions.map(\.manifestLink), ["m2"]) + XCTAssertEqual(uploaded.latestVersion?.manifestLink, "m2") + XCTAssertEqual(uploaded.uniqueLinkShort, "https://s/abc") // other top-level keys preserved + } + + func testKeepSameLink_removeLatest_latestFollows() async throws { + let provider = DeleteFakeProvider() + provider.existingAppInfoJSON = appInfoData(versions: [entry("m1"), entry("m2")], latest: entry("m2")) + let outcome = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true, manifestToRemove: "m2")) + + XCTAssertEqual(outcome, .updatedAppInfo) + let uploaded = decodeUploaded(provider.uploads[0].data) + XCTAssertEqual(uploaded.versions.map(\.manifestLink), ["m1"]) + XCTAssertEqual(uploaded.latestVersion?.manifestLink, "m1") // latest fell back to the remaining entry + } + + func testKeepSameLink_removeLastRemaining_deletesAppRootFolder() async throws { + let provider = DeleteFakeProvider() + provider.existingAppInfoJSON = appInfoData(versions: [entry("m1")], latest: entry("m1")) + let outcome = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true, manifestToRemove: "m1")) + + XCTAssertEqual(outcome, .deletedFolder(RemotePath(path: "/app"))) + XCTAssertEqual(provider.deletedPaths.map(\.path), ["/app"]) + XCTAssertTrue(provider.uploads.isEmpty) + } + + func testKeepSameLink_appInfoMissing_isNoOp() async throws { + let provider = DeleteFakeProvider() + let outcome = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true)) + + XCTAssertEqual(outcome, .updatedAppInfo) + XCTAssertTrue(provider.deletedPaths.isEmpty) + XCTAssertTrue(provider.uploads.isEmpty) + } + + func testTransientDownloadError_retriesThenSucceeds() async throws { + let provider = DeleteFakeProvider() + provider.existingAppInfoJSON = appInfoData(versions: [entry("m1"), entry("m2")], latest: entry("m2")) + provider.failDownloadsBeforeSuccess = 1 + let outcome = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true, manifestToRemove: "m1")) + + XCTAssertEqual(outcome, .updatedAppInfo) + XCTAssertEqual(provider.uploads.count, 1) + } + + func testKeepSameLink_reuploadPreconditionedOnDownloadedRevision() async throws { + let provider = DeleteFakeProvider() + provider.existingAppInfoJSON = appInfoData(versions: [entry("m1"), entry("m2")], latest: entry("m2")) + provider.existingAppInfoRevision = "rev-7" + _ = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true, manifestToRemove: "m1")) + + XCTAssertEqual(provider.uploadPreconditions, ["rev-7"]) + } + + func testConcurrentWriterConflict_surfacesAsConflictError() async throws { + let provider = DeleteFakeProvider() + provider.existingAppInfoJSON = appInfoData(versions: [entry("m1"), entry("m2")], latest: entry("m2")) + provider.conflictOnPreconditionedUpload = true + + do { + _ = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: true, manifestToRemove: "m1")) + XCTFail("expected a conflict when the shared appinfo.json changed under us") + } catch let StorageError.conflict(message) { + XCTAssertEqual(message, "changed on the server") + XCTAssertTrue(provider.deletedPaths.isEmpty) + } + } + + func testNonRetryableDeleteError_propagates() async { + final class FailingProvider: DeleteFakeProviderBase { + override func delete(at remotePath: RemotePath) async throws { throw StorageError.notAuthenticated } + } + let provider = FailingProvider() + do { + _ = try await DeleteCoordinator(provider: provider).run(plan(keepSameLink: false)) + XCTFail("expected a non-retryable error to propagate") + } catch let error as StorageError { + XCTAssertEqual(error, .notAuthenticated) + } catch { + XCTFail("unexpected error: \(error)") + } + } +} + +/// Open base so a single test can override one method (Swift can't subclass a `private final` type). +class DeleteFakeProviderBase: StorageProvider { + let id: StorageProviderID = .dropbox + var currentAccount: StorageAccount? + func authenticate() async throws -> StorageAccount { StorageAccount(providerID: .dropbox, accountID: "x") } + func signOut() throws {} + func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws {} + func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink { + ShareableLink(url: URL(string: "https://x")!, isDirectDownload: true) + } + func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? { nil } + func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] { [] } + func delete(at remotePath: RemotePath) async throws {} + func download(from remotePath: RemotePath, to localURL: URL) async throws {} +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/DropboxCLIAuthTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/DropboxCLIAuthTests.swift new file mode 100644 index 00000000..185b284f --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/DropboxCLIAuthTests.swift @@ -0,0 +1,61 @@ +import XCTest +@testable import AppBoxCore + +final class DropboxCLIAuthTests: XCTestCase { + + /// `beginAuthorization` must build a paste-code authorize URL: a real PKCE challenge, the app key, and crucially NO `redirect_uri` (Dropbox rejects any unregistered redirect, so we send none and let it display the code). + func testBeginAuthorization_buildsNoRedirectPasteCodeURL() throws { + let auth = DropboxCLIAuth(appKey: "abc123") + let request = auth.beginAuthorization() + + let items = try XCTUnwrap(URLComponents(url: request.authorizeURL, resolvingAgainstBaseURL: false)?.queryItems) + func value(_ name: String) -> String? { items.first { $0.name == name }?.value } + + XCTAssertEqual(request.authorizeURL.host, "www.dropbox.com") + XCTAssertEqual(request.authorizeURL.path, "/oauth2/authorize") + XCTAssertEqual(value("client_id"), "abc123") + XCTAssertEqual(value("response_type"), "code") + XCTAssertEqual(value("code_challenge_method"), "S256") + XCTAssertNil(value("redirect_uri")) + XCTAssertNil(value("state")) + + let challenge = try XCTUnwrap(value("code_challenge")) + XCTAssertFalse(challenge.isEmpty) + XCTAssertFalse(request.verifier.isEmpty) + } + + // MARK: SpaceUsage derived values + + func testSpaceUsage_individual_allocatedAndAvailable() { + let usage = DropboxCLISession.SpaceUsage(usedBytes: 30, allocation: .individual(allocated: 100)) + XCTAssertEqual(usage.allocatedBytes, 100) + XCTAssertEqual(usage.availableBytes, 70) + } + + func testSpaceUsage_team_withPerUserQuota_usesUserAllocationNotTeamTotal() { + let usage = DropboxCLISession.SpaceUsage( + usedBytes: 40, + allocation: .team(used: 250, allocated: 1000, userAllocated: 100, userUsed: 40)) + XCTAssertEqual(usage.allocatedBytes, 100) + XCTAssertEqual(usage.availableBytes, 60) + } + + func testSpaceUsage_team_unrestrictedMember_hasNoPersonalTotal() { + let usage = DropboxCLISession.SpaceUsage( + usedBytes: 40, + allocation: .team(used: 250, allocated: 1000, userAllocated: 0, userUsed: 40)) + XCTAssertNil(usage.allocatedBytes) + XCTAssertNil(usage.availableBytes) + } + + func testSpaceUsage_availableClampsAtZeroWhenOverAllocated() { + let usage = DropboxCLISession.SpaceUsage(usedBytes: 120, allocation: .individual(allocated: 100)) + XCTAssertEqual(usage.availableBytes, 0) + } + + func testSpaceUsage_otherAllocation_hasNoKnownTotal() { + let usage = DropboxCLISession.SpaceUsage(usedBytes: 10, allocation: .other) + XCTAssertNil(usage.allocatedBytes) + XCTAssertNil(usage.availableBytes) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/DropboxPKCEAuthTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/DropboxPKCEAuthTests.swift new file mode 100644 index 00000000..717d6f1c --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/DropboxPKCEAuthTests.swift @@ -0,0 +1,129 @@ +import XCTest +import CryptoKit +@testable import AppBoxCore + +final class DropboxPKCEAuthTests: XCTestCase { + + // MARK: PKCE + + func testGeneratePKCE_challengeIsS256OfVerifier_andURLSafe() { + let pkce = DropboxPKCEAuth.generatePKCE() + + let expected = DropboxPKCEAuth.base64URLEncode(Data(SHA256.hash(data: Data(pkce.verifier.utf8)))) + XCTAssertEqual(pkce.challenge, expected) + + for s in [pkce.verifier, pkce.challenge] { + XCTAssertFalse(s.contains("+")) + XCTAssertFalse(s.contains("/")) + XCTAssertFalse(s.contains("=")) + XCTAssertFalse(s.isEmpty) + } + XCTAssertTrue((43...128).contains(pkce.verifier.count)) + } + + func testGeneratePKCE_isRandomEachTime() { + XCTAssertNotEqual(DropboxPKCEAuth.generatePKCE().verifier, DropboxPKCEAuth.generatePKCE().verifier) + XCTAssertNotEqual(DropboxPKCEAuth.randomState(), DropboxPKCEAuth.randomState()) + } + + // MARK: Authorize URL + + func testAuthorizeURL_withRedirect_containsRequiredParams() throws { + let url = DropboxPKCEAuth.authorizeURL(appKey: "abc123", redirectURI: "http://127.0.0.1:54321", + codeChallenge: "CHAL", state: "STATE") + let items = try XCTUnwrap(URLComponents(url: url, resolvingAgainstBaseURL: false)?.queryItems) + func value(_ name: String) -> String? { items.first { $0.name == name }?.value } + + XCTAssertEqual(url.host, "www.dropbox.com") + XCTAssertEqual(url.path, "/oauth2/authorize") + XCTAssertEqual(value("client_id"), "abc123") + XCTAssertEqual(value("response_type"), "code") + XCTAssertEqual(value("code_challenge"), "CHAL") + XCTAssertEqual(value("code_challenge_method"), "S256") + XCTAssertEqual(value("token_access_type"), "offline") + XCTAssertEqual(value("redirect_uri"), "http://127.0.0.1:54321") + XCTAssertEqual(value("state"), "STATE") + XCTAssertEqual(value("scope"), DropboxPKCEAuth.defaultScopes.joined(separator: " ")) + } + + /// The CLI's paste-code flow sends no `redirect_uri` (and no `state`). + func testAuthorizeURL_pasteCode_omitsRedirectAndState() throws { + let url = DropboxPKCEAuth.authorizeURL(appKey: "abc123", codeChallenge: "CHAL") + let items = try XCTUnwrap(URLComponents(url: url, resolvingAgainstBaseURL: false)?.queryItems) + func value(_ name: String) -> String? { items.first { $0.name == name }?.value } + + XCTAssertNil(value("redirect_uri")) + XCTAssertNil(value("state")) + XCTAssertEqual(value("client_id"), "abc123") + XCTAssertEqual(value("response_type"), "code") + XCTAssertEqual(value("code_challenge"), "CHAL") + XCTAssertEqual(value("token_access_type"), "offline") + } + + // MARK: Token response parsing + + func testParseTokenResponse_fullAndUidFallback() throws { + let full = Data(#"{"access_token":"sl.AAA","refresh_token":"rt.BBB","uid":"42","expires_in":14400,"token_type":"bearer"}"#.utf8) + let token = try DropboxPKCEAuth.parseTokenResponse(full) + XCTAssertEqual(token.accessToken, "sl.AAA") + XCTAssertEqual(token.refreshToken, "rt.BBB") + XCTAssertEqual(token.uid, "42") + XCTAssertEqual(token.expiresIn, 14400) + + let fallback = Data(#"{"access_token":"x","account_id":"dbid:ZZZ"}"#.utf8) + let token2 = try DropboxPKCEAuth.parseTokenResponse(fallback) + XCTAssertEqual(token2.uid, "dbid:ZZZ") + XCTAssertNil(token2.refreshToken) + XCTAssertNil(token2.expiresIn) + } + + func testParseTokenResponse_missingAccessTokenThrows() { + XCTAssertThrowsError(try DropboxPKCEAuth.parseTokenResponse(Data(#"{"error":"invalid_grant"}"#.utf8))) + } + + // MARK: Token exchange (over the HTTPClient seam) + + func testExchangeCode_postsCorrectRequestAndParsesToken() async throws { + let stub = StubHTTPClient { _ in + HTTPResponse(statusCode: 200, + data: Data(#"{"access_token":"sl.AAA","refresh_token":"rt.BBB","uid":"42","expires_in":14400}"#.utf8)) + } + let token = try await DropboxPKCEAuth.exchangeCode("the-code", appKey: "abc123", + codeVerifier: "the-verifier", + redirectURI: "http://127.0.0.1:54321", httpClient: stub) + XCTAssertEqual(token.accessToken, "sl.AAA") + XCTAssertEqual(token.refreshToken, "rt.BBB") + + let request = try XCTUnwrap(stub.sentRequests.first) + XCTAssertEqual(request.method, .post) + XCTAssertEqual(request.url, DropboxPKCEAuth.tokenEndpoint) + XCTAssertEqual(request.headers["Content-Type"], "application/x-www-form-urlencoded") + let body = String(decoding: request.body ?? Data(), as: UTF8.self) + XCTAssertTrue(body.contains("code=the-code")) + XCTAssertTrue(body.contains("grant_type=authorization_code")) + XCTAssertTrue(body.contains("code_verifier=the-verifier")) + XCTAssertTrue(body.contains("client_id=abc123")) + } + + func testExchangeCode_pasteCode_omitsRedirectURIFromBody() async throws { + let stub = StubHTTPClient { _ in + HTTPResponse(statusCode: 200, data: Data(#"{"access_token":"sl.AAA","uid":"42"}"#.utf8)) + } + _ = try await DropboxPKCEAuth.exchangeCode("the-code", appKey: "abc123", + codeVerifier: "the-verifier", httpClient: stub) + let body = String(decoding: try XCTUnwrap(stub.sentRequests.first?.body), as: UTF8.self) + XCTAssertFalse(body.contains("redirect_uri=")) + XCTAssertTrue(body.contains("code_verifier=the-verifier")) + } + + func testExchangeCode_httpErrorThrows() async { + let stub = StubHTTPClient { _ in HTTPResponse(statusCode: 400, data: Data(#"{"error":"invalid_grant"}"#.utf8)) } + do { + _ = try await DropboxPKCEAuth.exchangeCode("bad", appKey: "k", codeVerifier: "v", + redirectURI: "http://127.0.0.1:1", httpClient: stub) + XCTFail("expected token exchange to throw on HTTP 400") + } catch let error as StorageError { + if case .authenticationFailed = error { } else { XCTFail("expected .authenticationFailed, got \(error)") } + } catch { XCTFail("unexpected error \(error)") } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/DropboxTokenMigrationTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/DropboxTokenMigrationTests.swift new file mode 100644 index 00000000..a910cb3a --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/DropboxTokenMigrationTests.swift @@ -0,0 +1,63 @@ +import XCTest +@testable import AppBoxCore + +/// Verifies the v3→v4 token migration decodes the legacy `NSKeyedArchiver` `DBAccessToken` archive. +final class DropboxTokenMigrationTests: XCTestCase { + + /// Archives a `LegacyDBAccessToken` under the class name `DBAccessToken`, as the old SDK did. + private func legacyArchive(uid: String, accessToken: String, + refreshToken: String?, expiry: Double) -> Data { + let token = LegacyDBAccessToken(uid: uid, accessToken: accessToken, + refreshToken: refreshToken, tokenExpirationTimestamp: expiry) + let archiver = NSKeyedArchiver(requiringSecureCoding: true) + archiver.setClassName("DBAccessToken", for: LegacyDBAccessToken.self) + archiver.encode(token, forKey: NSKeyedArchiveRootObjectKey) + archiver.finishEncoding() + return archiver.encodedData + } + + func testDecodesShortLivedLegacyToken() { + let data = legacyArchive(uid: "245493250", accessToken: "sl.abc", + refreshToken: "rt.xyz", expiry: 1_700_000_000) + let decoded = LegacyDBAccessToken.decode(from: data) + XCTAssertEqual(decoded?.uid, "245493250") + XCTAssertEqual(decoded?.accessToken, "sl.abc") + XCTAssertEqual(decoded?.refreshToken, "rt.xyz") + XCTAssertEqual(decoded?.tokenExpirationTimestamp, 1_700_000_000) + + let token = DropboxTokenMigration.makeToken(from: decoded!) + XCTAssertEqual(token.accessToken, "sl.abc") + XCTAssertEqual(token.uid, "245493250") + XCTAssertEqual(token.refreshToken, "rt.xyz") + XCTAssertEqual(token.tokenExpirationTimestamp, 1_700_000_000) + } + + func testDecodesLongLivedLegacyToken() { + let data = legacyArchive(uid: "42", accessToken: "longlived", refreshToken: nil, expiry: 0) + let decoded = LegacyDBAccessToken.decode(from: data) + XCTAssertEqual(decoded?.accessToken, "longlived") + XCTAssertNil(decoded?.refreshToken) + + let token = DropboxTokenMigration.makeToken(from: decoded!) + XCTAssertNil(token.refreshToken) + XCTAssertNil(token.tokenExpirationTimestamp) + } + + func testConvertedTokenRoundTripsThroughSwiftyDropboxJSON() { + struct Mirror: Codable, Equatable { + let accessToken: String; let uid: String + let refreshToken: String?; let tokenExpirationTimestamp: Double? + } + let decoded = LegacyDBAccessToken.decode( + from: legacyArchive(uid: "7", accessToken: "a", refreshToken: "r", expiry: 123))! + let token = DropboxTokenMigration.makeToken(from: decoded) + let json = try! JSONEncoder().encode(token) + let back = try! JSONDecoder().decode(Mirror.self, from: json) + XCTAssertEqual(back, Mirror(accessToken: "a", uid: "7", refreshToken: "r", tokenExpirationTimestamp: 123)) + } + + func testDecodeRejectsNonArchiveData() { + let json = Data(#"{"accessToken":"a","uid":"1"}"#.utf8) + XCTAssertNil(LegacyDBAccessToken.decode(from: json)) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/DropboxTransportTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/DropboxTransportTests.swift new file mode 100644 index 00000000..36f8dc8e --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/DropboxTransportTests.swift @@ -0,0 +1,45 @@ +import XCTest +@testable import AppBoxCore + +/// Locks the one behaviour the transport flip changes: how a Dropbox share URL is normalized for AppBox's dashboard. +final class DropboxTransportTests: XCTestCase { + + func testNormalizedShareURL_legacySharedLink() { + XCTAssertEqual( + DropboxTransport.normalizedShareURL("https://www.dropbox.com/s/abc123/App.ipa?dl=0"), + "https://www.dropbox.com/s/abc123/App.ipa" + ) + XCTAssertEqual( + DropboxTransport.normalizedShareURL("https://www.dropbox.com/s/abc123/App.ipa?dl=1"), + "https://www.dropbox.com/s/abc123/App.ipa" + ) + } + + func testNormalizedShareURL_modernSCLLinkKeepsRlkey() { + XCTAssertEqual( + DropboxTransport.normalizedShareURL("https://www.dropbox.com/scl/fi/xyz/App.ipa?rlkey=secret&dl=0"), + "https://www.dropbox.com/scl/fi/xyz/App.ipa?rlkey=secret" + ) + } + + func testNormalizedShareURL_noDLParamUnchanged() { + XCTAssertEqual( + DropboxTransport.normalizedShareURL("https://www.dropbox.com/scl/fi/xyz/App.ipa?rlkey=secret"), + "https://www.dropbox.com/scl/fi/xyz/App.ipa?rlkey=secret" + ) + } + + func testFailureKindAndAuthFlagRoundTripThroughNSError() { + let auth = DropboxTransport.nsError(message: "x", kind: .other, isAuth: true) + XCTAssertTrue(DropboxTransport.isAuthError(auth)) + XCTAssertEqual(DropboxTransport.failureKind(for: auth), .other) + + let server = DropboxTransport.nsError(message: "y", kind: .retryableServer, isAuth: false) + XCTAssertFalse(DropboxTransport.isAuthError(server)) + XCTAssertEqual(DropboxTransport.failureKind(for: server), .retryableServer) + + let foreign = NSError(domain: "other", code: 1) + XCTAssertEqual(DropboxTransport.failureKind(for: foreign), ABUploadFailureKind.none) + XCTAssertFalse(DropboxTransport.isAuthError(foreign)) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/Fakes/Fakes.swift b/AppBoxCore/Tests/AppBoxCoreTests/Fakes/Fakes.swift new file mode 100644 index 00000000..091ce334 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/Fakes/Fakes.swift @@ -0,0 +1,216 @@ +import Foundation +@testable import AppBoxCore + +// MARK: - KeyValueStore + +final class InMemoryKeyValueStore: KeyValueStore { + private(set) var storage: [String: Any] = [:] + + func bool(forKey key: String) -> Bool { storage[key] as? Bool ?? false } + func integer(forKey key: String) -> Int { storage[key] as? Int ?? 0 } + func string(forKey key: String) -> String? { storage[key] as? String } + func data(forKey key: String) -> Data? { storage[key] as? Data } + func object(forKey key: String) -> Any? { storage[key] } + + func set(_ value: Any?, forKey key: String) { + if let value { storage[key] = value } else { storage.removeValue(forKey: key) } + } + func removeObject(forKey key: String) { storage.removeValue(forKey: key) } +} + +// MARK: - SecureStore + +final class InMemorySecureStore: SecureStore { + private struct ItemKey: Hashable { let service: String; let account: String } + private var storage: [ItemKey: Data] = [:] + + func data(forAccount account: String, service: String) throws -> Data? { + storage[ItemKey(service: service, account: account)] + } + func set(_ data: Data, forAccount account: String, service: String) throws { + storage[ItemKey(service: service, account: account)] = data + } + func removeItem(forAccount account: String, service: String) throws { + storage.removeValue(forKey: ItemKey(service: service, account: account)) + } + func accounts(forService service: String) throws -> [String] { + storage.keys.filter { $0.service == service }.map { $0.account } + } + func removeAllItems(forService service: String) throws { + for key in storage.keys where key.service == service { storage.removeValue(forKey: key) } + } +} + +// MARK: - HTTPClient + +final class StubHTTPClient: HTTPClient { + var responder: (HTTPRequest) throws -> HTTPResponse + private(set) var sentRequests: [HTTPRequest] = [] + + init(responder: @escaping (HTTPRequest) throws -> HTTPResponse = { _ in HTTPResponse(statusCode: 200, data: Data()) }) { + self.responder = responder + } + + func send(_ request: HTTPRequest) async throws -> HTTPResponse { + sentRequests.append(request) + return try responder(request) + } +} + +// MARK: - FileSystem + +final class InMemoryReadHandle: FileReadHandle { + private let data: Data + private var offset = 0 + init(data: Data) { self.data = data } + + func read(upToCount count: Int) throws -> Data { + let end = min(offset + count, data.count) + guard offset < end else { return Data() } + defer { offset = end } + return data.subdata(in: offset.. = [] + private var permissions: [String: Int] = [:] + private let tempDir = URL(fileURLWithPath: "/tmp/appboxcore-inmemory", isDirectory: true) + private var counter = 0 + + func temporaryDirectory() -> URL { tempDir } + + func createUniqueDirectory(permissions perms: Int?) throws -> URL { + counter += 1 + let url = tempDir.appendingPathComponent("dir-\(counter)", isDirectory: true) + try createDirectory(at: url, permissions: perms) + return url + } + func createDirectory(at url: URL, permissions perms: Int?) throws { + directories.insert(url.path) + if let perms { permissions[url.path] = perms } + } + func fileExists(at url: URL) -> Bool { files[url.path] != nil || directories.contains(url.path) } + func removeItem(at url: URL) throws { + files.removeValue(forKey: url.path) + directories.remove(url.path) + permissions.removeValue(forKey: url.path) + } + func attributes(of url: URL) throws -> FileAttributes { + if let data = files[url.path] { + return FileAttributes(size: Int64(data.count), posixPermissions: permissions[url.path]) + } + if directories.contains(url.path) { + return FileAttributes(size: 0, posixPermissions: permissions[url.path]) + } + throw CocoaError(.fileNoSuchFile) + } + func read(contentsOf url: URL) throws -> Data { + guard let data = files[url.path] else { throw CocoaError(.fileNoSuchFile) } + return data + } + func write(_ data: Data, to url: URL) throws { files[url.path] = data } + func openForReading(_ url: URL) throws -> FileReadHandle { + guard let data = files[url.path] else { throw CocoaError(.fileNoSuchFile) } + return InMemoryReadHandle(data: data) + } +} + +// MARK: - DateProvider / Reachability / ProgressReporter + +final class FixedDateProvider: DateProvider { + var date: Date + init(_ date: Date) { self.date = date } + func now() -> Date { date } +} + +final class StubReachability: Reachability { + var isConnected: Bool + init(isConnected: Bool = true) { self.isConnected = isConnected } +} + +final class RecordingProgressReporter: ProgressReporter { + struct Entry: Equatable { let stage: UploadStage; let message: String?; let fraction: Double? } + private(set) var entries: [Entry] = [] + + func report(stage: UploadStage, message: String?, fractionCompleted: Double?) { + entries.append(Entry(stage: stage, message: message, fraction: fractionCompleted)) + } + var stages: [UploadStage] { entries.map(\.stage) } +} + +// MARK: - DropboxAccessTokenProviding + +final class StubTokenProvider: DropboxAccessTokenProviding { + var token: String? + init(token: String? = "stub-dropbox-token") { self.token = token } + func currentAccessToken() async -> String? { token } +} + +// MARK: - StorageProvider + +final class FakeStorageProvider: StorageProvider { + let id: StorageProviderID + private(set) var currentAccount: StorageAccount? + + var accountToReturn: StorageAccount + var uploadError: Error? + var shareableLink: ShareableLink + private(set) var uploadedFiles: [(local: URL, remote: RemotePath)] = [] + private(set) var deletedPaths: [RemotePath] = [] + + init(id: StorageProviderID = .dropbox, + account: StorageAccount? = nil, + shareableLink: ShareableLink = ShareableLink(url: URL(string: "https://example.com/dl")!, isDirectDownload: true)) { + self.id = id + self.currentAccount = account + self.accountToReturn = account ?? StorageAccount(providerID: id, accountID: "fake-account") + self.shareableLink = shareableLink + } + + func authenticate() async throws -> StorageAccount { + currentAccount = accountToReturn + return accountToReturn + } + func signOut() throws { currentAccount = nil } + + func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws { + if let uploadError { throw uploadError } + progress?(1.0) + uploadedFiles.append((localURL, remotePath)) + } + + func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink { shareableLink } + func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? { shareableLink } + func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] { [] } + func delete(at remotePath: RemotePath) async throws { deletedPaths.append(remotePath) } + private(set) var downloadedPaths: [RemotePath] = [] + func download(from remotePath: RemotePath, to localURL: URL) async throws { downloadedPaths.append(remotePath) } + + private(set) var uploadPreconditions: [String?] = [] + private var revisionsByPath: [String: Int] = [:] + + func upload(fileAt localURL: URL, to remotePath: RemotePath, + ifRevisionMatches precondition: String?, progress: ((Double) -> Void)?) async throws -> String? { + uploadPreconditions.append(precondition) + if let precondition, precondition != currentRevision(of: remotePath) { + throw StorageError.conflict("fake: revision mismatch") + } + try await upload(fileAt: localURL, to: remotePath, progress: progress) + let next = (revisionsByPath[remotePath.path] ?? 0) + 1 + revisionsByPath[remotePath.path] = next + return "r\(next)" + } + + func downloadWithRevision(from remotePath: RemotePath, to localURL: URL) async throws -> String? { + try await download(from: remotePath, to: localURL) + return currentRevision(of: remotePath) + } + + private func currentRevision(of path: RemotePath) -> String? { + revisionsByPath[path.path].map { "r\($0)" } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/FakesTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/FakesTests.swift new file mode 100644 index 00000000..0248f990 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/FakesTests.swift @@ -0,0 +1,113 @@ +import XCTest +@testable import AppBoxCore + +final class FakesTests: XCTestCase { + + func testInMemoryKeyValueStore_roundTripAndDefaults() { + let store = InMemoryKeyValueStore() + store.set("v", forKey: "k") + XCTAssertEqual(store.string(forKey: "k"), "v") + + store.set(nil, forKey: "k") + XCTAssertNil(store.string(forKey: "k")) + XCTAssertEqual(store.integer(forKey: "missing"), 0) + XCTAssertFalse(store.bool(forKey: "missing")) + } + + func testInMemorySecureStore_roundTripAccountsAndRemoval() throws { + let store = InMemorySecureStore() + try store.setString("token-a", forAccount: "alice", service: "dropbox") + try store.setString("token-b", forAccount: "bob", service: "dropbox") + + XCTAssertEqual(try store.string(forAccount: "alice", service: "dropbox"), "token-a") + XCTAssertEqual(Set(try store.accounts(forService: "dropbox")), ["alice", "bob"]) + + try store.removeItem(forAccount: "alice", service: "dropbox") + XCTAssertNil(try store.data(forAccount: "alice", service: "dropbox")) + + try store.removeAllItems(forService: "dropbox") + XCTAssertEqual(try store.accounts(forService: "dropbox"), []) + } + + func testStubHTTPClient_recordsRequestsAndReturnsCannedResponse() async throws { + let stub = StubHTTPClient { _ in HTTPResponse(statusCode: 201, data: Data("ok".utf8)) } + let response = try await stub.send(HTTPRequest(url: URL(string: "https://x.test")!, method: .post)) + + XCTAssertEqual(response.statusCode, 201) + XCTAssertTrue(response.isSuccess) + XCTAssertEqual(stub.sentRequests.count, 1) + XCTAssertEqual(stub.sentRequests.first?.method, .post) + } + + func testInMemoryFileSystem_writeReadRemoveAndChunk() throws { + let fs = InMemoryFileSystem() + let dir = try fs.createUniqueDirectory(permissions: 0o700) + XCTAssertEqual(try fs.attributes(of: dir).posixPermissions, 0o700) + + let file = dir.appendingPathComponent("f.bin") + try fs.write(Data([1, 2, 3, 4, 5]), to: file) + XCTAssertTrue(fs.fileExists(at: file)) + XCTAssertEqual(try fs.attributes(of: file).size, 5) + + let handle = try fs.openForReading(file) + XCTAssertEqual(Array(try handle.read(upToCount: 2)), [1, 2]) + try handle.seek(toOffset: 4) + XCTAssertEqual(Array(try handle.read(upToCount: 10)), [5]) + + try fs.removeItem(at: file) + XCTAssertFalse(fs.fileExists(at: file)) + } + + func testInMemoryFileSystem_uniqueDirectoriesDiffer() throws { + let fs = InMemoryFileSystem() + XCTAssertNotEqual(try fs.createUniqueDirectory(), try fs.createUniqueDirectory()) + } + + func testFixedDateProvider_returnsFixedTime() { + let date = Date(timeIntervalSince1970: 1000) + XCTAssertEqual(FixedDateProvider(date).now(), date) + } + + func testRecordingProgressReporter_recordsStages() { + let reporter = RecordingProgressReporter() + reporter.report(stage: .uploading, message: "m", fractionCompleted: 0.5) + reporter.report(stage: .completed, message: nil, fractionCompleted: 1) + + XCTAssertEqual(reporter.stages, [.uploading, .completed]) + XCTAssertEqual(reporter.entries.first?.fraction, 0.5) + } + + func testNullProgressReporter_doesNotCrash() { + NullProgressReporter().report(stage: .preparing, message: nil, fractionCompleted: nil) + } + + func testFakeStorageProvider_authenticateUploadAndLink() async throws { + let provider = FakeStorageProvider() + XCTAssertNil(provider.currentAccount) + + let account = try await provider.authenticate() + XCTAssertEqual(provider.currentAccount, account) + + let path = RemotePath(["com.acme.app", "1.0", "app.ipa"]) + var reported = 0.0 + try await provider.upload(fileAt: URL(fileURLWithPath: "/tmp/app.ipa"), to: path) { reported = $0 } + + XCTAssertEqual(reported, 1.0) + XCTAssertEqual(provider.uploadedFiles.count, 1) + XCTAssertEqual(provider.uploadedFiles.first?.remote, path) + + let link = try await provider.createShareableLink(for: path) + XCTAssertTrue(link.isDirectDownload) + } + + func testFakeStorageProvider_uploadPropagatesError() async { + let provider = FakeStorageProvider() + provider.uploadError = StorageError.network("down") + do { + try await provider.upload(fileAt: URL(fileURLWithPath: "/tmp/x"), to: RemotePath(["x"]), progress: nil) + XCTFail("expected upload to throw") + } catch { + XCTAssertEqual(error as? StorageError, .network("down")) + } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/IPAExtractorTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/IPAExtractorTests.swift new file mode 100644 index 00000000..c1eab7ac --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/IPAExtractorTests.swift @@ -0,0 +1,85 @@ +import XCTest +import ZIPFoundation +@testable import AppBoxCore + +final class ExtractedIPALocatorTests: XCTestCase { + + func testLocatesPayloadInfoPlistAndProvision() { + let entries = [ + "Payload/", + "Payload/MyApp.app/", + "Payload/MyApp.app/Info.plist", + "Payload/MyApp.app/embedded.mobileprovision", + "Payload/MyApp.app/Assets.car" + ] + let layout = ExtractedIPALocator.locate(entries: entries) + XCTAssertEqual(layout?.payloadAppPath, "Payload/MyApp.app") + XCTAssertEqual(layout?.infoPlistPath, "Payload/MyApp.app/Info.plist") + XCTAssertEqual(layout?.mobileProvisionPath, "Payload/MyApp.app/embedded.mobileprovision") + } + + func testProvisionOptional() { + let entries = ["Payload/MyApp.app/Info.plist"] + let layout = ExtractedIPALocator.locate(entries: entries) + XCTAssertEqual(layout?.payloadAppPath, "Payload/MyApp.app") + XCTAssertNil(layout?.mobileProvisionPath) + } + + func testNilWhenNoApp() { + XCTAssertNil(ExtractedIPALocator.locate(entries: ["readme.txt", "Foo/bar.plist"])) + } + + func testNilWhenNoInfoPlist() { + XCTAssertNil(ExtractedIPALocator.locate(entries: ["Payload/MyApp.app/", "Payload/MyApp.app/Assets.car"])) + } + + func testCaseInsensitiveInfoPlistMatch() { + let entries = ["Payload/MyApp.app/info.plist"] + XCTAssertEqual(ExtractedIPALocator.locate(entries: entries)?.infoPlistPath, "Payload/MyApp.app/info.plist") + } +} + +final class IPAExtractorTests: XCTestCase { + + func testExtractsAndLocatesFromRealZip() throws { + let fileManager = FileManager.default + let tmp = fileManager.temporaryDirectory.appendingPathComponent(UUID().uuidString, isDirectory: true) + try fileManager.createDirectory(at: tmp, withIntermediateDirectories: true) + defer { try? fileManager.removeItem(at: tmp) } + + let appDir = tmp.appendingPathComponent("Payload/MyApp.app", isDirectory: true) + try fileManager.createDirectory(at: appDir, withIntermediateDirectories: true) + try Data("plist".utf8).write(to: appDir.appendingPathComponent("Info.plist")) + try Data("profile".utf8).write(to: appDir.appendingPathComponent("embedded.mobileprovision")) + + let ipa = tmp.appendingPathComponent("app.ipa") + try fileManager.zipItem(at: tmp.appendingPathComponent("Payload"), to: ipa) + + let outDir = tmp.appendingPathComponent("out", isDirectory: true) + let extracted = try IPAExtractor(archiveExtractor: ZipFoundationArchiveExtractor()) + .extract(ipaAt: ipa, to: outDir) + + XCTAssertTrue(fileManager.fileExists(atPath: extracted.infoPlistURL.path)) + XCTAssertEqual(try String(contentsOf: extracted.infoPlistURL, encoding: .utf8), "plist") + XCTAssertNotNil(extracted.mobileProvisionURL) + XCTAssertTrue(fileManager.fileExists(atPath: extracted.mobileProvisionURL!.path)) + } + + func testThrowsOnNonIPAZip() throws { + let fileManager = FileManager.default + let tmp = fileManager.temporaryDirectory.appendingPathComponent(UUID().uuidString, isDirectory: true) + try fileManager.createDirectory(at: tmp, withIntermediateDirectories: true) + defer { try? fileManager.removeItem(at: tmp) } + + let junk = tmp.appendingPathComponent("junk", isDirectory: true) + try fileManager.createDirectory(at: junk, withIntermediateDirectories: true) + try Data("x".utf8).write(to: junk.appendingPathComponent("readme.txt")) + let zip = tmp.appendingPathComponent("junk.zip") + try fileManager.zipItem(at: junk, to: zip) + + XCTAssertThrowsError( + try IPAExtractor(archiveExtractor: ZipFoundationArchiveExtractor()) + .extract(ipaAt: zip, to: tmp.appendingPathComponent("out")) + ) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/IPAFieldHelpersTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/IPAFieldHelpersTests.swift new file mode 100644 index 00000000..4afb0f69 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/IPAFieldHelpersTests.swift @@ -0,0 +1,57 @@ +import XCTest +@testable import AppBoxCore + +final class IPANameTests: XCTestCase { + + func testStripSpaces() { + XCTAssertEqual(IPAName.stripSpaces("My App"), "MyApp") + XCTAssertEqual(IPAName.stripSpaces("NoSpaces"), "NoSpaces") + XCTAssertEqual(IPAName.stripSpaces("a b c"), "abc") + } + + func testSanitizedForURL() { + XCTAssertEqual(IPAName.sanitizedForURL("MyApp"), "MyApp") + XCTAssertEqual(IPAName.sanitizedForURL(""), "AppBox") + XCTAssertEqual(IPAName.sanitizedForURL(nil), "AppBox") + XCTAssertEqual(IPAName.sanitizedForURL("1.2.3"), "1.2.3") + XCTAssertEqual(IPAName.sanitizedForURL("/com.example.app"), "/com.example.app") + XCTAssertEqual(IPAName.sanitizedForURL("App\u{01}Box"), "AppBox") + } + func testSanitizedPathComponent_stripsPathStructure() { + XCTAssertEqual(IPAName.sanitizedPathComponent("MyApp"), "MyApp") + XCTAssertEqual(IPAName.sanitizedPathComponent("Is?This"), "IsThis") + XCTAssertEqual(IPAName.sanitizedPathComponent("My/App"), "MyApp") + XCTAssertEqual(IPAName.sanitizedPathComponent("1.2.3"), "1.2.3") + XCTAssertEqual(IPAName.sanitizedPathComponent("u+d3/VPg="), "u+d3VPg=") + XCTAssertEqual(IPAName.sanitizedPathComponent("/"), "AppBox") + XCTAssertEqual(IPAName.sanitizedPathComponent(nil), "AppBox") + } + + func testSanitizedPath_keepsSeparatorsButSanitizesEachSegment() { + XCTAssertEqual(IPAName.sanitizedPath("/com.example.app"), "/com.example.app") + XCTAssertEqual(IPAName.sanitizedPath("/Custom Folder/Sub"), "/CustomFolder/Sub") + XCTAssertEqual(IPAName.sanitizedPath("/com.example.app?x"), "/com.example.appx") + XCTAssertEqual(IPAName.sanitizedPath(""), "AppBox") + XCTAssertEqual(IPAName.sanitizedPath(nil), "AppBox") + } +} + +final class IPADeviceFamilyTests: XCTestCase { + + func testDescribe() { + XCTAssertEqual(IPADeviceFamily.describe([1]), "iPhone") + XCTAssertEqual(IPADeviceFamily.describe([2]), "iPad") + XCTAssertEqual(IPADeviceFamily.describe([1, 2]), "iPhone and iPad") + XCTAssertEqual(IPADeviceFamily.describe([]), "") + XCTAssertEqual(IPADeviceFamily.describe(nil), "") + } + + func testDescribe_appleTVAndOtherFamilies() { + XCTAssertEqual(IPADeviceFamily.describe([3]), "Apple TV") + XCTAssertEqual(IPADeviceFamily.describe([4]), "Apple Watch") + XCTAssertEqual(IPADeviceFamily.describe([6]), "Mac") + XCTAssertEqual(IPADeviceFamily.describe([7]), "Apple Vision Pro") + XCTAssertEqual(IPADeviceFamily.describe([1, 2, 3]), "iPhone and iPad and Apple TV") + XCTAssertEqual(IPADeviceFamily.describe([5]), "") // unknown family ignored + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/InstallLinkTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/InstallLinkTests.swift new file mode 100644 index 00000000..95d8b451 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/InstallLinkTests.swift @@ -0,0 +1,39 @@ +import XCTest +@testable import AppBoxCore + +final class InstallLinkTests: XCTestCase { + + func testMake_wrapsDropboxSharePathIntoInstallPage() { + let url = InstallLink.make(fromDropboxShareURL: + URL(string: "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz")!) + XCTAssertEqual(url?.absoluteString, "https://web.getappbox.com?url=/scl/fi/abc/appinfo.json?rlkey=xyz") + } + + func testMake_handlesLegacySPath() { + let url = InstallLink.make(fromDropboxShareURL: + URL(string: "https://www.dropbox.com/s/abc/appinfo.json")!) + XCTAssertEqual(url?.absoluteString, "https://web.getappbox.com?url=/s/abc/appinfo.json") + } + + func testMake_escapesASecondQueryParameterSoItStaysInsideTheURLValue() { + let url = InstallLink.make(fromDropboxShareURL: + URL(string: "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz&st=tok")!) + XCTAssertEqual(url?.absoluteString, + "https://web.getappbox.com?url=/scl/fi/abc/appinfo.json?rlkey=xyz%26st=tok") + + let components = URLComponents(url: url!, resolvingAgainstBaseURL: false) + XCTAssertEqual(components?.queryItems?.count, 1) + XCTAssertEqual(components?.queryItems?.first?.value, "/scl/fi/abc/appinfo.json?rlkey=xyz&st=tok") + } + + func testMake_returnsNilForNonDropboxURL() { + XCTAssertNil(InstallLink.make(fromDropboxShareURL: URL(string: "https://example.com/x/appinfo.json")!)) + } + + func testMake_customBase() { + let url = InstallLink.make(fromDropboxShareURL: + URL(string: "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz")!, + base: "https://web2.getappbox.com") + XCTAssertEqual(url?.absoluteString, "https://web2.getappbox.com?url=/scl/fi/abc/appinfo.json?rlkey=xyz") + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/MailTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/MailTests.swift new file mode 100644 index 00000000..7527fe62 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/MailTests.swift @@ -0,0 +1,51 @@ +import XCTest +@testable import AppBoxCore + +final class EmailValidatorTests: XCTestCase { + + func testValidSingleEmails() { + XCTAssertTrue(EmailValidator.isValidEmail("user@example.com")) + XCTAssertTrue(EmailValidator.isValidEmail("user@mail.example.com")) + XCTAssertTrue(EmailValidator.isValidEmail("user+tag@example.com")) + XCTAssertTrue(EmailValidator.isValidEmail("first.last@example.co")) + XCTAssertTrue(EmailValidator.isValidEmail("a_b@a-b.com")) + } + + func testInvalidSingleEmails() { + XCTAssertFalse(EmailValidator.isValidEmail("")) + XCTAssertFalse(EmailValidator.isValidEmail("not-an-email")) + XCTAssertFalse(EmailValidator.isValidEmail("user@")) + XCTAssertFalse(EmailValidator.isValidEmail("@example.com")) + XCTAssertFalse(EmailValidator.isValidEmail("user@example")) + XCTAssertFalse(EmailValidator.isValidEmail("user @example.com")) + XCTAssertFalse(EmailValidator.isValidEmail("user@@example.com")) + XCTAssertFalse(EmailValidator.isValidEmail("user@example.c")) + } + + func testAllValidEmailLists() { + XCTAssertTrue(EmailValidator.isAllValidEmails("user@example.com")) + XCTAssertTrue(EmailValidator.isAllValidEmails("a@example.com,b@example.com")) + XCTAssertTrue(EmailValidator.isAllValidEmails("a@example.com, b@mail.example.com")) + } + + func testAllValidEmailLists_rejectInvalidMembers() { + XCTAssertFalse(EmailValidator.isAllValidEmails("a@example.com,not-an-email")) + XCTAssertFalse(EmailValidator.isAllValidEmails("a@example.com,,b@example.com")) + } +} + +final class BuildNotificationMessageTests: XCTestCase { + + func testGeneratesTheSummaryLine() { + XCTAssertEqual( + BuildNotificationMessage.text(name: "AppBox", version: "4.2.0", build: "200", + installURL: "https://appbox.me/x1"), + "AppBox 4.2.0 (200) is ready to test. Install - https://appbox.me/x1") + } + + func testIsASingleLine() { + let text = BuildNotificationMessage.text(name: "AppBox", version: "4.2.0", build: "200", + installURL: "https://appbox.me/x1") + XCTAssertFalse(text.contains("\n")) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/ManifestBuilderTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/ManifestBuilderTests.swift new file mode 100644 index 00000000..23265556 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/ManifestBuilderTests.swift @@ -0,0 +1,35 @@ +import XCTest +@testable import AppBoxCore + +final class ManifestBuilderTests: XCTestCase { + + private let manifest = ManifestBuilder.make( + ipaShareableURL: "https://example.com/app.ipa?dl=1", + name: "AppBox", identifier: "com.example.app", version: "4.2.0") + + func testStructure() { + XCTAssertEqual(manifest.items.count, 1) + let item = manifest.items[0] + XCTAssertEqual(item.assets.count, 1) + XCTAssertEqual(item.assets[0].kind, "software-package") + XCTAssertEqual(item.assets[0].url, "https://example.com/app.ipa?dl=1") + XCTAssertEqual(item.metadata.kind, "software") + XCTAssertEqual(item.metadata.title, "AppBox") + XCTAssertEqual(item.metadata.bundleIdentifier, "com.example.app") + XCTAssertEqual(item.metadata.bundleVersion, "4.2.0") + } + + func testPlistRoundTrips() throws { + let data = try ManifestBuilder.plistData(for: manifest) + let decoded = try PropertyListDecoder().decode(OTAManifest.self, from: data) + XCTAssertEqual(decoded, manifest) + } + + func testPlistUsesHyphenatedMetadataKeys() throws { + let data = try ManifestBuilder.plistData(for: manifest) + let xml = try XCTUnwrap(String(data: data, encoding: .utf8)) + XCTAssertTrue(xml.contains("bundle-identifier")) + XCTAssertTrue(xml.contains("bundle-version")) + XCTAssertTrue(xml.contains("software-package")) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/MobileProvisionTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/MobileProvisionTests.swift new file mode 100644 index 00000000..4bb16b33 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/MobileProvisionTests.swift @@ -0,0 +1,92 @@ +import XCTest +@testable import AppBoxCore + +final class MobileProvisionParserTests: XCTestCase { + + /// Builds bytes shaped like a real .mobileprovision: an XML plist embedded between binary header/footer markers (mirrors the ObjC test fixture). + private func provisionData(plist: [String: Any]) -> Data { + let plistData = try! PropertyListSerialization.data(fromPropertyList: plist, format: .xml, options: 0) + var data = Data("BINARY_HEADER_DATA".utf8) + data.append(plistData) + data.append(Data("BINARY_FOOTER_DATA".utf8)) + return data + } + + private func parse(_ plist: [String: Any]) -> MobileProvisionInfo { + MobileProvisionParser.parse(data: provisionData(plist: plist)) + } + + // MARK: build type + + func testBuildType_enterprise() { + let info = parse(["ProvisionsAllDevices": true, "TeamIdentifier": ["ABC123"], "UUID": "u"]) + XCTAssertTrue(info.isValid) + XCTAssertEqual(info.buildType, BuildType.enterprise) + } + + func testBuildType_development() { + let info = parse(["ProvisionedDevices": ["UDID-1"], "Entitlements": ["get-task-allow": true]]) + XCTAssertEqual(info.buildType, BuildType.development) + } + + func testBuildType_adHoc() { + let info = parse(["ProvisionedDevices": ["UDID-1"], "Entitlements": ["get-task-allow": false]]) + XCTAssertEqual(info.buildType, BuildType.adHoc) + } + + func testBuildType_appStore() { + let info = parse(["TeamIdentifier": ["STORE123"], "UUID": "u"]) + XCTAssertEqual(info.buildType, BuildType.appStore) + } + + func testBuildType_developerId_forEmptyPlist() { + let info = parse([:]) + XCTAssertTrue(info.isValid) + XCTAssertEqual(info.buildType, BuildType.developerId) + } + + // MARK: field extraction + + func testExtractsFields() { + let created = Date(timeIntervalSince1970: 1_700_000_000) + let expires = Date(timeIntervalSince1970: 1_800_000_000) + let info = parse([ + "ProvisionedDevices": ["AAA", "BBB"], + "Entitlements": ["get-task-allow": true], + "TeamIdentifier": ["TEAM999"], + "TeamName": "My Team", + "UUID": "unique-uuid", + "CreationDate": created, + "ExpirationDate": expires + ]) + XCTAssertEqual(info.teamId, "TEAM999") + XCTAssertEqual(info.teamName, "My Team") + XCTAssertEqual(info.uuid, "unique-uuid") + XCTAssertEqual(info.provisionedDevices, ["AAA", "BBB"]) + XCTAssertEqual(info.createDate, created) + XCTAssertEqual(info.expirationDate, expires) + } + + // MARK: invalid input + + func testGarbageData_isNotValid() { + let info = MobileProvisionParser.parse(data: Data("not a provisioning profile".utf8)) + XCTAssertFalse(info.isValid) + } + + func testFileSystem_missingFile_isNotValid() { + let info = MobileProvisionParser.parse(contentsOf: URL(fileURLWithPath: "/nope/x.mobileprovision"), + fileSystem: InMemoryFileSystem()) + XCTAssertFalse(info.isValid) + } + + func testFileSystem_readsAndParses() throws { + let fs = InMemoryFileSystem() + let url = URL(fileURLWithPath: "/tmp/test.mobileprovision") + try fs.write(provisionData(plist: ["TeamIdentifier": ["T1"], "UUID": "abc"]), to: url) + let info = MobileProvisionParser.parse(contentsOf: url, fileSystem: fs) + XCTAssertTrue(info.isValid) + XCTAssertEqual(info.uuid, "abc") + XCTAssertEqual(info.buildType, BuildType.appStore) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/ResumableUploaderTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/ResumableUploaderTests.swift new file mode 100644 index 00000000..e4f1b8f8 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/ResumableUploaderTests.swift @@ -0,0 +1,183 @@ +import XCTest +@testable import AppBoxCore + +final class ResumableUploaderTests: XCTestCase { + + // MARK: - Fakes + + private struct MemoryChunkSource: ChunkSource { + let data: Data + var totalSize: Int { data.count } + func read(at offset: Int, maxLength: Int) throws -> Data { + guard offset < data.count else { return Data() } + return data.subdata(in: offset.. SessionStartResult?)? + var onAppend: ((_ offset: Int, _ data: Data, _ callIndex: Int) -> ChunkResult?)? + var onFinish: ((_ offset: Int, _ data: Data, _ callIndex: Int) -> ChunkResult?)? + + func start(data: Data, progress: @escaping (Int) -> Void) async -> SessionStartResult { + startCalls += 1 + progress(data.count) + if let scripted = onStart?() { return scripted } + committed.append((0, data)); committedOffset = data.count + return .started(sessionID: "sess-1") + } + func append(sessionID: String, offset: Int, data: Data, progress: @escaping (Int) -> Void) async -> ChunkResult { + appendCalls += 1 + progress(data.count) + if let scripted = onAppend?(offset, data, appendCalls) { return scripted } + return commit(offset, data) + } + func finish(sessionID: String, offset: Int, data: Data, progress: @escaping (Int) -> Void) async -> ChunkResult { + finishCalls += 1 + progress(data.count) + if let scripted = onFinish?(offset, data, finishCalls) { return scripted } + return commit(offset, data) + } + private func commit(_ offset: Int, _ data: Data) -> ChunkResult { + guard offset == committedOffset else { return .incorrectOffset(expectedOffset: committedOffset) } + committed.append((offset, data)); committedOffset += data.count + return .committed + } + /// Force-commit a chunk server-side (a "phantom commit" the client perceived as a failure). + func phantomCommit(_ offset: Int, _ data: Data) { + committed.append((offset, data)); committedOffset = offset + data.count + } + var reconstructed: Data { + committed.sorted { $0.offset < $1.offset }.reduce(Data()) { $0 + $1.data } + } + } + + /// Reports "offline" for the first `connectAfterChecks` reads, then "online". + private final class FlakyReachability: Reachability { + private var checks = 0 + let connectAfterChecks: Int + init(connectAfterChecks: Int) { self.connectAfterChecks = connectAfterChecks } + var isConnected: Bool { checks += 1; return checks > connectAfterChecks } + } + + private func bytes(_ n: Int) -> Data { Data((0.. StorageAccount { StorageAccount(providerID: .dropbox, accountID: "x") } + func signOut() throws {} + + func upload(fileAt localURL: URL, to remotePath: RemotePath, progress: ((Double) -> Void)?) async throws { + if let error = alwaysFailUploadsWith { throw error } + if uploadFailures < failUploadsBeforeSuccess { + uploadFailures += 1 + throw StorageError.network("transient") + } + progress?(0.5) + progress?(1.0) + uploads.append((localURL.lastPathComponent, remotePath.path)) + } + + var appInfoShareURLOverride: String? + + func createShareableLink(for remotePath: RemotePath) async throws -> ShareableLink { + if let appInfoShareURLOverride, remotePath.path.contains("appinfo.json") { + return ShareableLink(url: URL(string: appInfoShareURLOverride)!, isDirectDownload: true) + } + return ShareableLink(url: URL(string: "https://links.test\(remotePath.path)")!, isDirectDownload: true) + } + func existingShareableLink(for remotePath: RemotePath) async throws -> ShareableLink? { nil } + func listRevisions(for remotePath: RemotePath) async throws -> [RemoteRevision] { [] } + func delete(at remotePath: RemotePath) async throws {} + func download(from remotePath: RemotePath, to localURL: URL) async throws { + downloadedPaths.append(remotePath) + guard let data = existingAppInfoJSON else { throw StorageError.notFound } + try data.write(to: localURL) + } + + func upload(fileAt localURL: URL, to remotePath: RemotePath, + ifRevisionMatches precondition: String?, progress: ((Double) -> Void)?) async throws -> String? { + uploadPreconditions.append(precondition) + if conflictOnPreconditionedUpload, precondition != nil { + throw StorageError.conflict("changed on the server") + } + try await upload(fileAt: localURL, to: remotePath, progress: progress) + revisionCounter += 1 + return "rev-\(revisionCounter)" + } + + func downloadWithRevision(from remotePath: RemotePath, to localURL: URL) async throws -> String? { + try await download(from: remotePath, to: localURL) + return existingAppInfoRevision + } + } + + final class FixedShortLinkService: ShortLinkService { + let url: URL? + private(set) var requests: [ShortLinkRequest] = [] + init(_ url: URL?) { self.url = url } + func shortLink(for request: ShortLinkRequest) async -> URL? { requests.append(request); return url } + } + + // MARK: - Helpers + + private var workingDir: URL! + + override func setUpWithError() throws { + workingDir = FileManager.default.temporaryDirectory.appendingPathComponent(UUID().uuidString) + try FileManager.default.createDirectory(at: workingDir, withIntermediateDirectories: true) + } + override func tearDownWithError() throws { + try? FileManager.default.removeItem(at: workingDir) + } + + private func makePlan(keepSameLink: Bool = false, keepPreviousVersions: Bool = false) throws -> UploadPlan { + let ipa = workingDir.appendingPathComponent("AppBoxTestApp.ipa") + try Data("not-a-real-ipa".utf8).write(to: ipa) + let entry = AppVersionInput( + name: "AppBoxTestApp", version: "1.4", build: "1", identifier: "co.developerinsider.AppBoxTestApp", + manifestLink: "", timestamp: 0, shareableIPALink: "", + includeIPALink: true, includeDetails: true, + minOSVersion: "15.4", supportedDevice: "iPhone and iPad", buildType: "development", ipaFileSizeMB: 263) + return UploadPlan( + ipaLocalURL: ipa, workingDirectory: workingDir, + ipaRemotePath: RemotePath(path: "/app/1.4/AppBoxTestApp.ipa"), + manifestRemotePath: RemotePath(path: "/app/1.4/manifest.plist"), + appInfoRemotePath: RemotePath(path: keepSameLink ? "/app/appinfo.json" : "/app/1.4/appinfo.json"), + name: "AppBoxTestApp", version: "1.4", build: "1", identifier: "co.developerinsider.AppBoxTestApp", + entryInput: entry, keepSameLink: keepSameLink, keepPreviousVersions: keepPreviousVersions) + } + + private func readAppInfo() throws -> AppInfoFile { + let url = workingDir.appendingPathComponent(UploadCoordinator.appInfoFilename) + return try JSONDecoder().decode(AppInfoFile.self, from: Data(contentsOf: url)) + } + + // MARK: - Tests + + func testHappyPath_uploadsInOrderAndThreadsLinks() async throws { + let provider = LinkFakeProvider() + let progress = RecordingProgressReporter() + let coordinator = UploadCoordinator(provider: provider, progress: progress, + dateProvider: FixedDateProvider(Date(timeIntervalSince1970: 1_000)), + shortLinkService: FixedShortLinkService(URL(string: "https://appbox.me/abc")!)) + let result = try await coordinator.run(try makePlan()) + + XCTAssertEqual(provider.uploads.map(\.path), [ + "/app/1.4/AppBoxTestApp.ipa", + "/app/1.4/manifest.plist", + "/app/1.4/appinfo.json", + "/app/1.4/appinfo.json", + ]) + + XCTAssertEqual(result.ipaLink.absoluteString, "https://links.test/app/1.4/AppBoxTestApp.ipa") + XCTAssertEqual(result.manifestLink.absoluteString, "https://links.test/app/1.4/manifest.plist") + XCTAssertEqual(result.appInfoSharedLink.absoluteString, "https://links.test/app/1.4/appinfo.json") + XCTAssertEqual(result.shortLink.absoluteString, "https://appbox.me/abc") + + let manifestData = try Data(contentsOf: workingDir.appendingPathComponent(UploadCoordinator.manifestFilename)) + let manifestText = String(decoding: manifestData, as: UTF8.self) + XCTAssertTrue(manifestText.contains("https://links.test/app/1.4/AppBoxTestApp.ipa")) + + let appInfo = try readAppInfo() + XCTAssertEqual(appInfo.latestVersion?.manifestLink, "https://links.test/app/1.4/manifest.plist") + XCTAssertEqual(appInfo.latestVersion?.ipaFileLink, "https://links.test/app/1.4/AppBoxTestApp.ipa") + XCTAssertEqual(appInfo.latestVersion?.timestamp, 1_000) + XCTAssertEqual(appInfo.uniqueLinkShared, "https://links.test/app/1.4/appinfo.json") + XCTAssertEqual(appInfo.uniqueLinkShort, "https://appbox.me/abc") + XCTAssertEqual(appInfo.versions.count, 1) + + XCTAssertEqual(progress.stages.first, .preparing) + XCTAssertEqual(progress.stages.last, .completed) + XCTAssertTrue(progress.stages.contains(.uploading)) + XCTAssertTrue(progress.stages.contains(.creatingLink)) + } + + func testNoShortLinkService_fallsBackToLongLink() async throws { + let provider = LinkFakeProvider() + let coordinator = UploadCoordinator(provider: provider, shortLinkService: nil) + let result = try await coordinator.run(try makePlan()) + + XCTAssertEqual(result.shortLink, result.appInfoSharedLink) + XCTAssertEqual(try readAppInfo().uniqueLinkShort, "https://links.test/app/1.4/appinfo.json") + } + + func testServiceReturningNil_fallsBackToLongLink() async throws { + let provider = LinkFakeProvider() + let coordinator = UploadCoordinator(provider: provider, shortLinkService: FixedShortLinkService(nil)) + let result = try await coordinator.run(try makePlan()) + XCTAssertEqual(result.shortLink, result.appInfoSharedLink) + } + + func testShortenerUnavailable_fallsBackToInstallPageURL_notRawDropboxURL() async throws { + let provider = LinkFakeProvider() + provider.appInfoShareURLOverride = "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz" + let coordinator = UploadCoordinator(provider: provider, shortLinkService: FixedShortLinkService(nil)) + let result = try await coordinator.run(try makePlan()) + + let expectedInstall = "https://web.getappbox.com?url=/scl/fi/abc/appinfo.json?rlkey=xyz" + XCTAssertEqual(result.installLink.absoluteString, expectedInstall) + XCTAssertEqual(result.shortLink, result.installLink) + XCTAssertNotEqual(result.shortLink.absoluteString, "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz") + XCTAssertEqual(try readAppInfo().uniqueLinkShort, expectedInstall) + XCTAssertEqual(try readAppInfo().uniqueLinkShared, "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz") + } + + func testShortenerSucceeds_shortLinkDiffersFromInstallLink() async throws { + let provider = LinkFakeProvider() + provider.appInfoShareURLOverride = "https://www.dropbox.com/scl/fi/abc/appinfo.json?rlkey=xyz" + let coordinator = UploadCoordinator(provider: provider, + shortLinkService: FixedShortLinkService(URL(string: "https://appbox.me/abc")!)) + let result = try await coordinator.run(try makePlan()) + XCTAssertEqual(result.shortLink.absoluteString, "https://appbox.me/abc") + XCTAssertEqual(result.installLink.absoluteString, "https://web.getappbox.com?url=/scl/fi/abc/appinfo.json?rlkey=xyz") + XCTAssertNotEqual(result.shortLink, result.installLink) // success → ShowLink shows no "unavailable" hint + } + + func testKeepSameLink_loadsAndAppendsExistingHistory() async throws { + let provider = LinkFakeProvider() + let prior = AppVersionEntry(name: "AppBoxTestApp", version: "1.0", build: "1", + identifier: "co.developerinsider.AppBoxTestApp", + manifestLink: "https://old/manifest", timestamp: 1) + provider.existingAppInfoJSON = try JSONEncoder().encode(AppInfoFile(latestVersion: prior, versions: [prior])) + + let coordinator = UploadCoordinator(provider: provider) + _ = try await coordinator.run(try makePlan(keepSameLink: true, keepPreviousVersions: true)) + + XCTAssertEqual(provider.downloadedPaths.map(\.path), ["/app/appinfo.json"]) + let appInfo = try readAppInfo() + XCTAssertEqual(appInfo.versions.count, 2) + XCTAssertEqual(appInfo.versions.first?.version, "1.0") + XCTAssertEqual(appInfo.versions.last?.version, "1.4") + } + + func testKeepSameLink_resetsHistoryWhenNotKeepingPreviousVersions() async throws { + let provider = LinkFakeProvider() + let prior = AppVersionEntry(name: "x", version: "1.0", build: "1", identifier: "id", + manifestLink: "m", timestamp: 1) + provider.existingAppInfoJSON = try JSONEncoder().encode(AppInfoFile(latestVersion: prior, versions: [prior])) + + let coordinator = UploadCoordinator(provider: provider) + _ = try await coordinator.run(try makePlan(keepSameLink: true, keepPreviousVersions: false)) + + let appInfo = try readAppInfo() + XCTAssertEqual(appInfo.versions.count, 1) + XCTAssertEqual(appInfo.versions.first?.version, "1.4") + } + + func testKeepSameLink_preconditionsAppInfoUploadsOnItsRevisions() async throws { + let provider = LinkFakeProvider() + let prior = AppVersionEntry(name: "x", version: "1.0", build: "1", identifier: "id", + manifestLink: "m", timestamp: 1) + provider.existingAppInfoJSON = try JSONEncoder().encode(AppInfoFile(latestVersion: prior, versions: [prior])) + provider.existingAppInfoRevision = "rev-1" + + let coordinator = UploadCoordinator(provider: provider) + _ = try await coordinator.run(try makePlan(keepSameLink: true, keepPreviousVersions: true)) + + XCTAssertEqual(provider.uploadPreconditions.count, 4) + XCTAssertNil(provider.uploadPreconditions[0]) + XCTAssertNil(provider.uploadPreconditions[1]) + XCTAssertEqual(provider.uploadPreconditions[2], "rev-1") + XCTAssertEqual(provider.uploadPreconditions[3], "rev-4") + } + + func testFreshUpload_secondAppInfoUploadPreconditionedOnFirst() async throws { + let provider = LinkFakeProvider() + let coordinator = UploadCoordinator(provider: provider) + _ = try await coordinator.run(try makePlan()) + + XCTAssertEqual(provider.uploadPreconditions.count, 4) + XCTAssertNil(provider.uploadPreconditions[2]) + XCTAssertNotNil(provider.uploadPreconditions[3]) + } + + func testConcurrentWriterConflict_surfacesAsConflictError() async throws { + let provider = LinkFakeProvider() + let prior = AppVersionEntry(name: "x", version: "1.0", build: "1", identifier: "id", + manifestLink: "m", timestamp: 1) + provider.existingAppInfoJSON = try JSONEncoder().encode(AppInfoFile(latestVersion: prior, versions: [prior])) + provider.conflictOnPreconditionedUpload = true + + let coordinator = UploadCoordinator(provider: provider) + do { + _ = try await coordinator.run(try makePlan(keepSameLink: true, keepPreviousVersions: true)) + XCTFail("expected a conflict when the shared appinfo.json changed under us") + } catch let StorageError.conflict(message) { + XCTAssertEqual(message, "changed on the server") + XCTAssertEqual(provider.uploadPreconditions.filter { $0 != nil }.count, 1) + } + } + + func testRetriesTransientUploadThenSucceeds() async throws { + let provider = LinkFakeProvider() + provider.failUploadsBeforeSuccess = 2 + let coordinator = UploadCoordinator(provider: provider) + let result = try await coordinator.run(try makePlan()) + XCTAssertEqual(result.ipaLink.absoluteString, "https://links.test/app/1.4/AppBoxTestApp.ipa") + XCTAssertEqual(provider.uploads.count, 4) + } + + func testExhaustedRetriesThrows() async throws { + let provider = LinkFakeProvider() + provider.failUploadsBeforeSuccess = 99 + let coordinator = UploadCoordinator(provider: provider, maxRetries: 3) + do { + _ = try await coordinator.run(try makePlan()) + XCTFail("expected the upload to fail after exhausting retries") + } catch let error as StorageError { + XCTAssertEqual(error, .network("transient")) + } + } + + func testNonRetryableErrorPropagatesImmediately() async throws { + let provider = LinkFakeProvider() + provider.alwaysFailUploadsWith = .notAuthenticated + let coordinator = UploadCoordinator(provider: provider) + do { + _ = try await coordinator.run(try makePlan()) + XCTFail("expected a non-retryable error to propagate") + } catch let error as StorageError { + XCTAssertEqual(error, .notAuthenticated) + XCTAssertEqual(provider.uploads.count, 0) + } + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/UploadRetryPolicyTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/UploadRetryPolicyTests.swift new file mode 100644 index 00000000..c787bd0b --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/UploadRetryPolicyTests.swift @@ -0,0 +1,81 @@ +import XCTest +@testable import AppBoxCore + +final class UploadRetryPolicyTests: XCTestCase { + + // MARK: decide + + func testConnectivityLossWhileOffline_pauses_evenAtMaxRetries() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .connectivity, retryCount: 99, isConnected: false), + .pauseUntilOnline) + } + + func testConnectivityErrorWhileOnline_underCap_retries() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .connectivity, retryCount: 0, isConnected: true), + .retry) + } + + func testConnectivityErrorWhileOnline_atCap_fails() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .connectivity, retryCount: 3, isConnected: true), + .fail) + } + + func testRetryableServerWhileOnline_underCap_retries() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .retryableServer, retryCount: 2, isConnected: true), + .retry) + } + + func testRetryableServerWhileOffline_fails() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .retryableServer, retryCount: 0, isConnected: false), + .fail) + } + + func testOtherFailure_fails() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .other, retryCount: 0, isConnected: true), + .fail) + } + + func testNoFailure_fails() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: nil, retryCount: 0, isConnected: true), + .fail) + } + + func testCustomMaxRetryCount() { + XCTAssertEqual( + UploadRetryPolicy.decide(failure: .retryableServer, retryCount: 1, isConnected: true, maxRetryCount: 1), + .fail) + } + + // MARK: isConnectivityError + + func testIsConnectivityError_trueForNetworkPathCodes() { + for code in [NSURLErrorNotConnectedToInternet, NSURLErrorNetworkConnectionLost, + NSURLErrorTimedOut, NSURLErrorCannotFindHost, NSURLErrorDNSLookupFailed] { + let error = NSError(domain: NSURLErrorDomain, code: code) + XCTAssertTrue(UploadRetryPolicy.isConnectivityError(error), "code \(code)") + } + } + + func testIsConnectivityError_falseForOtherCodesAndDomains() { + XCTAssertFalse(UploadRetryPolicy.isConnectivityError(NSError(domain: NSURLErrorDomain, code: NSURLErrorBadURL))) + XCTAssertFalse(UploadRetryPolicy.isConnectivityError(NSError(domain: "Other", code: NSURLErrorTimedOut))) + XCTAssertFalse(UploadRetryPolicy.isConnectivityError(nil)) + } + + // MARK: StorageError mapping + + func testStorageErrorMapping() { + XCTAssertEqual(UploadFailureKind(.network("x")), .connectivity) + XCTAssertEqual(UploadFailureKind(.server("x")), .retryableServer) + XCTAssertEqual(UploadFailureKind(.rateLimited(retryAfter: nil)), .retryableServer) + XCTAssertEqual(UploadFailureKind(.notAuthenticated), .other) + XCTAssertEqual(UploadFailureKind(.notFound), .other) + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/WebhookSecretsTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/WebhookSecretsTests.swift new file mode 100644 index 00000000..0831847a --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/WebhookSecretsTests.swift @@ -0,0 +1,83 @@ +import XCTest +@testable import AppBoxCore + +/// A `SecureStore` whose writes always fail — used to prove a failed Keychain write never loses the legacy `UserDefaults` value during migration. +private final class FailingSecureStore: SecureStore { + func data(forAccount account: String, service: String) throws -> Data? { nil } + func set(_ data: Data, forAccount account: String, service: String) throws { throw SecureStoreError.keychain(status: -1) } + func removeItem(forAccount account: String, service: String) throws {} + func accounts(forService service: String) throws -> [String] { [] } + func removeAllItems(forService service: String) throws {} +} + +final class WebhookSecretsTests: XCTestCase { + + private let slackKey = "UserSlackChannel" + private let teamsKey = "UserMicrosoftTeamWebHook" + + private func makeSecrets(_ secure: SecureStore = InMemorySecureStore(), + _ defaults: InMemoryKeyValueStore = InMemoryKeyValueStore()) -> WebhookSecrets { + WebhookSecrets(secureStore: secure, keyValueStore: defaults) + } + + func testSetAndGetRoundTrip_perSecret() { + let secrets = makeSecrets() + secrets.slackWebhook = "https://hooks.slack/s" + secrets.teamsWebhook = "https://teams/t" + XCTAssertEqual(secrets.slackWebhook, "https://hooks.slack/s") + XCTAssertEqual(secrets.teamsWebhook, "https://teams/t") + } + + func testEmptyOrNilSetRemovesTheSecret() { + let secrets = makeSecrets() + secrets.slackWebhook = "https://hooks.slack/s" + secrets.slackWebhook = "" + XCTAssertNil(secrets.slackWebhook) + secrets.teamsWebhook = "https://teams/t" + secrets.teamsWebhook = nil + XCTAssertNil(secrets.teamsWebhook) + } + + func testMigration_movesSecretsIntoKeychainAndRemovesDefaultsKeys() { + let defaults = InMemoryKeyValueStore() + defaults.set("https://hooks.slack/legacy", forKey: slackKey) + defaults.set("https://teams/legacy", forKey: teamsKey) + let secrets = makeSecrets(InMemorySecureStore(), defaults) + + secrets.migrateFromUserDefaultsIfNeeded() + + XCTAssertEqual(secrets.slackWebhook, "https://hooks.slack/legacy") + XCTAssertEqual(secrets.teamsWebhook, "https://teams/legacy") + XCTAssertNil(defaults.string(forKey: slackKey)) + XCTAssertNil(defaults.string(forKey: teamsKey)) + } + + func testMigration_isIdempotent() { + let defaults = InMemoryKeyValueStore() + defaults.set("https://hooks.slack/legacy", forKey: slackKey) + let secrets = makeSecrets(InMemorySecureStore(), defaults) + + secrets.migrateFromUserDefaultsIfNeeded() + secrets.migrateFromUserDefaultsIfNeeded() + XCTAssertEqual(secrets.slackWebhook, "https://hooks.slack/legacy") + XCTAssertNil(defaults.string(forKey: slackKey)) + } + + func testMigration_failedKeychainWriteKeepsTheDefaultsValue() { + let defaults = InMemoryKeyValueStore() + defaults.set("https://hooks.slack/legacy", forKey: slackKey) + let secrets = makeSecrets(FailingSecureStore(), defaults) + + secrets.migrateFromUserDefaultsIfNeeded() + + XCTAssertEqual(defaults.string(forKey: slackKey), "https://hooks.slack/legacy") + XCTAssertEqual(secrets.slackWebhook, "https://hooks.slack/legacy") + } + + func testGetterFallsBackToLegacyValueBeforeMigration() { + let defaults = InMemoryKeyValueStore() + defaults.set("https://hooks.slack/legacy", forKey: slackKey) + let secrets = makeSecrets(InMemorySecureStore(), defaults) + XCTAssertEqual(secrets.slackWebhook, "https://hooks.slack/legacy") + } +} diff --git a/AppBoxCore/Tests/AppBoxCoreTests/WebhookURLTests.swift b/AppBoxCore/Tests/AppBoxCoreTests/WebhookURLTests.swift new file mode 100644 index 00000000..bb2e3592 --- /dev/null +++ b/AppBoxCore/Tests/AppBoxCoreTests/WebhookURLTests.swift @@ -0,0 +1,33 @@ +import XCTest +@testable import AppBoxCore + +final class WebhookURLTests: XCTestCase { + + func testAcceptsHTTPS() { + XCTAssertTrue(WebhookURL.isValid("https://hooks.slack.com/services/T00/B00/xxxx")) + } + + func testRejectsHTTP() { + XCTAssertFalse(WebhookURL.isValid("http://example.com/webhook")) + } + + func testRejectsEmptyString() { + XCTAssertFalse(WebhookURL.isValid("")) + } + + func testRejectsNil() { + XCTAssertFalse(WebhookURL.isValid(nil)) + } + + func testRejectsMissingScheme() { + XCTAssertFalse(WebhookURL.isValid("hooks.slack.com/services")) + } + + func testRejectsNonHTTPSScheme() { + XCTAssertFalse(WebhookURL.isValid("ftp://example.com/file")) + } + + func testRejectsSchemeWithoutHost() { + XCTAssertFalse(WebhookURL.isValid("https://")) + } +} diff --git a/AppBoxTests/AppBoxTests.xctestplan b/AppBoxTests/AppBoxTests.xctestplan index 528a128d..ef49a376 100644 --- a/AppBoxTests/AppBoxTests.xctestplan +++ b/AppBoxTests/AppBoxTests.xctestplan @@ -9,6 +9,15 @@ } ], "defaultOptions" : { + "codeCoverage" : { + "targets" : [ + { + "containerPath" : "container:AppBox.xcodeproj", + "identifier" : "E16437CE1D743A4E00CE8B7E", + "name" : "AppBox" + } + ] + }, "performanceAntipatternCheckerEnabled" : true, "uiTestingScreenshotsLifetime" : "keepNever" }, diff --git a/AppBoxTests/Common/CLISupportHelperTests.swift b/AppBoxTests/Common/CLISupportHelperTests.swift new file mode 100644 index 00000000..a7b8c239 --- /dev/null +++ b/AppBoxTests/Common/CLISupportHelperTests.swift @@ -0,0 +1,65 @@ +import XCTest +@testable import AppBox + +/// The escaping that stands between a bundle path and a root shell. The symlink itself targets a fixed +/// `/usr/local/bin` path, so only the quoting is unit-testable here. +final class CLISupportHelperTests: XCTestCase { + + // MARK: - Shell quoting + + func testWrapsPlainPathsInSingleQuotes() { + XCTAssertEqual(CLISupportHelper.shellQuoted("/usr/local/bin"), "'/usr/local/bin'") + } + + func testQuotesPathsContainingSpaces() { + XCTAssertEqual(CLISupportHelper.shellQuoted("/Applications/App Box.app/Contents"), + "'/Applications/App Box.app/Contents'") + } + + func testClosesAndReopensAroundEmbeddedSingleQuotes() { + // The POSIX idiom: end the quote, emit an escaped quote, reopen. + XCTAssertEqual(CLISupportHelper.shellQuoted("/Users/o'brien/app"), "'/Users/o'\\''brien/app'") + } + + func testNeutralisesShellMetacharacters() { + for hostile in ["/tmp/a;rm -rf /", "/tmp/$(whoami)", "/tmp/`id`", "/tmp/a&&b", "/tmp/a|b"] { + let quoted = CLISupportHelper.shellQuoted(hostile) + XCTAssertTrue(quoted.hasPrefix("'") && quoted.hasSuffix("'"), quoted) + // Single quotes are literal in POSIX sh, so the payload survives intact rather than executing. + XCTAssertTrue(quoted.contains(hostile), quoted) + } + } + + func testQuotesEmptyStrings() { + XCTAssertEqual(CLISupportHelper.shellQuoted(""), "''") + } + + // MARK: - AppleScript escaping + + func testEscapesDoubleQuotes() { + XCTAssertEqual(CLISupportHelper.appleScriptEscaped("say \"hi\""), "say \\\"hi\\\"") + } + + func testEscapesBackslashesBeforeQuotes() { + // Backslashes must be doubled first, or the escape added for a quote would itself be escaped. + XCTAssertEqual(CLISupportHelper.appleScriptEscaped("a\\b"), "a\\\\b") + XCTAssertEqual(CLISupportHelper.appleScriptEscaped("a\\\"b"), "a\\\\\\\"b") + } + + func testLeavesOrdinaryTextAlone() { + XCTAssertEqual(CLISupportHelper.appleScriptEscaped("/bin/ln -sfn /a /b"), "/bin/ln -sfn /a /b") + } + + /// A path with both quote kinds must survive shell quoting, then AppleScript escaping on top. + /// AppleScript doubles the backslash the shell idiom introduced, and unescapes it again before + /// `do shell script` runs — so the shell still receives `'\''`. + func testQuotingComposesWithAppleScriptEscaping() { + let raw = "/Users/o'brien/a\"b" + + let quoted = CLISupportHelper.shellQuoted(raw) + XCTAssertEqual(quoted, "'/Users/o'\\''brien/a\"b'") + + let escaped = CLISupportHelper.appleScriptEscaped(quoted) + XCTAssertEqual(escaped, "'/Users/o'\\\\''brien/a\\\"b'") + } +} diff --git a/AppBoxTests/Common/CommonTests.m b/AppBoxTests/Common/CommonTests.m deleted file mode 100644 index a7877696..00000000 --- a/AppBoxTests/Common/CommonTests.m +++ /dev/null @@ -1,117 +0,0 @@ -// -// CommonTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "Common.h" - -@interface CommonTests : XCTestCase -@end - -@implementation CommonTests - -#pragma mark - generateUUID Tests - -- (void)testGenerateUUID_ReturnsNonNilString { - NSString *uuid = [Common generateUUID]; - XCTAssertNotNil(uuid); -} - -- (void)testGenerateUUID_ReturnsNonEmptyString { - NSString *uuid = [Common generateUUID]; - XCTAssertGreaterThan(uuid.length, 0); -} - -- (void)testGenerateUUID_DoesNotContainSlashes { - NSString *uuid = [Common generateUUID]; - XCTAssertFalse([uuid containsString:@"/"]); -} - -- (void)testGenerateUUID_GeneratesUniqueValues { - NSString *uuid1 = [Common generateUUID]; - NSString *uuid2 = [Common generateUUID]; - XCTAssertNotEqualObjects(uuid1, uuid2); -} - -#pragma mark - errorWithDesc:andCode: Tests - -- (void)testErrorWithDesc_ReturnsError { - NSError *error = [Common errorWithDesc:@"Test error" andCode:42]; - XCTAssertNotNil(error); -} - -- (void)testErrorWithDesc_HasCorrectCode { - NSError *error = [Common errorWithDesc:@"Test error" andCode:42]; - XCTAssertEqual(error.code, 42); -} - -- (void)testErrorWithDesc_HasCorrectDescription { - NSError *error = [Common errorWithDesc:@"Something went wrong" andCode:100]; - XCTAssertEqualObjects(error.localizedDescription, @"Something went wrong"); -} - -- (void)testErrorWithDesc_HasCocoaDomain { - NSError *error = [Common errorWithDesc:@"Error" andCode:1]; - XCTAssertEqualObjects(error.domain, NSCocoaErrorDomain); -} - -- (void)testErrorWithDesc_WithZeroCode { - NSError *error = [Common errorWithDesc:@"Zero code error" andCode:0]; - XCTAssertEqual(error.code, 0); - XCTAssertEqualObjects(error.localizedDescription, @"Zero code error"); -} - -#pragma mark - isValidWebhookURL: Tests - -- (void)testIsValidWebhookURL_WithHTTPS_ReturnsYES { - XCTAssertTrue([Common isValidWebhookURL:@"https://hooks.slack.com/services/T00/B00/xxxx"]); -} - -- (void)testIsValidWebhookURL_WithHTTP_ReturnsYES { - XCTAssertTrue([Common isValidWebhookURL:@"http://example.com/webhook"]); -} - -- (void)testIsValidWebhookURL_WithEmptyString_ReturnsNO { - XCTAssertFalse([Common isValidWebhookURL:@""]); -} - -- (void)testIsValidWebhookURL_WithNilString_ReturnsNO { - XCTAssertFalse([Common isValidWebhookURL:nil]); -} - -- (void)testIsValidWebhookURL_WithNoScheme_ReturnsNO { - XCTAssertFalse([Common isValidWebhookURL:@"hooks.slack.com/services"]); -} - -- (void)testIsValidWebhookURL_WithFTPScheme_ReturnsNO { - XCTAssertFalse([Common isValidWebhookURL:@"ftp://example.com/file"]); -} - -- (void)testIsValidWebhookURL_WithJustScheme_ReturnsNO { - XCTAssertFalse([Common isValidWebhookURL:@"https://"]); -} - -#pragma mark - getFileDirectoryForFilePath: Tests - -- (void)testGetFileDirectory_ExtractsParentDirectory { - NSURL *filePath = [NSURL URLWithString:@"/Users/test/Documents/file.ipa"]; - NSURL *result = [Common getFileDirectoryForFilePath:filePath]; - XCTAssertNotNil(result); - NSString *resultString = result.absoluteString; - XCTAssertTrue([resultString containsString:@"Documents"]); - XCTAssertFalse([resultString containsString:@"file.ipa"]); -} - -- (void)testGetFileDirectory_WithNestedPath { - NSURL *filePath = [NSURL URLWithString:@"/a/b/c/d.txt"]; - NSURL *result = [Common getFileDirectoryForFilePath:filePath]; - XCTAssertNotNil(result); - NSString *resultString = result.absoluteString; - XCTAssertTrue([resultString containsString:@"/a/b/c"]); -} - -@end diff --git a/AppBoxTests/Common/CommonTests.swift b/AppBoxTests/Common/CommonTests.swift new file mode 100644 index 00000000..739320ad --- /dev/null +++ b/AppBoxTests/Common/CommonTests.swift @@ -0,0 +1,60 @@ +// +// CommonTests.swift +// AppBoxTests + +import XCTest +@testable import AppBox + +final class CommonTests: XCTestCase { + + // MARK: - generateUUID + + func testGenerateUUID_ReturnsNonEmptyString() { + XCTAssertFalse(Common.generateUUID().isEmpty) + } + + func testGenerateUUID_DoesNotContainSlashes() { + XCTAssertFalse(Common.generateUUID().contains("/")) + } + + func testGenerateUUID_GeneratesUniqueValues() { + XCTAssertNotEqual(Common.generateUUID(), Common.generateUUID()) + } + + // MARK: - error(withDesc:andCode:) + + func testErrorWithDesc_HasCorrectCode() { + XCTAssertEqual(Common.error(withDesc: "Test error", andCode: 42).code, 42) + } + + func testErrorWithDesc_HasCorrectDescription() { + XCTAssertEqual(Common.error(withDesc: "Something went wrong", andCode: 100).localizedDescription, "Something went wrong") + } + + func testErrorWithDesc_HasCocoaDomain() { + XCTAssertEqual(Common.error(withDesc: "Error", andCode: 1).domain, NSCocoaErrorDomain) + } + + func testErrorWithDesc_WithZeroCode() { + let error = Common.error(withDesc: "Zero code error", andCode: 0) + XCTAssertEqual(error.code, 0) + XCTAssertEqual(error.localizedDescription, "Zero code error") + } + + + // MARK: - getFileDirectory(forFilePath:) + + func testGetFileDirectory_ExtractsParentDirectory() { + let result = Common.getFileDirectory(forFilePath: URL(string: "/Users/test/Documents/file.ipa")) + XCTAssertNotNil(result) + let resultString = result?.absoluteString ?? "" + XCTAssertTrue(resultString.contains("Documents")) + XCTAssertFalse(resultString.contains("file.ipa")) + } + + func testGetFileDirectory_WithNestedPath() { + let result = Common.getFileDirectory(forFilePath: URL(string: "/a/b/c/d.txt")) + XCTAssertNotNil(result) + XCTAssertTrue((result?.absoluteString ?? "").contains("/a/b/c")) + } +} diff --git a/AppBoxTests/Common/DBErrorHandlerTests.swift b/AppBoxTests/Common/DBErrorHandlerTests.swift new file mode 100644 index 00000000..35f13a92 --- /dev/null +++ b/AppBoxTests/Common/DBErrorHandlerTests.swift @@ -0,0 +1,62 @@ +import XCTest +import AppBoxCore +@testable import AppBox + +/// Covers the classification half of `DBErrorHandler`; `handleStorageError` itself shows an `NSAlert`, so only `payload` is exercised here. +final class DBErrorHandlerTests: XCTestCase { + + func testAuthErrorsRequestReLogin() { + for error in [StorageError.notAuthenticated, .authenticationFailed("expired")] { + let (message, isAuth) = DBErrorHandler.payload(for: error) + XCTAssertTrue(isAuth, "\(error) should trigger re-login") + XCTAssertEqual(message, "You're not signed in to Dropbox. Please log in again.") + } + } + + func testNonAuthErrorsDoNotRequestReLogin() { + let errors: [StorageError] = [ + .network("offline"), .server("500"), .rateLimited(retryAfter: nil), + .conflict("clash"), .notFound, .cancelled, .unknown("?") + ] + for error in errors { + XCTAssertFalse(DBErrorHandler.payload(for: error).isAuth, "\(error) should not trigger re-login") + } + } + + func testNetworkAndServerErrorsGetTheirOwnAdvice() { + XCTAssertEqual(DBErrorHandler.payload(for: StorageError.network("x")).message, + "No internet connection. Please check your connection and try again.") + XCTAssertEqual(DBErrorHandler.payload(for: StorageError.server("x")).message, + "Dropbox had a temporary problem. Please try again.") + XCTAssertEqual(DBErrorHandler.payload(for: StorageError.rateLimited(retryAfter: 5)).message, + "Dropbox had a temporary problem. Please try again.") + } + + func testConflictExplainsNothingWasOverwritten() { + let detailed = DBErrorHandler.payload(for: StorageError.conflict("another machine won")).message + XCTAssertTrue(detailed.hasPrefix("another machine won")) + XCTAssertTrue(detailed.contains("Nothing was overwritten")) + + let empty = DBErrorHandler.payload(for: StorageError.conflict("")).message + XCTAssertTrue(empty.contains("changed by another AppBox")) + XCTAssertTrue(empty.contains("Nothing was overwritten")) + } + + func testNonStorageErrorsFallBackToTheirDescription() { + let error = NSError(domain: "com.example", code: 1, + userInfo: [NSLocalizedDescriptionKey: "disk on fire"]) + let (message, isAuth) = DBErrorHandler.payload(for: error) + XCTAssertEqual(message, "disk on fire") + XCTAssertFalse(isAuth) + } + + func testEveryCaseProducesNonEmptyText() { + let errors: [StorageError] = [ + .notAuthenticated, .authenticationFailed("a"), .network("b"), .rateLimited(retryAfter: nil), + .notFound, .conflict("c"), .server("d"), .cancelled, .unknown("e") + ] + for error in errors { + XCTAssertFalse(DBErrorHandler.payload(for: error).message.isEmpty, "\(error) produced no text") + } + } +} diff --git a/AppBoxTests/Common/KeychainHandler/KeychainHandlerTests.m b/AppBoxTests/Common/KeychainHandler/KeychainHandlerTests.m deleted file mode 100644 index dce48fb3..00000000 --- a/AppBoxTests/Common/KeychainHandler/KeychainHandlerTests.m +++ /dev/null @@ -1,68 +0,0 @@ -// -// KeychainHandlerTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "KeychainHandler.h" - -@interface KeychainHandlerTests : XCTestCase -@end - -@implementation KeychainHandlerTests - -#pragma mark - errorMessageForStatus Tests - -- (void)testErrorMessageForStatus_Success_ReturnsNoError { - NSString *message = [KeychainHandler errorMessageForStatus:errSecSuccess]; - XCTAssertNotNil(message); - // errSecSuccess (0) should not produce an error-style message - XCTAssertGreaterThan(message.length, 0); -} - -- (void)testErrorMessageForStatus_ItemNotFound_ReturnsMessage { - NSString *message = [KeychainHandler errorMessageForStatus:errSecItemNotFound]; - XCTAssertNotNil(message); - XCTAssertGreaterThan(message.length, 0); -} - -- (void)testErrorMessageForStatus_AuthFailed_ReturnsMessage { - NSString *message = [KeychainHandler errorMessageForStatus:errSecAuthFailed]; - XCTAssertNotNil(message); - XCTAssertGreaterThan(message.length, 0); -} - -- (void)testErrorMessageForStatus_DuplicateItem_ReturnsMessage { - NSString *message = [KeychainHandler errorMessageForStatus:errSecDuplicateItem]; - XCTAssertNotNil(message); - XCTAssertGreaterThan(message.length, 0); -} - -- (void)testErrorMessageForStatus_DifferentStatusesDifferentMessages { - NSString *notFound = [KeychainHandler errorMessageForStatus:errSecItemNotFound]; - NSString *duplicate = [KeychainHandler errorMessageForStatus:errSecDuplicateItem]; - XCTAssertNotEqualObjects(notFound, duplicate); -} - -#pragma mark - Constants Tests - -- (void)testKeychainAccountKey_HasExpectedValue { - XCTAssertEqualObjects(kSAMKeychainAccountKey, @"acct"); -} - -- (void)testKeychainLabelKey_HasExpectedValue { - XCTAssertEqualObjects(kSAMKeychainLabelKey, @"labl"); -} - -#pragma mark - accountsForService Tests - -- (void)testAccountsForService_WithNonExistentService_ReturnsEmptyArray { - NSArray *accounts = [KeychainHandler accountsForService:@"com.appbox.test.nonexistent.service.12345"]; - XCTAssertNotNil(accounts); - XCTAssertEqual(accounts.count, 0); -} - -@end diff --git a/AppBoxTests/Common/MailHandler/MailHandlerTests.m b/AppBoxTests/Common/MailHandler/MailHandlerTests.m deleted file mode 100644 index e9728ff2..00000000 --- a/AppBoxTests/Common/MailHandler/MailHandlerTests.m +++ /dev/null @@ -1,239 +0,0 @@ -// -// MailHandlerTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "MailHandler.h" -#import "IPAUploadInfo.h" - -@interface MailHandlerTests : XCTestCase -@end - -@implementation MailHandlerTests - -#pragma mark - isValidEmail: Tests (Single Email Regex) - -- (void)testIsValidEmail_SimpleValidEmail { - XCTAssertTrue([MailHandler isValidEmail:@"user@example.com"]); -} - -- (void)testIsValidEmail_WithSubdomain { - XCTAssertTrue([MailHandler isValidEmail:@"user@mail.example.com"]); -} - -- (void)testIsValidEmail_WithPlusTag { - XCTAssertTrue([MailHandler isValidEmail:@"user+tag@example.com"]); -} - -- (void)testIsValidEmail_WithDots { - XCTAssertTrue([MailHandler isValidEmail:@"first.last@example.com"]); -} - -- (void)testIsValidEmail_WithUnderscore { - XCTAssertTrue([MailHandler isValidEmail:@"user_name@example.com"]); -} - -- (void)testIsValidEmail_WithHyphenInDomain { - XCTAssertTrue([MailHandler isValidEmail:@"user@my-company.com"]); -} - -- (void)testIsValidEmail_WithNumbers { - XCTAssertTrue([MailHandler isValidEmail:@"user123@example456.com"]); -} - -- (void)testIsValidEmail_WithPercentSign { - XCTAssertTrue([MailHandler isValidEmail:@"user%name@example.com"]); -} - -- (void)testIsValidEmail_WithLongTLD { - XCTAssertTrue([MailHandler isValidEmail:@"user@example.technology"]); -} - -- (void)testIsValidEmail_WithTwoLetterTLD { - XCTAssertTrue([MailHandler isValidEmail:@"user@example.io"]); -} - -- (void)testIsValidEmail_EmptyString_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@""]); -} - -- (void)testIsValidEmail_NoAtSign_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"userexample.com"]); -} - -- (void)testIsValidEmail_NoDomain_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user@"]); -} - -- (void)testIsValidEmail_NoUsername_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"@example.com"]); -} - -- (void)testIsValidEmail_NoTLD_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user@example"]); -} - -- (void)testIsValidEmail_SpacesInEmail_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user @example.com"]); -} - -- (void)testIsValidEmail_DoubleAtSign_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user@@example.com"]); -} - -- (void)testIsValidEmail_DotAtEnd_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user@example."]); -} - -- (void)testIsValidEmail_JustText_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"plaintext"]); -} - -- (void)testIsValidEmail_SingleCharTLD_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user@example.c"]); -} - -- (void)testIsValidEmail_MultipleAtSigns_ReturnsNO { - XCTAssertFalse([MailHandler isValidEmail:@"user@name@example.com"]); -} - -#pragma mark - isAllValidEmail: Tests (Comma-Separated Emails) - -- (void)testIsAllValidEmail_SingleEmail { - XCTAssertTrue([MailHandler isAllValidEmail:@"user@example.com"]); -} - -- (void)testIsAllValidEmail_TwoEmails { - XCTAssertTrue([MailHandler isAllValidEmail:@"user@example.com,admin@test.io"]); -} - -- (void)testIsAllValidEmail_MultipleEmails { - XCTAssertTrue([MailHandler isAllValidEmail:@"a@b.com,c@d.org,e@f.net"]); -} - -- (void)testIsAllValidEmail_WithSpacesAfterComma { - XCTAssertTrue([MailHandler isAllValidEmail:@"user@example.com, admin@test.io"]); -} - -- (void)testIsAllValidEmail_EmptyString { - XCTAssertTrue([MailHandler isAllValidEmail:@""]); -} - -- (void)testIsAllValidEmail_InvalidEmail_ReturnsNO { - XCTAssertFalse([MailHandler isAllValidEmail:@"notanemail"]); -} - -- (void)testIsAllValidEmail_MixedValidAndInvalid_ReturnsNO { - XCTAssertFalse([MailHandler isAllValidEmail:@"user@example.com,invalid"]); -} - -- (void)testIsAllValidEmail_DoubleComma_ReturnsNO { - XCTAssertFalse([MailHandler isAllValidEmail:@"user@example.com,,admin@test.io"]); -} - -#pragma mark - parseMessage:forIPAUploadInfo: Tests - -- (void)testParseMessage_ReplacesBuildName { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"MyApp"; - info.version = @"1.0"; - info.build = @"42"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com/app"]; - - NSString *result = [MailHandler parseMessage:@"New build: {BUILD_NAME}" forIPAUploadInfo:info]; - XCTAssertTrue([result containsString:@"MyApp"]); - XCTAssertFalse([result containsString:@"{BUILD_NAME}"]); -} - -- (void)testParseMessage_ReplacesBuildNumber { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"TestApp"; - info.version = @"2.0"; - info.build = @"99"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com/app"]; - - NSString *result = [MailHandler parseMessage:@"Build #{BUILD_NUMBER}" forIPAUploadInfo:info]; - XCTAssertTrue([result containsString:@"99"]); - XCTAssertFalse([result containsString:@"{BUILD_NUMBER}"]); -} - -- (void)testParseMessage_ReplacesBuildVersion { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"TestApp"; - info.version = @"3.5.1"; - info.build = @"1"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com/app"]; - - NSString *result = [MailHandler parseMessage:@"Version: {BUILD_VERSION}" forIPAUploadInfo:info]; - XCTAssertTrue([result containsString:@"3.5.1"]); - XCTAssertFalse([result containsString:@"{BUILD_VERSION}"]); -} - -- (void)testParseMessage_ReplacesShareURL { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"TestApp"; - info.version = @"1.0"; - info.build = @"1"; - info.appShortShareableURL = [NSURL URLWithString:@"https://getappbox.com/share/abc123"]; - - NSString *result = [MailHandler parseMessage:@"Download: {SHARE_URL}" forIPAUploadInfo:info]; - XCTAssertTrue([result containsString:@"https://getappbox.com/share/abc123"]); - XCTAssertFalse([result containsString:@"{SHARE_URL}"]); -} - -- (void)testParseMessage_AllPlaceholders { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"AppBox"; - info.version = @"4.2.0"; - info.build = @"200"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com/link"]; - - NSString *template = @"{BUILD_NAME} v{BUILD_VERSION} ({BUILD_NUMBER}) - {SHARE_URL}"; - NSString *result = [MailHandler parseMessage:template forIPAUploadInfo:info]; - XCTAssertTrue([result containsString:@"AppBox"]); - XCTAssertTrue([result containsString:@"4.2.0"]); - XCTAssertTrue([result containsString:@"200"]); - XCTAssertTrue([result containsString:@"https://example.com/link"]); -} - -- (void)testParseMessage_WithoutShareURL_AppendsURL { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"TestApp"; - info.version = @"1.0"; - info.build = @"1"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com/download"]; - - NSString *result = [MailHandler parseMessage:@"Build is ready!" forIPAUploadInfo:info]; - XCTAssertTrue([result containsString:@"Build is ready!"]); - XCTAssertTrue([result containsString:@"https://example.com/download"]); -} - -- (void)testParseMessage_WithShareURL_DoesNotAppendDuplicate { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"TestApp"; - info.version = @"1.0"; - info.build = @"1"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com/dl"]; - - NSString *result = [MailHandler parseMessage:@"Link: {SHARE_URL}" forIPAUploadInfo:info]; - // Should only appear once since {SHARE_URL} was explicitly used - NSUInteger count = [[result componentsSeparatedByString:@"https://example.com/dl"] count] - 1; - XCTAssertEqual(count, 1); -} - -- (void)testParseMessage_NoPlaceholders_ReturnsOriginalWithURL { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"TestApp"; - info.version = @"1.0"; - info.build = @"1"; - info.appShortShareableURL = [NSURL URLWithString:@"https://example.com"]; - - NSString *result = [MailHandler parseMessage:@"Hello World" forIPAUploadInfo:info]; - XCTAssertTrue([result hasPrefix:@"Hello World"]); -} - -@end diff --git a/AppBoxTests/Common/MailHandler/MailHandlerTests.swift b/AppBoxTests/Common/MailHandler/MailHandlerTests.swift new file mode 100644 index 00000000..3af76310 --- /dev/null +++ b/AppBoxTests/Common/MailHandler/MailHandlerTests.swift @@ -0,0 +1,48 @@ +// +// MailHandlerTests.swift +// AppBoxTests + +import XCTest +@testable import AppBox + +final class MailHandlerTests: XCTestCase { + + // MARK: - isValidEmail (single) + + func testIsValidEmail_SimpleValidEmail() { XCTAssertTrue(MailHandler.isValidEmail("user@example.com")) } + func testIsValidEmail_WithSubdomain() { XCTAssertTrue(MailHandler.isValidEmail("user@mail.example.com")) } + func testIsValidEmail_WithPlusTag() { XCTAssertTrue(MailHandler.isValidEmail("user+tag@example.com")) } + func testIsValidEmail_WithDots() { XCTAssertTrue(MailHandler.isValidEmail("first.last@example.com")) } + func testIsValidEmail_WithUnderscore() { XCTAssertTrue(MailHandler.isValidEmail("user_name@example.com")) } + func testIsValidEmail_WithHyphenInDomain() { XCTAssertTrue(MailHandler.isValidEmail("user@my-company.com")) } + func testIsValidEmail_WithNumbers() { XCTAssertTrue(MailHandler.isValidEmail("user123@example456.com")) } + func testIsValidEmail_WithPercentSign() { XCTAssertTrue(MailHandler.isValidEmail("user%name@example.com")) } + func testIsValidEmail_WithLongTLD() { XCTAssertTrue(MailHandler.isValidEmail("user@example.technology")) } + func testIsValidEmail_WithTwoLetterTLD() { XCTAssertTrue(MailHandler.isValidEmail("user@example.io")) } + + func testIsValidEmail_EmptyString_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("")) } + func testIsValidEmail_NoAtSign_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("userexample.com")) } + func testIsValidEmail_NoDomain_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user@")) } + func testIsValidEmail_NoUsername_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("@example.com")) } + func testIsValidEmail_NoTLD_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user@example")) } + func testIsValidEmail_SpacesInEmail_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user @example.com")) } + func testIsValidEmail_DoubleAtSign_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user@@example.com")) } + func testIsValidEmail_DotAtEnd_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user@example.")) } + func testIsValidEmail_JustText_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("plaintext")) } + func testIsValidEmail_SingleCharTLD_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user@example.c")) } + func testIsValidEmail_MultipleAtSigns_ReturnsNO() { XCTAssertFalse(MailHandler.isValidEmail("user@name@example.com")) } + + // MARK: - isAllValidEmail (comma-separated) + + func testIsAllValidEmail_SingleEmail() { XCTAssertTrue(MailHandler.isAllValidEmail("user@example.com")) } + func testIsAllValidEmail_TwoEmails() { XCTAssertTrue(MailHandler.isAllValidEmail("user@example.com,admin@test.io")) } + func testIsAllValidEmail_MultipleEmails() { XCTAssertTrue(MailHandler.isAllValidEmail("a@b.com,c@d.org,e@f.net")) } + func testIsAllValidEmail_WithSpacesAfterComma() { XCTAssertTrue(MailHandler.isAllValidEmail("user@example.com, admin@test.io")) } + func testIsAllValidEmail_EmptyString() { XCTAssertTrue(MailHandler.isAllValidEmail("")) } + func testIsAllValidEmail_InvalidEmail_ReturnsNO() { XCTAssertFalse(MailHandler.isAllValidEmail("notanemail")) } + func testIsAllValidEmail_MixedValidAndInvalid_ReturnsNO() { XCTAssertFalse(MailHandler.isAllValidEmail("user@example.com,invalid")) } + func testIsAllValidEmail_DoubleComma_ReturnsNO() { XCTAssertFalse(MailHandler.isAllValidEmail("user@example.com,,admin@test.io")) } + + // MARK: - parseMessage(_:forIPAUploadInfo:) + +} diff --git a/AppBoxTests/Common/MobileProvision/MobileProvisionTests.m b/AppBoxTests/Common/MobileProvision/MobileProvisionTests.m deleted file mode 100644 index 5652b6e1..00000000 --- a/AppBoxTests/Common/MobileProvision/MobileProvisionTests.m +++ /dev/null @@ -1,192 +0,0 @@ -// -// MobileProvisionTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "MobileProvision.h" - -@interface MobileProvisionTests : XCTestCase -@property (nonatomic, strong) NSString *tempDir; -@end - -@implementation MobileProvisionTests - -- (void)setUp { - [super setUp]; - self.tempDir = [NSTemporaryDirectory() stringByAppendingPathComponent:[[NSUUID UUID] UUIDString]]; - [[NSFileManager defaultManager] createDirectoryAtPath:self.tempDir withIntermediateDirectories:YES attributes:nil error:nil]; -} - -- (void)tearDown { - [[NSFileManager defaultManager] removeItemAtPath:self.tempDir error:nil]; - [super tearDown]; -} - -- (NSString *)createProvisionFileWithPlist:(NSDictionary *)plist { - NSData *plistData = [NSPropertyListSerialization dataWithPropertyList:plist format:NSPropertyListXMLFormat_v1_0 options:0 error:nil]; - NSString *plistString = [[NSString alloc] initWithData:plistData encoding:NSUTF8StringEncoding]; - // Wrap plist in binary content to simulate a real .mobileprovision file - NSString *content = [NSString stringWithFormat:@"BINARY_HEADER_DATA%@BINARY_FOOTER_DATA", plistString]; - NSString *filePath = [self.tempDir stringByAppendingPathComponent:@"test.mobileprovision"]; - [content writeToFile:filePath atomically:YES encoding:NSISOLatin1StringEncoding error:nil]; - return filePath; -} - -#pragma mark - Build Type Detection Tests - -- (void)testBuildType_Enterprise_WhenProvisionsAllDevices { - NSDictionary *plist = @{ - @"ProvisionsAllDevices": @YES, - @"TeamIdentifier": @[@"ABC123"], - @"TeamName": @"Enterprise Corp", - @"UUID": @"test-uuid-enterprise" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertTrue(provision.isValid); - XCTAssertEqualObjects(provision.buildType, BuildTypeEnterprise); -} - -- (void)testBuildType_Development_WhenHasDevicesAndGetTaskAllow { - NSDictionary *plist = @{ - @"ProvisionedDevices": @[@"UDID-1", @"UDID-2"], - @"Entitlements": @{@"get-task-allow": @YES}, - @"TeamIdentifier": @[@"DEV123"], - @"TeamName": @"Dev Team", - @"UUID": @"test-uuid-dev" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertTrue(provision.isValid); - XCTAssertEqualObjects(provision.buildType, BuildTypeDevelopment); -} - -- (void)testBuildType_AdHoc_WhenHasDevicesButNoGetTaskAllow { - NSDictionary *plist = @{ - @"ProvisionedDevices": @[@"UDID-1", @"UDID-2"], - @"Entitlements": @{@"get-task-allow": @NO}, - @"TeamIdentifier": @[@"ADHOC123"], - @"TeamName": @"AdHoc Team", - @"UUID": @"test-uuid-adhoc" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertTrue(provision.isValid); - XCTAssertEqualObjects(provision.buildType, BuildTypeAdHoc); -} - -- (void)testBuildType_AppStore_WhenNoDevices { - NSDictionary *plist = @{ - @"TeamIdentifier": @[@"STORE123"], - @"TeamName": @"AppStore Team", - @"UUID": @"test-uuid-appstore" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertTrue(provision.isValid); - XCTAssertEqualObjects(provision.buildType, BuildTypeAppStore); -} - -#pragma mark - Property Extraction Tests - -- (void)testExtractsTeamId { - NSDictionary *plist = @{ - @"TeamIdentifier": @[@"TEAM999"], - @"TeamName": @"My Team", - @"UUID": @"uuid-123" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertEqualObjects(provision.teamId, @"TEAM999"); -} - -- (void)testExtractsTeamName { - NSDictionary *plist = @{ - @"TeamIdentifier": @[@"T1"], - @"TeamName": @"Awesome Team", - @"UUID": @"uuid-456" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertEqualObjects(provision.teamName, @"Awesome Team"); -} - -- (void)testExtractsUUID { - NSDictionary *plist = @{ - @"TeamIdentifier": @[@"T1"], - @"TeamName": @"Team", - @"UUID": @"unique-profile-uuid" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertEqualObjects(provision.uuid, @"unique-profile-uuid"); -} - -- (void)testExtractsProvisionedDevices { - NSArray *devices = @[@"AAA-BBB-CCC", @"DDD-EEE-FFF"]; - NSDictionary *plist = @{ - @"ProvisionedDevices": devices, - @"Entitlements": @{@"get-task-allow": @YES}, - @"TeamIdentifier": @[@"T1"], - @"TeamName": @"Team", - @"UUID": @"uuid" - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertEqualObjects(provision.provisionedDevices, devices); -} - -- (void)testExtractsCreationDate { - NSDate *createDate = [NSDate dateWithTimeIntervalSince1970:1700000000]; - NSDictionary *plist = @{ - @"TeamIdentifier": @[@"T1"], - @"TeamName": @"Team", - @"UUID": @"uuid", - @"CreationDate": createDate - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertEqualObjects(provision.createDate, createDate); -} - -- (void)testExtractsExpirationDate { - NSDate *expDate = [NSDate dateWithTimeIntervalSince1970:1800000000]; - NSDictionary *plist = @{ - @"TeamIdentifier": @[@"T1"], - @"TeamName": @"Team", - @"UUID": @"uuid", - @"ExpirationDate": expDate - }; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertEqualObjects(provision.expirationDate, expDate); -} - -#pragma mark - Invalid Input Tests - -- (void)testInvalidPath_IsNotValid { - MobileProvision *provision = [[MobileProvision alloc] initWithPath:@"/nonexistent/path.mobileprovision"]; - XCTAssertFalse(provision.isValid); -} - -- (void)testFileWithNoPlist_IsNotValid { - NSString *filePath = [self.tempDir stringByAppendingPathComponent:@"garbage.mobileprovision"]; - [@"this is not a valid mobileprovision file" writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:nil]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:filePath]; - XCTAssertFalse(provision.isValid); -} - -- (void)testEmptyPlist_BuildType_DeveloperId { - // An empty plist dict results in DeveloperID build type - NSDictionary *plist = @{}; - NSString *path = [self createProvisionFileWithPlist:plist]; - MobileProvision *provision = [[MobileProvision alloc] initWithPath:path]; - XCTAssertTrue(provision.isValid); - XCTAssertEqualObjects(provision.buildType, BuildTypeDeveloperId); -} - -@end diff --git a/AppBoxTests/Common/MobileProvision/MobileProvisionTests.swift b/AppBoxTests/Common/MobileProvision/MobileProvisionTests.swift new file mode 100644 index 00000000..920a1441 --- /dev/null +++ b/AppBoxTests/Common/MobileProvision/MobileProvisionTests.swift @@ -0,0 +1,118 @@ +// +// MobileProvisionTests.swift +// AppBoxTests + +import XCTest +@testable import AppBox + +final class MobileProvisionTests: XCTestCase { + + private var tempDir = "" + + override func setUp() { + super.setUp() + tempDir = (NSTemporaryDirectory() as NSString).appendingPathComponent(UUID().uuidString) + try? FileManager.default.createDirectory(atPath: tempDir, withIntermediateDirectories: true) + } + + override func tearDown() { + try? FileManager.default.removeItem(atPath: tempDir) + super.tearDown() + } + + private func makeProvisionFile(_ plist: [String: Any]) -> String { + let data = try! PropertyListSerialization.data(fromPropertyList: plist, format: .xml, options: 0) + let plistString = String(data: data, encoding: .utf8) ?? "" + let content = "BINARY_HEADER_DATA\(plistString)BINARY_FOOTER_DATA" + let filePath = (tempDir as NSString).appendingPathComponent("test.mobileprovision") + try? content.write(toFile: filePath, atomically: true, encoding: .isoLatin1) + return filePath + } + + // MARK: - Build type detection + + func testBuildType_Enterprise_WhenProvisionsAllDevices() { + let p = MobileProvision(path: makeProvisionFile([ + "ProvisionsAllDevices": true, "TeamIdentifier": ["ABC123"], "TeamName": "Enterprise Corp", "UUID": "test-uuid-enterprise"])) + XCTAssertTrue(p.isValid) + XCTAssertEqual(p.buildType, "enterprise") + } + + func testBuildType_Development_WhenHasDevicesAndGetTaskAllow() { + let p = MobileProvision(path: makeProvisionFile([ + "ProvisionedDevices": ["UDID-1", "UDID-2"], "Entitlements": ["get-task-allow": true], + "TeamIdentifier": ["DEV123"], "TeamName": "Dev Team", "UUID": "test-uuid-dev"])) + XCTAssertTrue(p.isValid) + XCTAssertEqual(p.buildType, "development") + } + + func testBuildType_AdHoc_WhenHasDevicesButNoGetTaskAllow() { + let p = MobileProvision(path: makeProvisionFile([ + "ProvisionedDevices": ["UDID-1", "UDID-2"], "Entitlements": ["get-task-allow": false], + "TeamIdentifier": ["ADHOC123"], "TeamName": "AdHoc Team", "UUID": "test-uuid-adhoc"])) + XCTAssertTrue(p.isValid) + XCTAssertEqual(p.buildType, "ad-hoc") + } + + func testBuildType_AppStore_WhenNoDevices() { + let p = MobileProvision(path: makeProvisionFile([ + "TeamIdentifier": ["STORE123"], "TeamName": "AppStore Team", "UUID": "test-uuid-appstore"])) + XCTAssertTrue(p.isValid) + XCTAssertEqual(p.buildType, "app-store") + } + + // MARK: - Property extraction + + func testExtractsTeamId() { + let p = MobileProvision(path: makeProvisionFile(["TeamIdentifier": ["TEAM999"], "TeamName": "My Team", "UUID": "uuid-123"])) + XCTAssertEqual(p.teamId, "TEAM999") + } + + func testExtractsTeamName() { + let p = MobileProvision(path: makeProvisionFile(["TeamIdentifier": ["T1"], "TeamName": "Awesome Team", "UUID": "uuid-456"])) + XCTAssertEqual(p.teamName, "Awesome Team") + } + + func testExtractsUUID() { + let p = MobileProvision(path: makeProvisionFile(["TeamIdentifier": ["T1"], "TeamName": "Team", "UUID": "unique-profile-uuid"])) + XCTAssertEqual(p.uuid, "unique-profile-uuid") + } + + func testExtractsProvisionedDevices() { + let devices = ["AAA-BBB-CCC", "DDD-EEE-FFF"] + let p = MobileProvision(path: makeProvisionFile([ + "ProvisionedDevices": devices, "Entitlements": ["get-task-allow": true], + "TeamIdentifier": ["T1"], "TeamName": "Team", "UUID": "uuid"])) + XCTAssertEqual(p.provisionedDevices, devices) + } + + func testExtractsCreationDate() { + let createDate = Date(timeIntervalSince1970: 1700000000) + let p = MobileProvision(path: makeProvisionFile(["TeamIdentifier": ["T1"], "TeamName": "Team", "UUID": "uuid", "CreationDate": createDate])) + XCTAssertEqual(p.createDate, createDate) + } + + func testExtractsExpirationDate() { + let expDate = Date(timeIntervalSince1970: 1800000000) + let p = MobileProvision(path: makeProvisionFile(["TeamIdentifier": ["T1"], "TeamName": "Team", "UUID": "uuid", "ExpirationDate": expDate])) + XCTAssertEqual(p.expirationDate, expDate) + } + + // MARK: - Invalid input + + func testInvalidPath_IsNotValid() { + XCTAssertFalse(MobileProvision(path: "/nonexistent/path.mobileprovision").isValid) + } + + func testFileWithNoPlist_IsNotValid() { + let filePath = (tempDir as NSString).appendingPathComponent("garbage.mobileprovision") + try? "this is not a valid mobileprovision file".write(toFile: filePath, atomically: true, encoding: .utf8) + XCTAssertFalse(MobileProvision(path: filePath).isValid) + } + + func testEmptyPlist_BuildType_DeveloperId() { + let p = MobileProvision(path: makeProvisionFile([:])) + XCTAssertTrue(p.isValid) + XCTAssertEqual(p.buildType, "developer-id") + } +} diff --git a/AppBoxTests/Common/NetworkHandler/NetworkHandlerTests.m b/AppBoxTests/Common/NetworkHandler/NetworkHandlerTests.m deleted file mode 100644 index fd0c31e0..00000000 --- a/AppBoxTests/Common/NetworkHandler/NetworkHandlerTests.m +++ /dev/null @@ -1,153 +0,0 @@ -// -// NetworkHandlerTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "NetworkHandler.h" - -@interface NetworkHandler (Testing) -+ (NSMutableURLRequest *)jsonRequestWithURL:(NSString *)urlString parameters:(id)parameters requestType:(RequestType)requestType; -+ (NSString *)queryStringFromDictionary:(NSDictionary *)dictionary; -+ (NSError *)errorWithCode:(NSInteger)code message:(NSString *)message; -@end - -@interface NetworkHandlerTests : XCTestCase -@end - -@implementation NetworkHandlerTests - -#pragma mark - queryStringFromDictionary Tests - -- (void)testQueryString_WithSingleParameter { - NSDictionary *params = @{@"key": @"value"}; - NSString *result = [NetworkHandler queryStringFromDictionary:params]; - XCTAssertEqualObjects(result, @"key=value"); -} - -- (void)testQueryString_WithMultipleParameters { - NSDictionary *params = @{@"a": @"1", @"b": @"2"}; - NSString *result = [NetworkHandler queryStringFromDictionary:params]; - XCTAssertTrue([result containsString:@"a=1"]); - XCTAssertTrue([result containsString:@"b=2"]); - XCTAssertTrue([result containsString:@"&"]); -} - -- (void)testQueryString_EncodesSpecialCharacters { - NSDictionary *params = @{@"query": @"hello world"}; - NSString *result = [NetworkHandler queryStringFromDictionary:params]; - XCTAssertFalse([result containsString:@" "]); - XCTAssertTrue([result containsString:@"query="]); -} - -- (void)testQueryString_EncodesAmpersandInValue { - NSDictionary *params = @{@"text": @"a&b"}; - NSString *result = [NetworkHandler queryStringFromDictionary:params]; - XCTAssertFalse([result containsString:@"a&b"]); - XCTAssertTrue([result containsString:@"text="]); -} - -- (void)testQueryString_WithEmptyDictionary { - NSDictionary *params = @{}; - NSString *result = [NetworkHandler queryStringFromDictionary:params]; - XCTAssertEqualObjects(result, @""); -} - -- (void)testQueryString_WithNumericValue { - NSDictionary *params = @{@"count": @42}; - NSString *result = [NetworkHandler queryStringFromDictionary:params]; - XCTAssertEqualObjects(result, @"count=42"); -} - -#pragma mark - jsonRequestWithURL Tests - -- (void)testJsonRequest_POST_SetsHTTPMethodToPOST { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:nil requestType:RequestPOST]; - XCTAssertEqualObjects(request.HTTPMethod, @"POST"); -} - -- (void)testJsonRequest_GET_SetsHTTPMethodToGET { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:nil requestType:RequestGET]; - XCTAssertEqualObjects(request.HTTPMethod, @"GET"); -} - -- (void)testJsonRequest_SetsAcceptHeader { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:nil requestType:RequestGET]; - XCTAssertEqualObjects([request valueForHTTPHeaderField:@"Accept"], @"application/json"); -} - -- (void)testJsonRequest_POST_WithParameters_SetsContentType { - NSDictionary *params = @{@"key": @"value"}; - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:params requestType:RequestPOST]; - XCTAssertEqualObjects([request valueForHTTPHeaderField:@"Content-Type"], @"application/json"); -} - -- (void)testJsonRequest_POST_WithParameters_SetsHTTPBody { - NSDictionary *params = @{@"name": @"AppBox"}; - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:params requestType:RequestPOST]; - XCTAssertNotNil(request.HTTPBody); - NSDictionary *decoded = [NSJSONSerialization JSONObjectWithData:request.HTTPBody options:0 error:nil]; - XCTAssertEqualObjects(decoded[@"name"], @"AppBox"); -} - -- (void)testJsonRequest_GET_WithParameters_AppendsQueryString { - NSDictionary *params = @{@"page": @"1"}; - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:params requestType:RequestGET]; - NSString *urlString = request.URL.absoluteString; - XCTAssertTrue([urlString containsString:@"?page=1"]); -} - -- (void)testJsonRequest_GET_WithExistingQuery_AppendsWithAmpersand { - NSDictionary *params = @{@"b": @"2"}; - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api?a=1" parameters:params requestType:RequestGET]; - NSString *urlString = request.URL.absoluteString; - XCTAssertTrue([urlString containsString:@"&b=2"]); -} - -- (void)testJsonRequest_UpgradesHTTPToHTTPS { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"http://example.com/api" parameters:nil requestType:RequestGET]; - XCTAssertTrue([request.URL.absoluteString hasPrefix:@"https://"]); -} - -- (void)testJsonRequest_HTTPSRemainsHTTPS { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:nil requestType:RequestGET]; - XCTAssertTrue([request.URL.absoluteString hasPrefix:@"https://"]); -} - -- (void)testJsonRequest_WithNilURL_ReturnsNil { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:nil parameters:nil requestType:RequestGET]; - XCTAssertNil(request); -} - -- (void)testJsonRequest_POST_WithNilParameters_HasNoBody { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com" parameters:nil requestType:RequestPOST]; - XCTAssertNotNil(request); - XCTAssertNil(request.HTTPBody); -} - -- (void)testJsonRequest_GET_WithNilParameters_NoQueryString { - NSMutableURLRequest *request = [NetworkHandler jsonRequestWithURL:@"https://example.com/api" parameters:nil requestType:RequestGET]; - XCTAssertEqualObjects(request.URL.absoluteString, @"https://example.com/api"); -} - -#pragma mark - errorWithCode:message: Tests - -- (void)testErrorWithCode_ReturnsCorrectCode { - NSError *error = [NetworkHandler errorWithCode:404 message:@"Not Found"]; - XCTAssertEqual(error.code, 404); -} - -- (void)testErrorWithCode_ReturnsCorrectMessage { - NSError *error = [NetworkHandler errorWithCode:500 message:@"Internal Server Error"]; - XCTAssertEqualObjects(error.localizedDescription, @"Internal Server Error"); -} - -- (void)testErrorWithCode_HasAppBoxDomain { - NSError *error = [NetworkHandler errorWithCode:0 message:@"test"]; - XCTAssertEqualObjects(error.domain, @"AppBoxNetworkHandler"); -} - -@end diff --git a/AppBoxTests/Common/UpdateHandler/UpdateHandlerTests.m b/AppBoxTests/Common/UpdateHandler/UpdateHandlerTests.m deleted file mode 100644 index e0112d02..00000000 --- a/AppBoxTests/Common/UpdateHandler/UpdateHandlerTests.m +++ /dev/null @@ -1,126 +0,0 @@ -// -// UpdateHandlerTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "UpdateHandler.h" - -@interface UpdateHandler (Testing) -+ (NSString *)extractVersionString:(NSString *)input; -@end - -@interface UpdateHandlerTests : XCTestCase -@end - -@implementation UpdateHandlerTests - -#pragma mark - extractVersionString: Tests - -- (void)testExtractVersion_SimpleVersion { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"1.2.3"], @"1.2.3"); -} - -- (void)testExtractVersion_VersionWithVPrefix { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"v2.5.1"], @"2.5.1"); -} - -- (void)testExtractVersion_VersionWithTagPrefix { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"release-3.0.0"], @"3.0.0"); -} - -- (void)testExtractVersion_VersionWithText { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"AppBox v4.1.2"], @"4.1.2"); -} - -- (void)testExtractVersion_SingleNumber { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"5"], @"5"); -} - -- (void)testExtractVersion_TwoPartVersion { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"1.0"], @"1.0"); -} - -- (void)testExtractVersion_FourPartVersion { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"1.2.3.4"], @"1.2.3.4"); -} - -- (void)testExtractVersion_WithTrailingDot_RemovesDot { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"1.2."], @"1.2"); -} - -- (void)testExtractVersion_WithLeadingText { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"version1.0.0"], @"1.0.0"); -} - -- (void)testExtractVersion_NilInput_ReturnsZero { - XCTAssertEqualObjects([UpdateHandler extractVersionString:nil], @"0"); -} - -- (void)testExtractVersion_EmptyString_ReturnsZero { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@""], @"0"); -} - -- (void)testExtractVersion_NoDigits_ReturnsZero { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"abc"], @"0"); -} - -- (void)testExtractVersion_OnlyDots_ReturnsZero { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"..."], @"0"); -} - -- (void)testExtractVersion_MixedSpecialChars { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"v2.0-beta.1"], @"2.0.1"); -} - -- (void)testExtractVersion_LeadingDotsIgnored { - // Dots before first digit are ignored per the algorithm - NSString *result = [UpdateHandler extractVersionString:@".1.2"]; - XCTAssertEqualObjects(result, @"1.2"); -} - -- (void)testExtractVersion_LargeVersionNumbers { - XCTAssertEqualObjects([UpdateHandler extractVersionString:@"123.456.789"], @"123.456.789"); -} - -#pragma mark - Version Comparison Logic Tests - -- (void)testVersionComparison_NewerVersion { - NSString *latest = [UpdateHandler extractVersionString:@"v2.0.0"]; - NSString *current = [UpdateHandler extractVersionString:@"1.9.9"]; - NSComparisonResult result = [latest compare:current options:NSNumericSearch]; - XCTAssertEqual(result, NSOrderedDescending); -} - -- (void)testVersionComparison_SameVersion { - NSString *latest = [UpdateHandler extractVersionString:@"v1.5.0"]; - NSString *current = [UpdateHandler extractVersionString:@"1.5.0"]; - NSComparisonResult result = [latest compare:current options:NSNumericSearch]; - XCTAssertEqual(result, NSOrderedSame); -} - -- (void)testVersionComparison_OlderVersion { - NSString *latest = [UpdateHandler extractVersionString:@"v1.0.0"]; - NSString *current = [UpdateHandler extractVersionString:@"2.0.0"]; - NSComparisonResult result = [latest compare:current options:NSNumericSearch]; - XCTAssertEqual(result, NSOrderedAscending); -} - -- (void)testVersionComparison_PatchUpdate { - NSString *latest = [UpdateHandler extractVersionString:@"v1.0.1"]; - NSString *current = [UpdateHandler extractVersionString:@"1.0.0"]; - NSComparisonResult result = [latest compare:current options:NSNumericSearch]; - XCTAssertEqual(result, NSOrderedDescending); -} - -- (void)testVersionComparison_MajorVsMinor { - NSString *latest = [UpdateHandler extractVersionString:@"v2.0.0"]; - NSString *current = [UpdateHandler extractVersionString:@"1.99.99"]; - NSComparisonResult result = [latest compare:current options:NSNumericSearch]; - XCTAssertEqual(result, NSOrderedDescending); -} - -@end diff --git a/AppBoxTests/Common/UserManager/UserDataTests.m b/AppBoxTests/Common/UserManager/UserDataTests.m deleted file mode 100644 index cc507912..00000000 --- a/AppBoxTests/Common/UserManager/UserDataTests.m +++ /dev/null @@ -1,198 +0,0 @@ -// -// UserDataTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "UserData.h" - -@interface UserDataTests : XCTestCase -@end - -@implementation UserDataTests - -#pragma mark - Email Preferences - -- (void)testSetAndGetUserEmail { - NSString *testEmail = @"test-unit@appbox.io"; - [UserData setUserEmail:testEmail]; - XCTAssertEqualObjects([UserData userEmail], testEmail); - // Cleanup - [UserData setUserEmail:@""]; -} - -- (void)testUserEmail_WhenNil_ReturnsEmptyString { - [UserData setUserEmail:nil]; - NSString *email = [UserData userEmail]; - XCTAssertNotNil(email); - XCTAssertEqualObjects(email, @""); -} - -#pragma mark - Message Preferences - -- (void)testSetAndGetUserMessage { - NSString *testMessage = @"Test build ready for QA"; - [UserData setUserMessage:testMessage]; - XCTAssertEqualObjects([UserData userMessage], testMessage); - [UserData setUserMessage:@""]; -} - -- (void)testUserMessage_WhenNil_ReturnsEmptyString { - [UserData setUserMessage:nil]; - NSString *message = [UserData userMessage]; - XCTAssertNotNil(message); - XCTAssertEqualObjects(message, @""); -} - -#pragma mark - Slack Webhook Preferences - -- (void)testSetAndGetSlackChannel { - NSString *webhook = @"https://hooks.slack.com/services/T00/B00/test"; - [UserData setUserSlackChannel:webhook]; - XCTAssertEqualObjects([UserData userSlackChannel], webhook); - [UserData setUserSlackChannel:@""]; -} - -- (void)testSlackChannel_WhenNil_ReturnsEmptyString { - [UserData setUserSlackChannel:nil]; - XCTAssertEqualObjects([UserData userSlackChannel], @""); -} - -- (void)testSetAndGetSlackMessage { - NSString *msg = @"New build uploaded: {name} v{version}"; - [UserData setUserSlackMessage:msg]; - XCTAssertEqualObjects([UserData userSlackMessage], msg); - [UserData setUserSlackMessage:@""]; -} - -#pragma mark - Hangout Chat Webhook - -- (void)testSetAndGetHangoutChatWebHook { - NSString *webhook = @"https://chat.googleapis.com/v1/spaces/test/messages"; - [UserData setUserHangoutChatWebHook:webhook]; - XCTAssertEqualObjects([UserData userHangoutChatWebHook], webhook); - [UserData setUserHangoutChatWebHook:@""]; -} - -#pragma mark - Microsoft Teams Webhook - -- (void)testSetAndGetMicrosoftTeamWebHook { - NSString *webhook = @"https://outlook.office.com/webhook/test"; - [UserData setUserMicrosoftTeamWebHook:webhook]; - XCTAssertEqualObjects([UserData userMicrosoftTeamWebHook], webhook); - [UserData setUserMicrosoftTeamWebHook:@""]; -} - -#pragma mark - Installation Page Settings - -- (void)testSetAndGetDownloadIPAEnable { - [UserData setDownloadIPAEnable:YES]; - XCTAssertTrue([UserData downloadIPAEnable]); - [UserData setDownloadIPAEnable:NO]; - XCTAssertFalse([UserData downloadIPAEnable]); -} - -- (void)testSetAndGetMoreDetailsEnable { - [UserData setMoreDetailsEnable:YES]; - XCTAssertTrue([UserData moreDetailsEnable]); - [UserData setMoreDetailsEnable:NO]; - XCTAssertFalse([UserData moreDetailsEnable]); -} - -- (void)testSetAndGetShowPreviousVersions { - [UserData setShowPreviousVersions:YES]; - XCTAssertTrue([UserData showPreviousVersions]); - [UserData setShowPreviousVersions:NO]; - XCTAssertFalse([UserData showPreviousVersions]); -} - -#pragma mark - Upload Chunk Size - -- (void)testUploadChunkSize_Default_Returns100 { - [UserData setUploadChunkSize:0]; - XCTAssertEqual([UserData uploadChunkSize], 100); -} - -- (void)testSetAndGetUploadChunkSize { - [UserData setUploadChunkSize:50]; - XCTAssertEqual([UserData uploadChunkSize], 50); - // Reset - [UserData setUploadChunkSize:100]; -} - -- (void)testUploadChunkSize_NegativeValue_ReturnsDefault { - [UserData setUploadChunkSize:-1]; - XCTAssertEqual([UserData uploadChunkSize], 100); -} - -#pragma mark - Debug Log - -- (void)testSetAndGetDebugLog { - [UserData setEnableDebugLog:YES]; - XCTAssertTrue([UserData debugLog]); - [UserData setEnableDebugLog:NO]; - XCTAssertFalse([UserData debugLog]); -} - -#pragma mark - Update Alert - -- (void)testSetAndGetUpdateAlertEnable { - [UserData setUpdateAlertEnable:YES]; - XCTAssertTrue([UserData updateAlertEnable]); - [UserData setUpdateAlertEnable:NO]; - XCTAssertFalse([UserData updateAlertEnable]); -} - -#pragma mark - CLI Version - -- (void)testSetAndGetCLIVersion { - NSString *version = @"2.5.1"; - [UserData setCLIVersion:version]; - XCTAssertEqualObjects([UserData cliVersion], version); - [UserData setCLIVersion:@""]; -} - -- (void)testCLIVersion_WhenNil_ReturnsEmptyString { - [UserData setCLIVersion:nil]; - XCTAssertEqualObjects([UserData cliVersion], @""); -} - -#pragma mark - Dropbox Space - -- (void)testSetAndGetDropboxUsedSpace { - [UserData setDropboxUsedSpace:@1024]; - XCTAssertEqualObjects([UserData dropboxUsedSpace], @1024); - [UserData setDropboxUsedSpace:@0]; -} - -- (void)testSetAndGetDropboxAvailableSpace { - [UserData setDropboxAvailableSpace:@2048]; - XCTAssertEqualObjects([UserData dropboxAvailableSpace], @2048); - [UserData setDropboxAvailableSpace:@0]; -} - -#pragma mark - Logged In User - -- (void)testSetAndGetLoggedInUserEmail { - NSString *email = @"user@appbox-test.com"; - [UserData setLoggedInUserEmail:email]; - XCTAssertEqualObjects([UserData loggedInUserEmail], email); - [UserData setLoggedInUserEmail:@""]; -} - -- (void)testLoggedInUserEmail_WhenNil_ReturnsEmptyString { - [UserData setLoggedInUserEmail:nil]; - XCTAssertEqualObjects([UserData loggedInUserEmail], @""); -} - -- (void)testSetAndGetLoggedInUserDisplayName { - NSString *name = @"Test User"; - [UserData setLoggedInUserDisplayName:name]; - XCTAssertEqualObjects([UserData loggedInUserDisplayName], name); - [UserData setLoggedInUserDisplayName:@""]; -} - -@end diff --git a/AppBoxTests/Common/UserManager/UserDataTests.swift b/AppBoxTests/Common/UserManager/UserDataTests.swift new file mode 100644 index 00000000..b8034b6f --- /dev/null +++ b/AppBoxTests/Common/UserManager/UserDataTests.swift @@ -0,0 +1,185 @@ +// +// UserDataTests.swift +// AppBoxTests + +import XCTest +@testable import AppBox + +final class UserDataTests: XCTestCase { + + private var savedEmail = ""; private var savedMessage = "" + private var savedDownloadIPA = false; private var savedMoreDetails = false; private var savedShowPrevious = false + private var savedChunkSize = 0; private var savedDebugLog = false; private var savedUpdateAlert = false + private var savedCLIVersion = "" + private var savedLaunchedVersion = "" + private var savedUsedSpace = NSNumber(value: 0); private var savedAvailableSpace = NSNumber(value: 0) + private var savedLoggedInEmail = ""; private var savedLoggedInName = "" + + override func setUp() { + super.setUp() + savedEmail = UserData.userEmail(); savedMessage = UserData.userMessage() + savedDownloadIPA = UserData.downloadIPAEnable(); savedMoreDetails = UserData.moreDetailsEnable() + savedShowPrevious = UserData.showPreviousVersions(); savedChunkSize = UserData.uploadChunkSize() + savedDebugLog = UserData.debugLog(); savedUpdateAlert = UserData.updateAlertEnable() + savedCLIVersion = UserData.cliVersion() + savedLaunchedVersion = UserData.lastLaunchedVersion() + savedUsedSpace = UserData.dropboxUsedSpace(); savedAvailableSpace = UserData.dropboxAvailableSpace() + savedLoggedInEmail = UserData.loggedInUserEmail(); savedLoggedInName = UserData.loggedInUserDisplayName() + } + + override func tearDown() { + UserData.setUserEmail(savedEmail); UserData.setUserMessage(savedMessage) + UserData.setDownloadIPAEnable(savedDownloadIPA); UserData.setMoreDetailsEnable(savedMoreDetails) + UserData.setShowPreviousVersions(savedShowPrevious); UserData.setUploadChunkSize(savedChunkSize) + UserData.setEnableDebugLog(savedDebugLog); UserData.setUpdateAlertEnable(savedUpdateAlert) + UserData.setCLIVersion(savedCLIVersion) + Self.storeLaunchedVersion(savedLaunchedVersion) + UserData.setDropboxUsedSpace(savedUsedSpace); UserData.setDropboxAvailableSpace(savedAvailableSpace) + UserData.setLoggedInUserEmail(savedLoggedInEmail); UserData.setLoggedInUserDisplayName(savedLoggedInName) + super.tearDown() + } + + func testSetAndGetUserEmail() { + UserData.setUserEmail("test-unit@appbox.io") + XCTAssertEqual(UserData.userEmail(), "test-unit@appbox.io") + UserData.setUserEmail("") + } + + func testUserEmail_WhenNil_ReturnsEmptyString() { + UserData.setUserEmail(nil) + XCTAssertEqual(UserData.userEmail(), "") + } + + func testSetAndGetUserMessage() { + UserData.setUserMessage("Test build ready for QA") + XCTAssertEqual(UserData.userMessage(), "Test build ready for QA") + UserData.setUserMessage("") + } + + func testUserMessage_WhenNil_ReturnsEmptyString() { + UserData.setUserMessage(nil) + XCTAssertEqual(UserData.userMessage(), "") + } + + func testSetAndGetDownloadIPAEnable() { + UserData.setDownloadIPAEnable(true); XCTAssertTrue(UserData.downloadIPAEnable()) + UserData.setDownloadIPAEnable(false); XCTAssertFalse(UserData.downloadIPAEnable()) + } + + func testSetAndGetMoreDetailsEnable() { + UserData.setMoreDetailsEnable(true); XCTAssertTrue(UserData.moreDetailsEnable()) + UserData.setMoreDetailsEnable(false); XCTAssertFalse(UserData.moreDetailsEnable()) + } + + func testSetAndGetShowPreviousVersions() { + UserData.setShowPreviousVersions(true); XCTAssertTrue(UserData.showPreviousVersions()) + UserData.setShowPreviousVersions(false); XCTAssertFalse(UserData.showPreviousVersions()) + } + + func testUploadChunkSize_Default_Returns100() { + UserData.setUploadChunkSize(0) + XCTAssertEqual(UserData.uploadChunkSize(), 100) + } + + func testSetAndGetUploadChunkSize() { + UserData.setUploadChunkSize(50) + XCTAssertEqual(UserData.uploadChunkSize(), 50) + UserData.setUploadChunkSize(100) + } + + func testUploadChunkSize_NegativeValue_ReturnsDefault() { + UserData.setUploadChunkSize(-1) + XCTAssertEqual(UserData.uploadChunkSize(), 100) + } + + func testSetAndGetDebugLog() { + UserData.setEnableDebugLog(true); XCTAssertTrue(UserData.debugLog()) + UserData.setEnableDebugLog(false); XCTAssertFalse(UserData.debugLog()) + } + + func testSetAndGetUpdateAlertEnable() { + UserData.setUpdateAlertEnable(true); XCTAssertTrue(UserData.updateAlertEnable()) + UserData.setUpdateAlertEnable(false); XCTAssertFalse(UserData.updateAlertEnable()) + } + + func testSetAndGetCLIVersion() { + UserData.setCLIVersion("2.5.1") + XCTAssertEqual(UserData.cliVersion(), "2.5.1") + UserData.setCLIVersion("") + } + + func testCLIVersion_WhenNil_ReturnsEmptyString() { + UserData.setCLIVersion(nil) + XCTAssertEqual(UserData.cliVersion(), "") + } + + func testSetAndGetDropboxUsedSpace() { + UserData.setDropboxUsedSpace(1024) + XCTAssertEqual(UserData.dropboxUsedSpace(), 1024) + UserData.setDropboxUsedSpace(0) + } + + func testSetAndGetDropboxAvailableSpace() { + UserData.setDropboxAvailableSpace(2048) + XCTAssertEqual(UserData.dropboxAvailableSpace(), 2048) + UserData.setDropboxAvailableSpace(0) + } + + func testSetAndGetLoggedInUserEmail() { + UserData.setLoggedInUserEmail("user@appbox-test.com") + XCTAssertEqual(UserData.loggedInUserEmail(), "user@appbox-test.com") + UserData.setLoggedInUserEmail("") + } + + func testLoggedInUserEmail_WhenNil_ReturnsEmptyString() { + UserData.setLoggedInUserEmail(nil) + XCTAssertEqual(UserData.loggedInUserEmail(), "") + } + + func testSetAndGetLoggedInUserDisplayName() { + UserData.setLoggedInUserDisplayName("Test User") + XCTAssertEqual(UserData.loggedInUserDisplayName(), "Test User") + UserData.setLoggedInUserDisplayName("") + } + + // MARK: - First launch after an update + + private static let launchedVersionKey = "AppBoxLastLaunchedVersion" + + private static func storeLaunchedVersion(_ version: String) { + UserDefaults.standard.set(version, forKey: launchedVersionKey) + } + + private var currentVersion: String { + Bundle.main.infoDictionary?["CFBundleShortVersionString"] as? String ?? "" + } + + func testIsFirstTimeAfterUpdate_WithOlderStoredVersion_ReturnsTrue() { + Self.storeLaunchedVersion("0.0.1") + XCTAssertTrue(UserData.isFirstTimeAfterUpdate()) + } + + func testIsFirstTimeAfterUpdate_WithSameStoredVersion_ReturnsFalse() { + Self.storeLaunchedVersion(currentVersion) + XCTAssertFalse(UserData.isFirstTimeAfterUpdate()) + } + + func testIsFirstTimeAfterUpdate_WithNewerStoredVersion_ReturnsFalse() { + Self.storeLaunchedVersion("9999.0.0") + XCTAssertFalse(UserData.isFirstTimeAfterUpdate()) + } + + func testIsFirstTimeAfterUpdate_OnFreshInstall_ReturnsFalse() { + Self.storeLaunchedVersion("") + XCTAssertFalse(UserData.isFirstTimeAfterUpdate()) + } + + func testRecordLaunchedVersion_StoresCurrentAndClearsTheUpdateFlag() { + Self.storeLaunchedVersion("0.0.1") + XCTAssertTrue(UserData.isFirstTimeAfterUpdate()) + + UserData.recordLaunchedVersion() + XCTAssertEqual(UserData.lastLaunchedVersion(), currentVersion) + XCTAssertFalse(UserData.isFirstTimeAfterUpdate()) + } +} diff --git a/AppBoxTests/Model/IPAUploadInfoTests.m b/AppBoxTests/Model/IPAUploadInfoTests.m deleted file mode 100644 index 534536bc..00000000 --- a/AppBoxTests/Model/IPAUploadInfoTests.m +++ /dev/null @@ -1,367 +0,0 @@ -// -// IPAUploadInfoTests.m -// AppBoxTests -// -// Created by AppBox on 29/05/26. -// Copyright © 2026 Developer Insider. All rights reserved. -// - -#import -#import "IPAUploadInfo.h" -#import "Constants.h" - -@interface IPAUploadInfo (Testing) -- (NSString *)validURLString:(NSString *)urlString; -@end - -@interface IPAUploadInfoTests : XCTestCase -@end - -@implementation IPAUploadInfoTests - -#pragma mark - initEmpty Tests - -- (void)testInitEmpty_SetsKeepSameLinkToZero { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - XCTAssertEqualObjects(info.keepSameLink, @0); -} - -- (void)testInitEmpty_SetsEmptyEmails { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - XCTAssertEqualObjects(info.emails, @""); -} - -- (void)testInitEmpty_SetsEmptyBuildType { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - XCTAssertEqualObjects(info.buildType, @""); -} - -- (void)testInitEmpty_SetsEmptyPersonalMessage { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - XCTAssertEqualObjects(info.personalMessage, @""); -} - -#pragma mark - setName Tests - -- (void)testSetName_RemovesSpaces { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"My App Name"; - XCTAssertEqualObjects(info.name, @"MyAppName"); -} - -- (void)testSetName_WithNoSpaces_RemainsUnchanged { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @"MyApp"; - XCTAssertEqualObjects(info.name, @"MyApp"); -} - -- (void)testSetName_WithMultipleSpaces_RemovesAll { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.name = @" My App "; - XCTAssertEqualObjects(info.name, @"MyApp"); -} - -#pragma mark - isValidInfoPlist Tests - -- (void)testIsValidInfoPlist_WithAllFields_ReturnsYES { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertTrue([info isValidInfoPlist]); -} - -- (void)testIsValidInfoPlist_WithNilPlist_ReturnsNO { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - XCTAssertFalse([info isValidInfoPlist]); -} - -- (void)testIsValidInfoPlist_WithMissingName_ReturnsNO { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertFalse([info isValidInfoPlist]); -} - -#pragma mark - setIpaInfoPlist Tests - -- (void)testSetIpaInfoPlist_ExtractsBundleVersion { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"42", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"2.1" - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.build, @"42"); -} - -- (void)testSetIpaInfoPlist_ExtractsVersion { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"3.5.2" - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.version, @"3.5.2"); -} - -- (void)testSetIpaInfoPlist_ExtractsIdentifier { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.example.myapp", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.identifer, @"com.example.myapp"); -} - -- (void)testSetIpaInfoPlist_ExtractsMinOS { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0", - @"MinimumOSVersion": @"15.0" - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.miniOSVersion, @"15.0"); -} - -- (void)testSetIpaInfoPlist_SupportedDevice_iPhone { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0", - @"UIDeviceFamily": @[@1] - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.supportedDevice, @"iPhone"); -} - -- (void)testSetIpaInfoPlist_SupportedDevice_iPad { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0", - @"UIDeviceFamily": @[@2] - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.supportedDevice, @"iPad"); -} - -- (void)testSetIpaInfoPlist_SupportedDevice_Universal { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0", - @"UIDeviceFamily": @[@1, @2] - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.supportedDevice, @"iPhone and iPad"); -} - -- (void)testSetIpaInfoPlist_GeneratesUUID { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertNotNil(info.uuid); - XCTAssertGreaterThan(info.uuid.length, 0); -} - -- (void)testSetIpaInfoPlist_NameStripsSpaces { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"My Cool App", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertEqualObjects(info.name, @"MyCoolApp"); -} - -#pragma mark - validURLString Tests - -- (void)testValidURLString_WithNormalString_ReturnsSameString { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSString *result = [info validURLString:@"MyApp"]; - XCTAssertEqualObjects(result, @"MyApp"); -} - -- (void)testValidURLString_WithEmptyString_ReturnsAppBox { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSString *result = [info validURLString:@""]; - XCTAssertEqualObjects(result, @"AppBox"); -} - -- (void)testValidURLString_WithNilString_ReturnsAppBox { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSString *result = [info validURLString:nil]; - XCTAssertEqualObjects(result, @"AppBox"); -} - -- (void)testValidURLString_StripsInvalidURLCharacters { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSString *result = [info validURLString:@"My App"]; - // Space is allowed in URLQueryAllowedCharacterSet, so it stays - XCTAssertNotNil(result); - XCTAssertGreaterThan(result.length, 0); -} - -- (void)testValidURLString_WithSpecialCharacters_RemovesDisallowedChars { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - // Characters NOT in URLQueryAllowedCharacterSet get stripped - NSString *input = [NSString stringWithFormat:@"App%cBox", 0x01]; - NSString *result = [info validURLString:input]; - XCTAssertEqualObjects(result, @"AppBox"); -} - -- (void)testValidURLString_WithVersion_PreservesDotsAndNumbers { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSString *result = [info validURLString:@"1.2.3"]; - XCTAssertEqualObjects(result, @"1.2.3"); -} - -- (void)testValidURLString_WithSlashes_PreservesSlashes { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSString *result = [info validURLString:@"/com.example.app"]; - XCTAssertEqualObjects(result, @"/com.example.app"); -} - -#pragma mark - upadteDbDirectoryByBundleDirectory Tests - -- (void)testUpdateDbDirectory_SetsDbDirectory { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"5", - @"CFBundleIdentifier": @"com.test.myapp", - @"CFBundleShortVersionString": @"2.0" - }; - info.ipaInfoPlist = plist; - XCTAssertNotNil(info.dbDirectory); - NSString *dbDirStr = info.dbDirectory.absoluteString; - XCTAssertTrue([dbDirStr containsString:@"TestApp"]); - XCTAssertTrue([dbDirStr containsString:@"ver2.0"]); - XCTAssertTrue([dbDirStr containsString:@"(5)"]); -} - -- (void)testUpdateDbDirectory_SetsDbIPAFullPath { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertNotNil(info.dbIPAFullPath); - NSString *path = info.dbIPAFullPath.absoluteString; - XCTAssertTrue([path hasSuffix:@".ipa"]); - XCTAssertTrue([path containsString:@"TestApp"]); -} - -- (void)testUpdateDbDirectory_SetsManifestPath { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertNotNil(info.dbManifestFullPath); - XCTAssertTrue([info.dbManifestFullPath.absoluteString hasSuffix:@"manifest.plist"]); -} - -- (void)testUpdateDbDirectory_SetsAppInfoJSONPath { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertNotNil(info.dbAppInfoJSONFullPath); - XCTAssertTrue([info.dbAppInfoJSONFullPath.absoluteString containsString:FILE_NAME_UNIQUE_JSON]); -} - -- (void)testUpdateDbDirectory_WithKeepSameLink_JSONInBundleDir { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - info.isKeepSameLinkEnabled = YES; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - NSString *jsonPath = info.dbAppInfoJSONFullPath.absoluteString; - // With keep same link, JSON goes in bundle directory (not versioned path) - XCTAssertFalse([jsonPath containsString:@"ver1.0"]); - XCTAssertTrue([jsonPath containsString:FILE_NAME_UNIQUE_JSON]); -} - -#pragma mark - isValidInfoPlist Validation Edge Cases - -- (void)testIsValidInfoPlist_WithMissingVersion_ReturnsNO { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleIdentifier": @"com.test.app" - }; - info.ipaInfoPlist = plist; - XCTAssertFalse([info isValidInfoPlist]); -} - -- (void)testIsValidInfoPlist_WithMissingBuild_ReturnsNO { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleIdentifier": @"com.test.app", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertFalse([info isValidInfoPlist]); -} - -- (void)testIsValidInfoPlist_WithMissingIdentifier_ReturnsNO { - IPAUploadInfo *info = [[IPAUploadInfo alloc] initEmpty]; - NSDictionary *plist = @{ - @"CFBundleName": @"TestApp", - @"CFBundleVersion": @"1", - @"CFBundleShortVersionString": @"1.0" - }; - info.ipaInfoPlist = plist; - XCTAssertFalse([info isValidInfoPlist]); -} - -@end diff --git a/AppBoxTests/Model/IPAUploadInfoTests.swift b/AppBoxTests/Model/IPAUploadInfoTests.swift new file mode 100644 index 00000000..13e50821 --- /dev/null +++ b/AppBoxTests/Model/IPAUploadInfoTests.swift @@ -0,0 +1,195 @@ +// +// IPAUploadInfoTests.swift +// AppBoxTests + +import XCTest +@testable import AppBox + +private let uniqueJSON = "appinfo.json" + +final class IPAUploadInfoTests: XCTestCase { + + private func plist(_ extra: [AnyHashable: Any] = [:]) -> [AnyHashable: Any] { + var base: [AnyHashable: Any] = [ + "CFBundleName": "TestApp", + "CFBundleVersion": "1", + "CFBundleIdentifier": "com.test.app", + "CFBundleShortVersionString": "1.0", + ] + for (k, v) in extra { base[k] = v } + return base + } + + // MARK: - init (empty) + + func testInitEmpty_SetsKeepSameLinkToZero() { XCTAssertEqual(IPAUploadInfo().keepSameLink, NSNumber(value: 0)) } + func testInitEmpty_SetsEmptyEmails() { XCTAssertEqual(IPAUploadInfo().emails, "") } + func testInitEmpty_SetsEmptyBuildType() { XCTAssertEqual(IPAUploadInfo().buildType, "") } + func testInitEmpty_SetsEmptyPersonalMessage() { XCTAssertEqual(IPAUploadInfo().personalMessage, "") } + + // MARK: - setName + + func testSetName_RemovesSpaces() { + let info = IPAUploadInfo(); info.name = "My App Name" + XCTAssertEqual(info.name, "MyAppName") + } + + func testSetName_WithNoSpaces_RemainsUnchanged() { + let info = IPAUploadInfo(); info.name = "MyApp" + XCTAssertEqual(info.name, "MyApp") + } + + func testSetName_WithMultipleSpaces_RemovesAll() { + let info = IPAUploadInfo(); info.name = " My App " + XCTAssertEqual(info.name, "MyApp") + } + + // MARK: - isValidInfoPlist + + func testIsValidInfoPlist_WithAllFields_ReturnsYES() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist() + XCTAssertTrue(info.isValidInfoPlist()) + } + + func testIsValidInfoPlist_WithNilPlist_ReturnsNO() { + XCTAssertFalse(IPAUploadInfo().isValidInfoPlist()) + } + + func testIsValidInfoPlist_WithMissingName_ReturnsNO() { + let info = IPAUploadInfo() + info.ipaInfoPlist = ["CFBundleVersion": "1", "CFBundleIdentifier": "com.test.app", "CFBundleShortVersionString": "1.0"] + XCTAssertFalse(info.isValidInfoPlist()) + } + + func testIsValidInfoPlist_WithMissingVersion_ReturnsNO() { + let info = IPAUploadInfo() + info.ipaInfoPlist = ["CFBundleName": "TestApp", "CFBundleVersion": "1", "CFBundleIdentifier": "com.test.app"] + XCTAssertFalse(info.isValidInfoPlist()) + } + + func testIsValidInfoPlist_WithMissingBuild_ReturnsNO() { + let info = IPAUploadInfo() + info.ipaInfoPlist = ["CFBundleName": "TestApp", "CFBundleIdentifier": "com.test.app", "CFBundleShortVersionString": "1.0"] + XCTAssertFalse(info.isValidInfoPlist()) + } + + func testIsValidInfoPlist_WithMissingIdentifier_ReturnsNO() { + let info = IPAUploadInfo() + info.ipaInfoPlist = ["CFBundleName": "TestApp", "CFBundleVersion": "1", "CFBundleShortVersionString": "1.0"] + XCTAssertFalse(info.isValidInfoPlist()) + } + + // MARK: - setIpaInfoPlist extraction + + func testSetIpaInfoPlist_ExtractsBundleVersion() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["CFBundleVersion": "42"]) + XCTAssertEqual(info.build, "42") + } + + func testSetIpaInfoPlist_ExtractsVersion() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["CFBundleShortVersionString": "3.5.2"]) + XCTAssertEqual(info.version, "3.5.2") + } + + func testSetIpaInfoPlist_ExtractsIdentifier() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["CFBundleIdentifier": "com.example.myapp"]) + XCTAssertEqual(info.identifer, "com.example.myapp") + } + + func testSetIpaInfoPlist_ExtractsMinOS() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["MinimumOSVersion": "15.0"]) + XCTAssertEqual(info.miniOSVersion, "15.0") + } + + func testSetIpaInfoPlist_SupportedDevice_iPhone() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["UIDeviceFamily": [1]]) + XCTAssertEqual(info.supportedDevice, "iPhone") + } + + func testSetIpaInfoPlist_SupportedDevice_iPad() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["UIDeviceFamily": [2]]) + XCTAssertEqual(info.supportedDevice, "iPad") + } + + func testSetIpaInfoPlist_SupportedDevice_Universal() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["UIDeviceFamily": [1, 2]]) + XCTAssertEqual(info.supportedDevice, "iPhone and iPad") + } + + func testSetIpaInfoPlist_GeneratesUUID() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist() + XCTAssertFalse((info.uuid ?? "").isEmpty) + } + + func testSetIpaInfoPlist_NameStripsSpaces() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["CFBundleName": "My Cool App"]) + XCTAssertEqual(info.name, "MyCoolApp") + } + + // MARK: - validURLString + + func testValidURLString_WithNormalString_ReturnsSameString() { + XCTAssertEqual(IPAUploadInfo().validURLString("MyApp"), "MyApp") + } + + func testValidURLString_WithEmptyString_ReturnsAppBox() { + XCTAssertEqual(IPAUploadInfo().validURLString(""), "AppBox") + } + + func testValidURLString_WithNilString_ReturnsAppBox() { + XCTAssertEqual(IPAUploadInfo().validURLString(nil), "AppBox") + } + + func testValidURLString_StripsInvalidURLCharacters() { + let result = IPAUploadInfo().validURLString("My App") + XCTAssertFalse(result.isEmpty) + } + + func testValidURLString_WithSpecialCharacters_RemovesDisallowedChars() { + let input = "App\u{01}Box" + XCTAssertEqual(IPAUploadInfo().validURLString(input), "AppBox") + } + + func testValidURLString_WithVersion_PreservesDotsAndNumbers() { + XCTAssertEqual(IPAUploadInfo().validURLString("1.2.3"), "1.2.3") + } + + func testValidURLString_WithSlashes_PreservesSlashes() { + XCTAssertEqual(IPAUploadInfo().validURLString("/com.example.app"), "/com.example.app") + } + + // MARK: - upadteDbDirectoryByBundleDirectory (driven via setIpaInfoPlist) + + func testUpdateDbDirectory_SetsDbDirectory() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist(["CFBundleVersion": "5", "CFBundleIdentifier": "com.test.myapp", "CFBundleShortVersionString": "2.0"]) + let dbDir = info.dbDirectory?.absoluteString ?? "" + XCTAssertTrue(dbDir.contains("TestApp")) + XCTAssertTrue(dbDir.contains("ver2.0")) + XCTAssertTrue(dbDir.contains("(5)")) + } + + func testUpdateDbDirectory_SetsDbIPAFullPath() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist() + let path = info.dbIPAFullPath?.absoluteString ?? "" + XCTAssertTrue(path.hasSuffix(".ipa")) + XCTAssertTrue(path.contains("TestApp")) + } + + func testUpdateDbDirectory_SetsManifestPath() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist() + XCTAssertTrue((info.dbManifestFullPath?.absoluteString ?? "").hasSuffix("manifest.plist")) + } + + func testUpdateDbDirectory_SetsAppInfoJSONPath() { + let info = IPAUploadInfo(); info.ipaInfoPlist = plist() + XCTAssertTrue((info.dbAppInfoJSONFullPath?.absoluteString ?? "").contains(uniqueJSON)) + } + + func testUpdateDbDirectory_WithKeepSameLink_JSONInBundleDir() { + let info = IPAUploadInfo(); info.isKeepSameLinkEnabled = true; info.ipaInfoPlist = plist() + let jsonPath = info.dbAppInfoJSONFullPath?.absoluteString ?? "" + XCTAssertFalse(jsonPath.contains("ver1.0")) + XCTAssertTrue(jsonPath.contains(uniqueJSON)) + } + +} diff --git a/Frameworks/ABPrivate.framework/ABPrivate b/Frameworks/ABPrivate.framework/ABPrivate deleted file mode 120000 index 294ab836..00000000 --- a/Frameworks/ABPrivate.framework/ABPrivate +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/ABPrivate \ No newline at end of file diff --git a/Frameworks/ABPrivate.framework/Headers b/Frameworks/ABPrivate.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/Frameworks/ABPrivate.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Frameworks/ABPrivate.framework/Modules b/Frameworks/ABPrivate.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/Frameworks/ABPrivate.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/Frameworks/ABPrivate.framework/Resources b/Frameworks/ABPrivate.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/Frameworks/ABPrivate.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Frameworks/ABPrivate.framework/Versions/A/ABPrivate b/Frameworks/ABPrivate.framework/Versions/A/ABPrivate deleted file mode 100755 index 60bf897c..00000000 Binary files a/Frameworks/ABPrivate.framework/Versions/A/ABPrivate and /dev/null differ diff --git a/Frameworks/ABPrivate.framework/Versions/A/Headers/ABPIPAUploadInfo.h b/Frameworks/ABPrivate.framework/Versions/A/Headers/ABPIPAUploadInfo.h deleted file mode 100644 index 9181bced..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Headers/ABPIPAUploadInfo.h +++ /dev/null @@ -1,40 +0,0 @@ -// -// ABPIPAUploadInfo.h -// ABPrivate -// -// Created by Vineet Choudhary on 25/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import -#import "DBManager.h" - -@interface ABPIPAUploadInfo : NSObject - -//Basic Properties -@property(nonatomic, retain) NSString *name; -@property(nonatomic, retain) NSString *version; -@property(nonatomic, retain) NSString *build; -@property(nonatomic, retain) NSString *identifer; -@property(nonatomic, retain) NSString *teamId; -@property(nonatomic, retain) NSString *buildType; -@property(nonatomic, retain) NSNumber *ipaFileSize; -@property(nonatomic, retain) NSString *miniOSVersion; -@property(nonatomic, retain) NSString *supportedDevice; - -//UniqueLink.json -@property(nonatomic, assign) BOOL isKeepSameLinkEnabled; -@property(nonatomic, retain) NSURL *uniquelinkShareableURL; - -//Shareable URL DropBox or Google Shortern -@property(nonatomic, retain) NSURL *dbAppInfoJSONFullPath; -@property(nonatomic, retain) NSURL *appShortShareableURL; - -//Emails -@property(nonatomic, retain) NSString *emails; -@property(nonatomic, retain) NSString *personalMessage; - -//Client -@property(nonatomic, retain) DBManager *dbManager; - -@end diff --git a/Frameworks/ABPrivate.framework/Versions/A/Headers/ABPrivate.h b/Frameworks/ABPrivate.framework/Versions/A/Headers/ABPrivate.h deleted file mode 100644 index e2f04fdc..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Headers/ABPrivate.h +++ /dev/null @@ -1,23 +0,0 @@ -// -// ABPrivate.h -// ABPrivate -// -// Created by Vineet Choudhary on 26/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -//! Project version number for ABPrivate. -FOUNDATION_EXPORT double ABPrivateVersionNumber; - -//! Project version string for ABPrivate. -FOUNDATION_EXPORT const unsigned char ABPrivateVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import - -#import "MailGun.h" -#import "TinyURL.h" -#import "DBManager.h" -#import "ABPIPAUploadInfo.h" - diff --git a/Frameworks/ABPrivate.framework/Versions/A/Headers/DBManager.h b/Frameworks/ABPrivate.framework/Versions/A/Headers/DBManager.h deleted file mode 100644 index 37c01d4e..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Headers/DBManager.h +++ /dev/null @@ -1,20 +0,0 @@ -// -// DBManager.h -// ABPrivate -// -// Created by Vineet Choudhary on 25/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import - -@interface DBManager : NSObject - -@property(nonatomic, strong) NSString *bundleId; -@property(nonatomic, strong) NSString *appName; -@property(nonatomic, strong) NSString *version; -@property(nonatomic, strong) NSString *userId; - --(NSString *)getDBKey; --(void)registerUserId:(NSString *)userId; -@end diff --git a/Frameworks/ABPrivate.framework/Versions/A/Headers/MailGun.h b/Frameworks/ABPrivate.framework/Versions/A/Headers/MailGun.h deleted file mode 100644 index 85c8f35d..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Headers/MailGun.h +++ /dev/null @@ -1,16 +0,0 @@ -// -// MailGun.h -// ABPrivate -// -// Created by Vineet Choudhary on 26/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import -#import "ABPIPAUploadInfo.h" - -@interface MailGun : NSObject - -+ (void)sendMailWithIPAUploadInfo:(ABPIPAUploadInfo *)ipaUploadInfo complition:(void (^) (BOOL success, NSError *error))complition; - -@end diff --git a/Frameworks/ABPrivate.framework/Versions/A/Headers/TinyURL.h b/Frameworks/ABPrivate.framework/Versions/A/Headers/TinyURL.h deleted file mode 100644 index f4115d75..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Headers/TinyURL.h +++ /dev/null @@ -1,22 +0,0 @@ -// -// TinyURL.h -// AppBox -// -// Created by Vineet Choudhary on 02/04/18. -// Copyright © 2018 Developer Insider. All rights reserved. -// - -#import -#import "ABPIPAUploadInfo.h" - -typedef void(^TinyURLShortenerCompletionBlock)(NSURL *shortURL, NSError *error); - -@interface TinyURL : NSObject - -+(TinyURL *)shared; --(instancetype)init NS_UNAVAILABLE; -+(instancetype)new NS_UNAVAILABLE; - --(void)shortenURLWithIPAUploadInfo:(ABPIPAUploadInfo *)ipaUploadInfo completion:(TinyURLShortenerCompletionBlock)completionBlock; - -@end diff --git a/Frameworks/ABPrivate.framework/Versions/A/Modules/module.modulemap b/Frameworks/ABPrivate.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index 371d4c5f..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module ABPrivate { - umbrella header "ABPrivate.h" - export * - - module * { export * } -} diff --git a/Frameworks/ABPrivate.framework/Versions/A/Resources/Info.plist b/Frameworks/ABPrivate.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index 0da5f9f3..00000000 --- a/Frameworks/ABPrivate.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,48 +0,0 @@ - - - - - BuildMachineOSBuild - 25A362 - CFBundleDevelopmentRegion - en - CFBundleExecutable - ABPrivate - CFBundleIdentifier - com.developerinsider.ABPrivate - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ABPrivate - CFBundlePackageType - FMWK - CFBundleShortVersionString - 3.6.0 - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 1 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 25A352 - DTPlatformName - macosx - DTPlatformVersion - 26.0 - DTSDKBuild - 25A352 - DTSDKName - macosx26.0 - DTXcode - 2600 - DTXcodeBuild - 17A324 - LSMinimumSystemVersion - 10.13 - NSHumanReadableCopyright - Copyright © 2018 Developer Insider. All rights reserved. - - diff --git a/Frameworks/ABPrivate.framework/Versions/Current b/Frameworks/ABPrivate.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/Frameworks/ABPrivate.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/Info.plist b/Frameworks/ObjectiveDropboxOfficial.xcframework/Info.plist deleted file mode 100644 index 37cc66d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/Info.plist +++ /dev/null @@ -1,46 +0,0 @@ - - - - - AvailableLibraries - - - BinaryPath - ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial - DebugSymbolsPath - dSYMs - LibraryIdentifier - ios-arm64 - LibraryPath - ObjectiveDropboxOfficial.framework - SupportedArchitectures - - arm64 - - SupportedPlatform - ios - - - BinaryPath - ObjectiveDropboxOfficial.framework/Versions/A/ObjectiveDropboxOfficial - DebugSymbolsPath - dSYMs - LibraryIdentifier - macos-arm64_x86_64 - LibraryPath - ObjectiveDropboxOfficial.framework - SupportedArchitectures - - arm64 - x86_64 - - SupportedPlatform - macos - - - CFBundlePackageType - XFWK - XCFrameworkFormatVersion - 1.0 - - diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTPhotoSourceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTPhotoSourceArg.h deleted file mode 100644 index 913b302b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTPhotoSourceArg.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTPhotoSourceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PhotoSourceArg` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTPhotoSourceArg : NSObject - -#pragma mark - Instance fields - -/// The `DBACCOUNTPhotoSourceArgTag` enum type represents the possible tag -/// states with which the `DBACCOUNTPhotoSourceArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBACCOUNTPhotoSourceArgTag) { - /// Image data in base64-encoded bytes. - DBACCOUNTPhotoSourceArgBase64Data, - - /// (no description). - DBACCOUNTPhotoSourceArgOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBACCOUNTPhotoSourceArgTag tag; - -/// Image data in base64-encoded bytes. @note Ensure the `isBase64Data` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *base64Data; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "base64_data". -/// -/// Description of the "base64_data" tag state: Image data in base64-encoded -/// bytes. -/// -/// @param base64Data Image data in base64-encoded bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBase64Data:(NSString *)base64Data; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "base64_data". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `base64Data` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "base64_data". -/// -- (BOOL)isBase64Data; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBACCOUNTPhotoSourceArg` union. -/// -@interface DBACCOUNTPhotoSourceArgSerializer : NSObject - -/// -/// Serializes `DBACCOUNTPhotoSourceArg` instances. -/// -/// @param instance An instance of the `DBACCOUNTPhotoSourceArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTPhotoSourceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTPhotoSourceArg *)instance; - -/// -/// Deserializes `DBACCOUNTPhotoSourceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTPhotoSourceArg` API object. -/// -/// @return An instantiation of the `DBACCOUNTPhotoSourceArg` object. -/// -+ (DBACCOUNTPhotoSourceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTRouteObjects.h deleted file mode 100644 index 949800ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTRouteObjects.h +++ /dev/null @@ -1,25 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Account namespace. Each route in the Account -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBACCOUNTRouteObjects : NSObject - -/// Accessor method for the setProfilePhoto route object. -+ (DBRoute *)DBACCOUNTSetProfilePhoto; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoArg.h deleted file mode 100644 index 1d27d52a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBACCOUNTSetProfilePhotoArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetProfilePhotoArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTSetProfilePhotoArg : NSObject - -#pragma mark - Instance fields - -/// Image to set as the user's new profile photo. -@property (nonatomic, readonly) DBACCOUNTPhotoSourceArg *photo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param photo Image to set as the user's new profile photo. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPhoto:(DBACCOUNTPhotoSourceArg *)photo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetProfilePhotoArg` struct. -/// -@interface DBACCOUNTSetProfilePhotoArgSerializer : NSObject - -/// -/// Serializes `DBACCOUNTSetProfilePhotoArg` instances. -/// -/// @param instance An instance of the `DBACCOUNTSetProfilePhotoArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTSetProfilePhotoArg *)instance; - -/// -/// Deserializes `DBACCOUNTSetProfilePhotoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoArg` API object. -/// -/// @return An instantiation of the `DBACCOUNTSetProfilePhotoArg` object. -/// -+ (DBACCOUNTSetProfilePhotoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoError.h deleted file mode 100644 index adbc8476..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoError.h +++ /dev/null @@ -1,197 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTSetProfilePhotoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetProfilePhotoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTSetProfilePhotoError : NSObject - -#pragma mark - Instance fields - -/// The `DBACCOUNTSetProfilePhotoErrorTag` enum type represents the possible tag -/// states with which the `DBACCOUNTSetProfilePhotoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBACCOUNTSetProfilePhotoErrorTag) { - /// File cannot be set as profile photo. - DBACCOUNTSetProfilePhotoErrorFileTypeError, - - /// File cannot exceed 10 MB. - DBACCOUNTSetProfilePhotoErrorFileSizeError, - - /// Image must be larger than 128 x 128. - DBACCOUNTSetProfilePhotoErrorDimensionError, - - /// Image could not be thumbnailed. - DBACCOUNTSetProfilePhotoErrorThumbnailError, - - /// Temporary infrastructure failure, please retry. - DBACCOUNTSetProfilePhotoErrorTransientError, - - /// (no description). - DBACCOUNTSetProfilePhotoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBACCOUNTSetProfilePhotoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file_type_error". -/// -/// Description of the "file_type_error" tag state: File cannot be set as -/// profile photo. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTypeError; - -/// -/// Initializes union class with tag state of "file_size_error". -/// -/// Description of the "file_size_error" tag state: File cannot exceed 10 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSizeError; - -/// -/// Initializes union class with tag state of "dimension_error". -/// -/// Description of the "dimension_error" tag state: Image must be larger than -/// 128 x 128. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensionError; - -/// -/// Initializes union class with tag state of "thumbnail_error". -/// -/// Description of the "thumbnail_error" tag state: Image could not be -/// thumbnailed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithThumbnailError; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file_type_error". -/// -/// @return Whether the union's current tag state has value "file_type_error". -/// -- (BOOL)isFileTypeError; - -/// -/// Retrieves whether the union's current tag state has value "file_size_error". -/// -/// @return Whether the union's current tag state has value "file_size_error". -/// -- (BOOL)isFileSizeError; - -/// -/// Retrieves whether the union's current tag state has value "dimension_error". -/// -/// @return Whether the union's current tag state has value "dimension_error". -/// -- (BOOL)isDimensionError; - -/// -/// Retrieves whether the union's current tag state has value "thumbnail_error". -/// -/// @return Whether the union's current tag state has value "thumbnail_error". -/// -- (BOOL)isThumbnailError; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBACCOUNTSetProfilePhotoError` union. -/// -@interface DBACCOUNTSetProfilePhotoErrorSerializer : NSObject - -/// -/// Serializes `DBACCOUNTSetProfilePhotoError` instances. -/// -/// @param instance An instance of the `DBACCOUNTSetProfilePhotoError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTSetProfilePhotoError *)instance; - -/// -/// Deserializes `DBACCOUNTSetProfilePhotoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoError` API object. -/// -/// @return An instantiation of the `DBACCOUNTSetProfilePhotoError` object. -/// -+ (DBACCOUNTSetProfilePhotoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoResult.h deleted file mode 100644 index 8a779ec8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTSetProfilePhotoResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTSetProfilePhotoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetProfilePhotoResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTSetProfilePhotoResult : NSObject - -#pragma mark - Instance fields - -/// URL for the photo representing the user, if one is set. -@property (nonatomic, readonly, copy) NSString *profilePhotoUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfilePhotoUrl:(NSString *)profilePhotoUrl; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetProfilePhotoResult` struct. -/// -@interface DBACCOUNTSetProfilePhotoResultSerializer : NSObject - -/// -/// Serializes `DBACCOUNTSetProfilePhotoResult` instances. -/// -/// @param instance An instance of the `DBACCOUNTSetProfilePhotoResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTSetProfilePhotoResult *)instance; - -/// -/// Deserializes `DBACCOUNTSetProfilePhotoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoResult` API object. -/// -/// @return An instantiation of the `DBACCOUNTSetProfilePhotoResult` object. -/// -+ (DBACCOUNTSetProfilePhotoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTUserAuthRoutes.h deleted file mode 100644 index 460aaaa9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBACCOUNTUserAuthRoutes.h +++ /dev/null @@ -1,47 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBACCOUNTSetProfilePhotoError; -@class DBACCOUNTSetProfilePhotoResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Account` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBACCOUNTUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBACCOUNTUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Sets a user's profile photo. -/// -/// @param photo Image to set as the user's new profile photo. -/// -/// @return Through the response callback, the caller will receive a `DBACCOUNTSetProfilePhotoResult` object on success -/// or a `DBACCOUNTSetProfilePhotoError` object on failure. -/// -- (DBRpcTask *)setProfilePhoto: - (DBACCOUNTPhotoSourceArg *)photo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCLaunchEmptyResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCLaunchEmptyResult.h deleted file mode 100644 index 4c7e0176..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCLaunchEmptyResult.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCLaunchEmptyResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LaunchEmptyResult` union. -/// -/// Result returned by methods that may either launch an asynchronous job or -/// complete synchronously. Upon synchronous completion of the job, no -/// additional information is returned. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCLaunchEmptyResult : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCLaunchEmptyResultTag` enum type represents the possible tag -/// states with which the `DBASYNCLaunchEmptyResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCLaunchEmptyResultTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBASYNCLaunchEmptyResultAsyncJobId, - - /// The job finished synchronously and successfully. - DBASYNCLaunchEmptyResultComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCLaunchEmptyResultTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The job finished synchronously and -/// successfully. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCLaunchEmptyResult` union. -/// -@interface DBASYNCLaunchEmptyResultSerializer : NSObject - -/// -/// Serializes `DBASYNCLaunchEmptyResult` instances. -/// -/// @param instance An instance of the `DBASYNCLaunchEmptyResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCLaunchEmptyResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCLaunchEmptyResult *)instance; - -/// -/// Deserializes `DBASYNCLaunchEmptyResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCLaunchEmptyResult` API object. -/// -/// @return An instantiation of the `DBASYNCLaunchEmptyResult` object. -/// -+ (DBASYNCLaunchEmptyResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCLaunchResultBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCLaunchResultBase.h deleted file mode 100644 index 0afb4838..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCLaunchResultBase.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCLaunchResultBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LaunchResultBase` union. -/// -/// Result returned by methods that launch an asynchronous job. A method who may -/// either launch an asynchronous job, or complete the request synchronously, -/// can use this union by extending it, and adding a 'complete' field with the -/// type of the synchronous response. See LaunchEmptyResult for an example. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCLaunchResultBase : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCLaunchResultBaseTag` enum type represents the possible tag -/// states with which the `DBASYNCLaunchResultBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCLaunchResultBaseTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBASYNCLaunchResultBaseAsyncJobId, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCLaunchResultBaseTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCLaunchResultBase` union. -/// -@interface DBASYNCLaunchResultBaseSerializer : NSObject - -/// -/// Serializes `DBASYNCLaunchResultBase` instances. -/// -/// @param instance An instance of the `DBASYNCLaunchResultBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCLaunchResultBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCLaunchResultBase *)instance; - -/// -/// Deserializes `DBASYNCLaunchResultBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCLaunchResultBase` API object. -/// -/// @return An instantiation of the `DBASYNCLaunchResultBase` object. -/// -+ (DBASYNCLaunchResultBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollArg.h deleted file mode 100644 index 0389f2ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollArg` struct. -/// -/// Arguments for methods that poll the status of an asynchronous job. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollArg : NSObject - -#pragma mark - Instance fields - -/// Id of the asynchronous job. This is the value of a response returned from -/// the method that launched the job. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a -/// response returned from the method that launched the job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PollArg` struct. -/// -@interface DBASYNCPollArgSerializer : NSObject - -/// -/// Serializes `DBASYNCPollArg` instances. -/// -/// @param instance An instance of the `DBASYNCPollArg` API object. -/// -/// @return A json-compatible dictionary representation of the `DBASYNCPollArg` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollArg *)instance; - -/// -/// Deserializes `DBASYNCPollArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollArg` API object. -/// -/// @return An instantiation of the `DBASYNCPollArg` object. -/// -+ (DBASYNCPollArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollEmptyResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollEmptyResult.h deleted file mode 100644 index ee9a9395..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollEmptyResult.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollEmptyResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollEmptyResult` union. -/// -/// Result returned by methods that poll for the status of an asynchronous job. -/// Upon completion of the job, no additional information is returned. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollEmptyResult : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCPollEmptyResultTag` enum type represents the possible tag states -/// with which the `DBASYNCPollEmptyResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCPollEmptyResultTag) { - /// The asynchronous job is still in progress. - DBASYNCPollEmptyResultInProgress, - - /// The asynchronous job has completed successfully. - DBASYNCPollEmptyResultComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCPollEmptyResultTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has completed -/// successfully. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCPollEmptyResult` union. -/// -@interface DBASYNCPollEmptyResultSerializer : NSObject - -/// -/// Serializes `DBASYNCPollEmptyResult` instances. -/// -/// @param instance An instance of the `DBASYNCPollEmptyResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCPollEmptyResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollEmptyResult *)instance; - -/// -/// Deserializes `DBASYNCPollEmptyResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollEmptyResult` API object. -/// -/// @return An instantiation of the `DBASYNCPollEmptyResult` object. -/// -+ (DBASYNCPollEmptyResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollError.h deleted file mode 100644 index 17785c66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollError.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollError` union. -/// -/// Error returned by methods for polling the status of asynchronous job. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollError : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCPollErrorTag` enum type represents the possible tag states with -/// which the `DBASYNCPollError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCPollErrorTag) { - /// The job ID is invalid. - DBASYNCPollErrorInvalidAsyncJobId, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBASYNCPollErrorInternalError, - - /// (no description). - DBASYNCPollErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCPollErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_async_job_id". -/// -/// Description of the "invalid_async_job_id" tag state: The job ID is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAsyncJobId; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_async_job_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_async_job_id". -/// -- (BOOL)isInvalidAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCPollError` union. -/// -@interface DBASYNCPollErrorSerializer : NSObject - -/// -/// Serializes `DBASYNCPollError` instances. -/// -/// @param instance An instance of the `DBASYNCPollError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCPollError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollError *)instance; - -/// -/// Deserializes `DBASYNCPollError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollError` API object. -/// -/// @return An instantiation of the `DBASYNCPollError` object. -/// -+ (DBASYNCPollError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollResultBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollResultBase.h deleted file mode 100644 index da8e38b0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBASYNCPollResultBase.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollResultBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollResultBase` union. -/// -/// Result returned by methods that poll for the status of an asynchronous job. -/// Unions that extend this union should add a 'complete' field with a type of -/// the information returned upon job completion. See PollEmptyResult for an -/// example. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollResultBase : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCPollResultBaseTag` enum type represents the possible tag states -/// with which the `DBASYNCPollResultBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCPollResultBaseTag) { - /// The asynchronous job is still in progress. - DBASYNCPollResultBaseInProgress, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCPollResultBaseTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCPollResultBase` union. -/// -@interface DBASYNCPollResultBaseSerializer : NSObject - -/// -/// Serializes `DBASYNCPollResultBase` instances. -/// -/// @param instance An instance of the `DBASYNCPollResultBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCPollResultBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollResultBase *)instance; - -/// -/// Deserializes `DBASYNCPollResultBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollResultBase` API object. -/// -/// @return An instantiation of the `DBASYNCPollResultBase` object. -/// -+ (DBASYNCPollResultBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAccessError.h deleted file mode 100644 index 93e41707..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAccessError.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHAccessError; -@class DBAUTHInvalidAccountTypeError; -@class DBAUTHPaperAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessError` union. -/// -/// Error occurred because the account doesn't have permission to access the -/// resource. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHAccessErrorTag` enum type represents the possible tag states with -/// which the `DBAUTHAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHAccessErrorTag) { - /// Current account type cannot access the resource. - DBAUTHAccessErrorInvalidAccountType, - - /// Current account cannot access Paper. - DBAUTHAccessErrorPaperAccessDenied, - - /// (no description). - DBAUTHAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHAccessErrorTag tag; - -/// Current account type cannot access the resource. @note Ensure the -/// `isInvalidAccountType` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBAUTHInvalidAccountTypeError *invalidAccountType; - -/// Current account cannot access Paper. @note Ensure the `isPaperAccessDenied` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBAUTHPaperAccessError *paperAccessDenied; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_account_type". -/// -/// Description of the "invalid_account_type" tag state: Current account type -/// cannot access the resource. -/// -/// @param invalidAccountType Current account type cannot access the resource. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAccountType:(DBAUTHInvalidAccountTypeError *)invalidAccountType; - -/// -/// Initializes union class with tag state of "paper_access_denied". -/// -/// Description of the "paper_access_denied" tag state: Current account cannot -/// access Paper. -/// -/// @param paperAccessDenied Current account cannot access Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAccessDenied:(DBAUTHPaperAccessError *)paperAccessDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_account_type". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidAccountType` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invalid_account_type". -/// -- (BOOL)isInvalidAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_access_denied". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAccessDenied` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_access_denied". -/// -- (BOOL)isPaperAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHAccessError` union. -/// -@interface DBAUTHAccessErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHAccessError` instances. -/// -/// @param instance An instance of the `DBAUTHAccessError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHAccessError *)instance; - -/// -/// Deserializes `DBAUTHAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHAccessError` API object. -/// -/// @return An instantiation of the `DBAUTHAccessError` object. -/// -+ (DBAUTHAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAppAuthRoutes.h deleted file mode 100644 index 0e5e1fcc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAppAuthRoutes.h +++ /dev/null @@ -1,49 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBAUTHTokenFromOAuth1Error; -@class DBAUTHTokenFromOAuth1Result; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Auth` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBAUTHAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBAUTHAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// DEPRECATED: Creates an OAuth 2.0 access token from the supplied OAuth 1.0 access token. -/// -/// @param oauth1Token The supplied OAuth 1.0 access token. -/// @param oauth1TokenSecret The token secret associated with the supplied access token. -/// -/// @return Through the response callback, the caller will receive a `DBAUTHTokenFromOAuth1Result` object on success or -/// a `DBAUTHTokenFromOAuth1Error` object on failure. -/// -- (DBRpcTask *)tokenFromOauth1:(NSString *)oauth1Token - oauth1TokenSecret: - (NSString *)oauth1TokenSecret - __deprecated_msg("tokenFromOauth1 is deprecated."); - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAuthError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAuthError.h deleted file mode 100644 index f7918f82..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHAuthError.h +++ /dev/null @@ -1,262 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHAuthError; -@class DBAUTHTokenScopeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AuthError` union. -/// -/// Errors occurred during authentication. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHAuthError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHAuthErrorTag` enum type represents the possible tag states with -/// which the `DBAUTHAuthError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHAuthErrorTag) { - /// The access token is invalid. - DBAUTHAuthErrorInvalidAccessToken, - - /// The user specified in 'Dropbox-API-Select-User' is no longer on the - /// team. - DBAUTHAuthErrorInvalidSelectUser, - - /// The user specified in 'Dropbox-API-Select-Admin' is not a Dropbox - /// Business team admin. - DBAUTHAuthErrorInvalidSelectAdmin, - - /// The user has been suspended. - DBAUTHAuthErrorUserSuspended, - - /// The access token has expired. - DBAUTHAuthErrorExpiredAccessToken, - - /// The access token does not have the required scope to access the route. - DBAUTHAuthErrorMissingScope, - - /// The route is not available to public. - DBAUTHAuthErrorRouteAccessDenied, - - /// (no description). - DBAUTHAuthErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHAuthErrorTag tag; - -/// The access token does not have the required scope to access the route. @note -/// Ensure the `isMissingScope` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBAUTHTokenScopeError *missingScope; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_access_token". -/// -/// Description of the "invalid_access_token" tag state: The access token is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAccessToken; - -/// -/// Initializes union class with tag state of "invalid_select_user". -/// -/// Description of the "invalid_select_user" tag state: The user specified in -/// 'Dropbox-API-Select-User' is no longer on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSelectUser; - -/// -/// Initializes union class with tag state of "invalid_select_admin". -/// -/// Description of the "invalid_select_admin" tag state: The user specified in -/// 'Dropbox-API-Select-Admin' is not a Dropbox Business team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSelectAdmin; - -/// -/// Initializes union class with tag state of "user_suspended". -/// -/// Description of the "user_suspended" tag state: The user has been suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserSuspended; - -/// -/// Initializes union class with tag state of "expired_access_token". -/// -/// Description of the "expired_access_token" tag state: The access token has -/// expired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExpiredAccessToken; - -/// -/// Initializes union class with tag state of "missing_scope". -/// -/// Description of the "missing_scope" tag state: The access token does not have -/// the required scope to access the route. -/// -/// @param missingScope The access token does not have the required scope to -/// access the route. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMissingScope:(DBAUTHTokenScopeError *)missingScope; - -/// -/// Initializes union class with tag state of "route_access_denied". -/// -/// Description of the "route_access_denied" tag state: The route is not -/// available to public. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRouteAccessDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_access_token". -/// -/// @return Whether the union's current tag state has value -/// "invalid_access_token". -/// -- (BOOL)isInvalidAccessToken; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_select_user". -/// -/// @return Whether the union's current tag state has value -/// "invalid_select_user". -/// -- (BOOL)isInvalidSelectUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_select_admin". -/// -/// @return Whether the union's current tag state has value -/// "invalid_select_admin". -/// -- (BOOL)isInvalidSelectAdmin; - -/// -/// Retrieves whether the union's current tag state has value "user_suspended". -/// -/// @return Whether the union's current tag state has value "user_suspended". -/// -- (BOOL)isUserSuspended; - -/// -/// Retrieves whether the union's current tag state has value -/// "expired_access_token". -/// -/// @return Whether the union's current tag state has value -/// "expired_access_token". -/// -- (BOOL)isExpiredAccessToken; - -/// -/// Retrieves whether the union's current tag state has value "missing_scope". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `missingScope` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "missing_scope". -/// -- (BOOL)isMissingScope; - -/// -/// Retrieves whether the union's current tag state has value -/// "route_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "route_access_denied". -/// -- (BOOL)isRouteAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHAuthError` union. -/// -@interface DBAUTHAuthErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHAuthError` instances. -/// -/// @param instance An instance of the `DBAUTHAuthError` API object. -/// -/// @return A json-compatible dictionary representation of the `DBAUTHAuthError` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHAuthError *)instance; - -/// -/// Deserializes `DBAUTHAuthError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHAuthError` API object. -/// -/// @return An instantiation of the `DBAUTHAuthError` object. -/// -+ (DBAUTHAuthError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHInvalidAccountTypeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHInvalidAccountTypeError.h deleted file mode 100644 index 052a843d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHInvalidAccountTypeError.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHInvalidAccountTypeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InvalidAccountTypeError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHInvalidAccountTypeError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHInvalidAccountTypeErrorTag` enum type represents the possible tag -/// states with which the `DBAUTHInvalidAccountTypeError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHInvalidAccountTypeErrorTag) { - /// Current account type doesn't have permission to access this route - /// endpoint. - DBAUTHInvalidAccountTypeErrorEndpoint, - - /// Current account type doesn't have permission to access this feature. - DBAUTHInvalidAccountTypeErrorFeature, - - /// (no description). - DBAUTHInvalidAccountTypeErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHInvalidAccountTypeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "endpoint". -/// -/// Description of the "endpoint" tag state: Current account type doesn't have -/// permission to access this route endpoint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndpoint; - -/// -/// Initializes union class with tag state of "feature". -/// -/// Description of the "feature" tag state: Current account type doesn't have -/// permission to access this feature. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFeature; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "endpoint". -/// -/// @return Whether the union's current tag state has value "endpoint". -/// -- (BOOL)isEndpoint; - -/// -/// Retrieves whether the union's current tag state has value "feature". -/// -/// @return Whether the union's current tag state has value "feature". -/// -- (BOOL)isFeature; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHInvalidAccountTypeError` union. -/// -@interface DBAUTHInvalidAccountTypeErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHInvalidAccountTypeError` instances. -/// -/// @param instance An instance of the `DBAUTHInvalidAccountTypeError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHInvalidAccountTypeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHInvalidAccountTypeError *)instance; - -/// -/// Deserializes `DBAUTHInvalidAccountTypeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHInvalidAccountTypeError` API object. -/// -/// @return An instantiation of the `DBAUTHInvalidAccountTypeError` object. -/// -+ (DBAUTHInvalidAccountTypeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHPaperAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHPaperAccessError.h deleted file mode 100644 index 4f39162d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHPaperAccessError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHPaperAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAccessError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHPaperAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHPaperAccessErrorTag` enum type represents the possible tag states -/// with which the `DBAUTHPaperAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHPaperAccessErrorTag) { - /// Paper is disabled. - DBAUTHPaperAccessErrorPaperDisabled, - - /// The provided user has not used Paper yet. - DBAUTHPaperAccessErrorNotPaperUser, - - /// (no description). - DBAUTHPaperAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHPaperAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "paper_disabled". -/// -/// Description of the "paper_disabled" tag state: Paper is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDisabled; - -/// -/// Initializes union class with tag state of "not_paper_user". -/// -/// Description of the "not_paper_user" tag state: The provided user has not -/// used Paper yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotPaperUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "paper_disabled". -/// -/// @return Whether the union's current tag state has value "paper_disabled". -/// -- (BOOL)isPaperDisabled; - -/// -/// Retrieves whether the union's current tag state has value "not_paper_user". -/// -/// @return Whether the union's current tag state has value "not_paper_user". -/// -- (BOOL)isNotPaperUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHPaperAccessError` union. -/// -@interface DBAUTHPaperAccessErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHPaperAccessError` instances. -/// -/// @param instance An instance of the `DBAUTHPaperAccessError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHPaperAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHPaperAccessError *)instance; - -/// -/// Deserializes `DBAUTHPaperAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHPaperAccessError` API object. -/// -/// @return An instantiation of the `DBAUTHPaperAccessError` object. -/// -+ (DBAUTHPaperAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRateLimitError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRateLimitError.h deleted file mode 100644 index 191f36dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRateLimitError.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHRateLimitError; -@class DBAUTHRateLimitReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RateLimitError` struct. -/// -/// Error occurred because the app is being rate limited. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHRateLimitError : NSObject - -#pragma mark - Instance fields - -/// The reason why the app is being rate limited. -@property (nonatomic, readonly) DBAUTHRateLimitReason *reason; - -/// The number of seconds that the app should wait before making another -/// request. -@property (nonatomic, readonly) NSNumber *retryAfter; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param reason The reason why the app is being rate limited. -/// @param retryAfter The number of seconds that the app should wait before -/// making another request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReason:(DBAUTHRateLimitReason *)reason retryAfter:(nullable NSNumber *)retryAfter; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param reason The reason why the app is being rate limited. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReason:(DBAUTHRateLimitReason *)reason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RateLimitError` struct. -/// -@interface DBAUTHRateLimitErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHRateLimitError` instances. -/// -/// @param instance An instance of the `DBAUTHRateLimitError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHRateLimitError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHRateLimitError *)instance; - -/// -/// Deserializes `DBAUTHRateLimitError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHRateLimitError` API object. -/// -/// @return An instantiation of the `DBAUTHRateLimitError` object. -/// -+ (DBAUTHRateLimitError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRateLimitReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRateLimitReason.h deleted file mode 100644 index 45fbb1fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRateLimitReason.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHRateLimitReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RateLimitReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHRateLimitReason : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHRateLimitReasonTag` enum type represents the possible tag states -/// with which the `DBAUTHRateLimitReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHRateLimitReasonTag) { - /// You are making too many requests in the past few minutes. - DBAUTHRateLimitReasonTooManyRequests, - - /// There are currently too many write operations happening in the user's - /// Dropbox. - DBAUTHRateLimitReasonTooManyWriteOperations, - - /// (no description). - DBAUTHRateLimitReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHRateLimitReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_requests". -/// -/// Description of the "too_many_requests" tag state: You are making too many -/// requests in the past few minutes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyRequests; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are -/// currently too many write operations happening in the user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_requests". -/// -/// @return Whether the union's current tag state has value "too_many_requests". -/// -- (BOOL)isTooManyRequests; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHRateLimitReason` union. -/// -@interface DBAUTHRateLimitReasonSerializer : NSObject - -/// -/// Serializes `DBAUTHRateLimitReason` instances. -/// -/// @param instance An instance of the `DBAUTHRateLimitReason` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHRateLimitReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHRateLimitReason *)instance; - -/// -/// Deserializes `DBAUTHRateLimitReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHRateLimitReason` API object. -/// -/// @return An instantiation of the `DBAUTHRateLimitReason` object. -/// -+ (DBAUTHRateLimitReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRouteObjects.h deleted file mode 100644 index 4ea03fd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHRouteObjects.h +++ /dev/null @@ -1,27 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Auth namespace. Each route in the Auth namespace -/// has its own static object, which contains information about the route. -/// -@interface DBAUTHRouteObjects : NSObject - -/// Accessor method for the tokenFromOauth1 route object. -+ (DBRoute *)DBAUTHTokenFromOauth1; - -/// Accessor method for the tokenRevoke route object. -+ (DBRoute *)DBAUTHTokenRevoke; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Arg.h deleted file mode 100644 index b5793d9b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Arg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenFromOAuth1Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenFromOAuth1Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenFromOAuth1Arg : NSObject - -#pragma mark - Instance fields - -/// The supplied OAuth 1.0 access token. -@property (nonatomic, readonly, copy) NSString *oauth1Token; - -/// The token secret associated with the supplied access token. -@property (nonatomic, readonly, copy) NSString *oauth1TokenSecret; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param oauth1Token The supplied OAuth 1.0 access token. -/// @param oauth1TokenSecret The token secret associated with the supplied -/// access token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOauth1Token:(NSString *)oauth1Token oauth1TokenSecret:(NSString *)oauth1TokenSecret; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenFromOAuth1Arg` struct. -/// -@interface DBAUTHTokenFromOAuth1ArgSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenFromOAuth1Arg` instances. -/// -/// @param instance An instance of the `DBAUTHTokenFromOAuth1Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenFromOAuth1Arg *)instance; - -/// -/// Deserializes `DBAUTHTokenFromOAuth1Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Arg` API object. -/// -/// @return An instantiation of the `DBAUTHTokenFromOAuth1Arg` object. -/// -+ (DBAUTHTokenFromOAuth1Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Error.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Error.h deleted file mode 100644 index ec3b6b9c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Error.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenFromOAuth1Error; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenFromOAuth1Error` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenFromOAuth1Error : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHTokenFromOAuth1ErrorTag` enum type represents the possible tag -/// states with which the `DBAUTHTokenFromOAuth1Error` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHTokenFromOAuth1ErrorTag) { - /// Part or all of the OAuth 1.0 access token info is invalid. - DBAUTHTokenFromOAuth1ErrorInvalidOauth1TokenInfo, - - /// The authorized app does not match the app associated with the supplied - /// access token. - DBAUTHTokenFromOAuth1ErrorAppIdMismatch, - - /// (no description). - DBAUTHTokenFromOAuth1ErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHTokenFromOAuth1ErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_oauth1_token_info". -/// -/// Description of the "invalid_oauth1_token_info" tag state: Part or all of the -/// OAuth 1.0 access token info is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidOauth1TokenInfo; - -/// -/// Initializes union class with tag state of "app_id_mismatch". -/// -/// Description of the "app_id_mismatch" tag state: The authorized app does not -/// match the app associated with the supplied access token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppIdMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_oauth1_token_info". -/// -/// @return Whether the union's current tag state has value -/// "invalid_oauth1_token_info". -/// -- (BOOL)isInvalidOauth1TokenInfo; - -/// -/// Retrieves whether the union's current tag state has value "app_id_mismatch". -/// -/// @return Whether the union's current tag state has value "app_id_mismatch". -/// -- (BOOL)isAppIdMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHTokenFromOAuth1Error` union. -/// -@interface DBAUTHTokenFromOAuth1ErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenFromOAuth1Error` instances. -/// -/// @param instance An instance of the `DBAUTHTokenFromOAuth1Error` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Error` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenFromOAuth1Error *)instance; - -/// -/// Deserializes `DBAUTHTokenFromOAuth1Error` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Error` API object. -/// -/// @return An instantiation of the `DBAUTHTokenFromOAuth1Error` object. -/// -+ (DBAUTHTokenFromOAuth1Error *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Result.h deleted file mode 100644 index 441402a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenFromOAuth1Result.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenFromOAuth1Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenFromOAuth1Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenFromOAuth1Result : NSObject - -#pragma mark - Instance fields - -/// The OAuth 2.0 token generated from the supplied OAuth 1.0 token. -@property (nonatomic, readonly, copy) NSString *oauth2Token; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param oauth2Token The OAuth 2.0 token generated from the supplied OAuth 1.0 -/// token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOauth2Token:(NSString *)oauth2Token; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenFromOAuth1Result` struct. -/// -@interface DBAUTHTokenFromOAuth1ResultSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenFromOAuth1Result` instances. -/// -/// @param instance An instance of the `DBAUTHTokenFromOAuth1Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenFromOAuth1Result *)instance; - -/// -/// Deserializes `DBAUTHTokenFromOAuth1Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Result` API object. -/// -/// @return An instantiation of the `DBAUTHTokenFromOAuth1Result` object. -/// -+ (DBAUTHTokenFromOAuth1Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenScopeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenScopeError.h deleted file mode 100644 index d4b3ec3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHTokenScopeError.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenScopeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenScopeError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenScopeError : NSObject - -#pragma mark - Instance fields - -/// The required scope to access the route. -@property (nonatomic, readonly, copy) NSString *requiredScope; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requiredScope The required scope to access the route. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequiredScope:(NSString *)requiredScope; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenScopeError` struct. -/// -@interface DBAUTHTokenScopeErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenScopeError` instances. -/// -/// @param instance An instance of the `DBAUTHTokenScopeError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenScopeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenScopeError *)instance; - -/// -/// Deserializes `DBAUTHTokenScopeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenScopeError` API object. -/// -/// @return An instantiation of the `DBAUTHTokenScopeError` object. -/// -+ (DBAUTHTokenScopeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHUserAuthRoutes.h deleted file mode 100644 index dcf7e4a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAUTHUserAuthRoutes.h +++ /dev/null @@ -1,45 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBAUTHTokenFromOAuth1Error; -@class DBAUTHTokenFromOAuth1Result; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Auth` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBAUTHUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBAUTHUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Disables the access token used to authenticate the call. If there is a corresponding refresh token for the access -/// token, this disables that refresh token, as well as any other access tokens for that refresh token. -/// -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `void` object on -/// failure. -/// -- (DBRpcTask *)tokenRevoke; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAppBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAppBaseClient.h deleted file mode 100644 index fe514c52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAppBaseClient.h +++ /dev/null @@ -1,47 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import "DBAUTHAppAuthRoutes.h" -#import "DBCHECKAppAuthRoutes.h" -#import "DBFILESAppAuthRoutes.h" -#import "DBRequestErrors.h" -#import "DBSHARINGAppAuthRoutes.h" -#import "DBTasks.h" -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient; - -/// -/// Base client object that contains an instance field for each namespace, each -/// of which contains references to all routes within that namespace. -/// Fully-implemented API clients will inherit this class. -/// -@interface DBAppBaseClient : NSObject { - -@protected - id _transportClient; -} - -/// Routes within the `auth` namespace. -@property (nonatomic, readonly) DBAUTHAppAuthRoutes *authRoutes; - -/// Routes within the `check` namespace. -@property (nonatomic, readonly) DBCHECKAppAuthRoutes *checkRoutes; - -/// Routes within the `files` namespace. -@property (nonatomic, readonly) DBFILESAppAuthRoutes *filesRoutes; - -/// Routes within the `sharing` namespace. -@property (nonatomic, readonly) DBSHARINGAppAuthRoutes *sharingRoutes; - -/// Initializes the `DBAppBaseClient` object with a networking client. -- (instancetype)initWithTransportClient:(id)client; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAppClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAppClient.h deleted file mode 100644 index 53abaa4a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBAppClient.h +++ /dev/null @@ -1,48 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBAppBaseClient.h" - -@class DBTransportDefaultConfig; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox API Client for all endpoints with auth type "app". -/// -/// This is the SDK user's primary interface with the Dropbox API. Routes can be accessed via each "namespace" object in -/// the instance fields of its parent, `DBAppBaseClient`. To see a full list of the API endpoints available, -/// please visit: https://www.dropbox.com/developers/documentation/http/documentation. -/// -@interface DBAppClient : DBAppBaseClient - -/// -/// Convenience constructor. -/// -/// Uses standard network configuration parameters. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey appSecret:(NSString *)appSecret; - -/// -/// Full constructor. -/// -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKAppAuthRoutes.h deleted file mode 100644 index cce1e507..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKAppAuthRoutes.h +++ /dev/null @@ -1,59 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCHECKEchoResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Check` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBCHECKAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBCHECKAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied -/// string, to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an -/// HTTP 200 response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working -/// and that the app key and secret valid. -/// -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)app; - -/// -/// This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied -/// string, to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an -/// HTTP 200 response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working -/// and that the app key and secret valid. -/// -/// @param query The string that you'd like to be echoed back to you. -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)app:(nullable NSString *)query; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKEchoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKEchoArg.h deleted file mode 100644 index 63c49268..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKEchoArg.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCHECKEchoArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EchoArg` struct. -/// -/// Contains the arguments to be sent to the Dropbox servers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCHECKEchoArg : NSObject - -#pragma mark - Instance fields - -/// The string that you'd like to be echoed back to you. -@property (nonatomic, readonly, copy) NSString *query; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param query The string that you'd like to be echoed back to you. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(nullable NSString *)query; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EchoArg` struct. -/// -@interface DBCHECKEchoArgSerializer : NSObject - -/// -/// Serializes `DBCHECKEchoArg` instances. -/// -/// @param instance An instance of the `DBCHECKEchoArg` API object. -/// -/// @return A json-compatible dictionary representation of the `DBCHECKEchoArg` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBCHECKEchoArg *)instance; - -/// -/// Deserializes `DBCHECKEchoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCHECKEchoArg` API object. -/// -/// @return An instantiation of the `DBCHECKEchoArg` object. -/// -+ (DBCHECKEchoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKEchoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKEchoResult.h deleted file mode 100644 index e383d077..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKEchoResult.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCHECKEchoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EchoResult` struct. -/// -/// EchoResult contains the result returned from the Dropbox servers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCHECKEchoResult : NSObject - -#pragma mark - Instance fields - -/// If everything worked correctly, this would be the same as query. -@property (nonatomic, readonly, copy) NSString *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param result If everything worked correctly, this would be the same as -/// query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResult:(nullable NSString *)result; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EchoResult` struct. -/// -@interface DBCHECKEchoResultSerializer : NSObject - -/// -/// Serializes `DBCHECKEchoResult` instances. -/// -/// @param instance An instance of the `DBCHECKEchoResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCHECKEchoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCHECKEchoResult *)instance; - -/// -/// Deserializes `DBCHECKEchoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCHECKEchoResult` API object. -/// -/// @return An instantiation of the `DBCHECKEchoResult` object. -/// -+ (DBCHECKEchoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKRouteObjects.h deleted file mode 100644 index 4dc3ce96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKRouteObjects.h +++ /dev/null @@ -1,28 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Check namespace. Each route in the Check -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBCHECKRouteObjects : NSObject - -/// Accessor method for the app route object. -+ (DBRoute *)DBCHECKApp; - -/// Accessor method for the user route object. -+ (DBRoute *)DBCHECKUser; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKUserAuthRoutes.h deleted file mode 100644 index 373c4129..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCHECKUserAuthRoutes.h +++ /dev/null @@ -1,59 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCHECKEchoResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Check` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBCHECKUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBCHECKUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// This endpoint performs User Authentication, validating the supplied access token, and returns the supplied string, -/// to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an HTTP 200 -/// response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working and that -/// the access token is valid. -/// -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)user; - -/// -/// This endpoint performs User Authentication, validating the supplied access token, and returns the supplied string, -/// to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an HTTP 200 -/// response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working and that -/// the access token is valid. -/// -/// @param query The string that you'd like to be echoed back to you. -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)user:(nullable NSString *)query; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONPathRoot.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONPathRoot.h deleted file mode 100644 index b0526798..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONPathRoot.h +++ /dev/null @@ -1,190 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCOMMONPathRoot; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathRoot` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONPathRoot : NSObject - -#pragma mark - Instance fields - -/// The `DBCOMMONPathRootTag` enum type represents the possible tag states with -/// which the `DBCOMMONPathRoot` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBCOMMONPathRootTag) { - /// Paths are relative to the authenticating user's home namespace, whether - /// or not that user belongs to a team. - DBCOMMONPathRootHome, - - /// Paths are relative to the authenticating user's root namespace (This - /// results in `invalidRoot` in `DBCOMMONPathRootError` if the user's root - /// namespace has changed.). - DBCOMMONPathRootRoot, - - /// Paths are relative to given namespace id (This results in `noPermission` - /// in `DBCOMMONPathRootError` if you don't have access to this namespace.). - DBCOMMONPathRootNamespaceId, - - /// (no description). - DBCOMMONPathRootOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBCOMMONPathRootTag tag; - -/// Paths are relative to the authenticating user's root namespace (This results -/// in `invalidRoot` in `DBCOMMONPathRootError` if the user's root namespace has -/// changed.). @note Ensure the `isRoot` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *root; - -/// Paths are relative to given namespace id (This results in `noPermission` in -/// `DBCOMMONPathRootError` if you don't have access to this namespace.). @note -/// Ensure the `isNamespaceId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *namespaceId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "home". -/// -/// Description of the "home" tag state: Paths are relative to the -/// authenticating user's home namespace, whether or not that user belongs to a -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHome; - -/// -/// Initializes union class with tag state of "root". -/// -/// Description of the "root" tag state: Paths are relative to the -/// authenticating user's root namespace (This results in `invalidRoot` in -/// `DBCOMMONPathRootError` if the user's root namespace has changed.). -/// -/// @param root Paths are relative to the authenticating user's root namespace -/// (This results in `invalidRoot` in `DBCOMMONPathRootError` if the user's root -/// namespace has changed.). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoot:(NSString *)root; - -/// -/// Initializes union class with tag state of "namespace_id". -/// -/// Description of the "namespace_id" tag state: Paths are relative to given -/// namespace id (This results in `noPermission` in `DBCOMMONPathRootError` if -/// you don't have access to this namespace.). -/// -/// @param namespaceId Paths are relative to given namespace id (This results in -/// `noPermission` in `DBCOMMONPathRootError` if you don't have access to this -/// namespace.). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaceId:(NSString *)namespaceId; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "home". -/// -/// @return Whether the union's current tag state has value "home". -/// -- (BOOL)isHome; - -/// -/// Retrieves whether the union's current tag state has value "root". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `root` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "root". -/// -- (BOOL)isRoot; - -/// -/// Retrieves whether the union's current tag state has value "namespace_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `namespaceId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "namespace_id". -/// -- (BOOL)isNamespaceId; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBCOMMONPathRoot` union. -/// -@interface DBCOMMONPathRootSerializer : NSObject - -/// -/// Serializes `DBCOMMONPathRoot` instances. -/// -/// @param instance An instance of the `DBCOMMONPathRoot` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONPathRoot` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONPathRoot *)instance; - -/// -/// Deserializes `DBCOMMONPathRoot` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONPathRoot` API object. -/// -/// @return An instantiation of the `DBCOMMONPathRoot` object. -/// -+ (DBCOMMONPathRoot *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONPathRootError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONPathRootError.h deleted file mode 100644 index 68d2272d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONPathRootError.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCOMMONPathRootError; -@class DBCOMMONRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathRootError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONPathRootError : NSObject - -#pragma mark - Instance fields - -/// The `DBCOMMONPathRootErrorTag` enum type represents the possible tag states -/// with which the `DBCOMMONPathRootError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBCOMMONPathRootErrorTag) { - /// The root namespace id in Dropbox-API-Path-Root header is not valid. The - /// value of this error is the user's latest root info. - DBCOMMONPathRootErrorInvalidRoot, - - /// You don't have permission to access the namespace id in - /// Dropbox-API-Path-Root header. - DBCOMMONPathRootErrorNoPermission, - - /// (no description). - DBCOMMONPathRootErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBCOMMONPathRootErrorTag tag; - -/// The root namespace id in Dropbox-API-Path-Root header is not valid. The -/// value of this error is the user's latest root info. @note Ensure the -/// `isInvalidRoot` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBCOMMONRootInfo *invalidRoot; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_root". -/// -/// Description of the "invalid_root" tag state: The root namespace id in -/// Dropbox-API-Path-Root header is not valid. The value of this error is the -/// user's latest root info. -/// -/// @param invalidRoot The root namespace id in Dropbox-API-Path-Root header is -/// not valid. The value of this error is the user's latest root info. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidRoot:(DBCOMMONRootInfo *)invalidRoot; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: You don't have permission to -/// access the namespace id in Dropbox-API-Path-Root header. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_root". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidRoot` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_root". -/// -- (BOOL)isInvalidRoot; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBCOMMONPathRootError` union. -/// -@interface DBCOMMONPathRootErrorSerializer : NSObject - -/// -/// Serializes `DBCOMMONPathRootError` instances. -/// -/// @param instance An instance of the `DBCOMMONPathRootError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONPathRootError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONPathRootError *)instance; - -/// -/// Deserializes `DBCOMMONPathRootError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONPathRootError` API object. -/// -/// @return An instantiation of the `DBCOMMONPathRootError` object. -/// -+ (DBCOMMONPathRootError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONRootInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONRootInfo.h deleted file mode 100644 index 964d101f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONRootInfo.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCOMMONRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RootInfo` struct. -/// -/// Information about current user's root. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONRootInfo : NSObject - -#pragma mark - Instance fields - -/// The namespace ID for user's root namespace. It will be the namespace ID of -/// the shared team root if the user is member of a team with a separate team -/// root. Otherwise it will be same as `homeNamespaceId` in `DBCOMMONRootInfo`. -@property (nonatomic, readonly, copy) NSString *rootNamespaceId; - -/// The namespace ID for user's home namespace. -@property (nonatomic, readonly, copy) NSString *homeNamespaceId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rootNamespaceId The namespace ID for user's root namespace. It will -/// be the namespace ID of the shared team root if the user is member of a team -/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in -/// `DBCOMMONRootInfo`. -/// @param homeNamespaceId The namespace ID for user's home namespace. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRootNamespaceId:(NSString *)rootNamespaceId homeNamespaceId:(NSString *)homeNamespaceId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RootInfo` struct. -/// -@interface DBCOMMONRootInfoSerializer : NSObject - -/// -/// Serializes `DBCOMMONRootInfo` instances. -/// -/// @param instance An instance of the `DBCOMMONRootInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONRootInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONRootInfo *)instance; - -/// -/// Deserializes `DBCOMMONRootInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONRootInfo` API object. -/// -/// @return An instantiation of the `DBCOMMONRootInfo` object. -/// -+ (DBCOMMONRootInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONTeamRootInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONTeamRootInfo.h deleted file mode 100644 index 888a8561..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONTeamRootInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBCOMMONRootInfo.h" -#import "DBSerializableProtocol.h" - -@class DBCOMMONTeamRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamRootInfo` struct. -/// -/// Root info when user is member of a team with a separate root namespace ID. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONTeamRootInfo : DBCOMMONRootInfo - -#pragma mark - Instance fields - -/// The path for user's home directory under the shared team root. -@property (nonatomic, readonly, copy) NSString *homePath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rootNamespaceId The namespace ID for user's root namespace. It will -/// be the namespace ID of the shared team root if the user is member of a team -/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in -/// `DBCOMMONRootInfo`. -/// @param homeNamespaceId The namespace ID for user's home namespace. -/// @param homePath The path for user's home directory under the shared team -/// root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRootNamespaceId:(NSString *)rootNamespaceId - homeNamespaceId:(NSString *)homeNamespaceId - homePath:(NSString *)homePath; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamRootInfo` struct. -/// -@interface DBCOMMONTeamRootInfoSerializer : NSObject - -/// -/// Serializes `DBCOMMONTeamRootInfo` instances. -/// -/// @param instance An instance of the `DBCOMMONTeamRootInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONTeamRootInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONTeamRootInfo *)instance; - -/// -/// Deserializes `DBCOMMONTeamRootInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONTeamRootInfo` API object. -/// -/// @return An instantiation of the `DBCOMMONTeamRootInfo` object. -/// -+ (DBCOMMONTeamRootInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONUserRootInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONUserRootInfo.h deleted file mode 100644 index 78a69d2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCOMMONUserRootInfo.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBCOMMONRootInfo.h" -#import "DBSerializableProtocol.h" - -@class DBCOMMONUserRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserRootInfo` struct. -/// -/// Root info when user is not member of a team or the user is a member of a -/// team and the team does not have a separate root namespace. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONUserRootInfo : DBCOMMONRootInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rootNamespaceId The namespace ID for user's root namespace. It will -/// be the namespace ID of the shared team root if the user is member of a team -/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in -/// `DBCOMMONRootInfo`. -/// @param homeNamespaceId The namespace ID for user's home namespace. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRootNamespaceId:(NSString *)rootNamespaceId homeNamespaceId:(NSString *)homeNamespaceId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserRootInfo` struct. -/// -@interface DBCOMMONUserRootInfoSerializer : NSObject - -/// -/// Serializes `DBCOMMONUserRootInfo` instances. -/// -/// @param instance An instance of the `DBCOMMONUserRootInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONUserRootInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONUserRootInfo *)instance; - -/// -/// Deserializes `DBCOMMONUserRootInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONUserRootInfo` API object. -/// -/// @return An instantiation of the `DBCOMMONUserRootInfo` object. -/// -+ (DBCOMMONUserRootInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSDeleteManualContactsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSDeleteManualContactsArg.h deleted file mode 100644 index 5ea7840d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSDeleteManualContactsArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCONTACTSDeleteManualContactsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteManualContactsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCONTACTSDeleteManualContactsArg : NSObject - -#pragma mark - Instance fields - -/// List of manually added contacts to be deleted. -@property (nonatomic, readonly) NSArray *emailAddresses; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param emailAddresses List of manually added contacts to be deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailAddresses:(NSArray *)emailAddresses; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteManualContactsArg` struct. -/// -@interface DBCONTACTSDeleteManualContactsArgSerializer : NSObject - -/// -/// Serializes `DBCONTACTSDeleteManualContactsArg` instances. -/// -/// @param instance An instance of the `DBCONTACTSDeleteManualContactsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCONTACTSDeleteManualContactsArg *)instance; - -/// -/// Deserializes `DBCONTACTSDeleteManualContactsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsArg` API object. -/// -/// @return An instantiation of the `DBCONTACTSDeleteManualContactsArg` object. -/// -+ (DBCONTACTSDeleteManualContactsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSDeleteManualContactsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSDeleteManualContactsError.h deleted file mode 100644 index 35753da4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSDeleteManualContactsError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCONTACTSDeleteManualContactsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteManualContactsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCONTACTSDeleteManualContactsError : NSObject - -#pragma mark - Instance fields - -/// The `DBCONTACTSDeleteManualContactsErrorTag` enum type represents the -/// possible tag states with which the `DBCONTACTSDeleteManualContactsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBCONTACTSDeleteManualContactsErrorTag) { - /// Can't delete contacts from this list. Make sure the list only has - /// manually added contacts. The deletion was cancelled. - DBCONTACTSDeleteManualContactsErrorContactsNotFound, - - /// (no description). - DBCONTACTSDeleteManualContactsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBCONTACTSDeleteManualContactsErrorTag tag; - -/// Can't delete contacts from this list. Make sure the list only has manually -/// added contacts. The deletion was cancelled. @note Ensure the -/// `isContactsNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSArray *contactsNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "contacts_not_found". -/// -/// Description of the "contacts_not_found" tag state: Can't delete contacts -/// from this list. Make sure the list only has manually added contacts. The -/// deletion was cancelled. -/// -/// @param contactsNotFound Can't delete contacts from this list. Make sure the -/// list only has manually added contacts. The deletion was cancelled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContactsNotFound:(NSArray *)contactsNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "contacts_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contactsNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "contacts_not_found". -/// -- (BOOL)isContactsNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBCONTACTSDeleteManualContactsError` union. -/// -@interface DBCONTACTSDeleteManualContactsErrorSerializer : NSObject - -/// -/// Serializes `DBCONTACTSDeleteManualContactsError` instances. -/// -/// @param instance An instance of the `DBCONTACTSDeleteManualContactsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCONTACTSDeleteManualContactsError *)instance; - -/// -/// Deserializes `DBCONTACTSDeleteManualContactsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsError` API object. -/// -/// @return An instantiation of the `DBCONTACTSDeleteManualContactsError` -/// object. -/// -+ (DBCONTACTSDeleteManualContactsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSRouteObjects.h deleted file mode 100644 index b5e01f35..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSRouteObjects.h +++ /dev/null @@ -1,28 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Contacts namespace. Each route in the Contacts -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBCONTACTSRouteObjects : NSObject - -/// Accessor method for the deleteManualContacts route object. -+ (DBRoute *)DBCONTACTSDeleteManualContacts; - -/// Accessor method for the deleteManualContactsBatch route object. -+ (DBRoute *)DBCONTACTSDeleteManualContactsBatch; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSUserAuthRoutes.h deleted file mode 100644 index 72fbcb40..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCONTACTSUserAuthRoutes.h +++ /dev/null @@ -1,55 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCONTACTSDeleteManualContactsError; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Contacts` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBCONTACTSUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBCONTACTSUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Removes all manually added contacts. You'll still keep contacts who are on your team or who you imported. New -/// contacts will be added when you share. -/// -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `void` object on -/// failure. -/// -- (DBRpcTask *)deleteManualContacts; - -/// -/// Removes manually added contacts from the given list. -/// -/// @param emailAddresses List of manually added contacts to be deleted. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBCONTACTSDeleteManualContactsError` object on failure. -/// -- (DBRpcTask *)deleteManualContactsBatch: - (NSArray *)emailAddresses; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBClientsManager+MobileAuth-iOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBClientsManager+MobileAuth-iOS.h deleted file mode 100644 index 88664b09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBClientsManager+MobileAuth-iOS.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBClientsManager.h" - -@class DBScopeRequest; -@class DBTransportDefaultConfig; -@class UIApplication; -@class UIViewController; - -@protocol DBLoadingStatusDelegate; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Code with platform-specific (here, iOS) dependencies. -/// -/// Extends functionality of the `DBClientsManager` class. -/// -@interface DBClientsManager (MobileAuth) - -/// -/// Commences OAuth mobile flow from supplied view controller. -/// -/// This starts a "token" flow. -/// -/// This method should no longer be used. -/// Long-lived access tokens are deprecated. See -/// https://dropbox.tech/developers/migrating-app-permissions-and-access-tokens. -/// Please use `authorizeFromControllerV2` instead. -/// -/// @param sharedApplication The `UIApplication` with which to render the OAuth flow. -/// @param controller The `UIViewController` with which to render the OAuth flow. Please ensure that this is the -/// top-most view controller, so that the authorization view displays correctly. The controller reference is weakly -/// held. -/// @param openURL A wrapper around app-extension unsafe `openURL` call. -/// -+ (void)authorizeFromController:(UIApplication *)sharedApplication - controller:(nullable UIViewController *)controller - openURL:(void (^_Nonnull)(NSURL *))openURL - __deprecated_msg("This method was used for long-lived access tokens, which are now deprecated. Please use " - "`authorizeFromControllerV2` instead."); - -/// -/// Commences OAuth mobile flow from supplied view controller. -/// -/// This starts the OAuth 2 Authorization Code Flow with PKCE. -/// PKCE allows "authorization code" flow without "client_secret" -/// It enables "native application", which is ensafe to hardcode client_secret in code, to use "authorization code". -/// PKCE is more secure than "token" flow. If authorization code is compromised during -/// transmission, it can't be used to exchange for access token without random generated -/// code_verifier, which is stored inside this SDK. -/// -/// @param sharedApplication The `UIApplication` with which to render the OAuth flow. -/// @param controller The `UIViewController` with which to render the OAuth flow. Please ensure that this is the -/// top-most view controller, so that the authorization view displays correctly. The controller reference is weakly -/// held. -/// @param loadingStatusDelegate An optional delegate to handle loading experience during auth flow. -/// e.g. Show a loading spinner and block user interaction while loading/waiting. -/// If a delegate is not provided, the SDK will show a default loading spinner when necessary. -/// @param openURL A wrapper around app-extension unsafe `openURL` call. -/// @param scopeRequest Request contains information of scopes to be obtained. -/// -+ (void)authorizeFromControllerV2:(UIApplication *)sharedApplication - controller:(nullable UIViewController *)controller - loadingStatusDelegate:(nullable id)loadingStatusDelegate - openURL:(void (^_Nonnull)(NSURL *))openURL - scopeRequest:(nullable DBScopeRequest *)scopeRequest; - -/// -/// Stores the user app key. If any access token already exists, initializes an authorized shared `DBUserClient` -/// instance. Convenience method for `setupWithTransportConfig:`. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. Use `setupWithTransportConfig:`, if additional customization of -/// network calling parameters is necessary. This method should be called from the app delegate. -/// -/// @param appKey The app key of the third-party Dropbox API user app that will be associated with all API calls. To -/// create an app or to locate your app's app key, please visit the App Console here: -/// https://www.dropbox.com/developers/apps. -/// -+ (void)setupWithAppKey:(NSString *)appKey; - -/// -/// Stores the user transport config info. If any access token already exists, initializes an authorized shared -/// `DBUserClient` instance. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. You can customize some network calling parameters using the -/// different `DBTransportDefaultConfig` constructors. This method should be called from the app delegate. -/// -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// -+ (void)setupWithTransportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Stores the team app key. If any access token already exists, initializes an authorized shared `DBTeamClient` -/// instance. Convenience method for `setupWithTeamTransportConfig:`. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. Use `setupWithTeamTransportConfig:`, if additional customization of -/// network calling parameters is necessary. This method should be called from the app delegate. -/// -/// @param appKey The app key of the third-party Dropbox API user app that will be associated with all API calls. To -/// create an app or to locate your app's app key, please visit the App Console here: -/// https://www.dropbox.com/developers/apps. -/// -+ (void)setupWithTeamAppKey:(NSString *)appKey; - -/// -/// Stores the team transport config info. If any access token already exists, initializes an authorized shared -/// `DBTeamClient` instance. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. You can customize some network calling parameters using the -/// different `DBTransportDefaultConfig` constructors. This method should be called from the app delegate. -/// -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// -+ (void)setupWithTeamTransportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBClientsManager.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBClientsManager.h deleted file mode 100644 index f584e752..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBClientsManager.h +++ /dev/null @@ -1,156 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBHandlerTypes.h" -#import "DBOAuthResultCompletion.h" - -@class DBUserClient; -@class DBTeamClient; -@class DBTransportDefaultConfig; -@class DBOAuthResult; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox Clients Manager. -/// -/// This is a convenience class for typical integration cases. -/// -/// To use this class, see details in the tutorial at: -/// https://github.com/dropbox/dropbox-sdk-obj-c/blob/master/README.md. -/// -@interface DBClientsManager : NSObject - -/// -/// Accessor method for the current Dropbox API consumer app key. -/// -/// @return The app key of the current Dropbox API app. -/// -+ (nullable NSString *)appKey; - -/// -/// Accessor method for the authorized `DBUserClient` shared instance. -/// -/// @return The authorized `DBUserClient` shared instance. -/// -+ (nullable DBUserClient *)authorizedClient; - -/// -/// Multi-Dropbox account use case. Returns all current Dropbox user clients. -/// -/// @return Mapping of `tokenUid` (account ID) to authorized `DBUserClient` instance. -/// -+ (NSDictionary *)authorizedClients; - -/// -/// Accessor method for the authorized `DBTeamClient` shared instance. -/// -/// @return The the authorized `DBTeamClient` shared instance. -/// -+ (nullable DBTeamClient *)authorizedTeamClient; - -/// -/// Multi-Dropbox account use case. Returns all current Dropbox team clients. -/// -/// @return Mapping of `tokenUid` (account ID) to authorized `DBTeamClient` instance. -/// -+ (NSDictionary *)authorizedTeamClients; - -/// -/// Multi-Dropbox account use case. Creates and stores a new shared authorized user client instance with the access -/// token retrieved from storage via the supplied `tokenUid` key. -/// -/// @param tokenUid The uid of the stored access token to use to reauthorize. This uid is returned after a successful -/// progression through the OAuth flow (via `handleRedirectURL:`) in the `DBAccessToken` field of the `DBOAuthResult` -/// object. -/// -/// @returns Whether a valid token exists in storage for the supplied `tokenUid`. -/// -+ (BOOL)authorizeClientFromKeychain:(nullable NSString *)tokenUid; - -/// -/// Multi-Dropbox account use case. Creates and stores a new shared authorized team client instance with the access -/// token retrieved from storage via the supplied `tokenUid` key. -/// -/// @param tokenUid The uid of the stored access token to use to reauthorize. This uid is returned after a successful -/// progression through the OAuth flow (via `handleRedirectURLTeam:`) in the `DBAccessToken` field of the -/// `DBOAuthResult` object. -/// -/// @returns Whether a valid token exists in storage for the supplied `tokenUid`. -/// -+ (BOOL)authorizeTeamClientFromKeychain:(nullable NSString *)tokenUid; - -/// -/// Handles launching the SDK with a redirect url from an external source to authorize a user API client. -/// -/// Used after OAuth authentication has completed. A `DBUserClient` instance is initialized and the response access -/// token is saved in the `DBKeychain` class. -/// -/// @param url The auth redirect url which relaunches the SDK. -/// @param completion Completion block to pass back authorization result. -/// -/// @return Whether the URL can be handled. -/// -+ (BOOL)handleRedirectURL:(NSURL *)url completion:(DBOAuthCompletion)completion; - -/// -/// Handles launching the SDK with a redirect url from an external source to authorize a team API client. -/// -/// Used after OAuth authentication has completed. A `DBTeamClient` instance is initialized and the response access -/// token is saved in the `DBKeychain` class. -/// -/// @param url The auth redirect url which relaunches the SDK. -/// @param completion Completion block to pass back authorization result. -/// -/// @return Whether the URL can be handled. -/// -+ (BOOL)handleRedirectURLTeam:(NSURL *)url completion:(DBOAuthCompletion)completion; - -/// -/// Multi-Dropbox account use case. Sets to `nil` the active user / team shared authorized client, clears the stored -/// access token associated with the supplied `tokenUid`, and removes the assocaited client from the shared clients -/// list. -/// -/// @param tokenUid The uid of the token to clear. -/// -+ (void)unlinkAndResetClient:(NSString *)tokenUid; - -/// -/// Sets to `nil` the active user / team shared authorized client and clears all stored access tokens in `DBKeychain`. -/// -+ (void)unlinkAndResetClients; - -/// -/// Checks if performing an API v1 OAuth 1 token migration is necessary, and if so, performs it. -/// -/// This method should successfully migrate all stored access tokens in the official Dropbox Core and Sync SDKs from -/// April 2012 until present, for both iOS and OS X. The method executes its network requests off the main thread. -/// -/// Token migration is treated as an atomic operation. Either all tokens that are possible to migrate are migrated at -/// once, or none of them are. If all token conversion requests complete successfully, then the `shouldRetry` argument -/// in `responseBlock` will be `NO`. If some token conversion requests succeed and some fail, and if the failures are -/// for any reason other than network connectivity issues (e.g. token has been invalidated), then the migration will -/// continue normally, and those tokens that were unsuccessfully migrated will be skipped, and `shouldRetry` will be -/// `NO`. If any of the failures were because of network connectivity issues, none of the tokens will be migrated, and -/// `shouldRetry` will be `YES`. -/// -/// @param responseBlock The custom handler for determining whether to retry the migration. -/// @param queue The operation queue on which to execute the supplied response block (defaults to main queue, if `nil`). -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// -/// @return Whether a token migration will be performed. -/// -+ (BOOL)checkAndPerformV1TokenMigration:(DBTokenMigrationResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue - appKey:(NSString *)appKey - appSecret:(NSString *)appSecret; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomDatatypes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomDatatypes.h deleted file mode 100644 index 4cbc9d5d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomDatatypes.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Custom client-side datatypes -/// - -#import - -#import "DBHandlerTypes.h" - -@class DBASYNCPollError; -@class DBFILESCommitInfo; -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBRequestError; -@class DBTasksStorage; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stores data for a particular batch upload attempt. -/// -@interface DBBatchUploadData : NSObject - -/// The queue on which most response handling is performed. -@property (nonatomic, readonly) NSOperationQueue *queue; - -/// The queue on which we sleep until all processing is completed or the timeout is hit. -@property (nonatomic, readonly) NSOperationQueue *pollingQueue; - -/// The dispatch group that pairs upload requests with upload responses so that we can wait for all request/response -/// pairs to complete before batch committing. In this way, we can start many upload requests (for files under the chunk -/// limit), without waiting for the corresponding response. -@property (nonatomic, readonly) dispatch_group_t uploadGroup; - -/// A client-supplied parameter that maps the file urls of the files to upload to the corresponding commit info objects. -@property (nonatomic, readonly) NSDictionary *fileUrlsToCommitInfo; - -/// Mapping of urls for files that were unsuccessfully uploaded to any request errors that were encounted. -@property (atomic, readonly) NSMutableDictionary *fileUrlsToRequestErrors; - -/// List of finish args (which include commit info, cursor, etc.) which the SDK maintains and passes to -/// `upload_session/finish_batch`. -@property (atomic, strong) NSMutableArray *finishArgs; - -/// The progress block that is periodically executed once a file upload is complete. -@property (nonatomic, readonly) DBProgressBlock _Nullable progressBlock; - -/// The response block that is executed once all file uploads and the final batch commit is complete. -@property (nonatomic, readonly) DBBatchUploadResponseBlock responseBlock; - -/// The total size of all the files to upload. Used to return progress data to the client. -@property (nonatomic) NSUInteger totalUploadSize; - -/// The total size of all the file content upload so far. Used to return progress data to the client. -@property (nonatomic) NSUInteger totalUploadedSoFar; - -/// The flag that determines whether upload continues or not. -@property (atomic) BOOL cancel; - -/// The container object that stores all upload / download task objects for cancelling. -@property (nonatomic, strong) DBTasksStorage *taskStorage; - -/// -/// Full constructor. -/// -/// @param fileUrlsToCommitInfo A client-supplied parameter that maps the file urls of the files to upload to the -/// corresponding commit info objects. -/// @param progressBlock The progress block that is periodically executed once a file upload is complete. -/// @param responseBlock The response block that is executed once all file uploads and the final batch commit is -/// complete. -/// @param queue The queue on which most response handling is performed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommitInfo:(NSDictionary *)fileUrlsToCommitInfo - progressBlock:(DBProgressBlock _Nullable)progressBlock - responseBlock:(DBBatchUploadResponseBlock)responseBlock - queue:(NSOperationQueue *)queue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomRoutes.h deleted file mode 100644 index 2cb85dbb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomRoutes.h +++ /dev/null @@ -1,55 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -/// -/// Custom client-side routes -/// - -#import - -#import "DBFILESUserAuthRoutes.h" -#import "DBHandlerTypes.h" - -@class DBBatchUploadTask; -@class DBFILESCommitInfo; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Extension of routes in the `Files` namespace. -/// -/// These routes serve as a convenience layer built on top of our auto-generated routes. -/// -@interface DBFILESUserAuthRoutes (DBCustomRoutes) - -/// -/// Batch uploads small and large files. -/// -/// This is a custom route built as a convenience layer over several Dropbox endpoints. Files will not only be batch -/// uploaded, but large files will also automatically be chunk-uploaded to the Dropbox server, for maximum efficiency. -/// -/// @note The interface of this route does not have the same structure as other routes in the SDK. Here, a special -/// `DBBatchUploadTask` object is returned. Progress and response handlers are passed in directly to the route, rather -/// than installed via this response object. -/// -/// @param fileUrlsToCommitInfo Map from the file urls of the files to upload to the corresponding commit info objects. -/// @param queue The operation queue to execute progress / response handlers on. Main queue if `nil` is passed. -/// @param progressBlock The progress block that is periodically executed once a file upload is complete. It's important -/// to note that this progress handler will update only when a file or file chunk is successfully uploaded. It will not -/// give the client any progress notifications once all of the file data is uploaded, but not yet committed. Once the -/// batch commit call is made, the client will have to simply wait for the server to commit all of the uploaded data, -/// until the response handler is called. -/// @param responseBlock The response block that is executed once all file uploads and the final batch commit is -/// complete. -/// -/// @returns Special `DBBatchUploadTask` that exposes cancellation method. -/// -- (DBBatchUploadTask *)batchUploadFiles:(NSDictionary *)fileUrlsToCommitInfo - queue:(nullable NSOperationQueue *)queue - progressBlock:(DBProgressBlock _Nullable)progressBlock - responseBlock:(DBBatchUploadResponseBlock)responseBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomTasks.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomTasks.h deleted file mode 100644 index d42d14da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBCustomTasks.h +++ /dev/null @@ -1,46 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBBatchUploadData; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox task object for custom batch upload route. -/// -/// The batch upload route is a convenience layer over several of our auto-generated API endpoints. For this reason, -/// there is less flexibility and granularity of control. Progress and response handlers are passed directly into this -/// route (rather than installed via this task object) and only `cancel` is available. This task is also specific to -/// only one endpoint, rather than an entire class (style) of endpoints. -/// -@interface DBBatchUploadTask : NSObject - -/// -/// DBBatchUploadTask full constructor. -/// -/// @param uploadData relevant to the particular batch upload request. -/// -/// @returns A DBBatchUploadTask instance. -/// -- (instancetype)initWithUploadData:(DBBatchUploadData *)uploadData; - -/// -/// Cancels the current request. -/// -- (void)cancel; - -/// -/// Determines whether there are any upload tasks still in progress. -/// -/// NOTE: This will return `NO` during the final polling / commit phase of batch upload. -/// -/// @return Whether there are any upload tasks in progress. -/// -- (BOOL)uploadsInProgress; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddPropertiesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddPropertiesArg.h deleted file mode 100644 index 6137b884..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddPropertiesArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddPropertiesArg; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPropertiesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddPropertiesArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The property groups which are to be added to a Dropbox file. No two groups -/// in the input should refer to the same template. -@property (nonatomic, readonly) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups which are to be added to a Dropbox -/// file. No two groups in the input should refer to the same template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path propertyGroups:(NSArray *)propertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddPropertiesArg` struct. -/// -@interface DBFILEPROPERTIESAddPropertiesArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddPropertiesArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddPropertiesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddPropertiesArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddPropertiesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddPropertiesArg` object. -/// -+ (DBFILEPROPERTIESAddPropertiesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddPropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddPropertiesError.h deleted file mode 100644 index d568daee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddPropertiesError.h +++ /dev/null @@ -1,293 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddPropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESAddPropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESAddPropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESAddPropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESAddPropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESAddPropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESAddPropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESAddPropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESAddPropertiesErrorUnsupportedFolder, - - /// One or more of the supplied property field values is too large. - DBFILEPROPERTIESAddPropertiesErrorPropertyFieldTooLarge, - - /// One or more of the supplied property fields does not conform to the - /// template specifications. - DBFILEPROPERTIESAddPropertiesErrorDoesNotFitTemplate, - - /// There are 2 or more property groups referring to the same templates in - /// the input. - DBFILEPROPERTIESAddPropertiesErrorDuplicatePropertyGroups, - - /// A property group associated with this template and file already exists. - DBFILEPROPERTIESAddPropertiesErrorPropertyGroupAlreadyExists, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESAddPropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_field_too_large". -/// -/// Description of the "property_field_too_large" tag state: One or more of the -/// supplied property field values is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyFieldTooLarge; - -/// -/// Initializes union class with tag state of "does_not_fit_template". -/// -/// Description of the "does_not_fit_template" tag state: One or more of the -/// supplied property fields does not conform to the template specifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDoesNotFitTemplate; - -/// -/// Initializes union class with tag state of "duplicate_property_groups". -/// -/// Description of the "duplicate_property_groups" tag state: There are 2 or -/// more property groups referring to the same templates in the input. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatePropertyGroups; - -/// -/// Initializes union class with tag state of "property_group_already_exists". -/// -/// Description of the "property_group_already_exists" tag state: A property -/// group associated with this template and file already exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupAlreadyExists; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_field_too_large". -/// -/// @return Whether the union's current tag state has value -/// "property_field_too_large". -/// -- (BOOL)isPropertyFieldTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "does_not_fit_template". -/// -/// @return Whether the union's current tag state has value -/// "does_not_fit_template". -/// -- (BOOL)isDoesNotFitTemplate; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_property_groups". -/// -/// @return Whether the union's current tag state has value -/// "duplicate_property_groups". -/// -- (BOOL)isDuplicatePropertyGroups; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_already_exists". -/// -/// @return Whether the union's current tag state has value -/// "property_group_already_exists". -/// -- (BOOL)isPropertyGroupAlreadyExists; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESAddPropertiesError` union. -/// -@interface DBFILEPROPERTIESAddPropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddPropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddPropertiesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddPropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddPropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddPropertiesError` object. -/// -+ (DBFILEPROPERTIESAddPropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddTemplateArg.h deleted file mode 100644 index 4cf80928..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddTemplateArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILEPROPERTIESPropertyGroupTemplate.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddTemplateArg; -@class DBFILEPROPERTIESPropertyFieldTemplate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddTemplateArg : DBFILEPROPERTIESPropertyGroupTemplate - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Display name for the template. Template names can be up to 256 -/// bytes. -/// @param description_ Description for the template. Template descriptions can -/// be up to 1024 bytes. -/// @param fields Definitions of the property fields associated with this -/// template. There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddTemplateArg` struct. -/// -@interface DBFILEPROPERTIESAddTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddTemplateArg` object. -/// -+ (DBFILEPROPERTIESAddTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddTemplateResult.h deleted file mode 100644 index e575f814..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESAddTemplateResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddTemplateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddTemplateResult : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddTemplateResult` struct. -/// -@interface DBFILEPROPERTIESAddTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddTemplateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddTemplateResult` object. -/// -+ (DBFILEPROPERTIESAddTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESGetTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESGetTemplateArg.h deleted file mode 100644 index f13e3807..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESGetTemplateArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESGetTemplateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESGetTemplateArg : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by route See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by route See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemplateArg` struct. -/// -@interface DBFILEPROPERTIESGetTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESGetTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESGetTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESGetTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESGetTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESGetTemplateArg` object. -/// -+ (DBFILEPROPERTIESGetTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESGetTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESGetTemplateResult.h deleted file mode 100644 index adf6f998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESGetTemplateResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILEPROPERTIESPropertyGroupTemplate.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESPropertyFieldTemplate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESGetTemplateResult : DBFILEPROPERTIESPropertyGroupTemplate - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Display name for the template. Template names can be up to 256 -/// bytes. -/// @param description_ Description for the template. Template descriptions can -/// be up to 1024 bytes. -/// @param fields Definitions of the property fields associated with this -/// template. There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemplateResult` struct. -/// -@interface DBFILEPROPERTIESGetTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESGetTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESGetTemplateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESGetTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESGetTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESGetTemplateResult` object. -/// -+ (DBFILEPROPERTIESGetTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h deleted file mode 100644 index afcd2e87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h +++ /dev/null @@ -1,273 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InvalidPropertyGroupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESInvalidPropertyGroupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESInvalidPropertyGroupErrorTag` enum type represents the -/// possible tag states with which the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESInvalidPropertyGroupErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESInvalidPropertyGroupErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESInvalidPropertyGroupErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESInvalidPropertyGroupErrorOther, - - /// (no description). - DBFILEPROPERTIESInvalidPropertyGroupErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESInvalidPropertyGroupErrorUnsupportedFolder, - - /// One or more of the supplied property field values is too large. - DBFILEPROPERTIESInvalidPropertyGroupErrorPropertyFieldTooLarge, - - /// One or more of the supplied property fields does not conform to the - /// template specifications. - DBFILEPROPERTIESInvalidPropertyGroupErrorDoesNotFitTemplate, - - /// There are 2 or more property groups referring to the same templates in - /// the input. - DBFILEPROPERTIESInvalidPropertyGroupErrorDuplicatePropertyGroups, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESInvalidPropertyGroupErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_field_too_large". -/// -/// Description of the "property_field_too_large" tag state: One or more of the -/// supplied property field values is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyFieldTooLarge; - -/// -/// Initializes union class with tag state of "does_not_fit_template". -/// -/// Description of the "does_not_fit_template" tag state: One or more of the -/// supplied property fields does not conform to the template specifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDoesNotFitTemplate; - -/// -/// Initializes union class with tag state of "duplicate_property_groups". -/// -/// Description of the "duplicate_property_groups" tag state: There are 2 or -/// more property groups referring to the same templates in the input. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatePropertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_field_too_large". -/// -/// @return Whether the union's current tag state has value -/// "property_field_too_large". -/// -- (BOOL)isPropertyFieldTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "does_not_fit_template". -/// -/// @return Whether the union's current tag state has value -/// "does_not_fit_template". -/// -- (BOOL)isDoesNotFitTemplate; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_property_groups". -/// -/// @return Whether the union's current tag state has value -/// "duplicate_property_groups". -/// -- (BOOL)isDuplicatePropertyGroups; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESInvalidPropertyGroupError` -/// union. -/// -@interface DBFILEPROPERTIESInvalidPropertyGroupErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESInvalidPropertyGroupError` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESInvalidPropertyGroupError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESInvalidPropertyGroupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESInvalidPropertyGroupError` -/// object. -/// -+ (DBFILEPROPERTIESInvalidPropertyGroupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESListTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESListTemplateResult.h deleted file mode 100644 index 468867cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESListTemplateResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESListTemplateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESListTemplateResult : NSObject - -#pragma mark - Instance fields - -/// List of identifiers for templates added by See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly) NSArray *templateIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateIds List of identifiers for templates added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateIds:(NSArray *)templateIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTemplateResult` struct. -/// -@interface DBFILEPROPERTIESListTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESListTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESListTemplateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESListTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESListTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESListTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESListTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESListTemplateResult` object. -/// -+ (DBFILEPROPERTIESListTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLogicalOperator.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLogicalOperator.h deleted file mode 100644 index 23bf80c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLogicalOperator.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLogicalOperator; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LogicalOperator` union. -/// -/// Logical operator to join search queries together. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESLogicalOperator : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESLogicalOperatorTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESLogicalOperator` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESLogicalOperatorTag) { - /// Append a query with an "or" operator. - DBFILEPROPERTIESLogicalOperatorOrOperator, - - /// (no description). - DBFILEPROPERTIESLogicalOperatorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESLogicalOperatorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "or_operator". -/// -/// Description of the "or_operator" tag state: Append a query with an "or" -/// operator. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrOperator; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "or_operator". -/// -/// @return Whether the union's current tag state has value "or_operator". -/// -- (BOOL)isOrOperator; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESLogicalOperator` union. -/// -@interface DBFILEPROPERTIESLogicalOperatorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESLogicalOperator` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESLogicalOperator` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLogicalOperator` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESLogicalOperator *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESLogicalOperator` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLogicalOperator` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESLogicalOperator` object. -/// -+ (DBFILEPROPERTIESLogicalOperator *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLookUpPropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLookUpPropertiesError.h deleted file mode 100644 index 0f1dace2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLookUpPropertiesError.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LookUpPropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESLookUpPropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESLookUpPropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESLookUpPropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESLookUpPropertiesErrorTag) { - /// No property group was found. - DBFILEPROPERTIESLookUpPropertiesErrorPropertyGroupNotFound, - - /// (no description). - DBFILEPROPERTIESLookUpPropertiesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "property_group_not_found". -/// -/// Description of the "property_group_not_found" tag state: No property group -/// was found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_not_found". -/// -/// @return Whether the union's current tag state has value -/// "property_group_not_found". -/// -- (BOOL)isPropertyGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESLookUpPropertiesError` -/// union. -/// -@interface DBFILEPROPERTIESLookUpPropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESLookUpPropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESLookUpPropertiesError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookUpPropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESLookUpPropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESLookUpPropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookUpPropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESLookUpPropertiesError` -/// object. -/// -+ (DBFILEPROPERTIESLookUpPropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLookupError.h deleted file mode 100644 index d41b930e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESLookupError.h +++ /dev/null @@ -1,209 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESLookupErrorTag` enum type represents the possible tag -/// states with which the `DBFILEPROPERTIESLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESLookupErrorTag) { - /// (no description). - DBFILEPROPERTIESLookupErrorMalformedPath, - - /// There is nothing at the given path. - DBFILEPROPERTIESLookupErrorNotFound, - - /// We were expecting a file, but the given path refers to something that - /// isn't a file. - DBFILEPROPERTIESLookupErrorNotFile, - - /// We were expecting a folder, but the given path refers to something that - /// isn't a folder. - DBFILEPROPERTIESLookupErrorNotFolder, - - /// The file cannot be transferred because the content is restricted. For - /// example, we might restrict a file due to legal requirements. - DBFILEPROPERTIESLookupErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESLookupErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupErrorTag tag; - -/// (no description). @note Ensure the `isMalformedPath` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *malformedPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_path". -/// -/// @param malformedPath (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedPath:(NSString *)malformedPath; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: There is nothing at the given -/// path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_file". -/// -/// Description of the "not_file" tag state: We were expecting a file, but the -/// given path refers to something that isn't a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFile; - -/// -/// Initializes union class with tag state of "not_folder". -/// -/// Description of the "not_folder" tag state: We were expecting a folder, but -/// the given path refers to something that isn't a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFolder; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: The file cannot be -/// transferred because the content is restricted. For example, we might -/// restrict a file due to legal requirements. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_path". -/// -- (BOOL)isMalformedPath; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_file". -/// -/// @return Whether the union's current tag state has value "not_file". -/// -- (BOOL)isNotFile; - -/// -/// Retrieves whether the union's current tag state has value "not_folder". -/// -/// @return Whether the union's current tag state has value "not_folder". -/// -- (BOOL)isNotFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESLookupError` union. -/// -@interface DBFILEPROPERTIESLookupErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESLookupError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESLookupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESLookupError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookupError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESLookupError` object. -/// -+ (DBFILEPROPERTIESLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESModifyTemplateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESModifyTemplateError.h deleted file mode 100644 index 5fa504c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESModifyTemplateError.h +++ /dev/null @@ -1,245 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESModifyTemplateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ModifyTemplateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESModifyTemplateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESModifyTemplateErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESModifyTemplateError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESModifyTemplateErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESModifyTemplateErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESModifyTemplateErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESModifyTemplateErrorOther, - - /// A property field key with that name already exists in the template. - DBFILEPROPERTIESModifyTemplateErrorConflictingPropertyNames, - - /// There are too many properties in the changed template. The maximum - /// number of properties per template is 32. - DBFILEPROPERTIESModifyTemplateErrorTooManyProperties, - - /// There are too many templates for the team. - DBFILEPROPERTIESModifyTemplateErrorTooManyTemplates, - - /// The template name, description or one or more of the property field keys - /// is too large. - DBFILEPROPERTIESModifyTemplateErrorTemplateAttributeTooLarge, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESModifyTemplateErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "conflicting_property_names". -/// -/// Description of the "conflicting_property_names" tag state: A property field -/// key with that name already exists in the template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConflictingPropertyNames; - -/// -/// Initializes union class with tag state of "too_many_properties". -/// -/// Description of the "too_many_properties" tag state: There are too many -/// properties in the changed template. The maximum number of properties per -/// template is 32. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyProperties; - -/// -/// Initializes union class with tag state of "too_many_templates". -/// -/// Description of the "too_many_templates" tag state: There are too many -/// templates for the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyTemplates; - -/// -/// Initializes union class with tag state of "template_attribute_too_large". -/// -/// Description of the "template_attribute_too_large" tag state: The template -/// name, description or one or more of the property field keys is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateAttributeTooLarge; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "conflicting_property_names". -/// -/// @return Whether the union's current tag state has value -/// "conflicting_property_names". -/// -- (BOOL)isConflictingPropertyNames; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_properties". -/// -/// @return Whether the union's current tag state has value -/// "too_many_properties". -/// -- (BOOL)isTooManyProperties; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_templates". -/// -/// @return Whether the union's current tag state has value -/// "too_many_templates". -/// -- (BOOL)isTooManyTemplates; - -/// -/// Retrieves whether the union's current tag state has value -/// "template_attribute_too_large". -/// -/// @return Whether the union's current tag state has value -/// "template_attribute_too_large". -/// -- (BOOL)isTemplateAttributeTooLarge; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESModifyTemplateError` union. -/// -@interface DBFILEPROPERTIESModifyTemplateErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESModifyTemplateError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESModifyTemplateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESModifyTemplateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESModifyTemplateError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESModifyTemplateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESModifyTemplateError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESModifyTemplateError` -/// object. -/// -+ (DBFILEPROPERTIESModifyTemplateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h deleted file mode 100644 index 1953ae09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESOverwritePropertyGroupArg; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OverwritePropertyGroupArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESOverwritePropertyGroupArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The property groups "snapshot" updates to force apply. No two groups in the -/// input should refer to the same template. -@property (nonatomic, readonly) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups "snapshot" updates to force apply. -/// No two groups in the input should refer to the same template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path propertyGroups:(NSArray *)propertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OverwritePropertyGroupArg` struct. -/// -@interface DBFILEPROPERTIESOverwritePropertyGroupArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESOverwritePropertyGroupArg` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESOverwritePropertyGroupArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESOverwritePropertyGroupArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESOverwritePropertyGroupArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESOverwritePropertyGroupArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESOverwritePropertyGroupArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESOverwritePropertyGroupArg` -/// object. -/// -+ (DBFILEPROPERTIESOverwritePropertyGroupArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesError.h deleted file mode 100644 index 0a48153d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesError.h +++ /dev/null @@ -1,202 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESPropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesErrorTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESPropertiesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESPropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESPropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESPropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESPropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESPropertiesErrorUnsupportedFolder, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertiesError` union. -/// -@interface DBFILEPROPERTIESPropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesError` object. -/// -+ (DBFILEPROPERTIESPropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchArg.h deleted file mode 100644 index 8dc9f795..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchArg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchArg; -@class DBFILEPROPERTIESPropertiesSearchQuery; -@class DBFILEPROPERTIESTemplateFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchArg : NSObject - -#pragma mark - Instance fields - -/// Queries to search. -@property (nonatomic, readonly) NSArray *queries; - -/// Filter results to contain only properties associated with these template -/// IDs. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateFilter *templateFilter; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param queries Queries to search. -/// @param templateFilter Filter results to contain only properties associated -/// with these template IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQueries:(NSArray *)queries - templateFilter:(nullable DBFILEPROPERTIESTemplateFilter *)templateFilter; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param queries Queries to search. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQueries:(NSArray *)queries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchArg` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchArg` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h deleted file mode 100644 index 3a716b3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `propertiesSearch` or -/// `propertiesSearchContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `propertiesSearch` or -/// `propertiesSearchContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchContinueArg` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchContinueArg` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchContinueArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` API object. -/// -/// @return An instantiation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` object. -/// -+ (DBFILEPROPERTIESPropertiesSearchContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h deleted file mode 100644 index 2bcef297..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesSearchContinueErrorTag` enum type represents -/// the possible tag states with which the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesSearchContinueErrorTag) { - /// Indicates that the cursor has been invalidated. Call `propertiesSearch` - /// to obtain a new cursor. - DBFILEPROPERTIESPropertiesSearchContinueErrorReset, - - /// (no description). - DBFILEPROPERTIESPropertiesSearchContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `propertiesSearch` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` union. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchContinueError` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchContinueError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` API object. -/// -/// @return An instantiation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` object. -/// -+ (DBFILEPROPERTIESPropertiesSearchContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchError.h deleted file mode 100644 index 037ccccd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchError.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESPropertiesSearchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesSearchErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESPropertiesSearchError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesSearchErrorTag) { - /// (no description). - DBFILEPROPERTIESPropertiesSearchErrorPropertyGroupLookup, - - /// (no description). - DBFILEPROPERTIESPropertiesSearchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchErrorTag tag; - -/// (no description). @note Ensure the `isPropertyGroupLookup` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertyGroupLookup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "property_group_lookup". -/// -/// @param propertyGroupLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupLookup:(DBFILEPROPERTIESLookUpPropertiesError *)propertyGroupLookup; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertyGroupLookup` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "property_group_lookup". -/// -- (BOOL)isPropertyGroupLookup; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertiesSearchError` -/// union. -/// -@interface DBFILEPROPERTIESPropertiesSearchErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchError` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h deleted file mode 100644 index 134e904d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchMatch` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchMatch : NSObject - -#pragma mark - Instance fields - -/// The ID for the matched file or folder. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The path for the matched file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// Whether the file or folder is deleted. -@property (nonatomic, readonly) NSNumber *isDeleted; - -/// List of custom property groups associated with the file. -@property (nonatomic, readonly) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID for the matched file or folder. -/// @param path The path for the matched file or folder. -/// @param isDeleted Whether the file or folder is deleted. -/// @param propertyGroups List of custom property groups associated with the -/// file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - path:(NSString *)path - isDeleted:(NSNumber *)isDeleted - propertyGroups:(NSArray *)propertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchMatch` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchMatchSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchMatch` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchMatch` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMatch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchMatch *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchMatch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMatch` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchMatch` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchMatch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchMode.h deleted file mode 100644 index c8646351..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchMode.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesSearchModeTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESPropertiesSearchMode` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesSearchModeTag) { - /// Search for a value associated with this field name. - DBFILEPROPERTIESPropertiesSearchModeFieldName, - - /// (no description). - DBFILEPROPERTIESPropertiesSearchModeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchModeTag tag; - -/// Search for a value associated with this field name. @note Ensure the -/// `isFieldName` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *fieldName; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "field_name". -/// -/// Description of the "field_name" tag state: Search for a value associated -/// with this field name. -/// -/// @param fieldName Search for a value associated with this field name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFieldName:(NSString *)fieldName; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "field_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fieldName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "field_name". -/// -- (BOOL)isFieldName; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertiesSearchMode` -/// union. -/// -@interface DBFILEPROPERTIESPropertiesSearchModeSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchMode` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchMode` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchMode *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMode` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchMode` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h deleted file mode 100644 index aedeb8df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLogicalOperator; -@class DBFILEPROPERTIESPropertiesSearchMode; -@class DBFILEPROPERTIESPropertiesSearchQuery; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchQuery` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchQuery : NSObject - -#pragma mark - Instance fields - -/// The property field value for which to search across templates. -@property (nonatomic, readonly, copy) NSString *query; - -/// The mode with which to perform the search. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchMode *mode; - -/// The logical operator with which to append the query. -@property (nonatomic, readonly) DBFILEPROPERTIESLogicalOperator *logicalOperator; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param query The property field value for which to search across templates. -/// @param mode The mode with which to perform the search. -/// @param logicalOperator The logical operator with which to append the query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query - mode:(DBFILEPROPERTIESPropertiesSearchMode *)mode - logicalOperator:(nullable DBFILEPROPERTIESLogicalOperator *)logicalOperator; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param query The property field value for which to search across templates. -/// @param mode The mode with which to perform the search. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query mode:(DBFILEPROPERTIESPropertiesSearchMode *)mode; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchQuery` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchQuerySerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchQuery` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchQuery` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchQuery` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchQuery *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchQuery` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchQuery` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchQuery` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchQuery *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchResult.h deleted file mode 100644 index 4c078a6d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertiesSearchResult.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertiesSearchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchResult : NSObject - -#pragma mark - Instance fields - -/// A list (possibly empty) of matches for the query. -@property (nonatomic, readonly) NSArray *matches; - -/// Pass the cursor into `propertiesSearchContinue` to continue to receive -/// search results. Cursor will be null when there are no more results. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param cursor Pass the cursor into `propertiesSearchContinue` to continue to -/// receive search results. Cursor will be null when there are no more results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchResult` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchResult` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyField.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyField.h deleted file mode 100644 index 171d595e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyField.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyField; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyField` struct. -/// -/// Raw key/value data to be associated with a Dropbox file. Property fields are -/// added to Dropbox files as a PropertyGroup. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyField : NSObject - -#pragma mark - Instance fields - -/// Key of the property field associated with a file and template. Keys can be -/// up to 256 bytes. -@property (nonatomic, readonly, copy) NSString *name; - -/// Value of the property field associated with a file and template. Values can -/// be up to 1024 bytes. -@property (nonatomic, readonly, copy) NSString *value; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Key of the property field associated with a file and template. -/// Keys can be up to 256 bytes. -/// @param value Value of the property field associated with a file and -/// template. Values can be up to 1024 bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name value:(NSString *)value; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyField` struct. -/// -@interface DBFILEPROPERTIESPropertyFieldSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyField` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyField` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyField` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyField *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyField` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyField` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyField` object. -/// -+ (DBFILEPROPERTIESPropertyField *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h deleted file mode 100644 index ca79ea28..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyFieldTemplate` struct. -/// -/// Defines how a single property field may be structured. Used exclusively by -/// PropertyGroupTemplate. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyFieldTemplate : NSObject - -#pragma mark - Instance fields - -/// Key of the property field being described. Property field keys can be up to -/// 256 bytes. -@property (nonatomic, readonly, copy) NSString *name; - -/// Description of the property field. Property field descriptions can be up to -/// 1024 bytes. -@property (nonatomic, readonly, copy) NSString *description_; - -/// Data type of the value of this property field. This type will be enforced -/// upon property creation and modifications. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertyType *type; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Key of the property field being described. Property field keys -/// can be up to 256 bytes. -/// @param description_ Description of the property field. Property field -/// descriptions can be up to 1024 bytes. -/// @param type Data type of the value of this property field. This type will be -/// enforced upon property creation and modifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - type:(DBFILEPROPERTIESPropertyType *)type; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyFieldTemplate` struct. -/// -@interface DBFILEPROPERTIESPropertyFieldTemplateSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyFieldTemplate` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyFieldTemplate` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyFieldTemplate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyFieldTemplate *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyFieldTemplate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyFieldTemplate` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyFieldTemplate` -/// object. -/// -+ (DBFILEPROPERTIESPropertyFieldTemplate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroup.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroup.h deleted file mode 100644 index 716d1674..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroup.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyGroup` struct. -/// -/// A subset of the property fields described by the corresponding -/// PropertyGroupTemplate. Properties are always added to a Dropbox file as a -/// PropertyGroup. The possible key names and value types in this group are -/// defined by the corresponding PropertyGroupTemplate. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyGroup : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the associated template. -@property (nonatomic, readonly, copy) NSString *templateId; - -/// The actual properties associated with the template. There can be up to 32 -/// property types per template. -@property (nonatomic, readonly) NSArray *fields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId A unique identifier for the associated template. -/// @param fields The actual properties associated with the template. There can -/// be up to 32 property types per template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId fields:(NSArray *)fields; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyGroup` struct. -/// -@interface DBFILEPROPERTIESPropertyGroupSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyGroup` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyGroup` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroup` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyGroup *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyGroup` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroup` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyGroup` object. -/// -+ (DBFILEPROPERTIESPropertyGroup *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h deleted file mode 100644 index 6a24a04c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroupTemplate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyGroupTemplate` struct. -/// -/// Defines how a property group may be structured. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyGroupTemplate : NSObject - -#pragma mark - Instance fields - -/// Display name for the template. Template names can be up to 256 bytes. -@property (nonatomic, readonly, copy) NSString *name; - -/// Description for the template. Template descriptions can be up to 1024 bytes. -@property (nonatomic, readonly, copy) NSString *description_; - -/// Definitions of the property fields associated with this template. There can -/// be up to 32 properties in a single template. -@property (nonatomic, readonly) NSArray *fields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Display name for the template. Template names can be up to 256 -/// bytes. -/// @param description_ Description for the template. Template descriptions can -/// be up to 1024 bytes. -/// @param fields Definitions of the property fields associated with this -/// template. There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyGroupTemplate` struct. -/// -@interface DBFILEPROPERTIESPropertyGroupTemplateSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyGroupTemplate` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyGroupTemplate` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupTemplate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyGroupTemplate *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyGroupTemplate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupTemplate` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyGroupTemplate` -/// object. -/// -+ (DBFILEPROPERTIESPropertyGroupTemplate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h deleted file mode 100644 index dc4e9f0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyGroupUpdate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyGroupUpdate` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyGroupUpdate : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for a property template. -@property (nonatomic, readonly, copy) NSString *templateId; - -/// Property fields to update. If the property field already exists, it is -/// updated. If the property field doesn't exist, the property group is added. -@property (nonatomic, readonly, nullable) NSArray *addOrUpdateFields; - -/// Property fields to remove (by name), provided they exist. -@property (nonatomic, readonly, nullable) NSArray *removeFields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId A unique identifier for a property template. -/// @param addOrUpdateFields Property fields to update. If the property field -/// already exists, it is updated. If the property field doesn't exist, the -/// property group is added. -/// @param removeFields Property fields to remove (by name), provided they -/// exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId - addOrUpdateFields:(nullable NSArray *)addOrUpdateFields - removeFields:(nullable NSArray *)removeFields; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param templateId A unique identifier for a property template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyGroupUpdate` struct. -/// -@interface DBFILEPROPERTIESPropertyGroupUpdateSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyGroupUpdate` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyGroupUpdate` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupUpdate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyGroupUpdate *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyGroupUpdate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupUpdate` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyGroupUpdate` -/// object. -/// -+ (DBFILEPROPERTIESPropertyGroupUpdate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyType.h deleted file mode 100644 index 40194ba7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESPropertyType.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyType` union. -/// -/// Data type of the given property field added. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertyTypeTag` enum type represents the possible tag -/// states with which the `DBFILEPROPERTIESPropertyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertyTypeTag) { - /// The associated property field will be of type string. Unicode is - /// supported. - DBFILEPROPERTIESPropertyTypeString, - - /// (no description). - DBFILEPROPERTIESPropertyTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "string". -/// -/// Description of the "string" tag state: The associated property field will be -/// of type string. Unicode is supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithString; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "string". -/// -/// @return Whether the union's current tag state has value "string". -/// -- (BOOL)isString; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertyType` union. -/// -@interface DBFILEPROPERTIESPropertyTypeSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyType` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyType *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyType` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyType` object. -/// -+ (DBFILEPROPERTIESPropertyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemovePropertiesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemovePropertiesArg.h deleted file mode 100644 index 354d39c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemovePropertiesArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESRemovePropertiesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovePropertiesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESRemovePropertiesArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// A list of identifiers for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly) NSArray *propertyTemplateIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyTemplateIds A list of identifiers for a template created by -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path propertyTemplateIds:(NSArray *)propertyTemplateIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemovePropertiesArg` struct. -/// -@interface DBFILEPROPERTIESRemovePropertiesArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESRemovePropertiesArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESRemovePropertiesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESRemovePropertiesArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESRemovePropertiesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESRemovePropertiesArg` -/// object. -/// -+ (DBFILEPROPERTIESRemovePropertiesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemovePropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemovePropertiesError.h deleted file mode 100644 index 2e7e9f7e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemovePropertiesError.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESRemovePropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovePropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESRemovePropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESRemovePropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESRemovePropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESRemovePropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESRemovePropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESRemovePropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESRemovePropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESRemovePropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESRemovePropertiesErrorUnsupportedFolder, - - /// (no description). - DBFILEPROPERTIESRemovePropertiesErrorPropertyGroupLookup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESRemovePropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -/// (no description). @note Ensure the `isPropertyGroupLookup` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertyGroupLookup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_group_lookup". -/// -/// @param propertyGroupLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupLookup:(DBFILEPROPERTIESLookUpPropertiesError *)propertyGroupLookup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertyGroupLookup` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "property_group_lookup". -/// -- (BOOL)isPropertyGroupLookup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESRemovePropertiesError` -/// union. -/// -@interface DBFILEPROPERTIESRemovePropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESRemovePropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESRemovePropertiesError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESRemovePropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESRemovePropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESRemovePropertiesError` -/// object. -/// -+ (DBFILEPROPERTIESRemovePropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemoveTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemoveTemplateArg.h deleted file mode 100644 index 67ccf634..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRemoveTemplateArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESRemoveTemplateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESRemoveTemplateArg : NSObject - -#pragma mark - Instance fields - -/// An identifier for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for a template created by -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveTemplateArg` struct. -/// -@interface DBFILEPROPERTIESRemoveTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESRemoveTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESRemoveTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemoveTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESRemoveTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESRemoveTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemoveTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESRemoveTemplateArg` object. -/// -+ (DBFILEPROPERTIESRemoveTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRouteObjects.h deleted file mode 100644 index a266b65e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESRouteObjects.h +++ /dev/null @@ -1,70 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the FileProperties namespace. Each route in the -/// FileProperties namespace has its own static object, which contains -/// information about the route. -/// -@interface DBFILEPROPERTIESRouteObjects : NSObject - -/// Accessor method for the propertiesAdd route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesAdd; - -/// Accessor method for the propertiesOverwrite route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesOverwrite; - -/// Accessor method for the propertiesRemove route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesRemove; - -/// Accessor method for the propertiesSearch route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesSearch; - -/// Accessor method for the propertiesSearchContinue route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesSearchContinue; - -/// Accessor method for the propertiesUpdate route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesUpdate; - -/// Accessor method for the templatesAddForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesAddForTeam; - -/// Accessor method for the templatesAddForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesAddForUser; - -/// Accessor method for the templatesGetForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesGetForTeam; - -/// Accessor method for the templatesGetForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesGetForUser; - -/// Accessor method for the templatesListForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesListForTeam; - -/// Accessor method for the templatesListForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesListForUser; - -/// Accessor method for the templatesRemoveForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesRemoveForTeam; - -/// Accessor method for the templatesRemoveForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesRemoveForUser; - -/// Accessor method for the templatesUpdateForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesUpdateForTeam; - -/// Accessor method for the templatesUpdateForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesUpdateForUser; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTeamAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTeamAuthRoutes.h deleted file mode 100644 index fa79877c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTeamAuthRoutes.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESAddTemplateResult; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLogicalOperator; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESModifyTemplateError; -@class DBFILEPROPERTIESPropertiesSearchContinueError; -@class DBFILEPROPERTIESPropertiesSearchError; -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertiesSearchMode; -@class DBFILEPROPERTIESPropertiesSearchQuery; -@class DBFILEPROPERTIESPropertiesSearchResult; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESPropertyType; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilter; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILEPROPERTIESUpdateTemplateResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `FileProperties` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILEPROPERTIESTeamAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILEPROPERTIESTeamAuthRoutes` namespace container object -/// with a networking client. -- (instancetype)init:(id)client; - -/// -/// Add a template associated with a team. See `propertiesAdd` to add properties to a file or folder. Note: this -/// endpoint will create team-owned templates. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESAddTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesAddForTeam:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -/// -/// Get the schema for a specified template. -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesGetForTeam: - (NSString *)templateId; - -/// -/// Get the template identifiers for a team. To get the schema of each template use `templatesGetForTeam`. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesListForTeam; - -/// -/// Permanently removes the specified template created from `templatesAddForUser`. All properties associated with the -/// template will also be removed. This action cannot be undone. -/// -/// @param templateId An identifier for a template created by `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesRemoveForTeam:(NSString *)templateId; - -/// -/// Update a template associated with a team. This route can update the template name, the template description and add -/// optional properties to templates. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *)templatesUpdateForTeam: - (NSString *)templateId; - -/// -/// Update a template associated with a team. This route can update the template name, the template description and add -/// optional properties to templates. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 bytes. -/// @param description_ Description for the new template. Template descriptions can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. There can be up to 32 properties in a -/// single template. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesUpdateForTeam:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateError.h deleted file mode 100644 index ac2ef7e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateError.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateErrorTag` enum type represents the possible tag -/// states with which the `DBFILEPROPERTIESTemplateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESTemplateErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESTemplateErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESTemplateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateError` union. -/// -@interface DBFILEPROPERTIESTemplateErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateError` object. -/// -+ (DBFILEPROPERTIESTemplateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateFilter.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateFilter.h deleted file mode 100644 index 8edf7cc8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateFilter.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateFilter` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateFilter : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateFilterTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESTemplateFilter` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateFilterTag) { - /// Only templates with an ID in the supplied list will be returned (a - /// subset of templates will be returned). - DBFILEPROPERTIESTemplateFilterFilterSome, - - /// (no description). - DBFILEPROPERTIESTemplateFilterOther, - - /// No templates will be filtered from the result (all templates will be - /// returned). - DBFILEPROPERTIESTemplateFilterFilterNone, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateFilterTag tag; - -/// Only templates with an ID in the supplied list will be returned (a subset of -/// templates will be returned). @note Ensure the `isFilterSome` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *filterSome; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filter_some". -/// -/// Description of the "filter_some" tag state: Only templates with an ID in the -/// supplied list will be returned (a subset of templates will be returned). -/// -/// @param filterSome Only templates with an ID in the supplied list will be -/// returned (a subset of templates will be returned). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterSome:(NSArray *)filterSome; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "filter_none". -/// -/// Description of the "filter_none" tag state: No templates will be filtered -/// from the result (all templates will be returned). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterNone; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filter_some". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filterSome` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "filter_some". -/// -- (BOOL)isFilterSome; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "filter_none". -/// -/// @return Whether the union's current tag state has value "filter_none". -/// -- (BOOL)isFilterNone; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateFilter` union. -/// -@interface DBFILEPROPERTIESTemplateFilterSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateFilter` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateFilter` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilter` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateFilter *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateFilter` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilter` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateFilter` object. -/// -+ (DBFILEPROPERTIESTemplateFilter *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateFilterBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateFilterBase.h deleted file mode 100644 index 55bf14a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateFilterBase.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateFilterBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateFilterBase : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateFilterBaseTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESTemplateFilterBase` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateFilterBaseTag) { - /// Only templates with an ID in the supplied list will be returned (a - /// subset of templates will be returned). - DBFILEPROPERTIESTemplateFilterBaseFilterSome, - - /// (no description). - DBFILEPROPERTIESTemplateFilterBaseOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateFilterBaseTag tag; - -/// Only templates with an ID in the supplied list will be returned (a subset of -/// templates will be returned). @note Ensure the `isFilterSome` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *filterSome; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filter_some". -/// -/// Description of the "filter_some" tag state: Only templates with an ID in the -/// supplied list will be returned (a subset of templates will be returned). -/// -/// @param filterSome Only templates with an ID in the supplied list will be -/// returned (a subset of templates will be returned). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterSome:(NSArray *)filterSome; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filter_some". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filterSome` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "filter_some". -/// -- (BOOL)isFilterSome; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateFilterBase` union. -/// -@interface DBFILEPROPERTIESTemplateFilterBaseSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateFilterBase` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateFilterBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilterBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateFilterBase *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateFilterBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilterBase` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateFilterBase` object. -/// -+ (DBFILEPROPERTIESTemplateFilterBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateOwnerType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateOwnerType.h deleted file mode 100644 index 84e3e953..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESTemplateOwnerType.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateOwnerType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateOwnerType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateOwnerType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateOwnerTypeTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESTemplateOwnerType` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateOwnerTypeTag) { - /// Template will be associated with a user. - DBFILEPROPERTIESTemplateOwnerTypeUser, - - /// Template will be associated with a team. - DBFILEPROPERTIESTemplateOwnerTypeTeam, - - /// (no description). - DBFILEPROPERTIESTemplateOwnerTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateOwnerTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user". -/// -/// Description of the "user" tag state: Template will be associated with a -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Template will be associated with a -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user". -/// -/// @return Whether the union's current tag state has value "user". -/// -- (BOOL)isUser; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateOwnerType` union. -/// -@interface DBFILEPROPERTIESTemplateOwnerTypeSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateOwnerType` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateOwnerType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateOwnerType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateOwnerType *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateOwnerType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateOwnerType` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateOwnerType` object. -/// -+ (DBFILEPROPERTIESTemplateOwnerType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h deleted file mode 100644 index 569f7967..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESUpdatePropertiesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdatePropertiesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdatePropertiesArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The property groups "delta" updates to apply. -@property (nonatomic, readonly) NSArray *updatePropertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param updatePropertyGroups The property groups "delta" updates to apply. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - updatePropertyGroups:(NSArray *)updatePropertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdatePropertiesArg` struct. -/// -@interface DBFILEPROPERTIESUpdatePropertiesArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdatePropertiesArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdatePropertiesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdatePropertiesArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdatePropertiesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdatePropertiesArg` -/// object. -/// -+ (DBFILEPROPERTIESUpdatePropertiesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdatePropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdatePropertiesError.h deleted file mode 100644 index 6df8ce25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdatePropertiesError.h +++ /dev/null @@ -1,303 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESUpdatePropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdatePropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdatePropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESUpdatePropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESUpdatePropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESUpdatePropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESUpdatePropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESUpdatePropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESUpdatePropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESUpdatePropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESUpdatePropertiesErrorUnsupportedFolder, - - /// One or more of the supplied property field values is too large. - DBFILEPROPERTIESUpdatePropertiesErrorPropertyFieldTooLarge, - - /// One or more of the supplied property fields does not conform to the - /// template specifications. - DBFILEPROPERTIESUpdatePropertiesErrorDoesNotFitTemplate, - - /// There are 2 or more property groups referring to the same templates in - /// the input. - DBFILEPROPERTIESUpdatePropertiesErrorDuplicatePropertyGroups, - - /// (no description). - DBFILEPROPERTIESUpdatePropertiesErrorPropertyGroupLookup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESUpdatePropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -/// (no description). @note Ensure the `isPropertyGroupLookup` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertyGroupLookup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_field_too_large". -/// -/// Description of the "property_field_too_large" tag state: One or more of the -/// supplied property field values is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyFieldTooLarge; - -/// -/// Initializes union class with tag state of "does_not_fit_template". -/// -/// Description of the "does_not_fit_template" tag state: One or more of the -/// supplied property fields does not conform to the template specifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDoesNotFitTemplate; - -/// -/// Initializes union class with tag state of "duplicate_property_groups". -/// -/// Description of the "duplicate_property_groups" tag state: There are 2 or -/// more property groups referring to the same templates in the input. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatePropertyGroups; - -/// -/// Initializes union class with tag state of "property_group_lookup". -/// -/// @param propertyGroupLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupLookup:(DBFILEPROPERTIESLookUpPropertiesError *)propertyGroupLookup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_field_too_large". -/// -/// @return Whether the union's current tag state has value -/// "property_field_too_large". -/// -- (BOOL)isPropertyFieldTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "does_not_fit_template". -/// -/// @return Whether the union's current tag state has value -/// "does_not_fit_template". -/// -- (BOOL)isDoesNotFitTemplate; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_property_groups". -/// -/// @return Whether the union's current tag state has value -/// "duplicate_property_groups". -/// -- (BOOL)isDuplicatePropertyGroups; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertyGroupLookup` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "property_group_lookup". -/// -- (BOOL)isPropertyGroupLookup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESUpdatePropertiesError` -/// union. -/// -@interface DBFILEPROPERTIESUpdatePropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdatePropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdatePropertiesError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdatePropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdatePropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdatePropertiesError` -/// object. -/// -+ (DBFILEPROPERTIESUpdatePropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdateTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdateTemplateArg.h deleted file mode 100644 index 8529dc84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdateTemplateArg.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESUpdateTemplateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdateTemplateArg : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -/// A display name for the template. template names can be up to 256 bytes. -@property (nonatomic, readonly, copy, nullable) NSString *name; - -/// Description for the new template. Template descriptions can be up to 1024 -/// bytes. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// Property field templates to be added to the group template. There can be up -/// to 32 properties in a single template. -@property (nonatomic, readonly, nullable) NSArray *addFields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 -/// bytes. -/// @param description_ Description for the new template. Template descriptions -/// can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. -/// There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param templateId An identifier for template added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateTemplateArg` struct. -/// -@interface DBFILEPROPERTIESUpdateTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdateTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdateTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdateTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdateTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdateTemplateArg` object. -/// -+ (DBFILEPROPERTIESUpdateTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdateTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdateTemplateResult.h deleted file mode 100644 index 3afa2b59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUpdateTemplateResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESUpdateTemplateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdateTemplateResult : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by route See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by route See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateTemplateResult` struct. -/// -@interface DBFILEPROPERTIESUpdateTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdateTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdateTemplateResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdateTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdateTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdateTemplateResult` -/// object. -/// -+ (DBFILEPROPERTIESUpdateTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUserAuthRoutes.h deleted file mode 100644 index b2368ebf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEPROPERTIESUserAuthRoutes.h +++ /dev/null @@ -1,232 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESAddTemplateResult; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLogicalOperator; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESModifyTemplateError; -@class DBFILEPROPERTIESPropertiesSearchContinueError; -@class DBFILEPROPERTIESPropertiesSearchError; -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertiesSearchMode; -@class DBFILEPROPERTIESPropertiesSearchQuery; -@class DBFILEPROPERTIESPropertiesSearchResult; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESPropertyType; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilter; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILEPROPERTIESUpdateTemplateResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `FileProperties` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILEPROPERTIESUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILEPROPERTIESUserAuthRoutes` namespace container object -/// with a networking client. -- (instancetype)init:(id)client; - -/// -/// Add property groups to a Dropbox file. See `templatesAddForUser` or `templatesAddForTeam` to create new templates. -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups which are to be added to a Dropbox file. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESAddPropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesAdd:(NSString *)path - propertyGroups:(NSArray *)propertyGroups; - -/// -/// Overwrite property groups associated with a file. This endpoint should be used instead of `propertiesUpdate` when -/// property groups are being updated via a "snapshot" instead of via a "delta". In other words, this endpoint will -/// delete all omitted fields from a property group, whereas `propertiesUpdate` will only delete fields that are -/// explicitly marked for deletion. -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups "snapshot" updates to force apply. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESInvalidPropertyGroupError` object on failure. -/// -- (DBRpcTask *) - propertiesOverwrite:(NSString *)path - propertyGroups:(NSArray *)propertyGroups; - -/// -/// Permanently removes the specified property group from the file. To remove specific property field key value pairs, -/// see `propertiesUpdate`. To update a template, see `templatesUpdateForUser` or `templatesUpdateForTeam`. To remove a -/// template, see `templatesRemoveForUser` or `templatesRemoveForTeam`. -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyTemplateIds A list of identifiers for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESRemovePropertiesError` object on failure. -/// -- (DBRpcTask *)propertiesRemove:(NSString *)path - propertyTemplateIds: - (NSArray *)propertyTemplateIds; - -/// -/// Search across property templates for particular property field values. -/// -/// @param queries Queries to search. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESPropertiesSearchResult` object on -/// success or a `DBFILEPROPERTIESPropertiesSearchError` object on failure. -/// -- (DBRpcTask *)propertiesSearch: - (NSArray *)queries; - -/// -/// Search across property templates for particular property field values. -/// -/// @param queries Queries to search. -/// @param templateFilter Filter results to contain only properties associated with these template IDs. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESPropertiesSearchResult` object on -/// success or a `DBFILEPROPERTIESPropertiesSearchError` object on failure. -/// -- (DBRpcTask *) - propertiesSearch:(NSArray *)queries - templateFilter:(nullable DBFILEPROPERTIESTemplateFilter *)templateFilter; - -/// -/// Once a cursor has been retrieved from `propertiesSearch`, use this to paginate through all search results. -/// -/// @param cursor The cursor returned by your last call to `propertiesSearch` or `propertiesSearchContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESPropertiesSearchResult` object on -/// success or a `DBFILEPROPERTIESPropertiesSearchContinueError` object on failure. -/// -- (DBRpcTask *) - propertiesSearchContinue:(NSString *)cursor; - -/// -/// Add, update or remove properties associated with the supplied file and templates. This endpoint should be used -/// instead of `propertiesOverwrite` when property groups are being updated via a "delta" instead of via a "snapshot" . -/// In other words, this endpoint will not delete any omitted fields from a property group, whereas -/// `propertiesOverwrite` will delete any fields that are omitted from a property group. -/// -/// @param path A unique identifier for the file or folder. -/// @param updatePropertyGroups The property groups "delta" updates to apply. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESUpdatePropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesUpdate:(NSString *)path - updatePropertyGroups:(NSArray *)updatePropertyGroups; - -/// -/// Add a template associated with a user. See `propertiesAdd` to add properties to a file. This endpoint can't be -/// called on a team member or admin's behalf. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESAddTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesAddForUser:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -/// -/// Get the schema for a specified template. This endpoint can't be called on a team member or admin's behalf. -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesGetForUser: - (NSString *)templateId; - -/// -/// Get the template identifiers for a team. To get the schema of each template use `templatesGetForUser`. This endpoint -/// can't be called on a team member or admin's behalf. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesListForUser; - -/// -/// Permanently removes the specified template created from `templatesAddForUser`. All properties associated with the -/// template will also be removed. This action cannot be undone. -/// -/// @param templateId An identifier for a template created by `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesRemoveForUser:(NSString *)templateId; - -/// -/// Update a template associated with a user. This route can update the template name, the template description and add -/// optional properties to templates. This endpoint can't be called on a team member or admin's behalf. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *)templatesUpdateForUser: - (NSString *)templateId; - -/// -/// Update a template associated with a user. This route can update the template name, the template description and add -/// optional properties to templates. This endpoint can't be called on a team member or admin's behalf. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 bytes. -/// @param description_ Description for the new template. Template descriptions can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. There can be up to 32 properties in a -/// single template. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesUpdateForUser:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCountFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCountFileRequestsError.h deleted file mode 100644 index f47d37fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCountFileRequestsError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCountFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CountFileRequestsError` union. -/// -/// There was an error counting the file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCountFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSCountFileRequestsErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSCountFileRequestsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSCountFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSCountFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSCountFileRequestsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSCountFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSCountFileRequestsError` -/// union. -/// -@interface DBFILEREQUESTSCountFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCountFileRequestsError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCountFileRequestsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCountFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCountFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCountFileRequestsError` -/// object. -/// -+ (DBFILEREQUESTSCountFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCountFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCountFileRequestsResult.h deleted file mode 100644 index 329d691f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCountFileRequestsResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCountFileRequestsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CountFileRequestsResult` struct. -/// -/// Result for `count`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCountFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The number file requests owner by this user. -@property (nonatomic, readonly) NSNumber *fileRequestCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestCount The number file requests owner by this user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCount:(NSNumber *)fileRequestCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CountFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSCountFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCountFileRequestsResult` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCountFileRequestsResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCountFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCountFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsResult` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCountFileRequestsResult` -/// object. -/// -+ (DBFILEREQUESTSCountFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCreateFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCreateFileRequestArgs.h deleted file mode 100644 index 151b9dd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCreateFileRequestArgs.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCreateFileRequestArgs; -@class DBFILEREQUESTSFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFileRequestArgs` struct. -/// -/// Arguments for `create`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCreateFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// The title of the file request. Must not be empty. -@property (nonatomic, readonly, copy) NSString *title; - -/// The path of the folder in the Dropbox where uploaded files will be sent. For -/// apps with the app folder permission, this will be relative to the app -/// folder. -@property (nonatomic, readonly, copy) NSString *destination; - -/// The deadline for the file request. Deadlines can only be set by Professional -/// and Business accounts. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSFileRequestDeadline *deadline; - -/// Whether or not the file request should be open. If the file request is -/// closed, it will not accept any file submissions, but it can be opened later. -@property (nonatomic, readonly) NSNumber *open; - -/// A description of the file request. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded -/// files will be sent. For apps with the app folder permission, this will be -/// relative to the app folder. -/// @param deadline The deadline for the file request. Deadlines can only be set -/// by Professional and Business accounts. -/// @param open Whether or not the file request should be open. If the file -/// request is closed, it will not accept any file submissions, but it can be -/// opened later. -/// @param description_ A description of the file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTitle:(NSString *)title - destination:(NSString *)destination - deadline:(nullable DBFILEREQUESTSFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded -/// files will be sent. For apps with the app folder permission, this will be -/// relative to the app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTitle:(NSString *)title destination:(NSString *)destination; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSCreateFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCreateFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCreateFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCreateFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCreateFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCreateFileRequestArgs` -/// object. -/// -+ (DBFILEREQUESTSCreateFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCreateFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCreateFileRequestError.h deleted file mode 100644 index 4d61a2d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSCreateFileRequestError.h +++ /dev/null @@ -1,298 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCreateFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFileRequestError` union. -/// -/// There was an error creating the file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCreateFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSCreateFileRequestErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSCreateFileRequestError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSCreateFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSCreateFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSCreateFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSCreateFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSCreateFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSCreateFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSCreateFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSCreateFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSCreateFileRequestErrorValidationError, - - /// File requests are not available on the specified folder. - DBFILEREQUESTSCreateFileRequestErrorInvalidLocation, - - /// The user has reached the rate limit for creating file requests. The - /// limit is currently 4000 file requests total. - DBFILEREQUESTSCreateFileRequestErrorRateLimit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSCreateFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -/// -/// Initializes union class with tag state of "invalid_location". -/// -/// Description of the "invalid_location" tag state: File requests are not -/// available on the specified folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidLocation; - -/// -/// Initializes union class with tag state of "rate_limit". -/// -/// Description of the "rate_limit" tag state: The user has reached the rate -/// limit for creating file requests. The limit is currently 4000 file requests -/// total. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_location". -/// -/// @return Whether the union's current tag state has value "invalid_location". -/// -- (BOOL)isInvalidLocation; - -/// -/// Retrieves whether the union's current tag state has value "rate_limit". -/// -/// @return Whether the union's current tag state has value "rate_limit". -/// -- (BOOL)isRateLimit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSCreateFileRequestError` -/// union. -/// -@interface DBFILEREQUESTSCreateFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCreateFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCreateFileRequestError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCreateFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCreateFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCreateFileRequestError` -/// object. -/// -+ (DBFILEREQUESTSCreateFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h deleted file mode 100644 index 3f4947d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h +++ /dev/null @@ -1,255 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteAllClosedFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteAllClosedFileRequestsError` union. -/// -/// There was an error deleting all closed file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSDeleteAllClosedFileRequestsErrorTag` enum type represents -/// the possible tag states with which the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSDeleteAllClosedFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSDeleteAllClosedFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` union. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteAllClosedFileRequestsError` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteAllClosedFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteAllClosedFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` API object. -/// -/// @return An instantiation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` object. -/// -+ (DBFILEREQUESTSDeleteAllClosedFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h deleted file mode 100644 index ef76760b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteAllClosedFileRequestsResult; -@class DBFILEREQUESTSFileRequest; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteAllClosedFileRequestsResult` struct. -/// -/// Result for `deleteAllClosed`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The file requests deleted for this user. -@property (nonatomic, readonly) NSArray *fileRequests; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests deleted for this user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteAllClosedFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteAllClosedFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` API object. -/// -/// @return An instantiation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` object. -/// -+ (DBFILEREQUESTSDeleteAllClosedFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h deleted file mode 100644 index a9c38362..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteFileRequestArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteFileRequestArgs` struct. -/// -/// Arguments for `delete_`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// List IDs of the file requests to delete. -@property (nonatomic, readonly) NSArray *ids; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ids List IDs of the file requests to delete. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIds:(NSArray *)ids; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSDeleteFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSDeleteFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSDeleteFileRequestArgs` -/// object. -/// -+ (DBFILEREQUESTSDeleteFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestError.h deleted file mode 100644 index 988bad06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestError.h +++ /dev/null @@ -1,276 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteFileRequestError` union. -/// -/// There was an error deleting these file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSDeleteFileRequestErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSDeleteFileRequestError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSDeleteFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSDeleteFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSDeleteFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSDeleteFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSDeleteFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSDeleteFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSDeleteFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSDeleteFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSDeleteFileRequestErrorValidationError, - - /// One or more file requests currently open. - DBFILEREQUESTSDeleteFileRequestErrorFileRequestOpen, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSDeleteFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -/// -/// Initializes union class with tag state of "file_request_open". -/// -/// Description of the "file_request_open" tag state: One or more file requests -/// currently open. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestOpen; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_open". -/// -/// @return Whether the union's current tag state has value "file_request_open". -/// -- (BOOL)isFileRequestOpen; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSDeleteFileRequestError` -/// union. -/// -@interface DBFILEREQUESTSDeleteFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSDeleteFileRequestError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSDeleteFileRequestError` -/// object. -/// -+ (DBFILEREQUESTSDeleteFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h deleted file mode 100644 index eac4f170..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteFileRequestsResult; -@class DBFILEREQUESTSFileRequest; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteFileRequestsResult` struct. -/// -/// Result for `delete_`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The file requests deleted by the request. -@property (nonatomic, readonly) NSArray *fileRequests; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests deleted by the request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSDeleteFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteFileRequestsResult` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSDeleteFileRequestsResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestsResult` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSDeleteFileRequestsResult` -/// object. -/// -+ (DBFILEREQUESTSDeleteFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequest.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequest.h deleted file mode 100644 index 86cebac2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequest.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequest` struct. -/// -/// A file request https://www.dropbox.com/help/9090 for receiving files into -/// the user's Dropbox account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSFileRequest : NSObject - -#pragma mark - Instance fields - -/// The ID of the file request. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The URL of the file request. -@property (nonatomic, readonly, copy) NSString *url; - -/// The title of the file request. -@property (nonatomic, readonly, copy) NSString *title; - -/// The path of the folder in the Dropbox where uploaded files will be sent. -/// This can be null if the destination was removed. For apps with the app -/// folder permission, this will be relative to the app folder. -@property (nonatomic, readonly, copy, nullable) NSString *destination; - -/// When this file request was created. -@property (nonatomic, readonly) NSDate *created; - -/// The deadline for this file request. Only set if the request has a deadline. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSFileRequestDeadline *deadline; - -/// Whether or not the file request is open. If the file request is closed, it -/// will not accept any more file submissions. -@property (nonatomic, readonly) NSNumber *isOpen; - -/// The number of files this file request has received. -@property (nonatomic, readonly) NSNumber *fileCount; - -/// A description of the file request. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file request. -/// @param url The URL of the file request. -/// @param title The title of the file request. -/// @param created When this file request was created. -/// @param isOpen Whether or not the file request is open. If the file request -/// is closed, it will not accept any more file submissions. -/// @param fileCount The number of files this file request has received. -/// @param destination The path of the folder in the Dropbox where uploaded -/// files will be sent. This can be null if the destination was removed. For -/// apps with the app folder permission, this will be relative to the app -/// folder. -/// @param deadline The deadline for this file request. Only set if the request -/// has a deadline. -/// @param description_ A description of the file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - url:(NSString *)url - title:(NSString *)title - created:(NSDate *)created - isOpen:(NSNumber *)isOpen - fileCount:(NSNumber *)fileCount - destination:(nullable NSString *)destination - deadline:(nullable DBFILEREQUESTSFileRequestDeadline *)deadline - description_:(nullable NSString *)description_; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The ID of the file request. -/// @param url The URL of the file request. -/// @param title The title of the file request. -/// @param created When this file request was created. -/// @param isOpen Whether or not the file request is open. If the file request -/// is closed, it will not accept any more file submissions. -/// @param fileCount The number of files this file request has received. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - url:(NSString *)url - title:(NSString *)title - created:(NSDate *)created - isOpen:(NSNumber *)isOpen - fileCount:(NSNumber *)fileCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequest` struct. -/// -@interface DBFILEREQUESTSFileRequestSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSFileRequest` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSFileRequest` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequest` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSFileRequest *)instance; - -/// -/// Deserializes `DBFILEREQUESTSFileRequest` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequest` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSFileRequest` object. -/// -+ (DBFILEREQUESTSFileRequest *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequestDeadline.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequestDeadline.h deleted file mode 100644 index 1be267b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequestDeadline.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequestDeadline; -@class DBFILEREQUESTSGracePeriod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeadline` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSFileRequestDeadline : NSObject - -#pragma mark - Instance fields - -/// The deadline for this file request. -@property (nonatomic, readonly) NSDate *deadline; - -/// If set, allow uploads after the deadline has passed. These uploads will -/// be marked overdue. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSGracePeriod *allowLateUploads; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deadline The deadline for this file request. -/// @param allowLateUploads If set, allow uploads after the deadline has passed. -/// These uploads will be marked overdue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeadline:(NSDate *)deadline - allowLateUploads:(nullable DBFILEREQUESTSGracePeriod *)allowLateUploads; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deadline The deadline for this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeadline:(NSDate *)deadline; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeadline` struct. -/// -@interface DBFILEREQUESTSFileRequestDeadlineSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSFileRequestDeadline` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSFileRequestDeadline` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestDeadline` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSFileRequestDeadline *)instance; - -/// -/// Deserializes `DBFILEREQUESTSFileRequestDeadline` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestDeadline` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSFileRequestDeadline` object. -/// -+ (DBFILEREQUESTSFileRequestDeadline *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequestError.h deleted file mode 100644 index 896e996d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSFileRequestError.h +++ /dev/null @@ -1,252 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestError` union. -/// -/// There is an error with the file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSFileRequestErrorTag` enum type represents the possible -/// tag states with which the `DBFILEREQUESTSFileRequestError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSFileRequestErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSFileRequestError` union. -/// -@interface DBFILEREQUESTSFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSFileRequestError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSFileRequestError` object. -/// -+ (DBFILEREQUESTSFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGeneralFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGeneralFileRequestsError.h deleted file mode 100644 index cc0793bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGeneralFileRequestsError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGeneralFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GeneralFileRequestsError` union. -/// -/// There is an error accessing the file requests functionality. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGeneralFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSGeneralFileRequestsErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSGeneralFileRequestsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSGeneralFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSGeneralFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSGeneralFileRequestsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSGeneralFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSGeneralFileRequestsError` -/// union. -/// -@interface DBFILEREQUESTSGeneralFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGeneralFileRequestsError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGeneralFileRequestsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGeneralFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGeneralFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGeneralFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGeneralFileRequestsError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGeneralFileRequestsError` -/// object. -/// -+ (DBFILEREQUESTSGeneralFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGetFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGetFileRequestArgs.h deleted file mode 100644 index 76180e13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGetFileRequestArgs.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGetFileRequestArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileRequestArgs` struct. -/// -/// Arguments for `get`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGetFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// The ID of the file request to retrieve. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file request to retrieve. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSGetFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGetFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGetFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGetFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGetFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGetFileRequestArgs` object. -/// -+ (DBFILEREQUESTSGetFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGetFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGetFileRequestError.h deleted file mode 100644 index 58cbc59a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGetFileRequestError.h +++ /dev/null @@ -1,253 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGetFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileRequestError` union. -/// -/// There was an error retrieving the specified file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGetFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSGetFileRequestErrorTag` enum type represents the possible -/// tag states with which the `DBFILEREQUESTSGetFileRequestError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSGetFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSGetFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSGetFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSGetFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSGetFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSGetFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSGetFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSGetFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSGetFileRequestErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSGetFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSGetFileRequestError` union. -/// -@interface DBFILEREQUESTSGetFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGetFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGetFileRequestError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGetFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGetFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGetFileRequestError` object. -/// -+ (DBFILEREQUESTSGetFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGracePeriod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGracePeriod.h deleted file mode 100644 index f7fcf589..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSGracePeriod.h +++ /dev/null @@ -1,182 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGracePeriod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GracePeriod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGracePeriod : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSGracePeriodTag` enum type represents the possible tag -/// states with which the `DBFILEREQUESTSGracePeriod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSGracePeriodTag) { - /// (no description). - DBFILEREQUESTSGracePeriodOneDay, - - /// (no description). - DBFILEREQUESTSGracePeriodTwoDays, - - /// (no description). - DBFILEREQUESTSGracePeriodSevenDays, - - /// (no description). - DBFILEREQUESTSGracePeriodThirtyDays, - - /// (no description). - DBFILEREQUESTSGracePeriodAlways, - - /// (no description). - DBFILEREQUESTSGracePeriodOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSGracePeriodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "one_day". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOneDay; - -/// -/// Initializes union class with tag state of "two_days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoDays; - -/// -/// Initializes union class with tag state of "seven_days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSevenDays; - -/// -/// Initializes union class with tag state of "thirty_days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithThirtyDays; - -/// -/// Initializes union class with tag state of "always". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlways; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "one_day". -/// -/// @return Whether the union's current tag state has value "one_day". -/// -- (BOOL)isOneDay; - -/// -/// Retrieves whether the union's current tag state has value "two_days". -/// -/// @return Whether the union's current tag state has value "two_days". -/// -- (BOOL)isTwoDays; - -/// -/// Retrieves whether the union's current tag state has value "seven_days". -/// -/// @return Whether the union's current tag state has value "seven_days". -/// -- (BOOL)isSevenDays; - -/// -/// Retrieves whether the union's current tag state has value "thirty_days". -/// -/// @return Whether the union's current tag state has value "thirty_days". -/// -- (BOOL)isThirtyDays; - -/// -/// Retrieves whether the union's current tag state has value "always". -/// -/// @return Whether the union's current tag state has value "always". -/// -- (BOOL)isAlways; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSGracePeriod` union. -/// -@interface DBFILEREQUESTSGracePeriodSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGracePeriod` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGracePeriod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGracePeriod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGracePeriod *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGracePeriod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGracePeriod` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGracePeriod` object. -/// -+ (DBFILEREQUESTSGracePeriod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsArg.h deleted file mode 100644 index ad95374b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsArg` struct. -/// -/// Arguments for `list`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsArg : NSObject - -#pragma mark - Instance fields - -/// The maximum number of file requests that should be returned per request. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximum number of file requests that should be returned per -/// request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsArg` struct. -/// -@interface DBFILEREQUESTSListFileRequestsArgSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsArg` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsArg *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsArg` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsArg` object. -/// -+ (DBFILEREQUESTSListFileRequestsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h deleted file mode 100644 index a1d6cdfa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by the previous API call specified in the endpoint -/// description. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by the previous API call specified in the -/// endpoint description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsContinueArg` struct. -/// -@interface DBFILEREQUESTSListFileRequestsContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsContinueArg` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSListFileRequestsContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsContinueArg *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueArg` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsContinueArg` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsContinueError.h deleted file mode 100644 index 088f0291..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsContinueError.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsContinueError` union. -/// -/// There was an error retrieving the file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSListFileRequestsContinueErrorTag` enum type represents -/// the possible tag states with which the -/// `DBFILEREQUESTSListFileRequestsContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSListFileRequestsContinueErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSListFileRequestsContinueErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSListFileRequestsContinueErrorOther, - - /// The cursor is invalid. - DBFILEREQUESTSListFileRequestsContinueErrorInvalidCursor, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSListFileRequestsContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBFILEREQUESTSListFileRequestsContinueError` union. -/// -@interface DBFILEREQUESTSListFileRequestsContinueErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsContinueError` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSListFileRequestsContinueError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsContinueError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueError` API object. -/// -/// @return An instantiation of the -/// `DBFILEREQUESTSListFileRequestsContinueError` object. -/// -+ (DBFILEREQUESTSListFileRequestsContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsError.h deleted file mode 100644 index c43ccb8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsError.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsError` union. -/// -/// There was an error retrieving the file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSListFileRequestsErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSListFileRequestsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSListFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSListFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSListFileRequestsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSListFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSListFileRequestsError` union. -/// -@interface DBFILEREQUESTSListFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsError` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsResult.h deleted file mode 100644 index 11bf04cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSListFileRequestsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsResult` struct. -/// -/// Result for `list`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The file requests owned by this user. Apps with the app folder permission -/// will only see file requests in their app folder. -@property (nonatomic, readonly) NSArray *fileRequests; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests owned by this user. Apps with the app -/// folder permission will only see file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSListFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsResult` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsResult` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsResult` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsV2Result.h deleted file mode 100644 index 5ae0a931..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSListFileRequestsV2Result.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSListFileRequestsV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsV2Result` struct. -/// -/// Result for `list` and `listContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsV2Result : NSObject - -#pragma mark - Instance fields - -/// The file requests owned by this user. Apps with the app folder permission -/// will only see file requests in their app folder. -@property (nonatomic, readonly) NSArray *fileRequests; - -/// Pass the cursor into `listContinue` to obtain additional file requests. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional file requests that have not been returned -/// yet. An additional call to :route:list/continue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests owned by this user. Apps with the app -/// folder permission will only see file requests in their app folder. -/// @param cursor Pass the cursor into `listContinue` to obtain additional file -/// requests. -/// @param hasMore Is true if there are additional file requests that have not -/// been returned yet. An additional call to :route:list/continue` can retrieve -/// them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsV2Result` struct. -/// -@interface DBFILEREQUESTSListFileRequestsV2ResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsV2Result` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsV2Result` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsV2Result *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsV2Result` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsV2Result` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSRouteObjects.h deleted file mode 100644 index 4c38d4f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSRouteObjects.h +++ /dev/null @@ -1,49 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the FileRequests namespace. Each route in the -/// FileRequests namespace has its own static object, which contains information -/// about the route. -/// -@interface DBFILEREQUESTSRouteObjects : NSObject - -/// Accessor method for the count route object. -+ (DBRoute *)DBFILEREQUESTSCount; - -/// Accessor method for the create route object. -+ (DBRoute *)DBFILEREQUESTSCreate; - -/// Accessor method for the delete_ route object. -+ (DBRoute *)DBFILEREQUESTSDelete_; - -/// Accessor method for the deleteAllClosed route object. -+ (DBRoute *)DBFILEREQUESTSDeleteAllClosed; - -/// Accessor method for the get route object. -+ (DBRoute *)DBFILEREQUESTSGet; - -/// Accessor method for the list route object. -+ (DBRoute *)DBFILEREQUESTSList; - -/// Accessor method for the listV2 route object. -+ (DBRoute *)DBFILEREQUESTSListV2; - -/// Accessor method for the listContinue route object. -+ (DBRoute *)DBFILEREQUESTSListContinue; - -/// Accessor method for the update route object. -+ (DBRoute *)DBFILEREQUESTSUpdate; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h deleted file mode 100644 index d9b50f72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSUpdateFileRequestArgs; -@class DBFILEREQUESTSUpdateFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileRequestArgs` struct. -/// -/// Arguments for `update`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSUpdateFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// The ID of the file request to update. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The new title of the file request. Must not be empty. -@property (nonatomic, readonly, copy, nullable) NSString *title; - -/// The new path of the folder in the Dropbox where uploaded files will be sent. -/// For apps with the app folder permission, this will be relative to the app -/// folder. -@property (nonatomic, readonly, copy, nullable) NSString *destination; - -/// The new deadline for the file request. Deadlines can only be set by -/// Professional and Business accounts. -@property (nonatomic, readonly) DBFILEREQUESTSUpdateFileRequestDeadline *deadline; - -/// Whether to set this file request as open or closed. -@property (nonatomic, readonly, nullable) NSNumber *open; - -/// The description of the file request. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file request to update. -/// @param title The new title of the file request. Must not be empty. -/// @param destination The new path of the folder in the Dropbox where uploaded -/// files will be sent. For apps with the app folder permission, this will be -/// relative to the app folder. -/// @param deadline The new deadline for the file request. Deadlines can only be -/// set by Professional and Business accounts. -/// @param open Whether to set this file request as open or closed. -/// @param description_ The description of the file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - title:(nullable NSString *)title - destination:(nullable NSString *)destination - deadline:(nullable DBFILEREQUESTSUpdateFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The ID of the file request to update. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSUpdateFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSUpdateFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSUpdateFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSUpdateFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSUpdateFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSUpdateFileRequestArgs` -/// object. -/// -+ (DBFILEREQUESTSUpdateFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h deleted file mode 100644 index 40efbcf2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequestDeadline; -@class DBFILEREQUESTSUpdateFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileRequestDeadline` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSUpdateFileRequestDeadline : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSUpdateFileRequestDeadlineTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSUpdateFileRequestDeadlineTag) { - /// Do not change the file request's deadline. - DBFILEREQUESTSUpdateFileRequestDeadlineNoUpdate, - - /// If null, the file request's deadline is cleared. - DBFILEREQUESTSUpdateFileRequestDeadlineUpdate, - - /// (no description). - DBFILEREQUESTSUpdateFileRequestDeadlineOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSUpdateFileRequestDeadlineTag tag; - -/// If null, the file request's deadline is cleared. @note Ensure the `isUpdate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSFileRequestDeadline *update; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_update". -/// -/// Description of the "no_update" tag state: Do not change the file request's -/// deadline. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoUpdate; - -/// -/// Initializes union class with tag state of "update". -/// -/// Description of the "update" tag state: If null, the file request's deadline -/// is cleared. -/// -/// @param update If null, the file request's deadline is cleared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdate:(nullable DBFILEREQUESTSFileRequestDeadline *)update; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_update". -/// -/// @return Whether the union's current tag state has value "no_update". -/// -- (BOOL)isNoUpdate; - -/// -/// Retrieves whether the union's current tag state has value "update". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `update` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "update". -/// -- (BOOL)isUpdate; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// union. -/// -@interface DBFILEREQUESTSUpdateFileRequestDeadlineSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSUpdateFileRequestDeadline` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestDeadline` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSUpdateFileRequestDeadline *)instance; - -/// -/// Deserializes `DBFILEREQUESTSUpdateFileRequestDeadline` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestDeadline` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// object. -/// -+ (DBFILEREQUESTSUpdateFileRequestDeadline *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestError.h deleted file mode 100644 index 7be0eacc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUpdateFileRequestError.h +++ /dev/null @@ -1,255 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSUpdateFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileRequestError` union. -/// -/// There is an error updating the file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSUpdateFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSUpdateFileRequestErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSUpdateFileRequestError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSUpdateFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSUpdateFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSUpdateFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSUpdateFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSUpdateFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSUpdateFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSUpdateFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSUpdateFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSUpdateFileRequestErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSUpdateFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSUpdateFileRequestError` -/// union. -/// -@interface DBFILEREQUESTSUpdateFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSUpdateFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSUpdateFileRequestError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSUpdateFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSUpdateFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSUpdateFileRequestError` -/// object. -/// -+ (DBFILEREQUESTSUpdateFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUserAuthRoutes.h deleted file mode 100644 index ab44751a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILEREQUESTSUserAuthRoutes.h +++ /dev/null @@ -1,201 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBFILEREQUESTSCountFileRequestsError; -@class DBFILEREQUESTSCountFileRequestsResult; -@class DBFILEREQUESTSCreateFileRequestError; -@class DBFILEREQUESTSDeleteAllClosedFileRequestsError; -@class DBFILEREQUESTSDeleteAllClosedFileRequestsResult; -@class DBFILEREQUESTSDeleteFileRequestError; -@class DBFILEREQUESTSDeleteFileRequestsResult; -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSFileRequestDeadline; -@class DBFILEREQUESTSGetFileRequestError; -@class DBFILEREQUESTSGracePeriod; -@class DBFILEREQUESTSListFileRequestsContinueError; -@class DBFILEREQUESTSListFileRequestsError; -@class DBFILEREQUESTSListFileRequestsResult; -@class DBFILEREQUESTSListFileRequestsV2Result; -@class DBFILEREQUESTSUpdateFileRequestDeadline; -@class DBFILEREQUESTSUpdateFileRequestError; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `FileRequests` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILEREQUESTSUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILEREQUESTSUserAuthRoutes` namespace container object -/// with a networking client. -- (instancetype)init:(id)client; - -/// -/// Returns the total number of file requests owned by this user. Includes both open and closed file requests. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSCountFileRequestsResult` object on -/// success or a `DBFILEREQUESTSCountFileRequestsError` object on failure. -/// -- (DBRpcTask *)count; - -/// -/// Creates a file request for this user. -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app -/// folder permission, this will be relative to the app folder. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSCreateFileRequestError` object on failure. -/// -- (DBRpcTask *)create:(NSString *)title - destination:(NSString *)destination; - -/// -/// Creates a file request for this user. -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app -/// folder permission, this will be relative to the app folder. -/// @param deadline The deadline for the file request. Deadlines can only be set by Professional and Business accounts. -/// @param open Whether or not the file request should be open. If the file request is closed, it will not accept any -/// file submissions, but it can be opened later. -/// @param description_ A description of the file request. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSCreateFileRequestError` object on failure. -/// -- (DBRpcTask *) - create:(NSString *)title - destination:(NSString *)destination - deadline:(nullable DBFILEREQUESTSFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -/// -/// Delete a batch of closed file requests. -/// -/// @param ids List IDs of the file requests to delete. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSDeleteFileRequestsResult` object on -/// success or a `DBFILEREQUESTSDeleteFileRequestError` object on failure. -/// -- (DBRpcTask *)delete_: - (NSArray *)ids; - -/// -/// Delete all closed file requests owned by this user. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` -/// object on success or a `DBFILEREQUESTSDeleteAllClosedFileRequestsError` object on failure. -/// -- (DBRpcTask *) - deleteAllClosed; - -/// -/// Returns the specified file request. -/// -/// @param id_ The ID of the file request to retrieve. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSGetFileRequestError` object on failure. -/// -- (DBRpcTask *)get:(NSString *)id_; - -/// -/// Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return -/// file requests with destinations in the app folder. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsResult` object on -/// success or a `DBFILEREQUESTSListFileRequestsError` object on failure. -/// -- (DBRpcTask *)list; - -/// -/// Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return -/// file requests with destinations in the app folder. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsV2Result` object on -/// success or a `DBFILEREQUESTSListFileRequestsError` object on failure. -/// -- (DBRpcTask *)listV2; - -/// -/// Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return -/// file requests with destinations in the app folder. -/// -/// @param limit The maximum number of file requests that should be returned per request. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsV2Result` object on -/// success or a `DBFILEREQUESTSListFileRequestsError` object on failure. -/// -- (DBRpcTask *)listV2: - (nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `list`, use this to paginate through all file requests. The cursor must come -/// from a previous call to `list` or `listContinue`. -/// -/// @param cursor The cursor returned by the previous API call specified in the endpoint description. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsV2Result` object on -/// success or a `DBFILEREQUESTSListFileRequestsContinueError` object on failure. -/// -- (DBRpcTask *)listContinue: - (NSString *)cursor; - -/// -/// Update a file request. -/// -/// @param id_ The ID of the file request to update. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSUpdateFileRequestError` object on failure. -/// -- (DBRpcTask *)update:(NSString *)id_; - -/// -/// Update a file request. -/// -/// @param id_ The ID of the file request to update. -/// @param title The new title of the file request. Must not be empty. -/// @param destination The new path of the folder in the Dropbox where uploaded files will be sent. For apps with the -/// app folder permission, this will be relative to the app folder. -/// @param deadline The new deadline for the file request. Deadlines can only be set by Professional and Business -/// accounts. -/// @param open Whether to set this file request as open or closed. -/// @param description_ The description of the file request. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSUpdateFileRequestError` object on failure. -/// -- (DBRpcTask *) - update:(NSString *)id_ - title:(nullable NSString *)title - destination:(nullable NSString *)destination - deadline:(nullable DBFILEREQUESTSUpdateFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAddTagArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAddTagArg.h deleted file mode 100644 index 998acd2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAddTagArg.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESAddTagArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTagArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAddTagArg : NSObject - -#pragma mark - Instance fields - -/// Path to the item to be tagged. -@property (nonatomic, readonly, copy) NSString *path; - -/// The value of the tag to add. Will be automatically converted to lowercase -/// letters. -@property (nonatomic, readonly, copy) NSString *tagText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path to the item to be tagged. -/// @param tagText The value of the tag to add. Will be automatically converted -/// to lowercase letters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path tagText:(NSString *)tagText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddTagArg` struct. -/// -@interface DBFILESAddTagArgSerializer : NSObject - -/// -/// Serializes `DBFILESAddTagArg` instances. -/// -/// @param instance An instance of the `DBFILESAddTagArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAddTagArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAddTagArg *)instance; - -/// -/// Deserializes `DBFILESAddTagArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAddTagArg` API object. -/// -/// @return An instantiation of the `DBFILESAddTagArg` object. -/// -+ (DBFILESAddTagArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAddTagError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAddTagError.h deleted file mode 100644 index 87d8fad3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAddTagError.h +++ /dev/null @@ -1,144 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESAddTagError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTagError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAddTagError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESAddTagErrorTag` enum type represents the possible tag states -/// with which the `DBFILESAddTagError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESAddTagErrorTag) { - /// (no description). - DBFILESAddTagErrorPath, - - /// (no description). - DBFILESAddTagErrorOther, - - /// The item already has the maximum supported number of tags. - DBFILESAddTagErrorTooManyTags, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESAddTagErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "too_many_tags". -/// -/// Description of the "too_many_tags" tag state: The item already has the -/// maximum supported number of tags. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyTags; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "too_many_tags". -/// -/// @return Whether the union's current tag state has value "too_many_tags". -/// -- (BOOL)isTooManyTags; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESAddTagError` union. -/// -@interface DBFILESAddTagErrorSerializer : NSObject - -/// -/// Serializes `DBFILESAddTagError` instances. -/// -/// @param instance An instance of the `DBFILESAddTagError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAddTagError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAddTagError *)instance; - -/// -/// Deserializes `DBFILESAddTagError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAddTagError` API object. -/// -/// @return An instantiation of the `DBFILESAddTagError` object. -/// -+ (DBFILESAddTagError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAlphaGetMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAlphaGetMetadataArg.h deleted file mode 100644 index eb0d46ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAlphaGetMetadataArg.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESGetMetadataArg.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILESAlphaGetMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlphaGetMetadataArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAlphaGetMetadataArg : DBFILESGetMetadataArg - -#pragma mark - Instance fields - -/// If set to a valid list of template IDs, `propertyGroups` in -/// `DBFILESFileMetadata` is set for files with custom properties. -@property (nonatomic, readonly, nullable) NSArray *includePropertyTemplates; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of a file or folder on Dropbox. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set -/// for photo and video. -/// @param includeDeleted If true, DeletedMetadata will be returned for deleted -/// file or folder, otherwise `notFound` in `DBFILESLookupError` will be -/// returned. -/// @param includeHasExplicitSharedMembers If true, the results will include a -/// flag for each file indicating whether or not that file has any explicit -/// members. -/// @param includePropertyGroups If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set if there exists property -/// data associated with the file and each of the listed templates. -/// @param includePropertyTemplates If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set for files with custom -/// properties. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includePropertyTemplates:(nullable NSArray *)includePropertyTemplates; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of a file or folder on Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AlphaGetMetadataArg` struct. -/// -@interface DBFILESAlphaGetMetadataArgSerializer : NSObject - -/// -/// Serializes `DBFILESAlphaGetMetadataArg` instances. -/// -/// @param instance An instance of the `DBFILESAlphaGetMetadataArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAlphaGetMetadataArg *)instance; - -/// -/// Deserializes `DBFILESAlphaGetMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataArg` API object. -/// -/// @return An instantiation of the `DBFILESAlphaGetMetadataArg` object. -/// -+ (DBFILESAlphaGetMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAlphaGetMetadataError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAlphaGetMetadataError.h deleted file mode 100644 index ddb5910d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAlphaGetMetadataError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILESAlphaGetMetadataError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlphaGetMetadataError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAlphaGetMetadataError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESAlphaGetMetadataErrorTag` enum type represents the possible tag -/// states with which the `DBFILESAlphaGetMetadataError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESAlphaGetMetadataErrorTag) { - /// (no description). - DBFILESAlphaGetMetadataErrorPath, - - /// (no description). - DBFILESAlphaGetMetadataErrorPropertiesError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESAlphaGetMetadataErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// (no description). @note Ensure the `isPropertiesError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertiesError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "properties_error". -/// -/// @param propertiesError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertiesError:(DBFILEPROPERTIESLookUpPropertiesError *)propertiesError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "properties_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertiesError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "properties_error". -/// -- (BOOL)isPropertiesError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESAlphaGetMetadataError` union. -/// -@interface DBFILESAlphaGetMetadataErrorSerializer : NSObject - -/// -/// Serializes `DBFILESAlphaGetMetadataError` instances. -/// -/// @param instance An instance of the `DBFILESAlphaGetMetadataError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAlphaGetMetadataError *)instance; - -/// -/// Deserializes `DBFILESAlphaGetMetadataError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataError` API object. -/// -/// @return An instantiation of the `DBFILESAlphaGetMetadataError` object. -/// -+ (DBFILESAlphaGetMetadataError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAppAuthRoutes.h deleted file mode 100644 index d81d5a95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESAppAuthRoutes.h +++ /dev/null @@ -1,436 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCPollError; -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILESAddTagError; -@class DBFILESAlphaGetMetadataError; -@class DBFILESBaseTagError; -@class DBFILESCommitInfo; -@class DBFILESCreateFolderBatchError; -@class DBFILESCreateFolderBatchJobStatus; -@class DBFILESCreateFolderBatchLaunch; -@class DBFILESCreateFolderBatchResult; -@class DBFILESCreateFolderError; -@class DBFILESCreateFolderResult; -@class DBFILESDeleteArg; -@class DBFILESDeleteBatchError; -@class DBFILESDeleteBatchJobStatus; -@class DBFILESDeleteBatchLaunch; -@class DBFILESDeleteBatchResult; -@class DBFILESDeleteError; -@class DBFILESDeleteResult; -@class DBFILESDownloadError; -@class DBFILESDownloadZipError; -@class DBFILESDownloadZipResult; -@class DBFILESExportError; -@class DBFILESExportInfo; -@class DBFILESExportMetadata; -@class DBFILESExportResult; -@class DBFILESFileCategory; -@class DBFILESFileLockMetadata; -@class DBFILESFileMetadata; -@class DBFILESFileSharingInfo; -@class DBFILESFileStatus; -@class DBFILESFolderMetadata; -@class DBFILESFolderSharingInfo; -@class DBFILESGetCopyReferenceError; -@class DBFILESGetCopyReferenceResult; -@class DBFILESGetMetadataError; -@class DBFILESGetTagsResult; -@class DBFILESGetTemporaryLinkError; -@class DBFILESGetTemporaryLinkResult; -@class DBFILESGetTemporaryUploadLinkResult; -@class DBFILESGetThumbnailBatchError; -@class DBFILESGetThumbnailBatchResult; -@class DBFILESGetThumbnailBatchResultEntry; -@class DBFILESImportFormat; -@class DBFILESListFolderContinueError; -@class DBFILESListFolderError; -@class DBFILESListFolderGetLatestCursorResult; -@class DBFILESListFolderLongpollError; -@class DBFILESListFolderLongpollResult; -@class DBFILESListFolderResult; -@class DBFILESListRevisionsError; -@class DBFILESListRevisionsMode; -@class DBFILESListRevisionsResult; -@class DBFILESLockConflictError; -@class DBFILESLockFileArg; -@class DBFILESLockFileBatchResult; -@class DBFILESLockFileError; -@class DBFILESLockFileResultEntry; -@class DBFILESLookupError; -@class DBFILESMediaInfo; -@class DBFILESMetadata; -@class DBFILESMinimalFileLinkMetadata; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESPaperCreateError; -@class DBFILESPaperCreateResult; -@class DBFILESPaperDocUpdatePolicy; -@class DBFILESPaperUpdateError; -@class DBFILESPaperUpdateResult; -@class DBFILESPathOrLink; -@class DBFILESPathToTags; -@class DBFILESPreviewError; -@class DBFILESPreviewResult; -@class DBFILESRelocationBatchError; -@class DBFILESRelocationBatchJobStatus; -@class DBFILESRelocationBatchLaunch; -@class DBFILESRelocationBatchResult; -@class DBFILESRelocationBatchV2JobStatus; -@class DBFILESRelocationBatchV2Launch; -@class DBFILESRelocationBatchV2Result; -@class DBFILESRelocationError; -@class DBFILESRelocationPath; -@class DBFILESRelocationResult; -@class DBFILESRemoveTagError; -@class DBFILESRestoreError; -@class DBFILESSaveCopyReferenceError; -@class DBFILESSaveCopyReferenceResult; -@class DBFILESSaveUrlError; -@class DBFILESSaveUrlJobStatus; -@class DBFILESSaveUrlResult; -@class DBFILESSearchError; -@class DBFILESSearchMatch; -@class DBFILESSearchMatchFieldOptions; -@class DBFILESSearchMatchV2; -@class DBFILESSearchMode; -@class DBFILESSearchOptions; -@class DBFILESSearchOrderBy; -@class DBFILESSearchResult; -@class DBFILESSearchV2Result; -@class DBFILESSharedLink; -@class DBFILESSharedLinkFileInfo; -@class DBFILESSymlinkInfo; -@class DBFILESThumbnailArg; -@class DBFILESThumbnailError; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; -@class DBFILESThumbnailV2Error; -@class DBFILESUnlockFileArg; -@class DBFILESUploadError; -@class DBFILESUploadSessionAppendError; -@class DBFILESUploadSessionCursor; -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchLaunch; -@class DBFILESUploadSessionFinishBatchResult; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBFILESUploadSessionFinishError; -@class DBFILESUploadSessionLookupError; -@class DBFILESUploadSessionOffsetError; -@class DBFILESUploadSessionStartBatchResult; -@class DBFILESUploadSessionStartError; -@class DBFILESUploadSessionStartResult; -@class DBFILESUploadSessionType; -@class DBFILESUploadWriteFailed; -@class DBFILESWriteError; -@class DBFILESWriteMode; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Files` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILESAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILESAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailV2Data: - (DBFILESPathOrLink *)resource; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *)listFolder:(NSString *)path; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied recursively to all subfolders and the response -/// will contain contents of all subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. This parameter -/// will no longer have an effect starting December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files and folders that used to exist but were -/// deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includeMountedFolders If true, the results will include entries under mounted folders which includes app -/// folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This is an approximate number and there can -/// be slightly more entries returned in some cases. -/// @param sharedLink A shared link to list the contents of. If the link is password-protected, the password must be -/// provided. If this field is present, `path` in `DBFILESListFolderArg` will be relative to root of the shared link. -/// Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not downloadable, i.e. Google Docs. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *) - listFolder:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// Once a cursor has been retrieved from `listFolder`, use this to paginate through all files and retrieve updates to -/// the folder, following the same rules as documented for `listFolder`. -/// -/// @param cursor The cursor returned by your last call to `listFolder` or `listFolderContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderContinueError` object on failure. -/// -- (DBRpcTask *)listFolderContinue:(NSString *)cursor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESBaseTagError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESBaseTagError.h deleted file mode 100644 index ee4a88ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESBaseTagError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESBaseTagError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BaseTagError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESBaseTagError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESBaseTagErrorTag` enum type represents the possible tag states -/// with which the `DBFILESBaseTagError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESBaseTagErrorTag) { - /// (no description). - DBFILESBaseTagErrorPath, - - /// (no description). - DBFILESBaseTagErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESBaseTagErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESBaseTagError` union. -/// -@interface DBFILESBaseTagErrorSerializer : NSObject - -/// -/// Serializes `DBFILESBaseTagError` instances. -/// -/// @param instance An instance of the `DBFILESBaseTagError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESBaseTagError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESBaseTagError *)instance; - -/// -/// Deserializes `DBFILESBaseTagError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESBaseTagError` API object. -/// -/// @return An instantiation of the `DBFILESBaseTagError` object. -/// -+ (DBFILESBaseTagError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCommitInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCommitInfo.h deleted file mode 100644 index e03288dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCommitInfo.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESCommitInfo; -@class DBFILESWriteMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CommitInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCommitInfo : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to save the file. -@property (nonatomic, readonly, copy) NSString *path; - -/// Selects what to do if the file already exists. -@property (nonatomic, readonly) DBFILESWriteMode *mode; - -/// If there's a conflict, as determined by mode, have the Dropbox server try to -/// autorename the file to avoid conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -/// The value to store as the clientModified timestamp. Dropbox automatically -/// records the time at which the file was written to the Dropbox servers. It -/// can also record an additional timestamp, provided by Dropbox desktop -/// clients, mobile clients, and API apps of when the file was actually created -/// or modified. -@property (nonatomic, readonly, nullable) NSDate *clientModified; - -/// Normally, users are made aware of any file modifications in their Dropbox -/// account via notifications in the client software. If true, this tells the -/// clients that this modification shouldn't result in a user notification. -@property (nonatomic, readonly) NSNumber *mute; - -/// List of custom properties to add to file. -@property (nonatomic, readonly, nullable) NSArray *propertyGroups; - -/// Be more strict about how each WriteMode detects conflict. For example, -/// always return a conflict error when mode = `update` in `DBFILESWriteMode` -/// and the given "rev" doesn't match the existing file's "rev", even if the -/// existing file has been deleted. This also forces a conflict even when the -/// target path refers to a file with identical contents. -@property (nonatomic, readonly) NSNumber *strictConflict; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to save the file. -/// @param mode Selects what to do if the file already exists. -/// @param autorename If there's a conflict, as determined by mode, have the -/// Dropbox server try to autorename the file to avoid conflict. -/// @param clientModified The value to store as the clientModified timestamp. -/// Dropbox automatically records the time at which the file was written to the -/// Dropbox servers. It can also record an additional timestamp, provided by -/// Dropbox desktop clients, mobile clients, and API apps of when the file was -/// actually created or modified. -/// @param mute Normally, users are made aware of any file modifications in -/// their Dropbox account via notifications in the client software. If true, -/// this tells the clients that this modification shouldn't result in a user -/// notification. -/// @param propertyGroups List of custom properties to add to file. -/// @param strictConflict Be more strict about how each WriteMode detects -/// conflict. For example, always return a conflict error when mode = `update` -/// in `DBFILESWriteMode` and the given "rev" doesn't match the existing file's -/// "rev", even if the existing file has been deleted. This also forces a -/// conflict even when the target path refers to a file with identical contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to save the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CommitInfo` struct. -/// -@interface DBFILESCommitInfoSerializer : NSObject - -/// -/// Serializes `DBFILESCommitInfo` instances. -/// -/// @param instance An instance of the `DBFILESCommitInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCommitInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCommitInfo *)instance; - -/// -/// Deserializes `DBFILESCommitInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCommitInfo` API object. -/// -/// @return An instantiation of the `DBFILESCommitInfo` object. -/// -+ (DBFILESCommitInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESContentSyncSetting.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESContentSyncSetting.h deleted file mode 100644 index f6721ed5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESContentSyncSetting.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESContentSyncSetting; -@class DBFILESSyncSetting; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentSyncSetting` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESContentSyncSetting : NSObject - -#pragma mark - Instance fields - -/// Id of the item this setting is applied to. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Setting for this item. -@property (nonatomic, readonly) DBFILESSyncSetting *syncSetting; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ Id of the item this setting is applied to. -/// @param syncSetting Setting for this item. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ syncSetting:(DBFILESSyncSetting *)syncSetting; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentSyncSetting` struct. -/// -@interface DBFILESContentSyncSettingSerializer : NSObject - -/// -/// Serializes `DBFILESContentSyncSetting` instances. -/// -/// @param instance An instance of the `DBFILESContentSyncSetting` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESContentSyncSetting` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESContentSyncSetting *)instance; - -/// -/// Deserializes `DBFILESContentSyncSetting` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESContentSyncSetting` API object. -/// -/// @return An instantiation of the `DBFILESContentSyncSetting` object. -/// -+ (DBFILESContentSyncSetting *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESContentSyncSettingArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESContentSyncSettingArg.h deleted file mode 100644 index a23eb7bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESContentSyncSettingArg.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESContentSyncSettingArg; -@class DBFILESSyncSettingArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentSyncSettingArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESContentSyncSettingArg : NSObject - -#pragma mark - Instance fields - -/// Id of the item this setting is applied to. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Setting for this item. -@property (nonatomic, readonly) DBFILESSyncSettingArg *syncSetting; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ Id of the item this setting is applied to. -/// @param syncSetting Setting for this item. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ syncSetting:(DBFILESSyncSettingArg *)syncSetting; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentSyncSettingArg` struct. -/// -@interface DBFILESContentSyncSettingArgSerializer : NSObject - -/// -/// Serializes `DBFILESContentSyncSettingArg` instances. -/// -/// @param instance An instance of the `DBFILESContentSyncSettingArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESContentSyncSettingArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESContentSyncSettingArg *)instance; - -/// -/// Deserializes `DBFILESContentSyncSettingArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESContentSyncSettingArg` API object. -/// -/// @return An instantiation of the `DBFILESContentSyncSettingArg` object. -/// -+ (DBFILESContentSyncSettingArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderArg.h deleted file mode 100644 index 7ae9a864..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderArg.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to create. -@property (nonatomic, readonly, copy) NSString *path; - -/// If there's a conflict, have the Dropbox server try to autorename the folder -/// to avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to create. -/// @param autorename If there's a conflict, have the Dropbox server try to -/// autorename the folder to avoid the conflict. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path autorename:(nullable NSNumber *)autorename; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to create. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderArg` struct. -/// -@interface DBFILESCreateFolderArgSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderArg` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderArg *)instance; - -/// -/// Deserializes `DBFILESCreateFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderArg` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderArg` object. -/// -+ (DBFILESCreateFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchArg.h deleted file mode 100644 index f005736b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchArg.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of paths to be created in the user's Dropbox. Duplicate path arguments -/// in the batch are considered only once. -@property (nonatomic, readonly) NSArray *paths; - -/// If there's a conflict, have the Dropbox server try to autorename the folder -/// to avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -/// Whether to force the create to happen asynchronously. -@property (nonatomic, readonly) NSNumber *forceAsync; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate -/// path arguments in the batch are considered only once. -/// @param autorename If there's a conflict, have the Dropbox server try to -/// autorename the folder to avoid the conflict. -/// @param forceAsync Whether to force the create to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaths:(NSArray *)paths - autorename:(nullable NSNumber *)autorename - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate -/// path arguments in the batch are considered only once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaths:(NSArray *)paths; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderBatchArg` struct. -/// -@interface DBFILESCreateFolderBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchArg *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchArg` object. -/// -+ (DBFILESCreateFolderBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchError.h deleted file mode 100644 index 22b2dac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESCreateFolderBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchErrorTag) { - /// The operation would involve too many files or folders. - DBFILESCreateFolderBatchErrorTooManyFiles, - - /// (no description). - DBFILESCreateFolderBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// too many files or folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchError` union. -/// -@interface DBFILESCreateFolderBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchError` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchError *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchError` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchError` object. -/// -+ (DBFILESCreateFolderBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchJobStatus.h deleted file mode 100644 index 3c674a4a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchJobStatus.h +++ /dev/null @@ -1,178 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchError; -@class DBFILESCreateFolderBatchJobStatus; -@class DBFILESCreateFolderBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchJobStatusTag` enum type represents the possible -/// tag states with which the `DBFILESCreateFolderBatchJobStatus` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESCreateFolderBatchJobStatusInProgress, - - /// The batch create folder has finished. - DBFILESCreateFolderBatchJobStatusComplete, - - /// The batch create folder has failed. - DBFILESCreateFolderBatchJobStatusFailed, - - /// (no description). - DBFILESCreateFolderBatchJobStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchJobStatusTag tag; - -/// The batch create folder has finished. @note Ensure the `isComplete` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderBatchResult *complete; - -/// The batch create folder has failed. @note Ensure the `isFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderBatchError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The batch create folder has -/// finished. -/// -/// @param complete The batch create folder has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESCreateFolderBatchResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The batch create folder has failed. -/// -/// @param failed The batch create folder has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESCreateFolderBatchError *)failed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchJobStatus` union. -/// -@interface DBFILESCreateFolderBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchJobStatus` object. -/// -+ (DBFILESCreateFolderBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchLaunch.h deleted file mode 100644 index 31ad4103..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchLaunch.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchLaunch; -@class DBFILESCreateFolderBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchLaunch` union. -/// -/// Result returned by `createFolderBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchLaunchTag` enum type represents the possible -/// tag states with which the `DBFILESCreateFolderBatchLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESCreateFolderBatchLaunchAsyncJobId, - - /// (no description). - DBFILESCreateFolderBatchLaunchComplete, - - /// (no description). - DBFILESCreateFolderBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESCreateFolderBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchLaunch` union. -/// -@interface DBFILESCreateFolderBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchLaunch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchLaunch` object. -/// -+ (DBFILESCreateFolderBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchResult.h deleted file mode 100644 index b05d68be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchResult; -@class DBFILESCreateFolderBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each entry in `paths` in `DBFILESCreateFolderBatchArg` will appear at the -/// same position inside `entries` in `DBFILESCreateFolderBatchResult`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in `paths` in `DBFILESCreateFolderBatchArg` will -/// appear at the same position inside `entries` in -/// `DBFILESCreateFolderBatchResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderBatchResult` struct. -/// -@interface DBFILESCreateFolderBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchResult *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchResult` object. -/// -+ (DBFILESCreateFolderBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchResultEntry.h deleted file mode 100644 index 4b3713e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderBatchResultEntry.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchResultEntry; -@class DBFILESCreateFolderEntryError; -@class DBFILESCreateFolderEntryResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchResultEntryTag` enum type represents the -/// possible tag states with which the `DBFILESCreateFolderBatchResultEntry` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchResultEntryTag) { - /// (no description). - DBFILESCreateFolderBatchResultEntrySuccess, - - /// (no description). - DBFILESCreateFolderBatchResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderEntryResult *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderEntryError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESCreateFolderEntryResult *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESCreateFolderEntryError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchResultEntry` union. -/// -@interface DBFILESCreateFolderBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchResultEntry` -/// object. -/// -+ (DBFILESCreateFolderBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderEntryError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderEntryError.h deleted file mode 100644 index bff1f97a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderEntryError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderEntryError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderEntryError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderEntryError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderEntryErrorTag` enum type represents the possible tag -/// states with which the `DBFILESCreateFolderEntryError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderEntryErrorTag) { - /// (no description). - DBFILESCreateFolderEntryErrorPath, - - /// (no description). - DBFILESCreateFolderEntryErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderEntryErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderEntryError` union. -/// -@interface DBFILESCreateFolderEntryErrorSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderEntryError` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderEntryError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderEntryError *)instance; - -/// -/// Deserializes `DBFILESCreateFolderEntryError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryError` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderEntryError` object. -/// -+ (DBFILESCreateFolderEntryError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderEntryResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderEntryResult.h deleted file mode 100644 index 0dfc6e32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderEntryResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderEntryResult; -@class DBFILESFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderEntryResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderEntryResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the created folder. -@property (nonatomic, readonly) DBFILESFolderMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the created folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFolderMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderEntryResult` struct. -/// -@interface DBFILESCreateFolderEntryResultSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderEntryResult` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderEntryResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderEntryResult *)instance; - -/// -/// Deserializes `DBFILESCreateFolderEntryResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryResult` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderEntryResult` object. -/// -+ (DBFILESCreateFolderEntryResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderError.h deleted file mode 100644 index 129fee11..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderError.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderErrorTag` enum type represents the possible tag -/// states with which the `DBFILESCreateFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderErrorTag) { - /// (no description). - DBFILESCreateFolderErrorPath, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderError` union. -/// -@interface DBFILESCreateFolderErrorSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderError` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderError *)instance; - -/// -/// Deserializes `DBFILESCreateFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderError` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderError` object. -/// -+ (DBFILESCreateFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderResult.h deleted file mode 100644 index f828e8ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESCreateFolderResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderResult; -@class DBFILESFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Metadata of the created folder. -@property (nonatomic, readonly) DBFILESFolderMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the created folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFolderMetadata *)metadata; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderResult` struct. -/// -@interface DBFILESCreateFolderResultSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderResult` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderResult *)instance; - -/// -/// Deserializes `DBFILESCreateFolderResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderResult` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderResult` object. -/// -+ (DBFILESCreateFolderResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteArg.h deleted file mode 100644 index b9b16a46..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteArg.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to delete. -@property (nonatomic, readonly, copy) NSString *path; - -/// Perform delete if given "rev" matches the existing file's latest "rev". This -/// field does not support deleting a folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentRev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's -/// latest "rev". This field does not support deleting a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path parentRev:(nullable NSString *)parentRev; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteArg` struct. -/// -@interface DBFILESDeleteArgSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteArg` instances. -/// -/// @param instance An instance of the `DBFILESDeleteArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteArg *)instance; - -/// -/// Deserializes `DBFILESDeleteArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteArg` API object. -/// -/// @return An instantiation of the `DBFILESDeleteArg` object. -/// -+ (DBFILESDeleteArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchArg.h deleted file mode 100644 index cda516a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteArg; -@class DBFILESDeleteBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteBatchArg` struct. -/// -@interface DBFILESDeleteBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchArg *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchArg` object. -/// -+ (DBFILESDeleteBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchError.h deleted file mode 100644 index 7709a612..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchErrorTag) { - /// Use `tooManyWriteOperations` in `DBFILESDeleteError`. `deleteBatch` now - /// provides smaller granularity about which entry has failed because of - /// this. - DBFILESDeleteBatchErrorTooManyWriteOperations, - - /// (no description). - DBFILESDeleteBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: Use -/// `tooManyWriteOperations` in `DBFILESDeleteError`. `deleteBatch` now provides -/// smaller granularity about which entry has failed because of this. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchError` union. -/// -@interface DBFILESDeleteBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchError` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchError *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchError` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchError` object. -/// -+ (DBFILESDeleteBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchJobStatus.h deleted file mode 100644 index decedeeb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchJobStatus.h +++ /dev/null @@ -1,175 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchError; -@class DBFILESDeleteBatchJobStatus; -@class DBFILESDeleteBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchJobStatusTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESDeleteBatchJobStatusInProgress, - - /// The batch delete has finished. - DBFILESDeleteBatchJobStatusComplete, - - /// The batch delete has failed. - DBFILESDeleteBatchJobStatusFailed, - - /// (no description). - DBFILESDeleteBatchJobStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchJobStatusTag tag; - -/// The batch delete has finished. @note Ensure the `isComplete` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchResult *complete; - -/// The batch delete has failed. @note Ensure the `isFailed` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The batch delete has finished. -/// -/// @param complete The batch delete has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESDeleteBatchResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The batch delete has failed. -/// -/// @param failed The batch delete has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESDeleteBatchError *)failed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchJobStatus` union. -/// -@interface DBFILESDeleteBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchJobStatus` object. -/// -+ (DBFILESDeleteBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchLaunch.h deleted file mode 100644 index 1a406b6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchLaunch.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchLaunch; -@class DBFILESDeleteBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchLaunch` union. -/// -/// Result returned by `deleteBatch` that may either launch an asynchronous job -/// or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchLaunchTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESDeleteBatchLaunchAsyncJobId, - - /// (no description). - DBFILESDeleteBatchLaunchComplete, - - /// (no description). - DBFILESDeleteBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESDeleteBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchLaunch` union. -/// -@interface DBFILESDeleteBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchLaunch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchLaunch` object. -/// -+ (DBFILESDeleteBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResult.h deleted file mode 100644 index 8464350f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchResult; -@class DBFILESDeleteBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each entry in `entries` in `DBFILESDeleteBatchArg` will appear at the same -/// position inside `entries` in `DBFILESDeleteBatchResult`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in `entries` in `DBFILESDeleteBatchArg` will -/// appear at the same position inside `entries` in `DBFILESDeleteBatchResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteBatchResult` struct. -/// -@interface DBFILESDeleteBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchResult *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchResult` object. -/// -+ (DBFILESDeleteBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResultData.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResultData.h deleted file mode 100644 index ab36ef2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResultData.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchResultData; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchResultData` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchResultData : NSObject - -#pragma mark - Instance fields - -/// Metadata of the deleted object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the deleted object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteBatchResultData` struct. -/// -@interface DBFILESDeleteBatchResultDataSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchResultData` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchResultData` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultData` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchResultData *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchResultData` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultData` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchResultData` object. -/// -+ (DBFILESDeleteBatchResultData *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResultEntry.h deleted file mode 100644 index 217b2450..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteBatchResultEntry.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchResultData; -@class DBFILESDeleteBatchResultEntry; -@class DBFILESDeleteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchResultEntryTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchResultEntry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchResultEntryTag) { - /// (no description). - DBFILESDeleteBatchResultEntrySuccess, - - /// (no description). - DBFILESDeleteBatchResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchResultData *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESDeleteBatchResultData *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESDeleteError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchResultEntry` union. -/// -@interface DBFILESDeleteBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchResultEntry` object. -/// -+ (DBFILESDeleteBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteError.h deleted file mode 100644 index 4caff4db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteError.h +++ /dev/null @@ -1,194 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteError; -@class DBFILESLookupError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteErrorTag` enum type represents the possible tag states -/// with which the `DBFILESDeleteError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteErrorTag) { - /// (no description). - DBFILESDeleteErrorPathLookup, - - /// (no description). - DBFILESDeleteErrorPathWrite, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESDeleteErrorTooManyWriteOperations, - - /// There are too many files in one request. Please retry with fewer files. - DBFILESDeleteErrorTooManyFiles, - - /// (no description). - DBFILESDeleteErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteErrorTag tag; - -/// (no description). @note Ensure the `isPathLookup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *pathLookup; - -/// (no description). @note Ensure the `isPathWrite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *pathWrite; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path_lookup". -/// -/// @param pathLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathLookup:(DBFILESLookupError *)pathLookup; - -/// -/// Initializes union class with tag state of "path_write". -/// -/// @param pathWrite (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathWrite:(DBFILESWriteError *)pathWrite; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: There are too many files in -/// one request. Please retry with fewer files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_lookup". -/// -- (BOOL)isPathLookup; - -/// -/// Retrieves whether the union's current tag state has value "path_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_write". -/// -- (BOOL)isPathWrite; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteError` union. -/// -@interface DBFILESDeleteErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteError` instances. -/// -/// @param instance An instance of the `DBFILESDeleteError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteError *)instance; - -/// -/// Deserializes `DBFILESDeleteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteError` API object. -/// -/// @return An instantiation of the `DBFILESDeleteError` object. -/// -+ (DBFILESDeleteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteResult.h deleted file mode 100644 index d9bf05be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeleteResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Metadata of the deleted object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the deleted object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteResult` struct. -/// -@interface DBFILESDeleteResultSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteResult` instances. -/// -/// @param instance An instance of the `DBFILESDeleteResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteResult *)instance; - -/// -/// Deserializes `DBFILESDeleteResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteResult` API object. -/// -/// @return An instantiation of the `DBFILESDeleteResult` object. -/// -+ (DBFILESDeleteResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeletedMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeletedMetadata.h deleted file mode 100644 index 56506169..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDeletedMetadata.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDeletedMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeletedMetadata` struct. -/// -/// Indicates that there used to be a file or folder at this path, but it no -/// longer exists. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeletedMetadata : DBFILESMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeletedMetadata` struct. -/// -@interface DBFILESDeletedMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESDeletedMetadata` instances. -/// -/// @param instance An instance of the `DBFILESDeletedMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeletedMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeletedMetadata *)instance; - -/// -/// Deserializes `DBFILESDeletedMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeletedMetadata` API object. -/// -/// @return An instantiation of the `DBFILESDeletedMetadata` object. -/// -+ (DBFILESDeletedMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDimensions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDimensions.h deleted file mode 100644 index cfe0f366..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDimensions.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Dimensions` struct. -/// -/// Dimensions for a photo or video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDimensions : NSObject - -#pragma mark - Instance fields - -/// Height of the photo/video. -@property (nonatomic, readonly) NSNumber *height; - -/// Width of the photo/video. -@property (nonatomic, readonly) NSNumber *width; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param height Height of the photo/video. -/// @param width Width of the photo/video. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHeight:(NSNumber *)height width:(NSNumber *)width; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Dimensions` struct. -/// -@interface DBFILESDimensionsSerializer : NSObject - -/// -/// Serializes `DBFILESDimensions` instances. -/// -/// @param instance An instance of the `DBFILESDimensions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDimensions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDimensions *)instance; - -/// -/// Deserializes `DBFILESDimensions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDimensions` API object. -/// -/// @return An instantiation of the `DBFILESDimensions` object. -/// -+ (DBFILESDimensions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadArg.h deleted file mode 100644 index 1c8c5bd7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadArg.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadArg : NSObject - -#pragma mark - Instance fields - -/// The path of the file to download. -@property (nonatomic, readonly, copy) NSString *path; - -/// Please specify revision in path instead. -@property (nonatomic, readonly, copy, nullable) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path rev:(nullable NSString *)rev; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of the file to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DownloadArg` struct. -/// -@interface DBFILESDownloadArgSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadArg` instances. -/// -/// @param instance An instance of the `DBFILESDownloadArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadArg *)instance; - -/// -/// Deserializes `DBFILESDownloadArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadArg` API object. -/// -/// @return An instantiation of the `DBFILESDownloadArg` object. -/// -+ (DBFILESDownloadArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadError.h deleted file mode 100644 index 27893ae4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadError.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDownloadErrorTag` enum type represents the possible tag states -/// with which the `DBFILESDownloadError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDownloadErrorTag) { - /// (no description). - DBFILESDownloadErrorPath, - - /// This file type cannot be downloaded directly; use `export` instead. - DBFILESDownloadErrorUnsupportedFile, - - /// (no description). - DBFILESDownloadErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDownloadErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_file". -/// -/// Description of the "unsupported_file" tag state: This file type cannot be -/// downloaded directly; use `export` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFile; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_file". -/// -/// @return Whether the union's current tag state has value "unsupported_file". -/// -- (BOOL)isUnsupportedFile; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDownloadError` union. -/// -@interface DBFILESDownloadErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadError` instances. -/// -/// @param instance An instance of the `DBFILESDownloadError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadError *)instance; - -/// -/// Deserializes `DBFILESDownloadError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadError` API object. -/// -/// @return An instantiation of the `DBFILESDownloadError` object. -/// -+ (DBFILESDownloadError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipArg.h deleted file mode 100644 index 4d23f063..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadZipArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadZipArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadZipArg : NSObject - -#pragma mark - Instance fields - -/// The path of the folder to download. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the folder to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DownloadZipArg` struct. -/// -@interface DBFILESDownloadZipArgSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadZipArg` instances. -/// -/// @param instance An instance of the `DBFILESDownloadZipArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadZipArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadZipArg *)instance; - -/// -/// Deserializes `DBFILESDownloadZipArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadZipArg` API object. -/// -/// @return An instantiation of the `DBFILESDownloadZipArg` object. -/// -+ (DBFILESDownloadZipArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipError.h deleted file mode 100644 index 8646ac78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipError.h +++ /dev/null @@ -1,164 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadZipError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadZipError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadZipError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDownloadZipErrorTag` enum type represents the possible tag -/// states with which the `DBFILESDownloadZipError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDownloadZipErrorTag) { - /// (no description). - DBFILESDownloadZipErrorPath, - - /// The folder or a file is too large to download. - DBFILESDownloadZipErrorTooLarge, - - /// The folder has too many files to download. - DBFILESDownloadZipErrorTooManyFiles, - - /// (no description). - DBFILESDownloadZipErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDownloadZipErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "too_large". -/// -/// Description of the "too_large" tag state: The folder or a file is too large -/// to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooLarge; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The folder has too many files -/// to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "too_large". -/// -/// @return Whether the union's current tag state has value "too_large". -/// -- (BOOL)isTooLarge; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDownloadZipError` union. -/// -@interface DBFILESDownloadZipErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadZipError` instances. -/// -/// @param instance An instance of the `DBFILESDownloadZipError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadZipError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadZipError *)instance; - -/// -/// Deserializes `DBFILESDownloadZipError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadZipError` API object. -/// -/// @return An instantiation of the `DBFILESDownloadZipError` object. -/// -+ (DBFILESDownloadZipError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipResult.h deleted file mode 100644 index 333d6469..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESDownloadZipResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadZipResult; -@class DBFILESFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadZipResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadZipResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBFILESFolderMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFolderMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DownloadZipResult` struct. -/// -@interface DBFILESDownloadZipResultSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadZipResult` instances. -/// -/// @param instance An instance of the `DBFILESDownloadZipResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadZipResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadZipResult *)instance; - -/// -/// Deserializes `DBFILESDownloadZipResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadZipResult` API object. -/// -/// @return An instantiation of the `DBFILESDownloadZipResult` object. -/// -+ (DBFILESDownloadZipResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportArg.h deleted file mode 100644 index d1176bca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportArg : NSObject - -#pragma mark - Instance fields - -/// The path of the file to be exported. -@property (nonatomic, readonly, copy) NSString *path; - -/// The file format to which the file should be exported. This must be one of -/// the formats listed in the file's export_options returned by `getMetadata`. -/// If none is specified, the default format (specified in export_as in file -/// metadata) will be used. -@property (nonatomic, readonly, copy, nullable) NSString *exportFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. -/// This must be one of the formats listed in the file's export_options returned -/// by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path exportFormat:(nullable NSString *)exportFormat; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of the file to be exported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportArg` struct. -/// -@interface DBFILESExportArgSerializer : NSObject - -/// -/// Serializes `DBFILESExportArg` instances. -/// -/// @param instance An instance of the `DBFILESExportArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportArg *)instance; - -/// -/// Deserializes `DBFILESExportArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportArg` API object. -/// -/// @return An instantiation of the `DBFILESExportArg` object. -/// -+ (DBFILESExportArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportError.h deleted file mode 100644 index 72b386cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESExportErrorTag` enum type represents the possible tag states -/// with which the `DBFILESExportError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESExportErrorTag) { - /// (no description). - DBFILESExportErrorPath, - - /// This file type cannot be exported. Use `download` instead. - DBFILESExportErrorNonExportable, - - /// The specified export format is not a valid option for this file type. - DBFILESExportErrorInvalidExportFormat, - - /// The exportable content is not yet available. Please retry later. - DBFILESExportErrorRetryError, - - /// (no description). - DBFILESExportErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESExportErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "non_exportable". -/// -/// Description of the "non_exportable" tag state: This file type cannot be -/// exported. Use `download` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNonExportable; - -/// -/// Initializes union class with tag state of "invalid_export_format". -/// -/// Description of the "invalid_export_format" tag state: The specified export -/// format is not a valid option for this file type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidExportFormat; - -/// -/// Initializes union class with tag state of "retry_error". -/// -/// Description of the "retry_error" tag state: The exportable content is not -/// yet available. Please retry later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRetryError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "non_exportable". -/// -/// @return Whether the union's current tag state has value "non_exportable". -/// -- (BOOL)isNonExportable; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_export_format". -/// -/// @return Whether the union's current tag state has value -/// "invalid_export_format". -/// -- (BOOL)isInvalidExportFormat; - -/// -/// Retrieves whether the union's current tag state has value "retry_error". -/// -/// @return Whether the union's current tag state has value "retry_error". -/// -- (BOOL)isRetryError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESExportError` union. -/// -@interface DBFILESExportErrorSerializer : NSObject - -/// -/// Serializes `DBFILESExportError` instances. -/// -/// @param instance An instance of the `DBFILESExportError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportError *)instance; - -/// -/// Deserializes `DBFILESExportError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportError` API object. -/// -/// @return An instantiation of the `DBFILESExportError` object. -/// -+ (DBFILESExportError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportInfo.h deleted file mode 100644 index 82442d13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportInfo.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportInfo` struct. -/// -/// Export information for a file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportInfo : NSObject - -#pragma mark - Instance fields - -/// Format to which the file can be exported to. -@property (nonatomic, readonly, copy, nullable) NSString *exportAs; - -/// Additional formats to which the file can be exported. These values can be -/// specified as the export_format in /files/export. -@property (nonatomic, readonly, nullable) NSArray *exportOptions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param exportAs Format to which the file can be exported to. -/// @param exportOptions Additional formats to which the file can be exported. -/// These values can be specified as the export_format in /files/export. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportAs:(nullable NSString *)exportAs - exportOptions:(nullable NSArray *)exportOptions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportInfo` struct. -/// -@interface DBFILESExportInfoSerializer : NSObject - -/// -/// Serializes `DBFILESExportInfo` instances. -/// -/// @param instance An instance of the `DBFILESExportInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportInfo *)instance; - -/// -/// Deserializes `DBFILESExportInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportInfo` API object. -/// -/// @return An instantiation of the `DBFILESExportInfo` object. -/// -+ (DBFILESExportInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportMetadata.h deleted file mode 100644 index 52d6d437..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportMetadata.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportMetadata : NSObject - -#pragma mark - Instance fields - -/// The last component of the path (including extension). This never contains a -/// slash. -@property (nonatomic, readonly, copy) NSString *name; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -/// A hash based on the exported file content. This field can be used to verify -/// data integrity. Similar to content hash. For more information see our -/// Content hash https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *exportHash; - -/// If the file is a Paper doc, this gives the latest doc revision which can be -/// used in `paperUpdate`. -@property (nonatomic, readonly, nullable) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param size The file size in bytes. -/// @param exportHash A hash based on the exported file content. This field can -/// be used to verify data integrity. Similar to content hash. For more -/// information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param paperRevision If the file is a Paper doc, this gives the latest doc -/// revision which can be used in `paperUpdate`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - size:(NSNumber *)size - exportHash:(nullable NSString *)exportHash - paperRevision:(nullable NSNumber *)paperRevision; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param size The file size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name size:(NSNumber *)size; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMetadata` struct. -/// -@interface DBFILESExportMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESExportMetadata` instances. -/// -/// @param instance An instance of the `DBFILESExportMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportMetadata *)instance; - -/// -/// Deserializes `DBFILESExportMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportMetadata` API object. -/// -/// @return An instantiation of the `DBFILESExportMetadata` object. -/// -+ (DBFILESExportMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportResult.h deleted file mode 100644 index 76bf5afe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESExportResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportMetadata; -@class DBFILESExportResult; -@class DBFILESFileMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportResult : NSObject - -#pragma mark - Instance fields - -/// Metadata for the exported version of the file. -@property (nonatomic, readonly) DBFILESExportMetadata *exportMetadata; - -/// Metadata for the original file. -@property (nonatomic, readonly) DBFILESFileMetadata *fileMetadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param exportMetadata Metadata for the exported version of the file. -/// @param fileMetadata Metadata for the original file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMetadata:(DBFILESExportMetadata *)exportMetadata - fileMetadata:(DBFILESFileMetadata *)fileMetadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportResult` struct. -/// -@interface DBFILESExportResultSerializer : NSObject - -/// -/// Serializes `DBFILESExportResult` instances. -/// -/// @param instance An instance of the `DBFILESExportResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportResult *)instance; - -/// -/// Deserializes `DBFILESExportResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportResult` API object. -/// -/// @return An instantiation of the `DBFILESExportResult` object. -/// -+ (DBFILESExportResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileCategory.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileCategory.h deleted file mode 100644 index 94a5a461..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileCategory.h +++ /dev/null @@ -1,288 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileCategory; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCategory` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileCategory : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESFileCategoryTag` enum type represents the possible tag states -/// with which the `DBFILESFileCategory` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESFileCategoryTag) { - /// jpg, png, gif, and more. - DBFILESFileCategoryImage, - - /// doc, docx, txt, and more. - DBFILESFileCategoryDocument, - - /// pdf. - DBFILESFileCategoryPdf, - - /// xlsx, xls, csv, and more. - DBFILESFileCategorySpreadsheet, - - /// ppt, pptx, key, and more. - DBFILESFileCategoryPresentation, - - /// mp3, wav, mid, and more. - DBFILESFileCategoryAudio, - - /// mov, wmv, mp4, and more. - DBFILESFileCategoryVideo, - - /// dropbox folder. - DBFILESFileCategoryFolder, - - /// dropbox paper doc. - DBFILESFileCategoryPaper, - - /// any file not in one of the categories above. - DBFILESFileCategoryOthers, - - /// (no description). - DBFILESFileCategoryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESFileCategoryTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "image". -/// -/// Description of the "image" tag state: jpg, png, gif, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImage; - -/// -/// Initializes union class with tag state of "document". -/// -/// Description of the "document" tag state: doc, docx, txt, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocument; - -/// -/// Initializes union class with tag state of "pdf". -/// -/// Description of the "pdf" tag state: pdf. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPdf; - -/// -/// Initializes union class with tag state of "spreadsheet". -/// -/// Description of the "spreadsheet" tag state: xlsx, xls, csv, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSpreadsheet; - -/// -/// Initializes union class with tag state of "presentation". -/// -/// Description of the "presentation" tag state: ppt, pptx, key, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPresentation; - -/// -/// Initializes union class with tag state of "audio". -/// -/// Description of the "audio" tag state: mp3, wav, mid, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudio; - -/// -/// Initializes union class with tag state of "video". -/// -/// Description of the "video" tag state: mov, wmv, mp4, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithVideo; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: dropbox folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder; - -/// -/// Initializes union class with tag state of "paper". -/// -/// Description of the "paper" tag state: dropbox paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaper; - -/// -/// Initializes union class with tag state of "others". -/// -/// Description of the "others" tag state: any file not in one of the categories -/// above. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOthers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "image". -/// -/// @return Whether the union's current tag state has value "image". -/// -- (BOOL)isImage; - -/// -/// Retrieves whether the union's current tag state has value "document". -/// -/// @return Whether the union's current tag state has value "document". -/// -- (BOOL)isDocument; - -/// -/// Retrieves whether the union's current tag state has value "pdf". -/// -/// @return Whether the union's current tag state has value "pdf". -/// -- (BOOL)isPdf; - -/// -/// Retrieves whether the union's current tag state has value "spreadsheet". -/// -/// @return Whether the union's current tag state has value "spreadsheet". -/// -- (BOOL)isSpreadsheet; - -/// -/// Retrieves whether the union's current tag state has value "presentation". -/// -/// @return Whether the union's current tag state has value "presentation". -/// -- (BOOL)isPresentation; - -/// -/// Retrieves whether the union's current tag state has value "audio". -/// -/// @return Whether the union's current tag state has value "audio". -/// -- (BOOL)isAudio; - -/// -/// Retrieves whether the union's current tag state has value "video". -/// -/// @return Whether the union's current tag state has value "video". -/// -- (BOOL)isVideo; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves whether the union's current tag state has value "paper". -/// -/// @return Whether the union's current tag state has value "paper". -/// -- (BOOL)isPaper; - -/// -/// Retrieves whether the union's current tag state has value "others". -/// -/// @return Whether the union's current tag state has value "others". -/// -- (BOOL)isOthers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESFileCategory` union. -/// -@interface DBFILESFileCategorySerializer : NSObject - -/// -/// Serializes `DBFILESFileCategory` instances. -/// -/// @param instance An instance of the `DBFILESFileCategory` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileCategory` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileCategory *)instance; - -/// -/// Deserializes `DBFILESFileCategory` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileCategory` API object. -/// -/// @return An instantiation of the `DBFILESFileCategory` object. -/// -+ (DBFILESFileCategory *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLock.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLock.h deleted file mode 100644 index 11fbd356..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLock.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLock; -@class DBFILESFileLockContent; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLock` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileLock : NSObject - -#pragma mark - Instance fields - -/// The lock description. -@property (nonatomic, readonly) DBFILESFileLockContent *content; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param content The lock description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContent:(DBFILESFileLockContent *)content; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLock` struct. -/// -@interface DBFILESFileLockSerializer : NSObject - -/// -/// Serializes `DBFILESFileLock` instances. -/// -/// @param instance An instance of the `DBFILESFileLock` API object. -/// -/// @return A json-compatible dictionary representation of the `DBFILESFileLock` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileLock *)instance; - -/// -/// Deserializes `DBFILESFileLock` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileLock` API object. -/// -/// @return An instantiation of the `DBFILESFileLock` object. -/// -+ (DBFILESFileLock *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLockContent.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLockContent.h deleted file mode 100644 index 71999931..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLockContent.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLockContent; -@class DBFILESSingleUserLock; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockContent` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileLockContent : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESFileLockContentTag` enum type represents the possible tag states -/// with which the `DBFILESFileLockContent` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESFileLockContentTag) { - /// Empty type to indicate no lock. - DBFILESFileLockContentUnlocked, - - /// A lock held by a single user. - DBFILESFileLockContentSingleUser, - - /// (no description). - DBFILESFileLockContentOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESFileLockContentTag tag; - -/// A lock held by a single user. @note Ensure the `isSingleUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSingleUserLock *singleUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unlocked". -/// -/// Description of the "unlocked" tag state: Empty type to indicate no lock. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlocked; - -/// -/// Initializes union class with tag state of "single_user". -/// -/// Description of the "single_user" tag state: A lock held by a single user. -/// -/// @param singleUser A lock held by a single user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSingleUser:(DBFILESSingleUserLock *)singleUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "unlocked". -/// -/// @return Whether the union's current tag state has value "unlocked". -/// -- (BOOL)isUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "single_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `singleUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "single_user". -/// -- (BOOL)isSingleUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESFileLockContent` union. -/// -@interface DBFILESFileLockContentSerializer : NSObject - -/// -/// Serializes `DBFILESFileLockContent` instances. -/// -/// @param instance An instance of the `DBFILESFileLockContent` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileLockContent` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileLockContent *)instance; - -/// -/// Deserializes `DBFILESFileLockContent` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileLockContent` API object. -/// -/// @return An instantiation of the `DBFILESFileLockContent` object. -/// -+ (DBFILESFileLockContent *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLockMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLockMetadata.h deleted file mode 100644 index ec4128f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileLockMetadata.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLockMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileLockMetadata : NSObject - -#pragma mark - Instance fields - -/// True if caller holds the file lock. -@property (nonatomic, readonly, nullable) NSNumber *isLockholder; - -/// The display name of the lock holder. -@property (nonatomic, readonly, copy, nullable) NSString *lockholderName; - -/// The account ID of the lock holder if known. -@property (nonatomic, readonly, copy, nullable) NSString *lockholderAccountId; - -/// The timestamp of the lock was created. -@property (nonatomic, readonly, nullable) NSDate *created; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isLockholder True if caller holds the file lock. -/// @param lockholderName The display name of the lock holder. -/// @param lockholderAccountId The account ID of the lock holder if known. -/// @param created The timestamp of the lock was created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsLockholder:(nullable NSNumber *)isLockholder - lockholderName:(nullable NSString *)lockholderName - lockholderAccountId:(nullable NSString *)lockholderAccountId - created:(nullable NSDate *)created; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockMetadata` struct. -/// -@interface DBFILESFileLockMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESFileLockMetadata` instances. -/// -/// @param instance An instance of the `DBFILESFileLockMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileLockMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileLockMetadata *)instance; - -/// -/// Deserializes `DBFILESFileLockMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileLockMetadata` API object. -/// -/// @return An instantiation of the `DBFILESFileLockMetadata` object. -/// -+ (DBFILESFileLockMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileMetadata.h deleted file mode 100644 index 76468935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileMetadata.h +++ /dev/null @@ -1,227 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESExportInfo; -@class DBFILESFileLockMetadata; -@class DBFILESFileMetadata; -@class DBFILESFileSharingInfo; -@class DBFILESMediaInfo; -@class DBFILESSymlinkInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileMetadata : DBFILESMetadata - -#pragma mark - Instance fields - -/// A unique identifier for the file. -@property (nonatomic, readonly, copy) NSString *id_; - -/// For files, this is the modification time set by the desktop client when the -/// file was added to Dropbox. Since this time is not verified (the Dropbox -/// server stores whatever the desktop client sends up), this should only be -/// used for display purposes (such as sorting) and not, for example, to -/// determine if a file has changed or not. -@property (nonatomic, readonly) NSDate *clientModified; - -/// The last time the file was modified on Dropbox. -@property (nonatomic, readonly) NSDate *serverModified; - -/// A unique identifier for the current revision of a file. This field is the -/// same rev as elsewhere in the API and can be used to detect changes and avoid -/// conflicts. -@property (nonatomic, readonly, copy) NSString *rev; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -/// Additional information if the file is a photo or video. This field will not -/// be set on entries returned by `listFolder`, `listFolderContinue`, or -/// `getThumbnailBatch`, starting December 2, 2019. -@property (nonatomic, readonly, nullable) DBFILESMediaInfo *mediaInfo; - -/// Set if this file is a symlink. -@property (nonatomic, readonly, nullable) DBFILESSymlinkInfo *symlinkInfo; - -/// Set if this file is contained in a shared folder. -@property (nonatomic, readonly, nullable) DBFILESFileSharingInfo *sharingInfo; - -/// If true, file can be downloaded directly; else the file must be exported. -@property (nonatomic, readonly) NSNumber *isDownloadable; - -/// Information about format this file can be exported to. This filed must be -/// set if isDownloadable is set to false. -@property (nonatomic, readonly, nullable) DBFILESExportInfo *exportInfo; - -/// Additional information if the file has custom properties with the property -/// template specified. -@property (nonatomic, readonly, nullable) NSArray *propertyGroups; - -/// This flag will only be present if include_has_explicit_shared_members is -/// true in `listFolder` or `getMetadata`. If this flag is present, it will be -/// true if this file has any explicit shared members. This is different from -/// sharing_info in that this could be true in the case where a file has -/// explicit members but is not contained within a shared folder. -@property (nonatomic, readonly, nullable) NSNumber *hasExplicitSharedMembers; - -/// A hash of the file content. This field can be used to verify data integrity. -/// For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -/// If present, the metadata associated with the file's current lock. -@property (nonatomic, readonly, nullable) DBFILESFileLockMetadata *fileLockInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the file. -/// @param clientModified For files, this is the modification time set by the -/// desktop client when the file was added to Dropbox. Since this time is not -/// verified (the Dropbox server stores whatever the desktop client sends up), -/// this should only be used for display purposes (such as sorting) and not, for -/// example, to determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// @param mediaInfo Additional information if the file is a photo or video. -/// This field will not be set on entries returned by `listFolder`, -/// `listFolderContinue`, or `getThumbnailBatch`, starting December 2, 2019. -/// @param symlinkInfo Set if this file is a symlink. -/// @param sharingInfo Set if this file is contained in a shared folder. -/// @param isDownloadable If true, file can be downloaded directly; else the -/// file must be exported. -/// @param exportInfo Information about format this file can be exported to. -/// This filed must be set if isDownloadable is set to false. -/// @param propertyGroups Additional information if the file has custom -/// properties with the property template specified. -/// @param hasExplicitSharedMembers This flag will only be present if -/// include_has_explicit_shared_members is true in `listFolder` or -/// `getMetadata`. If this flag is present, it will be true if this file has -/// any explicit shared members. This is different from sharing_info in that -/// this could be true in the case where a file has explicit members but is not -/// contained within a shared folder. -/// @param contentHash A hash of the file content. This field can be used to -/// verify data integrity. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param fileLockInfo If present, the metadata associated with the file's -/// current lock. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - id_:(NSString *)id_ - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl - mediaInfo:(nullable DBFILESMediaInfo *)mediaInfo - symlinkInfo:(nullable DBFILESSymlinkInfo *)symlinkInfo - sharingInfo:(nullable DBFILESFileSharingInfo *)sharingInfo - isDownloadable:(nullable NSNumber *)isDownloadable - exportInfo:(nullable DBFILESExportInfo *)exportInfo - propertyGroups:(nullable NSArray *)propertyGroups - hasExplicitSharedMembers:(nullable NSNumber *)hasExplicitSharedMembers - contentHash:(nullable NSString *)contentHash - fileLockInfo:(nullable DBFILESFileLockMetadata *)fileLockInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the file. -/// @param clientModified For files, this is the modification time set by the -/// desktop client when the file was added to Dropbox. Since this time is not -/// verified (the Dropbox server stores whatever the desktop client sends up), -/// this should only be used for display purposes (such as sorting) and not, for -/// example, to determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - id_:(NSString *)id_ - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMetadata` struct. -/// -@interface DBFILESFileMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESFileMetadata` instances. -/// -/// @param instance An instance of the `DBFILESFileMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileMetadata *)instance; - -/// -/// Deserializes `DBFILESFileMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileMetadata` API object. -/// -/// @return An instantiation of the `DBFILESFileMetadata` object. -/// -+ (DBFILESFileMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileOpsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileOpsResult.h deleted file mode 100644 index 958542c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileOpsResult.h +++ /dev/null @@ -1,70 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileOpsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileOpsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileOpsResult : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileOpsResult` struct. -/// -@interface DBFILESFileOpsResultSerializer : NSObject - -/// -/// Serializes `DBFILESFileOpsResult` instances. -/// -/// @param instance An instance of the `DBFILESFileOpsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileOpsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileOpsResult *)instance; - -/// -/// Deserializes `DBFILESFileOpsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileOpsResult` API object. -/// -/// @return An instantiation of the `DBFILESFileOpsResult` object. -/// -+ (DBFILESFileOpsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileSharingInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileSharingInfo.h deleted file mode 100644 index 4fa67851..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileSharingInfo.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESSharingInfo.h" -#import "DBSerializableProtocol.h" - -@class DBFILESFileSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileSharingInfo` struct. -/// -/// Sharing info for a file which is contained by a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileSharingInfo : DBFILESSharingInfo - -#pragma mark - Instance fields - -/// ID of shared folder that holds this file. -@property (nonatomic, readonly, copy) NSString *parentSharedFolderId; - -/// The last user who modified the file. This field will be null if the user's -/// account has been deleted. -@property (nonatomic, readonly, copy, nullable) NSString *modifiedBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// @param parentSharedFolderId ID of shared folder that holds this file. -/// @param modifiedBy The last user who modified the file. This field will be -/// null if the user's account has been deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly - parentSharedFolderId:(NSString *)parentSharedFolderId - modifiedBy:(nullable NSString *)modifiedBy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// @param parentSharedFolderId ID of shared folder that holds this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly parentSharedFolderId:(NSString *)parentSharedFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileSharingInfo` struct. -/// -@interface DBFILESFileSharingInfoSerializer : NSObject - -/// -/// Serializes `DBFILESFileSharingInfo` instances. -/// -/// @param instance An instance of the `DBFILESFileSharingInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileSharingInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileSharingInfo *)instance; - -/// -/// Deserializes `DBFILESFileSharingInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileSharingInfo` API object. -/// -/// @return An instantiation of the `DBFILESFileSharingInfo` object. -/// -+ (DBFILESFileSharingInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileStatus.h deleted file mode 100644 index c697cfd0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFileStatus.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESFileStatusTag` enum type represents the possible tag states with -/// which the `DBFILESFileStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESFileStatusTag) { - /// (no description). - DBFILESFileStatusActive, - - /// (no description). - DBFILESFileStatusDeleted, - - /// (no description). - DBFILESFileStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESFileStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "deleted". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleted; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "deleted". -/// -/// @return Whether the union's current tag state has value "deleted". -/// -- (BOOL)isDeleted; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESFileStatus` union. -/// -@interface DBFILESFileStatusSerializer : NSObject - -/// -/// Serializes `DBFILESFileStatus` instances. -/// -/// @param instance An instance of the `DBFILESFileStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileStatus *)instance; - -/// -/// Deserializes `DBFILESFileStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileStatus` API object. -/// -/// @return An instantiation of the `DBFILESFileStatus` object. -/// -+ (DBFILESFileStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFolderMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFolderMetadata.h deleted file mode 100644 index aaf31b73..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFolderMetadata.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESFolderMetadata; -@class DBFILESFolderSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFolderMetadata : DBFILESMetadata - -#pragma mark - Instance fields - -/// A unique identifier for the folder. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Please use sharingInfo instead. -@property (nonatomic, readonly, copy, nullable) NSString *sharedFolderId; - -/// Set if the folder is contained in a shared folder or is a shared folder -/// mount point. -@property (nonatomic, readonly, nullable) DBFILESFolderSharingInfo *sharingInfo; - -/// Additional information if the file has custom properties with the property -/// template specified. Note that only properties associated with user-owned -/// templates, not team-owned templates, can be attached to folders. -@property (nonatomic, readonly, nullable) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the folder. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// @param sharedFolderId Please use sharingInfo instead. -/// @param sharingInfo Set if the folder is contained in a shared folder or is a -/// shared folder mount point. -/// @param propertyGroups Additional information if the file has custom -/// properties with the property template specified. Note that only properties -/// associated with user-owned templates, not team-owned templates, can be -/// attached to folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - id_:(NSString *)id_ - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl - sharedFolderId:(nullable NSString *)sharedFolderId - sharingInfo:(nullable DBFILESFolderSharingInfo *)sharingInfo - propertyGroups:(nullable NSArray *)propertyGroups; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name id_:(NSString *)id_; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderMetadata` struct. -/// -@interface DBFILESFolderMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESFolderMetadata` instances. -/// -/// @param instance An instance of the `DBFILESFolderMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFolderMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFolderMetadata *)instance; - -/// -/// Deserializes `DBFILESFolderMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFolderMetadata` API object. -/// -/// @return An instantiation of the `DBFILESFolderMetadata` object. -/// -+ (DBFILESFolderMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFolderSharingInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFolderSharingInfo.h deleted file mode 100644 index f6b94c3d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESFolderSharingInfo.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESSharingInfo.h" -#import "DBSerializableProtocol.h" - -@class DBFILESFolderSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderSharingInfo` struct. -/// -/// Sharing info for a folder which is contained in a shared folder or is a -/// shared folder mount point. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFolderSharingInfo : DBFILESSharingInfo - -#pragma mark - Instance fields - -/// Set if the folder is contained by a shared folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// If this folder is a shared folder mount point, the ID of the shared folder -/// mounted at this location. -@property (nonatomic, readonly, copy, nullable) NSString *sharedFolderId; - -/// Specifies that the folder can only be traversed and the user can only see a -/// limited subset of the contents of this folder because they don't have read -/// access to this folder. They do, however, have access to some sub folder. -@property (nonatomic, readonly) NSNumber *traverseOnly; - -/// Specifies that the folder cannot be accessed by the user. -@property (nonatomic, readonly) NSNumber *noAccess; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// @param parentSharedFolderId Set if the folder is contained by a shared -/// folder. -/// @param sharedFolderId If this folder is a shared folder mount point, the ID -/// of the shared folder mounted at this location. -/// @param traverseOnly Specifies that the folder can only be traversed and the -/// user can only see a limited subset of the contents of this folder because -/// they don't have read access to this folder. They do, however, have access to -/// some sub folder. -/// @param noAccess Specifies that the folder cannot be accessed by the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - sharedFolderId:(nullable NSString *)sharedFolderId - traverseOnly:(nullable NSNumber *)traverseOnly - noAccess:(nullable NSNumber *)noAccess; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderSharingInfo` struct. -/// -@interface DBFILESFolderSharingInfoSerializer : NSObject - -/// -/// Serializes `DBFILESFolderSharingInfo` instances. -/// -/// @param instance An instance of the `DBFILESFolderSharingInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFolderSharingInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFolderSharingInfo *)instance; - -/// -/// Deserializes `DBFILESFolderSharingInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFolderSharingInfo` API object. -/// -/// @return An instantiation of the `DBFILESFolderSharingInfo` object. -/// -+ (DBFILESFolderSharingInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceArg.h deleted file mode 100644 index 4331aa87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetCopyReferenceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetCopyReferenceArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetCopyReferenceArg : NSObject - -#pragma mark - Instance fields - -/// The path to the file or folder you want to get a copy reference to. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the file or folder you want to get a copy reference -/// to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetCopyReferenceArg` struct. -/// -@interface DBFILESGetCopyReferenceArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetCopyReferenceArg` instances. -/// -/// @param instance An instance of the `DBFILESGetCopyReferenceArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetCopyReferenceArg *)instance; - -/// -/// Deserializes `DBFILESGetCopyReferenceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceArg` API object. -/// -/// @return An instantiation of the `DBFILESGetCopyReferenceArg` object. -/// -+ (DBFILESGetCopyReferenceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceError.h deleted file mode 100644 index d7a00818..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetCopyReferenceError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetCopyReferenceError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetCopyReferenceError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetCopyReferenceErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetCopyReferenceError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetCopyReferenceErrorTag) { - /// (no description). - DBFILESGetCopyReferenceErrorPath, - - /// (no description). - DBFILESGetCopyReferenceErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetCopyReferenceErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetCopyReferenceError` union. -/// -@interface DBFILESGetCopyReferenceErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetCopyReferenceError` instances. -/// -/// @param instance An instance of the `DBFILESGetCopyReferenceError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetCopyReferenceError *)instance; - -/// -/// Deserializes `DBFILESGetCopyReferenceError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceError` API object. -/// -/// @return An instantiation of the `DBFILESGetCopyReferenceError` object. -/// -+ (DBFILESGetCopyReferenceError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceResult.h deleted file mode 100644 index 852ca108..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetCopyReferenceResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetCopyReferenceResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetCopyReferenceResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetCopyReferenceResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the file or folder. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -/// A copy reference to the file or folder. -@property (nonatomic, readonly, copy) NSString *dCopyReference; - -/// The expiration date of the copy reference. This value is currently set to be -/// far enough in the future so that expiration is effectively not an issue. -@property (nonatomic, readonly) NSDate *expires; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the file or folder. -/// @param dCopyReference A copy reference to the file or folder. -/// @param expires The expiration date of the copy reference. This value is -/// currently set to be far enough in the future so that expiration is -/// effectively not an issue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata - dCopyReference:(NSString *)dCopyReference - expires:(NSDate *)expires; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetCopyReferenceResult` struct. -/// -@interface DBFILESGetCopyReferenceResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetCopyReferenceResult` instances. -/// -/// @param instance An instance of the `DBFILESGetCopyReferenceResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetCopyReferenceResult *)instance; - -/// -/// Deserializes `DBFILESGetCopyReferenceResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceResult` API object. -/// -/// @return An instantiation of the `DBFILESGetCopyReferenceResult` object. -/// -+ (DBFILESGetCopyReferenceResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetMetadataArg.h deleted file mode 100644 index af496faf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetMetadataArg.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILESGetMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMetadataArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetMetadataArg : NSObject - -#pragma mark - Instance fields - -/// The path of a file or folder on Dropbox. -@property (nonatomic, readonly, copy) NSString *path; - -/// If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. -@property (nonatomic, readonly) NSNumber *includeMediaInfo; - -/// If true, DeletedMetadata will be returned for deleted file or folder, -/// otherwise `notFound` in `DBFILESLookupError` will be returned. -@property (nonatomic, readonly) NSNumber *includeDeleted; - -/// If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -@property (nonatomic, readonly) NSNumber *includeHasExplicitSharedMembers; - -/// If set to a valid list of template IDs, `propertyGroups` in -/// `DBFILESFileMetadata` is set if there exists property data associated with -/// the file and each of the listed templates. -@property (nonatomic, readonly, nullable) DBFILEPROPERTIESTemplateFilterBase *includePropertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of a file or folder on Dropbox. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set -/// for photo and video. -/// @param includeDeleted If true, DeletedMetadata will be returned for deleted -/// file or folder, otherwise `notFound` in `DBFILESLookupError` will be -/// returned. -/// @param includeHasExplicitSharedMembers If true, the results will include a -/// flag for each file indicating whether or not that file has any explicit -/// members. -/// @param includePropertyGroups If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set if there exists property -/// data associated with the file and each of the listed templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of a file or folder on Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetMetadataArg` struct. -/// -@interface DBFILESGetMetadataArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetMetadataArg` instances. -/// -/// @param instance An instance of the `DBFILESGetMetadataArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetMetadataArg *)instance; - -/// -/// Deserializes `DBFILESGetMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetMetadataArg` API object. -/// -/// @return An instantiation of the `DBFILESGetMetadataArg` object. -/// -+ (DBFILESGetMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetMetadataError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetMetadataError.h deleted file mode 100644 index a2fc61f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetMetadataError.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetMetadataError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMetadataError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetMetadataError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetMetadataErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetMetadataError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetMetadataErrorTag) { - /// (no description). - DBFILESGetMetadataErrorPath, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetMetadataErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetMetadataError` union. -/// -@interface DBFILESGetMetadataErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetMetadataError` instances. -/// -/// @param instance An instance of the `DBFILESGetMetadataError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetMetadataError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetMetadataError *)instance; - -/// -/// Deserializes `DBFILESGetMetadataError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetMetadataError` API object. -/// -/// @return An instantiation of the `DBFILESGetMetadataError` object. -/// -+ (DBFILESGetMetadataError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTagsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTagsArg.h deleted file mode 100644 index 510bffc9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTagsArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTagsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTagsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTagsArg : NSObject - -#pragma mark - Instance fields - -/// Path to the items. -@property (nonatomic, readonly) NSArray *paths; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param paths Path to the items. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaths:(NSArray *)paths; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTagsArg` struct. -/// -@interface DBFILESGetTagsArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetTagsArg` instances. -/// -/// @param instance An instance of the `DBFILESGetTagsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTagsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTagsArg *)instance; - -/// -/// Deserializes `DBFILESGetTagsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTagsArg` API object. -/// -/// @return An instantiation of the `DBFILESGetTagsArg` object. -/// -+ (DBFILESGetTagsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTagsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTagsResult.h deleted file mode 100644 index 9cafb762..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTagsResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTagsResult; -@class DBFILESPathToTags; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTagsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTagsResult : NSObject - -#pragma mark - Instance fields - -/// List of paths and their corresponding tags. -@property (nonatomic, readonly) NSArray *pathsToTags; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param pathsToTags List of paths and their corresponding tags. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathsToTags:(NSArray *)pathsToTags; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTagsResult` struct. -/// -@interface DBFILESGetTagsResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetTagsResult` instances. -/// -/// @param instance An instance of the `DBFILESGetTagsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTagsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTagsResult *)instance; - -/// -/// Deserializes `DBFILESGetTagsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTagsResult` API object. -/// -/// @return An instantiation of the `DBFILESGetTagsResult` object. -/// -+ (DBFILESGetTagsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkArg.h deleted file mode 100644 index 2c0ab61b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTemporaryLinkArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryLinkArg : NSObject - -#pragma mark - Instance fields - -/// The path to the file you want a temporary link to. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the file you want a temporary link to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryLinkArg` struct. -/// -@interface DBFILESGetTemporaryLinkArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryLinkArg` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryLinkArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryLinkArg *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkArg` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryLinkArg` object. -/// -+ (DBFILESGetTemporaryLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkError.h deleted file mode 100644 index 54e56099..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkError.h +++ /dev/null @@ -1,197 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTemporaryLinkError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetTemporaryLinkErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetTemporaryLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetTemporaryLinkErrorTag) { - /// (no description). - DBFILESGetTemporaryLinkErrorPath, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILESGetTemporaryLinkErrorEmailNotVerified, - - /// Cannot get temporary link to this file type; use `export` instead. - DBFILESGetTemporaryLinkErrorUnsupportedFile, - - /// The user is not allowed to request a temporary link to the specified - /// file. For example, this can occur if the file is restricted or if the - /// user's links are banned - /// https://help.dropbox.com/files-folders/share/banned-links. - DBFILESGetTemporaryLinkErrorNotAllowed, - - /// (no description). - DBFILESGetTemporaryLinkErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetTemporaryLinkErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "email_not_verified". -/// -/// Description of the "email_not_verified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailNotVerified; - -/// -/// Initializes union class with tag state of "unsupported_file". -/// -/// Description of the "unsupported_file" tag state: Cannot get temporary link -/// to this file type; use `export` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFile; - -/// -/// Initializes union class with tag state of "not_allowed". -/// -/// Description of the "not_allowed" tag state: The user is not allowed to -/// request a temporary link to the specified file. For example, this can occur -/// if the file is restricted or if the user's links are banned -/// https://help.dropbox.com/files-folders/share/banned-links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAllowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "email_not_verified". -/// -- (BOOL)isEmailNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_file". -/// -/// @return Whether the union's current tag state has value "unsupported_file". -/// -- (BOOL)isUnsupportedFile; - -/// -/// Retrieves whether the union's current tag state has value "not_allowed". -/// -/// @return Whether the union's current tag state has value "not_allowed". -/// -- (BOOL)isNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetTemporaryLinkError` union. -/// -@interface DBFILESGetTemporaryLinkErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryLinkError` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryLinkError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryLinkError *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkError` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryLinkError` object. -/// -+ (DBFILESGetTemporaryLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkResult.h deleted file mode 100644 index 987a42c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryLinkResult.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESGetTemporaryLinkResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryLinkResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryLinkResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the file. -@property (nonatomic, readonly) DBFILESFileMetadata *metadata; - -/// The temporary link which can be used to stream content the file. -@property (nonatomic, readonly, copy) NSString *link; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the file. -/// @param link The temporary link which can be used to stream content the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFileMetadata *)metadata link:(NSString *)link; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryLinkResult` struct. -/// -@interface DBFILESGetTemporaryLinkResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryLinkResult` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryLinkResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryLinkResult *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryLinkResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkResult` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryLinkResult` object. -/// -+ (DBFILESGetTemporaryLinkResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryUploadLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryUploadLinkArg.h deleted file mode 100644 index b2af59c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryUploadLinkArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCommitInfo; -@class DBFILESGetTemporaryUploadLinkArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryUploadLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryUploadLinkArg : NSObject - -#pragma mark - Instance fields - -/// Contains the path and other optional modifiers for the future upload commit. -/// Equivalent to the parameters provided to `upload`. -@property (nonatomic, readonly) DBFILESCommitInfo *commitInfo; - -/// How long before this link expires, in seconds. Attempting to start an -/// upload with this link longer than this period of time after link creation -/// will result in an error. -@property (nonatomic, readonly) NSNumber *duration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commitInfo Contains the path and other optional modifiers for the -/// future upload commit. Equivalent to the parameters provided to `upload`. -/// @param duration How long before this link expires, in seconds. Attempting -/// to start an upload with this link longer than this period of time after -/// link creation will result in an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommitInfo:(DBFILESCommitInfo *)commitInfo duration:(nullable NSNumber *)duration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param commitInfo Contains the path and other optional modifiers for the -/// future upload commit. Equivalent to the parameters provided to `upload`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommitInfo:(DBFILESCommitInfo *)commitInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryUploadLinkArg` struct. -/// -@interface DBFILESGetTemporaryUploadLinkArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryUploadLinkArg` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryUploadLinkArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryUploadLinkArg *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryUploadLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkArg` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryUploadLinkArg` object. -/// -+ (DBFILESGetTemporaryUploadLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryUploadLinkResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryUploadLinkResult.h deleted file mode 100644 index a454c8a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetTemporaryUploadLinkResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTemporaryUploadLinkResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryUploadLinkResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryUploadLinkResult : NSObject - -#pragma mark - Instance fields - -/// The temporary link which can be used to stream a file to a Dropbox location. -@property (nonatomic, readonly, copy) NSString *link; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param link The temporary link which can be used to stream a file to a -/// Dropbox location. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLink:(NSString *)link; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryUploadLinkResult` struct. -/// -@interface DBFILESGetTemporaryUploadLinkResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryUploadLinkResult` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryUploadLinkResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryUploadLinkResult *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryUploadLinkResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkResult` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryUploadLinkResult` -/// object. -/// -+ (DBFILESGetTemporaryUploadLinkResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchArg.h deleted file mode 100644 index e8ff7535..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchArg; -@class DBFILESThumbnailArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchArg` struct. -/// -/// Arguments for `getThumbnailBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of files to get thumbnails. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of files to get thumbnails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetThumbnailBatchArg` struct. -/// -@interface DBFILESGetThumbnailBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchArg *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchArg` object. -/// -+ (DBFILESGetThumbnailBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchError.h deleted file mode 100644 index 43496c4a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetThumbnailBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetThumbnailBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetThumbnailBatchErrorTag) { - /// The operation involves more than 25 files. - DBFILESGetThumbnailBatchErrorTooManyFiles, - - /// (no description). - DBFILESGetThumbnailBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetThumbnailBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation involves more -/// than 25 files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetThumbnailBatchError` union. -/// -@interface DBFILESGetThumbnailBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchError` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchError *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchError` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchError` object. -/// -+ (DBFILESGetThumbnailBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResult.h deleted file mode 100644 index cfc3ce63..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchResult; -@class DBFILESGetThumbnailBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchResult : NSObject - -#pragma mark - Instance fields - -/// List of files and their thumbnails. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of files and their thumbnails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetThumbnailBatchResult` struct. -/// -@interface DBFILESGetThumbnailBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchResult *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchResult` object. -/// -+ (DBFILESGetThumbnailBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResultData.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResultData.h deleted file mode 100644 index 5dd519b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResultData.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESGetThumbnailBatchResultData; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchResultData` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchResultData : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBFILESFileMetadata *metadata; - -/// A string containing the base64-encoded thumbnail data for this file. -@property (nonatomic, readonly, copy) NSString *thumbnail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata (no description). -/// @param thumbnail A string containing the base64-encoded thumbnail data for -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFileMetadata *)metadata thumbnail:(NSString *)thumbnail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetThumbnailBatchResultData` struct. -/// -@interface DBFILESGetThumbnailBatchResultDataSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchResultData` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchResultData` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultData` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchResultData *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchResultData` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultData` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchResultData` object. -/// -+ (DBFILESGetThumbnailBatchResultData *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResultEntry.h deleted file mode 100644 index 4ab498e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGetThumbnailBatchResultEntry.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchResultData; -@class DBFILESGetThumbnailBatchResultEntry; -@class DBFILESThumbnailError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetThumbnailBatchResultEntryTag` enum type represents the -/// possible tag states with which the `DBFILESGetThumbnailBatchResultEntry` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetThumbnailBatchResultEntryTag) { - /// (no description). - DBFILESGetThumbnailBatchResultEntrySuccess, - - /// The result for this file if it was an error. - DBFILESGetThumbnailBatchResultEntryFailure, - - /// (no description). - DBFILESGetThumbnailBatchResultEntryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetThumbnailBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESGetThumbnailBatchResultData *success; - -/// The result for this file if it was an error. @note Ensure the `isFailure` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESThumbnailError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESGetThumbnailBatchResultData *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// Description of the "failure" tag state: The result for this file if it was -/// an error. -/// -/// @param failure The result for this file if it was an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESThumbnailError *)failure; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetThumbnailBatchResultEntry` union. -/// -@interface DBFILESGetThumbnailBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchResultEntry` -/// object. -/// -+ (DBFILESGetThumbnailBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGpsCoordinates.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGpsCoordinates.h deleted file mode 100644 index 81bb9fe1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESGpsCoordinates.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGpsCoordinates; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GpsCoordinates` struct. -/// -/// GPS coordinates for a photo or video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGpsCoordinates : NSObject - -#pragma mark - Instance fields - -/// Latitude of the GPS coordinates. -@property (nonatomic, readonly) NSNumber *latitude; - -/// Longitude of the GPS coordinates. -@property (nonatomic, readonly) NSNumber *longitude; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param latitude Latitude of the GPS coordinates. -/// @param longitude Longitude of the GPS coordinates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLatitude:(NSNumber *)latitude longitude:(NSNumber *)longitude; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GpsCoordinates` struct. -/// -@interface DBFILESGpsCoordinatesSerializer : NSObject - -/// -/// Serializes `DBFILESGpsCoordinates` instances. -/// -/// @param instance An instance of the `DBFILESGpsCoordinates` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGpsCoordinates` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGpsCoordinates *)instance; - -/// -/// Deserializes `DBFILESGpsCoordinates` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGpsCoordinates` API object. -/// -/// @return An instantiation of the `DBFILESGpsCoordinates` object. -/// -+ (DBFILESGpsCoordinates *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESHighlightSpan.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESHighlightSpan.h deleted file mode 100644 index f0e4ec5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESHighlightSpan.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESHighlightSpan; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HighlightSpan` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESHighlightSpan : NSObject - -#pragma mark - Instance fields - -/// String to be determined whether it should be highlighted or not. -@property (nonatomic, readonly, copy) NSString *highlightStr; - -/// The string should be highlighted or not. -@property (nonatomic, readonly) NSNumber *isHighlighted; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param highlightStr String to be determined whether it should be highlighted -/// or not. -/// @param isHighlighted The string should be highlighted or not. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHighlightStr:(NSString *)highlightStr isHighlighted:(NSNumber *)isHighlighted; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `HighlightSpan` struct. -/// -@interface DBFILESHighlightSpanSerializer : NSObject - -/// -/// Serializes `DBFILESHighlightSpan` instances. -/// -/// @param instance An instance of the `DBFILESHighlightSpan` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESHighlightSpan` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESHighlightSpan *)instance; - -/// -/// Deserializes `DBFILESHighlightSpan` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESHighlightSpan` API object. -/// -/// @return An instantiation of the `DBFILESHighlightSpan` object. -/// -+ (DBFILESHighlightSpan *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESImportFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESImportFormat.h deleted file mode 100644 index 018ea0cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESImportFormat.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESImportFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ImportFormat` union. -/// -/// The import format of the incoming Paper doc content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESImportFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESImportFormatTag` enum type represents the possible tag states -/// with which the `DBFILESImportFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESImportFormatTag) { - /// The provided data is interpreted as standard HTML. - DBFILESImportFormatHtml, - - /// The provided data is interpreted as markdown. - DBFILESImportFormatMarkdown, - - /// The provided data is interpreted as plain text. - DBFILESImportFormatPlainText, - - /// (no description). - DBFILESImportFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESImportFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "html". -/// -/// Description of the "html" tag state: The provided data is interpreted as -/// standard HTML. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// Description of the "markdown" tag state: The provided data is interpreted as -/// markdown. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "plain_text". -/// -/// Description of the "plain_text" tag state: The provided data is interpreted -/// as plain text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlainText; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "plain_text". -/// -/// @return Whether the union's current tag state has value "plain_text". -/// -- (BOOL)isPlainText; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESImportFormat` union. -/// -@interface DBFILESImportFormatSerializer : NSObject - -/// -/// Serializes `DBFILESImportFormat` instances. -/// -/// @param instance An instance of the `DBFILESImportFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESImportFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESImportFormat *)instance; - -/// -/// Deserializes `DBFILESImportFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESImportFormat` API object. -/// -/// @return An instantiation of the `DBFILESImportFormat` object. -/// -+ (DBFILESImportFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderArg.h deleted file mode 100644 index 3c260b37..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderArg.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILESListFolderArg; -@class DBFILESSharedLink; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file. -@property (nonatomic, readonly, copy) NSString *path; - -/// If true, the list folder operation will be applied recursively to all -/// subfolders and the response will contain contents of all subfolders. -@property (nonatomic, readonly) NSNumber *recursive; - -/// If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. -/// This parameter will no longer have an effect starting December 2, 2019. -@property (nonatomic, readonly) NSNumber *includeMediaInfo; - -/// If true, the results will include entries for files and folders that used to -/// exist but were deleted. -@property (nonatomic, readonly) NSNumber *includeDeleted; - -/// If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -@property (nonatomic, readonly) NSNumber *includeHasExplicitSharedMembers; - -/// If true, the results will include entries under mounted folders which -/// includes app folder, shared folder and team folder. -@property (nonatomic, readonly) NSNumber *includeMountedFolders; - -/// The maximum number of results to return per request. Note: This is an -/// approximate number and there can be slightly more entries returned in some -/// cases. -@property (nonatomic, readonly, nullable) NSNumber *limit; - -/// A shared link to list the contents of. If the link is password-protected, -/// the password must be provided. If this field is present, `path` in -/// `DBFILESListFolderArg` will be relative to root of the shared link. Only -/// non-recursive mode is supported for shared link. -@property (nonatomic, readonly, nullable) DBFILESSharedLink *sharedLink; - -/// If set to a valid list of template IDs, `propertyGroups` in -/// `DBFILESFileMetadata` is set if there exists property data associated with -/// the file and each of the listed templates. -@property (nonatomic, readonly, nullable) DBFILEPROPERTIESTemplateFilterBase *includePropertyGroups; - -/// If true, include files that are not downloadable, i.e. Google Docs. -@property (nonatomic, readonly) NSNumber *includeNonDownloadableFiles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied -/// recursively to all subfolders and the response will contain contents of all -/// subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set -/// for photo and video. This parameter will no longer have an effect starting -/// December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files -/// and folders that used to exist but were deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a -/// flag for each file indicating whether or not that file has any explicit -/// members. -/// @param includeMountedFolders If true, the results will include entries under -/// mounted folders which includes app folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This -/// is an approximate number and there can be slightly more entries returned in -/// some cases. -/// @param sharedLink A shared link to list the contents of. If the link is -/// password-protected, the password must be provided. If this field is present, -/// `path` in `DBFILESListFolderArg` will be relative to root of the shared -/// link. Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set if there exists property -/// data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not -/// downloadable, i.e. Google Docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path A unique identifier for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderArg` struct. -/// -@interface DBFILESListFolderArgSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderArg` instances. -/// -/// @param instance An instance of the `DBFILESListFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderArg *)instance; - -/// -/// Deserializes `DBFILESListFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderArg` API object. -/// -/// @return An instantiation of the `DBFILESListFolderArg` object. -/// -+ (DBFILESListFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderContinueArg.h deleted file mode 100644 index d2cc44e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `listFolder` or -/// `listFolderContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `listFolder` or -/// `listFolderContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderContinueArg` struct. -/// -@interface DBFILESListFolderContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderContinueArg` instances. -/// -/// @param instance An instance of the `DBFILESListFolderContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderContinueArg *)instance; - -/// -/// Deserializes `DBFILESListFolderContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueArg` API object. -/// -/// @return An instantiation of the `DBFILESListFolderContinueArg` object. -/// -+ (DBFILESListFolderContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderContinueError.h deleted file mode 100644 index 503ac21d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderContinueError.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderContinueError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListFolderContinueErrorTag` enum type represents the possible -/// tag states with which the `DBFILESListFolderContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListFolderContinueErrorTag) { - /// (no description). - DBFILESListFolderContinueErrorPath, - - /// Indicates that the cursor has been invalidated. Call `listFolder` to - /// obtain a new cursor. - DBFILESListFolderContinueErrorReset, - - /// (no description). - DBFILESListFolderContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListFolderContinueErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `listFolder` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListFolderContinueError` union. -/// -@interface DBFILESListFolderContinueErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderContinueError` instances. -/// -/// @param instance An instance of the `DBFILESListFolderContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderContinueError *)instance; - -/// -/// Deserializes `DBFILESListFolderContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueError` API object. -/// -/// @return An instantiation of the `DBFILESListFolderContinueError` object. -/// -+ (DBFILESListFolderContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderError.h deleted file mode 100644 index b63b13a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderError.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateError; -@class DBFILESListFolderError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListFolderErrorTag` enum type represents the possible tag states -/// with which the `DBFILESListFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListFolderErrorTag) { - /// (no description). - DBFILESListFolderErrorPath, - - /// (no description). - DBFILESListFolderErrorTemplateError, - - /// (no description). - DBFILESListFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListFolderErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// (no description). @note Ensure the `isTemplateError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateError *templateError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "template_error". -/// -/// @param templateError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateError:(DBFILEPROPERTIESTemplateError *)templateError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "template_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "template_error". -/// -- (BOOL)isTemplateError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListFolderError` union. -/// -@interface DBFILESListFolderErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderError` instances. -/// -/// @param instance An instance of the `DBFILESListFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderError *)instance; - -/// -/// Deserializes `DBFILESListFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderError` API object. -/// -/// @return An instantiation of the `DBFILESListFolderError` object. -/// -+ (DBFILESListFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderGetLatestCursorResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderGetLatestCursorResult.h deleted file mode 100644 index 2b049cd0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderGetLatestCursorResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderGetLatestCursorResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderGetLatestCursorResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderGetLatestCursorResult : NSObject - -#pragma mark - Instance fields - -/// Pass the cursor into `listFolderContinue` to see what's changed in the -/// folder since your previous query. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Pass the cursor into `listFolderContinue` to see what's -/// changed in the folder since your previous query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderGetLatestCursorResult` struct. -/// -@interface DBFILESListFolderGetLatestCursorResultSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderGetLatestCursorResult` instances. -/// -/// @param instance An instance of the `DBFILESListFolderGetLatestCursorResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderGetLatestCursorResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderGetLatestCursorResult *)instance; - -/// -/// Deserializes `DBFILESListFolderGetLatestCursorResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderGetLatestCursorResult` API object. -/// -/// @return An instantiation of the `DBFILESListFolderGetLatestCursorResult` -/// object. -/// -+ (DBFILESListFolderGetLatestCursorResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollArg.h deleted file mode 100644 index 22932158..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollArg.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderLongpollArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderLongpollArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderLongpollArg : NSObject - -#pragma mark - Instance fields - -/// A cursor as returned by `listFolder` or `listFolderContinue`. Cursors -/// retrieved by setting `includeMediaInfo` in `DBFILESListFolderArg` to true -/// are not supported. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// A timeout in seconds. The request will block for at most this length of -/// time, plus up to 90 seconds of random jitter added to avoid the thundering -/// herd problem. Care should be taken when using this parameter, as some -/// network infrastructure does not support long timeouts. -@property (nonatomic, readonly) NSNumber *timeout; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. -/// Cursors retrieved by setting `includeMediaInfo` in `DBFILESListFolderArg` to -/// true are not supported. -/// @param timeout A timeout in seconds. The request will block for at most this -/// length of time, plus up to 90 seconds of random jitter added to avoid the -/// thundering herd problem. Care should be taken when using this parameter, as -/// some network infrastructure does not support long timeouts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor timeout:(nullable NSNumber *)timeout; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. -/// Cursors retrieved by setting `includeMediaInfo` in `DBFILESListFolderArg` to -/// true are not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderLongpollArg` struct. -/// -@interface DBFILESListFolderLongpollArgSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderLongpollArg` instances. -/// -/// @param instance An instance of the `DBFILESListFolderLongpollArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderLongpollArg *)instance; - -/// -/// Deserializes `DBFILESListFolderLongpollArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollArg` API object. -/// -/// @return An instantiation of the `DBFILESListFolderLongpollArg` object. -/// -+ (DBFILESListFolderLongpollArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollError.h deleted file mode 100644 index 79b2b482..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderLongpollError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderLongpollError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderLongpollError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListFolderLongpollErrorTag` enum type represents the possible -/// tag states with which the `DBFILESListFolderLongpollError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListFolderLongpollErrorTag) { - /// Indicates that the cursor has been invalidated. Call `listFolder` to - /// obtain a new cursor. - DBFILESListFolderLongpollErrorReset, - - /// (no description). - DBFILESListFolderLongpollErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListFolderLongpollErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `listFolder` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListFolderLongpollError` union. -/// -@interface DBFILESListFolderLongpollErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderLongpollError` instances. -/// -/// @param instance An instance of the `DBFILESListFolderLongpollError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderLongpollError *)instance; - -/// -/// Deserializes `DBFILESListFolderLongpollError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollError` API object. -/// -/// @return An instantiation of the `DBFILESListFolderLongpollError` object. -/// -+ (DBFILESListFolderLongpollError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollResult.h deleted file mode 100644 index fe578cea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderLongpollResult.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderLongpollResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderLongpollResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderLongpollResult : NSObject - -#pragma mark - Instance fields - -/// Indicates whether new changes are available. If true, call -/// `listFolderContinue` to retrieve the changes. -@property (nonatomic, readonly) NSNumber *changes; - -/// If present, backoff for at least this many seconds before calling -/// `listFolderLongpoll` again. -@property (nonatomic, readonly, nullable) NSNumber *backoff; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param changes Indicates whether new changes are available. If true, call -/// `listFolderContinue` to retrieve the changes. -/// @param backoff If present, backoff for at least this many seconds before -/// calling `listFolderLongpoll` again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChanges:(NSNumber *)changes backoff:(nullable NSNumber *)backoff; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param changes Indicates whether new changes are available. If true, call -/// `listFolderContinue` to retrieve the changes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChanges:(NSNumber *)changes; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderLongpollResult` struct. -/// -@interface DBFILESListFolderLongpollResultSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderLongpollResult` instances. -/// -/// @param instance An instance of the `DBFILESListFolderLongpollResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderLongpollResult *)instance; - -/// -/// Deserializes `DBFILESListFolderLongpollResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollResult` API object. -/// -/// @return An instantiation of the `DBFILESListFolderLongpollResult` object. -/// -+ (DBFILESListFolderLongpollResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderResult.h deleted file mode 100644 index 1cdb223b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListFolderResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderResult : NSObject - -#pragma mark - Instance fields - -/// The files and (direct) subfolders in the folder. -@property (nonatomic, readonly) NSArray *entries; - -/// Pass the cursor into `listFolderContinue` to see what's changed in the -/// folder since your previous query. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// If true, then there are more entries available. Pass the cursor to -/// `listFolderContinue` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries The files and (direct) subfolders in the folder. -/// @param cursor Pass the cursor into `listFolderContinue` to see what's -/// changed in the folder since your previous query. -/// @param hasMore If true, then there are more entries available. Pass the -/// cursor to `listFolderContinue` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderResult` struct. -/// -@interface DBFILESListFolderResultSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderResult` instances. -/// -/// @param instance An instance of the `DBFILESListFolderResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderResult *)instance; - -/// -/// Deserializes `DBFILESListFolderResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderResult` API object. -/// -/// @return An instantiation of the `DBFILESListFolderResult` object. -/// -+ (DBFILESListFolderResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsArg.h deleted file mode 100644 index 32334bea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListRevisionsArg; -@class DBFILESListRevisionsMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsArg : NSObject - -#pragma mark - Instance fields - -/// The path to the file you want to see the revisions of. -@property (nonatomic, readonly, copy) NSString *path; - -/// Determines the behavior of the API in listing the revisions for a given file -/// path or id. -@property (nonatomic, readonly) DBFILESListRevisionsMode *mode; - -/// The maximum number of revision entries returned. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the file you want to see the revisions of. -/// @param mode Determines the behavior of the API in listing the revisions for -/// a given file path or id. -/// @param limit The maximum number of revision entries returned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - mode:(nullable DBFILESListRevisionsMode *)mode - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to the file you want to see the revisions of. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListRevisionsArg` struct. -/// -@interface DBFILESListRevisionsArgSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsArg` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsArg *)instance; - -/// -/// Deserializes `DBFILESListRevisionsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsArg` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsArg` object. -/// -+ (DBFILESListRevisionsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsError.h deleted file mode 100644 index d1d41bb7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListRevisionsError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListRevisionsErrorTag` enum type represents the possible tag -/// states with which the `DBFILESListRevisionsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListRevisionsErrorTag) { - /// (no description). - DBFILESListRevisionsErrorPath, - - /// (no description). - DBFILESListRevisionsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListRevisionsErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListRevisionsError` union. -/// -@interface DBFILESListRevisionsErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsError` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsError *)instance; - -/// -/// Deserializes `DBFILESListRevisionsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsError` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsError` object. -/// -+ (DBFILESListRevisionsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsMode.h deleted file mode 100644 index cf6419f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsMode.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListRevisionsMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListRevisionsModeTag` enum type represents the possible tag -/// states with which the `DBFILESListRevisionsMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListRevisionsModeTag) { - /// Returns revisions with the same file path as identified by the latest - /// file entry at the given file path or id. - DBFILESListRevisionsModePath, - - /// Returns revisions with the same file id as identified by the latest file - /// entry at the given file path or id. - DBFILESListRevisionsModeId_, - - /// (no description). - DBFILESListRevisionsModeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListRevisionsModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: Returns revisions with the same file -/// path as identified by the latest file entry at the given file path or id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath; - -/// -/// Initializes union class with tag state of "id". -/// -/// Description of the "id" tag state: Returns revisions with the same file id -/// as identified by the latest file entry at the given file path or id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "id". -/// -/// @return Whether the union's current tag state has value "id". -/// -- (BOOL)isId_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListRevisionsMode` union. -/// -@interface DBFILESListRevisionsModeSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsMode` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsMode *)instance; - -/// -/// Deserializes `DBFILESListRevisionsMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsMode` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsMode` object. -/// -+ (DBFILESListRevisionsMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsResult.h deleted file mode 100644 index 4763b972..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESListRevisionsResult.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESListRevisionsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsResult : NSObject - -#pragma mark - Instance fields - -/// If the file identified by the latest revision in the response is either -/// deleted or moved. -@property (nonatomic, readonly) NSNumber *isDeleted; - -/// The time of deletion if the file was deleted. -@property (nonatomic, readonly, nullable) NSDate *serverDeleted; - -/// The revisions for the file. Only revisions that are not deleted will show up -/// here. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isDeleted If the file identified by the latest revision in the -/// response is either deleted or moved. -/// @param entries The revisions for the file. Only revisions that are not -/// deleted will show up here. -/// @param serverDeleted The time of deletion if the file was deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsDeleted:(NSNumber *)isDeleted - entries:(NSArray *)entries - serverDeleted:(nullable NSDate *)serverDeleted; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param isDeleted If the file identified by the latest revision in the -/// response is either deleted or moved. -/// @param entries The revisions for the file. Only revisions that are not -/// deleted will show up here. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsDeleted:(NSNumber *)isDeleted entries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListRevisionsResult` struct. -/// -@interface DBFILESListRevisionsResultSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsResult` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsResult *)instance; - -/// -/// Deserializes `DBFILESListRevisionsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsResult` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsResult` object. -/// -+ (DBFILESListRevisionsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockConflictError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockConflictError.h deleted file mode 100644 index da625137..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockConflictError.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLock; -@class DBFILESLockConflictError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockConflictError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockConflictError : NSObject - -#pragma mark - Instance fields - -/// The lock that caused the conflict. -@property (nonatomic, readonly) DBFILESFileLock *lock; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param lock The lock that caused the conflict. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLock:(DBFILESFileLock *)lock; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockConflictError` struct. -/// -@interface DBFILESLockConflictErrorSerializer : NSObject - -/// -/// Serializes `DBFILESLockConflictError` instances. -/// -/// @param instance An instance of the `DBFILESLockConflictError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockConflictError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockConflictError *)instance; - -/// -/// Deserializes `DBFILESLockConflictError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockConflictError` API object. -/// -/// @return An instantiation of the `DBFILESLockConflictError` object. -/// -+ (DBFILESLockConflictError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileArg.h deleted file mode 100644 index e5a11e52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to a file. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileArg` struct. -/// -@interface DBFILESLockFileArgSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileArg` instances. -/// -/// @param instance An instance of the `DBFILESLockFileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileArg *)instance; - -/// -/// Deserializes `DBFILESLockFileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileArg` API object. -/// -/// @return An instantiation of the `DBFILESLockFileArg` object. -/// -+ (DBFILESLockFileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileBatchArg.h deleted file mode 100644 index c5bf79dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileBatchArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileArg; -@class DBFILESLockFileBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of 'entries'. Each 'entry' contains a path of the file which will be -/// locked or queried. Duplicate path arguments in the batch are considered only -/// once. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file -/// which will be locked or queried. Duplicate path arguments in the batch are -/// considered only once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileBatchArg` struct. -/// -@interface DBFILESLockFileBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESLockFileBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileBatchArg *)instance; - -/// -/// Deserializes `DBFILESLockFileBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESLockFileBatchArg` object. -/// -+ (DBFILESLockFileBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileBatchResult.h deleted file mode 100644 index bdbbf4bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileBatchResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileBatchResult; -@class DBFILESLockFileResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each Entry in the 'entries' will have '.tag' with the operation status (e.g. -/// success), the metadata for the file and the lock state after the operation. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each Entry in the 'entries' will have '.tag' with the -/// operation status (e.g. success), the metadata for the file and the lock -/// state after the operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileBatchResult` struct. -/// -@interface DBFILESLockFileBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESLockFileBatchResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileBatchResult *)instance; - -/// -/// Deserializes `DBFILESLockFileBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESLockFileBatchResult` object. -/// -+ (DBFILESLockFileBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileError.h deleted file mode 100644 index 66f51790..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileError.h +++ /dev/null @@ -1,290 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockConflictError; -@class DBFILESLockFileError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESLockFileErrorTag` enum type represents the possible tag states -/// with which the `DBFILESLockFileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESLockFileErrorTag) { - /// Could not find the specified resource. - DBFILESLockFileErrorPathLookup, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESLockFileErrorTooManyWriteOperations, - - /// There are too many files in one request. Please retry with fewer files. - DBFILESLockFileErrorTooManyFiles, - - /// The user does not have permissions to change the lock state or access - /// the file. - DBFILESLockFileErrorNoWritePermission, - - /// Item is a type that cannot be locked. - DBFILESLockFileErrorCannotBeLocked, - - /// Requested file is not currently shared. - DBFILESLockFileErrorFileNotShared, - - /// The user action conflicts with an existing lock on the file. - DBFILESLockFileErrorLockConflict, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESLockFileErrorInternalError, - - /// (no description). - DBFILESLockFileErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESLockFileErrorTag tag; - -/// Could not find the specified resource. @note Ensure the `isPathLookup` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESLookupError *pathLookup; - -/// The user action conflicts with an existing lock on the file. @note Ensure -/// the `isLockConflict` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLockConflictError *lockConflict; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path_lookup". -/// -/// Description of the "path_lookup" tag state: Could not find the specified -/// resource. -/// -/// @param pathLookup Could not find the specified resource. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathLookup:(DBFILESLookupError *)pathLookup; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: There are too many files in -/// one request. Please retry with fewer files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "no_write_permission". -/// -/// Description of the "no_write_permission" tag state: The user does not have -/// permissions to change the lock state or access the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoWritePermission; - -/// -/// Initializes union class with tag state of "cannot_be_locked". -/// -/// Description of the "cannot_be_locked" tag state: Item is a type that cannot -/// be locked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotBeLocked; - -/// -/// Initializes union class with tag state of "file_not_shared". -/// -/// Description of the "file_not_shared" tag state: Requested file is not -/// currently shared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileNotShared; - -/// -/// Initializes union class with tag state of "lock_conflict". -/// -/// Description of the "lock_conflict" tag state: The user action conflicts with -/// an existing lock on the file. -/// -/// @param lockConflict The user action conflicts with an existing lock on the -/// file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLockConflict:(DBFILESLockConflictError *)lockConflict; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_lookup". -/// -- (BOOL)isPathLookup; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_write_permission". -/// -/// @return Whether the union's current tag state has value -/// "no_write_permission". -/// -- (BOOL)isNoWritePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_be_locked". -/// -/// @return Whether the union's current tag state has value "cannot_be_locked". -/// -- (BOOL)isCannotBeLocked; - -/// -/// Retrieves whether the union's current tag state has value "file_not_shared". -/// -/// @return Whether the union's current tag state has value "file_not_shared". -/// -- (BOOL)isFileNotShared; - -/// -/// Retrieves whether the union's current tag state has value "lock_conflict". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `lockConflict` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "lock_conflict". -/// -- (BOOL)isLockConflict; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESLockFileError` union. -/// -@interface DBFILESLockFileErrorSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileError` instances. -/// -/// @param instance An instance of the `DBFILESLockFileError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileError *)instance; - -/// -/// Deserializes `DBFILESLockFileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileError` API object. -/// -/// @return An instantiation of the `DBFILESLockFileError` object. -/// -+ (DBFILESLockFileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileResult.h deleted file mode 100644 index 3e835137..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileResult.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLock; -@class DBFILESLockFileResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the file. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -/// The file lock state after the operation. -@property (nonatomic, readonly) DBFILESFileLock *lock; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the file. -/// @param lock The file lock state after the operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata lock:(DBFILESFileLock *)lock; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileResult` struct. -/// -@interface DBFILESLockFileResultSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileResult` instances. -/// -/// @param instance An instance of the `DBFILESLockFileResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileResult *)instance; - -/// -/// Deserializes `DBFILESLockFileResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileResult` API object. -/// -/// @return An instantiation of the `DBFILESLockFileResult` object. -/// -+ (DBFILESLockFileResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileResultEntry.h deleted file mode 100644 index 72407705..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLockFileResultEntry.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileError; -@class DBFILESLockFileResult; -@class DBFILESLockFileResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESLockFileResultEntryTag` enum type represents the possible tag -/// states with which the `DBFILESLockFileResultEntry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESLockFileResultEntryTag) { - /// (no description). - DBFILESLockFileResultEntrySuccess, - - /// (no description). - DBFILESLockFileResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESLockFileResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLockFileResult *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLockFileError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESLockFileResult *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESLockFileError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESLockFileResultEntry` union. -/// -@interface DBFILESLockFileResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESLockFileResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESLockFileResultEntry` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileResultEntry *)instance; - -/// -/// Deserializes `DBFILESLockFileResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESLockFileResultEntry` object. -/// -+ (DBFILESLockFileResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLookupError.h deleted file mode 100644 index 3ff80466..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESLookupError.h +++ /dev/null @@ -1,265 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESLookupErrorTag` enum type represents the possible tag states -/// with which the `DBFILESLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESLookupErrorTag) { - /// The given path does not satisfy the required path format. Please refer - /// to the Path formats documentation - /// https://www.dropbox.com/developers/documentation/http/documentation#path-formats - /// for more information. - DBFILESLookupErrorMalformedPath, - - /// There is nothing at the given path. - DBFILESLookupErrorNotFound, - - /// We were expecting a file, but the given path refers to something that - /// isn't a file. - DBFILESLookupErrorNotFile, - - /// We were expecting a folder, but the given path refers to something that - /// isn't a folder. - DBFILESLookupErrorNotFolder, - - /// The file cannot be transferred because the content is restricted. For - /// example, we might restrict a file due to legal requirements. - DBFILESLookupErrorRestrictedContent, - - /// This operation is not supported for this content type. - DBFILESLookupErrorUnsupportedContentType, - - /// The given path is locked. - DBFILESLookupErrorLocked, - - /// (no description). - DBFILESLookupErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESLookupErrorTag tag; - -/// The given path does not satisfy the required path format. Please refer to -/// the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. @note Ensure the `isMalformedPath` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *malformedPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_path". -/// -/// Description of the "malformed_path" tag state: The given path does not -/// satisfy the required path format. Please refer to the Path formats -/// documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @param malformedPath The given path does not satisfy the required path -/// format. Please refer to the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedPath:(nullable NSString *)malformedPath; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: There is nothing at the given -/// path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_file". -/// -/// Description of the "not_file" tag state: We were expecting a file, but the -/// given path refers to something that isn't a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFile; - -/// -/// Initializes union class with tag state of "not_folder". -/// -/// Description of the "not_folder" tag state: We were expecting a folder, but -/// the given path refers to something that isn't a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFolder; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: The file cannot be -/// transferred because the content is restricted. For example, we might -/// restrict a file due to legal requirements. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "unsupported_content_type". -/// -/// Description of the "unsupported_content_type" tag state: This operation is -/// not supported for this content type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedContentType; - -/// -/// Initializes union class with tag state of "locked". -/// -/// Description of the "locked" tag state: The given path is locked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_path". -/// -- (BOOL)isMalformedPath; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_file". -/// -/// @return Whether the union's current tag state has value "not_file". -/// -- (BOOL)isNotFile; - -/// -/// Retrieves whether the union's current tag state has value "not_folder". -/// -/// @return Whether the union's current tag state has value "not_folder". -/// -- (BOOL)isNotFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_content_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_content_type". -/// -- (BOOL)isUnsupportedContentType; - -/// -/// Retrieves whether the union's current tag state has value "locked". -/// -/// @return Whether the union's current tag state has value "locked". -/// -- (BOOL)isLocked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESLookupError` union. -/// -@interface DBFILESLookupErrorSerializer : NSObject - -/// -/// Serializes `DBFILESLookupError` instances. -/// -/// @param instance An instance of the `DBFILESLookupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLookupError *)instance; - -/// -/// Deserializes `DBFILESLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLookupError` API object. -/// -/// @return An instantiation of the `DBFILESLookupError` object. -/// -+ (DBFILESLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMediaInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMediaInfo.h deleted file mode 100644 index 57b73039..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMediaInfo.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMediaInfo; -@class DBFILESMediaMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MediaInfo` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMediaInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMediaInfoTag` enum type represents the possible tag states with -/// which the `DBFILESMediaInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMediaInfoTag) { - /// Indicate the photo/video is still under processing and metadata is not - /// available yet. - DBFILESMediaInfoPending, - - /// The metadata for the photo/video. - DBFILESMediaInfoMetadata, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMediaInfoTag tag; - -/// The metadata for the photo/video. @note Ensure the `isMetadata` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMediaMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "pending". -/// -/// Description of the "pending" tag state: Indicate the photo/video is still -/// under processing and metadata is not available yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPending; - -/// -/// Initializes union class with tag state of "metadata". -/// -/// Description of the "metadata" tag state: The metadata for the photo/video. -/// -/// @param metadata The metadata for the photo/video. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMediaMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "pending". -/// -/// @return Whether the union's current tag state has value "pending". -/// -- (BOOL)isPending; - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMediaInfo` union. -/// -@interface DBFILESMediaInfoSerializer : NSObject - -/// -/// Serializes `DBFILESMediaInfo` instances. -/// -/// @param instance An instance of the `DBFILESMediaInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMediaInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMediaInfo *)instance; - -/// -/// Deserializes `DBFILESMediaInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMediaInfo` API object. -/// -/// @return An instantiation of the `DBFILESMediaInfo` object. -/// -+ (DBFILESMediaInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMediaMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMediaMetadata.h deleted file mode 100644 index 14474efd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMediaMetadata.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; -@class DBFILESGpsCoordinates; -@class DBFILESMediaMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MediaMetadata` struct. -/// -/// Metadata for a photo or video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMediaMetadata : NSObject - -#pragma mark - Instance fields - -/// Dimension of the photo/video. -@property (nonatomic, readonly, nullable) DBFILESDimensions *dimensions; - -/// The GPS coordinate of the photo/video. -@property (nonatomic, readonly, nullable) DBFILESGpsCoordinates *location; - -/// The timestamp when the photo/video is taken. -@property (nonatomic, readonly, nullable) NSDate *timeTaken; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dimensions Dimension of the photo/video. -/// @param location The GPS coordinate of the photo/video. -/// @param timeTaken The timestamp when the photo/video is taken. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensions:(nullable DBFILESDimensions *)dimensions - location:(nullable DBFILESGpsCoordinates *)location - timeTaken:(nullable NSDate *)timeTaken; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MediaMetadata` struct. -/// -@interface DBFILESMediaMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESMediaMetadata` instances. -/// -/// @param instance An instance of the `DBFILESMediaMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMediaMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMediaMetadata *)instance; - -/// -/// Deserializes `DBFILESMediaMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMediaMetadata` API object. -/// -/// @return An instantiation of the `DBFILESMediaMetadata` object. -/// -+ (DBFILESMediaMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMetadata.h deleted file mode 100644 index 4cfe2ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMetadata.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Metadata` struct. -/// -/// Metadata for a file or folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMetadata : NSObject - -#pragma mark - Instance fields - -/// The last component of the path (including extension). This never contains a -/// slash. -@property (nonatomic, readonly, copy) NSString *name; - -/// The lowercased full path in the user's Dropbox. This always starts with a -/// slash. This field will be null if the file or folder is not mounted. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// The cased path to be used for display purposes only. In rare instances the -/// casing will not correctly match the user's filesystem, but this behavior -/// will match the path provided in the Core API v1, and at least the last path -/// component will have the correct casing. Changes to only the casing of paths -/// won't be returned by `listFolderContinue`. This field will be null if the -/// file or folder is not mounted. -@property (nonatomic, readonly, copy, nullable) NSString *pathDisplay; - -/// Please use `parentSharedFolderId` in `DBFILESFileSharingInfo` or -/// `parentSharedFolderId` in `DBFILESFolderSharingInfo` instead. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// The preview URL of the file. -@property (nonatomic, readonly, copy, nullable) NSString *previewUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Metadata` struct. -/// -@interface DBFILESMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESMetadata` instances. -/// -/// @param instance An instance of the `DBFILESMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the `DBFILESMetadata` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMetadata *)instance; - -/// -/// Deserializes `DBFILESMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMetadata` API object. -/// -/// @return An instantiation of the `DBFILESMetadata` object. -/// -+ (DBFILESMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMetadataV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMetadataV2.h deleted file mode 100644 index 22811903..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMetadataV2.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESMetadataV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MetadataV2` union. -/// -/// Metadata for a file, folder or other resource types. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMetadataV2 : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMetadataV2Tag` enum type represents the possible tag states with -/// which the `DBFILESMetadataV2` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMetadataV2Tag) { - /// (no description). - DBFILESMetadataV2Metadata, - - /// (no description). - DBFILESMetadataV2Other, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMetadataV2Tag tag; - -/// (no description). @note Ensure the `isMetadata` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "metadata". -/// -/// @param metadata (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMetadataV2` union. -/// -@interface DBFILESMetadataV2Serializer : NSObject - -/// -/// Serializes `DBFILESMetadataV2` instances. -/// -/// @param instance An instance of the `DBFILESMetadataV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMetadataV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMetadataV2 *)instance; - -/// -/// Deserializes `DBFILESMetadataV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMetadataV2` API object. -/// -/// @return An instantiation of the `DBFILESMetadataV2` object. -/// -+ (DBFILESMetadataV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMinimalFileLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMinimalFileLinkMetadata.h deleted file mode 100644 index c48552fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMinimalFileLinkMetadata.h +++ /dev/null @@ -1,112 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMinimalFileLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MinimalFileLinkMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMinimalFileLinkMetadata : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// Unique identifier for the linked file. -@property (nonatomic, readonly, copy, nullable) NSString *id_; - -/// Full path in the user's Dropbox. This always starts with a slash. This field -/// will only be present only if the linked file is in the authenticated user's -/// Dropbox. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// A unique identifier for the current revision of a file. This field is the -/// same rev as elsewhere in the API and can be used to detect changes and avoid -/// conflicts. -@property (nonatomic, readonly, copy) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param id_ Unique identifier for the linked file. -/// @param path Full path in the user's Dropbox. This always starts with a -/// slash. This field will only be present only if the linked file is in the -/// authenticated user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - rev:(NSString *)rev - id_:(nullable NSString *)id_ - path:(nullable NSString *)path; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url rev:(NSString *)rev; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MinimalFileLinkMetadata` struct. -/// -@interface DBFILESMinimalFileLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESMinimalFileLinkMetadata` instances. -/// -/// @param instance An instance of the `DBFILESMinimalFileLinkMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMinimalFileLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMinimalFileLinkMetadata *)instance; - -/// -/// Deserializes `DBFILESMinimalFileLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMinimalFileLinkMetadata` API object. -/// -/// @return An instantiation of the `DBFILESMinimalFileLinkMetadata` object. -/// -+ (DBFILESMinimalFileLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveBatchArg.h deleted file mode 100644 index 232846e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveBatchArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESRelocationBatchArgBase.h" -#import "DBSerializableProtocol.h" - -@class DBFILESMoveBatchArg; -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MoveBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMoveBatchArg : DBFILESRelocationBatchArgBase - -#pragma mark - Instance fields - -/// Allow moves by owner even if it would result in an ownership transfer for -/// the content being moved. This does not apply to copies. -@property (nonatomic, readonly) NSNumber *allowOwnershipTransfer; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox -/// server try to autorename that file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result -/// in an ownership transfer for the content being moved. This does not apply to -/// copies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MoveBatchArg` struct. -/// -@interface DBFILESMoveBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESMoveBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESMoveBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMoveBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMoveBatchArg *)instance; - -/// -/// Deserializes `DBFILESMoveBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMoveBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESMoveBatchArg` object. -/// -+ (DBFILESMoveBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveIntoFamilyError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveIntoFamilyError.h deleted file mode 100644 index a93ddb2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveIntoFamilyError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMoveIntoFamilyError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MoveIntoFamilyError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMoveIntoFamilyError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMoveIntoFamilyErrorTag` enum type represents the possible tag -/// states with which the `DBFILESMoveIntoFamilyError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMoveIntoFamilyErrorTag) { - /// Moving shared folder into Family Room folder is not allowed. - DBFILESMoveIntoFamilyErrorIsSharedFolder, - - /// (no description). - DBFILESMoveIntoFamilyErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMoveIntoFamilyErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "is_shared_folder". -/// -/// Description of the "is_shared_folder" tag state: Moving shared folder into -/// Family Room folder is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsSharedFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "is_shared_folder". -/// -/// @return Whether the union's current tag state has value "is_shared_folder". -/// -- (BOOL)isIsSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMoveIntoFamilyError` union. -/// -@interface DBFILESMoveIntoFamilyErrorSerializer : NSObject - -/// -/// Serializes `DBFILESMoveIntoFamilyError` instances. -/// -/// @param instance An instance of the `DBFILESMoveIntoFamilyError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMoveIntoFamilyError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMoveIntoFamilyError *)instance; - -/// -/// Deserializes `DBFILESMoveIntoFamilyError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMoveIntoFamilyError` API object. -/// -/// @return An instantiation of the `DBFILESMoveIntoFamilyError` object. -/// -+ (DBFILESMoveIntoFamilyError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveIntoVaultError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveIntoVaultError.h deleted file mode 100644 index b629b3ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESMoveIntoVaultError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMoveIntoVaultError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MoveIntoVaultError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMoveIntoVaultError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMoveIntoVaultErrorTag` enum type represents the possible tag -/// states with which the `DBFILESMoveIntoVaultError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMoveIntoVaultErrorTag) { - /// Moving shared folder into Vault is not allowed. - DBFILESMoveIntoVaultErrorIsSharedFolder, - - /// (no description). - DBFILESMoveIntoVaultErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMoveIntoVaultErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "is_shared_folder". -/// -/// Description of the "is_shared_folder" tag state: Moving shared folder into -/// Vault is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsSharedFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "is_shared_folder". -/// -/// @return Whether the union's current tag state has value "is_shared_folder". -/// -- (BOOL)isIsSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMoveIntoVaultError` union. -/// -@interface DBFILESMoveIntoVaultErrorSerializer : NSObject - -/// -/// Serializes `DBFILESMoveIntoVaultError` instances. -/// -/// @param instance An instance of the `DBFILESMoveIntoVaultError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMoveIntoVaultError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMoveIntoVaultError *)instance; - -/// -/// Deserializes `DBFILESMoveIntoVaultError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMoveIntoVaultError` API object. -/// -/// @return An instantiation of the `DBFILESMoveIntoVaultError` object. -/// -+ (DBFILESMoveIntoVaultError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperContentError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperContentError.h deleted file mode 100644 index fdd1b252..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperContentError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperContentError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperContentError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperContentErrorTag` enum type represents the possible tag -/// states with which the `DBFILESPaperContentError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperContentErrorTag) { - /// Your account does not have permissions to edit Paper docs. - DBFILESPaperContentErrorInsufficientPermissions, - - /// The provided content was malformed and cannot be imported to Paper. - DBFILESPaperContentErrorContentMalformed, - - /// The Paper doc would be too large, split the content into multiple docs. - DBFILESPaperContentErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBFILESPaperContentErrorImageSizeExceeded, - - /// (no description). - DBFILESPaperContentErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperContentErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to edit Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The Paper doc would be -/// too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperContentError` union. -/// -@interface DBFILESPaperContentErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPaperContentError` instances. -/// -/// @param instance An instance of the `DBFILESPaperContentError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperContentError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperContentError *)instance; - -/// -/// Deserializes `DBFILESPaperContentError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperContentError` API object. -/// -/// @return An instantiation of the `DBFILESPaperContentError` object. -/// -+ (DBFILESPaperContentError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateArg.h deleted file mode 100644 index 4d71ee98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESImportFormat; -@class DBFILESPaperCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperCreateArg : NSObject - -#pragma mark - Instance fields - -/// The fully qualified path to the location in the user's Dropbox where the -/// Paper Doc should be created. This should include the document's title and -/// end with .paper. -@property (nonatomic, readonly, copy) NSString *path; - -/// The format of the provided data. -@property (nonatomic, readonly) DBFILESImportFormat *importFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The fully qualified path to the location in the user's Dropbox -/// where the Paper Doc should be created. This should include the document's -/// title and end with .paper. -/// @param importFormat The format of the provided data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path importFormat:(DBFILESImportFormat *)importFormat; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperCreateArg` struct. -/// -@interface DBFILESPaperCreateArgSerializer : NSObject - -/// -/// Serializes `DBFILESPaperCreateArg` instances. -/// -/// @param instance An instance of the `DBFILESPaperCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperCreateArg *)instance; - -/// -/// Deserializes `DBFILESPaperCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperCreateArg` API object. -/// -/// @return An instantiation of the `DBFILESPaperCreateArg` object. -/// -+ (DBFILESPaperCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateError.h deleted file mode 100644 index 05feeeb7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateError.h +++ /dev/null @@ -1,269 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperCreateErrorTag` enum type represents the possible tag -/// states with which the `DBFILESPaperCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperCreateErrorTag) { - /// Your account does not have permissions to edit Paper docs. - DBFILESPaperCreateErrorInsufficientPermissions, - - /// The provided content was malformed and cannot be imported to Paper. - DBFILESPaperCreateErrorContentMalformed, - - /// The Paper doc would be too large, split the content into multiple docs. - DBFILESPaperCreateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBFILESPaperCreateErrorImageSizeExceeded, - - /// (no description). - DBFILESPaperCreateErrorOther, - - /// The file could not be saved to the specified location. - DBFILESPaperCreateErrorInvalidPath, - - /// The user's email must be verified to create Paper docs. - DBFILESPaperCreateErrorEmailUnverified, - - /// The file path must end in .paper. - DBFILESPaperCreateErrorInvalidFileExtension, - - /// Paper is disabled for your team. - DBFILESPaperCreateErrorPaperDisabled, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to edit Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The Paper doc would be -/// too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_path". -/// -/// Description of the "invalid_path" tag state: The file could not be saved to -/// the specified location. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidPath; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: The user's email must be -/// verified to create Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "invalid_file_extension". -/// -/// Description of the "invalid_file_extension" tag state: The file path must -/// end in .paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFileExtension; - -/// -/// Initializes union class with tag state of "paper_disabled". -/// -/// Description of the "paper_disabled" tag state: Paper is disabled for your -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDisabled; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "invalid_path". -/// -/// @return Whether the union's current tag state has value "invalid_path". -/// -- (BOOL)isInvalidPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_file_extension". -/// -/// @return Whether the union's current tag state has value -/// "invalid_file_extension". -/// -- (BOOL)isInvalidFileExtension; - -/// -/// Retrieves whether the union's current tag state has value "paper_disabled". -/// -/// @return Whether the union's current tag state has value "paper_disabled". -/// -- (BOOL)isPaperDisabled; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperCreateError` union. -/// -@interface DBFILESPaperCreateErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPaperCreateError` instances. -/// -/// @param instance An instance of the `DBFILESPaperCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperCreateError *)instance; - -/// -/// Deserializes `DBFILESPaperCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperCreateError` API object. -/// -/// @return An instantiation of the `DBFILESPaperCreateError` object. -/// -+ (DBFILESPaperCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateResult.h deleted file mode 100644 index 3b584ab3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperCreateResult.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperCreateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperCreateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperCreateResult : NSObject - -#pragma mark - Instance fields - -/// URL to open the Paper Doc. -@property (nonatomic, readonly, copy) NSString *url; - -/// The fully qualified path the Paper Doc was actually created at. -@property (nonatomic, readonly, copy) NSString *resultPath; - -/// The id to use in Dropbox APIs when referencing the Paper Doc. -@property (nonatomic, readonly, copy) NSString *fileId; - -/// The current doc revision. -@property (nonatomic, readonly) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL to open the Paper Doc. -/// @param resultPath The fully qualified path the Paper Doc was actually -/// created at. -/// @param fileId The id to use in Dropbox APIs when referencing the Paper Doc. -/// @param paperRevision The current doc revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - resultPath:(NSString *)resultPath - fileId:(NSString *)fileId - paperRevision:(NSNumber *)paperRevision; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperCreateResult` struct. -/// -@interface DBFILESPaperCreateResultSerializer : NSObject - -/// -/// Serializes `DBFILESPaperCreateResult` instances. -/// -/// @param instance An instance of the `DBFILESPaperCreateResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperCreateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperCreateResult *)instance; - -/// -/// Deserializes `DBFILESPaperCreateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperCreateResult` API object. -/// -/// @return An instantiation of the `DBFILESPaperCreateResult` object. -/// -+ (DBFILESPaperCreateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperDocUpdatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperDocUpdatePolicy.h deleted file mode 100644 index 395ea229..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperDocUpdatePolicy.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperDocUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdatePolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperDocUpdatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperDocUpdatePolicyTag` enum type represents the possible tag -/// states with which the `DBFILESPaperDocUpdatePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperDocUpdatePolicyTag) { - /// Sets the doc content to the provided content if the provided - /// paper_revision matches the latest doc revision. Otherwise, returns an - /// error. - DBFILESPaperDocUpdatePolicyUpdate, - - /// Sets the doc content to the provided content without checking - /// paper_revision. - DBFILESPaperDocUpdatePolicyOverwrite, - - /// Adds the provided content to the beginning of the doc without checking - /// paper_revision. - DBFILESPaperDocUpdatePolicyPrepend, - - /// Adds the provided content to the end of the doc without checking - /// paper_revision. - DBFILESPaperDocUpdatePolicyAppend, - - /// (no description). - DBFILESPaperDocUpdatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperDocUpdatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "update". -/// -/// Description of the "update" tag state: Sets the doc content to the provided -/// content if the provided paper_revision matches the latest doc revision. -/// Otherwise, returns an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdate; - -/// -/// Initializes union class with tag state of "overwrite". -/// -/// Description of the "overwrite" tag state: Sets the doc content to the -/// provided content without checking paper_revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverwrite; - -/// -/// Initializes union class with tag state of "prepend". -/// -/// Description of the "prepend" tag state: Adds the provided content to the -/// beginning of the doc without checking paper_revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrepend; - -/// -/// Initializes union class with tag state of "append". -/// -/// Description of the "append" tag state: Adds the provided content to the end -/// of the doc without checking paper_revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppend; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "update". -/// -/// @return Whether the union's current tag state has value "update". -/// -- (BOOL)isUpdate; - -/// -/// Retrieves whether the union's current tag state has value "overwrite". -/// -/// @return Whether the union's current tag state has value "overwrite". -/// -- (BOOL)isOverwrite; - -/// -/// Retrieves whether the union's current tag state has value "prepend". -/// -/// @return Whether the union's current tag state has value "prepend". -/// -- (BOOL)isPrepend; - -/// -/// Retrieves whether the union's current tag state has value "append". -/// -/// @return Whether the union's current tag state has value "append". -/// -- (BOOL)isAppend; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperDocUpdatePolicy` union. -/// -@interface DBFILESPaperDocUpdatePolicySerializer : NSObject - -/// -/// Serializes `DBFILESPaperDocUpdatePolicy` instances. -/// -/// @param instance An instance of the `DBFILESPaperDocUpdatePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperDocUpdatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperDocUpdatePolicy *)instance; - -/// -/// Deserializes `DBFILESPaperDocUpdatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperDocUpdatePolicy` API object. -/// -/// @return An instantiation of the `DBFILESPaperDocUpdatePolicy` object. -/// -+ (DBFILESPaperDocUpdatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateArg.h deleted file mode 100644 index ae2c2ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateArg.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESImportFormat; -@class DBFILESPaperDocUpdatePolicy; -@class DBFILESPaperUpdateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperUpdateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperUpdateArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to update. The path must correspond to a Paper -/// doc or an error will be returned. -@property (nonatomic, readonly, copy) NSString *path; - -/// The format of the provided data. -@property (nonatomic, readonly) DBFILESImportFormat *importFormat; - -/// How the provided content should be applied to the doc. -@property (nonatomic, readonly) DBFILESPaperDocUpdatePolicy *docUpdatePolicy; - -/// The latest doc revision. Required when doc_update_policy is update. This -/// value must match the current revision of the doc or error revision_mismatch -/// will be returned. -@property (nonatomic, readonly, nullable) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to update. The path must correspond -/// to a Paper doc or an error will be returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the -/// doc. -/// @param paperRevision The latest doc revision. Required when -/// doc_update_policy is update. This value must match the current revision of -/// the doc or error revision_mismatch will be returned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to update. The path must correspond -/// to a Paper doc or an error will be returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the -/// doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperUpdateArg` struct. -/// -@interface DBFILESPaperUpdateArgSerializer : NSObject - -/// -/// Serializes `DBFILESPaperUpdateArg` instances. -/// -/// @param instance An instance of the `DBFILESPaperUpdateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperUpdateArg *)instance; - -/// -/// Deserializes `DBFILESPaperUpdateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateArg` API object. -/// -/// @return An instantiation of the `DBFILESPaperUpdateArg` object. -/// -+ (DBFILESPaperUpdateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateError.h deleted file mode 100644 index 2f377475..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateError.h +++ /dev/null @@ -1,274 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESPaperUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperUpdateErrorTag` enum type represents the possible tag -/// states with which the `DBFILESPaperUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperUpdateErrorTag) { - /// Your account does not have permissions to edit Paper docs. - DBFILESPaperUpdateErrorInsufficientPermissions, - - /// The provided content was malformed and cannot be imported to Paper. - DBFILESPaperUpdateErrorContentMalformed, - - /// The Paper doc would be too large, split the content into multiple docs. - DBFILESPaperUpdateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBFILESPaperUpdateErrorImageSizeExceeded, - - /// (no description). - DBFILESPaperUpdateErrorOther, - - /// (no description). - DBFILESPaperUpdateErrorPath, - - /// The provided revision does not match the document head. - DBFILESPaperUpdateErrorRevisionMismatch, - - /// This operation is not allowed on archived Paper docs. - DBFILESPaperUpdateErrorDocArchived, - - /// This operation is not allowed on deleted Paper docs. - DBFILESPaperUpdateErrorDocDeleted, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperUpdateErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to edit Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The Paper doc would be -/// too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "revision_mismatch". -/// -/// Description of the "revision_mismatch" tag state: The provided revision does -/// not match the document head. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevisionMismatch; - -/// -/// Initializes union class with tag state of "doc_archived". -/// -/// Description of the "doc_archived" tag state: This operation is not allowed -/// on archived Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocArchived; - -/// -/// Initializes union class with tag state of "doc_deleted". -/// -/// Description of the "doc_deleted" tag state: This operation is not allowed on -/// deleted Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocDeleted; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "revision_mismatch". -/// -/// @return Whether the union's current tag state has value "revision_mismatch". -/// -- (BOOL)isRevisionMismatch; - -/// -/// Retrieves whether the union's current tag state has value "doc_archived". -/// -/// @return Whether the union's current tag state has value "doc_archived". -/// -- (BOOL)isDocArchived; - -/// -/// Retrieves whether the union's current tag state has value "doc_deleted". -/// -/// @return Whether the union's current tag state has value "doc_deleted". -/// -- (BOOL)isDocDeleted; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperUpdateError` union. -/// -@interface DBFILESPaperUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPaperUpdateError` instances. -/// -/// @param instance An instance of the `DBFILESPaperUpdateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperUpdateError *)instance; - -/// -/// Deserializes `DBFILESPaperUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateError` API object. -/// -/// @return An instantiation of the `DBFILESPaperUpdateError` object. -/// -+ (DBFILESPaperUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateResult.h deleted file mode 100644 index 2b13136b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPaperUpdateResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperUpdateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperUpdateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperUpdateResult : NSObject - -#pragma mark - Instance fields - -/// The current doc revision. -@property (nonatomic, readonly) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param paperRevision The current doc revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperRevision:(NSNumber *)paperRevision; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperUpdateResult` struct. -/// -@interface DBFILESPaperUpdateResultSerializer : NSObject - -/// -/// Serializes `DBFILESPaperUpdateResult` instances. -/// -/// @param instance An instance of the `DBFILESPaperUpdateResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperUpdateResult *)instance; - -/// -/// Deserializes `DBFILESPaperUpdateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateResult` API object. -/// -/// @return An instantiation of the `DBFILESPaperUpdateResult` object. -/// -+ (DBFILESPaperUpdateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPathOrLink.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPathOrLink.h deleted file mode 100644 index 9d6ca900..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPathOrLink.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPathOrLink; -@class DBFILESSharedLinkFileInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathOrLink` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPathOrLink : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPathOrLinkTag` enum type represents the possible tag states with -/// which the `DBFILESPathOrLink` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPathOrLinkTag) { - /// (no description). - DBFILESPathOrLinkPath, - - /// (no description). - DBFILESPathOrLinkLink, - - /// (no description). - DBFILESPathOrLinkOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPathOrLinkTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *path; - -/// (no description). @note Ensure the `isLink` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSharedLinkFileInfo *link; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -/// -/// Initializes union class with tag state of "link". -/// -/// @param link (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLink:(DBFILESSharedLinkFileInfo *)link; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `link` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "link". -/// -- (BOOL)isLink; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPathOrLink` union. -/// -@interface DBFILESPathOrLinkSerializer : NSObject - -/// -/// Serializes `DBFILESPathOrLink` instances. -/// -/// @param instance An instance of the `DBFILESPathOrLink` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPathOrLink` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPathOrLink *)instance; - -/// -/// Deserializes `DBFILESPathOrLink` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPathOrLink` API object. -/// -/// @return An instantiation of the `DBFILESPathOrLink` object. -/// -+ (DBFILESPathOrLink *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPathToTags.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPathToTags.h deleted file mode 100644 index 5e43347c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPathToTags.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPathToTags; -@class DBFILESTag; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathToTags` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPathToTags : NSObject - -#pragma mark - Instance fields - -/// Path of the item. -@property (nonatomic, readonly, copy) NSString *path; - -/// Tags assigned to this item. -@property (nonatomic, readonly) NSArray *tags; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path of the item. -/// @param tags Tags assigned to this item. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path tags:(NSArray *)tags; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PathToTags` struct. -/// -@interface DBFILESPathToTagsSerializer : NSObject - -/// -/// Serializes `DBFILESPathToTags` instances. -/// -/// @param instance An instance of the `DBFILESPathToTags` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPathToTags` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPathToTags *)instance; - -/// -/// Deserializes `DBFILESPathToTags` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPathToTags` API object. -/// -/// @return An instantiation of the `DBFILESPathToTags` object. -/// -+ (DBFILESPathToTags *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPhotoMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPhotoMetadata.h deleted file mode 100644 index 61fe5495..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPhotoMetadata.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMediaMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; -@class DBFILESGpsCoordinates; -@class DBFILESPhotoMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PhotoMetadata` struct. -/// -/// Metadata for a photo. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPhotoMetadata : DBFILESMediaMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dimensions Dimension of the photo/video. -/// @param location The GPS coordinate of the photo/video. -/// @param timeTaken The timestamp when the photo/video is taken. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensions:(nullable DBFILESDimensions *)dimensions - location:(nullable DBFILESGpsCoordinates *)location - timeTaken:(nullable NSDate *)timeTaken; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PhotoMetadata` struct. -/// -@interface DBFILESPhotoMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESPhotoMetadata` instances. -/// -/// @param instance An instance of the `DBFILESPhotoMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPhotoMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPhotoMetadata *)instance; - -/// -/// Deserializes `DBFILESPhotoMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPhotoMetadata` API object. -/// -/// @return An instantiation of the `DBFILESPhotoMetadata` object. -/// -+ (DBFILESPhotoMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewArg.h deleted file mode 100644 index 974cd3be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewArg.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPreviewArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PreviewArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPreviewArg : NSObject - -#pragma mark - Instance fields - -/// The path of the file to preview. -@property (nonatomic, readonly, copy) NSString *path; - -/// Please specify revision in path instead. -@property (nonatomic, readonly, copy, nullable) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path rev:(nullable NSString *)rev; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of the file to preview. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PreviewArg` struct. -/// -@interface DBFILESPreviewArgSerializer : NSObject - -/// -/// Serializes `DBFILESPreviewArg` instances. -/// -/// @param instance An instance of the `DBFILESPreviewArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPreviewArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPreviewArg *)instance; - -/// -/// Deserializes `DBFILESPreviewArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPreviewArg` API object. -/// -/// @return An instantiation of the `DBFILESPreviewArg` object. -/// -+ (DBFILESPreviewArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewError.h deleted file mode 100644 index d0d4c835..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewError.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESPreviewError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PreviewError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPreviewError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPreviewErrorTag` enum type represents the possible tag states -/// with which the `DBFILESPreviewError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPreviewErrorTag) { - /// An error occurs when downloading metadata for the file. - DBFILESPreviewErrorPath, - - /// This preview generation is still in progress and the file is not ready - /// for preview yet. - DBFILESPreviewErrorInProgress, - - /// The file extension is not supported preview generation. - DBFILESPreviewErrorUnsupportedExtension, - - /// The file content is not supported for preview generation. - DBFILESPreviewErrorUnsupportedContent, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPreviewErrorTag tag; - -/// An error occurs when downloading metadata for the file. @note Ensure the -/// `isPath` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: An error occurs when downloading -/// metadata for the file. -/// -/// @param path An error occurs when downloading metadata for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: This preview generation is still -/// in progress and the file is not ready for preview yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "unsupported_extension". -/// -/// Description of the "unsupported_extension" tag state: The file extension is -/// not supported preview generation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedExtension; - -/// -/// Initializes union class with tag state of "unsupported_content". -/// -/// Description of the "unsupported_content" tag state: The file content is not -/// supported for preview generation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedContent; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_extension". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_extension". -/// -- (BOOL)isUnsupportedExtension; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_content". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_content". -/// -- (BOOL)isUnsupportedContent; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPreviewError` union. -/// -@interface DBFILESPreviewErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPreviewError` instances. -/// -/// @param instance An instance of the `DBFILESPreviewError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPreviewError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPreviewError *)instance; - -/// -/// Deserializes `DBFILESPreviewError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPreviewError` API object. -/// -/// @return An instantiation of the `DBFILESPreviewError` object. -/// -+ (DBFILESPreviewError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewResult.h deleted file mode 100644 index 320b4e98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESPreviewResult.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESMinimalFileLinkMetadata; -@class DBFILESPreviewResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PreviewResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPreviewResult : NSObject - -#pragma mark - Instance fields - -/// Metadata corresponding to the file received as an argument. Will be -/// populated if the endpoint is called with a path (ReadPath). -@property (nonatomic, readonly, nullable) DBFILESFileMetadata *fileMetadata; - -/// Minimal metadata corresponding to the file received as an argument. Will be -/// populated if the endpoint is called using a shared link -/// (SharedLinkFileInfo). -@property (nonatomic, readonly, nullable) DBFILESMinimalFileLinkMetadata *linkMetadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileMetadata Metadata corresponding to the file received as an -/// argument. Will be populated if the endpoint is called with a path -/// (ReadPath). -/// @param linkMetadata Minimal metadata corresponding to the file received as -/// an argument. Will be populated if the endpoint is called using a shared link -/// (SharedLinkFileInfo). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMetadata:(nullable DBFILESFileMetadata *)fileMetadata - linkMetadata:(nullable DBFILESMinimalFileLinkMetadata *)linkMetadata; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PreviewResult` struct. -/// -@interface DBFILESPreviewResultSerializer : NSObject - -/// -/// Serializes `DBFILESPreviewResult` instances. -/// -/// @param instance An instance of the `DBFILESPreviewResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPreviewResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPreviewResult *)instance; - -/// -/// Deserializes `DBFILESPreviewResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPreviewResult` API object. -/// -/// @return An instantiation of the `DBFILESPreviewResult` object. -/// -+ (DBFILESPreviewResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationArg.h deleted file mode 100644 index 4daf85d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationArg.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESRelocationPath.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationArg : DBFILESRelocationPath - -#pragma mark - Instance fields - -/// This flag has no effect. -@property (nonatomic, readonly) NSNumber *allowSharedFolder; - -/// If there's a conflict, have the Dropbox server try to autorename the file to -/// avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -/// Allow moves by owner even if it would result in an ownership transfer for -/// the content being moved. This does not apply to copies. -@property (nonatomic, readonly) NSNumber *allowOwnershipTransfer; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fromPath Path in the user's Dropbox to be copied or moved. -/// @param toPath Path in the user's Dropbox that is the destination. -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to -/// autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result -/// in an ownership transfer for the content being moved. This does not apply to -/// copies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromPath:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param fromPath Path in the user's Dropbox to be copied or moved. -/// @param toPath Path in the user's Dropbox that is the destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromPath:(NSString *)fromPath toPath:(NSString *)toPath; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationArg` struct. -/// -@interface DBFILESRelocationArgSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationArg` instances. -/// -/// @param instance An instance of the `DBFILESRelocationArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationArg *)instance; - -/// -/// Deserializes `DBFILESRelocationArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationArg` API object. -/// -/// @return An instantiation of the `DBFILESRelocationArg` object. -/// -+ (DBFILESRelocationArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchArg.h deleted file mode 100644 index 64c58839..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchArg.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESRelocationBatchArgBase.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchArg; -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchArg : DBFILESRelocationBatchArgBase - -#pragma mark - Instance fields - -/// This flag has no effect. -@property (nonatomic, readonly) NSNumber *allowSharedFolder; - -/// Allow moves by owner even if it would result in an ownership transfer for -/// the content being moved. This does not apply to copies. -@property (nonatomic, readonly) NSNumber *allowOwnershipTransfer; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox -/// server try to autorename that file to avoid the conflict. -/// @param allowSharedFolder This flag has no effect. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result -/// in an ownership transfer for the content being moved. This does not apply to -/// copies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchArg` struct. -/// -@interface DBFILESRelocationBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchArg *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchArg` object. -/// -+ (DBFILESRelocationBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchArgBase.h deleted file mode 100644 index efaa4c19..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchArgBase.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchArgBase; -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchArgBase : NSObject - -#pragma mark - Instance fields - -/// List of entries to be moved or copied. Each entry is RelocationPath. -@property (nonatomic, readonly) NSArray *entries; - -/// If there's a conflict with any file, have the Dropbox server try to -/// autorename that file to avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox -/// server try to autorename that file to avoid the conflict. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries autorename:(nullable NSNumber *)autorename; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchArgBase` struct. -/// -@interface DBFILESRelocationBatchArgBaseSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchArgBase` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchArgBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchArgBase *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArgBase` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchArgBase` object. -/// -+ (DBFILESRelocationBatchArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchError.h deleted file mode 100644 index 2f453afb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchError.h +++ /dev/null @@ -1,475 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESRelocationBatchError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESRelocationBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchErrorTag) { - /// (no description). - DBFILESRelocationBatchErrorFromLookup, - - /// (no description). - DBFILESRelocationBatchErrorFromWrite, - - /// (no description). - DBFILESRelocationBatchErrorTo, - - /// Shared folders can't be copied. - DBFILESRelocationBatchErrorCantCopySharedFolder, - - /// Your move operation would result in nested shared folders. This is not - /// allowed. - DBFILESRelocationBatchErrorCantNestSharedFolder, - - /// You cannot move a folder into itself. - DBFILESRelocationBatchErrorCantMoveFolderIntoItself, - - /// The operation would involve more than 10,000 files and folders. - DBFILESRelocationBatchErrorTooManyFiles, - - /// There are duplicated/nested paths among `fromPath` in - /// `DBFILESRelocationArg` and `toPath` in `DBFILESRelocationArg`. - DBFILESRelocationBatchErrorDuplicatedOrNestedPaths, - - /// Your move operation would result in an ownership transfer. You may - /// reissue the request with the field `allowOwnershipTransfer` in - /// `DBFILESRelocationArg` to true. - DBFILESRelocationBatchErrorCantTransferOwnership, - - /// The current user does not have enough space to move or copy the files. - DBFILESRelocationBatchErrorInsufficientQuota, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESRelocationBatchErrorInternalError, - - /// Can't move the shared folder to the given destination. - DBFILESRelocationBatchErrorCantMoveSharedFolder, - - /// Some content cannot be moved into Vault under certain circumstances, see - /// detailed error. - DBFILESRelocationBatchErrorCantMoveIntoVault, - - /// Some content cannot be moved into the Family Room folder under certain - /// circumstances, see detailed error. - DBFILESRelocationBatchErrorCantMoveIntoFamily, - - /// (no description). - DBFILESRelocationBatchErrorOther, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESRelocationBatchErrorTooManyWriteOperations, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchErrorTag tag; - -/// (no description). @note Ensure the `isFromLookup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *fromLookup; - -/// (no description). @note Ensure the `isFromWrite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *fromWrite; - -/// (no description). @note Ensure the `isTo` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *to; - -/// Some content cannot be moved into Vault under certain circumstances, see -/// detailed error. @note Ensure the `isCantMoveIntoVault` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMoveIntoVaultError *cantMoveIntoVault; - -/// Some content cannot be moved into the Family Room folder under certain -/// circumstances, see detailed error. @note Ensure the `isCantMoveIntoFamily` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESMoveIntoFamilyError *cantMoveIntoFamily; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_lookup". -/// -/// @param fromLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromLookup:(DBFILESLookupError *)fromLookup; - -/// -/// Initializes union class with tag state of "from_write". -/// -/// @param fromWrite (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromWrite:(DBFILESWriteError *)fromWrite; - -/// -/// Initializes union class with tag state of "to". -/// -/// @param to (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTo:(DBFILESWriteError *)to; - -/// -/// Initializes union class with tag state of "cant_copy_shared_folder". -/// -/// Description of the "cant_copy_shared_folder" tag state: Shared folders can't -/// be copied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantCopySharedFolder; - -/// -/// Initializes union class with tag state of "cant_nest_shared_folder". -/// -/// Description of the "cant_nest_shared_folder" tag state: Your move operation -/// would result in nested shared folders. This is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantNestSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_folder_into_itself". -/// -/// Description of the "cant_move_folder_into_itself" tag state: You cannot move -/// a folder into itself. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveFolderIntoItself; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// more than 10,000 files and folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "duplicated_or_nested_paths". -/// -/// Description of the "duplicated_or_nested_paths" tag state: There are -/// duplicated/nested paths among `fromPath` in `DBFILESRelocationArg` and -/// `toPath` in `DBFILESRelocationArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatedOrNestedPaths; - -/// -/// Initializes union class with tag state of "cant_transfer_ownership". -/// -/// Description of the "cant_transfer_ownership" tag state: Your move operation -/// would result in an ownership transfer. You may reissue the request with the -/// field `allowOwnershipTransfer` in `DBFILESRelocationArg` to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantTransferOwnership; - -/// -/// Initializes union class with tag state of "insufficient_quota". -/// -/// Description of the "insufficient_quota" tag state: The current user does not -/// have enough space to move or copy the files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientQuota; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "cant_move_shared_folder". -/// -/// Description of the "cant_move_shared_folder" tag state: Can't move the -/// shared folder to the given destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_into_vault". -/// -/// Description of the "cant_move_into_vault" tag state: Some content cannot be -/// moved into Vault under certain circumstances, see detailed error. -/// -/// @param cantMoveIntoVault Some content cannot be moved into Vault under -/// certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoVault:(DBFILESMoveIntoVaultError *)cantMoveIntoVault; - -/// -/// Initializes union class with tag state of "cant_move_into_family". -/// -/// Description of the "cant_move_into_family" tag state: Some content cannot be -/// moved into the Family Room folder under certain circumstances, see detailed -/// error. -/// -/// @param cantMoveIntoFamily Some content cannot be moved into the Family Room -/// folder under certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoFamily:(DBFILESMoveIntoFamilyError *)cantMoveIntoFamily; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_lookup". -/// -- (BOOL)isFromLookup; - -/// -/// Retrieves whether the union's current tag state has value "from_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_write". -/// -- (BOOL)isFromWrite; - -/// -/// Retrieves whether the union's current tag state has value "to". -/// -/// @note Call this method and ensure it returns true before accessing the `to` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "to". -/// -- (BOOL)isTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -- (BOOL)isCantCopySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -- (BOOL)isCantNestSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -- (BOOL)isCantMoveFolderIntoItself; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -/// @return Whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -- (BOOL)isDuplicatedOrNestedPaths; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -/// @return Whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -- (BOOL)isCantTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_quota". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_quota". -/// -- (BOOL)isInsufficientQuota; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -- (BOOL)isCantMoveSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_vault". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoVault` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_vault". -/// -- (BOOL)isCantMoveIntoVault; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_family". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoFamily` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_family". -/// -- (BOOL)isCantMoveIntoFamily; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchError` union. -/// -@interface DBFILESRelocationBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchError` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchError *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchError` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchError` object. -/// -+ (DBFILESRelocationBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchErrorEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchErrorEntry.h deleted file mode 100644 index 51045fc7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchErrorEntry.h +++ /dev/null @@ -1,177 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchErrorEntry; -@class DBFILESRelocationError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchErrorEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchErrorEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchErrorEntryTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchErrorEntry` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchErrorEntryTag) { - /// User errors that retry won't help. - DBFILESRelocationBatchErrorEntryRelocationError, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESRelocationBatchErrorEntryInternalError, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESRelocationBatchErrorEntryTooManyWriteOperations, - - /// (no description). - DBFILESRelocationBatchErrorEntryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchErrorEntryTag tag; - -/// User errors that retry won't help. @note Ensure the `isRelocationError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESRelocationError *relocationError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "relocation_error". -/// -/// Description of the "relocation_error" tag state: User errors that retry -/// won't help. -/// -/// @param relocationError User errors that retry won't help. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocationError:(DBFILESRelocationError *)relocationError; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "relocation_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `relocationError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "relocation_error". -/// -- (BOOL)isRelocationError; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchErrorEntry` union. -/// -@interface DBFILESRelocationBatchErrorEntrySerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchErrorEntry` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchErrorEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchErrorEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchErrorEntry *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchErrorEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchErrorEntry` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchErrorEntry` object. -/// -+ (DBFILESRelocationBatchErrorEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchJobStatus.h deleted file mode 100644 index 26bfdce5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchJobStatus.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchError; -@class DBFILESRelocationBatchJobStatus; -@class DBFILESRelocationBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchJobStatusTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESRelocationBatchJobStatusInProgress, - - /// The copy or move batch job has finished. - DBFILESRelocationBatchJobStatusComplete, - - /// The copy or move batch job has failed with exception. - DBFILESRelocationBatchJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchJobStatusTag tag; - -/// The copy or move batch job has finished. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESRelocationBatchResult *complete; - -/// The copy or move batch job has failed with exception. @note Ensure the -/// `isFailed` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The copy or move batch job has -/// finished. -/// -/// @param complete The copy or move batch job has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The copy or move batch job has failed -/// with exception. -/// -/// @param failed The copy or move batch job has failed with exception. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESRelocationBatchError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchJobStatus` union. -/// -@interface DBFILESRelocationBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchJobStatus` object. -/// -+ (DBFILESRelocationBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchLaunch.h deleted file mode 100644 index 8c98beda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchLaunch.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchLaunch; -@class DBFILESRelocationBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchLaunch` union. -/// -/// Result returned by `dCopyBatch` or `moveBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchLaunchTag` enum type represents the possible tag -/// states with which the `DBFILESRelocationBatchLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESRelocationBatchLaunchAsyncJobId, - - /// (no description). - DBFILESRelocationBatchLaunchComplete, - - /// (no description). - DBFILESRelocationBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchLaunch` union. -/// -@interface DBFILESRelocationBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchLaunch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchLaunch` object. -/// -+ (DBFILESRelocationBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResult.h deleted file mode 100644 index 6e2a0ba2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchResult; -@class DBFILESRelocationBatchResultData; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchResult` struct. -/// -@interface DBFILESRelocationBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchResult *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchResult` object. -/// -+ (DBFILESRelocationBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResultData.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResultData.h deleted file mode 100644 index 212c85f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResultData.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESRelocationBatchResultData; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchResultData` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchResultData : NSObject - -#pragma mark - Instance fields - -/// Metadata of the relocated object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the relocated object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchResultData` struct. -/// -@interface DBFILESRelocationBatchResultDataSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchResultData` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchResultData` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultData` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchResultData *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchResultData` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultData` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchResultData` object. -/// -+ (DBFILESRelocationBatchResultData *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResultEntry.h deleted file mode 100644 index 3deb14d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchResultEntry.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESRelocationBatchErrorEntry; -@class DBFILESRelocationBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchResultEntryTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchResultEntry` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchResultEntryTag) { - /// (no description). - DBFILESRelocationBatchResultEntrySuccess, - - /// (no description). - DBFILESRelocationBatchResultEntryFailure, - - /// (no description). - DBFILESRelocationBatchResultEntryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMetadata *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchErrorEntry *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESMetadata *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESRelocationBatchErrorEntry *)failure; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchResultEntry` union. -/// -@interface DBFILESRelocationBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchResultEntry` object. -/// -+ (DBFILESRelocationBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2JobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2JobStatus.h deleted file mode 100644 index 733adbdf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2JobStatus.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchV2JobStatus; -@class DBFILESRelocationBatchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchV2JobStatus` union. -/// -/// Result returned by `dCopyBatchCheck` or `moveBatchCheck` that may either be -/// in progress or completed with result for each entry. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchV2JobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchV2JobStatusTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchV2JobStatus` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchV2JobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESRelocationBatchV2JobStatusInProgress, - - /// The copy or move batch job has finished. - DBFILESRelocationBatchV2JobStatusComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchV2JobStatusTag tag; - -/// The copy or move batch job has finished. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESRelocationBatchV2Result *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The copy or move batch job has -/// finished. -/// -/// @param complete The copy or move batch job has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchV2Result *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchV2JobStatus` union. -/// -@interface DBFILESRelocationBatchV2JobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchV2JobStatus` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchV2JobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2JobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchV2JobStatus *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchV2JobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2JobStatus` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchV2JobStatus` object. -/// -+ (DBFILESRelocationBatchV2JobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2Launch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2Launch.h deleted file mode 100644 index 58198ef1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2Launch.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchV2Launch; -@class DBFILESRelocationBatchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchV2Launch` union. -/// -/// Result returned by `dCopyBatch` or `moveBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchV2Launch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchV2LaunchTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchV2Launch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchV2LaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESRelocationBatchV2LaunchAsyncJobId, - - /// (no description). - DBFILESRelocationBatchV2LaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchV2LaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchV2Result *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchV2Result *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchV2Launch` union. -/// -@interface DBFILESRelocationBatchV2LaunchSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchV2Launch` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchV2Launch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Launch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchV2Launch *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchV2Launch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Launch` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchV2Launch` object. -/// -+ (DBFILESRelocationBatchV2Launch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2Result.h deleted file mode 100644 index e155c0b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationBatchV2Result.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchResultEntry; -@class DBFILESRelocationBatchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchV2Result : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each entry in CopyBatchArg.entries or `entries` in `DBFILESMoveBatchArg` -/// will appear at the same position inside `entries` in -/// `DBFILESRelocationBatchV2Result`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in CopyBatchArg.entries or `entries` in -/// `DBFILESMoveBatchArg` will appear at the same position inside `entries` in -/// `DBFILESRelocationBatchV2Result`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchV2Result` struct. -/// -@interface DBFILESRelocationBatchV2ResultSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchV2Result` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchV2Result *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Result` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchV2Result` object. -/// -+ (DBFILESRelocationBatchV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationError.h deleted file mode 100644 index ad02e7aa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationError.h +++ /dev/null @@ -1,452 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESRelocationError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationErrorTag` enum type represents the possible tag states -/// with which the `DBFILESRelocationError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationErrorTag) { - /// (no description). - DBFILESRelocationErrorFromLookup, - - /// (no description). - DBFILESRelocationErrorFromWrite, - - /// (no description). - DBFILESRelocationErrorTo, - - /// Shared folders can't be copied. - DBFILESRelocationErrorCantCopySharedFolder, - - /// Your move operation would result in nested shared folders. This is not - /// allowed. - DBFILESRelocationErrorCantNestSharedFolder, - - /// You cannot move a folder into itself. - DBFILESRelocationErrorCantMoveFolderIntoItself, - - /// The operation would involve more than 10,000 files and folders. - DBFILESRelocationErrorTooManyFiles, - - /// There are duplicated/nested paths among `fromPath` in - /// `DBFILESRelocationArg` and `toPath` in `DBFILESRelocationArg`. - DBFILESRelocationErrorDuplicatedOrNestedPaths, - - /// Your move operation would result in an ownership transfer. You may - /// reissue the request with the field `allowOwnershipTransfer` in - /// `DBFILESRelocationArg` to true. - DBFILESRelocationErrorCantTransferOwnership, - - /// The current user does not have enough space to move or copy the files. - DBFILESRelocationErrorInsufficientQuota, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESRelocationErrorInternalError, - - /// Can't move the shared folder to the given destination. - DBFILESRelocationErrorCantMoveSharedFolder, - - /// Some content cannot be moved into Vault under certain circumstances, see - /// detailed error. - DBFILESRelocationErrorCantMoveIntoVault, - - /// Some content cannot be moved into the Family Room folder under certain - /// circumstances, see detailed error. - DBFILESRelocationErrorCantMoveIntoFamily, - - /// (no description). - DBFILESRelocationErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationErrorTag tag; - -/// (no description). @note Ensure the `isFromLookup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *fromLookup; - -/// (no description). @note Ensure the `isFromWrite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *fromWrite; - -/// (no description). @note Ensure the `isTo` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *to; - -/// Some content cannot be moved into Vault under certain circumstances, see -/// detailed error. @note Ensure the `isCantMoveIntoVault` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMoveIntoVaultError *cantMoveIntoVault; - -/// Some content cannot be moved into the Family Room folder under certain -/// circumstances, see detailed error. @note Ensure the `isCantMoveIntoFamily` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESMoveIntoFamilyError *cantMoveIntoFamily; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_lookup". -/// -/// @param fromLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromLookup:(DBFILESLookupError *)fromLookup; - -/// -/// Initializes union class with tag state of "from_write". -/// -/// @param fromWrite (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromWrite:(DBFILESWriteError *)fromWrite; - -/// -/// Initializes union class with tag state of "to". -/// -/// @param to (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTo:(DBFILESWriteError *)to; - -/// -/// Initializes union class with tag state of "cant_copy_shared_folder". -/// -/// Description of the "cant_copy_shared_folder" tag state: Shared folders can't -/// be copied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantCopySharedFolder; - -/// -/// Initializes union class with tag state of "cant_nest_shared_folder". -/// -/// Description of the "cant_nest_shared_folder" tag state: Your move operation -/// would result in nested shared folders. This is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantNestSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_folder_into_itself". -/// -/// Description of the "cant_move_folder_into_itself" tag state: You cannot move -/// a folder into itself. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveFolderIntoItself; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// more than 10,000 files and folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "duplicated_or_nested_paths". -/// -/// Description of the "duplicated_or_nested_paths" tag state: There are -/// duplicated/nested paths among `fromPath` in `DBFILESRelocationArg` and -/// `toPath` in `DBFILESRelocationArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatedOrNestedPaths; - -/// -/// Initializes union class with tag state of "cant_transfer_ownership". -/// -/// Description of the "cant_transfer_ownership" tag state: Your move operation -/// would result in an ownership transfer. You may reissue the request with the -/// field `allowOwnershipTransfer` in `DBFILESRelocationArg` to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantTransferOwnership; - -/// -/// Initializes union class with tag state of "insufficient_quota". -/// -/// Description of the "insufficient_quota" tag state: The current user does not -/// have enough space to move or copy the files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientQuota; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "cant_move_shared_folder". -/// -/// Description of the "cant_move_shared_folder" tag state: Can't move the -/// shared folder to the given destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_into_vault". -/// -/// Description of the "cant_move_into_vault" tag state: Some content cannot be -/// moved into Vault under certain circumstances, see detailed error. -/// -/// @param cantMoveIntoVault Some content cannot be moved into Vault under -/// certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoVault:(DBFILESMoveIntoVaultError *)cantMoveIntoVault; - -/// -/// Initializes union class with tag state of "cant_move_into_family". -/// -/// Description of the "cant_move_into_family" tag state: Some content cannot be -/// moved into the Family Room folder under certain circumstances, see detailed -/// error. -/// -/// @param cantMoveIntoFamily Some content cannot be moved into the Family Room -/// folder under certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoFamily:(DBFILESMoveIntoFamilyError *)cantMoveIntoFamily; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_lookup". -/// -- (BOOL)isFromLookup; - -/// -/// Retrieves whether the union's current tag state has value "from_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_write". -/// -- (BOOL)isFromWrite; - -/// -/// Retrieves whether the union's current tag state has value "to". -/// -/// @note Call this method and ensure it returns true before accessing the `to` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "to". -/// -- (BOOL)isTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -- (BOOL)isCantCopySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -- (BOOL)isCantNestSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -- (BOOL)isCantMoveFolderIntoItself; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -/// @return Whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -- (BOOL)isDuplicatedOrNestedPaths; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -/// @return Whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -- (BOOL)isCantTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_quota". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_quota". -/// -- (BOOL)isInsufficientQuota; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -- (BOOL)isCantMoveSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_vault". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoVault` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_vault". -/// -- (BOOL)isCantMoveIntoVault; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_family". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoFamily` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_family". -/// -- (BOOL)isCantMoveIntoFamily; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationError` union. -/// -@interface DBFILESRelocationErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationError` instances. -/// -/// @param instance An instance of the `DBFILESRelocationError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationError *)instance; - -/// -/// Deserializes `DBFILESRelocationError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationError` API object. -/// -/// @return An instantiation of the `DBFILESRelocationError` object. -/// -+ (DBFILESRelocationError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationPath.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationPath.h deleted file mode 100644 index 23632d94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationPath.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationPath` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationPath : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to be copied or moved. -@property (nonatomic, readonly, copy) NSString *fromPath; - -/// Path in the user's Dropbox that is the destination. -@property (nonatomic, readonly, copy) NSString *toPath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fromPath Path in the user's Dropbox to be copied or moved. -/// @param toPath Path in the user's Dropbox that is the destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromPath:(NSString *)fromPath toPath:(NSString *)toPath; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationPath` struct. -/// -@interface DBFILESRelocationPathSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationPath` instances. -/// -/// @param instance An instance of the `DBFILESRelocationPath` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationPath` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationPath *)instance; - -/// -/// Deserializes `DBFILESRelocationPath` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationPath` API object. -/// -/// @return An instantiation of the `DBFILESRelocationPath` object. -/// -+ (DBFILESRelocationPath *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationResult.h deleted file mode 100644 index a4387b56..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRelocationResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESRelocationResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Metadata of the relocated object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the relocated object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationResult` struct. -/// -@interface DBFILESRelocationResultSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationResult` instances. -/// -/// @param instance An instance of the `DBFILESRelocationResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationResult *)instance; - -/// -/// Deserializes `DBFILESRelocationResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationResult` API object. -/// -/// @return An instantiation of the `DBFILESRelocationResult` object. -/// -+ (DBFILESRelocationResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRemoveTagArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRemoveTagArg.h deleted file mode 100644 index c2837626..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRemoveTagArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRemoveTagArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveTagArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRemoveTagArg : NSObject - -#pragma mark - Instance fields - -/// Path to the item to tag. -@property (nonatomic, readonly, copy) NSString *path; - -/// The tag to remove. Will be automatically converted to lowercase letters. -@property (nonatomic, readonly, copy) NSString *tagText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path to the item to tag. -/// @param tagText The tag to remove. Will be automatically converted to -/// lowercase letters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path tagText:(NSString *)tagText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveTagArg` struct. -/// -@interface DBFILESRemoveTagArgSerializer : NSObject - -/// -/// Serializes `DBFILESRemoveTagArg` instances. -/// -/// @param instance An instance of the `DBFILESRemoveTagArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRemoveTagArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRemoveTagArg *)instance; - -/// -/// Deserializes `DBFILESRemoveTagArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRemoveTagArg` API object. -/// -/// @return An instantiation of the `DBFILESRemoveTagArg` object. -/// -+ (DBFILESRemoveTagArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRemoveTagError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRemoveTagError.h deleted file mode 100644 index 78fdf550..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRemoveTagError.h +++ /dev/null @@ -1,144 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESRemoveTagError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveTagError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRemoveTagError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRemoveTagErrorTag` enum type represents the possible tag states -/// with which the `DBFILESRemoveTagError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRemoveTagErrorTag) { - /// (no description). - DBFILESRemoveTagErrorPath, - - /// (no description). - DBFILESRemoveTagErrorOther, - - /// That tag doesn't exist at this path. - DBFILESRemoveTagErrorTagNotPresent, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRemoveTagErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "tag_not_present". -/// -/// Description of the "tag_not_present" tag state: That tag doesn't exist at -/// this path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTagNotPresent; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "tag_not_present". -/// -/// @return Whether the union's current tag state has value "tag_not_present". -/// -- (BOOL)isTagNotPresent; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRemoveTagError` union. -/// -@interface DBFILESRemoveTagErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRemoveTagError` instances. -/// -/// @param instance An instance of the `DBFILESRemoveTagError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRemoveTagError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRemoveTagError *)instance; - -/// -/// Deserializes `DBFILESRemoveTagError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRemoveTagError` API object. -/// -/// @return An instantiation of the `DBFILESRemoveTagError` object. -/// -+ (DBFILESRemoveTagError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRestoreArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRestoreArg.h deleted file mode 100644 index c5b40ba8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRestoreArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRestoreArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RestoreArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRestoreArg : NSObject - -#pragma mark - Instance fields - -/// The path to save the restored file. -@property (nonatomic, readonly, copy) NSString *path; - -/// The revision to restore. -@property (nonatomic, readonly, copy) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to save the restored file. -/// @param rev The revision to restore. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path rev:(NSString *)rev; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RestoreArg` struct. -/// -@interface DBFILESRestoreArgSerializer : NSObject - -/// -/// Serializes `DBFILESRestoreArg` instances. -/// -/// @param instance An instance of the `DBFILESRestoreArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRestoreArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRestoreArg *)instance; - -/// -/// Deserializes `DBFILESRestoreArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRestoreArg` API object. -/// -/// @return An instantiation of the `DBFILESRestoreArg` object. -/// -+ (DBFILESRestoreArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRestoreError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRestoreError.h deleted file mode 100644 index 65a71e51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRestoreError.h +++ /dev/null @@ -1,202 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESRestoreError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RestoreError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRestoreError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRestoreErrorTag` enum type represents the possible tag states -/// with which the `DBFILESRestoreError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRestoreErrorTag) { - /// An error occurs when downloading metadata for the file. - DBFILESRestoreErrorPathLookup, - - /// An error occurs when trying to restore the file to that path. - DBFILESRestoreErrorPathWrite, - - /// The revision is invalid. It may not exist or may point to a deleted - /// file. - DBFILESRestoreErrorInvalidRevision, - - /// The restore is currently executing, but has not yet completed. - DBFILESRestoreErrorInProgress, - - /// (no description). - DBFILESRestoreErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRestoreErrorTag tag; - -/// An error occurs when downloading metadata for the file. @note Ensure the -/// `isPathLookup` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *pathLookup; - -/// An error occurs when trying to restore the file to that path. @note Ensure -/// the `isPathWrite` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *pathWrite; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path_lookup". -/// -/// Description of the "path_lookup" tag state: An error occurs when downloading -/// metadata for the file. -/// -/// @param pathLookup An error occurs when downloading metadata for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathLookup:(DBFILESLookupError *)pathLookup; - -/// -/// Initializes union class with tag state of "path_write". -/// -/// Description of the "path_write" tag state: An error occurs when trying to -/// restore the file to that path. -/// -/// @param pathWrite An error occurs when trying to restore the file to that -/// path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathWrite:(DBFILESWriteError *)pathWrite; - -/// -/// Initializes union class with tag state of "invalid_revision". -/// -/// Description of the "invalid_revision" tag state: The revision is invalid. It -/// may not exist or may point to a deleted file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidRevision; - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The restore is currently -/// executing, but has not yet completed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_lookup". -/// -- (BOOL)isPathLookup; - -/// -/// Retrieves whether the union's current tag state has value "path_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_write". -/// -- (BOOL)isPathWrite; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_revision". -/// -/// @return Whether the union's current tag state has value "invalid_revision". -/// -- (BOOL)isInvalidRevision; - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRestoreError` union. -/// -@interface DBFILESRestoreErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRestoreError` instances. -/// -/// @param instance An instance of the `DBFILESRestoreError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRestoreError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRestoreError *)instance; - -/// -/// Deserializes `DBFILESRestoreError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRestoreError` API object. -/// -/// @return An instantiation of the `DBFILESRestoreError` object. -/// -+ (DBFILESRestoreError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRouteObjects.h deleted file mode 100644 index 0cfef3f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESRouteObjects.h +++ /dev/null @@ -1,229 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Files namespace. Each route in the Files -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBFILESRouteObjects : NSObject - -/// Accessor method for the alphaGetMetadata route object. -+ (DBRoute *)DBFILESAlphaGetMetadata; - -/// Accessor method for the alphaUpload route object. -+ (DBRoute *)DBFILESAlphaUpload; - -/// Accessor method for the dCopy route object. -+ (DBRoute *)DBFILESDCopy; - -/// Accessor method for the dCopyV2 route object. -+ (DBRoute *)DBFILESDCopyV2; - -/// Accessor method for the dCopyBatch route object. -+ (DBRoute *)DBFILESDCopyBatch; - -/// Accessor method for the dCopyBatchV2 route object. -+ (DBRoute *)DBFILESDCopyBatchV2; - -/// Accessor method for the dCopyBatchCheck route object. -+ (DBRoute *)DBFILESDCopyBatchCheck; - -/// Accessor method for the dCopyBatchCheckV2 route object. -+ (DBRoute *)DBFILESDCopyBatchCheckV2; - -/// Accessor method for the dCopyReferenceGet route object. -+ (DBRoute *)DBFILESDCopyReferenceGet; - -/// Accessor method for the dCopyReferenceSave route object. -+ (DBRoute *)DBFILESDCopyReferenceSave; - -/// Accessor method for the createFolder route object. -+ (DBRoute *)DBFILESCreateFolder; - -/// Accessor method for the createFolderV2 route object. -+ (DBRoute *)DBFILESCreateFolderV2; - -/// Accessor method for the createFolderBatch route object. -+ (DBRoute *)DBFILESCreateFolderBatch; - -/// Accessor method for the createFolderBatchCheck route object. -+ (DBRoute *)DBFILESCreateFolderBatchCheck; - -/// Accessor method for the delete_ route object. -+ (DBRoute *)DBFILESDelete_; - -/// Accessor method for the delete_V2 route object. -+ (DBRoute *)DBFILESDelete_V2; - -/// Accessor method for the deleteBatch route object. -+ (DBRoute *)DBFILESDeleteBatch; - -/// Accessor method for the deleteBatchCheck route object. -+ (DBRoute *)DBFILESDeleteBatchCheck; - -/// Accessor method for the download route object. -+ (DBRoute *)DBFILESDownload; - -/// Accessor method for the downloadZip route object. -+ (DBRoute *)DBFILESDownloadZip; - -/// Accessor method for the export route object. -+ (DBRoute *)DBFILESExport; - -/// Accessor method for the getFileLockBatch route object. -+ (DBRoute *)DBFILESGetFileLockBatch; - -/// Accessor method for the getMetadata route object. -+ (DBRoute *)DBFILESGetMetadata; - -/// Accessor method for the getPreview route object. -+ (DBRoute *)DBFILESGetPreview; - -/// Accessor method for the getTemporaryLink route object. -+ (DBRoute *)DBFILESGetTemporaryLink; - -/// Accessor method for the getTemporaryUploadLink route object. -+ (DBRoute *)DBFILESGetTemporaryUploadLink; - -/// Accessor method for the getThumbnail route object. -+ (DBRoute *)DBFILESGetThumbnail; - -/// Accessor method for the getThumbnailV2 route object. -+ (DBRoute *)DBFILESGetThumbnailV2; - -/// Accessor method for the getThumbnailBatch route object. -+ (DBRoute *)DBFILESGetThumbnailBatch; - -/// Accessor method for the listFolder route object. -+ (DBRoute *)DBFILESListFolder; - -/// Accessor method for the listFolderContinue route object. -+ (DBRoute *)DBFILESListFolderContinue; - -/// Accessor method for the listFolderGetLatestCursor route object. -+ (DBRoute *)DBFILESListFolderGetLatestCursor; - -/// Accessor method for the listFolderLongpoll route object. -+ (DBRoute *)DBFILESListFolderLongpoll; - -/// Accessor method for the listRevisions route object. -+ (DBRoute *)DBFILESListRevisions; - -/// Accessor method for the lockFileBatch route object. -+ (DBRoute *)DBFILESLockFileBatch; - -/// Accessor method for the move route object. -+ (DBRoute *)DBFILESMove; - -/// Accessor method for the moveV2 route object. -+ (DBRoute *)DBFILESMoveV2; - -/// Accessor method for the moveBatch route object. -+ (DBRoute *)DBFILESMoveBatch; - -/// Accessor method for the moveBatchV2 route object. -+ (DBRoute *)DBFILESMoveBatchV2; - -/// Accessor method for the moveBatchCheck route object. -+ (DBRoute *)DBFILESMoveBatchCheck; - -/// Accessor method for the moveBatchCheckV2 route object. -+ (DBRoute *)DBFILESMoveBatchCheckV2; - -/// Accessor method for the paperCreate route object. -+ (DBRoute *)DBFILESPaperCreate; - -/// Accessor method for the paperUpdate route object. -+ (DBRoute *)DBFILESPaperUpdate; - -/// Accessor method for the permanentlyDelete route object. -+ (DBRoute *)DBFILESPermanentlyDelete; - -/// Accessor method for the propertiesAdd route object. -+ (DBRoute *)DBFILESPropertiesAdd; - -/// Accessor method for the propertiesOverwrite route object. -+ (DBRoute *)DBFILESPropertiesOverwrite; - -/// Accessor method for the propertiesRemove route object. -+ (DBRoute *)DBFILESPropertiesRemove; - -/// Accessor method for the propertiesTemplateGet route object. -+ (DBRoute *)DBFILESPropertiesTemplateGet; - -/// Accessor method for the propertiesTemplateList route object. -+ (DBRoute *)DBFILESPropertiesTemplateList; - -/// Accessor method for the propertiesUpdate route object. -+ (DBRoute *)DBFILESPropertiesUpdate; - -/// Accessor method for the restore route object. -+ (DBRoute *)DBFILESRestore; - -/// Accessor method for the saveUrl route object. -+ (DBRoute *)DBFILESSaveUrl; - -/// Accessor method for the saveUrlCheckJobStatus route object. -+ (DBRoute *)DBFILESSaveUrlCheckJobStatus; - -/// Accessor method for the search route object. -+ (DBRoute *)DBFILESSearch; - -/// Accessor method for the searchV2 route object. -+ (DBRoute *)DBFILESSearchV2; - -/// Accessor method for the searchContinueV2 route object. -+ (DBRoute *)DBFILESSearchContinueV2; - -/// Accessor method for the tagsAdd route object. -+ (DBRoute *)DBFILESTagsAdd; - -/// Accessor method for the tagsGet route object. -+ (DBRoute *)DBFILESTagsGet; - -/// Accessor method for the tagsRemove route object. -+ (DBRoute *)DBFILESTagsRemove; - -/// Accessor method for the unlockFileBatch route object. -+ (DBRoute *)DBFILESUnlockFileBatch; - -/// Accessor method for the upload route object. -+ (DBRoute *)DBFILESUpload; - -/// Accessor method for the uploadSessionAppend route object. -+ (DBRoute *)DBFILESUploadSessionAppend; - -/// Accessor method for the uploadSessionAppendV2 route object. -+ (DBRoute *)DBFILESUploadSessionAppendV2; - -/// Accessor method for the uploadSessionFinish route object. -+ (DBRoute *)DBFILESUploadSessionFinish; - -/// Accessor method for the uploadSessionFinishBatch route object. -+ (DBRoute *)DBFILESUploadSessionFinishBatch; - -/// Accessor method for the uploadSessionFinishBatchV2 route object. -+ (DBRoute *)DBFILESUploadSessionFinishBatchV2; - -/// Accessor method for the uploadSessionFinishBatchCheck route object. -+ (DBRoute *)DBFILESUploadSessionFinishBatchCheck; - -/// Accessor method for the uploadSessionStart route object. -+ (DBRoute *)DBFILESUploadSessionStart; - -/// Accessor method for the uploadSessionStartBatch route object. -+ (DBRoute *)DBFILESUploadSessionStartBatch; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceArg.h deleted file mode 100644 index b2240bcc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveCopyReferenceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveCopyReferenceArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveCopyReferenceArg : NSObject - -#pragma mark - Instance fields - -/// A copy reference returned by `dCopyReferenceGet`. -@property (nonatomic, readonly, copy) NSString *dCopyReference; - -/// Path in the user's Dropbox that is the destination. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dCopyReference A copy reference returned by `dCopyReferenceGet`. -/// @param path Path in the user's Dropbox that is the destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDCopyReference:(NSString *)dCopyReference path:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SaveCopyReferenceArg` struct. -/// -@interface DBFILESSaveCopyReferenceArgSerializer : NSObject - -/// -/// Serializes `DBFILESSaveCopyReferenceArg` instances. -/// -/// @param instance An instance of the `DBFILESSaveCopyReferenceArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveCopyReferenceArg *)instance; - -/// -/// Deserializes `DBFILESSaveCopyReferenceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceArg` API object. -/// -/// @return An instantiation of the `DBFILESSaveCopyReferenceArg` object. -/// -+ (DBFILESSaveCopyReferenceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceError.h deleted file mode 100644 index b2c094de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceError.h +++ /dev/null @@ -1,210 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveCopyReferenceError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveCopyReferenceError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveCopyReferenceError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveCopyReferenceErrorTag` enum type represents the possible tag -/// states with which the `DBFILESSaveCopyReferenceError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveCopyReferenceErrorTag) { - /// (no description). - DBFILESSaveCopyReferenceErrorPath, - - /// The copy reference is invalid. - DBFILESSaveCopyReferenceErrorInvalidCopyReference, - - /// You don't have permission to save the given copy reference. Please make - /// sure this app is same app which created the copy reference and the - /// source user is still linked to the app. - DBFILESSaveCopyReferenceErrorNoPermission, - - /// The file referenced by the copy reference cannot be found. - DBFILESSaveCopyReferenceErrorNotFound, - - /// The operation would involve more than 10,000 files and folders. - DBFILESSaveCopyReferenceErrorTooManyFiles, - - /// (no description). - DBFILESSaveCopyReferenceErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveCopyReferenceErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "invalid_copy_reference". -/// -/// Description of the "invalid_copy_reference" tag state: The copy reference is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCopyReference; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: You don't have permission to -/// save the given copy reference. Please make sure this app is same app which -/// created the copy reference and the source user is still linked to the app. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The file referenced by the copy -/// reference cannot be found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// more than 10,000 files and folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_copy_reference". -/// -/// @return Whether the union's current tag state has value -/// "invalid_copy_reference". -/// -- (BOOL)isInvalidCopyReference; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveCopyReferenceError` union. -/// -@interface DBFILESSaveCopyReferenceErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSaveCopyReferenceError` instances. -/// -/// @param instance An instance of the `DBFILESSaveCopyReferenceError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveCopyReferenceError *)instance; - -/// -/// Deserializes `DBFILESSaveCopyReferenceError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceError` API object. -/// -/// @return An instantiation of the `DBFILESSaveCopyReferenceError` object. -/// -+ (DBFILESSaveCopyReferenceError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceResult.h deleted file mode 100644 index 33c1fd48..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveCopyReferenceResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESSaveCopyReferenceResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveCopyReferenceResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveCopyReferenceResult : NSObject - -#pragma mark - Instance fields - -/// The metadata of the saved file or folder in the user's Dropbox. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata The metadata of the saved file or folder in the user's -/// Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SaveCopyReferenceResult` struct. -/// -@interface DBFILESSaveCopyReferenceResultSerializer : NSObject - -/// -/// Serializes `DBFILESSaveCopyReferenceResult` instances. -/// -/// @param instance An instance of the `DBFILESSaveCopyReferenceResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveCopyReferenceResult *)instance; - -/// -/// Deserializes `DBFILESSaveCopyReferenceResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceResult` API object. -/// -/// @return An instantiation of the `DBFILESSaveCopyReferenceResult` object. -/// -+ (DBFILESSaveCopyReferenceResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlArg.h deleted file mode 100644 index 4e2a4a84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveUrlArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlArg : NSObject - -#pragma mark - Instance fields - -/// The path in Dropbox where the URL will be saved to. -@property (nonatomic, readonly, copy) NSString *path; - -/// The URL to be saved. -@property (nonatomic, readonly, copy) NSString *url; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path in Dropbox where the URL will be saved to. -/// @param url The URL to be saved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path url:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SaveUrlArg` struct. -/// -@interface DBFILESSaveUrlArgSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlArg` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlArg *)instance; - -/// -/// Deserializes `DBFILESSaveUrlArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlArg` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlArg` object. -/// -+ (DBFILESSaveUrlArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlError.h deleted file mode 100644 index 6d2fb5a0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlError.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveUrlError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveUrlErrorTag` enum type represents the possible tag states -/// with which the `DBFILESSaveUrlError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveUrlErrorTag) { - /// (no description). - DBFILESSaveUrlErrorPath, - - /// Failed downloading the given URL. The URL may be password-protected and - /// the password provided was incorrect, or the link may be disabled. - DBFILESSaveUrlErrorDownloadFailed, - - /// The given URL is invalid. - DBFILESSaveUrlErrorInvalidUrl, - - /// The file where the URL is saved to no longer exists. - DBFILESSaveUrlErrorNotFound, - - /// (no description). - DBFILESSaveUrlErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveUrlErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "download_failed". -/// -/// Description of the "download_failed" tag state: Failed downloading the given -/// URL. The URL may be password-protected and the password provided was -/// incorrect, or the link may be disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDownloadFailed; - -/// -/// Initializes union class with tag state of "invalid_url". -/// -/// Description of the "invalid_url" tag state: The given URL is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUrl; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The file where the URL is saved to -/// no longer exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "download_failed". -/// -/// @return Whether the union's current tag state has value "download_failed". -/// -- (BOOL)isDownloadFailed; - -/// -/// Retrieves whether the union's current tag state has value "invalid_url". -/// -/// @return Whether the union's current tag state has value "invalid_url". -/// -- (BOOL)isInvalidUrl; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveUrlError` union. -/// -@interface DBFILESSaveUrlErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlError` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlError *)instance; - -/// -/// Deserializes `DBFILESSaveUrlError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlError` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlError` object. -/// -+ (DBFILESSaveUrlError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlJobStatus.h deleted file mode 100644 index 558a8d55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlJobStatus.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESSaveUrlError; -@class DBFILESSaveUrlJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveUrlJobStatusTag` enum type represents the possible tag -/// states with which the `DBFILESSaveUrlJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveUrlJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESSaveUrlJobStatusInProgress, - - /// Metadata of the file where the URL is saved to. - DBFILESSaveUrlJobStatusComplete, - - /// (no description). - DBFILESSaveUrlJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveUrlJobStatusTag tag; - -/// Metadata of the file where the URL is saved to. @note Ensure the -/// `isComplete` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESFileMetadata *complete; - -/// (no description). @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSaveUrlError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: Metadata of the file where the URL -/// is saved to. -/// -/// @param complete Metadata of the file where the URL is saved to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESFileMetadata *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// @param failed (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESSaveUrlError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveUrlJobStatus` union. -/// -@interface DBFILESSaveUrlJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlJobStatus *)instance; - -/// -/// Deserializes `DBFILESSaveUrlJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlJobStatus` object. -/// -+ (DBFILESSaveUrlJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlResult.h deleted file mode 100644 index fda90fad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSaveUrlResult.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESSaveUrlResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlResult : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveUrlResultTag` enum type represents the possible tag states -/// with which the `DBFILESSaveUrlResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveUrlResultTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESSaveUrlResultAsyncJobId, - - /// Metadata of the file where the URL is saved to. - DBFILESSaveUrlResultComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveUrlResultTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// Metadata of the file where the URL is saved to. @note Ensure the -/// `isComplete` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESFileMetadata *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: Metadata of the file where the URL -/// is saved to. -/// -/// @param complete Metadata of the file where the URL is saved to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESFileMetadata *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveUrlResult` union. -/// -@interface DBFILESSaveUrlResultSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlResult` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlResult *)instance; - -/// -/// Deserializes `DBFILESSaveUrlResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlResult` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlResult` object. -/// -+ (DBFILESSaveUrlResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchArg.h deleted file mode 100644 index 609b252e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchArg.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchArg; -@class DBFILESSearchMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchArg : NSObject - -#pragma mark - Instance fields - -/// The path in the user's Dropbox to search. Should probably be a folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The string to search for. Query string may be rewritten to improve relevance -/// of results. The string is split on spaces into multiple tokens. For file -/// name searching, the last token is used for prefix matching (i.e. "bat c" -/// matches "bat cave" but not "batman car"). -@property (nonatomic, readonly, copy) NSString *query; - -/// The starting index within the search results (used for paging). -@property (nonatomic, readonly) NSNumber *start; - -/// The maximum number of search results to return. -@property (nonatomic, readonly) NSNumber *maxResults; - -/// The search mode (filename, filename_and_content, or deleted_filename). Note -/// that searching file content is only available for Dropbox Business accounts. -@property (nonatomic, readonly) DBFILESSearchMode *mode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path in the user's Dropbox to search. Should probably be a -/// folder. -/// @param query The string to search for. Query string may be rewritten to -/// improve relevance of results. The string is split on spaces into multiple -/// tokens. For file name searching, the last token is used for prefix matching -/// (i.e. "bat c" matches "bat cave" but not "batman car"). -/// @param start The starting index within the search results (used for paging). -/// @param maxResults The maximum number of search results to return. -/// @param mode The search mode (filename, filename_and_content, or -/// deleted_filename). Note that searching file content is only available for -/// Dropbox Business accounts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - query:(NSString *)query - start:(nullable NSNumber *)start - maxResults:(nullable NSNumber *)maxResults - mode:(nullable DBFILESSearchMode *)mode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path in the user's Dropbox to search. Should probably be a -/// folder. -/// @param query The string to search for. Query string may be rewritten to -/// improve relevance of results. The string is split on spaces into multiple -/// tokens. For file name searching, the last token is used for prefix matching -/// (i.e. "bat c" matches "bat cave" but not "batman car"). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path query:(NSString *)query; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchArg` struct. -/// -@interface DBFILESSearchArgSerializer : NSObject - -/// -/// Serializes `DBFILESSearchArg` instances. -/// -/// @param instance An instance of the `DBFILESSearchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchArg *)instance; - -/// -/// Deserializes `DBFILESSearchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchArg` API object. -/// -/// @return An instantiation of the `DBFILESSearchArg` object. -/// -+ (DBFILESSearchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchError.h deleted file mode 100644 index c556d22a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchError.h +++ /dev/null @@ -1,171 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESSearchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchErrorTag` enum type represents the possible tag states -/// with which the `DBFILESSearchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchErrorTag) { - /// (no description). - DBFILESSearchErrorPath, - - /// (no description). - DBFILESSearchErrorInvalidArgument, - - /// Something went wrong, please try again. - DBFILESSearchErrorInternalError, - - /// (no description). - DBFILESSearchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// (no description). @note Ensure the `isInvalidArgument` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *invalidArgument; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "invalid_argument". -/// -/// @param invalidArgument (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidArgument:(nullable NSString *)invalidArgument; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong, please -/// try again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_argument". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidArgument` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_argument". -/// -- (BOOL)isInvalidArgument; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchError` union. -/// -@interface DBFILESSearchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSearchError` instances. -/// -/// @param instance An instance of the `DBFILESSearchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchError *)instance; - -/// -/// Deserializes `DBFILESSearchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchError` API object. -/// -/// @return An instantiation of the `DBFILESSearchError` object. -/// -+ (DBFILESSearchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatch.h deleted file mode 100644 index a55d4b49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatch.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESSearchMatch; -@class DBFILESSearchMatchType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatch` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatch : NSObject - -#pragma mark - Instance fields - -/// The type of the match. -@property (nonatomic, readonly) DBFILESSearchMatchType *matchType; - -/// The metadata for the matched file or folder. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matchType The type of the match. -/// @param metadata The metadata for the matched file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatchType:(DBFILESSearchMatchType *)matchType metadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchMatch` struct. -/// -@interface DBFILESSearchMatchSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMatch` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatch *)instance; - -/// -/// Deserializes `DBFILESSearchMatch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatch` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatch` object. -/// -+ (DBFILESSearchMatch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchFieldOptions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchFieldOptions.h deleted file mode 100644 index e9d38693..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchFieldOptions.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchFieldOptions; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchFieldOptions` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchFieldOptions : NSObject - -#pragma mark - Instance fields - -/// Whether to include highlight span from file title. -@property (nonatomic, readonly) NSNumber *includeHighlights; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param includeHighlights Whether to include highlight span from file title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncludeHighlights:(nullable NSNumber *)includeHighlights; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchMatchFieldOptions` struct. -/// -@interface DBFILESSearchMatchFieldOptionsSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchFieldOptions` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchFieldOptions` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchFieldOptions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchFieldOptions *)instance; - -/// -/// Deserializes `DBFILESSearchMatchFieldOptions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchFieldOptions` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchFieldOptions` object. -/// -+ (DBFILESSearchMatchFieldOptions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchType.h deleted file mode 100644 index 029f159d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchType.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchType` union. -/// -/// Indicates what type of match was found for a given item. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchMatchTypeTag` enum type represents the possible tag states -/// with which the `DBFILESSearchMatchType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchMatchTypeTag) { - /// This item was matched on its file or folder name. - DBFILESSearchMatchTypeFilename, - - /// This item was matched based on its file contents. - DBFILESSearchMatchTypeContent, - - /// This item was matched based on both its contents and its file name. - DBFILESSearchMatchTypeBoth, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchMatchTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filename". -/// -/// Description of the "filename" tag state: This item was matched on its file -/// or folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilename; - -/// -/// Initializes union class with tag state of "content". -/// -/// Description of the "content" tag state: This item was matched based on its -/// file contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContent; - -/// -/// Initializes union class with tag state of "both". -/// -/// Description of the "both" tag state: This item was matched based on both its -/// contents and its file name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBoth; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filename". -/// -/// @return Whether the union's current tag state has value "filename". -/// -- (BOOL)isFilename; - -/// -/// Retrieves whether the union's current tag state has value "content". -/// -/// @return Whether the union's current tag state has value "content". -/// -- (BOOL)isContent; - -/// -/// Retrieves whether the union's current tag state has value "both". -/// -/// @return Whether the union's current tag state has value "both". -/// -- (BOOL)isBoth; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchMatchType` union. -/// -@interface DBFILESSearchMatchTypeSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchType` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchType *)instance; - -/// -/// Deserializes `DBFILESSearchMatchType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchType` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchType` object. -/// -+ (DBFILESSearchMatchType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchTypeV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchTypeV2.h deleted file mode 100644 index a545d76e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchTypeV2.h +++ /dev/null @@ -1,181 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchTypeV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchTypeV2` union. -/// -/// Indicates what type of match was found for a given item. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchTypeV2 : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchMatchTypeV2Tag` enum type represents the possible tag -/// states with which the `DBFILESSearchMatchTypeV2` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchMatchTypeV2Tag) { - /// This item was matched on its file or folder name. - DBFILESSearchMatchTypeV2Filename, - - /// This item was matched based on its file contents. - DBFILESSearchMatchTypeV2FileContent, - - /// This item was matched based on both its contents and its file name. - DBFILESSearchMatchTypeV2FilenameAndContent, - - /// This item was matched on image content. - DBFILESSearchMatchTypeV2ImageContent, - - /// (no description). - DBFILESSearchMatchTypeV2Other, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchMatchTypeV2Tag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filename". -/// -/// Description of the "filename" tag state: This item was matched on its file -/// or folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilename; - -/// -/// Initializes union class with tag state of "file_content". -/// -/// Description of the "file_content" tag state: This item was matched based on -/// its file contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileContent; - -/// -/// Initializes union class with tag state of "filename_and_content". -/// -/// Description of the "filename_and_content" tag state: This item was matched -/// based on both its contents and its file name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilenameAndContent; - -/// -/// Initializes union class with tag state of "image_content". -/// -/// Description of the "image_content" tag state: This item was matched on image -/// content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filename". -/// -/// @return Whether the union's current tag state has value "filename". -/// -- (BOOL)isFilename; - -/// -/// Retrieves whether the union's current tag state has value "file_content". -/// -/// @return Whether the union's current tag state has value "file_content". -/// -- (BOOL)isFileContent; - -/// -/// Retrieves whether the union's current tag state has value -/// "filename_and_content". -/// -/// @return Whether the union's current tag state has value -/// "filename_and_content". -/// -- (BOOL)isFilenameAndContent; - -/// -/// Retrieves whether the union's current tag state has value "image_content". -/// -/// @return Whether the union's current tag state has value "image_content". -/// -- (BOOL)isImageContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchMatchTypeV2` union. -/// -@interface DBFILESSearchMatchTypeV2Serializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchTypeV2` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchTypeV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchTypeV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchTypeV2 *)instance; - -/// -/// Deserializes `DBFILESSearchMatchTypeV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchTypeV2` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchTypeV2` object. -/// -+ (DBFILESSearchMatchTypeV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchV2.h deleted file mode 100644 index 9abd21c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMatchV2.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESHighlightSpan; -@class DBFILESMetadataV2; -@class DBFILESSearchMatchTypeV2; -@class DBFILESSearchMatchV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchV2` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchV2 : NSObject - -#pragma mark - Instance fields - -/// The metadata for the matched file or folder. -@property (nonatomic, readonly) DBFILESMetadataV2 *metadata; - -/// The type of the match. -@property (nonatomic, readonly, nullable) DBFILESSearchMatchTypeV2 *matchType; - -/// The list of HighlightSpan determines which parts of the file title should be -/// highlighted. -@property (nonatomic, readonly, nullable) NSArray *highlightSpans; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata The metadata for the matched file or folder. -/// @param matchType The type of the match. -/// @param highlightSpans The list of HighlightSpan determines which parts of -/// the file title should be highlighted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadataV2 *)metadata - matchType:(nullable DBFILESSearchMatchTypeV2 *)matchType - highlightSpans:(nullable NSArray *)highlightSpans; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param metadata The metadata for the matched file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadataV2 *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchMatchV2` struct. -/// -@interface DBFILESSearchMatchV2Serializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchV2` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchV2 *)instance; - -/// -/// Deserializes `DBFILESSearchMatchV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchV2` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchV2` object. -/// -+ (DBFILESSearchMatchV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMode.h deleted file mode 100644 index cc6b4962..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchMode.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchModeTag` enum type represents the possible tag states with -/// which the `DBFILESSearchMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchModeTag) { - /// Search file and folder names. - DBFILESSearchModeFilename, - - /// Search file and folder names as well as file contents. - DBFILESSearchModeFilenameAndContent, - - /// Search for deleted file and folder names. - DBFILESSearchModeDeletedFilename, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filename". -/// -/// Description of the "filename" tag state: Search file and folder names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilename; - -/// -/// Initializes union class with tag state of "filename_and_content". -/// -/// Description of the "filename_and_content" tag state: Search file and folder -/// names as well as file contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilenameAndContent; - -/// -/// Initializes union class with tag state of "deleted_filename". -/// -/// Description of the "deleted_filename" tag state: Search for deleted file and -/// folder names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeletedFilename; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filename". -/// -/// @return Whether the union's current tag state has value "filename". -/// -- (BOOL)isFilename; - -/// -/// Retrieves whether the union's current tag state has value -/// "filename_and_content". -/// -/// @return Whether the union's current tag state has value -/// "filename_and_content". -/// -- (BOOL)isFilenameAndContent; - -/// -/// Retrieves whether the union's current tag state has value -/// "deleted_filename". -/// -/// @return Whether the union's current tag state has value "deleted_filename". -/// -- (BOOL)isDeletedFilename; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchMode` union. -/// -@interface DBFILESSearchModeSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMode` instances. -/// -/// @param instance An instance of the `DBFILESSearchMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMode *)instance; - -/// -/// Deserializes `DBFILESSearchMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMode` API object. -/// -/// @return An instantiation of the `DBFILESSearchMode` object. -/// -+ (DBFILESSearchMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchOptions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchOptions.h deleted file mode 100644 index b687015f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchOptions.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileCategory; -@class DBFILESFileStatus; -@class DBFILESSearchOptions; -@class DBFILESSearchOrderBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchOptions` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchOptions : NSObject - -#pragma mark - Instance fields - -/// Scopes the search to a path in the user's Dropbox. Searches the entire -/// Dropbox if not specified. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// The maximum number of search results to return. -@property (nonatomic, readonly) NSNumber *maxResults; - -/// Specified property of the order of search results. By default, results are -/// sorted by relevance. -@property (nonatomic, readonly, nullable) DBFILESSearchOrderBy *orderBy; - -/// Restricts search to the given file status. -@property (nonatomic, readonly) DBFILESFileStatus *fileStatus; - -/// Restricts search to only match on filenames. -@property (nonatomic, readonly) NSNumber *filenameOnly; - -/// Restricts search to only the extensions specified. Only supported for active -/// file search. -@property (nonatomic, readonly, nullable) NSArray *fileExtensions; - -/// Restricts search to only the file categories specified. Only supported for -/// active file search. -@property (nonatomic, readonly, nullable) NSArray *fileCategories; - -/// Restricts results to the given account id. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Scopes the search to a path in the user's Dropbox. Searches the -/// entire Dropbox if not specified. -/// @param maxResults The maximum number of search results to return. -/// @param orderBy Specified property of the order of search results. By -/// default, results are sorted by relevance. -/// @param fileStatus Restricts search to the given file status. -/// @param filenameOnly Restricts search to only match on filenames. -/// @param fileExtensions Restricts search to only the extensions specified. -/// Only supported for active file search. -/// @param fileCategories Restricts search to only the file categories -/// specified. Only supported for active file search. -/// @param accountId Restricts results to the given account id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path - maxResults:(nullable NSNumber *)maxResults - orderBy:(nullable DBFILESSearchOrderBy *)orderBy - fileStatus:(nullable DBFILESFileStatus *)fileStatus - filenameOnly:(nullable NSNumber *)filenameOnly - fileExtensions:(nullable NSArray *)fileExtensions - fileCategories:(nullable NSArray *)fileCategories - accountId:(nullable NSString *)accountId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchOptions` struct. -/// -@interface DBFILESSearchOptionsSerializer : NSObject - -/// -/// Serializes `DBFILESSearchOptions` instances. -/// -/// @param instance An instance of the `DBFILESSearchOptions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchOptions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchOptions *)instance; - -/// -/// Deserializes `DBFILESSearchOptions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchOptions` API object. -/// -/// @return An instantiation of the `DBFILESSearchOptions` object. -/// -+ (DBFILESSearchOptions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchOrderBy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchOrderBy.h deleted file mode 100644 index b2c65332..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchOrderBy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchOrderBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchOrderBy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchOrderBy : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchOrderByTag` enum type represents the possible tag states -/// with which the `DBFILESSearchOrderBy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchOrderByTag) { - /// (no description). - DBFILESSearchOrderByRelevance, - - /// (no description). - DBFILESSearchOrderByLastModifiedTime, - - /// (no description). - DBFILESSearchOrderByOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchOrderByTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "relevance". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelevance; - -/// -/// Initializes union class with tag state of "last_modified_time". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLastModifiedTime; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "relevance". -/// -/// @return Whether the union's current tag state has value "relevance". -/// -- (BOOL)isRelevance; - -/// -/// Retrieves whether the union's current tag state has value -/// "last_modified_time". -/// -/// @return Whether the union's current tag state has value -/// "last_modified_time". -/// -- (BOOL)isLastModifiedTime; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchOrderBy` union. -/// -@interface DBFILESSearchOrderBySerializer : NSObject - -/// -/// Serializes `DBFILESSearchOrderBy` instances. -/// -/// @param instance An instance of the `DBFILESSearchOrderBy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchOrderBy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchOrderBy *)instance; - -/// -/// Deserializes `DBFILESSearchOrderBy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchOrderBy` API object. -/// -/// @return An instantiation of the `DBFILESSearchOrderBy` object. -/// -+ (DBFILESSearchOrderBy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchResult.h deleted file mode 100644 index 3fbdd3de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchResult.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatch; -@class DBFILESSearchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchResult : NSObject - -#pragma mark - Instance fields - -/// A list (possibly empty) of matches for the query. -@property (nonatomic, readonly) NSArray *matches; - -/// Used for paging. If true, indicates there is another page of results -/// available that can be fetched by calling `search` again. -@property (nonatomic, readonly) NSNumber *more; - -/// Used for paging. Value to set the start argument to when calling `search` to -/// fetch the next page of results. -@property (nonatomic, readonly) NSNumber *start; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param more Used for paging. If true, indicates there is another page of -/// results available that can be fetched by calling `search` again. -/// @param start Used for paging. Value to set the start argument to when -/// calling `search` to fetch the next page of results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches more:(NSNumber *)more start:(NSNumber *)start; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchResult` struct. -/// -@interface DBFILESSearchResultSerializer : NSObject - -/// -/// Serializes `DBFILESSearchResult` instances. -/// -/// @param instance An instance of the `DBFILESSearchResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchResult *)instance; - -/// -/// Deserializes `DBFILESSearchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchResult` API object. -/// -/// @return An instantiation of the `DBFILESSearchResult` object. -/// -+ (DBFILESSearchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2Arg.h deleted file mode 100644 index f23a0f1f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2Arg.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchFieldOptions; -@class DBFILESSearchOptions; -@class DBFILESSearchV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchV2Arg : NSObject - -#pragma mark - Instance fields - -/// The string to search for. May match across multiple fields based on the -/// request arguments. -@property (nonatomic, readonly, copy) NSString *query; - -/// Options for more targeted search results. -@property (nonatomic, readonly, nullable) DBFILESSearchOptions *options; - -/// Options for search results match fields. -@property (nonatomic, readonly, nullable) DBFILESSearchMatchFieldOptions *matchFieldOptions; - -/// Deprecated and moved this option to SearchMatchFieldOptions. -@property (nonatomic, readonly, nullable) NSNumber *includeHighlights; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param query The string to search for. May match across multiple fields -/// based on the request arguments. -/// @param options Options for more targeted search results. -/// @param matchFieldOptions Options for search results match fields. -/// @param includeHighlights Deprecated and moved this option to -/// SearchMatchFieldOptions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query - options:(nullable DBFILESSearchOptions *)options - matchFieldOptions:(nullable DBFILESSearchMatchFieldOptions *)matchFieldOptions - includeHighlights:(nullable NSNumber *)includeHighlights; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param query The string to search for. May match across multiple fields -/// based on the request arguments. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchV2Arg` struct. -/// -@interface DBFILESSearchV2ArgSerializer : NSObject - -/// -/// Serializes `DBFILESSearchV2Arg` instances. -/// -/// @param instance An instance of the `DBFILESSearchV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchV2Arg *)instance; - -/// -/// Deserializes `DBFILESSearchV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchV2Arg` API object. -/// -/// @return An instantiation of the `DBFILESSearchV2Arg` object. -/// -+ (DBFILESSearchV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2ContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2ContinueArg.h deleted file mode 100644 index 50c9992b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2ContinueArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchV2ContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchV2ContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchV2ContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `search`. Used to fetch the next -/// page of results. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `search`. Used to -/// fetch the next page of results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchV2ContinueArg` struct. -/// -@interface DBFILESSearchV2ContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILESSearchV2ContinueArg` instances. -/// -/// @param instance An instance of the `DBFILESSearchV2ContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchV2ContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchV2ContinueArg *)instance; - -/// -/// Deserializes `DBFILESSearchV2ContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchV2ContinueArg` API object. -/// -/// @return An instantiation of the `DBFILESSearchV2ContinueArg` object. -/// -+ (DBFILESSearchV2ContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2Result.h deleted file mode 100644 index 6e18daeb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSearchV2Result.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchV2; -@class DBFILESSearchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchV2Result : NSObject - -#pragma mark - Instance fields - -/// A list (possibly empty) of matches for the query. -@property (nonatomic, readonly) NSArray *matches; - -/// Used for paging. If true, indicates there is another page of results -/// available that can be fetched by calling `searchContinue` with the cursor. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `searchContinue` to fetch the next page of results. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param hasMore Used for paging. If true, indicates there is another page of -/// results available that can be fetched by calling `searchContinue` with the -/// cursor. -/// @param cursor Pass the cursor into `searchContinue` to fetch the next page -/// of results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param hasMore Used for paging. If true, indicates there is another page of -/// results available that can be fetched by calling `searchContinue` with the -/// cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchV2Result` struct. -/// -@interface DBFILESSearchV2ResultSerializer : NSObject - -/// -/// Serializes `DBFILESSearchV2Result` instances. -/// -/// @param instance An instance of the `DBFILESSearchV2Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchV2Result *)instance; - -/// -/// Deserializes `DBFILESSearchV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchV2Result` API object. -/// -/// @return An instantiation of the `DBFILESSearchV2Result` object. -/// -+ (DBFILESSearchV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharedLink.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharedLink.h deleted file mode 100644 index c4fc1b0a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharedLink.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSharedLink; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLink` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSharedLink : NSObject - -#pragma mark - Instance fields - -/// Shared link url. -@property (nonatomic, readonly, copy) NSString *url; - -/// Password for the shared link. -@property (nonatomic, readonly, copy, nullable) NSString *password; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url Shared link url. -/// @param password Password for the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url password:(nullable NSString *)password; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url Shared link url. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLink` struct. -/// -@interface DBFILESSharedLinkSerializer : NSObject - -/// -/// Serializes `DBFILESSharedLink` instances. -/// -/// @param instance An instance of the `DBFILESSharedLink` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSharedLink` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSharedLink *)instance; - -/// -/// Deserializes `DBFILESSharedLink` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSharedLink` API object. -/// -/// @return An instantiation of the `DBFILESSharedLink` object. -/// -+ (DBFILESSharedLink *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharedLinkFileInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharedLinkFileInfo.h deleted file mode 100644 index bdcf75f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharedLinkFileInfo.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSharedLinkFileInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkFileInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSharedLinkFileInfo : NSObject - -#pragma mark - Instance fields - -/// The shared link corresponding to either a file or shared link to a folder. -/// If it is for a folder shared link, we use the path param to determine for -/// which file in the folder the view is for. -@property (nonatomic, readonly, copy) NSString *url; - -/// The path corresponding to a file in a shared link to a folder. Required for -/// shared links to folders. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// Password for the shared link. Required for password-protected shared links -/// to files unless it can be read from a cookie. -@property (nonatomic, readonly, copy, nullable) NSString *password; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url The shared link corresponding to either a file or shared link to -/// a folder. If it is for a folder shared link, we use the path param to -/// determine for which file in the folder the view is for. -/// @param path The path corresponding to a file in a shared link to a folder. -/// Required for shared links to folders. -/// @param password Password for the shared link. Required for -/// password-protected shared links to files unless it can be read from a -/// cookie. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url path:(nullable NSString *)path password:(nullable NSString *)password; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url The shared link corresponding to either a file or shared link to -/// a folder. If it is for a folder shared link, we use the path param to -/// determine for which file in the folder the view is for. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkFileInfo` struct. -/// -@interface DBFILESSharedLinkFileInfoSerializer : NSObject - -/// -/// Serializes `DBFILESSharedLinkFileInfo` instances. -/// -/// @param instance An instance of the `DBFILESSharedLinkFileInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSharedLinkFileInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSharedLinkFileInfo *)instance; - -/// -/// Deserializes `DBFILESSharedLinkFileInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSharedLinkFileInfo` API object. -/// -/// @return An instantiation of the `DBFILESSharedLinkFileInfo` object. -/// -+ (DBFILESSharedLinkFileInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharingInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharingInfo.h deleted file mode 100644 index dd648aa5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSharingInfo.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingInfo` struct. -/// -/// Sharing info for a file or folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSharingInfo : NSObject - -#pragma mark - Instance fields - -/// True if the file or folder is inside a read-only shared folder. -@property (nonatomic, readonly) NSNumber *readOnly; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingInfo` struct. -/// -@interface DBFILESSharingInfoSerializer : NSObject - -/// -/// Serializes `DBFILESSharingInfo` instances. -/// -/// @param instance An instance of the `DBFILESSharingInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSharingInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSharingInfo *)instance; - -/// -/// Deserializes `DBFILESSharingInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSharingInfo` API object. -/// -/// @return An instantiation of the `DBFILESSharingInfo` object. -/// -+ (DBFILESSharingInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSingleUserLock.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSingleUserLock.h deleted file mode 100644 index b7f74390..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSingleUserLock.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSingleUserLock; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SingleUserLock` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSingleUserLock : NSObject - -#pragma mark - Instance fields - -/// The time the lock was created. -@property (nonatomic, readonly) NSDate *created; - -/// The account ID of the lock holder if known. -@property (nonatomic, readonly, copy) NSString *lockHolderAccountId; - -/// The id of the team of the account holder if it exists. -@property (nonatomic, readonly, copy, nullable) NSString *lockHolderTeamId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param created The time the lock was created. -/// @param lockHolderAccountId The account ID of the lock holder if known. -/// @param lockHolderTeamId The id of the team of the account holder if it -/// exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated:(NSDate *)created - lockHolderAccountId:(NSString *)lockHolderAccountId - lockHolderTeamId:(nullable NSString *)lockHolderTeamId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param created The time the lock was created. -/// @param lockHolderAccountId The account ID of the lock holder if known. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated:(NSDate *)created lockHolderAccountId:(NSString *)lockHolderAccountId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SingleUserLock` struct. -/// -@interface DBFILESSingleUserLockSerializer : NSObject - -/// -/// Serializes `DBFILESSingleUserLock` instances. -/// -/// @param instance An instance of the `DBFILESSingleUserLock` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSingleUserLock` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSingleUserLock *)instance; - -/// -/// Deserializes `DBFILESSingleUserLock` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSingleUserLock` API object. -/// -/// @return An instantiation of the `DBFILESSingleUserLock` object. -/// -+ (DBFILESSingleUserLock *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSymlinkInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSymlinkInfo.h deleted file mode 100644 index e69cecd5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSymlinkInfo.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSymlinkInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SymlinkInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSymlinkInfo : NSObject - -#pragma mark - Instance fields - -/// The target this symlink points to. -@property (nonatomic, readonly, copy) NSString *target; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param target The target this symlink points to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTarget:(NSString *)target; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SymlinkInfo` struct. -/// -@interface DBFILESSymlinkInfoSerializer : NSObject - -/// -/// Serializes `DBFILESSymlinkInfo` instances. -/// -/// @param instance An instance of the `DBFILESSymlinkInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSymlinkInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSymlinkInfo *)instance; - -/// -/// Deserializes `DBFILESSymlinkInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSymlinkInfo` API object. -/// -/// @return An instantiation of the `DBFILESSymlinkInfo` object. -/// -+ (DBFILESSymlinkInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSetting.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSetting.h deleted file mode 100644 index b9ea29e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSetting.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSetting; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SyncSetting` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSyncSetting : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSyncSettingTag` enum type represents the possible tag states -/// with which the `DBFILESSyncSetting` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSyncSettingTag) { - /// On first sync to members' computers, the specified folder will follow - /// its parent folder's setting or otherwise follow default sync behavior. - DBFILESSyncSettingDefault_, - - /// On first sync to members' computers, the specified folder will be set to - /// not sync with selective sync. - DBFILESSyncSettingNotSynced, - - /// The specified folder's not_synced setting is inactive due to its - /// location or other configuration changes. It will follow its parent - /// folder's setting. - DBFILESSyncSettingNotSyncedInactive, - - /// (no description). - DBFILESSyncSettingOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSyncSettingTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: On first sync to members' computers, -/// the specified folder will follow its parent folder's setting or otherwise -/// follow default sync behavior. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "not_synced". -/// -/// Description of the "not_synced" tag state: On first sync to members' -/// computers, the specified folder will be set to not sync with selective sync. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotSynced; - -/// -/// Initializes union class with tag state of "not_synced_inactive". -/// -/// Description of the "not_synced_inactive" tag state: The specified folder's -/// not_synced setting is inactive due to its location or other configuration -/// changes. It will follow its parent folder's setting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotSyncedInactive; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "not_synced". -/// -/// @return Whether the union's current tag state has value "not_synced". -/// -- (BOOL)isNotSynced; - -/// -/// Retrieves whether the union's current tag state has value -/// "not_synced_inactive". -/// -/// @return Whether the union's current tag state has value -/// "not_synced_inactive". -/// -- (BOOL)isNotSyncedInactive; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSyncSetting` union. -/// -@interface DBFILESSyncSettingSerializer : NSObject - -/// -/// Serializes `DBFILESSyncSetting` instances. -/// -/// @param instance An instance of the `DBFILESSyncSetting` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSyncSetting` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSyncSetting *)instance; - -/// -/// Deserializes `DBFILESSyncSetting` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSyncSetting` API object. -/// -/// @return An instantiation of the `DBFILESSyncSetting` object. -/// -+ (DBFILESSyncSetting *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSettingArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSettingArg.h deleted file mode 100644 index d7ab9c23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSettingArg.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SyncSettingArg` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSyncSettingArg : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSyncSettingArgTag` enum type represents the possible tag states -/// with which the `DBFILESSyncSettingArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSyncSettingArgTag) { - /// On first sync to members' computers, the specified folder will follow - /// its parent folder's setting or otherwise follow default sync behavior. - DBFILESSyncSettingArgDefault_, - - /// On first sync to members' computers, the specified folder will be set to - /// not sync with selective sync. - DBFILESSyncSettingArgNotSynced, - - /// (no description). - DBFILESSyncSettingArgOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSyncSettingArgTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: On first sync to members' computers, -/// the specified folder will follow its parent folder's setting or otherwise -/// follow default sync behavior. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "not_synced". -/// -/// Description of the "not_synced" tag state: On first sync to members' -/// computers, the specified folder will be set to not sync with selective sync. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotSynced; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "not_synced". -/// -/// @return Whether the union's current tag state has value "not_synced". -/// -- (BOOL)isNotSynced; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSyncSettingArg` union. -/// -@interface DBFILESSyncSettingArgSerializer : NSObject - -/// -/// Serializes `DBFILESSyncSettingArg` instances. -/// -/// @param instance An instance of the `DBFILESSyncSettingArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSyncSettingArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSyncSettingArg *)instance; - -/// -/// Deserializes `DBFILESSyncSettingArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSyncSettingArg` API object. -/// -/// @return An instantiation of the `DBFILESSyncSettingArg` object. -/// -+ (DBFILESSyncSettingArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSettingsError.h deleted file mode 100644 index 14e7863d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESSyncSettingsError.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESSyncSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SyncSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSyncSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSyncSettingsErrorTag` enum type represents the possible tag -/// states with which the `DBFILESSyncSettingsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSyncSettingsErrorTag) { - /// (no description). - DBFILESSyncSettingsErrorPath, - - /// Setting this combination of sync settings simultaneously is not - /// supported. - DBFILESSyncSettingsErrorUnsupportedCombination, - - /// The specified configuration is not supported. - DBFILESSyncSettingsErrorUnsupportedConfiguration, - - /// (no description). - DBFILESSyncSettingsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSyncSettingsErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_combination". -/// -/// Description of the "unsupported_combination" tag state: Setting this -/// combination of sync settings simultaneously is not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedCombination; - -/// -/// Initializes union class with tag state of "unsupported_configuration". -/// -/// Description of the "unsupported_configuration" tag state: The specified -/// configuration is not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedConfiguration; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_combination". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_combination". -/// -- (BOOL)isUnsupportedCombination; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_configuration". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_configuration". -/// -- (BOOL)isUnsupportedConfiguration; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSyncSettingsError` union. -/// -@interface DBFILESSyncSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSyncSettingsError` instances. -/// -/// @param instance An instance of the `DBFILESSyncSettingsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSyncSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSyncSettingsError *)instance; - -/// -/// Deserializes `DBFILESSyncSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSyncSettingsError` API object. -/// -/// @return An instantiation of the `DBFILESSyncSettingsError` object. -/// -+ (DBFILESSyncSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESTag.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESTag.h deleted file mode 100644 index afaa4b20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESTag.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESTag; -@class DBFILESUserGeneratedTag; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Tag` union. -/// -/// Tag that can be added in multiple ways. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESTag : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESTagTag` enum type represents the possible tag states with which -/// the `DBFILESTag` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESTagTag) { - /// Tag generated by the user. - DBFILESTagUserGeneratedTag, - - /// (no description). - DBFILESTagOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESTagTag tag; - -/// Tag generated by the user. @note Ensure the `isUserGeneratedTag` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUserGeneratedTag *userGeneratedTag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_generated_tag". -/// -/// Description of the "user_generated_tag" tag state: Tag generated by the -/// user. -/// -/// @param userGeneratedTag Tag generated by the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserGeneratedTag:(DBFILESUserGeneratedTag *)userGeneratedTag; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "user_generated_tag". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userGeneratedTag` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_generated_tag". -/// -- (BOOL)isUserGeneratedTag; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESTag` union. -/// -@interface DBFILESTagSerializer : NSObject - -/// -/// Serializes `DBFILESTag` instances. -/// -/// @param instance An instance of the `DBFILESTag` API object. -/// -/// @return A json-compatible dictionary representation of the `DBFILESTag` API -/// object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESTag *)instance; - -/// -/// Deserializes `DBFILESTag` instances. -/// -/// @param dict A json-compatible dictionary representation of the `DBFILESTag` -/// API object. -/// -/// @return An instantiation of the `DBFILESTag` object. -/// -+ (DBFILESTag *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailArg.h deleted file mode 100644 index eb0a22c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailArg; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailArg : NSObject - -#pragma mark - Instance fields - -/// The path to the image file you want to thumbnail. -@property (nonatomic, readonly, copy) NSString *path; - -/// The format for the thumbnail image, jpeg (default) or png. For images that -/// are photos, jpeg should be preferred, while png is better for screenshots -/// and digital arts. -@property (nonatomic, readonly) DBFILESThumbnailFormat *format; - -/// The size for the thumbnail image. -@property (nonatomic, readonly) DBFILESThumbnailSize *size; - -/// How to resize and crop the image to achieve the desired size. -@property (nonatomic, readonly) DBFILESThumbnailMode *mode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For -/// images that are photos, jpeg should be preferred, while png is better for -/// screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to the image file you want to thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ThumbnailArg` struct. -/// -@interface DBFILESThumbnailArgSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailArg` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailArg *)instance; - -/// -/// Deserializes `DBFILESThumbnailArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailArg` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailArg` object. -/// -+ (DBFILESThumbnailArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailError.h deleted file mode 100644 index 5c689be4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailError.h +++ /dev/null @@ -1,175 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESThumbnailError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailErrorTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailErrorTag) { - /// An error occurs when downloading metadata for the image. - DBFILESThumbnailErrorPath, - - /// The file extension doesn't allow conversion to a thumbnail. - DBFILESThumbnailErrorUnsupportedExtension, - - /// The image cannot be converted to a thumbnail. - DBFILESThumbnailErrorUnsupportedImage, - - /// An error occurs during thumbnail conversion. - DBFILESThumbnailErrorConversionError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailErrorTag tag; - -/// An error occurs when downloading metadata for the image. @note Ensure the -/// `isPath` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: An error occurs when downloading -/// metadata for the image. -/// -/// @param path An error occurs when downloading metadata for the image. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_extension". -/// -/// Description of the "unsupported_extension" tag state: The file extension -/// doesn't allow conversion to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedExtension; - -/// -/// Initializes union class with tag state of "unsupported_image". -/// -/// Description of the "unsupported_image" tag state: The image cannot be -/// converted to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedImage; - -/// -/// Initializes union class with tag state of "conversion_error". -/// -/// Description of the "conversion_error" tag state: An error occurs during -/// thumbnail conversion. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConversionError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_extension". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_extension". -/// -- (BOOL)isUnsupportedExtension; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_image". -/// -/// @return Whether the union's current tag state has value "unsupported_image". -/// -- (BOOL)isUnsupportedImage; - -/// -/// Retrieves whether the union's current tag state has value -/// "conversion_error". -/// -/// @return Whether the union's current tag state has value "conversion_error". -/// -- (BOOL)isConversionError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailError` union. -/// -@interface DBFILESThumbnailErrorSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailError` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailError *)instance; - -/// -/// Deserializes `DBFILESThumbnailError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailError` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailError` object. -/// -+ (DBFILESThumbnailError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailFormat.h deleted file mode 100644 index 857480ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailFormat.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailFormat` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailFormatTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailFormatTag) { - /// (no description). - DBFILESThumbnailFormatJpeg, - - /// (no description). - DBFILESThumbnailFormatPng, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "jpeg". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithJpeg; - -/// -/// Initializes union class with tag state of "png". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPng; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "jpeg". -/// -/// @return Whether the union's current tag state has value "jpeg". -/// -- (BOOL)isJpeg; - -/// -/// Retrieves whether the union's current tag state has value "png". -/// -/// @return Whether the union's current tag state has value "png". -/// -- (BOOL)isPng; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailFormat` union. -/// -@interface DBFILESThumbnailFormatSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailFormat` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailFormat *)instance; - -/// -/// Deserializes `DBFILESThumbnailFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailFormat` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailFormat` object. -/// -+ (DBFILESThumbnailFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailMode.h deleted file mode 100644 index bc041095..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailMode.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailModeTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailModeTag) { - /// Scale down the image to fit within the given size. - DBFILESThumbnailModeStrict, - - /// Scale down the image to fit within the given size or its transpose. - DBFILESThumbnailModeBestfit, - - /// Scale down the image to completely cover the given size or its - /// transpose. - DBFILESThumbnailModeFitoneBestfit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "strict". -/// -/// Description of the "strict" tag state: Scale down the image to fit within -/// the given size. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStrict; - -/// -/// Initializes union class with tag state of "bestfit". -/// -/// Description of the "bestfit" tag state: Scale down the image to fit within -/// the given size or its transpose. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBestfit; - -/// -/// Initializes union class with tag state of "fitone_bestfit". -/// -/// Description of the "fitone_bestfit" tag state: Scale down the image to -/// completely cover the given size or its transpose. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFitoneBestfit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "strict". -/// -/// @return Whether the union's current tag state has value "strict". -/// -- (BOOL)isStrict; - -/// -/// Retrieves whether the union's current tag state has value "bestfit". -/// -/// @return Whether the union's current tag state has value "bestfit". -/// -- (BOOL)isBestfit; - -/// -/// Retrieves whether the union's current tag state has value "fitone_bestfit". -/// -/// @return Whether the union's current tag state has value "fitone_bestfit". -/// -- (BOOL)isFitoneBestfit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailMode` union. -/// -@interface DBFILESThumbnailModeSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailMode` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailMode *)instance; - -/// -/// Deserializes `DBFILESThumbnailMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailMode` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailMode` object. -/// -+ (DBFILESThumbnailMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailSize.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailSize.h deleted file mode 100644 index c9b9d3ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailSize.h +++ /dev/null @@ -1,251 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailSize; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailSize` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailSize : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailSizeTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailSize` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailSizeTag) { - /// 32 by 32 px. - DBFILESThumbnailSizeW32h32, - - /// 64 by 64 px. - DBFILESThumbnailSizeW64h64, - - /// 128 by 128 px. - DBFILESThumbnailSizeW128h128, - - /// 256 by 256 px. - DBFILESThumbnailSizeW256h256, - - /// 480 by 320 px. - DBFILESThumbnailSizeW480h320, - - /// 640 by 480 px. - DBFILESThumbnailSizeW640h480, - - /// 960 by 640 px. - DBFILESThumbnailSizeW960h640, - - /// 1024 by 768 px. - DBFILESThumbnailSizeW1024h768, - - /// 2048 by 1536 px. - DBFILESThumbnailSizeW2048h1536, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailSizeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "w32h32". -/// -/// Description of the "w32h32" tag state: 32 by 32 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW32h32; - -/// -/// Initializes union class with tag state of "w64h64". -/// -/// Description of the "w64h64" tag state: 64 by 64 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW64h64; - -/// -/// Initializes union class with tag state of "w128h128". -/// -/// Description of the "w128h128" tag state: 128 by 128 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW128h128; - -/// -/// Initializes union class with tag state of "w256h256". -/// -/// Description of the "w256h256" tag state: 256 by 256 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW256h256; - -/// -/// Initializes union class with tag state of "w480h320". -/// -/// Description of the "w480h320" tag state: 480 by 320 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW480h320; - -/// -/// Initializes union class with tag state of "w640h480". -/// -/// Description of the "w640h480" tag state: 640 by 480 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW640h480; - -/// -/// Initializes union class with tag state of "w960h640". -/// -/// Description of the "w960h640" tag state: 960 by 640 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW960h640; - -/// -/// Initializes union class with tag state of "w1024h768". -/// -/// Description of the "w1024h768" tag state: 1024 by 768 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW1024h768; - -/// -/// Initializes union class with tag state of "w2048h1536". -/// -/// Description of the "w2048h1536" tag state: 2048 by 1536 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW2048h1536; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "w32h32". -/// -/// @return Whether the union's current tag state has value "w32h32". -/// -- (BOOL)isW32h32; - -/// -/// Retrieves whether the union's current tag state has value "w64h64". -/// -/// @return Whether the union's current tag state has value "w64h64". -/// -- (BOOL)isW64h64; - -/// -/// Retrieves whether the union's current tag state has value "w128h128". -/// -/// @return Whether the union's current tag state has value "w128h128". -/// -- (BOOL)isW128h128; - -/// -/// Retrieves whether the union's current tag state has value "w256h256". -/// -/// @return Whether the union's current tag state has value "w256h256". -/// -- (BOOL)isW256h256; - -/// -/// Retrieves whether the union's current tag state has value "w480h320". -/// -/// @return Whether the union's current tag state has value "w480h320". -/// -- (BOOL)isW480h320; - -/// -/// Retrieves whether the union's current tag state has value "w640h480". -/// -/// @return Whether the union's current tag state has value "w640h480". -/// -- (BOOL)isW640h480; - -/// -/// Retrieves whether the union's current tag state has value "w960h640". -/// -/// @return Whether the union's current tag state has value "w960h640". -/// -- (BOOL)isW960h640; - -/// -/// Retrieves whether the union's current tag state has value "w1024h768". -/// -/// @return Whether the union's current tag state has value "w1024h768". -/// -- (BOOL)isW1024h768; - -/// -/// Retrieves whether the union's current tag state has value "w2048h1536". -/// -/// @return Whether the union's current tag state has value "w2048h1536". -/// -- (BOOL)isW2048h1536; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailSize` union. -/// -@interface DBFILESThumbnailSizeSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailSize` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailSize` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailSize` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailSize *)instance; - -/// -/// Deserializes `DBFILESThumbnailSize` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailSize` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailSize` object. -/// -+ (DBFILESThumbnailSize *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailV2Arg.h deleted file mode 100644 index f8ff9a29..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailV2Arg.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPathOrLink; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; -@class DBFILESThumbnailV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailV2Arg : NSObject - -#pragma mark - Instance fields - -/// Information specifying which file to preview. This could be a path to a -/// file, a shared link pointing to a file, or a shared link pointing to a -/// folder, with a relative path. -@property (nonatomic, readonly) DBFILESPathOrLink *resource; - -/// The format for the thumbnail image, jpeg (default) or png. For images that -/// are photos, jpeg should be preferred, while png is better for screenshots -/// and digital arts. -@property (nonatomic, readonly) DBFILESThumbnailFormat *format; - -/// The size for the thumbnail image. -@property (nonatomic, readonly) DBFILESThumbnailSize *size; - -/// How to resize and crop the image to achieve the desired size. -@property (nonatomic, readonly) DBFILESThumbnailMode *mode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param resource Information specifying which file to preview. This could be -/// a path to a file, a shared link pointing to a file, or a shared link -/// pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For -/// images that are photos, jpeg should be preferred, while png is better for -/// screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResource:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param resource Information specifying which file to preview. This could be -/// a path to a file, a shared link pointing to a file, or a shared link -/// pointing to a folder, with a relative path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResource:(DBFILESPathOrLink *)resource; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ThumbnailV2Arg` struct. -/// -@interface DBFILESThumbnailV2ArgSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailV2Arg` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailV2Arg *)instance; - -/// -/// Deserializes `DBFILESThumbnailV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Arg` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailV2Arg` object. -/// -+ (DBFILESThumbnailV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailV2Error.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailV2Error.h deleted file mode 100644 index 0546c997..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESThumbnailV2Error.h +++ /dev/null @@ -1,231 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESThumbnailV2Error; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailV2Error` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailV2Error : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailV2ErrorTag` enum type represents the possible tag -/// states with which the `DBFILESThumbnailV2Error` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailV2ErrorTag) { - /// An error occurred when downloading metadata for the image. - DBFILESThumbnailV2ErrorPath, - - /// The file extension doesn't allow conversion to a thumbnail. - DBFILESThumbnailV2ErrorUnsupportedExtension, - - /// The image cannot be converted to a thumbnail. - DBFILESThumbnailV2ErrorUnsupportedImage, - - /// An error occurred during thumbnail conversion. - DBFILESThumbnailV2ErrorConversionError, - - /// Access to this shared link is forbidden. - DBFILESThumbnailV2ErrorAccessDenied, - - /// The shared link does not exist. - DBFILESThumbnailV2ErrorNotFound, - - /// (no description). - DBFILESThumbnailV2ErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailV2ErrorTag tag; - -/// An error occurred when downloading metadata for the image. @note Ensure the -/// `isPath` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: An error occurred when downloading -/// metadata for the image. -/// -/// @param path An error occurred when downloading metadata for the image. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_extension". -/// -/// Description of the "unsupported_extension" tag state: The file extension -/// doesn't allow conversion to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedExtension; - -/// -/// Initializes union class with tag state of "unsupported_image". -/// -/// Description of the "unsupported_image" tag state: The image cannot be -/// converted to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedImage; - -/// -/// Initializes union class with tag state of "conversion_error". -/// -/// Description of the "conversion_error" tag state: An error occurred during -/// thumbnail conversion. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConversionError; - -/// -/// Initializes union class with tag state of "access_denied". -/// -/// Description of the "access_denied" tag state: Access to this shared link is -/// forbidden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessDenied; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The shared link does not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_extension". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_extension". -/// -- (BOOL)isUnsupportedExtension; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_image". -/// -/// @return Whether the union's current tag state has value "unsupported_image". -/// -- (BOOL)isUnsupportedImage; - -/// -/// Retrieves whether the union's current tag state has value -/// "conversion_error". -/// -/// @return Whether the union's current tag state has value "conversion_error". -/// -- (BOOL)isConversionError; - -/// -/// Retrieves whether the union's current tag state has value "access_denied". -/// -/// @return Whether the union's current tag state has value "access_denied". -/// -- (BOOL)isAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailV2Error` union. -/// -@interface DBFILESThumbnailV2ErrorSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailV2Error` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailV2Error` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Error` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailV2Error *)instance; - -/// -/// Deserializes `DBFILESThumbnailV2Error` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Error` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailV2Error` object. -/// -+ (DBFILESThumbnailV2Error *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUnlockFileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUnlockFileArg.h deleted file mode 100644 index a469d41c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUnlockFileArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUnlockFileArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnlockFileArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUnlockFileArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to a file. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnlockFileArg` struct. -/// -@interface DBFILESUnlockFileArgSerializer : NSObject - -/// -/// Serializes `DBFILESUnlockFileArg` instances. -/// -/// @param instance An instance of the `DBFILESUnlockFileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUnlockFileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUnlockFileArg *)instance; - -/// -/// Deserializes `DBFILESUnlockFileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUnlockFileArg` API object. -/// -/// @return An instantiation of the `DBFILESUnlockFileArg` object. -/// -+ (DBFILESUnlockFileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUnlockFileBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUnlockFileBatchArg.h deleted file mode 100644 index 655f85f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUnlockFileBatchArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUnlockFileArg; -@class DBFILESUnlockFileBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnlockFileBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUnlockFileBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of 'entries'. Each 'entry' contains a path of the file which will be -/// unlocked. Duplicate path arguments in the batch are considered only once. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file -/// which will be unlocked. Duplicate path arguments in the batch are considered -/// only once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnlockFileBatchArg` struct. -/// -@interface DBFILESUnlockFileBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESUnlockFileBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESUnlockFileBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUnlockFileBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUnlockFileBatchArg *)instance; - -/// -/// Deserializes `DBFILESUnlockFileBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUnlockFileBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESUnlockFileBatchArg` object. -/// -+ (DBFILESUnlockFileBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadArg.h deleted file mode 100644 index 7d4ff38a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadArg.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESCommitInfo.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESUploadArg; -@class DBFILESWriteMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadArg : DBFILESCommitInfo - -#pragma mark - Instance fields - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to save the file. -/// @param mode Selects what to do if the file already exists. -/// @param autorename If there's a conflict, as determined by mode, have the -/// Dropbox server try to autorename the file to avoid conflict. -/// @param clientModified The value to store as the clientModified timestamp. -/// Dropbox automatically records the time at which the file was written to the -/// Dropbox servers. It can also record an additional timestamp, provided by -/// Dropbox desktop clients, mobile clients, and API apps of when the file was -/// actually created or modified. -/// @param mute Normally, users are made aware of any file modifications in -/// their Dropbox account via notifications in the client software. If true, -/// this tells the clients that this modification shouldn't result in a user -/// notification. -/// @param propertyGroups List of custom properties to add to file. -/// @param strictConflict Be more strict about how each WriteMode detects -/// conflict. For example, always return a conflict error when mode = `update` -/// in `DBFILESWriteMode` and the given "rev" doesn't match the existing file's -/// "rev", even if the existing file has been deleted. This also forces a -/// conflict even when the target path refers to a file with identical contents. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to save the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadArg` struct. -/// -@interface DBFILESUploadArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadArg *)instance; - -/// -/// Deserializes `DBFILESUploadArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadArg` object. -/// -+ (DBFILESUploadArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadError.h deleted file mode 100644 index 38ed93fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadError.h +++ /dev/null @@ -1,206 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILESUploadError; -@class DBFILESUploadWriteFailed; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadErrorTag` enum type represents the possible tag states -/// with which the `DBFILESUploadError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadErrorTag) { - /// Unable to save the uploaded contents to a file. - DBFILESUploadErrorPath, - - /// The supplied property group is invalid. The file has uploaded without - /// property groups. - DBFILESUploadErrorPropertiesError, - - /// The request payload must be at most 150 MB. - DBFILESUploadErrorPayloadTooLarge, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadErrorContentHashMismatch, - - /// (no description). - DBFILESUploadErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadErrorTag tag; - -/// Unable to save the uploaded contents to a file. @note Ensure the `isPath` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESUploadWriteFailed *path; - -/// The supplied property group is invalid. The file has uploaded without -/// property groups. @note Ensure the `isPropertiesError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESInvalidPropertyGroupError *propertiesError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: Unable to save the uploaded contents to -/// a file. -/// -/// @param path Unable to save the uploaded contents to a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESUploadWriteFailed *)path; - -/// -/// Initializes union class with tag state of "properties_error". -/// -/// Description of the "properties_error" tag state: The supplied property group -/// is invalid. The file has uploaded without property groups. -/// -/// @param propertiesError The supplied property group is invalid. The file has -/// uploaded without property groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertiesError:(DBFILEPROPERTIESInvalidPropertyGroupError *)propertiesError; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "properties_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertiesError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "properties_error". -/// -- (BOOL)isPropertiesError; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadError` union. -/// -@interface DBFILESUploadErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadError` instances. -/// -/// @param instance An instance of the `DBFILESUploadError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadError *)instance; - -/// -/// Deserializes `DBFILESUploadError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadError` API object. -/// -/// @return An instantiation of the `DBFILESUploadError` object. -/// -+ (DBFILESUploadError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionAppendArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionAppendArg.h deleted file mode 100644 index 9defd0af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionAppendArg.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionAppendArg; -@class DBFILESUploadSessionCursor; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionAppendArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionAppendArg : NSObject - -#pragma mark - Instance fields - -/// Contains the upload session ID and the offset. -@property (nonatomic, readonly) DBFILESUploadSessionCursor *cursor; - -/// If true, the current session will be closed, at which point you won't be -/// able to call `uploadSessionAppend` anymore with the current session. -@property (nonatomic, readonly) NSNumber *close; - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you -/// won't be able to call `uploadSessionAppend` anymore with the current -/// session. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param cursor Contains the upload session ID and the offset. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionAppendArg` struct. -/// -@interface DBFILESUploadSessionAppendArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionAppendArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionAppendArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionAppendArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionAppendArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionAppendArg` object. -/// -+ (DBFILESUploadSessionAppendArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionAppendError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionAppendError.h deleted file mode 100644 index 8c03022c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionAppendError.h +++ /dev/null @@ -1,317 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionAppendError; -@class DBFILESUploadSessionOffsetError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionAppendError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionAppendError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionAppendErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionAppendError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionAppendErrorTag) { - /// The upload session ID was not found or has expired. Upload sessions are - /// valid for 7 days. - DBFILESUploadSessionAppendErrorNotFound, - - /// The specified offset was incorrect. See the value for the correct - /// offset. This error may occur when a previous request was received and - /// processed successfully but the client did not receive the response, e.g. - /// due to a network error. - DBFILESUploadSessionAppendErrorIncorrectOffset, - - /// You are attempting to append data to an upload session that has already - /// been closed (i.e. committed). - DBFILESUploadSessionAppendErrorClosed, - - /// The session must be closed before calling upload_session/finish_batch. - DBFILESUploadSessionAppendErrorNotClosed, - - /// You can not append to the upload session because the size of a file - /// should not reach the max file size limit (i.e. 350GB). - DBFILESUploadSessionAppendErrorTooLarge, - - /// For concurrent upload sessions, offset needs to be multiple of 4194304 - /// bytes. - DBFILESUploadSessionAppendErrorConcurrentSessionInvalidOffset, - - /// For concurrent upload sessions, only chunks with size multiple of - /// 4194304 bytes can be uploaded. - DBFILESUploadSessionAppendErrorConcurrentSessionInvalidDataSize, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionAppendErrorPayloadTooLarge, - - /// (no description). - DBFILESUploadSessionAppendErrorOther, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadSessionAppendErrorContentHashMismatch, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionAppendErrorTag tag; - -/// The specified offset was incorrect. See the value for the correct offset. -/// This error may occur when a previous request was received and processed -/// successfully but the client did not receive the response, e.g. due to a -/// network error. @note Ensure the `isIncorrectOffset` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionOffsetError *incorrectOffset; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The upload session ID was not -/// found or has expired. Upload sessions are valid for 7 days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "incorrect_offset". -/// -/// Description of the "incorrect_offset" tag state: The specified offset was -/// incorrect. See the value for the correct offset. This error may occur when a -/// previous request was received and processed successfully but the client did -/// not receive the response, e.g. due to a network error. -/// -/// @param incorrectOffset The specified offset was incorrect. See the value for -/// the correct offset. This error may occur when a previous request was -/// received and processed successfully but the client did not receive the -/// response, e.g. due to a network error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncorrectOffset:(DBFILESUploadSessionOffsetError *)incorrectOffset; - -/// -/// Initializes union class with tag state of "closed". -/// -/// Description of the "closed" tag state: You are attempting to append data to -/// an upload session that has already been closed (i.e. committed). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClosed; - -/// -/// Initializes union class with tag state of "not_closed". -/// -/// Description of the "not_closed" tag state: The session must be closed before -/// calling upload_session/finish_batch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotClosed; - -/// -/// Initializes union class with tag state of "too_large". -/// -/// Description of the "too_large" tag state: You can not append to the upload -/// session because the size of a file should not reach the max file size limit -/// (i.e. 350GB). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooLarge; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_offset". -/// -/// Description of the "concurrent_session_invalid_offset" tag state: For -/// concurrent upload sessions, offset needs to be multiple of 4194304 bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidOffset; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_data_size". -/// -/// Description of the "concurrent_session_invalid_data_size" tag state: For -/// concurrent upload sessions, only chunks with size multiple of 4194304 bytes -/// can be uploaded. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidDataSize; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "incorrect_offset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `incorrectOffset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "incorrect_offset". -/// -- (BOOL)isIncorrectOffset; - -/// -/// Retrieves whether the union's current tag state has value "closed". -/// -/// @return Whether the union's current tag state has value "closed". -/// -- (BOOL)isClosed; - -/// -/// Retrieves whether the union's current tag state has value "not_closed". -/// -/// @return Whether the union's current tag state has value "not_closed". -/// -- (BOOL)isNotClosed; - -/// -/// Retrieves whether the union's current tag state has value "too_large". -/// -/// @return Whether the union's current tag state has value "too_large". -/// -- (BOOL)isTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -- (BOOL)isConcurrentSessionInvalidOffset; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -- (BOOL)isConcurrentSessionInvalidDataSize; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionAppendError` union. -/// -@interface DBFILESUploadSessionAppendErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionAppendError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionAppendError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionAppendError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionAppendError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionAppendError` object. -/// -+ (DBFILESUploadSessionAppendError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionCursor.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionCursor.h deleted file mode 100644 index 94a9bdc0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionCursor.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionCursor; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionCursor` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionCursor : NSObject - -#pragma mark - Instance fields - -/// The upload session ID (returned by `uploadSessionStart`). -@property (nonatomic, readonly, copy) NSString *sessionId; - -/// Offset in bytes at which data should be appended. We use this to make sure -/// upload data isn't lost or duplicated in the event of a network error. -@property (nonatomic, readonly) NSNumber *offset; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this -/// to make sure upload data isn't lost or duplicated in the event of a network -/// error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId offset:(NSNumber *)offset; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionCursor` struct. -/// -@interface DBFILESUploadSessionCursorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionCursor` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionCursor` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionCursor` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionCursor *)instance; - -/// -/// Deserializes `DBFILESUploadSessionCursor` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionCursor` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionCursor` object. -/// -+ (DBFILESUploadSessionCursor *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishArg.h deleted file mode 100644 index 8dc96712..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishArg.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCommitInfo; -@class DBFILESUploadSessionCursor; -@class DBFILESUploadSessionFinishArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishArg : NSObject - -#pragma mark - Instance fields - -/// Contains the upload session ID and the offset. -@property (nonatomic, readonly) DBFILESUploadSessionCursor *cursor; - -/// Contains the path and other optional modifiers for the commit. -@property (nonatomic, readonly) DBFILESCommitInfo *commit; - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor commit:(DBFILESCommitInfo *)commit; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionFinishArg` struct. -/// -@interface DBFILESUploadSessionFinishArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishArg` object. -/// -+ (DBFILESUploadSessionFinishArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchArg.h deleted file mode 100644 index a6d3853b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchArg : NSObject - -#pragma mark - Instance fields - -/// Commit information for each file in the batch. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Commit information for each file in the batch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionFinishBatchArg` struct. -/// -@interface DBFILESUploadSessionFinishBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchArg` object. -/// -+ (DBFILESUploadSessionFinishBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchJobStatus.h deleted file mode 100644 index 1cd2c39e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchJobStatus.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishBatchJobStatusTag` enum type represents the -/// possible tag states with which the -/// `DBFILESUploadSessionFinishBatchJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESUploadSessionFinishBatchJobStatusInProgress, - - /// The `uploadSessionFinishBatch` has finished. - DBFILESUploadSessionFinishBatchJobStatusComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchJobStatusTag tag; - -/// The `uploadSessionFinishBatch` has finished. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The `uploadSessionFinishBatch` has -/// finished. -/// -/// @param complete The `uploadSessionFinishBatch` has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESUploadSessionFinishBatchResult *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishBatchJobStatus` -/// union. -/// -@interface DBFILESUploadSessionFinishBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchJobStatus` instances. -/// -/// @param instance An instance of the -/// `DBFILESUploadSessionFinishBatchJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchJobStatus` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchLaunch.h deleted file mode 100644 index c6cae961..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchLaunch.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishBatchLaunch; -@class DBFILESUploadSessionFinishBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchLaunch` union. -/// -/// Result returned by `uploadSessionFinishBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishBatchLaunchTag` enum type represents the -/// possible tag states with which the `DBFILESUploadSessionFinishBatchLaunch` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESUploadSessionFinishBatchLaunchAsyncJobId, - - /// (no description). - DBFILESUploadSessionFinishBatchLaunchComplete, - - /// (no description). - DBFILESUploadSessionFinishBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESUploadSessionFinishBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishBatchLaunch` -/// union. -/// -@interface DBFILESUploadSessionFinishBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishBatchLaunch` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchLaunch` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchResult.h deleted file mode 100644 index ab585ec8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishBatchResult; -@class DBFILESUploadSessionFinishBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchResult : NSObject - -#pragma mark - Instance fields - -/// Each entry in `entries` in `DBFILESUploadSessionFinishBatchArg` will appear -/// at the same position inside `entries` in -/// `DBFILESUploadSessionFinishBatchResult`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in `entries` in -/// `DBFILESUploadSessionFinishBatchArg` will appear at the same position inside -/// `entries` in `DBFILESUploadSessionFinishBatchResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionFinishBatchResult` struct. -/// -@interface DBFILESUploadSessionFinishBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchResult *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchResult` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchResultEntry.h deleted file mode 100644 index a4d26673..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishBatchResultEntry.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBFILESUploadSessionFinishError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishBatchResultEntryTag` enum type represents the -/// possible tag states with which the -/// `DBFILESUploadSessionFinishBatchResultEntry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishBatchResultEntryTag) { - /// (no description). - DBFILESUploadSessionFinishBatchResultEntrySuccess, - - /// (no description). - DBFILESUploadSessionFinishBatchResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESFileMetadata *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionFinishError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESFileMetadata *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESUploadSessionFinishError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishBatchResultEntry` -/// union. -/// -@interface DBFILESUploadSessionFinishBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchResultEntry` instances. -/// -/// @param instance An instance of the -/// `DBFILESUploadSessionFinishBatchResultEntry` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchResultEntry` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishError.h deleted file mode 100644 index 03edc56d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionFinishError.h +++ /dev/null @@ -1,362 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILESUploadSessionFinishError; -@class DBFILESUploadSessionLookupError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionFinishError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishErrorTag) { - /// The session arguments are incorrect; the value explains the reason. - DBFILESUploadSessionFinishErrorLookupFailed, - - /// Unable to save the uploaded contents to a file. Data has already been - /// appended to the upload session. Please retry with empty data body and - /// updated offset. - DBFILESUploadSessionFinishErrorPath, - - /// The supplied property group is invalid. The file has uploaded without - /// property groups. - DBFILESUploadSessionFinishErrorPropertiesError, - - /// The batch request commits files into too many different shared folders. - /// Please limit your batch request to files contained in a single shared - /// folder. - DBFILESUploadSessionFinishErrorTooManySharedFolderTargets, - - /// There are too many write operations happening in the user's Dropbox. You - /// should retry uploading this file. - DBFILESUploadSessionFinishErrorTooManyWriteOperations, - - /// Uploading data not allowed when finishing concurrent upload session. - DBFILESUploadSessionFinishErrorConcurrentSessionDataNotAllowed, - - /// Concurrent upload sessions need to be closed before finishing. - DBFILESUploadSessionFinishErrorConcurrentSessionNotClosed, - - /// Not all pieces of data were uploaded before trying to finish the - /// session. - DBFILESUploadSessionFinishErrorConcurrentSessionMissingData, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionFinishErrorPayloadTooLarge, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadSessionFinishErrorContentHashMismatch, - - /// (no description). - DBFILESUploadSessionFinishErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishErrorTag tag; - -/// The session arguments are incorrect; the value explains the reason. @note -/// Ensure the `isLookupFailed` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionLookupError *lookupFailed; - -/// Unable to save the uploaded contents to a file. Data has already been -/// appended to the upload session. Please retry with empty data body and -/// updated offset. @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -/// The supplied property group is invalid. The file has uploaded without -/// property groups. @note Ensure the `isPropertiesError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESInvalidPropertyGroupError *propertiesError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "lookup_failed". -/// -/// Description of the "lookup_failed" tag state: The session arguments are -/// incorrect; the value explains the reason. -/// -/// @param lookupFailed The session arguments are incorrect; the value explains -/// the reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLookupFailed:(DBFILESUploadSessionLookupError *)lookupFailed; - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: Unable to save the uploaded contents to -/// a file. Data has already been appended to the upload session. Please retry -/// with empty data body and updated offset. -/// -/// @param path Unable to save the uploaded contents to a file. Data has already -/// been appended to the upload session. Please retry with empty data body and -/// updated offset. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "properties_error". -/// -/// Description of the "properties_error" tag state: The supplied property group -/// is invalid. The file has uploaded without property groups. -/// -/// @param propertiesError The supplied property group is invalid. The file has -/// uploaded without property groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertiesError:(DBFILEPROPERTIESInvalidPropertyGroupError *)propertiesError; - -/// -/// Initializes union class with tag state of "too_many_shared_folder_targets". -/// -/// Description of the "too_many_shared_folder_targets" tag state: The batch -/// request commits files into too many different shared folders. Please limit -/// your batch request to files contained in a single shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManySharedFolderTargets; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations happening in the user's Dropbox. You should retry uploading -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_data_not_allowed". -/// -/// Description of the "concurrent_session_data_not_allowed" tag state: -/// Uploading data not allowed when finishing concurrent upload session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionDataNotAllowed; - -/// -/// Initializes union class with tag state of "concurrent_session_not_closed". -/// -/// Description of the "concurrent_session_not_closed" tag state: Concurrent -/// upload sessions need to be closed before finishing. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionNotClosed; - -/// -/// Initializes union class with tag state of "concurrent_session_missing_data". -/// -/// Description of the "concurrent_session_missing_data" tag state: Not all -/// pieces of data were uploaded before trying to finish the session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionMissingData; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "lookup_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `lookupFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "lookup_failed". -/// -- (BOOL)isLookupFailed; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "properties_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertiesError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "properties_error". -/// -- (BOOL)isPropertiesError; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_shared_folder_targets". -/// -/// @return Whether the union's current tag state has value -/// "too_many_shared_folder_targets". -/// -- (BOOL)isTooManySharedFolderTargets; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -- (BOOL)isConcurrentSessionDataNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_not_closed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_not_closed". -/// -- (BOOL)isConcurrentSessionNotClosed; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_missing_data". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_missing_data". -/// -- (BOOL)isConcurrentSessionMissingData; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishError` union. -/// -@interface DBFILESUploadSessionFinishErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishError` object. -/// -+ (DBFILESUploadSessionFinishError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionLookupError.h deleted file mode 100644 index 6ad35d65..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionLookupError.h +++ /dev/null @@ -1,294 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionLookupError; -@class DBFILESUploadSessionOffsetError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionLookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionLookupErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionLookupErrorTag) { - /// The upload session ID was not found or has expired. Upload sessions are - /// valid for 7 days. - DBFILESUploadSessionLookupErrorNotFound, - - /// The specified offset was incorrect. See the value for the correct - /// offset. This error may occur when a previous request was received and - /// processed successfully but the client did not receive the response, e.g. - /// due to a network error. - DBFILESUploadSessionLookupErrorIncorrectOffset, - - /// You are attempting to append data to an upload session that has already - /// been closed (i.e. committed). - DBFILESUploadSessionLookupErrorClosed, - - /// The session must be closed before calling upload_session/finish_batch. - DBFILESUploadSessionLookupErrorNotClosed, - - /// You can not append to the upload session because the size of a file - /// should not reach the max file size limit (i.e. 350GB). - DBFILESUploadSessionLookupErrorTooLarge, - - /// For concurrent upload sessions, offset needs to be multiple of 4194304 - /// bytes. - DBFILESUploadSessionLookupErrorConcurrentSessionInvalidOffset, - - /// For concurrent upload sessions, only chunks with size multiple of - /// 4194304 bytes can be uploaded. - DBFILESUploadSessionLookupErrorConcurrentSessionInvalidDataSize, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionLookupErrorPayloadTooLarge, - - /// (no description). - DBFILESUploadSessionLookupErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionLookupErrorTag tag; - -/// The specified offset was incorrect. See the value for the correct offset. -/// This error may occur when a previous request was received and processed -/// successfully but the client did not receive the response, e.g. due to a -/// network error. @note Ensure the `isIncorrectOffset` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionOffsetError *incorrectOffset; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The upload session ID was not -/// found or has expired. Upload sessions are valid for 7 days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "incorrect_offset". -/// -/// Description of the "incorrect_offset" tag state: The specified offset was -/// incorrect. See the value for the correct offset. This error may occur when a -/// previous request was received and processed successfully but the client did -/// not receive the response, e.g. due to a network error. -/// -/// @param incorrectOffset The specified offset was incorrect. See the value for -/// the correct offset. This error may occur when a previous request was -/// received and processed successfully but the client did not receive the -/// response, e.g. due to a network error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncorrectOffset:(DBFILESUploadSessionOffsetError *)incorrectOffset; - -/// -/// Initializes union class with tag state of "closed". -/// -/// Description of the "closed" tag state: You are attempting to append data to -/// an upload session that has already been closed (i.e. committed). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClosed; - -/// -/// Initializes union class with tag state of "not_closed". -/// -/// Description of the "not_closed" tag state: The session must be closed before -/// calling upload_session/finish_batch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotClosed; - -/// -/// Initializes union class with tag state of "too_large". -/// -/// Description of the "too_large" tag state: You can not append to the upload -/// session because the size of a file should not reach the max file size limit -/// (i.e. 350GB). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooLarge; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_offset". -/// -/// Description of the "concurrent_session_invalid_offset" tag state: For -/// concurrent upload sessions, offset needs to be multiple of 4194304 bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidOffset; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_data_size". -/// -/// Description of the "concurrent_session_invalid_data_size" tag state: For -/// concurrent upload sessions, only chunks with size multiple of 4194304 bytes -/// can be uploaded. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidDataSize; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "incorrect_offset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `incorrectOffset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "incorrect_offset". -/// -- (BOOL)isIncorrectOffset; - -/// -/// Retrieves whether the union's current tag state has value "closed". -/// -/// @return Whether the union's current tag state has value "closed". -/// -- (BOOL)isClosed; - -/// -/// Retrieves whether the union's current tag state has value "not_closed". -/// -/// @return Whether the union's current tag state has value "not_closed". -/// -- (BOOL)isNotClosed; - -/// -/// Retrieves whether the union's current tag state has value "too_large". -/// -/// @return Whether the union's current tag state has value "too_large". -/// -- (BOOL)isTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -- (BOOL)isConcurrentSessionInvalidOffset; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -- (BOOL)isConcurrentSessionInvalidDataSize; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionLookupError` union. -/// -@interface DBFILESUploadSessionLookupErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionLookupError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionLookupError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionLookupError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionLookupError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionLookupError` object. -/// -+ (DBFILESUploadSessionLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionOffsetError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionOffsetError.h deleted file mode 100644 index 610842c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionOffsetError.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionOffsetError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionOffsetError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionOffsetError : NSObject - -#pragma mark - Instance fields - -/// The offset up to which data has been collected. -@property (nonatomic, readonly) NSNumber *correctOffset; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param correctOffset The offset up to which data has been collected. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCorrectOffset:(NSNumber *)correctOffset; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionOffsetError` struct. -/// -@interface DBFILESUploadSessionOffsetErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionOffsetError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionOffsetError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionOffsetError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionOffsetError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionOffsetError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionOffsetError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionOffsetError` object. -/// -+ (DBFILESUploadSessionOffsetError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartArg.h deleted file mode 100644 index c859d2c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartArg; -@class DBFILESUploadSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartArg : NSObject - -#pragma mark - Instance fields - -/// If true, the current session will be closed, at which point you won't be -/// able to call `uploadSessionAppend` anymore with the current session. -@property (nonatomic, readonly) NSNumber *close; - -/// Type of upload session you want to start. If not specified, default is -/// `sequential` in `DBFILESUploadSessionType`. -@property (nonatomic, readonly, nullable) DBFILESUploadSessionType *sessionType; - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param close If true, the current session will be closed, at which point you -/// won't be able to call `uploadSessionAppend` anymore with the current -/// session. -/// @param sessionType Type of upload session you want to start. If not -/// specified, default is `sequential` in `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClose:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartArg` struct. -/// -@interface DBFILESUploadSessionStartArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartArg` object. -/// -+ (DBFILESUploadSessionStartArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartBatchArg.h deleted file mode 100644 index 6568ea3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartBatchArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartBatchArg; -@class DBFILESUploadSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartBatchArg : NSObject - -#pragma mark - Instance fields - -/// Type of upload session you want to start. If not specified, default is -/// `sequential` in `DBFILESUploadSessionType`. -@property (nonatomic, readonly, nullable) DBFILESUploadSessionType *sessionType; - -/// The number of upload sessions to start. -@property (nonatomic, readonly) NSNumber *numSessions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param numSessions The number of upload sessions to start. -/// @param sessionType Type of upload session you want to start. If not -/// specified, default is `sequential` in `DBFILESUploadSessionType`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumSessions:(NSNumber *)numSessions - sessionType:(nullable DBFILESUploadSessionType *)sessionType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param numSessions The number of upload sessions to start. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumSessions:(NSNumber *)numSessions; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartBatchArg` struct. -/// -@interface DBFILESUploadSessionStartBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartBatchArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartBatchArg` object. -/// -+ (DBFILESUploadSessionStartBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartBatchResult.h deleted file mode 100644 index 455c2d4b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartBatchResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartBatchResult : NSObject - -#pragma mark - Instance fields - -/// A List of unique identifiers for the upload session. Pass each session_id to -/// `uploadSessionAppend` and `uploadSessionFinish`. -@property (nonatomic, readonly) NSArray *sessionIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionIds A List of unique identifiers for the upload session. Pass -/// each session_id to `uploadSessionAppend` and `uploadSessionFinish`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionIds:(NSArray *)sessionIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartBatchResult` struct. -/// -@interface DBFILESUploadSessionStartBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartBatchResult *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartBatchResult` -/// object. -/// -+ (DBFILESUploadSessionStartBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartError.h deleted file mode 100644 index ba3e5bb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartError.h +++ /dev/null @@ -1,188 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionStartErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionStartError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionStartErrorTag) { - /// Uploading data not allowed when starting concurrent upload session. - DBFILESUploadSessionStartErrorConcurrentSessionDataNotAllowed, - - /// Can not start a closed concurrent upload session. - DBFILESUploadSessionStartErrorConcurrentSessionCloseNotAllowed, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionStartErrorPayloadTooLarge, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadSessionStartErrorContentHashMismatch, - - /// (no description). - DBFILESUploadSessionStartErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionStartErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "concurrent_session_data_not_allowed". -/// -/// Description of the "concurrent_session_data_not_allowed" tag state: -/// Uploading data not allowed when starting concurrent upload session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionDataNotAllowed; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_close_not_allowed". -/// -/// Description of the "concurrent_session_close_not_allowed" tag state: Can not -/// start a closed concurrent upload session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionCloseNotAllowed; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -- (BOOL)isConcurrentSessionDataNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_close_not_allowed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_close_not_allowed". -/// -- (BOOL)isConcurrentSessionCloseNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionStartError` union. -/// -@interface DBFILESUploadSessionStartErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartError` object. -/// -+ (DBFILESUploadSessionStartError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartResult.h deleted file mode 100644 index f3c6a944..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionStartResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartResult : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the upload session. Pass this to -/// `uploadSessionAppend` and `uploadSessionFinish`. -@property (nonatomic, readonly, copy) NSString *sessionId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId A unique identifier for the upload session. Pass this to -/// `uploadSessionAppend` and `uploadSessionFinish`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartResult` struct. -/// -@interface DBFILESUploadSessionStartResultSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartResult` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartResult *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartResult` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartResult` object. -/// -+ (DBFILESUploadSessionStartResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionType.h deleted file mode 100644 index 435d989d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadSessionType.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionTypeTag` enum type represents the possible tag -/// states with which the `DBFILESUploadSessionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionTypeTag) { - /// Pieces of data are uploaded sequentially one after another. This is the - /// default behavior. - DBFILESUploadSessionTypeSequential, - - /// Pieces of data can be uploaded in concurrent RPCs in any order. - DBFILESUploadSessionTypeConcurrent, - - /// (no description). - DBFILESUploadSessionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "sequential". -/// -/// Description of the "sequential" tag state: Pieces of data are uploaded -/// sequentially one after another. This is the default behavior. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSequential; - -/// -/// Initializes union class with tag state of "concurrent". -/// -/// Description of the "concurrent" tag state: Pieces of data can be uploaded in -/// concurrent RPCs in any order. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "sequential". -/// -/// @return Whether the union's current tag state has value "sequential". -/// -- (BOOL)isSequential; - -/// -/// Retrieves whether the union's current tag state has value "concurrent". -/// -/// @return Whether the union's current tag state has value "concurrent". -/// -- (BOOL)isConcurrent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionType` union. -/// -@interface DBFILESUploadSessionTypeSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionType` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionType *)instance; - -/// -/// Deserializes `DBFILESUploadSessionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionType` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionType` object. -/// -+ (DBFILESUploadSessionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadWriteFailed.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadWriteFailed.h deleted file mode 100644 index 0b6f4ae7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUploadWriteFailed.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadWriteFailed; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadWriteFailed` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadWriteFailed : NSObject - -#pragma mark - Instance fields - -/// The reason why the file couldn't be saved. -@property (nonatomic, readonly) DBFILESWriteError *reason; - -/// The upload session ID; data has already been uploaded to the corresponding -/// upload session and this ID may be used to retry the commit with -/// `uploadSessionFinish`. -@property (nonatomic, readonly, copy) NSString *uploadSessionId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param reason The reason why the file couldn't be saved. -/// @param uploadSessionId The upload session ID; data has already been uploaded -/// to the corresponding upload session and this ID may be used to retry the -/// commit with `uploadSessionFinish`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReason:(DBFILESWriteError *)reason uploadSessionId:(NSString *)uploadSessionId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadWriteFailed` struct. -/// -@interface DBFILESUploadWriteFailedSerializer : NSObject - -/// -/// Serializes `DBFILESUploadWriteFailed` instances. -/// -/// @param instance An instance of the `DBFILESUploadWriteFailed` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadWriteFailed` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadWriteFailed *)instance; - -/// -/// Deserializes `DBFILESUploadWriteFailed` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadWriteFailed` API object. -/// -/// @return An instantiation of the `DBFILESUploadWriteFailed` object. -/// -+ (DBFILESUploadWriteFailed *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUserAuthRoutes.h deleted file mode 100644 index a02adeb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUserAuthRoutes.h +++ /dev/null @@ -1,3168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCPollError; -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILESAddTagError; -@class DBFILESAlphaGetMetadataError; -@class DBFILESBaseTagError; -@class DBFILESCommitInfo; -@class DBFILESCreateFolderBatchError; -@class DBFILESCreateFolderBatchJobStatus; -@class DBFILESCreateFolderBatchLaunch; -@class DBFILESCreateFolderBatchResult; -@class DBFILESCreateFolderError; -@class DBFILESCreateFolderResult; -@class DBFILESDeleteArg; -@class DBFILESDeleteBatchError; -@class DBFILESDeleteBatchJobStatus; -@class DBFILESDeleteBatchLaunch; -@class DBFILESDeleteBatchResult; -@class DBFILESDeleteError; -@class DBFILESDeleteResult; -@class DBFILESDownloadError; -@class DBFILESDownloadZipError; -@class DBFILESDownloadZipResult; -@class DBFILESExportError; -@class DBFILESExportInfo; -@class DBFILESExportMetadata; -@class DBFILESExportResult; -@class DBFILESFileCategory; -@class DBFILESFileLockMetadata; -@class DBFILESFileMetadata; -@class DBFILESFileSharingInfo; -@class DBFILESFileStatus; -@class DBFILESFolderMetadata; -@class DBFILESFolderSharingInfo; -@class DBFILESGetCopyReferenceError; -@class DBFILESGetCopyReferenceResult; -@class DBFILESGetMetadataError; -@class DBFILESGetTagsResult; -@class DBFILESGetTemporaryLinkError; -@class DBFILESGetTemporaryLinkResult; -@class DBFILESGetTemporaryUploadLinkResult; -@class DBFILESGetThumbnailBatchError; -@class DBFILESGetThumbnailBatchResult; -@class DBFILESGetThumbnailBatchResultEntry; -@class DBFILESImportFormat; -@class DBFILESListFolderContinueError; -@class DBFILESListFolderError; -@class DBFILESListFolderGetLatestCursorResult; -@class DBFILESListFolderLongpollError; -@class DBFILESListFolderLongpollResult; -@class DBFILESListFolderResult; -@class DBFILESListRevisionsError; -@class DBFILESListRevisionsMode; -@class DBFILESListRevisionsResult; -@class DBFILESLockConflictError; -@class DBFILESLockFileArg; -@class DBFILESLockFileBatchResult; -@class DBFILESLockFileError; -@class DBFILESLockFileResultEntry; -@class DBFILESLookupError; -@class DBFILESMediaInfo; -@class DBFILESMetadata; -@class DBFILESMinimalFileLinkMetadata; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESPaperCreateError; -@class DBFILESPaperCreateResult; -@class DBFILESPaperDocUpdatePolicy; -@class DBFILESPaperUpdateError; -@class DBFILESPaperUpdateResult; -@class DBFILESPathOrLink; -@class DBFILESPathToTags; -@class DBFILESPreviewError; -@class DBFILESPreviewResult; -@class DBFILESRelocationBatchError; -@class DBFILESRelocationBatchJobStatus; -@class DBFILESRelocationBatchLaunch; -@class DBFILESRelocationBatchResult; -@class DBFILESRelocationBatchV2JobStatus; -@class DBFILESRelocationBatchV2Launch; -@class DBFILESRelocationBatchV2Result; -@class DBFILESRelocationError; -@class DBFILESRelocationPath; -@class DBFILESRelocationResult; -@class DBFILESRemoveTagError; -@class DBFILESRestoreError; -@class DBFILESSaveCopyReferenceError; -@class DBFILESSaveCopyReferenceResult; -@class DBFILESSaveUrlError; -@class DBFILESSaveUrlJobStatus; -@class DBFILESSaveUrlResult; -@class DBFILESSearchError; -@class DBFILESSearchMatch; -@class DBFILESSearchMatchFieldOptions; -@class DBFILESSearchMatchV2; -@class DBFILESSearchMode; -@class DBFILESSearchOptions; -@class DBFILESSearchOrderBy; -@class DBFILESSearchResult; -@class DBFILESSearchV2Result; -@class DBFILESSharedLink; -@class DBFILESSharedLinkFileInfo; -@class DBFILESSymlinkInfo; -@class DBFILESThumbnailArg; -@class DBFILESThumbnailError; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; -@class DBFILESThumbnailV2Error; -@class DBFILESUnlockFileArg; -@class DBFILESUploadError; -@class DBFILESUploadSessionAppendError; -@class DBFILESUploadSessionCursor; -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchLaunch; -@class DBFILESUploadSessionFinishBatchResult; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBFILESUploadSessionFinishError; -@class DBFILESUploadSessionLookupError; -@class DBFILESUploadSessionOffsetError; -@class DBFILESUploadSessionStartBatchResult; -@class DBFILESUploadSessionStartError; -@class DBFILESUploadSessionStartResult; -@class DBFILESUploadSessionType; -@class DBFILESUploadWriteFailed; -@class DBFILESWriteError; -@class DBFILESWriteMode; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Files` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILESUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILESUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// DEPRECATED: Returns the metadata for a file or folder. This is an alpha endpoint compatible with the properties API. -/// Note: Metadata for the root folder is unsupported. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESAlphaGetMetadataError` object on failure. -/// -- (DBRpcTask *)alphaGetMetadata:(NSString *)path - __deprecated_msg("alphaGetMetadata is deprecated. Use getMetadata."); - -/// -/// DEPRECATED: Returns the metadata for a file or folder. This is an alpha endpoint compatible with the properties API. -/// Note: Metadata for the root folder is unsupported. -/// -/// @param includePropertyTemplates If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set for files with custom properties. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESAlphaGetMetadataError` object on failure. -/// -- (DBRpcTask *) - alphaGetMetadata:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includePropertyTemplates:(nullable NSArray *)includePropertyTemplates - __deprecated_msg("alphaGetMetadata is deprecated. Use getMetadata."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)alphaUploadUrl:(NSString *)path - inputUrl:(NSString *)inputUrl - __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - alphaUploadUrl:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)alphaUploadData:(NSString *)path - inputData:(NSData *)inputData - __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - alphaUploadData:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)alphaUploadStream:(NSString *)path - inputStream:(NSInputStream *)inputStream - __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - alphaUploadStream:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be copied. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopy:(NSString *)fromPath - toPath:(NSString *)toPath - __deprecated_msg("dCopy is deprecated. Use dCopy."); - -/// -/// DEPRECATED: Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be copied. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopy:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("dCopy is deprecated. Use dCopy."); - -/// -/// Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be copied. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopyV2:(NSString *)fromPath - toPath:(NSString *)toPath; - -/// -/// Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be copied. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopyV2:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// DEPRECATED: Copy multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async copy job in background. Please use `dCopyBatchCheck` to check the job -/// status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatch:(NSArray *)entries - __deprecated_msg("dCopyBatch is deprecated. Use dCopyBatch."); - -/// -/// DEPRECATED: Copy multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async copy job in background. Please use `dCopyBatchCheck` to check the job -/// status. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatch:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("dCopyBatch is deprecated. Use dCopyBatch."); - -/// -/// Copy multiple files or folders to different locations at once in the user's Dropbox. This route will replace -/// `dCopyBatch`. The main difference is this route will return status for each entry, while `dCopyBatch` raises failure -/// if any entry fails. This route will either finish synchronously, or return a job ID and do the async copy job in -/// background. Please use `dCopyBatchCheck` to check the job status. -/// -/// @param entries List of entries to be moved or copied. Each entry is RelocationPath. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatchV2: - (NSArray *)entries; - -/// -/// Copy multiple files or folders to different locations at once in the user's Dropbox. This route will replace -/// `dCopyBatch`. The main difference is this route will return status for each entry, while `dCopyBatch` raises failure -/// if any entry fails. This route will either finish synchronously, or return a job ID and do the async copy job in -/// background. Please use `dCopyBatchCheck` to check the job status. -/// -/// @param entries List of entries to be moved or copied. Each entry is RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox server try to autorename that file to avoid -/// the conflict. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatchV2:(NSArray *)entries - autorename:(nullable NSNumber *)autorename; - -/// -/// DEPRECATED: Returns the status of an asynchronous job for `dCopyBatch`. If success, it returns list of results for -/// each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)dCopyBatchCheck:(NSString *)asyncJobId - __deprecated_msg("dCopyBatchCheck is deprecated. Use dCopyBatchCheck."); - -/// -/// Returns the status of an asynchronous job for `dCopyBatch`. It returns list of results for each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2JobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)dCopyBatchCheckV2:(NSString *)asyncJobId; - -/// -/// Get a copy reference to a file or folder. This reference string can be used to save that file or folder to another -/// user's Dropbox by passing it to `dCopyReferenceSave`. -/// -/// @param path The path to the file or folder you want to get a copy reference to. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetCopyReferenceResult` object on success -/// or a `DBFILESGetCopyReferenceError` object on failure. -/// -- (DBRpcTask *)dCopyReferenceGet:(NSString *)path; - -/// -/// Save a copy reference returned by `dCopyReferenceGet` to the user's Dropbox. -/// -/// @param dCopyReference A copy reference returned by `dCopyReferenceGet`. -/// @param path Path in the user's Dropbox that is the destination. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSaveCopyReferenceResult` object on success -/// or a `DBFILESSaveCopyReferenceError` object on failure. -/// -- (DBRpcTask *)dCopyReferenceSave: - (NSString *)dCopyReference - path:(NSString *)path; - -/// -/// DEPRECATED: Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFolderMetadata` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolder:(NSString *)path - __deprecated_msg("createFolder is deprecated. Use createFolder."); - -/// -/// DEPRECATED: Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFolderMetadata` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolder:(NSString *)path - autorename:(nullable NSNumber *)autorename - __deprecated_msg("createFolder is deprecated. Use createFolder."); - -/// -/// Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderResult` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolderV2:(NSString *)path; - -/// -/// Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderResult` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolderV2:(NSString *)path - autorename:(nullable NSNumber *)autorename; - -/// -/// Create multiple folders at once. This route is asynchronous for large batches, which returns a job ID immediately -/// and runs the create folder batch asynchronously. Otherwise, creates the folders and returns the result synchronously -/// for smaller inputs. You can force asynchronous behaviour by using the `forceAsync` in `DBFILESCreateFolderBatchArg` -/// flag. Use `createFolderBatchCheck` to check the job status. -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered -/// only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderBatchLaunch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)createFolderBatch:(NSArray *)paths; - -/// -/// Create multiple folders at once. This route is asynchronous for large batches, which returns a job ID immediately -/// and runs the create folder batch asynchronously. Otherwise, creates the folders and returns the result synchronously -/// for smaller inputs. You can force asynchronous behaviour by using the `forceAsync` in `DBFILESCreateFolderBatchArg` -/// flag. Use `createFolderBatchCheck` to check the job status. -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered -/// only once. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -/// @param forceAsync Whether to force the create to happen asynchronously. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderBatchLaunch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)createFolderBatch:(NSArray *)paths - autorename:(nullable NSNumber *)autorename - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Returns the status of an asynchronous job for `createFolderBatch`. If success, it returns list of result for each -/// entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderBatchJobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)createFolderBatchCheck:(NSString *)asyncJobId; - -/// -/// DEPRECATED: Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted -/// too. A successful response indicates that the file or folder was deleted. The returned metadata will be the -/// corresponding FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_:(NSString *)path - __deprecated_msg("delete_ is deprecated. Use delete_."); - -/// -/// DEPRECATED: Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted -/// too. A successful response indicates that the file or folder was deleted. The returned metadata will be the -/// corresponding FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's latest "rev". This field does not support -/// deleting a folder. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_:(NSString *)path - parentRev:(nullable NSString *)parentRev - __deprecated_msg("delete_ is deprecated. Use delete_."); - -/// -/// Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A -/// successful response indicates that the file or folder was deleted. The returned metadata will be the corresponding -/// FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteResult` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_V2:(NSString *)path; - -/// -/// Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A -/// successful response indicates that the file or folder was deleted. The returned metadata will be the corresponding -/// FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's latest "rev". This field does not support -/// deleting a folder. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteResult` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_V2:(NSString *)path - parentRev:(nullable NSString *)parentRev; - -/// -/// Delete multiple files/folders at once. This route is asynchronous, which returns a job ID immediately and runs the -/// delete batch asynchronously. Use `deleteBatchCheck` to check the job status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteBatchLaunch` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)deleteBatch:(NSArray *)entries; - -/// -/// Returns the status of an asynchronous job for `deleteBatch`. If success, it returns list of result for each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteBatchJobStatus` object on success or -/// a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)deleteBatchCheck:(NSString *)asyncJobId; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path - rev:(nullable NSString *)rev; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path - rev:(nullable NSString *)rev - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadUrlTask *)downloadZipUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadUrlTask *)downloadZipUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadDataTask *)downloadZipData:(NSString *)path; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadDataTask *) - downloadZipData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - exportFormat:(nullable NSString *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - exportFormat:(nullable NSString *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path - exportFormat:(nullable NSString *)exportFormat; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path - exportFormat:(nullable NSString *)exportFormat - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Return the lock metadata for the given list of paths. -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. -/// Duplicate path arguments in the batch are considered only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESLockFileBatchResult` object on success or a -/// `DBFILESLockFileError` object on failure. -/// -- (DBRpcTask *)getFileLockBatch: - (NSArray *)entries; - -/// -/// Returns the metadata for a file or folder. Note: Metadata for the root folder is unsupported. -/// -/// @param path The path of a file or folder on Dropbox. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESGetMetadataError` object on failure. -/// -- (DBRpcTask *)getMetadata:(NSString *)path; - -/// -/// Returns the metadata for a file or folder. Note: Metadata for the root folder is unsupported. -/// -/// @param path The path of a file or folder on Dropbox. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. -/// @param includeDeleted If true, DeletedMetadata will be returned for deleted file or folder, otherwise `notFound` in -/// `DBFILESLookupError` will be returned. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESGetMetadataError` object on failure. -/// -- (DBRpcTask *) - getMetadata:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path - rev:(nullable NSString *)rev; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path - rev:(nullable NSString *)rev - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a temporary link to stream content of a file. This link will expire in four hours and afterwards you will get -/// 410 Gone. This URL should not be used to display content directly in the browser. The Content-Type of the link is -/// determined automatically by the file's mime type. -/// -/// @param path The path to the file you want a temporary link to. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTemporaryLinkResult` object on success -/// or a `DBFILESGetTemporaryLinkError` object on failure. -/// -- (DBRpcTask *)getTemporaryLink:(NSString *)path; - -/// -/// Get a one-time use temporary upload link to upload a file to a Dropbox location. This endpoint acts as a delayed -/// `upload`. The returned temporary upload link may be used to make a POST request with the data to be uploaded. The -/// upload will then be perfomed with the CommitInfo previously provided to `getTemporaryUploadLink` but evaluated only -/// upon consumption. Hence, errors stemming from invalid CommitInfo with respect to the state of the user's Dropbox -/// will only be communicated at consumption time. Additionally, these errors are surfaced as generic HTTP 409 Conflict -/// responses, potentially hiding issue details. The maximum temporary upload link duration is 4 hours. Upon consumption -/// or expiration, a new link will have to be generated. Multiple links may exist for a specific upload path at any -/// given time. The POST request on the temporary upload link must have its Content-Type set to -/// "application/octet-stream". Example temporary upload link consumption request: curl -X POST -/// https://content.dropboxapi.com/apitul/1/bNi2uIYF51cVBND --header "Content-Type: application/octet-stream" -/// --data-binary @local_file.txt A successful temporary upload link consumption request returns the content hash of -/// the uploaded data in JSON format. Example successful temporary upload link consumption response: {"content-hash": -/// "599d71033d700ac892a0e48fa61b125d2f5994"} An unsuccessful temporary upload link consumption request returns any of -/// the following status codes: HTTP 400 Bad Request: Content-Type is not one of application/octet-stream and -/// text/plain or request is invalid. HTTP 409 Conflict: The temporary upload link does not exist or is currently -/// unavailable, the upload failed, or another error happened. HTTP 410 Gone: The temporary upload link is expired or -/// consumed. Example unsuccessful temporary upload link consumption response: Temporary upload link has been recently -/// consumed. -/// -/// @param commitInfo Contains the path and other optional modifiers for the future upload commit. Equivalent to the -/// parameters provided to `upload`. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTemporaryUploadLinkResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)getTemporaryUploadLink: - (DBFILESCommitInfo *)commitInfo; - -/// -/// Get a one-time use temporary upload link to upload a file to a Dropbox location. This endpoint acts as a delayed -/// `upload`. The returned temporary upload link may be used to make a POST request with the data to be uploaded. The -/// upload will then be perfomed with the CommitInfo previously provided to `getTemporaryUploadLink` but evaluated only -/// upon consumption. Hence, errors stemming from invalid CommitInfo with respect to the state of the user's Dropbox -/// will only be communicated at consumption time. Additionally, these errors are surfaced as generic HTTP 409 Conflict -/// responses, potentially hiding issue details. The maximum temporary upload link duration is 4 hours. Upon consumption -/// or expiration, a new link will have to be generated. Multiple links may exist for a specific upload path at any -/// given time. The POST request on the temporary upload link must have its Content-Type set to -/// "application/octet-stream". Example temporary upload link consumption request: curl -X POST -/// https://content.dropboxapi.com/apitul/1/bNi2uIYF51cVBND --header "Content-Type: application/octet-stream" -/// --data-binary @local_file.txt A successful temporary upload link consumption request returns the content hash of -/// the uploaded data in JSON format. Example successful temporary upload link consumption response: {"content-hash": -/// "599d71033d700ac892a0e48fa61b125d2f5994"} An unsuccessful temporary upload link consumption request returns any of -/// the following status codes: HTTP 400 Bad Request: Content-Type is not one of application/octet-stream and -/// text/plain or request is invalid. HTTP 409 Conflict: The temporary upload link does not exist or is currently -/// unavailable, the upload failed, or another error happened. HTTP 410 Gone: The temporary upload link is expired or -/// consumed. Example unsuccessful temporary upload link consumption response: Temporary upload link has been recently -/// consumed. -/// -/// @param commitInfo Contains the path and other optional modifiers for the future upload commit. Equivalent to the -/// parameters provided to `upload`. -/// @param duration How long before this link expires, in seconds. Attempting to start an upload with this link longer -/// than this period of time after link creation will result in an error. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTemporaryUploadLinkResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *) - getTemporaryUploadLink:(DBFILESCommitInfo *)commitInfo - duration:(nullable NSNumber *)duration; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailUrl:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailUrl:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailData:(NSString *)path; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailData:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailData:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailV2Data: - (DBFILESPathOrLink *)resource; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get thumbnails for a list of images. We allow up to 25 thumbnails in a single batch. This method currently supports -/// files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger -/// than 20MB in size won't be converted to a thumbnail. -/// -/// @param entries List of files to get thumbnails. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetThumbnailBatchResult` object on success -/// or a `DBFILESGetThumbnailBatchError` object on failure. -/// -- (DBRpcTask *)getThumbnailBatch: - (NSArray *)entries; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *)listFolder:(NSString *)path; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied recursively to all subfolders and the response -/// will contain contents of all subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. This parameter -/// will no longer have an effect starting December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files and folders that used to exist but were -/// deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includeMountedFolders If true, the results will include entries under mounted folders which includes app -/// folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This is an approximate number and there can -/// be slightly more entries returned in some cases. -/// @param sharedLink A shared link to list the contents of. If the link is password-protected, the password must be -/// provided. If this field is present, `path` in `DBFILESListFolderArg` will be relative to root of the shared link. -/// Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not downloadable, i.e. Google Docs. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *) - listFolder:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// Once a cursor has been retrieved from `listFolder`, use this to paginate through all files and retrieve updates to -/// the folder, following the same rules as documented for `listFolder`. -/// -/// @param cursor The cursor returned by your last call to `listFolder` or `listFolderContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderContinueError` object on failure. -/// -- (DBRpcTask *)listFolderContinue:(NSString *)cursor; - -/// -/// A way to quickly get a cursor for the folder's state. Unlike `listFolder`, `listFolderGetLatestCursor` doesn't -/// return any entries. This endpoint is for app which only needs to know about new files and modifications and doesn't -/// need to know about files that already exist in Dropbox. -/// -/// @param path A unique identifier for the file. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderGetLatestCursorResult` object on -/// success or a `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *)listFolderGetLatestCursor: - (NSString *)path; - -/// -/// A way to quickly get a cursor for the folder's state. Unlike `listFolder`, `listFolderGetLatestCursor` doesn't -/// return any entries. This endpoint is for app which only needs to know about new files and modifications and doesn't -/// need to know about files that already exist in Dropbox. -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied recursively to all subfolders and the response -/// will contain contents of all subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. This parameter -/// will no longer have an effect starting December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files and folders that used to exist but were -/// deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includeMountedFolders If true, the results will include entries under mounted folders which includes app -/// folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This is an approximate number and there can -/// be slightly more entries returned in some cases. -/// @param sharedLink A shared link to list the contents of. If the link is password-protected, the password must be -/// provided. If this field is present, `path` in `DBFILESListFolderArg` will be relative to root of the shared link. -/// Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not downloadable, i.e. Google Docs. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderGetLatestCursorResult` object on -/// success or a `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *) - listFolderGetLatestCursor:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// A longpoll endpoint to wait for changes on an account. In conjunction with `listFolderContinue`, this call gives you -/// a low-latency way to monitor an account for file changes. The connection will block until there are changes -/// available or a timeout occurs. This endpoint is useful mostly for client-side apps. If you're looking for -/// server-side notifications, check out our webhooks documentation -/// https://www.dropbox.com/developers/reference/webhooks. -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. Cursors retrieved by setting -/// `includeMediaInfo` in `DBFILESListFolderArg` to true are not supported. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderLongpollResult` object on success -/// or a `DBFILESListFolderLongpollError` object on failure. -/// -- (DBRpcTask *)listFolderLongpoll: - (NSString *)cursor; - -/// -/// A longpoll endpoint to wait for changes on an account. In conjunction with `listFolderContinue`, this call gives you -/// a low-latency way to monitor an account for file changes. The connection will block until there are changes -/// available or a timeout occurs. This endpoint is useful mostly for client-side apps. If you're looking for -/// server-side notifications, check out our webhooks documentation -/// https://www.dropbox.com/developers/reference/webhooks. -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. Cursors retrieved by setting -/// `includeMediaInfo` in `DBFILESListFolderArg` to true are not supported. -/// @param timeout A timeout in seconds. The request will block for at most this length of time, plus up to 90 seconds -/// of random jitter added to avoid the thundering herd problem. Care should be taken when using this parameter, as some -/// network infrastructure does not support long timeouts. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderLongpollResult` object on success -/// or a `DBFILESListFolderLongpollError` object on failure. -/// -- (DBRpcTask *) - listFolderLongpoll:(NSString *)cursor - timeout:(nullable NSNumber *)timeout; - -/// -/// Returns revisions for files based on a file path or a file id. The file path or file id is identified from the -/// latest file entry at the given file path or id. This end point allows your app to query either by file path or file -/// id by setting the mode parameter appropriately. In the `path` in `DBFILESListRevisionsMode` (default) mode, all -/// revisions at the same file path as the latest file entry are returned. If revisions with the same file id are -/// desired, then mode must be set to `id_` in `DBFILESListRevisionsMode`. The `id_` in `DBFILESListRevisionsMode` mode -/// is useful to retrieve revisions for a given file across moves or renames. -/// -/// @param path The path to the file you want to see the revisions of. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListRevisionsResult` object on success or a -/// `DBFILESListRevisionsError` object on failure. -/// -- (DBRpcTask *)listRevisions:(NSString *)path; - -/// -/// Returns revisions for files based on a file path or a file id. The file path or file id is identified from the -/// latest file entry at the given file path or id. This end point allows your app to query either by file path or file -/// id by setting the mode parameter appropriately. In the `path` in `DBFILESListRevisionsMode` (default) mode, all -/// revisions at the same file path as the latest file entry are returned. If revisions with the same file id are -/// desired, then mode must be set to `id_` in `DBFILESListRevisionsMode`. The `id_` in `DBFILESListRevisionsMode` mode -/// is useful to retrieve revisions for a given file across moves or renames. -/// -/// @param path The path to the file you want to see the revisions of. -/// @param mode Determines the behavior of the API in listing the revisions for a given file path or id. -/// @param limit The maximum number of revision entries returned. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListRevisionsResult` object on success or a -/// `DBFILESListRevisionsError` object on failure. -/// -- (DBRpcTask *) - listRevisions:(NSString *)path - mode:(nullable DBFILESListRevisionsMode *)mode - limit:(nullable NSNumber *)limit; - -/// -/// Lock the files at the given paths. A locked file will be writable only by the lock holder. A successful response -/// indicates that the file has been locked. Returns a list of the locked file paths and their metadata after this -/// operation. -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. -/// Duplicate path arguments in the batch are considered only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESLockFileBatchResult` object on success or a -/// `DBFILESLockFileError` object on failure. -/// -- (DBRpcTask *)lockFileBatch: - (NSArray *)entries; - -/// -/// DEPRECATED: Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be moved. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)move:(NSString *)fromPath - toPath:(NSString *)toPath - __deprecated_msg("move is deprecated. Use move."); - -/// -/// DEPRECATED: Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be moved. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)move:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("move is deprecated. Use move."); - -/// -/// Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be moved. Note that we do not currently support case-only renaming. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)moveV2:(NSString *)fromPath - toPath:(NSString *)toPath; - -/// -/// Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be moved. Note that we do not currently support case-only renaming. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)moveV2:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// DEPRECATED: Move multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async moving job in background. Please use `moveBatchCheck` to check the job -/// status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)moveBatch:(NSArray *)entries - __deprecated_msg("moveBatch is deprecated. Use moveBatch."); - -/// -/// DEPRECATED: Move multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async moving job in background. Please use `moveBatchCheck` to check the job -/// status. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)moveBatch:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("moveBatch is deprecated. Use moveBatch."); - -/// -/// Move multiple files or folders to different locations at once in the user's Dropbox. Note that we do not currently -/// support case-only renaming. This route will replace `moveBatch`. The main difference is this route will return -/// status for each entry, while `moveBatch` raises failure if any entry fails. This route will either finish -/// synchronously, or return a job ID and do the async move job in background. Please use `moveBatchCheck` to check the -/// job status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)moveBatchV2:(NSArray *)entries; - -/// -/// Move multiple files or folders to different locations at once in the user's Dropbox. Note that we do not currently -/// support case-only renaming. This route will replace `moveBatch`. The main difference is this route will return -/// status for each entry, while `moveBatch` raises failure if any entry fails. This route will either finish -/// synchronously, or return a job ID and do the async move job in background. Please use `moveBatchCheck` to check the -/// job status. -/// -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)moveBatchV2:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// DEPRECATED: Returns the status of an asynchronous job for `moveBatch`. If success, it returns list of results for -/// each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)moveBatchCheck:(NSString *)asyncJobId - __deprecated_msg("moveBatchCheck is deprecated. Use moveBatchCheck."); - -/// -/// Returns the status of an asynchronous job for `moveBatch`. It returns list of results for each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2JobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)moveBatchCheckV2:(NSString *)asyncJobId; - -/// -/// Creates a new Paper doc with the provided content. -/// -/// @param path The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. -/// This should include the document's title and end with .paper. -/// @param importFormat The format of the provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperCreateResult` object on success or a -/// `DBFILESPaperCreateError` object on failure. -/// -- (DBUploadTask *)paperCreateUrl:(NSString *)path - importFormat: - (DBFILESImportFormat *)importFormat - inputUrl:(NSString *)inputUrl; - -/// -/// Creates a new Paper doc with the provided content. -/// -/// @param path The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. -/// This should include the document's title and end with .paper. -/// @param importFormat The format of the provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperCreateResult` object on success or a -/// `DBFILESPaperCreateError` object on failure. -/// -- (DBUploadTask *)paperCreateData:(NSString *)path - importFormat: - (DBFILESImportFormat *)importFormat - inputData:(NSData *)inputData; - -/// -/// Creates a new Paper doc with the provided content. -/// -/// @param path The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. -/// This should include the document's title and end with .paper. -/// @param importFormat The format of the provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperCreateResult` object on success or a -/// `DBFILESPaperCreateError` object on failure. -/// -- (DBUploadTask *)paperCreateStream:(NSString *)path - importFormat: - (DBFILESImportFormat *)importFormat - inputStream:(NSInputStream *)inputStream; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateUrl:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - inputUrl:(NSString *)inputUrl; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param paperRevision The latest doc revision. Required when doc_update_policy is update. This value must match the -/// current revision of the doc or error revision_mismatch will be returned. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateUrl:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision - inputUrl:(NSString *)inputUrl; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateData:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - inputData:(NSData *)inputData; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param paperRevision The latest doc revision. Required when doc_update_policy is update. This value must match the -/// current revision of the doc or error revision_mismatch will be returned. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateData:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision - inputData:(NSData *)inputData; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateStream:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - inputStream:(NSInputStream *)inputStream; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param paperRevision The latest doc revision. Required when doc_update_policy is update. This value must match the -/// current revision of the doc or error revision_mismatch will be returned. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateStream:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision - inputStream:(NSInputStream *)inputStream; - -/// -/// Permanently delete the file or folder at a given path (see https://www.dropbox.com/en/help/40). If the given file or -/// folder is not yet deleted, this route will first delete it. It is possible for this route to successfully delete, -/// then fail to permanently delete. Note: This endpoint is only available for Dropbox Business apps. -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `DBFILESDeleteError` -/// object on failure. -/// -- (DBRpcTask *)permanentlyDelete:(NSString *)path; - -/// -/// Permanently delete the file or folder at a given path (see https://www.dropbox.com/en/help/40). If the given file or -/// folder is not yet deleted, this route will first delete it. It is possible for this route to successfully delete, -/// then fail to permanently delete. Note: This endpoint is only available for Dropbox Business apps. -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's latest "rev". This field does not support -/// deleting a folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `DBFILESDeleteError` -/// object on failure. -/// -- (DBRpcTask *)permanentlyDelete:(NSString *)path - parentRev:(nullable NSString *)parentRev; - -/// -/// DEPRECATED: The propertiesAdd route -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups which are to be added to a Dropbox file. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESAddPropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesAdd:(NSString *)path - propertyGroups:(NSArray *)propertyGroups - __deprecated_msg("propertiesAdd is deprecated."); - -/// -/// DEPRECATED: The propertiesOverwrite route -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups "snapshot" updates to force apply. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESInvalidPropertyGroupError` object on failure. -/// -- (DBRpcTask *) - propertiesOverwrite:(NSString *)path - propertyGroups:(NSArray *)propertyGroups - __deprecated_msg("propertiesOverwrite is deprecated."); - -/// -/// DEPRECATED: The propertiesRemove route -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyTemplateIds A list of identifiers for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESRemovePropertiesError` object on failure. -/// -- (DBRpcTask *)propertiesRemove:(NSString *)path - propertyTemplateIds: - (NSArray *)propertyTemplateIds - __deprecated_msg("propertiesRemove is deprecated."); - -/// -/// DEPRECATED: The propertiesTemplateGet route -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)propertiesTemplateGet: - (NSString *)templateId __deprecated_msg("propertiesTemplateGet is deprecated."); - -/// -/// DEPRECATED: The propertiesTemplateList route -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateList __deprecated_msg("propertiesTemplateList is deprecated."); - -/// -/// DEPRECATED: The propertiesUpdate route -/// -/// @param path A unique identifier for the file or folder. -/// @param updatePropertyGroups The property groups "delta" updates to apply. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESUpdatePropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesUpdate:(NSString *)path - updatePropertyGroups:(NSArray *)updatePropertyGroups - __deprecated_msg("propertiesUpdate is deprecated."); - -/// -/// Restore a specific revision of a file to the given path. -/// -/// @param path The path to save the restored file. -/// @param rev The revision to restore. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESRestoreError` object on failure. -/// -- (DBRpcTask *)restore:(NSString *)path rev:(NSString *)rev; - -/// -/// Save the data from a specified URL into a file in user's Dropbox. Note that the transfer from the URL must complete -/// within 15 minutes, or the operation will time out and the job will fail. If the given path already exists, the file -/// will be renamed to avoid the conflict (e.g. myfile (1).txt). -/// -/// @param path The path in Dropbox where the URL will be saved to. -/// @param url The URL to be saved. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSaveUrlResult` object on success or a -/// `DBFILESSaveUrlError` object on failure. -/// -- (DBRpcTask *)saveUrl:(NSString *)path url:(NSString *)url; - -/// -/// Check the status of a `saveUrl` job. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSaveUrlJobStatus` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)saveUrlCheckJobStatus:(NSString *)asyncJobId; - -/// -/// DEPRECATED: Searches for files and folders. Note: Recent changes will be reflected in search results within a few -/// seconds and older revisions of existing files may still match your query for up to a few days. -/// -/// @param path The path in the user's Dropbox to search. Should probably be a folder. -/// @param query The string to search for. Query string may be rewritten to improve relevance of results. The string is -/// split on spaces into multiple tokens. For file name searching, the last token is used for prefix matching (i.e. "bat -/// c" matches "bat cave" but not "batman car"). -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchResult` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)search:(NSString *)path - query:(NSString *)query - __deprecated_msg("search is deprecated. Use search."); - -/// -/// DEPRECATED: Searches for files and folders. Note: Recent changes will be reflected in search results within a few -/// seconds and older revisions of existing files may still match your query for up to a few days. -/// -/// @param path The path in the user's Dropbox to search. Should probably be a folder. -/// @param query The string to search for. Query string may be rewritten to improve relevance of results. The string is -/// split on spaces into multiple tokens. For file name searching, the last token is used for prefix matching (i.e. "bat -/// c" matches "bat cave" but not "batman car"). -/// @param start The starting index within the search results (used for paging). -/// @param maxResults The maximum number of search results to return. -/// @param mode The search mode (filename, filename_and_content, or deleted_filename). Note that searching file content -/// is only available for Dropbox Business accounts. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchResult` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)search:(NSString *)path - query:(NSString *)query - start:(nullable NSNumber *)start - maxResults:(nullable NSNumber *)maxResults - mode:(nullable DBFILESSearchMode *)mode - __deprecated_msg("search is deprecated. Use search."); - -/// -/// Searches for files and folders. Note: `search` along with `searchContinue` can only be used to retrieve a maximum of -/// 10,000 matches. Recent changes may not immediately be reflected in search results due to a short delay in indexing. -/// Duplicate results may be returned across pages. Some results may not be returned. -/// -/// @param query The string to search for. May match across multiple fields based on the request arguments. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchV2Result` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)searchV2:(NSString *)query; - -/// -/// Searches for files and folders. Note: `search` along with `searchContinue` can only be used to retrieve a maximum of -/// 10,000 matches. Recent changes may not immediately be reflected in search results due to a short delay in indexing. -/// Duplicate results may be returned across pages. Some results may not be returned. -/// -/// @param query The string to search for. May match across multiple fields based on the request arguments. -/// @param options Options for more targeted search results. -/// @param matchFieldOptions Options for search results match fields. -/// @param includeHighlights Deprecated and moved this option to SearchMatchFieldOptions. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchV2Result` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)searchV2:(NSString *)query - options:(nullable DBFILESSearchOptions *)options - matchFieldOptions: - (nullable DBFILESSearchMatchFieldOptions *)matchFieldOptions - includeHighlights:(nullable NSNumber *)includeHighlights; - -/// -/// Fetches the next page of search results returned from `search`. Note: `search` along with `searchContinue` can only -/// be used to retrieve a maximum of 10,000 matches. Recent changes may not immediately be reflected in search results -/// due to a short delay in indexing. Duplicate results may be returned across pages. Some results may not be returned. -/// -/// @param cursor The cursor returned by your last call to `search`. Used to fetch the next page of results. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchV2Result` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)searchContinueV2:(NSString *)cursor; - -/// -/// Add a tag to an item. A tag is a string. The strings are automatically converted to lowercase letters. No more than -/// 20 tags can be added to a given item. -/// -/// @param path Path to the item to be tagged. -/// @param tagText The value of the tag to add. Will be automatically converted to lowercase letters. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `DBFILESAddTagError` -/// object on failure. -/// -- (DBRpcTask *)tagsAdd:(NSString *)path tagText:(NSString *)tagText; - -/// -/// Get list of tags assigned to items. -/// -/// @param paths Path to the items. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTagsResult` object on success or a -/// `DBFILESBaseTagError` object on failure. -/// -- (DBRpcTask *)tagsGet:(NSArray *)paths; - -/// -/// Remove a tag from an item. -/// -/// @param path Path to the item to tag. -/// @param tagText The tag to remove. Will be automatically converted to lowercase letters. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESRemoveTagError` object on failure. -/// -- (DBRpcTask *)tagsRemove:(NSString *)path tagText:(NSString *)tagText; - -/// -/// Unlock the files at the given paths. A locked file can only be unlocked by the lock holder or, if a business -/// account, a team admin. A successful response indicates that the file has been unlocked. Returns a list of the -/// unlocked file paths and their metadata after this operation. -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file which will be unlocked. Duplicate path -/// arguments in the batch are considered only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESLockFileBatchResult` object on success or a -/// `DBFILESLockFileError` object on failure. -/// -- (DBRpcTask *)unlockFileBatch: - (NSArray *)entries; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)uploadUrl:(NSString *)path inputUrl:(NSString *)inputUrl; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - uploadUrl:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)uploadData:(NSString *)path - inputData:(NSData *)inputData; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - uploadData:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)uploadStream:(NSString *)path - inputStream:(NSInputStream *)inputStream; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - uploadStream:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// DEPRECATED: Append more data to an upload session. A single request should not upload more than 150 MB. The maximum -/// size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or -/// duplicated in the event of a network error. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendUrl:(NSString *)sessionId - offset:(NSNumber *)offset - inputUrl:(NSString *)inputUrl - __deprecated_msg("uploadSessionAppend is deprecated. Use uploadSessionAppend."); - -/// -/// DEPRECATED: Append more data to an upload session. A single request should not upload more than 150 MB. The maximum -/// size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or -/// duplicated in the event of a network error. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendData:(NSString *)sessionId - offset:(NSNumber *)offset - inputData:(NSData *)inputData - __deprecated_msg("uploadSessionAppend is deprecated. Use uploadSessionAppend."); - -/// -/// DEPRECATED: Append more data to an upload session. A single request should not upload more than 150 MB. The maximum -/// size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or -/// duplicated in the event of a network error. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendStream:(NSString *)sessionId - offset:(NSNumber *)offset - inputStream: - (NSInputStream *)inputStream - __deprecated_msg("uploadSessionAppend is deprecated. Use uploadSessionAppend."); - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendV2Url: - (DBFILESUploadSessionCursor *)cursor - inputUrl:(NSString *)inputUrl; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Url:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendV2Data: - (DBFILESUploadSessionCursor *)cursor - inputData:(NSData *)inputData; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Data:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Stream:(DBFILESUploadSessionCursor *)cursor - inputStream:(NSInputStream *)inputStream; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Stream:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishUrl:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - inputUrl:(NSString *)inputUrl; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishUrl:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishData:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - inputData:(NSData *)inputData; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishData:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishStream:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - inputStream:(NSInputStream *)inputStream; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishStream:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// DEPRECATED: This route helps you commit many files at once into a user's Dropbox. Use `uploadSessionStart` and -/// `uploadSessionAppend` to upload file contents. We recommend uploading many files in parallel to increase throughput. -/// Once the file contents have been uploaded, rather than calling `uploadSessionFinish`, use this route to finish all -/// your upload sessions in a single request. `close` in `DBFILESUploadSessionStartArg` or `close` in -/// `DBFILESUploadSessionAppendArg` needs to be true for the last `uploadSessionStart` or `uploadSessionAppend` call. -/// The maximum size of a file one can upload to an upload session is 350 GB. This route will return a job_id -/// immediately and do the async commit job in background. Use `uploadSessionFinishBatchCheck` to check the job status. -/// For the same account, this route should be executed serially. That means you should not start the next job before -/// current job finishes. We allow up to 1000 entries in a single request. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param entries Commit information for each file in the batch. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionFinishBatchLaunch` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)uploadSessionFinishBatch: - (NSArray *)entries - __deprecated_msg("uploadSessionFinishBatch is deprecated. Use uploadSessionFinishBatch."); - -/// -/// This route helps you commit many files at once into a user's Dropbox. Use `uploadSessionStart` and -/// `uploadSessionAppend` to upload file contents. We recommend uploading many files in parallel to increase throughput. -/// Once the file contents have been uploaded, rather than calling `uploadSessionFinish`, use this route to finish all -/// your upload sessions in a single request. `close` in `DBFILESUploadSessionStartArg` or `close` in -/// `DBFILESUploadSessionAppendArg` needs to be true for the last `uploadSessionStart` or `uploadSessionAppend` call of -/// each upload session. The maximum size of a file one can upload to an upload session is 350 GB. We allow up to 1000 -/// entries in a single request. Calls to this endpoint will count as data transport calls for any Dropbox Business -/// teams with a limit on the number of data transport calls allowed per month. For more information, see the Data -/// transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param entries Commit information for each file in the batch. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionFinishBatchResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)uploadSessionFinishBatchV2: - (NSArray *)entries; - -/// -/// Returns the status of an asynchronous job for `uploadSessionFinishBatch`. If success, it returns list of result for -/// each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionFinishBatchJobStatus` object -/// on success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)uploadSessionFinishBatchCheck: - (NSString *)asyncJobId; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *)uploadSessionStartUrl: - (NSString *)inputUrl; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *) - uploadSessionStartUrl:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *)uploadSessionStartData: - (NSData *)inputData; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *) - uploadSessionStartData:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *)uploadSessionStartStream: - (NSInputStream *)inputStream; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *) - uploadSessionStartStream:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// This route starts batch of upload_sessions. Please refer to `upload_session/start` usage. Calls to this endpoint -/// will count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param numSessions The number of upload sessions to start. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartBatchResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)uploadSessionStartBatch:(NSNumber *)numSessions; - -/// -/// This route starts batch of upload_sessions. Please refer to `upload_session/start` usage. Calls to this endpoint -/// will count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param numSessions The number of upload sessions to start. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartBatchResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *) - uploadSessionStartBatch:(NSNumber *)numSessions - sessionType:(nullable DBFILESUploadSessionType *)sessionType; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUserGeneratedTag.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUserGeneratedTag.h deleted file mode 100644 index 1c3ec998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESUserGeneratedTag.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUserGeneratedTag; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserGeneratedTag` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUserGeneratedTag : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *tagText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param tagText (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTagText:(NSString *)tagText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserGeneratedTag` struct. -/// -@interface DBFILESUserGeneratedTagSerializer : NSObject - -/// -/// Serializes `DBFILESUserGeneratedTag` instances. -/// -/// @param instance An instance of the `DBFILESUserGeneratedTag` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUserGeneratedTag` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUserGeneratedTag *)instance; - -/// -/// Deserializes `DBFILESUserGeneratedTag` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUserGeneratedTag` API object. -/// -/// @return An instantiation of the `DBFILESUserGeneratedTag` object. -/// -+ (DBFILESUserGeneratedTag *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESVideoMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESVideoMetadata.h deleted file mode 100644 index b56e3a3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESVideoMetadata.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMediaMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; -@class DBFILESGpsCoordinates; -@class DBFILESVideoMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `VideoMetadata` struct. -/// -/// Metadata for a video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESVideoMetadata : DBFILESMediaMetadata - -#pragma mark - Instance fields - -/// The duration of the video in milliseconds. -@property (nonatomic, readonly, nullable) NSNumber *duration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dimensions Dimension of the photo/video. -/// @param location The GPS coordinate of the photo/video. -/// @param timeTaken The timestamp when the photo/video is taken. -/// @param duration The duration of the video in milliseconds. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensions:(nullable DBFILESDimensions *)dimensions - location:(nullable DBFILESGpsCoordinates *)location - timeTaken:(nullable NSDate *)timeTaken - duration:(nullable NSNumber *)duration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `VideoMetadata` struct. -/// -@interface DBFILESVideoMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESVideoMetadata` instances. -/// -/// @param instance An instance of the `DBFILESVideoMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESVideoMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESVideoMetadata *)instance; - -/// -/// Deserializes `DBFILESVideoMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESVideoMetadata` API object. -/// -/// @return An instantiation of the `DBFILESVideoMetadata` object. -/// -+ (DBFILESVideoMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteConflictError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteConflictError.h deleted file mode 100644 index 96d4de94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteConflictError.h +++ /dev/null @@ -1,156 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESWriteConflictError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WriteConflictError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESWriteConflictError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESWriteConflictErrorTag` enum type represents the possible tag -/// states with which the `DBFILESWriteConflictError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESWriteConflictErrorTag) { - /// There's a file in the way. - DBFILESWriteConflictErrorFile, - - /// There's a folder in the way. - DBFILESWriteConflictErrorFolder, - - /// There's a file at an ancestor path, so we couldn't create the required - /// parent folders. - DBFILESWriteConflictErrorFileAncestor, - - /// (no description). - DBFILESWriteConflictErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESWriteConflictErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file". -/// -/// Description of the "file" tag state: There's a file in the way. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: There's a folder in the way. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder; - -/// -/// Initializes union class with tag state of "file_ancestor". -/// -/// Description of the "file_ancestor" tag state: There's a file at an ancestor -/// path, so we couldn't create the required parent folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAncestor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file". -/// -/// @return Whether the union's current tag state has value "file". -/// -- (BOOL)isFile; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves whether the union's current tag state has value "file_ancestor". -/// -/// @return Whether the union's current tag state has value "file_ancestor". -/// -- (BOOL)isFileAncestor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESWriteConflictError` union. -/// -@interface DBFILESWriteConflictErrorSerializer : NSObject - -/// -/// Serializes `DBFILESWriteConflictError` instances. -/// -/// @param instance An instance of the `DBFILESWriteConflictError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESWriteConflictError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESWriteConflictError *)instance; - -/// -/// Deserializes `DBFILESWriteConflictError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESWriteConflictError` API object. -/// -/// @return An instantiation of the `DBFILESWriteConflictError` object. -/// -+ (DBFILESWriteConflictError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteError.h deleted file mode 100644 index 75170130..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteError.h +++ /dev/null @@ -1,300 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESWriteConflictError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WriteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESWriteError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESWriteErrorTag` enum type represents the possible tag states with -/// which the `DBFILESWriteError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESWriteErrorTag) { - /// The given path does not satisfy the required path format. Please refer - /// to the Path formats documentation - /// https://www.dropbox.com/developers/documentation/http/documentation#path-formats - /// for more information. - DBFILESWriteErrorMalformedPath, - - /// Couldn't write to the target path because there was something in the - /// way. - DBFILESWriteErrorConflict, - - /// The user doesn't have permissions to write to the target location. - DBFILESWriteErrorNoWritePermission, - - /// The user doesn't have enough available space (bytes) to write more data. - DBFILESWriteErrorInsufficientSpace, - - /// Dropbox will not save the file or folder because of its name. - DBFILESWriteErrorDisallowedName, - - /// This endpoint cannot move or delete team folders. - DBFILESWriteErrorTeamFolder, - - /// This file operation is not allowed at this path. - DBFILESWriteErrorOperationSuppressed, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESWriteErrorTooManyWriteOperations, - - /// (no description). - DBFILESWriteErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESWriteErrorTag tag; - -/// The given path does not satisfy the required path format. Please refer to -/// the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. @note Ensure the `isMalformedPath` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *malformedPath; - -/// Couldn't write to the target path because there was something in the way. -/// @note Ensure the `isConflict` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteConflictError *conflict; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_path". -/// -/// Description of the "malformed_path" tag state: The given path does not -/// satisfy the required path format. Please refer to the Path formats -/// documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @param malformedPath The given path does not satisfy the required path -/// format. Please refer to the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedPath:(nullable NSString *)malformedPath; - -/// -/// Initializes union class with tag state of "conflict". -/// -/// Description of the "conflict" tag state: Couldn't write to the target path -/// because there was something in the way. -/// -/// @param conflict Couldn't write to the target path because there was -/// something in the way. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConflict:(DBFILESWriteConflictError *)conflict; - -/// -/// Initializes union class with tag state of "no_write_permission". -/// -/// Description of the "no_write_permission" tag state: The user doesn't have -/// permissions to write to the target location. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoWritePermission; - -/// -/// Initializes union class with tag state of "insufficient_space". -/// -/// Description of the "insufficient_space" tag state: The user doesn't have -/// enough available space (bytes) to write more data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientSpace; - -/// -/// Initializes union class with tag state of "disallowed_name". -/// -/// Description of the "disallowed_name" tag state: Dropbox will not save the -/// file or folder because of its name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedName; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This endpoint cannot move or -/// delete team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "operation_suppressed". -/// -/// Description of the "operation_suppressed" tag state: This file operation is -/// not allowed at this path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOperationSuppressed; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_path". -/// -- (BOOL)isMalformedPath; - -/// -/// Retrieves whether the union's current tag state has value "conflict". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `conflict` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "conflict". -/// -- (BOOL)isConflict; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_write_permission". -/// -/// @return Whether the union's current tag state has value -/// "no_write_permission". -/// -- (BOOL)isNoWritePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_space". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_space". -/// -- (BOOL)isInsufficientSpace; - -/// -/// Retrieves whether the union's current tag state has value "disallowed_name". -/// -/// @return Whether the union's current tag state has value "disallowed_name". -/// -- (BOOL)isDisallowedName; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "operation_suppressed". -/// -/// @return Whether the union's current tag state has value -/// "operation_suppressed". -/// -- (BOOL)isOperationSuppressed; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESWriteError` union. -/// -@interface DBFILESWriteErrorSerializer : NSObject - -/// -/// Serializes `DBFILESWriteError` instances. -/// -/// @param instance An instance of the `DBFILESWriteError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESWriteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESWriteError *)instance; - -/// -/// Deserializes `DBFILESWriteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESWriteError` API object. -/// -/// @return An instantiation of the `DBFILESWriteError` object. -/// -+ (DBFILESWriteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteMode.h deleted file mode 100644 index 6e1098a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBFILESWriteMode.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESWriteMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WriteMode` union. -/// -/// Your intent when writing a file to some path. This is used to determine what -/// constitutes a conflict and what the autorename strategy is. In some -/// situations, the conflict behavior is identical: (a) If the target path -/// doesn't refer to anything, the file is always written; no conflict. (b) If -/// the target path refers to a folder, it's always a conflict. (c) If the -/// target path refers to a file with identical contents, nothing gets written; -/// no conflict. The conflict checking differs in the case where there's a file -/// at the target path with contents different from the contents you're trying -/// to write. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESWriteMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESWriteModeTag` enum type represents the possible tag states with -/// which the `DBFILESWriteMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESWriteModeTag) { - /// Do not overwrite an existing file if there is a conflict. The autorename - /// strategy is to append a number to the file name. For example, - /// "document.txt" might become "document (2).txt". - DBFILESWriteModeAdd, - - /// Always overwrite the existing file. The autorename strategy is the same - /// as it is for add. - DBFILESWriteModeOverwrite, - - /// Overwrite if the given "rev" matches the existing file's "rev". The - /// supplied value should be the latest known "rev" of the file, for - /// example, from FileMetadata, from when the file was last downloaded by - /// the app. This will cause the file on the Dropbox servers to be - /// overwritten if the given "rev" matches the existing file's current "rev" - /// on the Dropbox servers. The autorename strategy is to append the string - /// "conflicted copy" to the file name. For example, "document.txt" might - /// become "document (conflicted copy).txt" or "document (Panda's conflicted - /// copy).txt". - DBFILESWriteModeUpdate, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESWriteModeTag tag; - -/// Overwrite if the given "rev" matches the existing file's "rev". The supplied -/// value should be the latest known "rev" of the file, for example, from -/// FileMetadata, from when the file was last downloaded by the app. This will -/// cause the file on the Dropbox servers to be overwritten if the given "rev" -/// matches the existing file's current "rev" on the Dropbox servers. The -/// autorename strategy is to append the string "conflicted copy" to the file -/// name. For example, "document.txt" might become "document (conflicted -/// copy).txt" or "document (Panda's conflicted copy).txt". @note Ensure the -/// `isUpdate` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *update; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "add". -/// -/// Description of the "add" tag state: Do not overwrite an existing file if -/// there is a conflict. The autorename strategy is to append a number to the -/// file name. For example, "document.txt" might become "document (2).txt". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdd; - -/// -/// Initializes union class with tag state of "overwrite". -/// -/// Description of the "overwrite" tag state: Always overwrite the existing -/// file. The autorename strategy is the same as it is for add. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverwrite; - -/// -/// Initializes union class with tag state of "update". -/// -/// Description of the "update" tag state: Overwrite if the given "rev" matches -/// the existing file's "rev". The supplied value should be the latest known -/// "rev" of the file, for example, from FileMetadata, from when the file was -/// last downloaded by the app. This will cause the file on the Dropbox servers -/// to be overwritten if the given "rev" matches the existing file's current -/// "rev" on the Dropbox servers. The autorename strategy is to append the -/// string "conflicted copy" to the file name. For example, "document.txt" might -/// become "document (conflicted copy).txt" or "document (Panda's conflicted -/// copy).txt". -/// -/// @param update Overwrite if the given "rev" matches the existing file's -/// "rev". The supplied value should be the latest known "rev" of the file, for -/// example, from FileMetadata, from when the file was last downloaded by the -/// app. This will cause the file on the Dropbox servers to be overwritten if -/// the given "rev" matches the existing file's current "rev" on the Dropbox -/// servers. The autorename strategy is to append the string "conflicted copy" -/// to the file name. For example, "document.txt" might become "document -/// (conflicted copy).txt" or "document (Panda's conflicted copy).txt". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdate:(NSString *)update; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "add". -/// -/// @return Whether the union's current tag state has value "add". -/// -- (BOOL)isAdd; - -/// -/// Retrieves whether the union's current tag state has value "overwrite". -/// -/// @return Whether the union's current tag state has value "overwrite". -/// -- (BOOL)isOverwrite; - -/// -/// Retrieves whether the union's current tag state has value "update". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `update` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "update". -/// -- (BOOL)isUpdate; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESWriteMode` union. -/// -@interface DBFILESWriteModeSerializer : NSObject - -/// -/// Serializes `DBFILESWriteMode` instances. -/// -/// @param instance An instance of the `DBFILESWriteMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESWriteMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESWriteMode *)instance; - -/// -/// Deserializes `DBFILESWriteMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESWriteMode` API object. -/// -/// @return An instantiation of the `DBFILESWriteMode` object. -/// -+ (DBFILESWriteMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBGlobalErrorResponseHandler.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBGlobalErrorResponseHandler.h deleted file mode 100644 index 84e5219d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBGlobalErrorResponseHandler.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBRequestError; -@class DBTask; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Allows for consistent, global handling of route-specific error types, as well as general network errors. -/// -/// Normally, error handling is done on a request-by-request basis, in the supplied response handler. However, it is -/// convenient to handle some error behavior consistently, regardless of the request or the endpoint. An example of this -/// might be implementing retry logic for all rate-limiting errors, regardless of their source. For implementing global -/// error handling for general networking errors like rate-limiting, one of the `registerNetworkErrorResponseBlock:` -/// methods should be used. For implementing global error handling for route-specific errors, one of the -/// `registerRouteErrorResponseBlock:` methods should be used. -/// -/// For the route-specific error handling, you may supply either the direct route error type, or any type that the route -/// error type contains as an instance field (or an instance field of an instance field, and so on). -/// -/// @note These globally supplied response handlers will be executed *in place* of the original request-specific -/// response handler. At most one global response handler will be executed, with the prioirty going to the general -/// network -/// response handler, followed by the handler that is associated directly with the route's error response type, followed -/// by the handler associated with the first matching instance field. -/// -@interface DBGlobalErrorResponseHandler : NSObject - -// Global response handler for route-specific errors. The first parameter is the route specific error to handle. The -// second paramater is the general network error to handle. The third parameter is the SDK wrapper task used to restart -// the request, if necessary. -typedef void (^DBRouteErrorResponseBlock)(id _Nullable routeError, DBRequestError *networkError, DBTask *restartTask); - -// Global response handler for general network errors. The first parameter is the general network error to handle. The -// second parameter is the SDK wrapper task used to restart the request, if necessary. -typedef void (^DBNetworkErrorResponseBlock)(DBRequestError *networkError, DBTask *restartTask); - -/// -/// Convenience method for registering a global error handler for a specific route error type. -/// -/// @param routeErrorResponseBlock The response block for globally handling the route error. -/// @param routeErrorType The error type with which to associate the supplied response block. Note, this method searches -/// the route error type's instance fields recursively, so this error type may potentially match not only the route -/// error type, but any of its instance fields, and its instance fields' instance fields, and so on. -/// -+ (void)registerRouteErrorResponseBlock:(DBRouteErrorResponseBlock)routeErrorResponseBlock - routeErrorType:(Class)routeErrorType; - -/// -/// Registers a global error handler for a specific route error type. -/// -/// @param routeErrorResponseBlock The response block for globally handling the route error. -/// @param routeErrorType The error type with which to associate the supplied response block. Note, this method searches -/// the route error type's instance fields recursively, so this error type may potentially match not only the route -/// error type, but any of its instance fields, and its instance fields' instance fields, and so on. -/// @param queue The operation queue on which to execute the supplied global response handler. -/// -+ (void)registerRouteErrorResponseBlock:(DBRouteErrorResponseBlock)routeErrorResponseBlock - routeErrorType:(Class)routeErrorType - queue:(nullable NSOperationQueue *)queue; - -/// -/// Removes the global error handler associated with the supplied error type. -/// -/// routeErrorType The associated error type of the response handler to be removed. -/// -+ (void)removeRouteErrorResponseBlockWithRouteErrorType:(Class)routeErrorType; - -/// -/// Convenience method for registering a single global error handler for handling general network errors. -/// -/// @note Only one block at a time may be set for handling all general network errors. -/// -/// @param networkErrorResponseBlock The response block for globally handling network errors. -/// -+ (void)registerNetworkErrorResponseBlock:(DBNetworkErrorResponseBlock)networkErrorResponseBlock; - -/// -/// Registers a single global error handler for handling general network errors. -/// -/// @note Only one block at a time may be set for handling all general network errors. -/// -/// @param networkErrorResponseBlock The response block for globally handling network errors. -/// @param queue The operation queue on which to execute the supplied global response handler. -/// -+ (void)registerNetworkErrorResponseBlock:(DBNetworkErrorResponseBlock)networkErrorResponseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Removes the single global error handler for general network errors. -/// -+ (void)removeNetworkErrorResponseBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBHandlerTypes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBHandlerTypes.h deleted file mode 100644 index cd4cf862..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBHandlerTypes.h +++ /dev/null @@ -1,45 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Public handler types. -/// - -#import - -@class DBASYNCPollError; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBRequestError; - -NS_ASSUME_NONNULL_BEGIN - -/// The progress block to be executed in the event of a request update. The first argument is the number of bytes -/// downloaded. The second argument is the number of total bytes downloaded. And the third argument is the number of -/// total bytes expected to be downloaded. -typedef void (^DBProgressBlock)(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite); - -/// Special custom response block for batch upload. The first argument is a mapping of client-side NSURLs to batch -/// upload result entries (each of which indicates the success / failure of the upload for the corresponding file). This -/// object will be nonnull if the final call to `/upload_session/finish_batch/check` is successful. The second argument -/// is the route-specific error from `/upload_session/finish_batch/check`, which is generally not able to be handled at -/// runtime, but instead should be used for debugging purposes. This object will be nonnull if there is a route-specific -/// error from the call to `/upload_session/finish_batch/check`. The third argument is the general request error from -/// `/upload_session/finish_batch/check`. This object will be nonnull if there is a request error from the call to -/// `/upload_session/finish_batch/check`. The fourth argument is a mapping of client-side NSURLs to general request -/// errors, which occured during the upload of the corresponding file. -typedef void (^DBBatchUploadResponseBlock)( - NSDictionary *_Nullable fileUrlsToBatchResultEntries, - DBASYNCPollError *_Nullable finishBatchRouteError, DBRequestError *_Nullable finishBatchRequestError, - NSDictionary *fileUrlsToRequestErrors); - -/// Special custom response block for performing SDK token migration between API v1 tokens and API v2 tokens. First -/// argument indicates whether the migration should be attempted again (primarily when there was no active network -/// connection). The second argument indicates whether the supplied app key and / or secret is invalid for some or -/// all tokens. The third argument is a list of token data for each token that was unsuccessfully migrated. Each -/// element in the list is a list of length 4, where the first element is the Dropbox user ID, the second element -/// is the OAuth 1 access token, the third element is the OAuth 1 access token secret, and the fourth element -/// is the consumer app key that was stored with the token. -typedef void (^DBTokenMigrationResponseBlock)(BOOL shouldRetry, BOOL invalidAppKeyOrSecret, - NSArray *> *unsuccessfullyMigratedTokenData); - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBLoadingStatusDelegate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBLoadingStatusDelegate.h deleted file mode 100644 index 4f2ebea1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBLoadingStatusDelegate.h +++ /dev/null @@ -1,21 +0,0 @@ -/// -/// Copyright (c) 2020 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Protocol for handling loading status during auth flow. -/// Implementing class could show custom UX to reflect loading status. -@protocol DBLoadingStatusDelegate - -/// Called when auth flow is loading/waiting for some data. e.g. Waiting for a network request to finish. -- (void)showLoading; - -/// Called when auth flow finishes loading/waiting. e.g. A network request finished. -- (void)dismissLoading; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthManager.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthManager.h deleted file mode 100644 index bb7759fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthManager.h +++ /dev/null @@ -1,290 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBOAuthResultCompletion.h" -#import - -@class DBAccessToken; -@class DBOAuthPKCESession; -@class DBOAuthResult; -@class DBScopeRequest; -@protocol DBSharedApplication; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - Access token class - -/// -/// A Dropbox OAuth2 access token. -/// -/// Stores a unique identifying key for storing in `DBKeychain`. -/// -@interface DBAccessToken : NSObject - -/// The OAuth2 access token. -@property (nonatomic, readonly, copy) NSString *accessToken; - -/// The unique identifier of the access token used for storing in `DBKeychain`. Either the `account_id` (if user app) or -/// the `team_id` if (team app). -@property (nonatomic, readonly, copy) NSString *uid; - -/// The refresh token if accessToken is short-lived. -@property (nonatomic, readonly, copy, nullable) NSString *refreshToken; - -/// The expiration time of the (short-lived) accessToken. -@property (nonatomic, readonly, assign) NSTimeInterval tokenExpirationTimestamp; - -/// Creates a `DBAccessToken` object for a long-lived access token. -/// -/// @param accessToken The OAuth2 access token retrieved from the auth flow. -/// @param uid The unique identifier used to store in `DBKeychain`. -/// -/// @return A `DBAccessToken` object. -+ (DBAccessToken *)createWithLongLivedAccessToken:(NSString *)accessToken uid:(NSString *)uid; - -/// Creates a `DBAccessToken` object for a short-lived access token. -/// -/// @param accessToken The OAuth2 access token retrieved from the auth flow. -/// @param uid The unique identifier used to store in `DBKeychain`. -/// @param refreshToken The refresh token if accessToken is short-lived. -/// @param tokenExpirationTimestamp The expiration time of the (short-lived) accessToken. -/// -/// @return A `DBAccessToken` object. -+ (DBAccessToken *)createWithShortLivedAccessToken:(NSString *)accessToken - uid:(NSString *)uid - refreshToken:(nullable NSString *)refreshToken - tokenExpirationTimestamp:(NSTimeInterval)tokenExpirationTimestamp; - -/// Convenience method for initWithAccessToken:uid:refreshToken:tokenExpirationTimestamp: with -/// refreshToken set to nil and tokenExpirationTimestamp set to 0. -- (instancetype)initWithAccessToken:(NSString *)accessToken uid:(NSString *)uid; - -/// -/// DBAccessToken full constructor. -/// -/// @param accessToken The OAuth2 access token retrieved from the auth flow. -/// @param uid The unique identifier used to store in `DBKeychain`. -/// @param refreshToken The refresh token if accessToken is short-lived. -/// @param tokenExpirationTimestamp The expiration time of the (short-lived) accessToken. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - uid:(NSString *)uid - refreshToken:(nullable NSString *)refreshToken - tokenExpirationTimestamp:(NSTimeInterval)tokenExpirationTimestamp; - -@end - -@protocol DBAccessTokenRefreshing - -/// Refreshes a (short-lived) access token for a given DBAccessToken. -/// -/// @param accessToken A `DBAccessToken` object. -/// @param scopes An array of scopes to be granted for the refreshed access token. -/// The requested scope MUST NOT include any scope not originally granted. -/// Useful if users want to reduce the granted scopes for the new access token. -/// Pass in an empty array if you don't want to change scopes of the access token. -/// @param queue The queue where completion block will be called from. -/// @param completion A `DBOAuthCompletion` block to notify caller the result. -- (void)refreshAccessToken:(DBAccessToken *)accessToken - scopes:(NSArray *)scopes - queue:(nullable dispatch_queue_t)queue - completion:(nullable DBOAuthCompletion)completion; - -@end - -#pragma mark - OAuth manager base - -/// -/// Platform-neutral manager for performing OAuth linking. -/// -/// @note OAuth flow webviews localize to environment locale. -/// -/// -@interface DBOAuthManager : NSObject { -@protected - NSString *_appKey; - NSURL *_redirectURL; - NSURL *_cancelURL; - NSString *_host; - NSMutableArray *_urls; - DBOAuthPKCESession *_authSession; -} - -/// Sets the locale of the OAuth flow webpages. If `nil`, then defaults to device locale. -@property (nonatomic, strong) NSLocale *locale; - -#pragma mark - Shared instance accessors and mutators - -/// -/// Accessor method for `DBOAuthManager` shared instance. -/// -/// Shared instance is used to authenticate users through OAuth2, save access tokens, and retrieve access tokens. -/// -/// @return The `DBOAuthManager` shared instance. -/// -+ (nullable DBOAuthManager *)sharedOAuthManager; - -/// -/// Mutator method for `DBOAuthManager` shared instance. -/// -/// Shared instance is used to authenticate users through OAuth2, save access tokens, and retrieve access tokens. -/// -/// @param sharedOAuthManager The updated reference to the `DBOAuthManager` shared instance. -/// -+ (void)setSharedOAuthManager:(DBOAuthManager *)sharedOAuthManager; - -#pragma mark - Constructors - -/// -/// `DBOAuthManager` convenience constructor. -/// -/// @param appKey The app key from the developer console that identifies this app. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey; - -/// -/// `DBOAuthManager` convenience constructor. -/// -/// @param appKey The app key from the developer console that identifies this app. -/// @param host The host of the OAuth web flow. Leave nil to use default host. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey host:(nullable NSString *)host; - -/// -/// `DBOAuthManager` full constructor. -/// -/// @param appKey The app key from the developer console that identifies this app. -/// @param host The host of the OAuth web flow. Leave nil to use default host. -/// @param redirectURL The redirect url of the OAuth web flow. Default to "db-://2/token" -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - host:(nullable NSString *)host - redirectURL:(nullable NSString *)redirectURL; - -#pragma mark - Auth flow methods - -/// -/// Commences the authorization flow (platform-neutral). -/// -/// Interfaces with platform-specific rendering logic via the `DBSharedApplication` protocol. -/// -/// -/// @param sharedApplication A platform-neutral shared application abstraction for rendering auth flow. -/// -- (void)authorizeFromSharedApplication:(id)sharedApplication; - -/// -/// Commences the authorization flow (platform-neutral). -/// -/// Interfaces with platform-specific rendering logic via the `DBSharedApplication` protocol. -/// -/// @param sharedApplication A platform-neutral shared application abstraction for rendering auth flow. -/// @param usePkce Whether to use OAuth2 code flow with PKCE. -/// @param scopeRequest The ScopeRequest, only used in code flow with PKCE. -/// -- (void)authorizeFromSharedApplication:(id)sharedApplication - usePkce:(BOOL)usePkce - scopeRequest:(nullable DBScopeRequest *)scopeRequest; - -/// -/// Handles a redirect back into the application (from whichever auth flow was being used). -/// -/// @param url The redirect URL to attempt to handle. -/// @param completion Completion block for oauth result, called with `nil` if SDK cannot handle the redirect URL, -/// otherwise an instance of `DBOAuthResult`. -/// -/// @return Whether the URL can be handled. -/// -- (BOOL)handleRedirectURL:(NSURL *)url completion:(DBOAuthCompletion)completion; - -#pragma mark - Keychain methods - -/// -/// Saves an access token to the `DBKeychain` class. -/// -/// @param accessToken The access token to save. -/// -/// @return Whether the save operation succeeded. -/// -- (BOOL)storeAccessToken:(DBAccessToken *)accessToken; - -/// -/// Utility function to return an arbitrary access token from the `DBKeychain` class, if any exist. -/// -/// @return the "first" access token found, if any, otherwise nil. -/// -- (nullable DBAccessToken *)retrieveFirstAccessToken; - -/// -/// Retrieves the access token for a particular user from the `DBKeychain` class. -/// -/// @param tokenUid The uid of the access token to retrieve. -/// -/// @return An access token if present, otherwise nil. -/// -- (nullable DBAccessToken *)retrieveAccessToken:(NSString *)tokenUid; - -/// -/// Retrieves all stored access tokens from the `DBKeychain` class. -/// -/// @return a dictionary mapping token uids to their access tokens. -/// -- (NSDictionary *)retrieveAllAccessTokens; - -/// -/// Checks if there are any stored access tokens in the `DBKeychain` class. -/// -/// @return Whether there are stored access tokens. -/// -- (BOOL)hasStoredAccessTokens; - -/// -/// Deletes a specific access tokens from the `DBKeychain` class. -/// -/// @param tokenUid The uid of the access token to delete. -/// -/// @return Whether the delete operation succeeded. -/// -- (BOOL)clearStoredAccessToken:(NSString *)tokenUid; - -/// -/// Deletes all stored access tokens in the `DBKeychain` class. -/// -/// @return Whether the batch deletion operation succeeded. -/// -- (BOOL)clearStoredAccessTokens; - -/// -/// When YES users will not be able to sign up for a Dropbox account via the authorization page. Instead, the -/// authorization page will show a link to the Dropbox iOS app in the App Store. This is was originally intended for use -/// when necessary for compliance with App Store policies. -/// -/// Default value is YES. -/// -/// NOTE: Recent App Store policy suggests that sign up is now allowed, so it should be safe to enable signup. However -/// we are keeping the parameter and defaulting to YES to allow SDK users to make the appropriate decision for their -/// apps. -@property (nonatomic, assign) BOOL disableSignup; - -/// -/// When YES, users who use the web auth flow (NOT dbapp delegated auth) will be forced to sign in from scratch. -/// When NO, there is saved session data from the SafariViewController that can be used across signin attempts. -/// This is intended for use with multi-account applications for App Store compliance, since -/// adding a second account would shortcut the username/password entry page and use the first account's credentials. -/// -/// Default value is NO, which is consistent with historical behavior. -/// -@property (nonatomic, assign) BOOL webAuthShouldForceReauthentication; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthMobile-iOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthMobile-iOS.h deleted file mode 100644 index 17908bde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthMobile-iOS.h +++ /dev/null @@ -1,59 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import -#import -#import - -#import "DBLoadingStatusDelegate.h" -#import "DBSharedApplicationProtocol.h" - -#pragma mark - Shared application - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Platform-specific (here, iOS) shared application. -/// -/// Renders OAuth flow and implements `DBSharedApplication` protocol. -/// -@interface DBMobileSharedApplication : NSObject - -/// Delegate to handle loading status during auth flow. -@property (nonatomic, readwrite, weak) id loadingStatusDelegate; - -/// -/// Full constructor. -/// -/// @param sharedApplication The `UIApplication` with which to render the OAuth flow. -/// @param controller The `UIViewController` with which to render the OAuth flow. The controller reference is weakly -/// held. -/// @param openURL A wrapper around app-extension unsafe `openURL` call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedApplication:(UIApplication *)sharedApplication - controller:(UIViewController *)controller - openURL:(void (^_Nonnull)(NSURL *))openURL; - -+ (nullable DBMobileSharedApplication *)mobileSharedApplication; - -+ (void)setMobileSharedApplication:(DBMobileSharedApplication *)mobileSharedApplication; - -- (void)dismissAuthController; - -@end - -#pragma mark - Web view controller - -/// -/// Platform-specific (here, iOS) `UIViewController` for rendering OAuth flow. -/// -@interface DBMobileSafariViewController : SFSafariViewController - -- (instancetype)initWithUrl:(NSURL *)url cancelHandler:(DBOAuthCancelBlock)cancelHandler; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthMobileManager-iOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthMobileManager-iOS.h deleted file mode 100644 index cbdbac21..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthMobileManager-iOS.h +++ /dev/null @@ -1,18 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBOAuthManager.h" - -@protocol DBSharedApplication; - -#pragma mark - OAuth manager base (iOS) - -/// -/// Platform-specific (iOS) manager for performing OAuth linking. -/// -@interface DBOAuthMobileManager : DBOAuthManager - -@end diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthResult.h deleted file mode 100644 index f7a09ead..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthResult.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBAccessToken; -@class DBOAuthResult; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Union result type from OAuth linking attempt. -/// -@interface DBOAuthResult : NSObject - -#pragma mark - Tag type definition - -/// The `DBAuthResultTag` enum type represents the possible tag states that the DBOAuthResult union can exist in. -typedef NS_ENUM(NSInteger, DBOAuthResultTag) { - /// The authorization succeeded. Includes a `DBAccessToken`. - DBAuthSuccess, - - /// The authorization failed. Includes an `OAuth2Error` and a descriptive message. - DBAuthError, - - /// The authorization was manually canceled by the user. - DBAuthCancel, -}; - -/// Represents the possible error types that can be returned from OAuth linking. -/// Includes errors from both Implicit Grant (See RFC6749 4.2.2.1) and Extension Grants (See RFC6749 5.2), -/// and a couple of SDK defined errors outside of OAuth2 specification. -typedef NS_ENUM(NSInteger, DBOAuthErrorType) { - /// The client is not authorized to request an access token using this method. - DBAuthUnauthorizedClient, - - /// The resource owner or authorization server denied the request. - DBAuthAccessDenied, - - /// The authorization server does not support obtaining an access token using - /// this method. - DBAuthUnsupportedResponseType, - - /// The requested scope is invalid, unknown, or malformed. - DBAuthInvalidScope, - - /// The authorization server encountered an unexpected condition that prevented it from fulfilling the request. - DBAuthServerError, - - /// The authorization server is currently unable to handle the request due to a temporary overloading or maintenance - /// of the server. - DBAuthTemporarilyUnavailable, - - /// The request is missing a required parameter, includes an unsupported parameter value (other than grant type), - /// repeats a parameter, includes multiple credentials, utilizes more than one mechanism for authenticating the - /// client, or is otherwise malformed. - DBAuthInvalidRequest, - - /// Client authentication failed (e.g., unknown client, no client authentication included, or unsupported - /// authentication method). - DBAuthInvalidClient, - - /// The provided authorization grant (e.g., authorization code, resource owner credentials) or refresh token is - /// invalid, expired, revoked, does not match the redirection URI used in the authorization request, - /// or was issued to another client. - DBAuthInvalidGrant, - - /// The authorization grant type is not supported by the authorization server. - DBAuthUnsupportedGrantType, - - /// The state param received from the authorization server does not match the state param stored by the SDK. - DBAuthInconsistentState, - - /// Some other error (outside of the OAuth2 specification) - DBAuthUnknown, -}; - -#pragma mark - Instance variables - -/// Represents the `DBOAuthResult` object's current tag state. -@property (nonatomic, readonly) DBOAuthResultTag tag; - -/// The access token that is retrieved in the event of a successful OAuth authorization. -/// @note Ensure the `isSuccess` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBAccessToken *accessToken; - -/// The type of OAuth error that is returned in the event of an unsuccessful OAuth authorization. -/// @note Ensure the `isError` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBOAuthErrorType errorType; - -/// The error description string associated with the `DBAuthErrorType` that is returned in the event of an unsuccessful -/// OAuth authorization. -/// @note Ensure the `isError` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *errorDescription; - -/// The `NSError` form of the error result. -/// @note Ensure the `isError` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSError *nsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param accessToken The `DBAccessToken` (`account_id` / `team_id` and OAuth token pair) retrieved from the -/// authorization flow. -/// -/// @return An initialized `DBOAuthResult` instance. -/// -- (instancetype)initWithSuccess:(DBAccessToken *)accessToken; - -/// -/// Initializes union class with tag state of "error". -/// -/// @param errorType The string identifier of the OAuth error type (lookup performed in errorTypeLookup dict). -/// @param errorDescription A short description of the error that occured during the authorization flow. -/// -/// @return An initialized `DBOAuthResult` instance. -/// -- (instancetype)initWithError:(NSString *)errorType errorDescription:(nullable NSString *)errorDescription; - -/// -/// Initializes union class with tag state of "cancel". -/// -/// @return An initialized `DBOAuthResult` instance. -/// -- (instancetype)initWithCancel; - -/// -/// Factory method to create union class with tag state of "error" and unknown error type. -/// -/// @param errorDescription A short description of the error that occured during the authorization flow. -/// -/// @return An initialized `DBOAuthResult` instance. -/// -+ (DBOAuthResult *)unknownErrorWithErrorDescription:(nullable NSString *)errorDescription; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "error". -/// -/// @return Whether the union's current tag state has value "error". -/// -- (BOOL)isError; - -/// -/// Retrieves whether the union's current tag state has value "cancel". -/// -/// @return Whether the union's current tag state has value "cancel". -/// -- (BOOL)isCancel; - -#pragma mark - Tag name method - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag -/// state. -/// -- (NSString *)tagName; - -#pragma mark - Description method - -/// -/// Description method. -/// -/// @return A human-readable representation of the current object. -/// -- (NSString *)description; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthResultCompletion.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthResultCompletion.h deleted file mode 100644 index 9d898a36..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOAuthResultCompletion.h +++ /dev/null @@ -1,14 +0,0 @@ -/// -/// Copyright (c) 2020 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBOAuthResult; - -NS_ASSUME_NONNULL_BEGIN - -/// Callback block for oauth result. -typedef void (^DBOAuthCompletion)(DBOAuthResult *_Nullable); - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDOpenIdError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDOpenIdError.h deleted file mode 100644 index 3b3be834..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDOpenIdError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDOpenIdError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OpenIdError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDOpenIdError : NSObject - -#pragma mark - Instance fields - -/// The `DBOPENIDOpenIdErrorTag` enum type represents the possible tag states -/// with which the `DBOPENIDOpenIdError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBOPENIDOpenIdErrorTag) { - /// Missing openid claims for the associated access token. - DBOPENIDOpenIdErrorIncorrectOpenidScopes, - - /// (no description). - DBOPENIDOpenIdErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBOPENIDOpenIdErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "incorrect_openid_scopes". -/// -/// Description of the "incorrect_openid_scopes" tag state: Missing openid -/// claims for the associated access token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncorrectOpenidScopes; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "incorrect_openid_scopes". -/// -/// @return Whether the union's current tag state has value -/// "incorrect_openid_scopes". -/// -- (BOOL)isIncorrectOpenidScopes; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBOPENIDOpenIdError` union. -/// -@interface DBOPENIDOpenIdErrorSerializer : NSObject - -/// -/// Serializes `DBOPENIDOpenIdError` instances. -/// -/// @param instance An instance of the `DBOPENIDOpenIdError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDOpenIdError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDOpenIdError *)instance; - -/// -/// Deserializes `DBOPENIDOpenIdError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDOpenIdError` API object. -/// -/// @return An instantiation of the `DBOPENIDOpenIdError` object. -/// -+ (DBOPENIDOpenIdError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDRouteObjects.h deleted file mode 100644 index 7aa7cd32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDRouteObjects.h +++ /dev/null @@ -1,25 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Openid namespace. Each route in the Openid -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBOPENIDRouteObjects : NSObject - -/// Accessor method for the userinfo route object. -+ (DBRoute *)DBOPENIDUserinfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserAuthRoutes.h deleted file mode 100644 index 72a8d10b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserAuthRoutes.h +++ /dev/null @@ -1,46 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBNilObject; -@class DBOPENIDOpenIdError; -@class DBOPENIDUserInfoError; -@class DBOPENIDUserInfoResult; - -@protocol DBTransportClient; - -/// -/// Routes for the `Openid` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBOPENIDUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBOPENIDUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// This route is used for refreshing the info that is found in the id_token during the OIDC flow. This route doesn't -/// require any arguments and will use the scopes approved for the given access token. -/// -/// -/// @return Through the response callback, the caller will receive a `DBOPENIDUserInfoResult` object on success or a -/// `DBOPENIDUserInfoError` object on failure. -/// -- (DBRpcTask *)userinfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoArgs.h deleted file mode 100644 index 4a681744..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoArgs.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDUserInfoArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoArgs` struct. -/// -/// No Parameters -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDUserInfoArgs : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfoArgs` struct. -/// -@interface DBOPENIDUserInfoArgsSerializer : NSObject - -/// -/// Serializes `DBOPENIDUserInfoArgs` instances. -/// -/// @param instance An instance of the `DBOPENIDUserInfoArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDUserInfoArgs *)instance; - -/// -/// Deserializes `DBOPENIDUserInfoArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoArgs` API object. -/// -/// @return An instantiation of the `DBOPENIDUserInfoArgs` object. -/// -+ (DBOPENIDUserInfoArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoError.h deleted file mode 100644 index 6f5c6431..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDOpenIdError; -@class DBOPENIDUserInfoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDUserInfoError : NSObject - -#pragma mark - Instance fields - -/// The `DBOPENIDUserInfoErrorTag` enum type represents the possible tag states -/// with which the `DBOPENIDUserInfoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBOPENIDUserInfoErrorTag) { - /// (no description). - DBOPENIDUserInfoErrorOpenidError, - - /// (no description). - DBOPENIDUserInfoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBOPENIDUserInfoErrorTag tag; - -/// (no description). @note Ensure the `isOpenidError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBOPENIDOpenIdError *openidError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "openid_error". -/// -/// @param openidError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenidError:(DBOPENIDOpenIdError *)openidError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "openid_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `openidError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "openid_error". -/// -- (BOOL)isOpenidError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBOPENIDUserInfoError` union. -/// -@interface DBOPENIDUserInfoErrorSerializer : NSObject - -/// -/// Serializes `DBOPENIDUserInfoError` instances. -/// -/// @param instance An instance of the `DBOPENIDUserInfoError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDUserInfoError *)instance; - -/// -/// Deserializes `DBOPENIDUserInfoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoError` API object. -/// -/// @return An instantiation of the `DBOPENIDUserInfoError` object. -/// -+ (DBOPENIDUserInfoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoResult.h deleted file mode 100644 index 59de922e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOPENIDUserInfoResult.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDUserInfoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDUserInfoResult : NSObject - -#pragma mark - Instance fields - -/// Last name of user. -@property (nonatomic, readonly, copy, nullable) NSString *familyName; - -/// First name of user. -@property (nonatomic, readonly, copy, nullable) NSString *givenName; - -/// Email address of user. -@property (nonatomic, readonly, copy, nullable) NSString *email; - -/// If user is email verified. -@property (nonatomic, readonly, nullable) NSNumber *emailVerified; - -/// Issuer of token (in this case Dropbox). -@property (nonatomic, readonly, copy) NSString *iss; - -/// An identifier for the user. This is the Dropbox account_id, a string value -/// such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc. -@property (nonatomic, readonly, copy) NSString *sub; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param familyName Last name of user. -/// @param givenName First name of user. -/// @param email Email address of user. -/// @param emailVerified If user is email verified. -/// @param iss Issuer of token (in this case Dropbox). -/// @param sub An identifier for the user. This is the Dropbox account_id, a -/// string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFamilyName:(nullable NSString *)familyName - givenName:(nullable NSString *)givenName - email:(nullable NSString *)email - emailVerified:(nullable NSNumber *)emailVerified - iss:(nullable NSString *)iss - sub:(nullable NSString *)sub; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfoResult` struct. -/// -@interface DBOPENIDUserInfoResultSerializer : NSObject - -/// -/// Serializes `DBOPENIDUserInfoResult` instances. -/// -/// @param instance An instance of the `DBOPENIDUserInfoResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDUserInfoResult *)instance; - -/// -/// Deserializes `DBOPENIDUserInfoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoResult` API object. -/// -/// @return An instantiation of the `DBOPENIDUserInfoResult` object. -/// -+ (DBOPENIDUserInfoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOfficialAppConnector-iOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOfficialAppConnector-iOS.h deleted file mode 100644 index 34021445..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOfficialAppConnector-iOS.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBOpenWithInfo; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Manages returning to the official Dropbox app. -/// -/// @note This logic is for official Dropbox partners only, and should not need -/// to be used by other third-party apps. -/// -@interface DBOfficialAppConnector : NSObject - -/// -/// Full constructor. -/// -/// @param appKey The consumer app key of the current third-party API app. -/// @param canOpenURLWrapper A wrapper around the `[UIApplication canOpenURL]` method call to ensure the SDK is -/// app-extension safe. -/// @param openURLWrapper A wrapper around the [UIApplication openURL] method call to ensure the SDK is app-extension -/// safe. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - canOpenURLWrapper:(BOOL (^)(NSURL *))canOpenURLWrapper - openURLWrapper:(void (^)(NSURL *))openURLWrapper; - -/// -/// Returns to the Dropbox app specified by app -/// -/// @note This logic is for official Dropbox partners only, and should not need to be used by other third-party apps. -/// -/// @param openWithInfo Information retrieved from a shared `UIPasteboard` that is used to return to the official -/// Dropbox app. -/// @param changesPending Whether there are changes pending in Dropbox for the file. -/// -- (void)returnToDropboxApp:(DBOpenWithInfo *)openWithInfo changesPending:(BOOL)changesPending; - -/// -/// Returns to the Dropbox app specified by app passing along the error and a dictionary of extra information. -/// -/// @note This logic is for official Dropbox partners only, and should not need to be used by other third-party apps. -/// -/// @param openWithInfo Information retrieved from a shared `UIPasteboard` that is used to return to the official -/// Dropbox app. -/// @param changesPending Whether there are changes pending in Dropbox for the file. -/// @param errorName The error encoutered to pass back to the official Dropbox app. -/// @param extras Extra information to pass back to the official Dropbox app. -/// -- (void)returnToDropboxApp:(DBOpenWithInfo *)openWithInfo - changesPending:(BOOL)changesPending - errorName:(nullable NSString *)errorName - extras:(nullable NSDictionary *)extras; - -/// -/// Parses the url from the official Dropbox app into a `DBOpenWithInfo` object. -/// -/// @param url The url from the official Dropbox app used to open the SDK. -/// -/// @return Structured data parsed from the supplied url. -/// -- (nullable DBOpenWithInfo *)openWithInfoFromURL:(NSURL *)url; - -/// -/// Determines whether an official Dropbox app is installed. -/// -/// @return Whether an official Dropbox app is installed. -/// -- (BOOL)isRequiredDropboxAppInstalled; - -/// -/// Retrieves from a shared `UIPasteboard` information used to return to the official Dropbox app. -/// -/// @note This logic is for official Dropbox partners only, and should not need to be used by other third-party apps. -/// -/// @return @c DBOpenWithInfo object that wraps the relevant information for returning to the official Dropbox app. -/// -+ (nullable DBOpenWithInfo *)retriveOfficialDropboxAppOpenWithInfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOpenWithInfo-iOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOpenWithInfo-iOS.h deleted file mode 100644 index 7bebe47a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBOpenWithInfo-iOS.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Information for returning to the official Dropbox app. -/// -/// @note This logic is for official Dropbox partners only, and should not need -/// to be used by other third-party apps. -/// -@interface DBOpenWithInfo : NSObject - -/// The Dropbox user ID of the current user. -@property (nonatomic, copy, readonly) NSString *userId; - -/// The Dropbox revision for the file. -@property (nonatomic, copy, readonly) NSString *rev; - -/// The Dropbox path for the file. -@property (nonatomic, copy, readonly) NSString *path; - -/// The time the file was modified last. -@property (nonatomic, copy, readonly, nullable) NSDate *modifiedTime; - -/// Whether the file is read only or not. -@property (nonatomic, readonly) BOOL readOnly; - -/// The Dropbox verb associated with the file. -@property (nonatomic, copy, readonly) NSString *verb; - -/// The Dropbox session ID associated with the file. -@property (nonatomic, copy, readonly, nullable) NSString *sessionId; - -/// The Dropbox file ID associated with the file. -@property (nonatomic, copy, readonly, nullable) NSString *fileId; - -/// Relevant Dropbox file data associated with the file. -@property (nonatomic, copy, readonly, nullable) NSData *fileData; - -/// The source application from which the file content originated. -@property (nonatomic, copy, readonly, nullable) NSString *sourceApp; - -/// -/// Initializer containing the parameters that we were opened with. Some of these parameters are necessary to return to -/// the originating Dropbox app. There are now two Dropbox apps: the regular Dropbox app and the Dropbox EMM app. Either -/// can open with. -/// -/// @note This logic is for official Dropbox partners only, and should not need to be used by other third-party apps. -/// -/// @param userId The Dropbox user ID of the current user. -/// @param rev The Dropbox revision for the file. -/// @param path The Dropbox path for the file. -/// @param modifiedTime The time the file was modified last. -/// @param readOnly Whether the file is read only. -/// @param verb The action type to be taken on the file (e.g. EDIT) supplied by the official Dropbox app. -/// @param sessionId The Dropbox session ID supplied by the official app -/// @param fileId The Dropbox file ID associated with the file -/// @param fileData Relevant Dropbox file data associated with the file. -/// @param sourceApp The source application from which the file content originated. -/// -- (id)initWithUserId:(NSString *)userId - rev:(NSString *)rev - path:(NSString *)path - modifiedTime:(nullable NSDate *)modifiedTime - readOnly:(BOOL)readOnly - verb:(NSString *)verb - sessionId:(nullable NSString *)sessionId - fileId:(nullable NSString *)fileId - fileData:(nullable NSData *)fileData - sourceApp:(nullable NSString *)sourceApp; - -/// -/// Saves open with info to disc. -/// -/// @note This logic is for official Dropbox partners only, and should not need to be used by other third-party apps. -/// -/// @param sessionId The Dropbox session ID supplied by the official app to be used as a storage lookup key. -/// -- (void)writeToStorageForSession:(nullable NSString *)sessionId; - -/// -/// Retrieves open with info from disc. -/// -/// @note This logic is for official Dropbox partners only, and should not need to be used by other third-party apps. -/// -/// @param sessionId The Dropbox session ID supplied by the official app to be used as a storage lookup key. -/// -+ (nullable DBOpenWithInfo *)popFromStorageForSession:(NSString *)sessionId; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddMember.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddMember.h deleted file mode 100644 index c4d6c1cc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddMember.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERAddMember; -@class DBPAPERPaperDocPermissionLevel; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddMember` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddMember : NSObject - -#pragma mark - Instance fields - -/// Permission for the user. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *permissionLevel; - -/// User which should be added to the Paper doc. Specify only email address or -/// Dropbox account ID. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// @param permissionLevel Permission for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - permissionLevel:(nullable DBPAPERPaperDocPermissionLevel *)permissionLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param member User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddMember` struct. -/// -@interface DBPAPERAddMemberSerializer : NSObject - -/// -/// Serializes `DBPAPERAddMember` instances. -/// -/// @param instance An instance of the `DBPAPERAddMember` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddMember` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddMember *)instance; - -/// -/// Deserializes `DBPAPERAddMember` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddMember` API object. -/// -/// @return An instantiation of the `DBPAPERAddMember` object. -/// -+ (DBPAPERAddMember *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUser.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUser.h deleted file mode 100644 index 32d94ec4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUser.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERAddMember; -@class DBPAPERAddPaperDocUser; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPaperDocUser` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddPaperDocUser : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// User which should be added to the Paper doc. Specify only email address or -/// Dropbox account ID. -@property (nonatomic, readonly) NSArray *members; - -/// A personal message that will be emailed to each successfully added member. -@property (nonatomic, readonly, copy, nullable) NSString *customMessage; - -/// Clients should set this to true if no email message shall be sent to added -/// users. -@property (nonatomic, readonly) NSNumber *quiet; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param members User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// @param customMessage A personal message that will be emailed to each -/// successfully added member. -/// @param quiet Clients should set this to true if no email message shall be -/// sent to added users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param docId The Paper doc ID. -/// @param members User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId members:(NSArray *)members; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddPaperDocUser` struct. -/// -@interface DBPAPERAddPaperDocUserSerializer : NSObject - -/// -/// Serializes `DBPAPERAddPaperDocUser` instances. -/// -/// @param instance An instance of the `DBPAPERAddPaperDocUser` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUser` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddPaperDocUser *)instance; - -/// -/// Deserializes `DBPAPERAddPaperDocUser` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUser` API object. -/// -/// @return An instantiation of the `DBPAPERAddPaperDocUser` object. -/// -+ (DBPAPERAddPaperDocUser *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUserMemberResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUserMemberResult.h deleted file mode 100644 index f2a863da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUserMemberResult.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERAddPaperDocUserMemberResult; -@class DBPAPERAddPaperDocUserResult; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPaperDocUserMemberResult` struct. -/// -/// Per-member result for `docsUsersAdd`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddPaperDocUserMemberResult : NSObject - -#pragma mark - Instance fields - -/// One of specified input members. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The outcome of the action on this member. -@property (nonatomic, readonly) DBPAPERAddPaperDocUserResult *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member One of specified input members. -/// @param result The outcome of the action on this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member result:(DBPAPERAddPaperDocUserResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddPaperDocUserMemberResult` struct. -/// -@interface DBPAPERAddPaperDocUserMemberResultSerializer : NSObject - -/// -/// Serializes `DBPAPERAddPaperDocUserMemberResult` instances. -/// -/// @param instance An instance of the `DBPAPERAddPaperDocUserMemberResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserMemberResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddPaperDocUserMemberResult *)instance; - -/// -/// Deserializes `DBPAPERAddPaperDocUserMemberResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserMemberResult` API object. -/// -/// @return An instantiation of the `DBPAPERAddPaperDocUserMemberResult` object. -/// -+ (DBPAPERAddPaperDocUserMemberResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUserResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUserResult.h deleted file mode 100644 index 299df130..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERAddPaperDocUserResult.h +++ /dev/null @@ -1,248 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERAddPaperDocUserResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPaperDocUserResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddPaperDocUserResult : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERAddPaperDocUserResultTag` enum type represents the possible tag -/// states with which the `DBPAPERAddPaperDocUserResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERAddPaperDocUserResultTag) { - /// User was successfully added to the Paper doc. - DBPAPERAddPaperDocUserResultSuccess, - - /// Something unexpected happened when trying to add the user to the Paper - /// doc. - DBPAPERAddPaperDocUserResultUnknownError, - - /// The Paper doc can be shared only with team members. - DBPAPERAddPaperDocUserResultSharingOutsideTeamDisabled, - - /// The daily limit of how many users can be added to the Paper doc was - /// reached. - DBPAPERAddPaperDocUserResultDailyLimitReached, - - /// Owner's permissions cannot be changed. - DBPAPERAddPaperDocUserResultUserIsOwner, - - /// User data could not be retrieved. Clients should retry. - DBPAPERAddPaperDocUserResultFailedUserDataRetrieval, - - /// This user already has the correct permission to the Paper doc. - DBPAPERAddPaperDocUserResultPermissionAlreadyGranted, - - /// (no description). - DBPAPERAddPaperDocUserResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERAddPaperDocUserResultTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: User was successfully added to the -/// Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: Something unexpected happened -/// when trying to add the user to the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError; - -/// -/// Initializes union class with tag state of "sharing_outside_team_disabled". -/// -/// Description of the "sharing_outside_team_disabled" tag state: The Paper doc -/// can be shared only with team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingOutsideTeamDisabled; - -/// -/// Initializes union class with tag state of "daily_limit_reached". -/// -/// Description of the "daily_limit_reached" tag state: The daily limit of how -/// many users can be added to the Paper doc was reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDailyLimitReached; - -/// -/// Initializes union class with tag state of "user_is_owner". -/// -/// Description of the "user_is_owner" tag state: Owner's permissions cannot be -/// changed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserIsOwner; - -/// -/// Initializes union class with tag state of "failed_user_data_retrieval". -/// -/// Description of the "failed_user_data_retrieval" tag state: User data could -/// not be retrieved. Clients should retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailedUserDataRetrieval; - -/// -/// Initializes union class with tag state of "permission_already_granted". -/// -/// Description of the "permission_already_granted" tag state: This user already -/// has the correct permission to the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionAlreadyGranted; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_outside_team_disabled". -/// -/// @return Whether the union's current tag state has value -/// "sharing_outside_team_disabled". -/// -- (BOOL)isSharingOutsideTeamDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "daily_limit_reached". -/// -/// @return Whether the union's current tag state has value -/// "daily_limit_reached". -/// -- (BOOL)isDailyLimitReached; - -/// -/// Retrieves whether the union's current tag state has value "user_is_owner". -/// -/// @return Whether the union's current tag state has value "user_is_owner". -/// -- (BOOL)isUserIsOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "failed_user_data_retrieval". -/// -/// @return Whether the union's current tag state has value -/// "failed_user_data_retrieval". -/// -- (BOOL)isFailedUserDataRetrieval; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_already_granted". -/// -/// @return Whether the union's current tag state has value -/// "permission_already_granted". -/// -- (BOOL)isPermissionAlreadyGranted; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERAddPaperDocUserResult` union. -/// -@interface DBPAPERAddPaperDocUserResultSerializer : NSObject - -/// -/// Serializes `DBPAPERAddPaperDocUserResult` instances. -/// -/// @param instance An instance of the `DBPAPERAddPaperDocUserResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddPaperDocUserResult *)instance; - -/// -/// Deserializes `DBPAPERAddPaperDocUserResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserResult` API object. -/// -/// @return An instantiation of the `DBPAPERAddPaperDocUserResult` object. -/// -+ (DBPAPERAddPaperDocUserResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERCursor.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERCursor.h deleted file mode 100644 index 8c2bcee3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERCursor.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Cursor` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERCursor : NSObject - -#pragma mark - Instance fields - -/// The actual cursor value. -@property (nonatomic, readonly, copy) NSString *value; - -/// Expiration time of value. Some cursors might have expiration time assigned. -/// This is a UTC value after which the cursor is no longer valid and the API -/// starts returning an error. If cursor expires a new one needs to be obtained -/// and pagination needs to be restarted. Some cursors might be short-lived some -/// cursors might be long-lived. This really depends on the sorting type and -/// order, e.g.: 1. on one hand, listing docs created by the user, sorted by the -/// created time ascending will have undefinite expiration because the results -/// cannot change while the iteration is happening. This cursor would be -/// suitable for long term polling. 2. on the other hand, listing docs sorted by -/// the last modified time will have a very short expiration as docs do get -/// modified very often and the modified time can be changed while the iteration -/// is happening thus altering the results. -@property (nonatomic, readonly, nullable) NSDate *expiration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param value The actual cursor value. -/// @param expiration Expiration time of value. Some cursors might have -/// expiration time assigned. This is a UTC value after which the cursor is no -/// longer valid and the API starts returning an error. If cursor expires a new -/// one needs to be obtained and pagination needs to be restarted. Some cursors -/// might be short-lived some cursors might be long-lived. This really depends -/// on the sorting type and order, e.g.: 1. on one hand, listing docs created by -/// the user, sorted by the created time ascending will have undefinite -/// expiration because the results cannot change while the iteration is -/// happening. This cursor would be suitable for long term polling. 2. on the -/// other hand, listing docs sorted by the last modified time will have a very -/// short expiration as docs do get modified very often and the modified time -/// can be changed while the iteration is happening thus altering the results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValue:(NSString *)value expiration:(nullable NSDate *)expiration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param value The actual cursor value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValue:(NSString *)value; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Cursor` struct. -/// -@interface DBPAPERCursorSerializer : NSObject - -/// -/// Serializes `DBPAPERCursor` instances. -/// -/// @param instance An instance of the `DBPAPERCursor` API object. -/// -/// @return A json-compatible dictionary representation of the `DBPAPERCursor` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERCursor *)instance; - -/// -/// Deserializes `DBPAPERCursor` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERCursor` API object. -/// -/// @return An instantiation of the `DBPAPERCursor` object. -/// -+ (DBPAPERCursor *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERDocLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERDocLookupError.h deleted file mode 100644 index 39a2657f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERDocLookupError.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERDocLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DocLookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERDocLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERDocLookupErrorTag` enum type represents the possible tag states -/// with which the `DBPAPERDocLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERDocLookupErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERDocLookupErrorInsufficientPermissions, - - /// (no description). - DBPAPERDocLookupErrorOther, - - /// The required doc was not found. - DBPAPERDocLookupErrorDocNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERDocLookupErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "doc_not_found". -/// -/// Description of the "doc_not_found" tag state: The required doc was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "doc_not_found". -/// -/// @return Whether the union's current tag state has value "doc_not_found". -/// -- (BOOL)isDocNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERDocLookupError` union. -/// -@interface DBPAPERDocLookupErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERDocLookupError` instances. -/// -/// @param instance An instance of the `DBPAPERDocLookupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERDocLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERDocLookupError *)instance; - -/// -/// Deserializes `DBPAPERDocLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERDocLookupError` API object. -/// -/// @return An instantiation of the `DBPAPERDocLookupError` object. -/// -+ (DBPAPERDocLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERDocSubscriptionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERDocSubscriptionLevel.h deleted file mode 100644 index f62daed0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERDocSubscriptionLevel.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERDocSubscriptionLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DocSubscriptionLevel` union. -/// -/// The subscription level of a Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERDocSubscriptionLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERDocSubscriptionLevelTag` enum type represents the possible tag -/// states with which the `DBPAPERDocSubscriptionLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERDocSubscriptionLevelTag) { - /// No change email messages unless you're the creator. - DBPAPERDocSubscriptionLevelDefault_, - - /// Ignored: Not shown in pad lists or activity and no email message is - /// sent. - DBPAPERDocSubscriptionLevelIgnore, - - /// Subscribed: Shown in pad lists and activity and change email messages - /// are sent. - DBPAPERDocSubscriptionLevelEvery, - - /// Unsubscribed: Shown in pad lists, but not in activity and no change - /// email messages are sent. - DBPAPERDocSubscriptionLevelNoEmail, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERDocSubscriptionLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: No change email messages unless -/// you're the creator. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "ignore". -/// -/// Description of the "ignore" tag state: Ignored: Not shown in pad lists or -/// activity and no email message is sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIgnore; - -/// -/// Initializes union class with tag state of "every". -/// -/// Description of the "every" tag state: Subscribed: Shown in pad lists and -/// activity and change email messages are sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEvery; - -/// -/// Initializes union class with tag state of "no_email". -/// -/// Description of the "no_email" tag state: Unsubscribed: Shown in pad lists, -/// but not in activity and no change email messages are sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoEmail; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "ignore". -/// -/// @return Whether the union's current tag state has value "ignore". -/// -- (BOOL)isIgnore; - -/// -/// Retrieves whether the union's current tag state has value "every". -/// -/// @return Whether the union's current tag state has value "every". -/// -- (BOOL)isEvery; - -/// -/// Retrieves whether the union's current tag state has value "no_email". -/// -/// @return Whether the union's current tag state has value "no_email". -/// -- (BOOL)isNoEmail; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERDocSubscriptionLevel` union. -/// -@interface DBPAPERDocSubscriptionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERDocSubscriptionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERDocSubscriptionLevel` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERDocSubscriptionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERDocSubscriptionLevel *)instance; - -/// -/// Deserializes `DBPAPERDocSubscriptionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERDocSubscriptionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERDocSubscriptionLevel` object. -/// -+ (DBPAPERDocSubscriptionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERExportFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERExportFormat.h deleted file mode 100644 index 9cc8dc6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERExportFormat.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERExportFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportFormat` union. -/// -/// The desired export format of the Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERExportFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERExportFormatTag` enum type represents the possible tag states -/// with which the `DBPAPERExportFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERExportFormatTag) { - /// The HTML export format. - DBPAPERExportFormatHtml, - - /// The markdown export format. - DBPAPERExportFormatMarkdown, - - /// (no description). - DBPAPERExportFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERExportFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "html". -/// -/// Description of the "html" tag state: The HTML export format. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// Description of the "markdown" tag state: The markdown export format. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERExportFormat` union. -/// -@interface DBPAPERExportFormatSerializer : NSObject - -/// -/// Serializes `DBPAPERExportFormat` instances. -/// -/// @param instance An instance of the `DBPAPERExportFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERExportFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERExportFormat *)instance; - -/// -/// Deserializes `DBPAPERExportFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERExportFormat` API object. -/// -/// @return An instantiation of the `DBPAPERExportFormat` object. -/// -+ (DBPAPERExportFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolder.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolder.h deleted file mode 100644 index 0f024e10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolder.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolder; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Folder` struct. -/// -/// Data structure representing a Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFolder : NSObject - -#pragma mark - Instance fields - -/// Paper folder ID. This ID uniquely identifies the folder. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Paper folder name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ Paper folder ID. This ID uniquely identifies the folder. -/// @param name Paper folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Folder` struct. -/// -@interface DBPAPERFolderSerializer : NSObject - -/// -/// Serializes `DBPAPERFolder` instances. -/// -/// @param instance An instance of the `DBPAPERFolder` API object. -/// -/// @return A json-compatible dictionary representation of the `DBPAPERFolder` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFolder *)instance; - -/// -/// Deserializes `DBPAPERFolder` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFolder` API object. -/// -/// @return An instantiation of the `DBPAPERFolder` object. -/// -+ (DBPAPERFolder *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolderSharingPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolderSharingPolicyType.h deleted file mode 100644 index fb3e79de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolderSharingPolicyType.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolderSharingPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderSharingPolicyType` union. -/// -/// The sharing policy of a Paper folder. The sharing policy of subfolders is -/// inherited from the root folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFolderSharingPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERFolderSharingPolicyTypeTag` enum type represents the possible -/// tag states with which the `DBPAPERFolderSharingPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERFolderSharingPolicyTypeTag) { - /// Everyone in your team and anyone directly invited can access this - /// folder. - DBPAPERFolderSharingPolicyTypeTeam, - - /// Only people directly invited can access this folder. - DBPAPERFolderSharingPolicyTypeInviteOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERFolderSharingPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Everyone in your team and anyone -/// directly invited can access this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Only people directly invited can -/// access this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERFolderSharingPolicyType` union. -/// -@interface DBPAPERFolderSharingPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBPAPERFolderSharingPolicyType` instances. -/// -/// @param instance An instance of the `DBPAPERFolderSharingPolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERFolderSharingPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFolderSharingPolicyType *)instance; - -/// -/// Deserializes `DBPAPERFolderSharingPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFolderSharingPolicyType` API object. -/// -/// @return An instantiation of the `DBPAPERFolderSharingPolicyType` object. -/// -+ (DBPAPERFolderSharingPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolderSubscriptionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolderSubscriptionLevel.h deleted file mode 100644 index f8840c44..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFolderSubscriptionLevel.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolderSubscriptionLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderSubscriptionLevel` union. -/// -/// The subscription level of a Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFolderSubscriptionLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERFolderSubscriptionLevelTag` enum type represents the possible -/// tag states with which the `DBPAPERFolderSubscriptionLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERFolderSubscriptionLevelTag) { - /// Not shown in activity, no email messages. - DBPAPERFolderSubscriptionLevelNone, - - /// Shown in activity, no email messages. - DBPAPERFolderSubscriptionLevelActivityOnly, - - /// Shown in activity, daily email messages. - DBPAPERFolderSubscriptionLevelDailyEmails, - - /// Shown in activity, weekly email messages. - DBPAPERFolderSubscriptionLevelWeeklyEmails, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERFolderSubscriptionLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "none". -/// -/// Description of the "none" tag state: Not shown in activity, no email -/// messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "activity_only". -/// -/// Description of the "activity_only" tag state: Shown in activity, no email -/// messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActivityOnly; - -/// -/// Initializes union class with tag state of "daily_emails". -/// -/// Description of the "daily_emails" tag state: Shown in activity, daily email -/// messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDailyEmails; - -/// -/// Initializes union class with tag state of "weekly_emails". -/// -/// Description of the "weekly_emails" tag state: Shown in activity, weekly -/// email messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWeeklyEmails; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "activity_only". -/// -/// @return Whether the union's current tag state has value "activity_only". -/// -- (BOOL)isActivityOnly; - -/// -/// Retrieves whether the union's current tag state has value "daily_emails". -/// -/// @return Whether the union's current tag state has value "daily_emails". -/// -- (BOOL)isDailyEmails; - -/// -/// Retrieves whether the union's current tag state has value "weekly_emails". -/// -/// @return Whether the union's current tag state has value "weekly_emails". -/// -- (BOOL)isWeeklyEmails; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERFolderSubscriptionLevel` union. -/// -@interface DBPAPERFolderSubscriptionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERFolderSubscriptionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERFolderSubscriptionLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERFolderSubscriptionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFolderSubscriptionLevel *)instance; - -/// -/// Deserializes `DBPAPERFolderSubscriptionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFolderSubscriptionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERFolderSubscriptionLevel` object. -/// -+ (DBPAPERFolderSubscriptionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFoldersContainingPaperDoc.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFoldersContainingPaperDoc.h deleted file mode 100644 index 8090596d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERFoldersContainingPaperDoc.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolder; -@class DBPAPERFolderSharingPolicyType; -@class DBPAPERFoldersContainingPaperDoc; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FoldersContainingPaperDoc` struct. -/// -/// Metadata about Paper folders containing the specififed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFoldersContainingPaperDoc : NSObject - -#pragma mark - Instance fields - -/// The sharing policy of the folder containing the Paper doc. -@property (nonatomic, readonly, nullable) DBPAPERFolderSharingPolicyType *folderSharingPolicyType; - -/// The folder path. If present the first folder is the root folder. -@property (nonatomic, readonly, nullable) NSArray *folders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderSharingPolicyType The sharing policy of the folder containing -/// the Paper doc. -/// @param folders The folder path. If present the first folder is the root -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderSharingPolicyType:(nullable DBPAPERFolderSharingPolicyType *)folderSharingPolicyType - folders:(nullable NSArray *)folders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FoldersContainingPaperDoc` struct. -/// -@interface DBPAPERFoldersContainingPaperDocSerializer : NSObject - -/// -/// Serializes `DBPAPERFoldersContainingPaperDoc` instances. -/// -/// @param instance An instance of the `DBPAPERFoldersContainingPaperDoc` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERFoldersContainingPaperDoc` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFoldersContainingPaperDoc *)instance; - -/// -/// Deserializes `DBPAPERFoldersContainingPaperDoc` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFoldersContainingPaperDoc` API object. -/// -/// @return An instantiation of the `DBPAPERFoldersContainingPaperDoc` object. -/// -+ (DBPAPERFoldersContainingPaperDoc *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERImportFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERImportFormat.h deleted file mode 100644 index 558522ca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERImportFormat.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERImportFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ImportFormat` union. -/// -/// The import format of the incoming data. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERImportFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERImportFormatTag` enum type represents the possible tag states -/// with which the `DBPAPERImportFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERImportFormatTag) { - /// The provided data is interpreted as standard HTML. - DBPAPERImportFormatHtml, - - /// The provided data is interpreted as markdown. The first line of the - /// provided document will be used as the doc title. - DBPAPERImportFormatMarkdown, - - /// The provided data is interpreted as plain text. The first line of the - /// provided document will be used as the doc title. - DBPAPERImportFormatPlainText, - - /// (no description). - DBPAPERImportFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERImportFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "html". -/// -/// Description of the "html" tag state: The provided data is interpreted as -/// standard HTML. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// Description of the "markdown" tag state: The provided data is interpreted as -/// markdown. The first line of the provided document will be used as the doc -/// title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "plain_text". -/// -/// Description of the "plain_text" tag state: The provided data is interpreted -/// as plain text. The first line of the provided document will be used as the -/// doc title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlainText; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "plain_text". -/// -/// @return Whether the union's current tag state has value "plain_text". -/// -- (BOOL)isPlainText; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERImportFormat` union. -/// -@interface DBPAPERImportFormatSerializer : NSObject - -/// -/// Serializes `DBPAPERImportFormat` instances. -/// -/// @param instance An instance of the `DBPAPERImportFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERImportFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERImportFormat *)instance; - -/// -/// Deserializes `DBPAPERImportFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERImportFormat` API object. -/// -/// @return An instantiation of the `DBPAPERImportFormat` object. -/// -+ (DBPAPERImportFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERInviteeInfoWithPermissionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERInviteeInfoWithPermissionLevel.h deleted file mode 100644 index 199767b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERInviteeInfoWithPermissionLevel.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERInviteeInfoWithPermissionLevel; -@class DBPAPERPaperDocPermissionLevel; -@class DBSHARINGInviteeInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteeInfoWithPermissionLevel` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERInviteeInfoWithPermissionLevel : NSObject - -#pragma mark - Instance fields - -/// Email address invited to the Paper doc. -@property (nonatomic, readonly) DBSHARINGInviteeInfo *invitee; - -/// Permission level for the invitee. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *permissionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitee Email address invited to the Paper doc. -/// @param permissionLevel Permission level for the invitee. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitee:(DBSHARINGInviteeInfo *)invitee - permissionLevel:(DBPAPERPaperDocPermissionLevel *)permissionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteeInfoWithPermissionLevel` struct. -/// -@interface DBPAPERInviteeInfoWithPermissionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERInviteeInfoWithPermissionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERInviteeInfoWithPermissionLevel` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERInviteeInfoWithPermissionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERInviteeInfoWithPermissionLevel *)instance; - -/// -/// Deserializes `DBPAPERInviteeInfoWithPermissionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERInviteeInfoWithPermissionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERInviteeInfoWithPermissionLevel` -/// object. -/// -+ (DBPAPERInviteeInfoWithPermissionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListDocsCursorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListDocsCursorError.h deleted file mode 100644 index 4e1ddc23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListDocsCursorError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListDocsCursorError; -@class DBPAPERPaperApiCursorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListDocsCursorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListDocsCursorError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListDocsCursorErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERListDocsCursorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListDocsCursorErrorTag) { - /// (no description). - DBPAPERListDocsCursorErrorCursorError, - - /// (no description). - DBPAPERListDocsCursorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListDocsCursorErrorTag tag; - -/// (no description). @note Ensure the `isCursorError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBPAPERPaperApiCursorError *cursorError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "cursor_error". -/// -/// @param cursorError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursorError:(DBPAPERPaperApiCursorError *)cursorError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "cursor_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cursorError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "cursor_error". -/// -- (BOOL)isCursorError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListDocsCursorError` union. -/// -@interface DBPAPERListDocsCursorErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERListDocsCursorError` instances. -/// -/// @param instance An instance of the `DBPAPERListDocsCursorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListDocsCursorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListDocsCursorError *)instance; - -/// -/// Deserializes `DBPAPERListDocsCursorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListDocsCursorError` API object. -/// -/// @return An instantiation of the `DBPAPERListDocsCursorError` object. -/// -+ (DBPAPERListDocsCursorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsArgs.h deleted file mode 100644 index da817dde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsArgs.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsArgs; -@class DBPAPERListPaperDocsFilterBy; -@class DBPAPERListPaperDocsSortBy; -@class DBPAPERListPaperDocsSortOrder; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsArgs : NSObject - -#pragma mark - Instance fields - -/// Allows user to specify how the Paper docs should be filtered. -@property (nonatomic, readonly) DBPAPERListPaperDocsFilterBy *filterBy; - -/// Allows user to specify how the Paper docs should be sorted. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortBy *sortBy; - -/// Allows user to specify the sort order of the result. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortOrder *sortOrder; - -/// Size limit per batch. The maximum number of docs that can be retrieved per -/// batch is 1000. Higher value results in invalid arguments error. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param filterBy Allows user to specify how the Paper docs should be -/// filtered. -/// @param sortBy Allows user to specify how the Paper docs should be sorted. -/// @param sortOrder Allows user to specify the sort order of the result. -/// @param limit Size limit per batch. The maximum number of docs that can be -/// retrieved per batch is 1000. Higher value results in invalid arguments -/// error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterBy:(nullable DBPAPERListPaperDocsFilterBy *)filterBy - sortBy:(nullable DBPAPERListPaperDocsSortBy *)sortBy - sortOrder:(nullable DBPAPERListPaperDocsSortOrder *)sortOrder - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListPaperDocsArgs` struct. -/// -@interface DBPAPERListPaperDocsArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsArgs *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsArgs` object. -/// -+ (DBPAPERListPaperDocsArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsContinueArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsContinueArgs.h deleted file mode 100644 index 5d06ef5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsContinueArgs.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsContinueArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsContinueArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsContinueArgs : NSObject - -#pragma mark - Instance fields - -/// The cursor obtained from `docsList` or `docsListContinue`. Allows for -/// pagination. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor obtained from `docsList` or `docsListContinue`. -/// Allows for pagination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListPaperDocsContinueArgs` struct. -/// -@interface DBPAPERListPaperDocsContinueArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsContinueArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsContinueArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsContinueArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsContinueArgs *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsContinueArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsContinueArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsContinueArgs` object. -/// -+ (DBPAPERListPaperDocsContinueArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsFilterBy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsFilterBy.h deleted file mode 100644 index 7ee189d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsFilterBy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsFilterBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsFilterBy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsFilterBy : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListPaperDocsFilterByTag` enum type represents the possible tag -/// states with which the `DBPAPERListPaperDocsFilterBy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListPaperDocsFilterByTag) { - /// Fetches all Paper doc IDs that the user has ever accessed. - DBPAPERListPaperDocsFilterByDocsAccessed, - - /// Fetches only the Paper doc IDs that the user has created. - DBPAPERListPaperDocsFilterByDocsCreated, - - /// (no description). - DBPAPERListPaperDocsFilterByOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListPaperDocsFilterByTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "docs_accessed". -/// -/// Description of the "docs_accessed" tag state: Fetches all Paper doc IDs that -/// the user has ever accessed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocsAccessed; - -/// -/// Initializes union class with tag state of "docs_created". -/// -/// Description of the "docs_created" tag state: Fetches only the Paper doc IDs -/// that the user has created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocsCreated; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "docs_accessed". -/// -/// @return Whether the union's current tag state has value "docs_accessed". -/// -- (BOOL)isDocsAccessed; - -/// -/// Retrieves whether the union's current tag state has value "docs_created". -/// -/// @return Whether the union's current tag state has value "docs_created". -/// -- (BOOL)isDocsCreated; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListPaperDocsFilterBy` union. -/// -@interface DBPAPERListPaperDocsFilterBySerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsFilterBy` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsFilterBy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsFilterBy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsFilterBy *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsFilterBy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsFilterBy` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsFilterBy` object. -/// -+ (DBPAPERListPaperDocsFilterBy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsResponse.h deleted file mode 100644 index d39439e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsResponse.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; -@class DBPAPERListPaperDocsResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsResponse : NSObject - -#pragma mark - Instance fields - -/// The list of Paper doc IDs that can be used to access the given Paper docs or -/// supplied to other API methods. The list is sorted in the order specified by -/// the initial call to `docsList`. -@property (nonatomic, readonly) NSArray *docIds; - -/// Pass the cursor into `docsListContinue` to paginate through all files. The -/// cursor preserves all properties as specified in the original call to -/// `docsList`. -@property (nonatomic, readonly) DBPAPERCursor *cursor; - -/// Will be set to True if a subsequent call with the provided cursor to -/// `docsListContinue` returns immediately with some results. If set to False -/// please allow some delay before making another call to `docsListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docIds The list of Paper doc IDs that can be used to access the given -/// Paper docs or supplied to other API methods. The list is sorted in the order -/// specified by the initial call to `docsList`. -/// @param cursor Pass the cursor into `docsListContinue` to paginate through -/// all files. The cursor preserves all properties as specified in the original -/// call to `docsList`. -/// @param hasMore Will be set to True if a subsequent call with the provided -/// cursor to `docsListContinue` returns immediately with some results. If set -/// to False please allow some delay before making another call to -/// `docsListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocIds:(NSArray *)docIds cursor:(DBPAPERCursor *)cursor hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListPaperDocsResponse` struct. -/// -@interface DBPAPERListPaperDocsResponseSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsResponse` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsResponse *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsResponse` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsResponse` object. -/// -+ (DBPAPERListPaperDocsResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsSortBy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsSortBy.h deleted file mode 100644 index e8dfa5e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsSortBy.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsSortBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsSortBy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsSortBy : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListPaperDocsSortByTag` enum type represents the possible tag -/// states with which the `DBPAPERListPaperDocsSortBy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListPaperDocsSortByTag) { - /// Sorts the Paper docs by the time they were last accessed. - DBPAPERListPaperDocsSortByAccessed, - - /// Sorts the Paper docs by the time they were last modified. - DBPAPERListPaperDocsSortByModified, - - /// Sorts the Paper docs by the creation time. - DBPAPERListPaperDocsSortByCreated, - - /// (no description). - DBPAPERListPaperDocsSortByOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortByTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "accessed". -/// -/// Description of the "accessed" tag state: Sorts the Paper docs by the time -/// they were last accessed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessed; - -/// -/// Initializes union class with tag state of "modified". -/// -/// Description of the "modified" tag state: Sorts the Paper docs by the time -/// they were last modified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithModified; - -/// -/// Initializes union class with tag state of "created". -/// -/// Description of the "created" tag state: Sorts the Paper docs by the creation -/// time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "accessed". -/// -/// @return Whether the union's current tag state has value "accessed". -/// -- (BOOL)isAccessed; - -/// -/// Retrieves whether the union's current tag state has value "modified". -/// -/// @return Whether the union's current tag state has value "modified". -/// -- (BOOL)isModified; - -/// -/// Retrieves whether the union's current tag state has value "created". -/// -/// @return Whether the union's current tag state has value "created". -/// -- (BOOL)isCreated; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListPaperDocsSortBy` union. -/// -@interface DBPAPERListPaperDocsSortBySerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsSortBy` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsSortBy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortBy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsSortBy *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsSortBy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortBy` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsSortBy` object. -/// -+ (DBPAPERListPaperDocsSortBy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsSortOrder.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsSortOrder.h deleted file mode 100644 index a5918ca5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListPaperDocsSortOrder.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsSortOrder; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsSortOrder` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsSortOrder : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListPaperDocsSortOrderTag` enum type represents the possible tag -/// states with which the `DBPAPERListPaperDocsSortOrder` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListPaperDocsSortOrderTag) { - /// Sorts the search result in ascending order. - DBPAPERListPaperDocsSortOrderAscending, - - /// Sorts the search result in descending order. - DBPAPERListPaperDocsSortOrderDescending, - - /// (no description). - DBPAPERListPaperDocsSortOrderOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortOrderTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "ascending". -/// -/// Description of the "ascending" tag state: Sorts the search result in -/// ascending order. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAscending; - -/// -/// Initializes union class with tag state of "descending". -/// -/// Description of the "descending" tag state: Sorts the search result in -/// descending order. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescending; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "ascending". -/// -/// @return Whether the union's current tag state has value "ascending". -/// -- (BOOL)isAscending; - -/// -/// Retrieves whether the union's current tag state has value "descending". -/// -/// @return Whether the union's current tag state has value "descending". -/// -- (BOOL)isDescending; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListPaperDocsSortOrder` union. -/// -@interface DBPAPERListPaperDocsSortOrderSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsSortOrder` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsSortOrder` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortOrder` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsSortOrder *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsSortOrder` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortOrder` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsSortOrder` object. -/// -+ (DBPAPERListPaperDocsSortOrder *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersCursorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersCursorError.h deleted file mode 100644 index e4645ccc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersCursorError.h +++ /dev/null @@ -1,172 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersCursorError; -@class DBPAPERPaperApiCursorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersCursorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersCursorError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListUsersCursorErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERListUsersCursorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListUsersCursorErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERListUsersCursorErrorInsufficientPermissions, - - /// (no description). - DBPAPERListUsersCursorErrorOther, - - /// The required doc was not found. - DBPAPERListUsersCursorErrorDocNotFound, - - /// (no description). - DBPAPERListUsersCursorErrorCursorError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListUsersCursorErrorTag tag; - -/// (no description). @note Ensure the `isCursorError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBPAPERPaperApiCursorError *cursorError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "doc_not_found". -/// -/// Description of the "doc_not_found" tag state: The required doc was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocNotFound; - -/// -/// Initializes union class with tag state of "cursor_error". -/// -/// @param cursorError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursorError:(DBPAPERPaperApiCursorError *)cursorError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "doc_not_found". -/// -/// @return Whether the union's current tag state has value "doc_not_found". -/// -- (BOOL)isDocNotFound; - -/// -/// Retrieves whether the union's current tag state has value "cursor_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cursorError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "cursor_error". -/// -- (BOOL)isCursorError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListUsersCursorError` union. -/// -@interface DBPAPERListUsersCursorErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersCursorError` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersCursorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersCursorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersCursorError *)instance; - -/// -/// Deserializes `DBPAPERListUsersCursorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersCursorError` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersCursorError` object. -/// -+ (DBPAPERListUsersCursorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderArgs.h deleted file mode 100644 index 5b344a8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderArgs.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnFolderArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnFolderArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnFolderArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// Size limit per batch. The maximum number of users that can be retrieved per -/// batch is 1000. Higher value results in invalid arguments error. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param limit Size limit per batch. The maximum number of users that can be -/// retrieved per batch is 1000. Higher value results in invalid arguments -/// error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param docId The Paper doc ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnFolderArgs` struct. -/// -@interface DBPAPERListUsersOnFolderArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnFolderArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnFolderArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnFolderArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnFolderArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnFolderArgs` object. -/// -+ (DBPAPERListUsersOnFolderArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderContinueArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderContinueArgs.h deleted file mode 100644 index 82f2b572..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderContinueArgs.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnFolderContinueArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnFolderContinueArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnFolderContinueArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The cursor obtained from `docsFolderUsersList` or -/// `docsFolderUsersListContinue`. Allows for pagination. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param cursor The cursor obtained from `docsFolderUsersList` or -/// `docsFolderUsersListContinue`. Allows for pagination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId cursor:(NSString *)cursor; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnFolderContinueArgs` struct. -/// -@interface DBPAPERListUsersOnFolderContinueArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnFolderContinueArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnFolderContinueArgs` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderContinueArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnFolderContinueArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnFolderContinueArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderContinueArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnFolderContinueArgs` -/// object. -/// -+ (DBPAPERListUsersOnFolderContinueArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderResponse.h deleted file mode 100644 index 3cd4e118..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnFolderResponse.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; -@class DBPAPERListUsersOnFolderResponse; -@class DBSHARINGInviteeInfo; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnFolderResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnFolderResponse : NSObject - -#pragma mark - Instance fields - -/// List of email addresses that are invited on the Paper folder. -@property (nonatomic, readonly) NSArray *invitees; - -/// List of users that are invited on the Paper folder. -@property (nonatomic, readonly) NSArray *users; - -/// Pass the cursor into `docsFolderUsersListContinue` to paginate through all -/// users. The cursor preserves all properties as specified in the original call -/// to `docsFolderUsersList`. -@property (nonatomic, readonly) DBPAPERCursor *cursor; - -/// Will be set to True if a subsequent call with the provided cursor to -/// `docsFolderUsersListContinue` returns immediately with some results. If set -/// to False please allow some delay before making another call to -/// `docsFolderUsersListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitees List of email addresses that are invited on the Paper -/// folder. -/// @param users List of users that are invited on the Paper folder. -/// @param cursor Pass the cursor into `docsFolderUsersListContinue` to paginate -/// through all users. The cursor preserves all properties as specified in the -/// original call to `docsFolderUsersList`. -/// @param hasMore Will be set to True if a subsequent call with the provided -/// cursor to `docsFolderUsersListContinue` returns immediately with some -/// results. If set to False please allow some delay before making another call -/// to `docsFolderUsersListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitees:(NSArray *)invitees - users:(NSArray *)users - cursor:(DBPAPERCursor *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnFolderResponse` struct. -/// -@interface DBPAPERListUsersOnFolderResponseSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnFolderResponse` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnFolderResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnFolderResponse *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnFolderResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderResponse` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnFolderResponse` object. -/// -+ (DBPAPERListUsersOnFolderResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocArgs.h deleted file mode 100644 index 0aaebcda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocArgs.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnPaperDocArgs; -@class DBPAPERUserOnPaperDocFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnPaperDocArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnPaperDocArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// Size limit per batch. The maximum number of users that can be retrieved per -/// batch is 1000. Higher value results in invalid arguments error. -@property (nonatomic, readonly) NSNumber *limit; - -/// Specify this attribute if you want to obtain users that have already -/// accessed the Paper doc. -@property (nonatomic, readonly) DBPAPERUserOnPaperDocFilter *filterBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param limit Size limit per batch. The maximum number of users that can be -/// retrieved per batch is 1000. Higher value results in invalid arguments -/// error. -/// @param filterBy Specify this attribute if you want to obtain users that have -/// already accessed the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId - limit:(nullable NSNumber *)limit - filterBy:(nullable DBPAPERUserOnPaperDocFilter *)filterBy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param docId The Paper doc ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnPaperDocArgs` struct. -/// -@interface DBPAPERListUsersOnPaperDocArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnPaperDocArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnPaperDocArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnPaperDocArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnPaperDocArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnPaperDocArgs` object. -/// -+ (DBPAPERListUsersOnPaperDocArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocContinueArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocContinueArgs.h deleted file mode 100644 index 722065b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocContinueArgs.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnPaperDocContinueArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnPaperDocContinueArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnPaperDocContinueArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The cursor obtained from `docsUsersList` or `docsUsersListContinue`. Allows -/// for pagination. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param cursor The cursor obtained from `docsUsersList` or -/// `docsUsersListContinue`. Allows for pagination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId cursor:(NSString *)cursor; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnPaperDocContinueArgs` struct. -/// -@interface DBPAPERListUsersOnPaperDocContinueArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnPaperDocContinueArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnPaperDocContinueArgs` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocContinueArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnPaperDocContinueArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnPaperDocContinueArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocContinueArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnPaperDocContinueArgs` -/// object. -/// -+ (DBPAPERListUsersOnPaperDocContinueArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocResponse.h deleted file mode 100644 index ff8d3db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERListUsersOnPaperDocResponse.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; -@class DBPAPERInviteeInfoWithPermissionLevel; -@class DBPAPERListUsersOnPaperDocResponse; -@class DBPAPERUserInfoWithPermissionLevel; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnPaperDocResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnPaperDocResponse : NSObject - -#pragma mark - Instance fields - -/// List of email addresses with their respective permission levels that are -/// invited on the Paper doc. -@property (nonatomic, readonly) NSArray *invitees; - -/// List of users with their respective permission levels that are invited on -/// the Paper folder. -@property (nonatomic, readonly) NSArray *users; - -/// The Paper doc owner. This field is populated on every single response. -@property (nonatomic, readonly) DBSHARINGUserInfo *docOwner; - -/// Pass the cursor into `docsUsersListContinue` to paginate through all users. -/// The cursor preserves all properties as specified in the original call to -/// `docsUsersList`. -@property (nonatomic, readonly) DBPAPERCursor *cursor; - -/// Will be set to True if a subsequent call with the provided cursor to -/// `docsUsersListContinue` returns immediately with some results. If set to -/// False please allow some delay before making another call to -/// `docsUsersListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitees List of email addresses with their respective permission -/// levels that are invited on the Paper doc. -/// @param users List of users with their respective permission levels that are -/// invited on the Paper folder. -/// @param docOwner The Paper doc owner. This field is populated on every single -/// response. -/// @param cursor Pass the cursor into `docsUsersListContinue` to paginate -/// through all users. The cursor preserves all properties as specified in the -/// original call to `docsUsersList`. -/// @param hasMore Will be set to True if a subsequent call with the provided -/// cursor to `docsUsersListContinue` returns immediately with some results. If -/// set to False please allow some delay before making another call to -/// `docsUsersListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitees:(NSArray *)invitees - users:(NSArray *)users - docOwner:(DBSHARINGUserInfo *)docOwner - cursor:(DBPAPERCursor *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnPaperDocResponse` struct. -/// -@interface DBPAPERListUsersOnPaperDocResponseSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnPaperDocResponse` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnPaperDocResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnPaperDocResponse *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnPaperDocResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocResponse` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnPaperDocResponse` object. -/// -+ (DBPAPERListUsersOnPaperDocResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperApiBaseError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperApiBaseError.h deleted file mode 100644 index 2b30ee1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperApiBaseError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperApiBaseError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperApiBaseError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperApiBaseError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperApiBaseErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperApiBaseError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperApiBaseErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperApiBaseErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperApiBaseErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperApiBaseErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperApiBaseError` union. -/// -@interface DBPAPERPaperApiBaseErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperApiBaseError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperApiBaseError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperApiBaseError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperApiBaseError *)instance; - -/// -/// Deserializes `DBPAPERPaperApiBaseError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperApiBaseError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperApiBaseError` object. -/// -+ (DBPAPERPaperApiBaseError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperApiCursorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperApiCursorError.h deleted file mode 100644 index 08041dc3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperApiCursorError.h +++ /dev/null @@ -1,181 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperApiCursorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperApiCursorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperApiCursorError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperApiCursorErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperApiCursorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperApiCursorErrorTag) { - /// The provided cursor is expired. - DBPAPERPaperApiCursorErrorExpiredCursor, - - /// The provided cursor is invalid. - DBPAPERPaperApiCursorErrorInvalidCursor, - - /// The provided cursor contains invalid user. - DBPAPERPaperApiCursorErrorWrongUserInCursor, - - /// Indicates that the cursor has been invalidated. Call the corresponding - /// non-continue endpoint to obtain a new cursor. - DBPAPERPaperApiCursorErrorReset, - - /// (no description). - DBPAPERPaperApiCursorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperApiCursorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "expired_cursor". -/// -/// Description of the "expired_cursor" tag state: The provided cursor is -/// expired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExpiredCursor; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The provided cursor is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "wrong_user_in_cursor". -/// -/// Description of the "wrong_user_in_cursor" tag state: The provided cursor -/// contains invalid user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWrongUserInCursor; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call the corresponding non-continue endpoint to obtain a new -/// cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "expired_cursor". -/// -/// @return Whether the union's current tag state has value "expired_cursor". -/// -- (BOOL)isExpiredCursor; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value -/// "wrong_user_in_cursor". -/// -/// @return Whether the union's current tag state has value -/// "wrong_user_in_cursor". -/// -- (BOOL)isWrongUserInCursor; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperApiCursorError` union. -/// -@interface DBPAPERPaperApiCursorErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperApiCursorError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperApiCursorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperApiCursorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperApiCursorError *)instance; - -/// -/// Deserializes `DBPAPERPaperApiCursorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperApiCursorError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperApiCursorError` object. -/// -+ (DBPAPERPaperApiCursorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateArgs.h deleted file mode 100644 index 1cc9e681..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateArgs.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERImportFormat; -@class DBPAPERPaperDocCreateArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocCreateArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocCreateArgs : NSObject - -#pragma mark - Instance fields - -/// The Paper folder ID where the Paper document should be created. The API user -/// has to have write access to this folder or error is thrown. -@property (nonatomic, readonly, copy, nullable) NSString *parentFolderId; - -/// The format of provided data. -@property (nonatomic, readonly) DBPAPERImportFormat *importFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param importFormat The format of provided data. -/// @param parentFolderId The Paper folder ID where the Paper document should be -/// created. The API user has to have write access to this folder or error is -/// thrown. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImportFormat:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param importFormat The format of provided data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImportFormat:(DBPAPERImportFormat *)importFormat; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocCreateArgs` struct. -/// -@interface DBPAPERPaperDocCreateArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocCreateArgs` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocCreateArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocCreateArgs *)instance; - -/// -/// Deserializes `DBPAPERPaperDocCreateArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateArgs` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocCreateArgs` object. -/// -+ (DBPAPERPaperDocCreateArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateError.h deleted file mode 100644 index 698d0750..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateError.h +++ /dev/null @@ -1,214 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocCreateErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperDocCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocCreateErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperDocCreateErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperDocCreateErrorOther, - - /// The provided content was malformed and cannot be imported to Paper. - DBPAPERPaperDocCreateErrorContentMalformed, - - /// The specified Paper folder is cannot be found. - DBPAPERPaperDocCreateErrorFolderNotFound, - - /// The newly created Paper doc would be too large. Please split the content - /// into multiple docs. - DBPAPERPaperDocCreateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBPAPERPaperDocCreateErrorImageSizeExceeded, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "folder_not_found". -/// -/// Description of the "folder_not_found" tag state: The specified Paper folder -/// is cannot be found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNotFound; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The newly created Paper -/// doc would be too large. Please split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_not_found". -/// -/// @return Whether the union's current tag state has value "folder_not_found". -/// -- (BOOL)isFolderNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocCreateError` union. -/// -@interface DBPAPERPaperDocCreateErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocCreateError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocCreateError *)instance; - -/// -/// Deserializes `DBPAPERPaperDocCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocCreateError` object. -/// -+ (DBPAPERPaperDocCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateUpdateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateUpdateResult.h deleted file mode 100644 index d9c06d09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocCreateUpdateResult.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocCreateUpdateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocCreateUpdateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocCreateUpdateResult : NSObject - -#pragma mark - Instance fields - -/// Doc ID of the newly created doc. -@property (nonatomic, readonly, copy) NSString *docId; - -/// The Paper doc revision. Simply an ever increasing number. -@property (nonatomic, readonly) NSNumber *revision; - -/// The Paper doc title. -@property (nonatomic, readonly, copy) NSString *title; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId Doc ID of the newly created doc. -/// @param revision The Paper doc revision. Simply an ever increasing number. -/// @param title The Paper doc title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId revision:(NSNumber *)revision title:(NSString *)title; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocCreateUpdateResult` struct. -/// -@interface DBPAPERPaperDocCreateUpdateResultSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocCreateUpdateResult` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocCreateUpdateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateUpdateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocCreateUpdateResult *)instance; - -/// -/// Deserializes `DBPAPERPaperDocCreateUpdateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateUpdateResult` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocCreateUpdateResult` object. -/// -+ (DBPAPERPaperDocCreateUpdateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocExport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocExport.h deleted file mode 100644 index 3c5d4279..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocExport.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERExportFormat; -@class DBPAPERPaperDocExport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocExport` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocExport : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBPAPERExportFormat *exportFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param exportFormat (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId exportFormat:(DBPAPERExportFormat *)exportFormat; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocExport` struct. -/// -@interface DBPAPERPaperDocExportSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocExport` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocExport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocExport *)instance; - -/// -/// Deserializes `DBPAPERPaperDocExport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExport` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocExport` object. -/// -+ (DBPAPERPaperDocExport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocExportResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocExportResult.h deleted file mode 100644 index 8a21313d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocExportResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocExportResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocExportResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocExportResult : NSObject - -#pragma mark - Instance fields - -/// The Paper doc owner's email address. -@property (nonatomic, readonly, copy) NSString *owner; - -/// The Paper doc title. -@property (nonatomic, readonly, copy) NSString *title; - -/// The Paper doc revision. Simply an ever increasing number. -@property (nonatomic, readonly) NSNumber *revision; - -/// MIME type of the export. This corresponds to ExportFormat specified in the -/// request. -@property (nonatomic, readonly, copy) NSString *mimeType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param owner The Paper doc owner's email address. -/// @param title The Paper doc title. -/// @param revision The Paper doc revision. Simply an ever increasing number. -/// @param mimeType MIME type of the export. This corresponds to ExportFormat -/// specified in the request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner:(NSString *)owner - title:(NSString *)title - revision:(NSNumber *)revision - mimeType:(NSString *)mimeType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocExportResult` struct. -/// -@interface DBPAPERPaperDocExportResultSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocExportResult` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocExportResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExportResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocExportResult *)instance; - -/// -/// Deserializes `DBPAPERPaperDocExportResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExportResult` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocExportResult` object. -/// -+ (DBPAPERPaperDocExportResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocPermissionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocPermissionLevel.h deleted file mode 100644 index 1fd0e599..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocPermissionLevel.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocPermissionLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocPermissionLevel` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocPermissionLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocPermissionLevelTag` enum type represents the possible -/// tag states with which the `DBPAPERPaperDocPermissionLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocPermissionLevelTag) { - /// User will be granted edit permissions. - DBPAPERPaperDocPermissionLevelEdit, - - /// User will be granted view and comment permissions. - DBPAPERPaperDocPermissionLevelViewAndComment, - - /// (no description). - DBPAPERPaperDocPermissionLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "edit". -/// -/// Description of the "edit" tag state: User will be granted edit permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEdit; - -/// -/// Initializes union class with tag state of "view_and_comment". -/// -/// Description of the "view_and_comment" tag state: User will be granted view -/// and comment permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewAndComment; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "edit". -/// -/// @return Whether the union's current tag state has value "edit". -/// -- (BOOL)isEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "view_and_comment". -/// -/// @return Whether the union's current tag state has value "view_and_comment". -/// -- (BOOL)isViewAndComment; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocPermissionLevel` union. -/// -@interface DBPAPERPaperDocPermissionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocPermissionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocPermissionLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocPermissionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocPermissionLevel *)instance; - -/// -/// Deserializes `DBPAPERPaperDocPermissionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocPermissionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocPermissionLevel` object. -/// -+ (DBPAPERPaperDocPermissionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocSharingPolicy.h deleted file mode 100644 index e0753c6c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocSharingPolicy.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocSharingPolicy; -@class DBPAPERSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocSharingPolicy` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocSharingPolicy : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The default sharing policy to be set for the Paper doc. -@property (nonatomic, readonly) DBPAPERSharingPolicy *sharingPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param sharingPolicy The default sharing policy to be set for the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId sharingPolicy:(DBPAPERSharingPolicy *)sharingPolicy; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocSharingPolicy` struct. -/// -@interface DBPAPERPaperDocSharingPolicySerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocSharingPolicy` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocSharingPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocSharingPolicy *)instance; - -/// -/// Deserializes `DBPAPERPaperDocSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocSharingPolicy` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocSharingPolicy` object. -/// -+ (DBPAPERPaperDocSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdateArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdateArgs.h deleted file mode 100644 index e53b1d9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdateArgs.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERImportFormat; -@class DBPAPERPaperDocUpdateArgs; -@class DBPAPERPaperDocUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdateArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocUpdateArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The policy used for the current update call. -@property (nonatomic, readonly) DBPAPERPaperDocUpdatePolicy *docUpdatePolicy; - -/// The latest doc revision. This value must match the head revision or an error -/// code will be returned. This is to prevent colliding writes. -@property (nonatomic, readonly) NSNumber *revision; - -/// The format of provided data. -@property (nonatomic, readonly) DBPAPERImportFormat *importFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head -/// revision or an error code will be returned. This is to prevent colliding -/// writes. -/// @param importFormat The format of provided data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUpdateArgs` struct. -/// -@interface DBPAPERPaperDocUpdateArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocUpdateArgs` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocUpdateArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocUpdateArgs *)instance; - -/// -/// Deserializes `DBPAPERPaperDocUpdateArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateArgs` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocUpdateArgs` object. -/// -+ (DBPAPERPaperDocUpdateArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdateError.h deleted file mode 100644 index 5bf354b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdateError.h +++ /dev/null @@ -1,274 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocUpdateErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperDocUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocUpdateErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperDocUpdateErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperDocUpdateErrorOther, - - /// The required doc was not found. - DBPAPERPaperDocUpdateErrorDocNotFound, - - /// The provided content was malformed and cannot be imported to Paper. - DBPAPERPaperDocUpdateErrorContentMalformed, - - /// The provided revision does not match the document head. - DBPAPERPaperDocUpdateErrorRevisionMismatch, - - /// The newly created Paper doc would be too large, split the content into - /// multiple docs. - DBPAPERPaperDocUpdateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBPAPERPaperDocUpdateErrorImageSizeExceeded, - - /// This operation is not allowed on archived Paper docs. - DBPAPERPaperDocUpdateErrorDocArchived, - - /// This operation is not allowed on deleted Paper docs. - DBPAPERPaperDocUpdateErrorDocDeleted, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "doc_not_found". -/// -/// Description of the "doc_not_found" tag state: The required doc was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocNotFound; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "revision_mismatch". -/// -/// Description of the "revision_mismatch" tag state: The provided revision does -/// not match the document head. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevisionMismatch; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The newly created Paper -/// doc would be too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "doc_archived". -/// -/// Description of the "doc_archived" tag state: This operation is not allowed -/// on archived Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocArchived; - -/// -/// Initializes union class with tag state of "doc_deleted". -/// -/// Description of the "doc_deleted" tag state: This operation is not allowed on -/// deleted Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocDeleted; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "doc_not_found". -/// -/// @return Whether the union's current tag state has value "doc_not_found". -/// -- (BOOL)isDocNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "revision_mismatch". -/// -/// @return Whether the union's current tag state has value "revision_mismatch". -/// -- (BOOL)isRevisionMismatch; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "doc_archived". -/// -/// @return Whether the union's current tag state has value "doc_archived". -/// -- (BOOL)isDocArchived; - -/// -/// Retrieves whether the union's current tag state has value "doc_deleted". -/// -/// @return Whether the union's current tag state has value "doc_deleted". -/// -- (BOOL)isDocDeleted; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocUpdateError` union. -/// -@interface DBPAPERPaperDocUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocUpdateError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocUpdateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocUpdateError *)instance; - -/// -/// Deserializes `DBPAPERPaperDocUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocUpdateError` object. -/// -+ (DBPAPERPaperDocUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdatePolicy.h deleted file mode 100644 index 9f057496..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperDocUpdatePolicy.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdatePolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocUpdatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocUpdatePolicyTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperDocUpdatePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocUpdatePolicyTag) { - /// The content will be appended to the doc. - DBPAPERPaperDocUpdatePolicyAppend, - - /// The content will be prepended to the doc. The doc title will not be - /// affected. - DBPAPERPaperDocUpdatePolicyPrepend, - - /// The document will be overwitten at the head with the provided content. - DBPAPERPaperDocUpdatePolicyOverwriteAll, - - /// (no description). - DBPAPERPaperDocUpdatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocUpdatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "append". -/// -/// Description of the "append" tag state: The content will be appended to the -/// doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppend; - -/// -/// Initializes union class with tag state of "prepend". -/// -/// Description of the "prepend" tag state: The content will be prepended to the -/// doc. The doc title will not be affected. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrepend; - -/// -/// Initializes union class with tag state of "overwrite_all". -/// -/// Description of the "overwrite_all" tag state: The document will be -/// overwitten at the head with the provided content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverwriteAll; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "append". -/// -/// @return Whether the union's current tag state has value "append". -/// -- (BOOL)isAppend; - -/// -/// Retrieves whether the union's current tag state has value "prepend". -/// -/// @return Whether the union's current tag state has value "prepend". -/// -- (BOOL)isPrepend; - -/// -/// Retrieves whether the union's current tag state has value "overwrite_all". -/// -/// @return Whether the union's current tag state has value "overwrite_all". -/// -- (BOOL)isOverwriteAll; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocUpdatePolicy` union. -/// -@interface DBPAPERPaperDocUpdatePolicySerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocUpdatePolicy` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocUpdatePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocUpdatePolicy *)instance; - -/// -/// Deserializes `DBPAPERPaperDocUpdatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdatePolicy` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocUpdatePolicy` object. -/// -+ (DBPAPERPaperDocUpdatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateArg.h deleted file mode 100644 index b31e7470..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateArg.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperFolderCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperFolderCreateArg : NSObject - -#pragma mark - Instance fields - -/// The name of the new Paper folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The encrypted Paper folder Id where the new Paper folder should be created. -/// The API user has to have write access to this folder or error is thrown. If -/// not supplied, the new folder will be created at top level. -@property (nonatomic, readonly, copy, nullable) NSString *parentFolderId; - -/// Whether the folder to be created should be a team folder. This value will be -/// ignored if parent_folder_id is supplied, as the new folder will inherit the -/// type (private or team folder) from its parent. We will by default create a -/// top-level private folder if both parent_folder_id and is_team_folder are not -/// supplied. -@property (nonatomic, readonly, nullable) NSNumber *isTeamFolder; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of the new Paper folder. -/// @param parentFolderId The encrypted Paper folder Id where the new Paper -/// folder should be created. The API user has to have write access to this -/// folder or error is thrown. If not supplied, the new folder will be created -/// at top level. -/// @param isTeamFolder Whether the folder to be created should be a team -/// folder. This value will be ignored if parent_folder_id is supplied, as the -/// new folder will inherit the type (private or team folder) from its parent. -/// We will by default create a top-level private folder if both -/// parent_folder_id and is_team_folder are not supplied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - parentFolderId:(nullable NSString *)parentFolderId - isTeamFolder:(nullable NSNumber *)isTeamFolder; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The name of the new Paper folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderCreateArg` struct. -/// -@interface DBPAPERPaperFolderCreateArgSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperFolderCreateArg` instances. -/// -/// @param instance An instance of the `DBPAPERPaperFolderCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperFolderCreateArg *)instance; - -/// -/// Deserializes `DBPAPERPaperFolderCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateArg` API object. -/// -/// @return An instantiation of the `DBPAPERPaperFolderCreateArg` object. -/// -+ (DBPAPERPaperFolderCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateError.h deleted file mode 100644 index e4b6bf3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateError.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperFolderCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperFolderCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperFolderCreateErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperFolderCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperFolderCreateErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperFolderCreateErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperFolderCreateErrorOther, - - /// The specified parent Paper folder cannot be found. - DBPAPERPaperFolderCreateErrorFolderNotFound, - - /// The folder id cannot be decrypted to valid folder id. - DBPAPERPaperFolderCreateErrorInvalidFolderId, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperFolderCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "folder_not_found". -/// -/// Description of the "folder_not_found" tag state: The specified parent Paper -/// folder cannot be found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNotFound; - -/// -/// Initializes union class with tag state of "invalid_folder_id". -/// -/// Description of the "invalid_folder_id" tag state: The folder id cannot be -/// decrypted to valid folder id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_not_found". -/// -/// @return Whether the union's current tag state has value "folder_not_found". -/// -- (BOOL)isFolderNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_folder_id". -/// -/// @return Whether the union's current tag state has value "invalid_folder_id". -/// -- (BOOL)isInvalidFolderId; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperFolderCreateError` union. -/// -@interface DBPAPERPaperFolderCreateErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperFolderCreateError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperFolderCreateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperFolderCreateError *)instance; - -/// -/// Deserializes `DBPAPERPaperFolderCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperFolderCreateError` object. -/// -+ (DBPAPERPaperFolderCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateResult.h deleted file mode 100644 index bf15c7f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERPaperFolderCreateResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperFolderCreateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderCreateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperFolderCreateResult : NSObject - -#pragma mark - Instance fields - -/// Folder ID of the newly created folder. -@property (nonatomic, readonly, copy) NSString *folderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderId Folder ID of the newly created folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderId:(NSString *)folderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderCreateResult` struct. -/// -@interface DBPAPERPaperFolderCreateResultSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperFolderCreateResult` instances. -/// -/// @param instance An instance of the `DBPAPERPaperFolderCreateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperFolderCreateResult *)instance; - -/// -/// Deserializes `DBPAPERPaperFolderCreateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateResult` API object. -/// -/// @return An instantiation of the `DBPAPERPaperFolderCreateResult` object. -/// -+ (DBPAPERPaperFolderCreateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRefPaperDoc.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRefPaperDoc.h deleted file mode 100644 index 837d73e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRefPaperDoc.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERRefPaperDoc; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RefPaperDoc` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERRefPaperDoc : NSObject - -#pragma mark - Instance fields - -/// The Paper doc ID. -@property (nonatomic, readonly, copy) NSString *docId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RefPaperDoc` struct. -/// -@interface DBPAPERRefPaperDocSerializer : NSObject - -/// -/// Serializes `DBPAPERRefPaperDoc` instances. -/// -/// @param instance An instance of the `DBPAPERRefPaperDoc` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERRefPaperDoc` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERRefPaperDoc *)instance; - -/// -/// Deserializes `DBPAPERRefPaperDoc` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERRefPaperDoc` API object. -/// -/// @return An instantiation of the `DBPAPERRefPaperDoc` object. -/// -+ (DBPAPERRefPaperDoc *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRemovePaperDocUser.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRemovePaperDocUser.h deleted file mode 100644 index 33f72aad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRemovePaperDocUser.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERRemovePaperDocUser; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovePaperDocUser` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERRemovePaperDocUser : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// User which should be removed from the Paper doc. Specify only email address -/// or Dropbox account ID. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param member User which should be removed from the Paper doc. Specify only -/// email address or Dropbox account ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId member:(DBSHARINGMemberSelector *)member; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemovePaperDocUser` struct. -/// -@interface DBPAPERRemovePaperDocUserSerializer : NSObject - -/// -/// Serializes `DBPAPERRemovePaperDocUser` instances. -/// -/// @param instance An instance of the `DBPAPERRemovePaperDocUser` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERRemovePaperDocUser` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERRemovePaperDocUser *)instance; - -/// -/// Deserializes `DBPAPERRemovePaperDocUser` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERRemovePaperDocUser` API object. -/// -/// @return An instantiation of the `DBPAPERRemovePaperDocUser` object. -/// -+ (DBPAPERRemovePaperDocUser *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRouteObjects.h deleted file mode 100644 index baeac4bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERRouteObjects.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Paper namespace. Each route in the Paper -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBPAPERRouteObjects : NSObject - -/// Accessor method for the docsArchive route object. -+ (DBRoute *)DBPAPERDocsArchive; - -/// Accessor method for the docsCreate route object. -+ (DBRoute *)DBPAPERDocsCreate; - -/// Accessor method for the docsDownload route object. -+ (DBRoute *)DBPAPERDocsDownload; - -/// Accessor method for the docsFolderUsersList route object. -+ (DBRoute *)DBPAPERDocsFolderUsersList; - -/// Accessor method for the docsFolderUsersListContinue route object. -+ (DBRoute *)DBPAPERDocsFolderUsersListContinue; - -/// Accessor method for the docsGetFolderInfo route object. -+ (DBRoute *)DBPAPERDocsGetFolderInfo; - -/// Accessor method for the docsList route object. -+ (DBRoute *)DBPAPERDocsList; - -/// Accessor method for the docsListContinue route object. -+ (DBRoute *)DBPAPERDocsListContinue; - -/// Accessor method for the docsPermanentlyDelete route object. -+ (DBRoute *)DBPAPERDocsPermanentlyDelete; - -/// Accessor method for the docsSharingPolicyGet route object. -+ (DBRoute *)DBPAPERDocsSharingPolicyGet; - -/// Accessor method for the docsSharingPolicySet route object. -+ (DBRoute *)DBPAPERDocsSharingPolicySet; - -/// Accessor method for the docsUpdate route object. -+ (DBRoute *)DBPAPERDocsUpdate; - -/// Accessor method for the docsUsersAdd route object. -+ (DBRoute *)DBPAPERDocsUsersAdd; - -/// Accessor method for the docsUsersList route object. -+ (DBRoute *)DBPAPERDocsUsersList; - -/// Accessor method for the docsUsersListContinue route object. -+ (DBRoute *)DBPAPERDocsUsersListContinue; - -/// Accessor method for the docsUsersRemove route object. -+ (DBRoute *)DBPAPERDocsUsersRemove; - -/// Accessor method for the foldersCreate route object. -+ (DBRoute *)DBPAPERFoldersCreate; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingPolicy.h deleted file mode 100644 index 13086e0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingPolicy.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERSharingPolicy; -@class DBPAPERSharingPublicPolicyType; -@class DBPAPERSharingTeamPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingPolicy` struct. -/// -/// Sharing policy of Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERSharingPolicy : NSObject - -#pragma mark - Instance fields - -/// This value applies to the non-team members. -@property (nonatomic, readonly, nullable) DBPAPERSharingPublicPolicyType *publicSharingPolicy; - -/// This value applies to the team members only. The value is null for all -/// personal accounts. -@property (nonatomic, readonly, nullable) DBPAPERSharingTeamPolicyType *teamSharingPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param publicSharingPolicy This value applies to the non-team members. -/// @param teamSharingPolicy This value applies to the team members only. The -/// value is null for all personal accounts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublicSharingPolicy:(nullable DBPAPERSharingPublicPolicyType *)publicSharingPolicy - teamSharingPolicy:(nullable DBPAPERSharingTeamPolicyType *)teamSharingPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingPolicy` struct. -/// -@interface DBPAPERSharingPolicySerializer : NSObject - -/// -/// Serializes `DBPAPERSharingPolicy` instances. -/// -/// @param instance An instance of the `DBPAPERSharingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERSharingPolicy *)instance; - -/// -/// Deserializes `DBPAPERSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERSharingPolicy` API object. -/// -/// @return An instantiation of the `DBPAPERSharingPolicy` object. -/// -+ (DBPAPERSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingPublicPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingPublicPolicyType.h deleted file mode 100644 index 8abb8133..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingPublicPolicyType.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERSharingPublicPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingPublicPolicyType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERSharingPublicPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERSharingPublicPolicyTypeTag` enum type represents the possible -/// tag states with which the `DBPAPERSharingPublicPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERSharingPublicPolicyTypeTag) { - /// Users who have a link to this doc can edit it. - DBPAPERSharingPublicPolicyTypePeopleWithLinkCanEdit, - - /// Users who have a link to this doc can view and comment on it. - DBPAPERSharingPublicPolicyTypePeopleWithLinkCanViewAndComment, - - /// Users must be explicitly invited to this doc. - DBPAPERSharingPublicPolicyTypeInviteOnly, - - /// Value used to indicate that doc sharing is enabled only within team. - DBPAPERSharingPublicPolicyTypeDisabled, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERSharingPublicPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "people_with_link_can_edit". -/// -/// Description of the "people_with_link_can_edit" tag state: Users who have a -/// link to this doc can edit it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanEdit; - -/// -/// Initializes union class with tag state of -/// "people_with_link_can_view_and_comment". -/// -/// Description of the "people_with_link_can_view_and_comment" tag state: Users -/// who have a link to this doc can view and comment on it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanViewAndComment; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Users must be explicitly invited -/// to this doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Value used to indicate that doc -/// sharing is enabled only within team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -- (BOOL)isPeopleWithLinkCanEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -- (BOOL)isPeopleWithLinkCanViewAndComment; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERSharingPublicPolicyType` union. -/// -@interface DBPAPERSharingPublicPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBPAPERSharingPublicPolicyType` instances. -/// -/// @param instance An instance of the `DBPAPERSharingPublicPolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERSharingPublicPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERSharingPublicPolicyType *)instance; - -/// -/// Deserializes `DBPAPERSharingPublicPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERSharingPublicPolicyType` API object. -/// -/// @return An instantiation of the `DBPAPERSharingPublicPolicyType` object. -/// -+ (DBPAPERSharingPublicPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingTeamPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingTeamPolicyType.h deleted file mode 100644 index 4ecdfddd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERSharingTeamPolicyType.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERSharingTeamPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingTeamPolicyType` union. -/// -/// The sharing policy type of the Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERSharingTeamPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERSharingTeamPolicyTypeTag` enum type represents the possible tag -/// states with which the `DBPAPERSharingTeamPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERSharingTeamPolicyTypeTag) { - /// Users who have a link to this doc can edit it. - DBPAPERSharingTeamPolicyTypePeopleWithLinkCanEdit, - - /// Users who have a link to this doc can view and comment on it. - DBPAPERSharingTeamPolicyTypePeopleWithLinkCanViewAndComment, - - /// Users must be explicitly invited to this doc. - DBPAPERSharingTeamPolicyTypeInviteOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERSharingTeamPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "people_with_link_can_edit". -/// -/// Description of the "people_with_link_can_edit" tag state: Users who have a -/// link to this doc can edit it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanEdit; - -/// -/// Initializes union class with tag state of -/// "people_with_link_can_view_and_comment". -/// -/// Description of the "people_with_link_can_view_and_comment" tag state: Users -/// who have a link to this doc can view and comment on it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanViewAndComment; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Users must be explicitly invited -/// to this doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -- (BOOL)isPeopleWithLinkCanEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -- (BOOL)isPeopleWithLinkCanViewAndComment; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERSharingTeamPolicyType` union. -/// -@interface DBPAPERSharingTeamPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBPAPERSharingTeamPolicyType` instances. -/// -/// @param instance An instance of the `DBPAPERSharingTeamPolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERSharingTeamPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERSharingTeamPolicyType *)instance; - -/// -/// Deserializes `DBPAPERSharingTeamPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERSharingTeamPolicyType` API object. -/// -/// @return An instantiation of the `DBPAPERSharingTeamPolicyType` object. -/// -+ (DBPAPERSharingTeamPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserAuthRoutes.h deleted file mode 100644 index a84cd05e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserAuthRoutes.h +++ /dev/null @@ -1,664 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBNilObject; -@class DBPAPERAddMember; -@class DBPAPERAddPaperDocUserMemberResult; -@class DBPAPERAddPaperDocUserResult; -@class DBPAPERCursor; -@class DBPAPERDocLookupError; -@class DBPAPERExportFormat; -@class DBPAPERFolder; -@class DBPAPERFolderSharingPolicyType; -@class DBPAPERFoldersContainingPaperDoc; -@class DBPAPERImportFormat; -@class DBPAPERInviteeInfoWithPermissionLevel; -@class DBPAPERListDocsCursorError; -@class DBPAPERListPaperDocsFilterBy; -@class DBPAPERListPaperDocsResponse; -@class DBPAPERListPaperDocsSortBy; -@class DBPAPERListPaperDocsSortOrder; -@class DBPAPERListUsersCursorError; -@class DBPAPERListUsersOnFolderResponse; -@class DBPAPERListUsersOnPaperDocResponse; -@class DBPAPERPaperApiCursorError; -@class DBPAPERPaperDocCreateError; -@class DBPAPERPaperDocCreateUpdateResult; -@class DBPAPERPaperDocExportResult; -@class DBPAPERPaperDocPermissionLevel; -@class DBPAPERPaperDocUpdateError; -@class DBPAPERPaperDocUpdatePolicy; -@class DBPAPERPaperFolderCreateError; -@class DBPAPERPaperFolderCreateResult; -@class DBPAPERSharingPolicy; -@class DBPAPERSharingPublicPolicyType; -@class DBPAPERSharingTeamPolicyType; -@class DBPAPERUserInfoWithPermissionLevel; -@class DBPAPERUserOnPaperDocFilter; -@class DBSHARINGInviteeInfo; -@class DBSHARINGMemberSelector; -@class DBSHARINGUserInfo; - -@protocol DBTransportClient; - -/// -/// Routes for the `Paper` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBPAPERUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBPAPERUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// DEPRECATED: Marks the given Paper doc as archived. This action can be performed or undone by anyone with edit -/// permissions to the doc. Note that this endpoint will continue to work for content created by users on the older -/// version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. This endpoint will be retired -/// in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsArchive:(NSString *)docId - __deprecated_msg("docsArchive is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param importFormat The format of provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateUrl:(DBPAPERImportFormat *)importFormat - inputUrl:(NSString *)inputUrl __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param parentFolderId The Paper folder ID where the Paper document should be created. The API user has to have write -/// access to this folder or error is thrown. -/// @param importFormat The format of provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateUrl:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId - inputUrl:(NSString *)inputUrl __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param importFormat The format of provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateData:(DBPAPERImportFormat *)importFormat - inputData:(NSData *)inputData __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param parentFolderId The Paper folder ID where the Paper document should be created. The API user has to have write -/// access to this folder or error is thrown. -/// @param importFormat The format of provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateData:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId - inputData:(NSData *)inputData __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param importFormat The format of provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateStream:(DBPAPERImportFormat *)importFormat - inputStream:(NSInputStream *)inputStream __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param parentFolderId The Paper folder ID where the Paper document should be created. The API user has to have write -/// access to this folder or error is thrown. -/// @param importFormat The format of provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateStream:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId - inputStream:(NSInputStream *)inputStream __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadUrlTask *) - docsDownloadUrl:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadUrlTask *) - docsDownloadUrl:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadDataTask *) - docsDownloadData:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadDataTask *) - docsDownloadData:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Lists the users who are explicitly invited to the Paper folder in which the Paper doc is contained. For -/// private folders all users (including owner) shared on the folder are listed and for team folders all non-team users -/// shared on the folder are returned. Note that this endpoint will continue to work for content created by users on the -/// older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper Migration -/// Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnFolderResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsFolderUsersList:(NSString *)docId - __deprecated_msg("docsFolderUsersList is deprecated."); - -/// -/// DEPRECATED: Lists the users who are explicitly invited to the Paper folder in which the Paper doc is contained. For -/// private folders all users (including owner) shared on the folder are listed and for team folders all non-team users -/// shared on the folder are returned. Note that this endpoint will continue to work for content created by users on the -/// older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper Migration -/// Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param limit Size limit per batch. The maximum number of users that can be retrieved per batch is 1000. Higher value -/// results in invalid arguments error. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnFolderResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsFolderUsersList:(NSString *)docId - limit: - (nullable NSNumber *)limit - __deprecated_msg("docsFolderUsersList is deprecated."); - -/// -/// DEPRECATED: Once a cursor has been retrieved from `docsFolderUsersList`, use this to paginate through all users on -/// the Paper folder. Note that this endpoint will continue to work for content created by users on the older version of -/// Paper. To check which version of Paper a user is on, use /users/features/get_values. If the paper_as_files feature -/// is enabled, then the user is running the new version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param cursor The cursor obtained from `docsFolderUsersList` or `docsFolderUsersListContinue`. Allows for -/// pagination. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnFolderResponse` object on -/// success or a `DBPAPERListUsersCursorError` object on failure. -/// -- (DBRpcTask *) - docsFolderUsersListContinue:(NSString *)docId - cursor:(NSString *)cursor __deprecated_msg("docsFolderUsersListContinue is deprecated."); - -/// -/// DEPRECATED: Retrieves folder information for the given Paper doc. This includes: - folder sharing policy; -/// permissions for subfolders are set by the top-level folder. - full 'filepath', i.e. the list of folders (both -/// folderId and folderName) from the root folder to the folder directly containing the Paper doc. If the Paper doc -/// is not in any folder (aka unfiled) the response will be empty. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERFoldersContainingPaperDoc` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsGetFolderInfo:(NSString *)docId - __deprecated_msg("docsGetFolderInfo is deprecated."); - -/// -/// DEPRECATED: Return the list of all Paper docs according to the argument specifications. To iterate over through the -/// full pagination, pass the cursor to `docsListContinue`. Note that this endpoint will continue to work for content -/// created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListPaperDocsResponse` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)docsList __deprecated_msg("docsList is deprecated."); - -/// -/// DEPRECATED: Return the list of all Paper docs according to the argument specifications. To iterate over through the -/// full pagination, pass the cursor to `docsListContinue`. Note that this endpoint will continue to work for content -/// created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param filterBy Allows user to specify how the Paper docs should be filtered. -/// @param sortBy Allows user to specify how the Paper docs should be sorted. -/// @param sortOrder Allows user to specify the sort order of the result. -/// @param limit Size limit per batch. The maximum number of docs that can be retrieved per batch is 1000. Higher value -/// results in invalid arguments error. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListPaperDocsResponse` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)docsList:(nullable DBPAPERListPaperDocsFilterBy *)filterBy - sortBy:(nullable DBPAPERListPaperDocsSortBy *)sortBy - sortOrder: - (nullable DBPAPERListPaperDocsSortOrder *)sortOrder - limit:(nullable NSNumber *)limit - __deprecated_msg("docsList is deprecated."); - -/// -/// DEPRECATED: Once a cursor has been retrieved from `docsList`, use this to paginate through all Paper doc. Note that -/// this endpoint will continue to work for content created by users on the older version of Paper. To check which -/// version of Paper a user is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the -/// user is running the new version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param cursor The cursor obtained from `docsList` or `docsListContinue`. Allows for pagination. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListPaperDocsResponse` object on success or -/// a `DBPAPERListDocsCursorError` object on failure. -/// -- (DBRpcTask *)docsListContinue:(NSString *)cursor - __deprecated_msg("docsListContinue is deprecated."); - -/// -/// DEPRECATED: Permanently deletes the given Paper doc. This operation is final as the doc cannot be recovered. This -/// action can be performed only by the doc owner. Note that this endpoint will continue to work for content created by -/// users on the older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. -/// If the paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper -/// Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsPermanentlyDelete:(NSString *)docId - __deprecated_msg("docsPermanentlyDelete is deprecated."); - -/// -/// DEPRECATED: Gets the default sharing policy for the given Paper doc. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERSharingPolicy` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsSharingPolicyGet:(NSString *)docId - __deprecated_msg("docsSharingPolicyGet is deprecated."); - -/// -/// DEPRECATED: Sets the default sharing policy for the given Paper doc. The default 'team_sharing_policy' can be -/// changed only by teams, omit this field for personal accounts. The 'public_sharing_policy' policy can't be set to the -/// value 'disabled' because this setting can be changed only via the team admin console. Note that this endpoint will -/// continue to work for content created by users on the older version of Paper. To check which version of Paper a user -/// is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new -/// version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param sharingPolicy The default sharing policy to be set for the Paper doc. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsSharingPolicySet:(NSString *)docId - sharingPolicy:(DBPAPERSharingPolicy *)sharingPolicy - __deprecated_msg("docsSharingPolicySet is deprecated."); - -/// -/// DEPRECATED: Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head revision or an error code will be returned. -/// This is to prevent colliding writes. -/// @param importFormat The format of provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocUpdateError` object on failure. -/// -- (DBUploadTask *) - docsUpdateUrl:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat - inputUrl:(NSString *)inputUrl __deprecated_msg("docsUpdate is deprecated."); - -/// -/// DEPRECATED: Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head revision or an error code will be returned. -/// This is to prevent colliding writes. -/// @param importFormat The format of provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocUpdateError` object on failure. -/// -- (DBUploadTask *) - docsUpdateData:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat - inputData:(NSData *)inputData __deprecated_msg("docsUpdate is deprecated."); - -/// -/// DEPRECATED: Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head revision or an error code will be returned. -/// This is to prevent colliding writes. -/// @param importFormat The format of provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocUpdateError` object on failure. -/// -- (DBUploadTask *) - docsUpdateStream:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat - inputStream:(NSInputStream *)inputStream __deprecated_msg("docsUpdate is deprecated."); - -/// -/// DEPRECATED: Allows an owner or editor to add users to a Paper doc or change their permissions using their email -/// address or Dropbox account ID. The doc owner's permissions cannot be changed. Note that this endpoint will continue -/// to work for content created by users on the older version of Paper. To check which version of Paper a user is on, -/// use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version -/// of Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide -/// for migration information. -/// -/// @param members User which should be added to the Paper doc. Specify only email address or Dropbox account ID. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *, DBPAPERDocLookupError *> *) - docsUsersAdd:(NSString *)docId - members:(NSArray *)members __deprecated_msg("docsUsersAdd is deprecated."); - -/// -/// DEPRECATED: Allows an owner or editor to add users to a Paper doc or change their permissions using their email -/// address or Dropbox account ID. The doc owner's permissions cannot be changed. Note that this endpoint will continue -/// to work for content created by users on the older version of Paper. To check which version of Paper a user is on, -/// use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version -/// of Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide -/// for migration information. -/// -/// @param members User which should be added to the Paper doc. Specify only email address or Dropbox account ID. -/// @param customMessage A personal message that will be emailed to each successfully added member. -/// @param quiet Clients should set this to true if no email message shall be sent to added users. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *, DBPAPERDocLookupError *> *) - docsUsersAdd:(NSString *)docId - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet __deprecated_msg("docsUsersAdd is deprecated."); - -/// -/// DEPRECATED: Lists all users who visited the Paper doc or users with explicit access. This call excludes users who -/// have been removed. The list is sorted by the date of the visit or the share date. The list will include both users, -/// the explicitly shared ones as well as those who came in using the Paper url link. Note that this endpoint will -/// continue to work for content created by users on the older version of Paper. To check which version of Paper a user -/// is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new -/// version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnPaperDocResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsUsersList:(NSString *)docId - __deprecated_msg("docsUsersList is deprecated."); - -/// -/// DEPRECATED: Lists all users who visited the Paper doc or users with explicit access. This call excludes users who -/// have been removed. The list is sorted by the date of the visit or the share date. The list will include both users, -/// the explicitly shared ones as well as those who came in using the Paper url link. Note that this endpoint will -/// continue to work for content created by users on the older version of Paper. To check which version of Paper a user -/// is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new -/// version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param limit Size limit per batch. The maximum number of users that can be retrieved per batch is 1000. Higher value -/// results in invalid arguments error. -/// @param filterBy Specify this attribute if you want to obtain users that have already accessed the Paper doc. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnPaperDocResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *) - docsUsersList:(NSString *)docId - limit:(nullable NSNumber *)limit - filterBy:(nullable DBPAPERUserOnPaperDocFilter *)filterBy __deprecated_msg("docsUsersList is deprecated."); - -/// -/// DEPRECATED: Once a cursor has been retrieved from `docsUsersList`, use this to paginate through all users on the -/// Paper doc. Note that this endpoint will continue to work for content created by users on the older version of Paper. -/// To check which version of Paper a user is on, use /users/features/get_values. If the paper_as_files feature is -/// enabled, then the user is running the new version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param cursor The cursor obtained from `docsUsersList` or `docsUsersListContinue`. Allows for pagination. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnPaperDocResponse` object on -/// success or a `DBPAPERListUsersCursorError` object on failure. -/// -- (DBRpcTask *) - docsUsersListContinue:(NSString *)docId - cursor:(NSString *)cursor __deprecated_msg("docsUsersListContinue is deprecated."); - -/// -/// DEPRECATED: Allows an owner or editor to remove users from a Paper doc using their email address or Dropbox account -/// ID. The doc owner cannot be removed. Note that this endpoint will continue to work for content created by users on -/// the older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper Migration -/// Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param member User which should be removed from the Paper doc. Specify only email address or Dropbox account ID. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsUsersRemove:(NSString *)docId - member:(DBSHARINGMemberSelector *)member - __deprecated_msg("docsUsersRemove is deprecated."); - -/// -/// DEPRECATED: Create a new Paper folder with the provided info. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param name The name of the new Paper folder. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperFolderCreateResult` object on success -/// or a `DBPAPERPaperFolderCreateError` object on failure. -/// -- (DBRpcTask *)foldersCreate:(NSString *)name - __deprecated_msg("foldersCreate is deprecated."); - -/// -/// DEPRECATED: Create a new Paper folder with the provided info. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param name The name of the new Paper folder. -/// @param parentFolderId The encrypted Paper folder Id where the new Paper folder should be created. The API user has -/// to have write access to this folder or error is thrown. If not supplied, the new folder will be created at top -/// level. -/// @param isTeamFolder Whether the folder to be created should be a team folder. This value will be ignored if -/// parent_folder_id is supplied, as the new folder will inherit the type (private or team folder) from its parent. We -/// will by default create a top-level private folder if both parent_folder_id and is_team_folder are not supplied. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperFolderCreateResult` object on success -/// or a `DBPAPERPaperFolderCreateError` object on failure. -/// -- (DBRpcTask *) - foldersCreate:(NSString *)name - parentFolderId:(nullable NSString *)parentFolderId - isTeamFolder:(nullable NSNumber *)isTeamFolder __deprecated_msg("foldersCreate is deprecated."); - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserInfoWithPermissionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserInfoWithPermissionLevel.h deleted file mode 100644 index 131bac1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserInfoWithPermissionLevel.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocPermissionLevel; -@class DBPAPERUserInfoWithPermissionLevel; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoWithPermissionLevel` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERUserInfoWithPermissionLevel : NSObject - -#pragma mark - Instance fields - -/// User shared on the Paper doc. -@property (nonatomic, readonly) DBSHARINGUserInfo *user; - -/// Permission level for the user. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *permissionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user User shared on the Paper doc. -/// @param permissionLevel Permission level for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBSHARINGUserInfo *)user - permissionLevel:(DBPAPERPaperDocPermissionLevel *)permissionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfoWithPermissionLevel` struct. -/// -@interface DBPAPERUserInfoWithPermissionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERUserInfoWithPermissionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERUserInfoWithPermissionLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERUserInfoWithPermissionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERUserInfoWithPermissionLevel *)instance; - -/// -/// Deserializes `DBPAPERUserInfoWithPermissionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERUserInfoWithPermissionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERUserInfoWithPermissionLevel` object. -/// -+ (DBPAPERUserInfoWithPermissionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserOnPaperDocFilter.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserOnPaperDocFilter.h deleted file mode 100644 index dbf18a0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBPAPERUserOnPaperDocFilter.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERUserOnPaperDocFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserOnPaperDocFilter` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERUserOnPaperDocFilter : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERUserOnPaperDocFilterTag` enum type represents the possible tag -/// states with which the `DBPAPERUserOnPaperDocFilter` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERUserOnPaperDocFilterTag) { - /// all users who have visited the Paper doc. - DBPAPERUserOnPaperDocFilterVisited, - - /// All uses who are shared on the Paper doc. This includes all users who - /// have visited the Paper doc as well as those who have not. - DBPAPERUserOnPaperDocFilterShared, - - /// (no description). - DBPAPERUserOnPaperDocFilterOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERUserOnPaperDocFilterTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "visited". -/// -/// Description of the "visited" tag state: all users who have visited the Paper -/// doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithVisited; - -/// -/// Initializes union class with tag state of "shared". -/// -/// Description of the "shared" tag state: All uses who are shared on the Paper -/// doc. This includes all users who have visited the Paper doc as well as those -/// who have not. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShared; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "visited". -/// -/// @return Whether the union's current tag state has value "visited". -/// -- (BOOL)isVisited; - -/// -/// Retrieves whether the union's current tag state has value "shared". -/// -/// @return Whether the union's current tag state has value "shared". -/// -- (BOOL)isShared; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERUserOnPaperDocFilter` union. -/// -@interface DBPAPERUserOnPaperDocFilterSerializer : NSObject - -/// -/// Serializes `DBPAPERUserOnPaperDocFilter` instances. -/// -/// @param instance An instance of the `DBPAPERUserOnPaperDocFilter` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERUserOnPaperDocFilter` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERUserOnPaperDocFilter *)instance; - -/// -/// Deserializes `DBPAPERUserOnPaperDocFilter` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERUserOnPaperDocFilter` API object. -/// -/// @return An instantiation of the `DBPAPERUserOnPaperDocFilter` object. -/// -+ (DBPAPERUserOnPaperDocFilter *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBRequestErrors.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBRequestErrors.h deleted file mode 100644 index 23eb66d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBRequestErrors.h +++ /dev/null @@ -1,803 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBAUTHAccessError; -@class DBAUTHAuthError; -@class DBAUTHRateLimitError; -@class DBCOMMONPathRootError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - Error Parameters - -/// A wrapper objct that has a localized human-readable error message and the locale. -@interface DBLocalizedUserMessage : NSObject - -/// Localized, human-readable text. -@property (nonatomic, readonly, copy) NSString *text; -// IETF BCP 47 language tag of text locale. -@property (nonatomic, readonly, copy) NSString *locale; - -- (instancetype)init NS_UNAVAILABLE; - -/// -/// DBLocalizedUserMessage full constructor. -/// -/// @param text The localized, human-readable text. -/// @param locale The IETF BCP 47 language tag of text locale. -/// -/// @return An initialized DBLocalizedUserMessage instance. -/// -- (instancetype)initWithText:(NSString *)text locale:(NSString *)locale; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBLocalizedUserMessage object. -/// -- (NSString *)description; - -@end - -#pragma mark - HTTP error - -/// -/// Http request error. -/// -/// Contains relevant information regarding a failed network request. All error types except for DBClientError extend -/// this class as children. Initialized in the event of a generic, unidentified HTTP error. -/// -@interface DBRequestHttpError : NSObject - -/// The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with Dropbox's SDKs and -/// API. Please include the value of this field when submitting technical support inquiries to Dropbox. -@property (nonatomic, readonly, copy) NSString *requestId; - -/// The HTTP response status code of the request. -@property (nonatomic, readonly) NSNumber *statusCode; - -/// A string representation of the error body received in the reponse. If for a route-specific error, this field will be -/// the value of the "error_summary" key. -@property (nonatomic, readonly, copy) NSString *errorContent; - -/// An object containing a localized human-readable error message that is optionally returned from some API endpoints. -@property (nonatomic, readonly, strong, nullable) DBLocalizedUserMessage *userMessage; - -/// -/// DBRequestHttpError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized DBRequestHttpError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestHttpError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Bad Input error - -/// -/// Bad Input request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 400 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestBadInputError : DBRequestHttpError - -/// -/// DBRequestBadInputError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized DBRequestBadInputError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestBadInputError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Auth error - -/// -/// Auth request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 401 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestAuthError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 401 auth -/// error. -@property (nonatomic, readonly) DBAUTHAuthError *structuredAuthError; - -/// -/// DBRequestAuthError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAuthError The structured object returned by the Dropbox API in the event of a 401 auth error. -/// -/// @return An initialized DBRequestAuthError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAuthError:(DBAUTHAuthError *)structuredAuthError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestAuthError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Access error - -/// -/// Access request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 403 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestAccessError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 403 access error. -@property (nonatomic, readonly) DBAUTHAccessError *structuredAccessError; - -/// -/// DBRequestAccessError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAccessError The structured object returned by the Dropbox API in the event of a 403 access error. -/// -/// @return An initialized DBRequestAccessError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAccessError:(DBAUTHAccessError *)structuredAccessError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestAccessError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Path Root error - -/// -/// Path Root request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 422 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestPathRootError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 422 path root error. -@property (nonatomic, readonly) DBCOMMONPathRootError *structuredPathRootError; - -/// -/// DBRequestPathRootError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredPathRootError The structured object returned by the Dropbox API in the event of a 422 path root -/// error. -/// -/// @return An initialized DBRequestPathRootError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredPathRootError:(DBCOMMONPathRootError *)structuredPathRootError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestAccessError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Rate limit error - -/// -/// Rate limit request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 429 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestRateLimitError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 429 rate-limit error. -@property (nonatomic, readonly) DBAUTHRateLimitError *structuredRateLimitError; - -/// The number of seconds to wait before making any additional requests in the event of a rate-limit error. -@property (nonatomic, readonly) NSNumber *backoff; - -/// -/// DBRequestRateLimitError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredRateLimitError The structured object returned by the Dropbox API in the event of a 429 rate-limit -/// error. -/// @param backoff The number of seconds to wait before making any additional requests in the event of a rate-limit -/// error. -/// -/// @return An initialized DBRequestRateLimitError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredRateLimitError:(DBAUTHRateLimitError *)structuredRateLimitError - backoff:(NSNumber *)backoff; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestRateLimitError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Internal Server error - -/// -/// Internal Server request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 500 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestInternalServerError : DBRequestHttpError - -/// -/// Description method. -/// -/// @return A human-readable representation of the current `DBRequestInternalServerError` object. -/// -- (NSString *)description; - -@end - -#pragma mark - Client error - -/// -/// Client side request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of a client-side error, -/// like an invalid url host, or making a request when not connected to the internet. -/// -@interface DBRequestClientError : NSObject - -/// The client-side `NSError` object returned from the failed response. -@property (nonatomic, readonly) NSError *nsError; - -/// -/// `DBRequestClientError` full constructor. -/// -/// An example of such an error might be if you attempt to make a request and are not connected to the internet. -/// -/// @param nsError The client-side `NSError` object returned from the failed response. -/// -/// @return An initialized `DBRequestClientError` instance. -/// -- (instancetype)init:(NSError *)nsError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current `DBRequestClientError` object. -/// -- (NSString *)description; - -@end - -#pragma mark - DBRequestError generic error - -/// -/// Base class for generic network request error (as opposed to route-specific -/// error). -/// -/// This class is represented almost like a Stone "Union" object. As one object, it can represent a number of error -/// "states" (see all of the values of `DBRequestErrorType`). To handle each error type, call each of the -/// `is` methods until you determine the current tag state, then call the corresponding `as` -/// method to return an instance of the appropriate error type. -/// -/// For example: -/// -/// @code -/// ``` -/// if ([dbxError isHTTPError]) { -/// DBHttpError *httpError = [dbxError asHttpError]; -/// } else if ([dbxError isBadInputError]) { ........ -/// ``` -/// @endcode -/// -@interface DBRequestError : NSObject - -#pragma mark - Tag type definition - -/// Represents the possible error types that can be returned from network requests. -typedef NS_ENUM(NSInteger, DBRequestErrorTag) { - /// Errors produced at the HTTP layer. - DBRequestErrorHttp, - - /// Errors due to bad input parameters to an API Operation. - DBRequestErrorBadInput, - - /// Errors due to invalid authentication credentials. - DBRequestErrorAuth, - - /// Errors due to invalid authentication credentials. - DBRequestErrorPathRoot, - - /// Errors due to invalid permission to access. - DBRequestErrorAccess, - - /// Error caused by rate limiting. - DBRequestErrorRateLimit, - - /// Errors due to a problem on Dropbox. - DBRequestErrorInternalServer, - - /// Errors due to a problem on the client-side of the SDK. - DBRequestErrorClient, -}; - -#pragma mark - Instance variables - -/// Current state of the `DBRequestError` object type. -@property (nonatomic, readonly) DBRequestErrorTag tag; - -/// The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with Dropbox's SDKs and -/// API. Please include the value of this field when submitting technical support inquiries to Dropbox. -@property (nonatomic, readonly, copy, nullable) NSString *requestId; - -/// The HTTP response status code of the request. -@property (nonatomic, readonly, nullable) NSNumber *statusCode; - -/// A string representation of the error body received in the reponse. If for a route-specific error, this field will be -/// the value of the "error_summary" key. -@property (nonatomic, readonly, copy, nullable) NSString *errorContent; - -/// An object containing a localized human-readable error message that is optionally returned from some API endpoints. -@property (nonatomic, readonly, strong, nullable) DBLocalizedUserMessage *userMessage; - -/// The structured object returned by the Dropbox API in the event of a 401 auth error. -@property (nonatomic, readonly, nullable) DBAUTHAuthError *structuredAuthError; - -/// The structured object returned by the Dropbox API in the event of a 403 access error. -@property (nonatomic, readonly, nullable) DBAUTHAccessError *structuredAccessError; - -/// The structured object returned by the Dropbox API in the event of a 422 path root error. -@property (nonatomic, readonly, nullable) DBCOMMONPathRootError *structuredPathRootError; - -/// The structured object returned by the Dropbox API in the event of a 429 rate-limit error. -@property (nonatomic, readonly, nullable) DBAUTHRateLimitError *structuredRateLimitError; - -/// The number of seconds to wait before making any additional requests in the event of a rate-limit error. -@property (nonatomic, readonly, nullable) NSNumber *backoff; - -/// The client-side `NSError` object returned from the failed response. -@property (nonatomic, readonly, nullable) NSError *nsError; - -#pragma mark - Constructors - -/// -/// `DBRequestError` convenience constructor. -/// -/// Initializes the `DBRequestError` object with all the required state for representing a generic HTTP error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized `DBRequestError` instance with HTTP error state. -/// -- (instancetype)initAsHttpError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing a Bad Input error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized `DBRequestError` instance with Bad Input error state. -/// -- (instancetype)initAsBadInputError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an Auth -/// error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAuthError The structured object returned by the Dropbox API in the event of a 401 auth error. -/// -/// @return An initialized `DBRequestError` instance with Auth error state. -/// -- (instancetype)initAsAuthError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAuthError:(DBAUTHAuthError *)structuredAuthError; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an Access -/// error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAccessError The structured object returned by the Dropbox API in the event of a 403 access error. -/// -/// @return An initialized `DBRequestError` instance with Auth error state. -/// -- (instancetype)initAsAccessError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAccessError:(DBAUTHAccessError *)structuredAccessError; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing a Path Root error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredPathRootError The structured object returned by the Dropbox API in the event of a 422 path root -/// error. -/// -/// @return An initialized `DBRequestError` instance with Auth error state. -/// -- (instancetype)initAsPathRootError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredPathRootError:(DBCOMMONPathRootError *)structuredPathRootError; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing a -/// Rate Limit error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredRateLimitError The structured object returned by the Dropbox API in the event of a 429 rate-limit -/// error. -/// @param backoff The number of seconds to wait before making any additional requests in the event of a rate-limit -/// error. -/// -/// @return An initialized `DBRequestError` instance with Rate Limit error state. -/// -- (instancetype)initAsRateLimitError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredRateLimitError:(DBAUTHRateLimitError *)structuredRateLimitError - backoff:(NSNumber *)backoff; - -/// -/// `DBRequestError` convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an -/// Internal Server error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// route-specific error, this field will be the value of the "error_summary" key. -/// -/// @return An initialized `DBRequestError` instance with Internal Server error state. -/// -- (instancetype)initAsInternalServerError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// `DBRequestError` convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an "OS" error. An example of such an -/// error might be if you attempt to make a request and are not connected to the internet. -/// -/// @param nsError The client-side `NSError` object returned from the failed response. -/// -/// -/// @return An initialized `DBRequestError` instance with Client error state. -/// -- (instancetype)initAsClientError:(nullable NSError *)nsError; - -/// -/// `DBRequestError` full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAuthError The structured object returned by the Dropbox API in the event of a 401 auth error. -/// @param structuredAccessError The structured object returned by the Dropbox API in the event of a 403 access error. -/// @param structuredPathRootError The structured object returned by the Dropbox API in the event of a 422 path root -/// error. -/// @param structuredRateLimitError The structured object returned by the Dropbox API in the event of a 429 rate-limit -/// error. -/// @param backoff The number of seconds to wait before making any additional requests in the event of a rate-limit -/// error. -/// @param nsError The client-side NSError object returned from the failed response. -/// -/// @return An initialized `DBRequestError` instance. -/// -- (instancetype)init:(DBRequestErrorTag)tag - requestId:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAuthError:(nullable DBAUTHAuthError *)structuredAuthError - structuredAccessError:(nullable DBAUTHAccessError *)structuredAccessError - structuredPathRootError:(nullable DBCOMMONPathRootError *)structuredPathRootError - structuredRateLimitError:(nullable DBAUTHRateLimitError *)structuredRateLimitError - backoff:(nullable NSNumber *)backoff - nsError:(nullable NSError *)nsError; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the error's current tag state has value "http_error". -/// -/// @return Whether the union's current tag state has value "http_error". -/// -- (BOOL)isHttpError; - -/// -/// Retrieves whether the error's current tag state has value "bad_input_error". -/// -/// @return Whether the union's current tag state has value "bad_input_error". -/// -- (BOOL)isBadInputError; - -/// -/// Retrieves whether the error's current tag state has value "auth_error". -/// -/// @return Whether the union's current tag state has value "auth_error". -/// -- (BOOL)isAuthError; - -/// -/// Retrieves whether the error's current tag state has value "access_error". -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the error's current tag state has value "path_root_error". -/// -/// @return Whether the union's current tag state has value "path_root_error". -/// -- (BOOL)isPathRootError; - -/// -/// Retrieves whether the error's current tag state has value "rate_limit_error". -/// -/// @return Whether the union's current tag state has value "rate_limit_error". -/// -- (BOOL)isRateLimitError; - -/// -/// Retrieves whether the error's current tag state has value "internal_server_error". -/// -/// @return Whether the union's current tag state has value "internal_server_error". -/// -- (BOOL)isInternalServerError; - -/// -/// Retrieves whether the error's current tag state has value "client_error". -/// -/// @return Whether the union's current tag state has value "client_error". -/// -- (BOOL)isClientError; - -#pragma mark - Error subtype retrieval methods - -/// -/// Creates a `DBRequestHttpError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "http_error". Should only use after -/// checking if `isHttpError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestHttpError` instance. -/// -- (DBRequestHttpError *)asHttpError; - -/// -/// Creates a `DBRequestBadInputError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "bad_input_error". Should only use -/// after checking if `isBadInputError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestBadInputError`. -/// -- (DBRequestBadInputError *)asBadInputError; - -/// -/// Creates a DBRequestAuthError instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "auth_error". Should only use after -/// checking if `isAuthError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestAuthError` instance. -/// -- (DBRequestAuthError *)asAuthError; - -/// -/// Creates a DBRequestAccessError instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "auth_error". Should only use after -/// checking if `isAccessError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestAccessError` instance. -/// -- (DBRequestAccessError *)asAccessError; - -/// -/// Creates a DBRequestAccessError instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "auth_error". Should only use after -/// checking if `isAccessError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestAccessError` instance. -/// -- (DBRequestPathRootError *)asPathRootError; - -/// -/// Creates a `DBRequestRateLimitError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "rate_limit_error". Should only use -/// after checking if `isRateLimitError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestRateLimitError` instance. -/// -- (DBRequestRateLimitError *)asRateLimitError; - -/// -/// Creates a `DBRequestInternalServerError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "internal_server_error". Should only -/// use after checking if `isInternalServerError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBHttpError` instance. -/// -- (DBRequestInternalServerError *)asInternalServerError; - -/// -/// Creates a `DBRequestClientError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "client_error". Should only use after -/// checking if `isClientError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestClientError` instance. -/// -- (DBRequestClientError *)asClientError; - -#pragma mark - Tag name method - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the `DBRequestError` object's current tag state. -/// -- (NSString *)tagName; - -#pragma mark - Description method - -/// -/// Description method. -/// -/// @return A human-readable representation of the current `DBRequestError` object. -/// -- (NSString *)description; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKConstants.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKConstants.h deleted file mode 100644 index 9020f979..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKConstants.h +++ /dev/null @@ -1,13 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -/// Constants for the SDK should go here. - -#import - -extern NSString *const kDBSDKVersion; -extern NSString *const kDBSDKDefaultUserAgentPrefix; -extern NSString *const kDBSDKForegroundSessionId; -extern NSString *const kDBSDKBackgroundSessionId; -extern NSString *const kDBSDKCSRFKey; diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImports-iOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImports-iOS.h deleted file mode 100644 index ba39f988..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImports-iOS.h +++ /dev/null @@ -1,12 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBClientsManager+MobileAuth-iOS.h" -#import "DBLoadingStatusDelegate.h" -#import "DBOAuthMobile-iOS.h" -#import "DBOAuthMobileManager-iOS.h" - -/// OpenWith -#import "DBOfficialAppConnector-iOS.h" -#import "DBOpenWithInfo-iOS.h" diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImportsGenerated.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImportsGenerated.h deleted file mode 100644 index 6a33bbcd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImportsGenerated.h +++ /dev/null @@ -1,2136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -/// Import autogenerated files - -// Routes -#import "DBACCOUNTUserAuthRoutes.h" -#import "DBACCOUNTRouteObjects.h" -#import "DBAUTHAppAuthRoutes.h" -#import "DBAUTHUserAuthRoutes.h" -#import "DBAUTHRouteObjects.h" -#import "DBCHECKAppAuthRoutes.h" -#import "DBCHECKUserAuthRoutes.h" -#import "DBCHECKRouteObjects.h" -#import "DBCONTACTSUserAuthRoutes.h" -#import "DBCONTACTSRouteObjects.h" -#import "DBFILEPROPERTIESTeamAuthRoutes.h" -#import "DBFILEPROPERTIESUserAuthRoutes.h" -#import "DBFILEPROPERTIESRouteObjects.h" -#import "DBFILEREQUESTSUserAuthRoutes.h" -#import "DBFILEREQUESTSRouteObjects.h" -#import "DBFILESAppAuthRoutes.h" -#import "DBFILESUserAuthRoutes.h" -#import "DBFILESRouteObjects.h" -#import "DBOPENIDUserAuthRoutes.h" -#import "DBOPENIDRouteObjects.h" -#import "DBPAPERUserAuthRoutes.h" -#import "DBPAPERRouteObjects.h" -#import "DBSHARINGAppAuthRoutes.h" -#import "DBSHARINGUserAuthRoutes.h" -#import "DBSHARINGRouteObjects.h" -#import "DBTEAMTeamAuthRoutes.h" -#import "DBTEAMRouteObjects.h" -#import "DBTEAMLOGTeamAuthRoutes.h" -#import "DBTEAMLOGRouteObjects.h" -#import "DBUSERSUserAuthRoutes.h" -#import "DBUSERSRouteObjects.h" - - -// `Account` namespace types - -#import "DBACCOUNTPhotoSourceArg.h" -#import "DBACCOUNTSetProfilePhotoArg.h" -#import "DBACCOUNTSetProfilePhotoError.h" -#import "DBACCOUNTSetProfilePhotoResult.h" - - -// `Async` namespace types - -#import "DBASYNCLaunchEmptyResult.h" -#import "DBASYNCLaunchResultBase.h" -#import "DBASYNCPollArg.h" -#import "DBASYNCPollEmptyResult.h" -#import "DBASYNCPollError.h" -#import "DBASYNCPollResultBase.h" - - -// `Auth` namespace types - -#import "DBAUTHAccessError.h" -#import "DBAUTHAuthError.h" -#import "DBAUTHInvalidAccountTypeError.h" -#import "DBAUTHPaperAccessError.h" -#import "DBAUTHRateLimitError.h" -#import "DBAUTHRateLimitReason.h" -#import "DBAUTHTokenFromOAuth1Arg.h" -#import "DBAUTHTokenFromOAuth1Error.h" -#import "DBAUTHTokenFromOAuth1Result.h" -#import "DBAUTHTokenScopeError.h" - - -// `Check` namespace types - -#import "DBCHECKEchoArg.h" -#import "DBCHECKEchoResult.h" - - -// `Common` namespace types - -#import "DBCOMMONPathRoot.h" -#import "DBCOMMONPathRootError.h" -#import "DBCOMMONRootInfo.h" -#import "DBCOMMONTeamRootInfo.h" -#import "DBCOMMONUserRootInfo.h" - - -// `Contacts` namespace types - -#import "DBCONTACTSDeleteManualContactsArg.h" -#import "DBCONTACTSDeleteManualContactsError.h" - - -// `FileProperties` namespace types - -#import "DBFILEPROPERTIESAddPropertiesArg.h" -#import "DBFILEPROPERTIESAddPropertiesError.h" -#import "DBFILEPROPERTIESAddTemplateArg.h" -#import "DBFILEPROPERTIESAddTemplateResult.h" -#import "DBFILEPROPERTIESGetTemplateArg.h" -#import "DBFILEPROPERTIESGetTemplateResult.h" -#import "DBFILEPROPERTIESInvalidPropertyGroupError.h" -#import "DBFILEPROPERTIESListTemplateResult.h" -#import "DBFILEPROPERTIESLogicalOperator.h" -#import "DBFILEPROPERTIESLookUpPropertiesError.h" -#import "DBFILEPROPERTIESLookupError.h" -#import "DBFILEPROPERTIESModifyTemplateError.h" -#import "DBFILEPROPERTIESOverwritePropertyGroupArg.h" -#import "DBFILEPROPERTIESPropertiesError.h" -#import "DBFILEPROPERTIESPropertiesSearchArg.h" -#import "DBFILEPROPERTIESPropertiesSearchContinueArg.h" -#import "DBFILEPROPERTIESPropertiesSearchContinueError.h" -#import "DBFILEPROPERTIESPropertiesSearchError.h" -#import "DBFILEPROPERTIESPropertiesSearchMatch.h" -#import "DBFILEPROPERTIESPropertiesSearchMode.h" -#import "DBFILEPROPERTIESPropertiesSearchQuery.h" -#import "DBFILEPROPERTIESPropertiesSearchResult.h" -#import "DBFILEPROPERTIESPropertyField.h" -#import "DBFILEPROPERTIESPropertyFieldTemplate.h" -#import "DBFILEPROPERTIESPropertyGroup.h" -#import "DBFILEPROPERTIESPropertyGroupTemplate.h" -#import "DBFILEPROPERTIESPropertyGroupUpdate.h" -#import "DBFILEPROPERTIESPropertyType.h" -#import "DBFILEPROPERTIESRemovePropertiesArg.h" -#import "DBFILEPROPERTIESRemovePropertiesError.h" -#import "DBFILEPROPERTIESRemoveTemplateArg.h" -#import "DBFILEPROPERTIESTemplateError.h" -#import "DBFILEPROPERTIESTemplateFilter.h" -#import "DBFILEPROPERTIESTemplateFilterBase.h" -#import "DBFILEPROPERTIESTemplateOwnerType.h" -#import "DBFILEPROPERTIESUpdatePropertiesArg.h" -#import "DBFILEPROPERTIESUpdatePropertiesError.h" -#import "DBFILEPROPERTIESUpdateTemplateArg.h" -#import "DBFILEPROPERTIESUpdateTemplateResult.h" - - -// `FileRequests` namespace types - -#import "DBFILEREQUESTSCountFileRequestsError.h" -#import "DBFILEREQUESTSCountFileRequestsResult.h" -#import "DBFILEREQUESTSCreateFileRequestArgs.h" -#import "DBFILEREQUESTSCreateFileRequestError.h" -#import "DBFILEREQUESTSDeleteAllClosedFileRequestsError.h" -#import "DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h" -#import "DBFILEREQUESTSDeleteFileRequestArgs.h" -#import "DBFILEREQUESTSDeleteFileRequestError.h" -#import "DBFILEREQUESTSDeleteFileRequestsResult.h" -#import "DBFILEREQUESTSFileRequest.h" -#import "DBFILEREQUESTSFileRequestDeadline.h" -#import "DBFILEREQUESTSFileRequestError.h" -#import "DBFILEREQUESTSGeneralFileRequestsError.h" -#import "DBFILEREQUESTSGetFileRequestArgs.h" -#import "DBFILEREQUESTSGetFileRequestError.h" -#import "DBFILEREQUESTSGracePeriod.h" -#import "DBFILEREQUESTSListFileRequestsArg.h" -#import "DBFILEREQUESTSListFileRequestsContinueArg.h" -#import "DBFILEREQUESTSListFileRequestsContinueError.h" -#import "DBFILEREQUESTSListFileRequestsError.h" -#import "DBFILEREQUESTSListFileRequestsResult.h" -#import "DBFILEREQUESTSListFileRequestsV2Result.h" -#import "DBFILEREQUESTSUpdateFileRequestArgs.h" -#import "DBFILEREQUESTSUpdateFileRequestDeadline.h" -#import "DBFILEREQUESTSUpdateFileRequestError.h" - - -// `Files` namespace types - -#import "DBFILESAddTagArg.h" -#import "DBFILESAddTagError.h" -#import "DBFILESAlphaGetMetadataArg.h" -#import "DBFILESAlphaGetMetadataError.h" -#import "DBFILESBaseTagError.h" -#import "DBFILESCommitInfo.h" -#import "DBFILESContentSyncSetting.h" -#import "DBFILESContentSyncSettingArg.h" -#import "DBFILESCreateFolderArg.h" -#import "DBFILESCreateFolderBatchArg.h" -#import "DBFILESCreateFolderBatchError.h" -#import "DBFILESCreateFolderBatchJobStatus.h" -#import "DBFILESCreateFolderBatchLaunch.h" -#import "DBFILESCreateFolderBatchResult.h" -#import "DBFILESCreateFolderBatchResultEntry.h" -#import "DBFILESCreateFolderEntryError.h" -#import "DBFILESCreateFolderEntryResult.h" -#import "DBFILESCreateFolderError.h" -#import "DBFILESCreateFolderResult.h" -#import "DBFILESDeleteArg.h" -#import "DBFILESDeleteBatchArg.h" -#import "DBFILESDeleteBatchError.h" -#import "DBFILESDeleteBatchJobStatus.h" -#import "DBFILESDeleteBatchLaunch.h" -#import "DBFILESDeleteBatchResult.h" -#import "DBFILESDeleteBatchResultData.h" -#import "DBFILESDeleteBatchResultEntry.h" -#import "DBFILESDeleteError.h" -#import "DBFILESDeleteResult.h" -#import "DBFILESDeletedMetadata.h" -#import "DBFILESDimensions.h" -#import "DBFILESDownloadArg.h" -#import "DBFILESDownloadError.h" -#import "DBFILESDownloadZipArg.h" -#import "DBFILESDownloadZipError.h" -#import "DBFILESDownloadZipResult.h" -#import "DBFILESExportArg.h" -#import "DBFILESExportError.h" -#import "DBFILESExportInfo.h" -#import "DBFILESExportMetadata.h" -#import "DBFILESExportResult.h" -#import "DBFILESFileCategory.h" -#import "DBFILESFileLock.h" -#import "DBFILESFileLockContent.h" -#import "DBFILESFileLockMetadata.h" -#import "DBFILESFileMetadata.h" -#import "DBFILESFileOpsResult.h" -#import "DBFILESFileSharingInfo.h" -#import "DBFILESFileStatus.h" -#import "DBFILESFolderMetadata.h" -#import "DBFILESFolderSharingInfo.h" -#import "DBFILESGetCopyReferenceArg.h" -#import "DBFILESGetCopyReferenceError.h" -#import "DBFILESGetCopyReferenceResult.h" -#import "DBFILESGetMetadataArg.h" -#import "DBFILESGetMetadataError.h" -#import "DBFILESGetTagsArg.h" -#import "DBFILESGetTagsResult.h" -#import "DBFILESGetTemporaryLinkArg.h" -#import "DBFILESGetTemporaryLinkError.h" -#import "DBFILESGetTemporaryLinkResult.h" -#import "DBFILESGetTemporaryUploadLinkArg.h" -#import "DBFILESGetTemporaryUploadLinkResult.h" -#import "DBFILESGetThumbnailBatchArg.h" -#import "DBFILESGetThumbnailBatchError.h" -#import "DBFILESGetThumbnailBatchResult.h" -#import "DBFILESGetThumbnailBatchResultData.h" -#import "DBFILESGetThumbnailBatchResultEntry.h" -#import "DBFILESGpsCoordinates.h" -#import "DBFILESHighlightSpan.h" -#import "DBFILESImportFormat.h" -#import "DBFILESListFolderArg.h" -#import "DBFILESListFolderContinueArg.h" -#import "DBFILESListFolderContinueError.h" -#import "DBFILESListFolderError.h" -#import "DBFILESListFolderGetLatestCursorResult.h" -#import "DBFILESListFolderLongpollArg.h" -#import "DBFILESListFolderLongpollError.h" -#import "DBFILESListFolderLongpollResult.h" -#import "DBFILESListFolderResult.h" -#import "DBFILESListRevisionsArg.h" -#import "DBFILESListRevisionsError.h" -#import "DBFILESListRevisionsMode.h" -#import "DBFILESListRevisionsResult.h" -#import "DBFILESLockConflictError.h" -#import "DBFILESLockFileArg.h" -#import "DBFILESLockFileBatchArg.h" -#import "DBFILESLockFileBatchResult.h" -#import "DBFILESLockFileError.h" -#import "DBFILESLockFileResult.h" -#import "DBFILESLockFileResultEntry.h" -#import "DBFILESLookupError.h" -#import "DBFILESMediaInfo.h" -#import "DBFILESMediaMetadata.h" -#import "DBFILESMetadata.h" -#import "DBFILESMetadataV2.h" -#import "DBFILESMinimalFileLinkMetadata.h" -#import "DBFILESMoveBatchArg.h" -#import "DBFILESMoveIntoFamilyError.h" -#import "DBFILESMoveIntoVaultError.h" -#import "DBFILESPaperContentError.h" -#import "DBFILESPaperCreateArg.h" -#import "DBFILESPaperCreateError.h" -#import "DBFILESPaperCreateResult.h" -#import "DBFILESPaperDocUpdatePolicy.h" -#import "DBFILESPaperUpdateArg.h" -#import "DBFILESPaperUpdateError.h" -#import "DBFILESPaperUpdateResult.h" -#import "DBFILESPathOrLink.h" -#import "DBFILESPathToTags.h" -#import "DBFILESPhotoMetadata.h" -#import "DBFILESPreviewArg.h" -#import "DBFILESPreviewError.h" -#import "DBFILESPreviewResult.h" -#import "DBFILESRelocationArg.h" -#import "DBFILESRelocationBatchArg.h" -#import "DBFILESRelocationBatchArgBase.h" -#import "DBFILESRelocationBatchError.h" -#import "DBFILESRelocationBatchErrorEntry.h" -#import "DBFILESRelocationBatchJobStatus.h" -#import "DBFILESRelocationBatchLaunch.h" -#import "DBFILESRelocationBatchResult.h" -#import "DBFILESRelocationBatchResultData.h" -#import "DBFILESRelocationBatchResultEntry.h" -#import "DBFILESRelocationBatchV2JobStatus.h" -#import "DBFILESRelocationBatchV2Launch.h" -#import "DBFILESRelocationBatchV2Result.h" -#import "DBFILESRelocationError.h" -#import "DBFILESRelocationPath.h" -#import "DBFILESRelocationResult.h" -#import "DBFILESRemoveTagArg.h" -#import "DBFILESRemoveTagError.h" -#import "DBFILESRestoreArg.h" -#import "DBFILESRestoreError.h" -#import "DBFILESSaveCopyReferenceArg.h" -#import "DBFILESSaveCopyReferenceError.h" -#import "DBFILESSaveCopyReferenceResult.h" -#import "DBFILESSaveUrlArg.h" -#import "DBFILESSaveUrlError.h" -#import "DBFILESSaveUrlJobStatus.h" -#import "DBFILESSaveUrlResult.h" -#import "DBFILESSearchArg.h" -#import "DBFILESSearchError.h" -#import "DBFILESSearchMatch.h" -#import "DBFILESSearchMatchFieldOptions.h" -#import "DBFILESSearchMatchType.h" -#import "DBFILESSearchMatchTypeV2.h" -#import "DBFILESSearchMatchV2.h" -#import "DBFILESSearchMode.h" -#import "DBFILESSearchOptions.h" -#import "DBFILESSearchOrderBy.h" -#import "DBFILESSearchResult.h" -#import "DBFILESSearchV2Arg.h" -#import "DBFILESSearchV2ContinueArg.h" -#import "DBFILESSearchV2Result.h" -#import "DBFILESSharedLink.h" -#import "DBFILESSharedLinkFileInfo.h" -#import "DBFILESSharingInfo.h" -#import "DBFILESSingleUserLock.h" -#import "DBFILESSymlinkInfo.h" -#import "DBFILESSyncSetting.h" -#import "DBFILESSyncSettingArg.h" -#import "DBFILESSyncSettingsError.h" -#import "DBFILESTag.h" -#import "DBFILESThumbnailArg.h" -#import "DBFILESThumbnailError.h" -#import "DBFILESThumbnailFormat.h" -#import "DBFILESThumbnailMode.h" -#import "DBFILESThumbnailSize.h" -#import "DBFILESThumbnailV2Arg.h" -#import "DBFILESThumbnailV2Error.h" -#import "DBFILESUnlockFileArg.h" -#import "DBFILESUnlockFileBatchArg.h" -#import "DBFILESUploadArg.h" -#import "DBFILESUploadError.h" -#import "DBFILESUploadSessionAppendArg.h" -#import "DBFILESUploadSessionAppendError.h" -#import "DBFILESUploadSessionCursor.h" -#import "DBFILESUploadSessionFinishArg.h" -#import "DBFILESUploadSessionFinishBatchArg.h" -#import "DBFILESUploadSessionFinishBatchJobStatus.h" -#import "DBFILESUploadSessionFinishBatchLaunch.h" -#import "DBFILESUploadSessionFinishBatchResult.h" -#import "DBFILESUploadSessionFinishBatchResultEntry.h" -#import "DBFILESUploadSessionFinishError.h" -#import "DBFILESUploadSessionLookupError.h" -#import "DBFILESUploadSessionOffsetError.h" -#import "DBFILESUploadSessionStartArg.h" -#import "DBFILESUploadSessionStartBatchArg.h" -#import "DBFILESUploadSessionStartBatchResult.h" -#import "DBFILESUploadSessionStartError.h" -#import "DBFILESUploadSessionStartResult.h" -#import "DBFILESUploadSessionType.h" -#import "DBFILESUploadWriteFailed.h" -#import "DBFILESUserGeneratedTag.h" -#import "DBFILESVideoMetadata.h" -#import "DBFILESWriteConflictError.h" -#import "DBFILESWriteError.h" -#import "DBFILESWriteMode.h" - - -// `Openid` namespace types - -#import "DBOPENIDOpenIdError.h" -#import "DBOPENIDUserInfoArgs.h" -#import "DBOPENIDUserInfoError.h" -#import "DBOPENIDUserInfoResult.h" - - -// `Paper` namespace types - -#import "DBPAPERAddMember.h" -#import "DBPAPERAddPaperDocUser.h" -#import "DBPAPERAddPaperDocUserMemberResult.h" -#import "DBPAPERAddPaperDocUserResult.h" -#import "DBPAPERCursor.h" -#import "DBPAPERDocLookupError.h" -#import "DBPAPERDocSubscriptionLevel.h" -#import "DBPAPERExportFormat.h" -#import "DBPAPERFolder.h" -#import "DBPAPERFolderSharingPolicyType.h" -#import "DBPAPERFolderSubscriptionLevel.h" -#import "DBPAPERFoldersContainingPaperDoc.h" -#import "DBPAPERImportFormat.h" -#import "DBPAPERInviteeInfoWithPermissionLevel.h" -#import "DBPAPERListDocsCursorError.h" -#import "DBPAPERListPaperDocsArgs.h" -#import "DBPAPERListPaperDocsContinueArgs.h" -#import "DBPAPERListPaperDocsFilterBy.h" -#import "DBPAPERListPaperDocsResponse.h" -#import "DBPAPERListPaperDocsSortBy.h" -#import "DBPAPERListPaperDocsSortOrder.h" -#import "DBPAPERListUsersCursorError.h" -#import "DBPAPERListUsersOnFolderArgs.h" -#import "DBPAPERListUsersOnFolderContinueArgs.h" -#import "DBPAPERListUsersOnFolderResponse.h" -#import "DBPAPERListUsersOnPaperDocArgs.h" -#import "DBPAPERListUsersOnPaperDocContinueArgs.h" -#import "DBPAPERListUsersOnPaperDocResponse.h" -#import "DBPAPERPaperApiBaseError.h" -#import "DBPAPERPaperApiCursorError.h" -#import "DBPAPERPaperDocCreateArgs.h" -#import "DBPAPERPaperDocCreateError.h" -#import "DBPAPERPaperDocCreateUpdateResult.h" -#import "DBPAPERPaperDocExport.h" -#import "DBPAPERPaperDocExportResult.h" -#import "DBPAPERPaperDocPermissionLevel.h" -#import "DBPAPERPaperDocSharingPolicy.h" -#import "DBPAPERPaperDocUpdateArgs.h" -#import "DBPAPERPaperDocUpdateError.h" -#import "DBPAPERPaperDocUpdatePolicy.h" -#import "DBPAPERPaperFolderCreateArg.h" -#import "DBPAPERPaperFolderCreateError.h" -#import "DBPAPERPaperFolderCreateResult.h" -#import "DBPAPERRefPaperDoc.h" -#import "DBPAPERRemovePaperDocUser.h" -#import "DBPAPERSharingPolicy.h" -#import "DBPAPERSharingPublicPolicyType.h" -#import "DBPAPERSharingTeamPolicyType.h" -#import "DBPAPERUserInfoWithPermissionLevel.h" -#import "DBPAPERUserOnPaperDocFilter.h" - - -// `SecondaryEmails` namespace types - -#import "DBSECONDARYEMAILSSecondaryEmail.h" - - -// `SeenState` namespace types - -#import "DBSEENSTATEPlatformType.h" - - -// `Sharing` namespace types - -#import "DBSHARINGAccessInheritance.h" -#import "DBSHARINGAccessLevel.h" -#import "DBSHARINGAclUpdatePolicy.h" -#import "DBSHARINGAddFileMemberArgs.h" -#import "DBSHARINGAddFileMemberError.h" -#import "DBSHARINGAddFolderMemberArg.h" -#import "DBSHARINGAddFolderMemberError.h" -#import "DBSHARINGAddMember.h" -#import "DBSHARINGAddMemberSelectorError.h" -#import "DBSHARINGAlphaResolvedVisibility.h" -#import "DBSHARINGAudienceExceptionContentInfo.h" -#import "DBSHARINGAudienceExceptions.h" -#import "DBSHARINGAudienceRestrictingSharedFolder.h" -#import "DBSHARINGCollectionLinkMetadata.h" -#import "DBSHARINGCreateSharedLinkArg.h" -#import "DBSHARINGCreateSharedLinkError.h" -#import "DBSHARINGCreateSharedLinkWithSettingsArg.h" -#import "DBSHARINGCreateSharedLinkWithSettingsError.h" -#import "DBSHARINGExpectedSharedContentLinkMetadata.h" -#import "DBSHARINGFileAction.h" -#import "DBSHARINGFileErrorResult.h" -#import "DBSHARINGFileLinkMetadata.h" -#import "DBSHARINGFileMemberActionError.h" -#import "DBSHARINGFileMemberActionIndividualResult.h" -#import "DBSHARINGFileMemberActionResult.h" -#import "DBSHARINGFileMemberRemoveActionResult.h" -#import "DBSHARINGFilePermission.h" -#import "DBSHARINGFolderAction.h" -#import "DBSHARINGFolderLinkMetadata.h" -#import "DBSHARINGFolderPermission.h" -#import "DBSHARINGFolderPolicy.h" -#import "DBSHARINGGetFileMetadataArg.h" -#import "DBSHARINGGetFileMetadataBatchArg.h" -#import "DBSHARINGGetFileMetadataBatchResult.h" -#import "DBSHARINGGetFileMetadataError.h" -#import "DBSHARINGGetFileMetadataIndividualResult.h" -#import "DBSHARINGGetMetadataArgs.h" -#import "DBSHARINGGetSharedLinkFileError.h" -#import "DBSHARINGGetSharedLinkMetadataArg.h" -#import "DBSHARINGGetSharedLinksArg.h" -#import "DBSHARINGGetSharedLinksError.h" -#import "DBSHARINGGetSharedLinksResult.h" -#import "DBSHARINGGroupInfo.h" -#import "DBSHARINGGroupMembershipInfo.h" -#import "DBSHARINGInsufficientPlan.h" -#import "DBSHARINGInsufficientQuotaAmounts.h" -#import "DBSHARINGInviteeInfo.h" -#import "DBSHARINGInviteeMembershipInfo.h" -#import "DBSHARINGJobError.h" -#import "DBSHARINGJobStatus.h" -#import "DBSHARINGLinkAccessLevel.h" -#import "DBSHARINGLinkAction.h" -#import "DBSHARINGLinkAudience.h" -#import "DBSHARINGLinkAudienceDisallowedReason.h" -#import "DBSHARINGLinkAudienceOption.h" -#import "DBSHARINGLinkExpiry.h" -#import "DBSHARINGLinkMetadata.h" -#import "DBSHARINGLinkPassword.h" -#import "DBSHARINGLinkPermission.h" -#import "DBSHARINGLinkPermissions.h" -#import "DBSHARINGLinkSettings.h" -#import "DBSHARINGListFileMembersArg.h" -#import "DBSHARINGListFileMembersBatchArg.h" -#import "DBSHARINGListFileMembersBatchResult.h" -#import "DBSHARINGListFileMembersContinueArg.h" -#import "DBSHARINGListFileMembersContinueError.h" -#import "DBSHARINGListFileMembersCountResult.h" -#import "DBSHARINGListFileMembersError.h" -#import "DBSHARINGListFileMembersIndividualResult.h" -#import "DBSHARINGListFilesArg.h" -#import "DBSHARINGListFilesContinueArg.h" -#import "DBSHARINGListFilesContinueError.h" -#import "DBSHARINGListFilesResult.h" -#import "DBSHARINGListFolderMembersArgs.h" -#import "DBSHARINGListFolderMembersContinueArg.h" -#import "DBSHARINGListFolderMembersContinueError.h" -#import "DBSHARINGListFolderMembersCursorArg.h" -#import "DBSHARINGListFoldersArgs.h" -#import "DBSHARINGListFoldersContinueArg.h" -#import "DBSHARINGListFoldersContinueError.h" -#import "DBSHARINGListFoldersResult.h" -#import "DBSHARINGListSharedLinksArg.h" -#import "DBSHARINGListSharedLinksError.h" -#import "DBSHARINGListSharedLinksResult.h" -#import "DBSHARINGMemberAccessLevelResult.h" -#import "DBSHARINGMemberAction.h" -#import "DBSHARINGMemberPermission.h" -#import "DBSHARINGMemberPolicy.h" -#import "DBSHARINGMemberSelector.h" -#import "DBSHARINGMembershipInfo.h" -#import "DBSHARINGModifySharedLinkSettingsArgs.h" -#import "DBSHARINGModifySharedLinkSettingsError.h" -#import "DBSHARINGMountFolderArg.h" -#import "DBSHARINGMountFolderError.h" -#import "DBSHARINGParentFolderAccessInfo.h" -#import "DBSHARINGPathLinkMetadata.h" -#import "DBSHARINGPendingUploadMode.h" -#import "DBSHARINGPermissionDeniedReason.h" -#import "DBSHARINGRelinquishFileMembershipArg.h" -#import "DBSHARINGRelinquishFileMembershipError.h" -#import "DBSHARINGRelinquishFolderMembershipArg.h" -#import "DBSHARINGRelinquishFolderMembershipError.h" -#import "DBSHARINGRemoveFileMemberArg.h" -#import "DBSHARINGRemoveFileMemberError.h" -#import "DBSHARINGRemoveFolderMemberArg.h" -#import "DBSHARINGRemoveFolderMemberError.h" -#import "DBSHARINGRemoveMemberJobStatus.h" -#import "DBSHARINGRequestedLinkAccessLevel.h" -#import "DBSHARINGRequestedVisibility.h" -#import "DBSHARINGResolvedVisibility.h" -#import "DBSHARINGRevokeSharedLinkArg.h" -#import "DBSHARINGRevokeSharedLinkError.h" -#import "DBSHARINGSetAccessInheritanceArg.h" -#import "DBSHARINGSetAccessInheritanceError.h" -#import "DBSHARINGShareFolderArg.h" -#import "DBSHARINGShareFolderArgBase.h" -#import "DBSHARINGShareFolderError.h" -#import "DBSHARINGShareFolderErrorBase.h" -#import "DBSHARINGShareFolderJobStatus.h" -#import "DBSHARINGShareFolderLaunch.h" -#import "DBSHARINGSharePathError.h" -#import "DBSHARINGSharedContentLinkMetadata.h" -#import "DBSHARINGSharedContentLinkMetadataBase.h" -#import "DBSHARINGSharedFileMembers.h" -#import "DBSHARINGSharedFileMetadata.h" -#import "DBSHARINGSharedFolderAccessError.h" -#import "DBSHARINGSharedFolderMemberError.h" -#import "DBSHARINGSharedFolderMembers.h" -#import "DBSHARINGSharedFolderMetadata.h" -#import "DBSHARINGSharedFolderMetadataBase.h" -#import "DBSHARINGSharedLinkAccessFailureReason.h" -#import "DBSHARINGSharedLinkAlreadyExistsMetadata.h" -#import "DBSHARINGSharedLinkError.h" -#import "DBSHARINGSharedLinkMetadata.h" -#import "DBSHARINGSharedLinkPolicy.h" -#import "DBSHARINGSharedLinkSettings.h" -#import "DBSHARINGSharedLinkSettingsError.h" -#import "DBSHARINGSharingFileAccessError.h" -#import "DBSHARINGSharingUserError.h" -#import "DBSHARINGTeamMemberInfo.h" -#import "DBSHARINGTransferFolderArg.h" -#import "DBSHARINGTransferFolderError.h" -#import "DBSHARINGUnmountFolderArg.h" -#import "DBSHARINGUnmountFolderError.h" -#import "DBSHARINGUnshareFileArg.h" -#import "DBSHARINGUnshareFileError.h" -#import "DBSHARINGUnshareFolderArg.h" -#import "DBSHARINGUnshareFolderError.h" -#import "DBSHARINGUpdateFileMemberArgs.h" -#import "DBSHARINGUpdateFolderMemberArg.h" -#import "DBSHARINGUpdateFolderMemberError.h" -#import "DBSHARINGUpdateFolderPolicyArg.h" -#import "DBSHARINGUpdateFolderPolicyError.h" -#import "DBSHARINGUserFileMembershipInfo.h" -#import "DBSHARINGUserInfo.h" -#import "DBSHARINGUserMembershipInfo.h" -#import "DBSHARINGViewerInfoPolicy.h" -#import "DBSHARINGVisibility.h" -#import "DBSHARINGVisibilityPolicy.h" -#import "DBSHARINGVisibilityPolicyDisallowedReason.h" - - -// `Team` namespace types - -#import "DBTEAMActiveWebSession.h" -#import "DBTEAMAddSecondaryEmailResult.h" -#import "DBTEAMAddSecondaryEmailsArg.h" -#import "DBTEAMAddSecondaryEmailsError.h" -#import "DBTEAMAddSecondaryEmailsResult.h" -#import "DBTEAMAdminTier.h" -#import "DBTEAMApiApp.h" -#import "DBTEAMBaseDfbReport.h" -#import "DBTEAMBaseTeamFolderError.h" -#import "DBTEAMCustomQuotaError.h" -#import "DBTEAMCustomQuotaResult.h" -#import "DBTEAMCustomQuotaUsersArg.h" -#import "DBTEAMDateRange.h" -#import "DBTEAMDateRangeError.h" -#import "DBTEAMDeleteSecondaryEmailResult.h" -#import "DBTEAMDeleteSecondaryEmailsArg.h" -#import "DBTEAMDeleteSecondaryEmailsResult.h" -#import "DBTEAMDesktopClientSession.h" -#import "DBTEAMDesktopPlatform.h" -#import "DBTEAMDeviceSession.h" -#import "DBTEAMDeviceSessionArg.h" -#import "DBTEAMDevicesActive.h" -#import "DBTEAMExcludedUsersListArg.h" -#import "DBTEAMExcludedUsersListContinueArg.h" -#import "DBTEAMExcludedUsersListContinueError.h" -#import "DBTEAMExcludedUsersListError.h" -#import "DBTEAMExcludedUsersListResult.h" -#import "DBTEAMExcludedUsersUpdateArg.h" -#import "DBTEAMExcludedUsersUpdateError.h" -#import "DBTEAMExcludedUsersUpdateResult.h" -#import "DBTEAMExcludedUsersUpdateStatus.h" -#import "DBTEAMFeature.h" -#import "DBTEAMFeatureValue.h" -#import "DBTEAMFeaturesGetValuesBatchArg.h" -#import "DBTEAMFeaturesGetValuesBatchError.h" -#import "DBTEAMFeaturesGetValuesBatchResult.h" -#import "DBTEAMGetActivityReport.h" -#import "DBTEAMGetDevicesReport.h" -#import "DBTEAMGetMembershipReport.h" -#import "DBTEAMGetStorageReport.h" -#import "DBTEAMGroupAccessType.h" -#import "DBTEAMGroupCreateArg.h" -#import "DBTEAMGroupCreateError.h" -#import "DBTEAMGroupDeleteError.h" -#import "DBTEAMGroupFullInfo.h" -#import "DBTEAMGroupMemberInfo.h" -#import "DBTEAMGroupMemberSelector.h" -#import "DBTEAMGroupMemberSelectorError.h" -#import "DBTEAMGroupMemberSetAccessTypeError.h" -#import "DBTEAMGroupMembersAddArg.h" -#import "DBTEAMGroupMembersAddError.h" -#import "DBTEAMGroupMembersChangeResult.h" -#import "DBTEAMGroupMembersRemoveArg.h" -#import "DBTEAMGroupMembersRemoveError.h" -#import "DBTEAMGroupMembersSelector.h" -#import "DBTEAMGroupMembersSelectorError.h" -#import "DBTEAMGroupMembersSetAccessTypeArg.h" -#import "DBTEAMGroupSelector.h" -#import "DBTEAMGroupSelectorError.h" -#import "DBTEAMGroupSelectorWithTeamGroupError.h" -#import "DBTEAMGroupUpdateArgs.h" -#import "DBTEAMGroupUpdateError.h" -#import "DBTEAMGroupsGetInfoError.h" -#import "DBTEAMGroupsGetInfoItem.h" -#import "DBTEAMGroupsListArg.h" -#import "DBTEAMGroupsListContinueArg.h" -#import "DBTEAMGroupsListContinueError.h" -#import "DBTEAMGroupsListResult.h" -#import "DBTEAMGroupsMembersListArg.h" -#import "DBTEAMGroupsMembersListContinueArg.h" -#import "DBTEAMGroupsMembersListContinueError.h" -#import "DBTEAMGroupsMembersListResult.h" -#import "DBTEAMGroupsPollError.h" -#import "DBTEAMGroupsSelector.h" -#import "DBTEAMHasTeamFileEventsValue.h" -#import "DBTEAMHasTeamSelectiveSyncValue.h" -#import "DBTEAMHasTeamSharedDropboxValue.h" -#import "DBTEAMIncludeMembersArg.h" -#import "DBTEAMLegalHoldHeldRevisionMetadata.h" -#import "DBTEAMLegalHoldPolicy.h" -#import "DBTEAMLegalHoldStatus.h" -#import "DBTEAMLegalHoldsError.h" -#import "DBTEAMLegalHoldsGetPolicyArg.h" -#import "DBTEAMLegalHoldsGetPolicyError.h" -#import "DBTEAMLegalHoldsListHeldRevisionResult.h" -#import "DBTEAMLegalHoldsListHeldRevisionsArg.h" -#import "DBTEAMLegalHoldsListHeldRevisionsContinueArg.h" -#import "DBTEAMLegalHoldsListHeldRevisionsContinueError.h" -#import "DBTEAMLegalHoldsListHeldRevisionsError.h" -#import "DBTEAMLegalHoldsListPoliciesArg.h" -#import "DBTEAMLegalHoldsListPoliciesError.h" -#import "DBTEAMLegalHoldsListPoliciesResult.h" -#import "DBTEAMLegalHoldsPolicyCreateArg.h" -#import "DBTEAMLegalHoldsPolicyCreateError.h" -#import "DBTEAMLegalHoldsPolicyReleaseArg.h" -#import "DBTEAMLegalHoldsPolicyReleaseError.h" -#import "DBTEAMLegalHoldsPolicyUpdateArg.h" -#import "DBTEAMLegalHoldsPolicyUpdateError.h" -#import "DBTEAMListMemberAppsArg.h" -#import "DBTEAMListMemberAppsError.h" -#import "DBTEAMListMemberAppsResult.h" -#import "DBTEAMListMemberDevicesArg.h" -#import "DBTEAMListMemberDevicesError.h" -#import "DBTEAMListMemberDevicesResult.h" -#import "DBTEAMListMembersAppsArg.h" -#import "DBTEAMListMembersAppsError.h" -#import "DBTEAMListMembersAppsResult.h" -#import "DBTEAMListMembersDevicesArg.h" -#import "DBTEAMListMembersDevicesError.h" -#import "DBTEAMListMembersDevicesResult.h" -#import "DBTEAMListTeamAppsArg.h" -#import "DBTEAMListTeamAppsError.h" -#import "DBTEAMListTeamAppsResult.h" -#import "DBTEAMListTeamDevicesArg.h" -#import "DBTEAMListTeamDevicesError.h" -#import "DBTEAMListTeamDevicesResult.h" -#import "DBTEAMMemberAccess.h" -#import "DBTEAMMemberAddArg.h" -#import "DBTEAMMemberAddArgBase.h" -#import "DBTEAMMemberAddResult.h" -#import "DBTEAMMemberAddResultBase.h" -#import "DBTEAMMemberAddV2Arg.h" -#import "DBTEAMMemberAddV2Result.h" -#import "DBTEAMMemberDevices.h" -#import "DBTEAMMemberLinkedApps.h" -#import "DBTEAMMemberProfile.h" -#import "DBTEAMMemberSelectorError.h" -#import "DBTEAMMembersAddArg.h" -#import "DBTEAMMembersAddArgBase.h" -#import "DBTEAMMembersAddJobStatus.h" -#import "DBTEAMMembersAddJobStatusV2Result.h" -#import "DBTEAMMembersAddLaunch.h" -#import "DBTEAMMembersAddLaunchV2Result.h" -#import "DBTEAMMembersAddV2Arg.h" -#import "DBTEAMMembersDataTransferArg.h" -#import "DBTEAMMembersDeactivateArg.h" -#import "DBTEAMMembersDeactivateBaseArg.h" -#import "DBTEAMMembersDeactivateError.h" -#import "DBTEAMMembersDeleteProfilePhotoArg.h" -#import "DBTEAMMembersDeleteProfilePhotoError.h" -#import "DBTEAMMembersGetAvailableTeamMemberRolesResult.h" -#import "DBTEAMMembersGetInfoArgs.h" -#import "DBTEAMMembersGetInfoError.h" -#import "DBTEAMMembersGetInfoItem.h" -#import "DBTEAMMembersGetInfoItemBase.h" -#import "DBTEAMMembersGetInfoItemV2.h" -#import "DBTEAMMembersGetInfoV2Arg.h" -#import "DBTEAMMembersGetInfoV2Result.h" -#import "DBTEAMMembersInfo.h" -#import "DBTEAMMembersListArg.h" -#import "DBTEAMMembersListContinueArg.h" -#import "DBTEAMMembersListContinueError.h" -#import "DBTEAMMembersListError.h" -#import "DBTEAMMembersListResult.h" -#import "DBTEAMMembersListV2Result.h" -#import "DBTEAMMembersRecoverArg.h" -#import "DBTEAMMembersRecoverError.h" -#import "DBTEAMMembersRemoveArg.h" -#import "DBTEAMMembersRemoveError.h" -#import "DBTEAMMembersSendWelcomeError.h" -#import "DBTEAMMembersSetPermissions2Arg.h" -#import "DBTEAMMembersSetPermissions2Error.h" -#import "DBTEAMMembersSetPermissions2Result.h" -#import "DBTEAMMembersSetPermissionsArg.h" -#import "DBTEAMMembersSetPermissionsError.h" -#import "DBTEAMMembersSetPermissionsResult.h" -#import "DBTEAMMembersSetProfileArg.h" -#import "DBTEAMMembersSetProfileError.h" -#import "DBTEAMMembersSetProfilePhotoArg.h" -#import "DBTEAMMembersSetProfilePhotoError.h" -#import "DBTEAMMembersSuspendError.h" -#import "DBTEAMMembersTransferFilesError.h" -#import "DBTEAMMembersTransferFormerMembersFilesError.h" -#import "DBTEAMMembersUnsuspendArg.h" -#import "DBTEAMMembersUnsuspendError.h" -#import "DBTEAMMobileClientPlatform.h" -#import "DBTEAMMobileClientSession.h" -#import "DBTEAMNamespaceMetadata.h" -#import "DBTEAMNamespaceType.h" -#import "DBTEAMRemoveCustomQuotaResult.h" -#import "DBTEAMRemovedStatus.h" -#import "DBTEAMResendSecondaryEmailResult.h" -#import "DBTEAMResendVerificationEmailArg.h" -#import "DBTEAMResendVerificationEmailResult.h" -#import "DBTEAMRevokeDesktopClientArg.h" -#import "DBTEAMRevokeDeviceSessionArg.h" -#import "DBTEAMRevokeDeviceSessionBatchArg.h" -#import "DBTEAMRevokeDeviceSessionBatchError.h" -#import "DBTEAMRevokeDeviceSessionBatchResult.h" -#import "DBTEAMRevokeDeviceSessionError.h" -#import "DBTEAMRevokeDeviceSessionStatus.h" -#import "DBTEAMRevokeLinkedApiAppArg.h" -#import "DBTEAMRevokeLinkedApiAppBatchArg.h" -#import "DBTEAMRevokeLinkedAppBatchError.h" -#import "DBTEAMRevokeLinkedAppBatchResult.h" -#import "DBTEAMRevokeLinkedAppError.h" -#import "DBTEAMRevokeLinkedAppStatus.h" -#import "DBTEAMSetCustomQuotaArg.h" -#import "DBTEAMSetCustomQuotaError.h" -#import "DBTEAMSharingAllowlistAddArgs.h" -#import "DBTEAMSharingAllowlistAddError.h" -#import "DBTEAMSharingAllowlistAddResponse.h" -#import "DBTEAMSharingAllowlistListArg.h" -#import "DBTEAMSharingAllowlistListContinueArg.h" -#import "DBTEAMSharingAllowlistListContinueError.h" -#import "DBTEAMSharingAllowlistListError.h" -#import "DBTEAMSharingAllowlistListResponse.h" -#import "DBTEAMSharingAllowlistRemoveArgs.h" -#import "DBTEAMSharingAllowlistRemoveError.h" -#import "DBTEAMSharingAllowlistRemoveResponse.h" -#import "DBTEAMStorageBucket.h" -#import "DBTEAMTeamFolderAccessError.h" -#import "DBTEAMTeamFolderActivateError.h" -#import "DBTEAMTeamFolderArchiveArg.h" -#import "DBTEAMTeamFolderArchiveError.h" -#import "DBTEAMTeamFolderArchiveJobStatus.h" -#import "DBTEAMTeamFolderArchiveLaunch.h" -#import "DBTEAMTeamFolderCreateArg.h" -#import "DBTEAMTeamFolderCreateError.h" -#import "DBTEAMTeamFolderGetInfoItem.h" -#import "DBTEAMTeamFolderIdArg.h" -#import "DBTEAMTeamFolderIdListArg.h" -#import "DBTEAMTeamFolderInvalidStatusError.h" -#import "DBTEAMTeamFolderListArg.h" -#import "DBTEAMTeamFolderListContinueArg.h" -#import "DBTEAMTeamFolderListContinueError.h" -#import "DBTEAMTeamFolderListError.h" -#import "DBTEAMTeamFolderListResult.h" -#import "DBTEAMTeamFolderMetadata.h" -#import "DBTEAMTeamFolderPermanentlyDeleteError.h" -#import "DBTEAMTeamFolderRenameArg.h" -#import "DBTEAMTeamFolderRenameError.h" -#import "DBTEAMTeamFolderStatus.h" -#import "DBTEAMTeamFolderTeamSharedDropboxError.h" -#import "DBTEAMTeamFolderUpdateSyncSettingsArg.h" -#import "DBTEAMTeamFolderUpdateSyncSettingsError.h" -#import "DBTEAMTeamGetInfoResult.h" -#import "DBTEAMTeamMemberInfo.h" -#import "DBTEAMTeamMemberInfoV2.h" -#import "DBTEAMTeamMemberInfoV2Result.h" -#import "DBTEAMTeamMemberProfile.h" -#import "DBTEAMTeamMemberRole.h" -#import "DBTEAMTeamMemberStatus.h" -#import "DBTEAMTeamMembershipType.h" -#import "DBTEAMTeamNamespacesListArg.h" -#import "DBTEAMTeamNamespacesListContinueArg.h" -#import "DBTEAMTeamNamespacesListContinueError.h" -#import "DBTEAMTeamNamespacesListError.h" -#import "DBTEAMTeamNamespacesListResult.h" -#import "DBTEAMTeamReportFailureReason.h" -#import "DBTEAMTokenGetAuthenticatedAdminError.h" -#import "DBTEAMTokenGetAuthenticatedAdminResult.h" -#import "DBTEAMUploadApiRateLimitValue.h" -#import "DBTEAMUserAddResult.h" -#import "DBTEAMUserCustomQuotaArg.h" -#import "DBTEAMUserCustomQuotaResult.h" -#import "DBTEAMUserDeleteEmailsResult.h" -#import "DBTEAMUserDeleteResult.h" -#import "DBTEAMUserResendEmailsResult.h" -#import "DBTEAMUserResendResult.h" -#import "DBTEAMUserSecondaryEmailsArg.h" -#import "DBTEAMUserSecondaryEmailsResult.h" -#import "DBTEAMUserSelectorArg.h" -#import "DBTEAMUserSelectorError.h" -#import "DBTEAMUsersSelectorArg.h" - - -// `TeamCommon` namespace types - -#import "DBTEAMCOMMONGroupManagementType.h" -#import "DBTEAMCOMMONGroupSummary.h" -#import "DBTEAMCOMMONGroupType.h" -#import "DBTEAMCOMMONMemberSpaceLimitType.h" -#import "DBTEAMCOMMONTimeRange.h" - - -// `TeamLog` namespace types - -#import "DBTEAMLOGAccessMethodLogInfo.h" -#import "DBTEAMLOGAccountCaptureAvailability.h" -#import "DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h" -#import "DBTEAMLOGAccountCaptureChangeAvailabilityType.h" -#import "DBTEAMLOGAccountCaptureChangePolicyDetails.h" -#import "DBTEAMLOGAccountCaptureChangePolicyType.h" -#import "DBTEAMLOGAccountCaptureMigrateAccountDetails.h" -#import "DBTEAMLOGAccountCaptureMigrateAccountType.h" -#import "DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h" -#import "DBTEAMLOGAccountCaptureNotificationEmailsSentType.h" -#import "DBTEAMLOGAccountCaptureNotificationType.h" -#import "DBTEAMLOGAccountCapturePolicy.h" -#import "DBTEAMLOGAccountCaptureRelinquishAccountDetails.h" -#import "DBTEAMLOGAccountCaptureRelinquishAccountType.h" -#import "DBTEAMLOGAccountLockOrUnlockedDetails.h" -#import "DBTEAMLOGAccountLockOrUnlockedType.h" -#import "DBTEAMLOGAccountState.h" -#import "DBTEAMLOGActionDetails.h" -#import "DBTEAMLOGActorLogInfo.h" -#import "DBTEAMLOGAdminAlertCategoryEnum.h" -#import "DBTEAMLOGAdminAlertGeneralStateEnum.h" -#import "DBTEAMLOGAdminAlertSeverityEnum.h" -#import "DBTEAMLOGAdminAlertingAlertConfiguration.h" -#import "DBTEAMLOGAdminAlertingAlertSensitivity.h" -#import "DBTEAMLOGAdminAlertingAlertStateChangedDetails.h" -#import "DBTEAMLOGAdminAlertingAlertStateChangedType.h" -#import "DBTEAMLOGAdminAlertingAlertStatePolicy.h" -#import "DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h" -#import "DBTEAMLOGAdminAlertingChangedAlertConfigType.h" -#import "DBTEAMLOGAdminAlertingTriggeredAlertDetails.h" -#import "DBTEAMLOGAdminAlertingTriggeredAlertType.h" -#import "DBTEAMLOGAdminConsoleAppPermission.h" -#import "DBTEAMLOGAdminConsoleAppPolicy.h" -#import "DBTEAMLOGAdminEmailRemindersChangedDetails.h" -#import "DBTEAMLOGAdminEmailRemindersChangedType.h" -#import "DBTEAMLOGAdminEmailRemindersPolicy.h" -#import "DBTEAMLOGAdminRole.h" -#import "DBTEAMLOGAlertRecipientsSettingType.h" -#import "DBTEAMLOGAllowDownloadDisabledDetails.h" -#import "DBTEAMLOGAllowDownloadDisabledType.h" -#import "DBTEAMLOGAllowDownloadEnabledDetails.h" -#import "DBTEAMLOGAllowDownloadEnabledType.h" -#import "DBTEAMLOGApiSessionLogInfo.h" -#import "DBTEAMLOGAppBlockedByPermissionsDetails.h" -#import "DBTEAMLOGAppBlockedByPermissionsType.h" -#import "DBTEAMLOGAppLinkTeamDetails.h" -#import "DBTEAMLOGAppLinkTeamType.h" -#import "DBTEAMLOGAppLinkUserDetails.h" -#import "DBTEAMLOGAppLinkUserType.h" -#import "DBTEAMLOGAppLogInfo.h" -#import "DBTEAMLOGAppPermissionsChangedDetails.h" -#import "DBTEAMLOGAppPermissionsChangedType.h" -#import "DBTEAMLOGAppUnlinkTeamDetails.h" -#import "DBTEAMLOGAppUnlinkTeamType.h" -#import "DBTEAMLOGAppUnlinkUserDetails.h" -#import "DBTEAMLOGAppUnlinkUserType.h" -#import "DBTEAMLOGApplyNamingConventionDetails.h" -#import "DBTEAMLOGApplyNamingConventionType.h" -#import "DBTEAMLOGAssetLogInfo.h" -#import "DBTEAMLOGBackupAdminInvitationSentDetails.h" -#import "DBTEAMLOGBackupAdminInvitationSentType.h" -#import "DBTEAMLOGBackupInvitationOpenedDetails.h" -#import "DBTEAMLOGBackupInvitationOpenedType.h" -#import "DBTEAMLOGBackupStatus.h" -#import "DBTEAMLOGBinderAddPageDetails.h" -#import "DBTEAMLOGBinderAddPageType.h" -#import "DBTEAMLOGBinderAddSectionDetails.h" -#import "DBTEAMLOGBinderAddSectionType.h" -#import "DBTEAMLOGBinderRemovePageDetails.h" -#import "DBTEAMLOGBinderRemovePageType.h" -#import "DBTEAMLOGBinderRemoveSectionDetails.h" -#import "DBTEAMLOGBinderRemoveSectionType.h" -#import "DBTEAMLOGBinderRenamePageDetails.h" -#import "DBTEAMLOGBinderRenamePageType.h" -#import "DBTEAMLOGBinderRenameSectionDetails.h" -#import "DBTEAMLOGBinderRenameSectionType.h" -#import "DBTEAMLOGBinderReorderPageDetails.h" -#import "DBTEAMLOGBinderReorderPageType.h" -#import "DBTEAMLOGBinderReorderSectionDetails.h" -#import "DBTEAMLOGBinderReorderSectionType.h" -#import "DBTEAMLOGCameraUploadsPolicy.h" -#import "DBTEAMLOGCameraUploadsPolicyChangedDetails.h" -#import "DBTEAMLOGCameraUploadsPolicyChangedType.h" -#import "DBTEAMLOGCaptureTranscriptPolicy.h" -#import "DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h" -#import "DBTEAMLOGCaptureTranscriptPolicyChangedType.h" -#import "DBTEAMLOGCertificate.h" -#import "DBTEAMLOGChangeLinkExpirationPolicy.h" -#import "DBTEAMLOGChangedEnterpriseAdminRoleDetails.h" -#import "DBTEAMLOGChangedEnterpriseAdminRoleType.h" -#import "DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h" -#import "DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h" -#import "DBTEAMLOGClassificationChangePolicyDetails.h" -#import "DBTEAMLOGClassificationChangePolicyType.h" -#import "DBTEAMLOGClassificationCreateReportDetails.h" -#import "DBTEAMLOGClassificationCreateReportFailDetails.h" -#import "DBTEAMLOGClassificationCreateReportFailType.h" -#import "DBTEAMLOGClassificationCreateReportType.h" -#import "DBTEAMLOGClassificationPolicyEnumWrapper.h" -#import "DBTEAMLOGClassificationType.h" -#import "DBTEAMLOGCollectionShareDetails.h" -#import "DBTEAMLOGCollectionShareType.h" -#import "DBTEAMLOGComputerBackupPolicy.h" -#import "DBTEAMLOGComputerBackupPolicyChangedDetails.h" -#import "DBTEAMLOGComputerBackupPolicyChangedType.h" -#import "DBTEAMLOGConnectedTeamName.h" -#import "DBTEAMLOGContentAdministrationPolicyChangedDetails.h" -#import "DBTEAMLOGContentAdministrationPolicyChangedType.h" -#import "DBTEAMLOGContentPermanentDeletePolicy.h" -#import "DBTEAMLOGContextLogInfo.h" -#import "DBTEAMLOGCreateFolderDetails.h" -#import "DBTEAMLOGCreateFolderType.h" -#import "DBTEAMLOGCreateTeamInviteLinkDetails.h" -#import "DBTEAMLOGCreateTeamInviteLinkType.h" -#import "DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h" -#import "DBTEAMLOGDataPlacementRestrictionChangePolicyType.h" -#import "DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h" -#import "DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h" -#import "DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h" -#import "DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h" -#import "DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h" -#import "DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h" -#import "DBTEAMLOGDefaultLinkExpirationDaysPolicy.h" -#import "DBTEAMLOGDeleteTeamInviteLinkDetails.h" -#import "DBTEAMLOGDeleteTeamInviteLinkType.h" -#import "DBTEAMLOGDesktopDeviceSessionLogInfo.h" -#import "DBTEAMLOGDesktopSessionLogInfo.h" -#import "DBTEAMLOGDeviceApprovalsAddExceptionDetails.h" -#import "DBTEAMLOGDeviceApprovalsAddExceptionType.h" -#import "DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h" -#import "DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h" -#import "DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeOverageActionType.h" -#import "DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h" -#import "DBTEAMLOGDeviceApprovalsPolicy.h" -#import "DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h" -#import "DBTEAMLOGDeviceApprovalsRemoveExceptionType.h" -#import "DBTEAMLOGDeviceChangeIpDesktopDetails.h" -#import "DBTEAMLOGDeviceChangeIpDesktopType.h" -#import "DBTEAMLOGDeviceChangeIpMobileDetails.h" -#import "DBTEAMLOGDeviceChangeIpMobileType.h" -#import "DBTEAMLOGDeviceChangeIpWebDetails.h" -#import "DBTEAMLOGDeviceChangeIpWebType.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkFailType.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h" -#import "DBTEAMLOGDeviceLinkFailDetails.h" -#import "DBTEAMLOGDeviceLinkFailType.h" -#import "DBTEAMLOGDeviceLinkSuccessDetails.h" -#import "DBTEAMLOGDeviceLinkSuccessType.h" -#import "DBTEAMLOGDeviceManagementDisabledDetails.h" -#import "DBTEAMLOGDeviceManagementDisabledType.h" -#import "DBTEAMLOGDeviceManagementEnabledDetails.h" -#import "DBTEAMLOGDeviceManagementEnabledType.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" -#import "DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h" -#import "DBTEAMLOGDeviceSyncBackupStatusChangedType.h" -#import "DBTEAMLOGDeviceType.h" -#import "DBTEAMLOGDeviceUnlinkDetails.h" -#import "DBTEAMLOGDeviceUnlinkPolicy.h" -#import "DBTEAMLOGDeviceUnlinkType.h" -#import "DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h" -#import "DBTEAMLOGDirectoryRestrictionsAddMembersType.h" -#import "DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h" -#import "DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h" -#import "DBTEAMLOGDisabledDomainInvitesDetails.h" -#import "DBTEAMLOGDisabledDomainInvitesType.h" -#import "DBTEAMLOGDispositionActionType.h" -#import "DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h" -#import "DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h" -#import "DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h" -#import "DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h" -#import "DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h" -#import "DBTEAMLOGDomainInvitesEmailExistingUsersType.h" -#import "DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h" -#import "DBTEAMLOGDomainInvitesRequestToJoinTeamType.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h" -#import "DBTEAMLOGDomainVerificationAddDomainFailDetails.h" -#import "DBTEAMLOGDomainVerificationAddDomainFailType.h" -#import "DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h" -#import "DBTEAMLOGDomainVerificationAddDomainSuccessType.h" -#import "DBTEAMLOGDomainVerificationRemoveDomainDetails.h" -#import "DBTEAMLOGDomainVerificationRemoveDomainType.h" -#import "DBTEAMLOGDownloadPolicyType.h" -#import "DBTEAMLOGDropboxPasswordsExportedDetails.h" -#import "DBTEAMLOGDropboxPasswordsExportedType.h" -#import "DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h" -#import "DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h" -#import "DBTEAMLOGDropboxPasswordsPolicy.h" -#import "DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h" -#import "DBTEAMLOGDropboxPasswordsPolicyChangedType.h" -#import "DBTEAMLOGDurationLogInfo.h" -#import "DBTEAMLOGEmailIngestPolicy.h" -#import "DBTEAMLOGEmailIngestPolicyChangedDetails.h" -#import "DBTEAMLOGEmailIngestPolicyChangedType.h" -#import "DBTEAMLOGEmailIngestReceiveFileDetails.h" -#import "DBTEAMLOGEmailIngestReceiveFileType.h" -#import "DBTEAMLOGEmmAddExceptionDetails.h" -#import "DBTEAMLOGEmmAddExceptionType.h" -#import "DBTEAMLOGEmmChangePolicyDetails.h" -#import "DBTEAMLOGEmmChangePolicyType.h" -#import "DBTEAMLOGEmmCreateExceptionsReportDetails.h" -#import "DBTEAMLOGEmmCreateExceptionsReportType.h" -#import "DBTEAMLOGEmmCreateUsageReportDetails.h" -#import "DBTEAMLOGEmmCreateUsageReportType.h" -#import "DBTEAMLOGEmmErrorDetails.h" -#import "DBTEAMLOGEmmErrorType.h" -#import "DBTEAMLOGEmmRefreshAuthTokenDetails.h" -#import "DBTEAMLOGEmmRefreshAuthTokenType.h" -#import "DBTEAMLOGEmmRemoveExceptionDetails.h" -#import "DBTEAMLOGEmmRemoveExceptionType.h" -#import "DBTEAMLOGEnabledDomainInvitesDetails.h" -#import "DBTEAMLOGEnabledDomainInvitesType.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionDetails.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionType.h" -#import "DBTEAMLOGEnforceLinkPasswordPolicy.h" -#import "DBTEAMLOGEnterpriseSettingsLockingDetails.h" -#import "DBTEAMLOGEnterpriseSettingsLockingType.h" -#import "DBTEAMLOGEventCategory.h" -#import "DBTEAMLOGEventDetails.h" -#import "DBTEAMLOGEventType.h" -#import "DBTEAMLOGEventTypeArg.h" -#import "DBTEAMLOGExportMembersReportDetails.h" -#import "DBTEAMLOGExportMembersReportFailDetails.h" -#import "DBTEAMLOGExportMembersReportFailType.h" -#import "DBTEAMLOGExportMembersReportType.h" -#import "DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h" -#import "DBTEAMLOGExtendedVersionHistoryChangePolicyType.h" -#import "DBTEAMLOGExtendedVersionHistoryPolicy.h" -#import "DBTEAMLOGExternalDriveBackupEligibilityStatus.h" -#import "DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h" -#import "DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h" -#import "DBTEAMLOGExternalDriveBackupPolicy.h" -#import "DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h" -#import "DBTEAMLOGExternalDriveBackupPolicyChangedType.h" -#import "DBTEAMLOGExternalDriveBackupStatus.h" -#import "DBTEAMLOGExternalDriveBackupStatusChangedDetails.h" -#import "DBTEAMLOGExternalDriveBackupStatusChangedType.h" -#import "DBTEAMLOGExternalSharingCreateReportDetails.h" -#import "DBTEAMLOGExternalSharingCreateReportType.h" -#import "DBTEAMLOGExternalSharingReportFailedDetails.h" -#import "DBTEAMLOGExternalSharingReportFailedType.h" -#import "DBTEAMLOGExternalUserLogInfo.h" -#import "DBTEAMLOGFailureDetailsLogInfo.h" -#import "DBTEAMLOGFedAdminRole.h" -#import "DBTEAMLOGFedExtraDetails.h" -#import "DBTEAMLOGFedHandshakeAction.h" -#import "DBTEAMLOGFederationStatusChangeAdditionalInfo.h" -#import "DBTEAMLOGFileAddCommentDetails.h" -#import "DBTEAMLOGFileAddCommentType.h" -#import "DBTEAMLOGFileAddDetails.h" -#import "DBTEAMLOGFileAddFromAutomationDetails.h" -#import "DBTEAMLOGFileAddFromAutomationType.h" -#import "DBTEAMLOGFileAddType.h" -#import "DBTEAMLOGFileChangeCommentSubscriptionDetails.h" -#import "DBTEAMLOGFileChangeCommentSubscriptionType.h" -#import "DBTEAMLOGFileCommentNotificationPolicy.h" -#import "DBTEAMLOGFileCommentsChangePolicyDetails.h" -#import "DBTEAMLOGFileCommentsChangePolicyType.h" -#import "DBTEAMLOGFileCommentsPolicy.h" -#import "DBTEAMLOGFileCopyDetails.h" -#import "DBTEAMLOGFileCopyType.h" -#import "DBTEAMLOGFileDeleteCommentDetails.h" -#import "DBTEAMLOGFileDeleteCommentType.h" -#import "DBTEAMLOGFileDeleteDetails.h" -#import "DBTEAMLOGFileDeleteType.h" -#import "DBTEAMLOGFileDownloadDetails.h" -#import "DBTEAMLOGFileDownloadType.h" -#import "DBTEAMLOGFileEditCommentDetails.h" -#import "DBTEAMLOGFileEditCommentType.h" -#import "DBTEAMLOGFileEditDetails.h" -#import "DBTEAMLOGFileEditType.h" -#import "DBTEAMLOGFileGetCopyReferenceDetails.h" -#import "DBTEAMLOGFileGetCopyReferenceType.h" -#import "DBTEAMLOGFileLikeCommentDetails.h" -#import "DBTEAMLOGFileLikeCommentType.h" -#import "DBTEAMLOGFileLockingLockStatusChangedDetails.h" -#import "DBTEAMLOGFileLockingLockStatusChangedType.h" -#import "DBTEAMLOGFileLockingPolicyChangedDetails.h" -#import "DBTEAMLOGFileLockingPolicyChangedType.h" -#import "DBTEAMLOGFileLogInfo.h" -#import "DBTEAMLOGFileMoveDetails.h" -#import "DBTEAMLOGFileMoveType.h" -#import "DBTEAMLOGFileOrFolderLogInfo.h" -#import "DBTEAMLOGFilePermanentlyDeleteDetails.h" -#import "DBTEAMLOGFilePermanentlyDeleteType.h" -#import "DBTEAMLOGFilePreviewDetails.h" -#import "DBTEAMLOGFilePreviewType.h" -#import "DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h" -#import "DBTEAMLOGFileProviderMigrationPolicyChangedType.h" -#import "DBTEAMLOGFileRenameDetails.h" -#import "DBTEAMLOGFileRenameType.h" -#import "DBTEAMLOGFileRequestChangeDetails.h" -#import "DBTEAMLOGFileRequestChangeType.h" -#import "DBTEAMLOGFileRequestCloseDetails.h" -#import "DBTEAMLOGFileRequestCloseType.h" -#import "DBTEAMLOGFileRequestCreateDetails.h" -#import "DBTEAMLOGFileRequestCreateType.h" -#import "DBTEAMLOGFileRequestDeadline.h" -#import "DBTEAMLOGFileRequestDeleteDetails.h" -#import "DBTEAMLOGFileRequestDeleteType.h" -#import "DBTEAMLOGFileRequestDetails.h" -#import "DBTEAMLOGFileRequestReceiveFileDetails.h" -#import "DBTEAMLOGFileRequestReceiveFileType.h" -#import "DBTEAMLOGFileRequestsChangePolicyDetails.h" -#import "DBTEAMLOGFileRequestsChangePolicyType.h" -#import "DBTEAMLOGFileRequestsEmailsEnabledDetails.h" -#import "DBTEAMLOGFileRequestsEmailsEnabledType.h" -#import "DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h" -#import "DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h" -#import "DBTEAMLOGFileRequestsPolicy.h" -#import "DBTEAMLOGFileResolveCommentDetails.h" -#import "DBTEAMLOGFileResolveCommentType.h" -#import "DBTEAMLOGFileRestoreDetails.h" -#import "DBTEAMLOGFileRestoreType.h" -#import "DBTEAMLOGFileRevertDetails.h" -#import "DBTEAMLOGFileRevertType.h" -#import "DBTEAMLOGFileRollbackChangesDetails.h" -#import "DBTEAMLOGFileRollbackChangesType.h" -#import "DBTEAMLOGFileSaveCopyReferenceDetails.h" -#import "DBTEAMLOGFileSaveCopyReferenceType.h" -#import "DBTEAMLOGFileTransfersFileAddDetails.h" -#import "DBTEAMLOGFileTransfersFileAddType.h" -#import "DBTEAMLOGFileTransfersPolicy.h" -#import "DBTEAMLOGFileTransfersPolicyChangedDetails.h" -#import "DBTEAMLOGFileTransfersPolicyChangedType.h" -#import "DBTEAMLOGFileTransfersTransferDeleteDetails.h" -#import "DBTEAMLOGFileTransfersTransferDeleteType.h" -#import "DBTEAMLOGFileTransfersTransferDownloadDetails.h" -#import "DBTEAMLOGFileTransfersTransferDownloadType.h" -#import "DBTEAMLOGFileTransfersTransferSendDetails.h" -#import "DBTEAMLOGFileTransfersTransferSendType.h" -#import "DBTEAMLOGFileTransfersTransferViewDetails.h" -#import "DBTEAMLOGFileTransfersTransferViewType.h" -#import "DBTEAMLOGFileUnlikeCommentDetails.h" -#import "DBTEAMLOGFileUnlikeCommentType.h" -#import "DBTEAMLOGFileUnresolveCommentDetails.h" -#import "DBTEAMLOGFileUnresolveCommentType.h" -#import "DBTEAMLOGFolderLinkRestrictionPolicy.h" -#import "DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h" -#import "DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h" -#import "DBTEAMLOGFolderLogInfo.h" -#import "DBTEAMLOGFolderOverviewDescriptionChangedDetails.h" -#import "DBTEAMLOGFolderOverviewDescriptionChangedType.h" -#import "DBTEAMLOGFolderOverviewItemPinnedDetails.h" -#import "DBTEAMLOGFolderOverviewItemPinnedType.h" -#import "DBTEAMLOGFolderOverviewItemUnpinnedDetails.h" -#import "DBTEAMLOGFolderOverviewItemUnpinnedType.h" -#import "DBTEAMLOGGeoLocationLogInfo.h" -#import "DBTEAMLOGGetTeamEventsArg.h" -#import "DBTEAMLOGGetTeamEventsContinueArg.h" -#import "DBTEAMLOGGetTeamEventsContinueError.h" -#import "DBTEAMLOGGetTeamEventsError.h" -#import "DBTEAMLOGGetTeamEventsResult.h" -#import "DBTEAMLOGGoogleSsoChangePolicyDetails.h" -#import "DBTEAMLOGGoogleSsoChangePolicyType.h" -#import "DBTEAMLOGGoogleSsoPolicy.h" -#import "DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h" -#import "DBTEAMLOGGovernancePolicyAddFolderFailedType.h" -#import "DBTEAMLOGGovernancePolicyAddFoldersDetails.h" -#import "DBTEAMLOGGovernancePolicyAddFoldersType.h" -#import "DBTEAMLOGGovernancePolicyContentDisposedDetails.h" -#import "DBTEAMLOGGovernancePolicyContentDisposedType.h" -#import "DBTEAMLOGGovernancePolicyCreateDetails.h" -#import "DBTEAMLOGGovernancePolicyCreateType.h" -#import "DBTEAMLOGGovernancePolicyDeleteDetails.h" -#import "DBTEAMLOGGovernancePolicyDeleteType.h" -#import "DBTEAMLOGGovernancePolicyEditDetailsDetails.h" -#import "DBTEAMLOGGovernancePolicyEditDetailsType.h" -#import "DBTEAMLOGGovernancePolicyEditDurationDetails.h" -#import "DBTEAMLOGGovernancePolicyEditDurationType.h" -#import "DBTEAMLOGGovernancePolicyExportCreatedDetails.h" -#import "DBTEAMLOGGovernancePolicyExportCreatedType.h" -#import "DBTEAMLOGGovernancePolicyExportRemovedDetails.h" -#import "DBTEAMLOGGovernancePolicyExportRemovedType.h" -#import "DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h" -#import "DBTEAMLOGGovernancePolicyRemoveFoldersType.h" -#import "DBTEAMLOGGovernancePolicyReportCreatedDetails.h" -#import "DBTEAMLOGGovernancePolicyReportCreatedType.h" -#import "DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h" -#import "DBTEAMLOGGovernancePolicyZipPartDownloadedType.h" -#import "DBTEAMLOGGroupAddExternalIdDetails.h" -#import "DBTEAMLOGGroupAddExternalIdType.h" -#import "DBTEAMLOGGroupAddMemberDetails.h" -#import "DBTEAMLOGGroupAddMemberType.h" -#import "DBTEAMLOGGroupChangeExternalIdDetails.h" -#import "DBTEAMLOGGroupChangeExternalIdType.h" -#import "DBTEAMLOGGroupChangeManagementTypeDetails.h" -#import "DBTEAMLOGGroupChangeManagementTypeType.h" -#import "DBTEAMLOGGroupChangeMemberRoleDetails.h" -#import "DBTEAMLOGGroupChangeMemberRoleType.h" -#import "DBTEAMLOGGroupCreateDetails.h" -#import "DBTEAMLOGGroupCreateType.h" -#import "DBTEAMLOGGroupDeleteDetails.h" -#import "DBTEAMLOGGroupDeleteType.h" -#import "DBTEAMLOGGroupDescriptionUpdatedDetails.h" -#import "DBTEAMLOGGroupDescriptionUpdatedType.h" -#import "DBTEAMLOGGroupJoinPolicy.h" -#import "DBTEAMLOGGroupJoinPolicyUpdatedDetails.h" -#import "DBTEAMLOGGroupJoinPolicyUpdatedType.h" -#import "DBTEAMLOGGroupLogInfo.h" -#import "DBTEAMLOGGroupMovedDetails.h" -#import "DBTEAMLOGGroupMovedType.h" -#import "DBTEAMLOGGroupRemoveExternalIdDetails.h" -#import "DBTEAMLOGGroupRemoveExternalIdType.h" -#import "DBTEAMLOGGroupRemoveMemberDetails.h" -#import "DBTEAMLOGGroupRemoveMemberType.h" -#import "DBTEAMLOGGroupRenameDetails.h" -#import "DBTEAMLOGGroupRenameType.h" -#import "DBTEAMLOGGroupUserManagementChangePolicyDetails.h" -#import "DBTEAMLOGGroupUserManagementChangePolicyType.h" -#import "DBTEAMLOGGuestAdminChangeStatusDetails.h" -#import "DBTEAMLOGGuestAdminChangeStatusType.h" -#import "DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h" -#import "DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h" -#import "DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h" -#import "DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h" -#import "DBTEAMLOGIdentifierType.h" -#import "DBTEAMLOGIntegrationConnectedDetails.h" -#import "DBTEAMLOGIntegrationConnectedType.h" -#import "DBTEAMLOGIntegrationDisconnectedDetails.h" -#import "DBTEAMLOGIntegrationDisconnectedType.h" -#import "DBTEAMLOGIntegrationPolicy.h" -#import "DBTEAMLOGIntegrationPolicyChangedDetails.h" -#import "DBTEAMLOGIntegrationPolicyChangedType.h" -#import "DBTEAMLOGInviteAcceptanceEmailPolicy.h" -#import "DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h" -#import "DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h" -#import "DBTEAMLOGInviteMethod.h" -#import "DBTEAMLOGJoinTeamDetails.h" -#import "DBTEAMLOGLabelType.h" -#import "DBTEAMLOGLegacyDeviceSessionLogInfo.h" -#import "DBTEAMLOGLegalHoldsActivateAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsActivateAHoldType.h" -#import "DBTEAMLOGLegalHoldsAddMembersDetails.h" -#import "DBTEAMLOGLegalHoldsAddMembersType.h" -#import "DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h" -#import "DBTEAMLOGLegalHoldsChangeHoldDetailsType.h" -#import "DBTEAMLOGLegalHoldsChangeHoldNameDetails.h" -#import "DBTEAMLOGLegalHoldsChangeHoldNameType.h" -#import "DBTEAMLOGLegalHoldsExportAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsExportAHoldType.h" -#import "DBTEAMLOGLegalHoldsExportCancelledDetails.h" -#import "DBTEAMLOGLegalHoldsExportCancelledType.h" -#import "DBTEAMLOGLegalHoldsExportDownloadedDetails.h" -#import "DBTEAMLOGLegalHoldsExportDownloadedType.h" -#import "DBTEAMLOGLegalHoldsExportRemovedDetails.h" -#import "DBTEAMLOGLegalHoldsExportRemovedType.h" -#import "DBTEAMLOGLegalHoldsReleaseAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsReleaseAHoldType.h" -#import "DBTEAMLOGLegalHoldsRemoveMembersDetails.h" -#import "DBTEAMLOGLegalHoldsRemoveMembersType.h" -#import "DBTEAMLOGLegalHoldsReportAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsReportAHoldType.h" -#import "DBTEAMLOGLinkedDeviceLogInfo.h" -#import "DBTEAMLOGLockStatus.h" -#import "DBTEAMLOGLoginFailDetails.h" -#import "DBTEAMLOGLoginFailType.h" -#import "DBTEAMLOGLoginMethod.h" -#import "DBTEAMLOGLoginSuccessDetails.h" -#import "DBTEAMLOGLoginSuccessType.h" -#import "DBTEAMLOGLogoutDetails.h" -#import "DBTEAMLOGLogoutType.h" -#import "DBTEAMLOGMemberAddExternalIdDetails.h" -#import "DBTEAMLOGMemberAddExternalIdType.h" -#import "DBTEAMLOGMemberAddNameDetails.h" -#import "DBTEAMLOGMemberAddNameType.h" -#import "DBTEAMLOGMemberChangeAdminRoleDetails.h" -#import "DBTEAMLOGMemberChangeAdminRoleType.h" -#import "DBTEAMLOGMemberChangeEmailDetails.h" -#import "DBTEAMLOGMemberChangeEmailType.h" -#import "DBTEAMLOGMemberChangeExternalIdDetails.h" -#import "DBTEAMLOGMemberChangeExternalIdType.h" -#import "DBTEAMLOGMemberChangeMembershipTypeDetails.h" -#import "DBTEAMLOGMemberChangeMembershipTypeType.h" -#import "DBTEAMLOGMemberChangeNameDetails.h" -#import "DBTEAMLOGMemberChangeNameType.h" -#import "DBTEAMLOGMemberChangeResellerRoleDetails.h" -#import "DBTEAMLOGMemberChangeResellerRoleType.h" -#import "DBTEAMLOGMemberChangeStatusDetails.h" -#import "DBTEAMLOGMemberChangeStatusType.h" -#import "DBTEAMLOGMemberDeleteManualContactsDetails.h" -#import "DBTEAMLOGMemberDeleteManualContactsType.h" -#import "DBTEAMLOGMemberDeleteProfilePhotoDetails.h" -#import "DBTEAMLOGMemberDeleteProfilePhotoType.h" -#import "DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h" -#import "DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h" -#import "DBTEAMLOGMemberRemoveActionType.h" -#import "DBTEAMLOGMemberRemoveExternalIdDetails.h" -#import "DBTEAMLOGMemberRemoveExternalIdType.h" -#import "DBTEAMLOGMemberRequestsChangePolicyDetails.h" -#import "DBTEAMLOGMemberRequestsChangePolicyType.h" -#import "DBTEAMLOGMemberRequestsPolicy.h" -#import "DBTEAMLOGMemberSendInvitePolicy.h" -#import "DBTEAMLOGMemberSendInvitePolicyChangedDetails.h" -#import "DBTEAMLOGMemberSendInvitePolicyChangedType.h" -#import "DBTEAMLOGMemberSetProfilePhotoDetails.h" -#import "DBTEAMLOGMemberSetProfilePhotoType.h" -#import "DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h" -#import "DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsAddExceptionType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangePolicyType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeStatusType.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h" -#import "DBTEAMLOGMemberStatus.h" -#import "DBTEAMLOGMemberSuggestDetails.h" -#import "DBTEAMLOGMemberSuggestType.h" -#import "DBTEAMLOGMemberSuggestionsChangePolicyDetails.h" -#import "DBTEAMLOGMemberSuggestionsChangePolicyType.h" -#import "DBTEAMLOGMemberSuggestionsPolicy.h" -#import "DBTEAMLOGMemberTransferAccountContentsDetails.h" -#import "DBTEAMLOGMemberTransferAccountContentsType.h" -#import "DBTEAMLOGMemberTransferredInternalFields.h" -#import "DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h" -#import "DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h" -#import "DBTEAMLOGMicrosoftOfficeAddinPolicy.h" -#import "DBTEAMLOGMissingDetails.h" -#import "DBTEAMLOGMobileDeviceSessionLogInfo.h" -#import "DBTEAMLOGMobileSessionLogInfo.h" -#import "DBTEAMLOGNamespaceRelativePathLogInfo.h" -#import "DBTEAMLOGNetworkControlChangePolicyDetails.h" -#import "DBTEAMLOGNetworkControlChangePolicyType.h" -#import "DBTEAMLOGNetworkControlPolicy.h" -#import "DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h" -#import "DBTEAMLOGNoExpirationLinkGenCreateReportType.h" -#import "DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h" -#import "DBTEAMLOGNoExpirationLinkGenReportFailedType.h" -#import "DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h" -#import "DBTEAMLOGNoPasswordLinkGenCreateReportType.h" -#import "DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h" -#import "DBTEAMLOGNoPasswordLinkGenReportFailedType.h" -#import "DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h" -#import "DBTEAMLOGNoPasswordLinkViewCreateReportType.h" -#import "DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h" -#import "DBTEAMLOGNoPasswordLinkViewReportFailedType.h" -#import "DBTEAMLOGNonTeamMemberLogInfo.h" -#import "DBTEAMLOGNonTrustedTeamDetails.h" -#import "DBTEAMLOGNoteAclInviteOnlyDetails.h" -#import "DBTEAMLOGNoteAclInviteOnlyType.h" -#import "DBTEAMLOGNoteAclLinkDetails.h" -#import "DBTEAMLOGNoteAclLinkType.h" -#import "DBTEAMLOGNoteAclTeamLinkDetails.h" -#import "DBTEAMLOGNoteAclTeamLinkType.h" -#import "DBTEAMLOGNoteShareReceiveDetails.h" -#import "DBTEAMLOGNoteShareReceiveType.h" -#import "DBTEAMLOGNoteSharedDetails.h" -#import "DBTEAMLOGNoteSharedType.h" -#import "DBTEAMLOGObjectLabelAddedDetails.h" -#import "DBTEAMLOGObjectLabelAddedType.h" -#import "DBTEAMLOGObjectLabelRemovedDetails.h" -#import "DBTEAMLOGObjectLabelRemovedType.h" -#import "DBTEAMLOGObjectLabelUpdatedValueDetails.h" -#import "DBTEAMLOGObjectLabelUpdatedValueType.h" -#import "DBTEAMLOGOpenNoteSharedDetails.h" -#import "DBTEAMLOGOpenNoteSharedType.h" -#import "DBTEAMLOGOrganizationDetails.h" -#import "DBTEAMLOGOrganizationName.h" -#import "DBTEAMLOGOrganizeFolderWithTidyDetails.h" -#import "DBTEAMLOGOrganizeFolderWithTidyType.h" -#import "DBTEAMLOGOriginLogInfo.h" -#import "DBTEAMLOGOutdatedLinkViewCreateReportDetails.h" -#import "DBTEAMLOGOutdatedLinkViewCreateReportType.h" -#import "DBTEAMLOGOutdatedLinkViewReportFailedDetails.h" -#import "DBTEAMLOGOutdatedLinkViewReportFailedType.h" -#import "DBTEAMLOGPaperAccessType.h" -#import "DBTEAMLOGPaperAdminExportStartDetails.h" -#import "DBTEAMLOGPaperAdminExportStartType.h" -#import "DBTEAMLOGPaperChangeDeploymentPolicyDetails.h" -#import "DBTEAMLOGPaperChangeDeploymentPolicyType.h" -#import "DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h" -#import "DBTEAMLOGPaperChangeMemberLinkPolicyType.h" -#import "DBTEAMLOGPaperChangeMemberPolicyDetails.h" -#import "DBTEAMLOGPaperChangeMemberPolicyType.h" -#import "DBTEAMLOGPaperChangePolicyDetails.h" -#import "DBTEAMLOGPaperChangePolicyType.h" -#import "DBTEAMLOGPaperContentAddMemberDetails.h" -#import "DBTEAMLOGPaperContentAddMemberType.h" -#import "DBTEAMLOGPaperContentAddToFolderDetails.h" -#import "DBTEAMLOGPaperContentAddToFolderType.h" -#import "DBTEAMLOGPaperContentArchiveDetails.h" -#import "DBTEAMLOGPaperContentArchiveType.h" -#import "DBTEAMLOGPaperContentCreateDetails.h" -#import "DBTEAMLOGPaperContentCreateType.h" -#import "DBTEAMLOGPaperContentPermanentlyDeleteDetails.h" -#import "DBTEAMLOGPaperContentPermanentlyDeleteType.h" -#import "DBTEAMLOGPaperContentRemoveFromFolderDetails.h" -#import "DBTEAMLOGPaperContentRemoveFromFolderType.h" -#import "DBTEAMLOGPaperContentRemoveMemberDetails.h" -#import "DBTEAMLOGPaperContentRemoveMemberType.h" -#import "DBTEAMLOGPaperContentRenameDetails.h" -#import "DBTEAMLOGPaperContentRenameType.h" -#import "DBTEAMLOGPaperContentRestoreDetails.h" -#import "DBTEAMLOGPaperContentRestoreType.h" -#import "DBTEAMLOGPaperDefaultFolderPolicy.h" -#import "DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h" -#import "DBTEAMLOGPaperDefaultFolderPolicyChangedType.h" -#import "DBTEAMLOGPaperDesktopPolicy.h" -#import "DBTEAMLOGPaperDesktopPolicyChangedDetails.h" -#import "DBTEAMLOGPaperDesktopPolicyChangedType.h" -#import "DBTEAMLOGPaperDocAddCommentDetails.h" -#import "DBTEAMLOGPaperDocAddCommentType.h" -#import "DBTEAMLOGPaperDocChangeMemberRoleDetails.h" -#import "DBTEAMLOGPaperDocChangeMemberRoleType.h" -#import "DBTEAMLOGPaperDocChangeSharingPolicyDetails.h" -#import "DBTEAMLOGPaperDocChangeSharingPolicyType.h" -#import "DBTEAMLOGPaperDocChangeSubscriptionDetails.h" -#import "DBTEAMLOGPaperDocChangeSubscriptionType.h" -#import "DBTEAMLOGPaperDocDeleteCommentDetails.h" -#import "DBTEAMLOGPaperDocDeleteCommentType.h" -#import "DBTEAMLOGPaperDocDeletedDetails.h" -#import "DBTEAMLOGPaperDocDeletedType.h" -#import "DBTEAMLOGPaperDocDownloadDetails.h" -#import "DBTEAMLOGPaperDocDownloadType.h" -#import "DBTEAMLOGPaperDocEditCommentDetails.h" -#import "DBTEAMLOGPaperDocEditCommentType.h" -#import "DBTEAMLOGPaperDocEditDetails.h" -#import "DBTEAMLOGPaperDocEditType.h" -#import "DBTEAMLOGPaperDocFollowedDetails.h" -#import "DBTEAMLOGPaperDocFollowedType.h" -#import "DBTEAMLOGPaperDocMentionDetails.h" -#import "DBTEAMLOGPaperDocMentionType.h" -#import "DBTEAMLOGPaperDocOwnershipChangedDetails.h" -#import "DBTEAMLOGPaperDocOwnershipChangedType.h" -#import "DBTEAMLOGPaperDocRequestAccessDetails.h" -#import "DBTEAMLOGPaperDocRequestAccessType.h" -#import "DBTEAMLOGPaperDocResolveCommentDetails.h" -#import "DBTEAMLOGPaperDocResolveCommentType.h" -#import "DBTEAMLOGPaperDocRevertDetails.h" -#import "DBTEAMLOGPaperDocRevertType.h" -#import "DBTEAMLOGPaperDocSlackShareDetails.h" -#import "DBTEAMLOGPaperDocSlackShareType.h" -#import "DBTEAMLOGPaperDocTeamInviteDetails.h" -#import "DBTEAMLOGPaperDocTeamInviteType.h" -#import "DBTEAMLOGPaperDocTrashedDetails.h" -#import "DBTEAMLOGPaperDocTrashedType.h" -#import "DBTEAMLOGPaperDocUnresolveCommentDetails.h" -#import "DBTEAMLOGPaperDocUnresolveCommentType.h" -#import "DBTEAMLOGPaperDocUntrashedDetails.h" -#import "DBTEAMLOGPaperDocUntrashedType.h" -#import "DBTEAMLOGPaperDocViewDetails.h" -#import "DBTEAMLOGPaperDocViewType.h" -#import "DBTEAMLOGPaperDocumentLogInfo.h" -#import "DBTEAMLOGPaperDownloadFormat.h" -#import "DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h" -#import "DBTEAMLOGPaperEnabledUsersGroupAdditionType.h" -#import "DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h" -#import "DBTEAMLOGPaperEnabledUsersGroupRemovalType.h" -#import "DBTEAMLOGPaperExternalViewAllowDetails.h" -#import "DBTEAMLOGPaperExternalViewAllowType.h" -#import "DBTEAMLOGPaperExternalViewDefaultTeamDetails.h" -#import "DBTEAMLOGPaperExternalViewDefaultTeamType.h" -#import "DBTEAMLOGPaperExternalViewForbidDetails.h" -#import "DBTEAMLOGPaperExternalViewForbidType.h" -#import "DBTEAMLOGPaperFolderChangeSubscriptionDetails.h" -#import "DBTEAMLOGPaperFolderChangeSubscriptionType.h" -#import "DBTEAMLOGPaperFolderDeletedDetails.h" -#import "DBTEAMLOGPaperFolderDeletedType.h" -#import "DBTEAMLOGPaperFolderFollowedDetails.h" -#import "DBTEAMLOGPaperFolderFollowedType.h" -#import "DBTEAMLOGPaperFolderLogInfo.h" -#import "DBTEAMLOGPaperFolderTeamInviteDetails.h" -#import "DBTEAMLOGPaperFolderTeamInviteType.h" -#import "DBTEAMLOGPaperMemberPolicy.h" -#import "DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h" -#import "DBTEAMLOGPaperPublishedLinkChangePermissionType.h" -#import "DBTEAMLOGPaperPublishedLinkCreateDetails.h" -#import "DBTEAMLOGPaperPublishedLinkCreateType.h" -#import "DBTEAMLOGPaperPublishedLinkDisabledDetails.h" -#import "DBTEAMLOGPaperPublishedLinkDisabledType.h" -#import "DBTEAMLOGPaperPublishedLinkViewDetails.h" -#import "DBTEAMLOGPaperPublishedLinkViewType.h" -#import "DBTEAMLOGParticipantLogInfo.h" -#import "DBTEAMLOGPassPolicy.h" -#import "DBTEAMLOGPasswordChangeDetails.h" -#import "DBTEAMLOGPasswordChangeType.h" -#import "DBTEAMLOGPasswordResetAllDetails.h" -#import "DBTEAMLOGPasswordResetAllType.h" -#import "DBTEAMLOGPasswordResetDetails.h" -#import "DBTEAMLOGPasswordResetType.h" -#import "DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h" -#import "DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h" -#import "DBTEAMLOGPathLogInfo.h" -#import "DBTEAMLOGPendingSecondaryEmailAddedDetails.h" -#import "DBTEAMLOGPendingSecondaryEmailAddedType.h" -#import "DBTEAMLOGPermanentDeleteChangePolicyDetails.h" -#import "DBTEAMLOGPermanentDeleteChangePolicyType.h" -#import "DBTEAMLOGPlacementRestriction.h" -#import "DBTEAMLOGPolicyType.h" -#import "DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h" -#import "DBTEAMLOGPrimaryTeamRequestCanceledDetails.h" -#import "DBTEAMLOGPrimaryTeamRequestExpiredDetails.h" -#import "DBTEAMLOGPrimaryTeamRequestReminderDetails.h" -#import "DBTEAMLOGQuickActionType.h" -#import "DBTEAMLOGRansomwareAlertCreateReportDetails.h" -#import "DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h" -#import "DBTEAMLOGRansomwareAlertCreateReportFailedType.h" -#import "DBTEAMLOGRansomwareAlertCreateReportType.h" -#import "DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h" -#import "DBTEAMLOGRansomwareRestoreProcessCompletedType.h" -#import "DBTEAMLOGRansomwareRestoreProcessStartedDetails.h" -#import "DBTEAMLOGRansomwareRestoreProcessStartedType.h" -#import "DBTEAMLOGRecipientsConfiguration.h" -#import "DBTEAMLOGRelocateAssetReferencesLogInfo.h" -#import "DBTEAMLOGReplayFileDeleteDetails.h" -#import "DBTEAMLOGReplayFileDeleteType.h" -#import "DBTEAMLOGReplayFileSharedLinkCreatedDetails.h" -#import "DBTEAMLOGReplayFileSharedLinkCreatedType.h" -#import "DBTEAMLOGReplayFileSharedLinkModifiedDetails.h" -#import "DBTEAMLOGReplayFileSharedLinkModifiedType.h" -#import "DBTEAMLOGReplayProjectTeamAddDetails.h" -#import "DBTEAMLOGReplayProjectTeamAddType.h" -#import "DBTEAMLOGReplayProjectTeamDeleteDetails.h" -#import "DBTEAMLOGReplayProjectTeamDeleteType.h" -#import "DBTEAMLOGResellerLogInfo.h" -#import "DBTEAMLOGResellerRole.h" -#import "DBTEAMLOGResellerSupportChangePolicyDetails.h" -#import "DBTEAMLOGResellerSupportChangePolicyType.h" -#import "DBTEAMLOGResellerSupportPolicy.h" -#import "DBTEAMLOGResellerSupportSessionEndDetails.h" -#import "DBTEAMLOGResellerSupportSessionEndType.h" -#import "DBTEAMLOGResellerSupportSessionStartDetails.h" -#import "DBTEAMLOGResellerSupportSessionStartType.h" -#import "DBTEAMLOGRewindFolderDetails.h" -#import "DBTEAMLOGRewindFolderType.h" -#import "DBTEAMLOGRewindPolicy.h" -#import "DBTEAMLOGRewindPolicyChangedDetails.h" -#import "DBTEAMLOGRewindPolicyChangedType.h" -#import "DBTEAMLOGSecondaryEmailDeletedDetails.h" -#import "DBTEAMLOGSecondaryEmailDeletedType.h" -#import "DBTEAMLOGSecondaryEmailVerifiedDetails.h" -#import "DBTEAMLOGSecondaryEmailVerifiedType.h" -#import "DBTEAMLOGSecondaryMailsPolicy.h" -#import "DBTEAMLOGSecondaryMailsPolicyChangedDetails.h" -#import "DBTEAMLOGSecondaryMailsPolicyChangedType.h" -#import "DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h" -#import "DBTEAMLOGSecondaryTeamRequestCanceledDetails.h" -#import "DBTEAMLOGSecondaryTeamRequestExpiredDetails.h" -#import "DBTEAMLOGSecondaryTeamRequestReminderDetails.h" -#import "DBTEAMLOGSendForSignaturePolicy.h" -#import "DBTEAMLOGSendForSignaturePolicyChangedDetails.h" -#import "DBTEAMLOGSendForSignaturePolicyChangedType.h" -#import "DBTEAMLOGSessionLogInfo.h" -#import "DBTEAMLOGSfAddGroupDetails.h" -#import "DBTEAMLOGSfAddGroupType.h" -#import "DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h" -#import "DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h" -#import "DBTEAMLOGSfExternalInviteWarnDetails.h" -#import "DBTEAMLOGSfExternalInviteWarnType.h" -#import "DBTEAMLOGSfFbInviteChangeRoleDetails.h" -#import "DBTEAMLOGSfFbInviteChangeRoleType.h" -#import "DBTEAMLOGSfFbInviteDetails.h" -#import "DBTEAMLOGSfFbInviteType.h" -#import "DBTEAMLOGSfFbUninviteDetails.h" -#import "DBTEAMLOGSfFbUninviteType.h" -#import "DBTEAMLOGSfInviteGroupDetails.h" -#import "DBTEAMLOGSfInviteGroupType.h" -#import "DBTEAMLOGSfTeamGrantAccessDetails.h" -#import "DBTEAMLOGSfTeamGrantAccessType.h" -#import "DBTEAMLOGSfTeamInviteChangeRoleDetails.h" -#import "DBTEAMLOGSfTeamInviteChangeRoleType.h" -#import "DBTEAMLOGSfTeamInviteDetails.h" -#import "DBTEAMLOGSfTeamInviteType.h" -#import "DBTEAMLOGSfTeamJoinDetails.h" -#import "DBTEAMLOGSfTeamJoinFromOobLinkDetails.h" -#import "DBTEAMLOGSfTeamJoinFromOobLinkType.h" -#import "DBTEAMLOGSfTeamJoinType.h" -#import "DBTEAMLOGSfTeamUninviteDetails.h" -#import "DBTEAMLOGSfTeamUninviteType.h" -#import "DBTEAMLOGSharedContentAddInviteesDetails.h" -#import "DBTEAMLOGSharedContentAddInviteesType.h" -#import "DBTEAMLOGSharedContentAddLinkExpiryDetails.h" -#import "DBTEAMLOGSharedContentAddLinkExpiryType.h" -#import "DBTEAMLOGSharedContentAddLinkPasswordDetails.h" -#import "DBTEAMLOGSharedContentAddLinkPasswordType.h" -#import "DBTEAMLOGSharedContentAddMemberDetails.h" -#import "DBTEAMLOGSharedContentAddMemberType.h" -#import "DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h" -#import "DBTEAMLOGSharedContentChangeDownloadsPolicyType.h" -#import "DBTEAMLOGSharedContentChangeInviteeRoleDetails.h" -#import "DBTEAMLOGSharedContentChangeInviteeRoleType.h" -#import "DBTEAMLOGSharedContentChangeLinkAudienceDetails.h" -#import "DBTEAMLOGSharedContentChangeLinkAudienceType.h" -#import "DBTEAMLOGSharedContentChangeLinkExpiryDetails.h" -#import "DBTEAMLOGSharedContentChangeLinkExpiryType.h" -#import "DBTEAMLOGSharedContentChangeLinkPasswordDetails.h" -#import "DBTEAMLOGSharedContentChangeLinkPasswordType.h" -#import "DBTEAMLOGSharedContentChangeMemberRoleDetails.h" -#import "DBTEAMLOGSharedContentChangeMemberRoleType.h" -#import "DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h" -#import "DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h" -#import "DBTEAMLOGSharedContentClaimInvitationDetails.h" -#import "DBTEAMLOGSharedContentClaimInvitationType.h" -#import "DBTEAMLOGSharedContentCopyDetails.h" -#import "DBTEAMLOGSharedContentCopyType.h" -#import "DBTEAMLOGSharedContentDownloadDetails.h" -#import "DBTEAMLOGSharedContentDownloadType.h" -#import "DBTEAMLOGSharedContentRelinquishMembershipDetails.h" -#import "DBTEAMLOGSharedContentRelinquishMembershipType.h" -#import "DBTEAMLOGSharedContentRemoveInviteesDetails.h" -#import "DBTEAMLOGSharedContentRemoveInviteesType.h" -#import "DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h" -#import "DBTEAMLOGSharedContentRemoveLinkExpiryType.h" -#import "DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h" -#import "DBTEAMLOGSharedContentRemoveLinkPasswordType.h" -#import "DBTEAMLOGSharedContentRemoveMemberDetails.h" -#import "DBTEAMLOGSharedContentRemoveMemberType.h" -#import "DBTEAMLOGSharedContentRequestAccessDetails.h" -#import "DBTEAMLOGSharedContentRequestAccessType.h" -#import "DBTEAMLOGSharedContentRestoreInviteesDetails.h" -#import "DBTEAMLOGSharedContentRestoreInviteesType.h" -#import "DBTEAMLOGSharedContentRestoreMemberDetails.h" -#import "DBTEAMLOGSharedContentRestoreMemberType.h" -#import "DBTEAMLOGSharedContentUnshareDetails.h" -#import "DBTEAMLOGSharedContentUnshareType.h" -#import "DBTEAMLOGSharedContentViewDetails.h" -#import "DBTEAMLOGSharedContentViewType.h" -#import "DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeLinkPolicyType.h" -#import "DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h" -#import "DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h" -#import "DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeMembersPolicyType.h" -#import "DBTEAMLOGSharedFolderCreateDetails.h" -#import "DBTEAMLOGSharedFolderCreateType.h" -#import "DBTEAMLOGSharedFolderDeclineInvitationDetails.h" -#import "DBTEAMLOGSharedFolderDeclineInvitationType.h" -#import "DBTEAMLOGSharedFolderMembersInheritancePolicy.h" -#import "DBTEAMLOGSharedFolderMountDetails.h" -#import "DBTEAMLOGSharedFolderMountType.h" -#import "DBTEAMLOGSharedFolderNestDetails.h" -#import "DBTEAMLOGSharedFolderNestType.h" -#import "DBTEAMLOGSharedFolderTransferOwnershipDetails.h" -#import "DBTEAMLOGSharedFolderTransferOwnershipType.h" -#import "DBTEAMLOGSharedFolderUnmountDetails.h" -#import "DBTEAMLOGSharedFolderUnmountType.h" -#import "DBTEAMLOGSharedLinkAccessLevel.h" -#import "DBTEAMLOGSharedLinkAddExpiryDetails.h" -#import "DBTEAMLOGSharedLinkAddExpiryType.h" -#import "DBTEAMLOGSharedLinkChangeExpiryDetails.h" -#import "DBTEAMLOGSharedLinkChangeExpiryType.h" -#import "DBTEAMLOGSharedLinkChangeVisibilityDetails.h" -#import "DBTEAMLOGSharedLinkChangeVisibilityType.h" -#import "DBTEAMLOGSharedLinkCopyDetails.h" -#import "DBTEAMLOGSharedLinkCopyType.h" -#import "DBTEAMLOGSharedLinkCreateDetails.h" -#import "DBTEAMLOGSharedLinkCreateType.h" -#import "DBTEAMLOGSharedLinkDisableDetails.h" -#import "DBTEAMLOGSharedLinkDisableType.h" -#import "DBTEAMLOGSharedLinkDownloadDetails.h" -#import "DBTEAMLOGSharedLinkDownloadType.h" -#import "DBTEAMLOGSharedLinkRemoveExpiryDetails.h" -#import "DBTEAMLOGSharedLinkRemoveExpiryType.h" -#import "DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAddExpirationType.h" -#import "DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAddPasswordType.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h" -#import "DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h" -#import "DBTEAMLOGSharedLinkSettingsChangeAudienceType.h" -#import "DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h" -#import "DBTEAMLOGSharedLinkSettingsChangeExpirationType.h" -#import "DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h" -#import "DBTEAMLOGSharedLinkSettingsChangePasswordType.h" -#import "DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h" -#import "DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h" -#import "DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h" -#import "DBTEAMLOGSharedLinkSettingsRemovePasswordType.h" -#import "DBTEAMLOGSharedLinkShareDetails.h" -#import "DBTEAMLOGSharedLinkShareType.h" -#import "DBTEAMLOGSharedLinkViewDetails.h" -#import "DBTEAMLOGSharedLinkViewType.h" -#import "DBTEAMLOGSharedLinkVisibility.h" -#import "DBTEAMLOGSharedNoteOpenedDetails.h" -#import "DBTEAMLOGSharedNoteOpenedType.h" -#import "DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h" -#import "DBTEAMLOGSharingChangeFolderJoinPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkPolicyType.h" -#import "DBTEAMLOGSharingChangeMemberPolicyDetails.h" -#import "DBTEAMLOGSharingChangeMemberPolicyType.h" -#import "DBTEAMLOGSharingFolderJoinPolicy.h" -#import "DBTEAMLOGSharingLinkPolicy.h" -#import "DBTEAMLOGSharingMemberPolicy.h" -#import "DBTEAMLOGShmodelDisableDownloadsDetails.h" -#import "DBTEAMLOGShmodelDisableDownloadsType.h" -#import "DBTEAMLOGShmodelEnableDownloadsDetails.h" -#import "DBTEAMLOGShmodelEnableDownloadsType.h" -#import "DBTEAMLOGShmodelGroupShareDetails.h" -#import "DBTEAMLOGShmodelGroupShareType.h" -#import "DBTEAMLOGShowcaseAccessGrantedDetails.h" -#import "DBTEAMLOGShowcaseAccessGrantedType.h" -#import "DBTEAMLOGShowcaseAddMemberDetails.h" -#import "DBTEAMLOGShowcaseAddMemberType.h" -#import "DBTEAMLOGShowcaseArchivedDetails.h" -#import "DBTEAMLOGShowcaseArchivedType.h" -#import "DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h" -#import "DBTEAMLOGShowcaseChangeDownloadPolicyType.h" -#import "DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h" -#import "DBTEAMLOGShowcaseChangeEnabledPolicyType.h" -#import "DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h" -#import "DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h" -#import "DBTEAMLOGShowcaseCreatedDetails.h" -#import "DBTEAMLOGShowcaseCreatedType.h" -#import "DBTEAMLOGShowcaseDeleteCommentDetails.h" -#import "DBTEAMLOGShowcaseDeleteCommentType.h" -#import "DBTEAMLOGShowcaseDocumentLogInfo.h" -#import "DBTEAMLOGShowcaseDownloadPolicy.h" -#import "DBTEAMLOGShowcaseEditCommentDetails.h" -#import "DBTEAMLOGShowcaseEditCommentType.h" -#import "DBTEAMLOGShowcaseEditedDetails.h" -#import "DBTEAMLOGShowcaseEditedType.h" -#import "DBTEAMLOGShowcaseEnabledPolicy.h" -#import "DBTEAMLOGShowcaseExternalSharingPolicy.h" -#import "DBTEAMLOGShowcaseFileAddedDetails.h" -#import "DBTEAMLOGShowcaseFileAddedType.h" -#import "DBTEAMLOGShowcaseFileDownloadDetails.h" -#import "DBTEAMLOGShowcaseFileDownloadType.h" -#import "DBTEAMLOGShowcaseFileRemovedDetails.h" -#import "DBTEAMLOGShowcaseFileRemovedType.h" -#import "DBTEAMLOGShowcaseFileViewDetails.h" -#import "DBTEAMLOGShowcaseFileViewType.h" -#import "DBTEAMLOGShowcasePermanentlyDeletedDetails.h" -#import "DBTEAMLOGShowcasePermanentlyDeletedType.h" -#import "DBTEAMLOGShowcasePostCommentDetails.h" -#import "DBTEAMLOGShowcasePostCommentType.h" -#import "DBTEAMLOGShowcaseRemoveMemberDetails.h" -#import "DBTEAMLOGShowcaseRemoveMemberType.h" -#import "DBTEAMLOGShowcaseRenamedDetails.h" -#import "DBTEAMLOGShowcaseRenamedType.h" -#import "DBTEAMLOGShowcaseRequestAccessDetails.h" -#import "DBTEAMLOGShowcaseRequestAccessType.h" -#import "DBTEAMLOGShowcaseResolveCommentDetails.h" -#import "DBTEAMLOGShowcaseResolveCommentType.h" -#import "DBTEAMLOGShowcaseRestoredDetails.h" -#import "DBTEAMLOGShowcaseRestoredType.h" -#import "DBTEAMLOGShowcaseTrashedDeprecatedDetails.h" -#import "DBTEAMLOGShowcaseTrashedDeprecatedType.h" -#import "DBTEAMLOGShowcaseTrashedDetails.h" -#import "DBTEAMLOGShowcaseTrashedType.h" -#import "DBTEAMLOGShowcaseUnresolveCommentDetails.h" -#import "DBTEAMLOGShowcaseUnresolveCommentType.h" -#import "DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h" -#import "DBTEAMLOGShowcaseUntrashedDeprecatedType.h" -#import "DBTEAMLOGShowcaseUntrashedDetails.h" -#import "DBTEAMLOGShowcaseUntrashedType.h" -#import "DBTEAMLOGShowcaseViewDetails.h" -#import "DBTEAMLOGShowcaseViewType.h" -#import "DBTEAMLOGSignInAsSessionEndDetails.h" -#import "DBTEAMLOGSignInAsSessionEndType.h" -#import "DBTEAMLOGSignInAsSessionStartDetails.h" -#import "DBTEAMLOGSignInAsSessionStartType.h" -#import "DBTEAMLOGSmartSyncChangePolicyDetails.h" -#import "DBTEAMLOGSmartSyncChangePolicyType.h" -#import "DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h" -#import "DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h" -#import "DBTEAMLOGSmartSyncNotOptOutDetails.h" -#import "DBTEAMLOGSmartSyncNotOptOutType.h" -#import "DBTEAMLOGSmartSyncOptOutDetails.h" -#import "DBTEAMLOGSmartSyncOptOutPolicy.h" -#import "DBTEAMLOGSmartSyncOptOutType.h" -#import "DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h" -#import "DBTEAMLOGSmarterSmartSyncPolicyChangedType.h" -#import "DBTEAMLOGSpaceCapsType.h" -#import "DBTEAMLOGSpaceLimitsStatus.h" -#import "DBTEAMLOGSsoAddCertDetails.h" -#import "DBTEAMLOGSsoAddCertType.h" -#import "DBTEAMLOGSsoAddLoginUrlDetails.h" -#import "DBTEAMLOGSsoAddLoginUrlType.h" -#import "DBTEAMLOGSsoAddLogoutUrlDetails.h" -#import "DBTEAMLOGSsoAddLogoutUrlType.h" -#import "DBTEAMLOGSsoChangeCertDetails.h" -#import "DBTEAMLOGSsoChangeCertType.h" -#import "DBTEAMLOGSsoChangeLoginUrlDetails.h" -#import "DBTEAMLOGSsoChangeLoginUrlType.h" -#import "DBTEAMLOGSsoChangeLogoutUrlDetails.h" -#import "DBTEAMLOGSsoChangeLogoutUrlType.h" -#import "DBTEAMLOGSsoChangePolicyDetails.h" -#import "DBTEAMLOGSsoChangePolicyType.h" -#import "DBTEAMLOGSsoChangeSamlIdentityModeDetails.h" -#import "DBTEAMLOGSsoChangeSamlIdentityModeType.h" -#import "DBTEAMLOGSsoErrorDetails.h" -#import "DBTEAMLOGSsoErrorType.h" -#import "DBTEAMLOGSsoRemoveCertDetails.h" -#import "DBTEAMLOGSsoRemoveCertType.h" -#import "DBTEAMLOGSsoRemoveLoginUrlDetails.h" -#import "DBTEAMLOGSsoRemoveLoginUrlType.h" -#import "DBTEAMLOGSsoRemoveLogoutUrlDetails.h" -#import "DBTEAMLOGSsoRemoveLogoutUrlType.h" -#import "DBTEAMLOGStartedEnterpriseAdminSessionDetails.h" -#import "DBTEAMLOGStartedEnterpriseAdminSessionType.h" -#import "DBTEAMLOGTeamActivityCreateReportDetails.h" -#import "DBTEAMLOGTeamActivityCreateReportFailDetails.h" -#import "DBTEAMLOGTeamActivityCreateReportFailType.h" -#import "DBTEAMLOGTeamActivityCreateReportType.h" -#import "DBTEAMLOGTeamBrandingPolicy.h" -#import "DBTEAMLOGTeamBrandingPolicyChangedDetails.h" -#import "DBTEAMLOGTeamBrandingPolicyChangedType.h" -#import "DBTEAMLOGTeamDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h" -#import "DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyCreateKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyDisableKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyEnableKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyRotateKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h" -#import "DBTEAMLOGTeamEvent.h" -#import "DBTEAMLOGTeamExtensionsPolicy.h" -#import "DBTEAMLOGTeamExtensionsPolicyChangedDetails.h" -#import "DBTEAMLOGTeamExtensionsPolicyChangedType.h" -#import "DBTEAMLOGTeamFolderChangeStatusDetails.h" -#import "DBTEAMLOGTeamFolderChangeStatusType.h" -#import "DBTEAMLOGTeamFolderCreateDetails.h" -#import "DBTEAMLOGTeamFolderCreateType.h" -#import "DBTEAMLOGTeamFolderDowngradeDetails.h" -#import "DBTEAMLOGTeamFolderDowngradeType.h" -#import "DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h" -#import "DBTEAMLOGTeamFolderPermanentlyDeleteType.h" -#import "DBTEAMLOGTeamFolderRenameDetails.h" -#import "DBTEAMLOGTeamFolderRenameType.h" -#import "DBTEAMLOGTeamInviteDetails.h" -#import "DBTEAMLOGTeamLinkedAppLogInfo.h" -#import "DBTEAMLOGTeamLogInfo.h" -#import "DBTEAMLOGTeamMemberLogInfo.h" -#import "DBTEAMLOGTeamMembershipType.h" -#import "DBTEAMLOGTeamMergeFromDetails.h" -#import "DBTEAMLOGTeamMergeFromType.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedType.h" -#import "DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h" -#import "DBTEAMLOGTeamMergeRequestAutoCanceledType.h" -#import "DBTEAMLOGTeamMergeRequestCanceledDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestCanceledType.h" -#import "DBTEAMLOGTeamMergeRequestExpiredDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestExpiredType.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestReminderDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestReminderType.h" -#import "DBTEAMLOGTeamMergeRequestRevokedDetails.h" -#import "DBTEAMLOGTeamMergeRequestRevokedType.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeToDetails.h" -#import "DBTEAMLOGTeamMergeToType.h" -#import "DBTEAMLOGTeamName.h" -#import "DBTEAMLOGTeamProfileAddBackgroundDetails.h" -#import "DBTEAMLOGTeamProfileAddBackgroundType.h" -#import "DBTEAMLOGTeamProfileAddLogoDetails.h" -#import "DBTEAMLOGTeamProfileAddLogoType.h" -#import "DBTEAMLOGTeamProfileChangeBackgroundDetails.h" -#import "DBTEAMLOGTeamProfileChangeBackgroundType.h" -#import "DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h" -#import "DBTEAMLOGTeamProfileChangeDefaultLanguageType.h" -#import "DBTEAMLOGTeamProfileChangeLogoDetails.h" -#import "DBTEAMLOGTeamProfileChangeLogoType.h" -#import "DBTEAMLOGTeamProfileChangeNameDetails.h" -#import "DBTEAMLOGTeamProfileChangeNameType.h" -#import "DBTEAMLOGTeamProfileRemoveBackgroundDetails.h" -#import "DBTEAMLOGTeamProfileRemoveBackgroundType.h" -#import "DBTEAMLOGTeamProfileRemoveLogoDetails.h" -#import "DBTEAMLOGTeamProfileRemoveLogoType.h" -#import "DBTEAMLOGTeamSelectiveSyncPolicy.h" -#import "DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h" -#import "DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h" -#import "DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h" -#import "DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h" -#import "DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h" -#import "DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h" -#import "DBTEAMLOGTfaAddBackupPhoneDetails.h" -#import "DBTEAMLOGTfaAddBackupPhoneType.h" -#import "DBTEAMLOGTfaAddExceptionDetails.h" -#import "DBTEAMLOGTfaAddExceptionType.h" -#import "DBTEAMLOGTfaAddSecurityKeyDetails.h" -#import "DBTEAMLOGTfaAddSecurityKeyType.h" -#import "DBTEAMLOGTfaChangeBackupPhoneDetails.h" -#import "DBTEAMLOGTfaChangeBackupPhoneType.h" -#import "DBTEAMLOGTfaChangePolicyDetails.h" -#import "DBTEAMLOGTfaChangePolicyType.h" -#import "DBTEAMLOGTfaChangeStatusDetails.h" -#import "DBTEAMLOGTfaChangeStatusType.h" -#import "DBTEAMLOGTfaConfiguration.h" -#import "DBTEAMLOGTfaRemoveBackupPhoneDetails.h" -#import "DBTEAMLOGTfaRemoveBackupPhoneType.h" -#import "DBTEAMLOGTfaRemoveExceptionDetails.h" -#import "DBTEAMLOGTfaRemoveExceptionType.h" -#import "DBTEAMLOGTfaRemoveSecurityKeyDetails.h" -#import "DBTEAMLOGTfaRemoveSecurityKeyType.h" -#import "DBTEAMLOGTfaResetDetails.h" -#import "DBTEAMLOGTfaResetType.h" -#import "DBTEAMLOGTimeUnit.h" -#import "DBTEAMLOGTrustedNonTeamMemberLogInfo.h" -#import "DBTEAMLOGTrustedNonTeamMemberType.h" -#import "DBTEAMLOGTrustedTeamsRequestAction.h" -#import "DBTEAMLOGTrustedTeamsRequestState.h" -#import "DBTEAMLOGTwoAccountChangePolicyDetails.h" -#import "DBTEAMLOGTwoAccountChangePolicyType.h" -#import "DBTEAMLOGTwoAccountPolicy.h" -#import "DBTEAMLOGUndoNamingConventionDetails.h" -#import "DBTEAMLOGUndoNamingConventionType.h" -#import "DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h" -#import "DBTEAMLOGUndoOrganizeFolderWithTidyType.h" -#import "DBTEAMLOGUserLinkedAppLogInfo.h" -#import "DBTEAMLOGUserLogInfo.h" -#import "DBTEAMLOGUserNameLogInfo.h" -#import "DBTEAMLOGUserOrTeamLinkedAppLogInfo.h" -#import "DBTEAMLOGUserTagsAddedDetails.h" -#import "DBTEAMLOGUserTagsAddedType.h" -#import "DBTEAMLOGUserTagsRemovedDetails.h" -#import "DBTEAMLOGUserTagsRemovedType.h" -#import "DBTEAMLOGViewerInfoPolicyChangedDetails.h" -#import "DBTEAMLOGViewerInfoPolicyChangedType.h" -#import "DBTEAMLOGWatermarkingPolicy.h" -#import "DBTEAMLOGWatermarkingPolicyChangedDetails.h" -#import "DBTEAMLOGWatermarkingPolicyChangedType.h" -#import "DBTEAMLOGWebDeviceSessionLogInfo.h" -#import "DBTEAMLOGWebSessionLogInfo.h" -#import "DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h" -#import "DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h" -#import "DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h" -#import "DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h" -#import "DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h" -#import "DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h" -#import "DBTEAMLOGWebSessionsFixedLengthPolicy.h" -#import "DBTEAMLOGWebSessionsIdleLengthPolicy.h" - - -// `TeamPolicies` namespace types - -#import "DBTEAMPOLICIESCameraUploadsPolicyState.h" -#import "DBTEAMPOLICIESComputerBackupPolicyState.h" -#import "DBTEAMPOLICIESEmmState.h" -#import "DBTEAMPOLICIESExternalDriveBackupPolicyState.h" -#import "DBTEAMPOLICIESFileLockingPolicyState.h" -#import "DBTEAMPOLICIESFileProviderMigrationPolicyState.h" -#import "DBTEAMPOLICIESGroupCreation.h" -#import "DBTEAMPOLICIESOfficeAddInPolicy.h" -#import "DBTEAMPOLICIESPaperDefaultFolderPolicy.h" -#import "DBTEAMPOLICIESPaperDeploymentPolicy.h" -#import "DBTEAMPOLICIESPaperDesktopPolicy.h" -#import "DBTEAMPOLICIESPaperEnabledPolicy.h" -#import "DBTEAMPOLICIESPasswordControlMode.h" -#import "DBTEAMPOLICIESPasswordStrengthPolicy.h" -#import "DBTEAMPOLICIESRolloutMethod.h" -#import "DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h" -#import "DBTEAMPOLICIESSharedFolderJoinPolicy.h" -#import "DBTEAMPOLICIESSharedFolderMemberPolicy.h" -#import "DBTEAMPOLICIESSharedLinkCreatePolicy.h" -#import "DBTEAMPOLICIESShowcaseDownloadPolicy.h" -#import "DBTEAMPOLICIESShowcaseEnabledPolicy.h" -#import "DBTEAMPOLICIESShowcaseExternalSharingPolicy.h" -#import "DBTEAMPOLICIESSmartSyncPolicy.h" -#import "DBTEAMPOLICIESSmarterSmartSyncPolicyState.h" -#import "DBTEAMPOLICIESSsoPolicy.h" -#import "DBTEAMPOLICIESSuggestMembersPolicy.h" -#import "DBTEAMPOLICIESTeamMemberPolicies.h" -#import "DBTEAMPOLICIESTeamSharingPolicies.h" -#import "DBTEAMPOLICIESTwoStepVerificationPolicy.h" -#import "DBTEAMPOLICIESTwoStepVerificationState.h" - - -// `Users` namespace types - -#import "DBUSERSAccount.h" -#import "DBUSERSBasicAccount.h" -#import "DBUSERSFileLockingValue.h" -#import "DBUSERSFullAccount.h" -#import "DBUSERSFullTeam.h" -#import "DBUSERSGetAccountArg.h" -#import "DBUSERSGetAccountBatchArg.h" -#import "DBUSERSGetAccountBatchError.h" -#import "DBUSERSGetAccountError.h" -#import "DBUSERSIndividualSpaceAllocation.h" -#import "DBUSERSName.h" -#import "DBUSERSPaperAsFilesValue.h" -#import "DBUSERSSpaceAllocation.h" -#import "DBUSERSSpaceUsage.h" -#import "DBUSERSTeam.h" -#import "DBUSERSTeamSpaceAllocation.h" -#import "DBUSERSUserFeature.h" -#import "DBUSERSUserFeatureValue.h" -#import "DBUSERSUserFeaturesGetValuesBatchArg.h" -#import "DBUSERSUserFeaturesGetValuesBatchError.h" -#import "DBUSERSUserFeaturesGetValuesBatchResult.h" - - -// `UsersCommon` namespace types - -#import "DBUSERSCOMMONAccountType.h" - diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImportsShared.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImportsShared.h deleted file mode 100644 index d0382d64..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKImportsShared.h +++ /dev/null @@ -1,46 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -/// Import generated shared files - -#import "DBSDKImportsGenerated.h" - -/// Import handwritten shared files - -#import "DBAppClient.h" -#import "DBClientsManager.h" -#import "DBTeamClient.h" -#import "DBUserClient.h" - -/// Networking -#import "DBGlobalErrorResponseHandler.h" -#import "DBHandlerTypes.h" -#import "DBRequestErrors.h" -#import "DBTasks.h" -#import "DBTasksStorage.h" -#import "DBTransportBaseClient.h" -#import "DBTransportBaseConfig.h" -#import "DBTransportClientProtocol.h" -#import "DBTransportDefaultClient.h" -#import "DBTransportDefaultConfig.h" - -/// OAuth -#import "DBOAuthManager.h" -#import "DBOAuthResult.h" -#import "DBOAuthResultCompletion.h" -#import "DBSDKKeychain.h" -#import "DBScopeRequest.h" -#import "DBSharedApplicationProtocol.h" - -/// Resources -#import "DBCustomDatatypes.h" -#import "DBCustomRoutes.h" -#import "DBCustomTasks.h" -#import "DBSDKConstants.h" - -/// "Generated" Resources -#import "DBSerializableProtocol.h" -#import "DBStoneBase.h" -#import "DBStoneSerializers.h" -#import "DBStoneValidators.h" diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKKeychain.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKKeychain.h deleted file mode 100644 index ecd9b20d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSDKKeychain.h +++ /dev/null @@ -1,41 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBHandlerTypes.h" - -@class DBAccessToken; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Keychain class for storing OAuth tokens. -/// -@interface DBSDKKeychain : NSObject - -/// Stores DBAccessToken in the keychain. -+ (BOOL)storeAccessToken:(DBAccessToken *)accessToken; - -/// Retrieves a DBAccessToken from the corresponding key (uid) from the keychain. -+ (nullable DBAccessToken *)retrieveTokenWithUid:(NSString *)uid; - -/// Retrieves all token uids from the keychain. -+ (NSArray *)retrieveAllTokenIds; - -/// Deletes the stored token value for a key (uid). -+ (BOOL)deleteTokenWithUid:(NSString *)uid; - -/// Deletes all key / value pairs in the keychain. -+ (BOOL)clearAllTokens; - -/// Checks if performing a v1 token migration is necessary, and if so, performs it. -+ (BOOL)checkAndPerformV1TokenMigration:(DBTokenMigrationResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue - appKey:(NSString *)appKey - appSecret:(NSString *)appSecret; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSECONDARYEMAILSSecondaryEmail.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSECONDARYEMAILSSecondaryEmail.h deleted file mode 100644 index 07b51429..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSECONDARYEMAILSSecondaryEmail.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSECONDARYEMAILSSecondaryEmail; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmail` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSECONDARYEMAILSSecondaryEmail : NSObject - -#pragma mark - Instance fields - -/// Secondary email address. -@property (nonatomic, readonly, copy) NSString *email; - -/// Whether or not the secondary email address is verified to be owned by a -/// user. -@property (nonatomic, readonly) NSNumber *isVerified; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param email Secondary email address. -/// @param isVerified Whether or not the secondary email address is verified to -/// be owned by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email isVerified:(NSNumber *)isVerified; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmail` struct. -/// -@interface DBSECONDARYEMAILSSecondaryEmailSerializer : NSObject - -/// -/// Serializes `DBSECONDARYEMAILSSecondaryEmail` instances. -/// -/// @param instance An instance of the `DBSECONDARYEMAILSSecondaryEmail` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSECONDARYEMAILSSecondaryEmail` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSECONDARYEMAILSSecondaryEmail *)instance; - -/// -/// Deserializes `DBSECONDARYEMAILSSecondaryEmail` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSECONDARYEMAILSSecondaryEmail` API object. -/// -/// @return An instantiation of the `DBSECONDARYEMAILSSecondaryEmail` object. -/// -+ (DBSECONDARYEMAILSSecondaryEmail *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSEENSTATEPlatformType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSEENSTATEPlatformType.h deleted file mode 100644 index 8aa13971..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSEENSTATEPlatformType.h +++ /dev/null @@ -1,239 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSEENSTATEPlatformType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PlatformType` union. -/// -/// Possible platforms on which a user may view content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSEENSTATEPlatformType : NSObject - -#pragma mark - Instance fields - -/// The `DBSEENSTATEPlatformTypeTag` enum type represents the possible tag -/// states with which the `DBSEENSTATEPlatformType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSEENSTATEPlatformTypeTag) { - /// The content was viewed on the web. - DBSEENSTATEPlatformTypeWeb, - - /// The content was viewed on a desktop client. - DBSEENSTATEPlatformTypeDesktop, - - /// The content was viewed on a mobile iOS client. - DBSEENSTATEPlatformTypeMobileIos, - - /// The content was viewed on a mobile android client. - DBSEENSTATEPlatformTypeMobileAndroid, - - /// The content was viewed from an API client. - DBSEENSTATEPlatformTypeApi, - - /// The content was viewed on an unknown platform. - DBSEENSTATEPlatformTypeUnknown, - - /// The content was viewed on a mobile client. DEPRECATED: Use mobile_ios or - /// mobile_android instead. - DBSEENSTATEPlatformTypeMobile, - - /// (no description). - DBSEENSTATEPlatformTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSEENSTATEPlatformTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "web". -/// -/// Description of the "web" tag state: The content was viewed on the web. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWeb; - -/// -/// Initializes union class with tag state of "desktop". -/// -/// Description of the "desktop" tag state: The content was viewed on a desktop -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktop; - -/// -/// Initializes union class with tag state of "mobile_ios". -/// -/// Description of the "mobile_ios" tag state: The content was viewed on a -/// mobile iOS client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileIos; - -/// -/// Initializes union class with tag state of "mobile_android". -/// -/// Description of the "mobile_android" tag state: The content was viewed on a -/// mobile android client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileAndroid; - -/// -/// Initializes union class with tag state of "api". -/// -/// Description of the "api" tag state: The content was viewed from an API -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApi; - -/// -/// Initializes union class with tag state of "unknown". -/// -/// Description of the "unknown" tag state: The content was viewed on an unknown -/// platform. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknown; - -/// -/// Initializes union class with tag state of "mobile". -/// -/// Description of the "mobile" tag state: The content was viewed on a mobile -/// client. DEPRECATED: Use mobile_ios or mobile_android instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobile; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "web". -/// -/// @return Whether the union's current tag state has value "web". -/// -- (BOOL)isWeb; - -/// -/// Retrieves whether the union's current tag state has value "desktop". -/// -/// @return Whether the union's current tag state has value "desktop". -/// -- (BOOL)isDesktop; - -/// -/// Retrieves whether the union's current tag state has value "mobile_ios". -/// -/// @return Whether the union's current tag state has value "mobile_ios". -/// -- (BOOL)isMobileIos; - -/// -/// Retrieves whether the union's current tag state has value "mobile_android". -/// -/// @return Whether the union's current tag state has value "mobile_android". -/// -- (BOOL)isMobileAndroid; - -/// -/// Retrieves whether the union's current tag state has value "api". -/// -/// @return Whether the union's current tag state has value "api". -/// -- (BOOL)isApi; - -/// -/// Retrieves whether the union's current tag state has value "unknown". -/// -/// @return Whether the union's current tag state has value "unknown". -/// -- (BOOL)isUnknown; - -/// -/// Retrieves whether the union's current tag state has value "mobile". -/// -/// @return Whether the union's current tag state has value "mobile". -/// -- (BOOL)isMobile; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSEENSTATEPlatformType` union. -/// -@interface DBSEENSTATEPlatformTypeSerializer : NSObject - -/// -/// Serializes `DBSEENSTATEPlatformType` instances. -/// -/// @param instance An instance of the `DBSEENSTATEPlatformType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSEENSTATEPlatformType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSEENSTATEPlatformType *)instance; - -/// -/// Deserializes `DBSEENSTATEPlatformType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSEENSTATEPlatformType` API object. -/// -/// @return An instantiation of the `DBSEENSTATEPlatformType` object. -/// -+ (DBSEENSTATEPlatformType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAccessInheritance.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAccessInheritance.h deleted file mode 100644 index e894c8b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAccessInheritance.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessInheritance` union. -/// -/// Information about the inheritance policy of a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAccessInheritance : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAccessInheritanceTag` enum type represents the possible tag -/// states with which the `DBSHARINGAccessInheritance` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAccessInheritanceTag) { - /// The shared folder inherits its members from the parent folder. - DBSHARINGAccessInheritanceInherit, - - /// The shared folder does not inherit its members from the parent folder. - DBSHARINGAccessInheritanceNoInherit, - - /// (no description). - DBSHARINGAccessInheritanceOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAccessInheritanceTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "inherit". -/// -/// Description of the "inherit" tag state: The shared folder inherits its -/// members from the parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInherit; - -/// -/// Initializes union class with tag state of "no_inherit". -/// -/// Description of the "no_inherit" tag state: The shared folder does not -/// inherit its members from the parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoInherit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "inherit". -/// -/// @return Whether the union's current tag state has value "inherit". -/// -- (BOOL)isInherit; - -/// -/// Retrieves whether the union's current tag state has value "no_inherit". -/// -/// @return Whether the union's current tag state has value "no_inherit". -/// -- (BOOL)isNoInherit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAccessInheritance` union. -/// -@interface DBSHARINGAccessInheritanceSerializer : NSObject - -/// -/// Serializes `DBSHARINGAccessInheritance` instances. -/// -/// @param instance An instance of the `DBSHARINGAccessInheritance` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAccessInheritance` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAccessInheritance *)instance; - -/// -/// Deserializes `DBSHARINGAccessInheritance` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAccessInheritance` API object. -/// -/// @return An instantiation of the `DBSHARINGAccessInheritance` object. -/// -+ (DBSHARINGAccessInheritance *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAccessLevel.h deleted file mode 100644 index b4648d79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAccessLevel.h +++ /dev/null @@ -1,231 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessLevel` union. -/// -/// Defines the access levels for collaborators. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAccessLevelTag` enum type represents the possible tag states -/// with which the `DBSHARINGAccessLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAccessLevelTag) { - /// The collaborator is the owner of the shared folder. Owners can view and - /// edit the shared folder as well as set the folder's policies using - /// `updateFolderPolicy`. - DBSHARINGAccessLevelOwner, - - /// The collaborator can both view and edit the shared folder. - DBSHARINGAccessLevelEditor, - - /// The collaborator can only view the shared folder. - DBSHARINGAccessLevelViewer, - - /// The collaborator can only view the shared folder and does not have any - /// access to comments. - DBSHARINGAccessLevelViewerNoComment, - - /// The collaborator can only view the shared folder that they have access - /// to. - DBSHARINGAccessLevelTraverse, - - /// If there is a Righteous Link on the folder which grants access and the - /// user has visited such link, they are allowed to perform certain action - /// (i.e. add themselves to the folder) via the link access even though the - /// user themselves are not a member on the shared folder yet. - DBSHARINGAccessLevelNoAccess, - - /// (no description). - DBSHARINGAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "owner". -/// -/// Description of the "owner" tag state: The collaborator is the owner of the -/// shared folder. Owners can view and edit the shared folder as well as set the -/// folder's policies using `updateFolderPolicy`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner; - -/// -/// Initializes union class with tag state of "editor". -/// -/// Description of the "editor" tag state: The collaborator can both view and -/// edit the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "viewer". -/// -/// Description of the "viewer" tag state: The collaborator can only view the -/// shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "viewer_no_comment". -/// -/// Description of the "viewer_no_comment" tag state: The collaborator can only -/// view the shared folder and does not have any access to comments. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerNoComment; - -/// -/// Initializes union class with tag state of "traverse". -/// -/// Description of the "traverse" tag state: The collaborator can only view the -/// shared folder that they have access to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTraverse; - -/// -/// Initializes union class with tag state of "no_access". -/// -/// Description of the "no_access" tag state: If there is a Righteous Link on -/// the folder which grants access and the user has visited such link, they are -/// allowed to perform certain action (i.e. add themselves to the folder) via -/// the link access even though the user themselves are not a member on the -/// shared folder yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "owner". -/// -/// @return Whether the union's current tag state has value "owner". -/// -- (BOOL)isOwner; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_no_comment". -/// -/// @return Whether the union's current tag state has value "viewer_no_comment". -/// -- (BOOL)isViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value "traverse". -/// -/// @return Whether the union's current tag state has value "traverse". -/// -- (BOOL)isTraverse; - -/// -/// Retrieves whether the union's current tag state has value "no_access". -/// -/// @return Whether the union's current tag state has value "no_access". -/// -- (BOOL)isNoAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAccessLevel` union. -/// -@interface DBSHARINGAccessLevelSerializer : NSObject - -/// -/// Serializes `DBSHARINGAccessLevel` instances. -/// -/// @param instance An instance of the `DBSHARINGAccessLevel` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAccessLevel *)instance; - -/// -/// Deserializes `DBSHARINGAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAccessLevel` API object. -/// -/// @return An instantiation of the `DBSHARINGAccessLevel` object. -/// -+ (DBSHARINGAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAclUpdatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAclUpdatePolicy.h deleted file mode 100644 index 91f955d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAclUpdatePolicy.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AclUpdatePolicy` union. -/// -/// Who can change a shared folder's access control list (ACL). In other words, -/// who can add, remove, or change the privileges of members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAclUpdatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAclUpdatePolicyTag` enum type represents the possible tag -/// states with which the `DBSHARINGAclUpdatePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAclUpdatePolicyTag) { - /// Only the owner can update the ACL. - DBSHARINGAclUpdatePolicyOwner, - - /// Any editor can update the ACL. This may be further restricted to editors - /// on the same team. - DBSHARINGAclUpdatePolicyEditors, - - /// (no description). - DBSHARINGAclUpdatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAclUpdatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "owner". -/// -/// Description of the "owner" tag state: Only the owner can update the ACL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner; - -/// -/// Initializes union class with tag state of "editors". -/// -/// Description of the "editors" tag state: Any editor can update the ACL. This -/// may be further restricted to editors on the same team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditors; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "owner". -/// -/// @return Whether the union's current tag state has value "owner". -/// -- (BOOL)isOwner; - -/// -/// Retrieves whether the union's current tag state has value "editors". -/// -/// @return Whether the union's current tag state has value "editors". -/// -- (BOOL)isEditors; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAclUpdatePolicy` union. -/// -@interface DBSHARINGAclUpdatePolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGAclUpdatePolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGAclUpdatePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAclUpdatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAclUpdatePolicy *)instance; - -/// -/// Deserializes `DBSHARINGAclUpdatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAclUpdatePolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGAclUpdatePolicy` object. -/// -+ (DBSHARINGAclUpdatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFileMemberArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFileMemberArgs.h deleted file mode 100644 index 2798d6ea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFileMemberArgs.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAddFileMemberArgs; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFileMemberArgs` struct. -/// -/// Arguments for `addFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFileMemberArgs : NSObject - -#pragma mark - Instance fields - -/// File to which to add members. -@property (nonatomic, readonly, copy) NSString *file; - -/// Members to add. Note that even an email address is given, this may result in -/// a user being directly added to the membership if that email is the user's -/// main account email. -@property (nonatomic, readonly) NSArray *members; - -/// Message to send to added members in their invitation. -@property (nonatomic, readonly, copy, nullable) NSString *customMessage; - -/// Whether added members should be notified via email and device notifications -/// of their invitation. -@property (nonatomic, readonly) NSNumber *quiet; - -/// AccessLevel union object, describing what access level we want to give new -/// members. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -/// If the custom message should be added as a comment on the file. -@property (nonatomic, readonly) NSNumber *addMessageAsComment; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, -/// this may result in a user being directly added to the membership if that -/// email is the user's main account email. -/// @param customMessage Message to send to added members in their invitation. -/// @param quiet Whether added members should be notified via email and device -/// notifications of their invitation. -/// @param accessLevel AccessLevel union object, describing what access level we -/// want to give new members. -/// @param addMessageAsComment If the custom message should be added as a -/// comment on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - addMessageAsComment:(nullable NSNumber *)addMessageAsComment; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, -/// this may result in a user being directly added to the membership if that -/// email is the user's main account email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file members:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddFileMemberArgs` struct. -/// -@interface DBSHARINGAddFileMemberArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFileMemberArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFileMemberArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFileMemberArgs *)instance; - -/// -/// Deserializes `DBSHARINGAddFileMemberArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFileMemberArgs` object. -/// -+ (DBSHARINGAddFileMemberArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFileMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFileMemberError.h deleted file mode 100644 index 654ac197..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFileMemberError.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFileMemberError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFileMemberError` union. -/// -/// Errors for `addFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFileMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAddFileMemberErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGAddFileMemberError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAddFileMemberErrorTag) { - /// (no description). - DBSHARINGAddFileMemberErrorUserError, - - /// (no description). - DBSHARINGAddFileMemberErrorAccessError, - - /// The user has reached the rate limit for invitations. - DBSHARINGAddFileMemberErrorRateLimit, - - /// The custom message did not pass comment permissions checks. - DBSHARINGAddFileMemberErrorInvalidComment, - - /// (no description). - DBSHARINGAddFileMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAddFileMemberErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "rate_limit". -/// -/// Description of the "rate_limit" tag state: The user has reached the rate -/// limit for invitations. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimit; - -/// -/// Initializes union class with tag state of "invalid_comment". -/// -/// Description of the "invalid_comment" tag state: The custom message did not -/// pass comment permissions checks. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidComment; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "rate_limit". -/// -/// @return Whether the union's current tag state has value "rate_limit". -/// -- (BOOL)isRateLimit; - -/// -/// Retrieves whether the union's current tag state has value "invalid_comment". -/// -/// @return Whether the union's current tag state has value "invalid_comment". -/// -- (BOOL)isInvalidComment; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAddFileMemberError` union. -/// -@interface DBSHARINGAddFileMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFileMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFileMemberError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFileMemberError *)instance; - -/// -/// Deserializes `DBSHARINGAddFileMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFileMemberError` object. -/// -+ (DBSHARINGAddFileMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFolderMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFolderMemberArg.h deleted file mode 100644 index d5fe401f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFolderMemberArg.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFolderMemberArg; -@class DBSHARINGAddMember; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFolderMemberArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFolderMemberArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The intended list of members to add. Added members will receive invites to -/// join the shared folder. -@property (nonatomic, readonly) NSArray *members; - -/// Whether added members should be notified via email and device notifications -/// of their invite. -@property (nonatomic, readonly) NSNumber *quiet; - -/// Optional message to display to added members in their invitation. -@property (nonatomic, readonly, copy, nullable) NSString *customMessage; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will -/// receive invites to join the shared folder. -/// @param quiet Whether added members should be notified via email and device -/// notifications of their invite. -/// @param customMessage Optional message to display to added members in their -/// invitation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - members:(NSArray *)members - quiet:(nullable NSNumber *)quiet - customMessage:(nullable NSString *)customMessage; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will -/// receive invites to join the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId members:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddFolderMemberArg` struct. -/// -@interface DBSHARINGAddFolderMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFolderMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFolderMemberArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFolderMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGAddFolderMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFolderMemberArg` object. -/// -+ (DBSHARINGAddFolderMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFolderMemberError.h deleted file mode 100644 index f9bf9925..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddFolderMemberError.h +++ /dev/null @@ -1,421 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGAddMemberSelectorError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAddFolderMemberErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGAddFolderMemberError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAddFolderMemberErrorTag) { - /// Unable to access shared folder. - DBSHARINGAddFolderMemberErrorAccessError, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGAddFolderMemberErrorEmailUnverified, - - /// The current user has been banned. - DBSHARINGAddFolderMemberErrorBannedMember, - - /// `members` in `DBSHARINGAddFolderMemberArg` contains a bad invitation - /// recipient. - DBSHARINGAddFolderMemberErrorBadMember, - - /// Your team policy does not allow sharing outside of the team. - DBSHARINGAddFolderMemberErrorCantShareOutsideTeam, - - /// The value is the member limit that was reached. - DBSHARINGAddFolderMemberErrorTooManyMembers, - - /// The value is the pending invite limit that was reached. - DBSHARINGAddFolderMemberErrorTooManyPendingInvites, - - /// The current user has hit the limit of invites they can send per day. Try - /// again in 24 hours. - DBSHARINGAddFolderMemberErrorRateLimit, - - /// The current user is trying to share with too many people at once. - DBSHARINGAddFolderMemberErrorTooManyInvitees, - - /// The current user's account doesn't support this action. An example of - /// this is when adding a read-only member. This action can only be - /// performed by users that have upgraded to a Pro or Business plan. - DBSHARINGAddFolderMemberErrorInsufficientPlan, - - /// This action cannot be performed on a team shared folder. - DBSHARINGAddFolderMemberErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGAddFolderMemberErrorNoPermission, - - /// Invalid shared folder error will be returned as an access_error. - DBSHARINGAddFolderMemberErrorInvalidSharedFolder, - - /// (no description). - DBSHARINGAddFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAddFolderMemberErrorTag tag; - -/// Unable to access shared folder. @note Ensure the `isAccessError` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// `members` in `DBSHARINGAddFolderMemberArg` contains a bad invitation -/// recipient. @note Ensure the `isBadMember` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGAddMemberSelectorError *badMember; - -/// The value is the member limit that was reached. @note Ensure the -/// `isTooManyMembers` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) NSNumber *tooManyMembers; - -/// The value is the pending invite limit that was reached. @note Ensure the -/// `isTooManyPendingInvites` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *tooManyPendingInvites; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: Unable to access shared folder. -/// -/// @param accessError Unable to access shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "banned_member". -/// -/// Description of the "banned_member" tag state: The current user has been -/// banned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBannedMember; - -/// -/// Initializes union class with tag state of "bad_member". -/// -/// Description of the "bad_member" tag state: `members` in -/// `DBSHARINGAddFolderMemberArg` contains a bad invitation recipient. -/// -/// @param badMember `members` in `DBSHARINGAddFolderMemberArg` contains a bad -/// invitation recipient. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadMember:(DBSHARINGAddMemberSelectorError *)badMember; - -/// -/// Initializes union class with tag state of "cant_share_outside_team". -/// -/// Description of the "cant_share_outside_team" tag state: Your team policy -/// does not allow sharing outside of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantShareOutsideTeam; - -/// -/// Initializes union class with tag state of "too_many_members". -/// -/// Description of the "too_many_members" tag state: The value is the member -/// limit that was reached. -/// -/// @param tooManyMembers The value is the member limit that was reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyMembers:(NSNumber *)tooManyMembers; - -/// -/// Initializes union class with tag state of "too_many_pending_invites". -/// -/// Description of the "too_many_pending_invites" tag state: The value is the -/// pending invite limit that was reached. -/// -/// @param tooManyPendingInvites The value is the pending invite limit that was -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyPendingInvites:(NSNumber *)tooManyPendingInvites; - -/// -/// Initializes union class with tag state of "rate_limit". -/// -/// Description of the "rate_limit" tag state: The current user has hit the -/// limit of invites they can send per day. Try again in 24 hours. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimit; - -/// -/// Initializes union class with tag state of "too_many_invitees". -/// -/// Description of the "too_many_invitees" tag state: The current user is trying -/// to share with too many people at once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyInvitees; - -/// -/// Initializes union class with tag state of "insufficient_plan". -/// -/// Description of the "insufficient_plan" tag state: The current user's account -/// doesn't support this action. An example of this is when adding a read-only -/// member. This action can only be performed by users that have upgraded to a -/// Pro or Business plan. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPlan; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "invalid_shared_folder". -/// -/// Description of the "invalid_shared_folder" tag state: Invalid shared folder -/// error will be returned as an access_error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSharedFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "banned_member". -/// -/// @return Whether the union's current tag state has value "banned_member". -/// -- (BOOL)isBannedMember; - -/// -/// Retrieves whether the union's current tag state has value "bad_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `badMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "bad_member". -/// -- (BOOL)isBadMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_share_outside_team". -/// -/// @return Whether the union's current tag state has value -/// "cant_share_outside_team". -/// -- (BOOL)isCantShareOutsideTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tooManyMembers` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "too_many_members". -/// -- (BOOL)isTooManyMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_pending_invites". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tooManyPendingInvites` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "too_many_pending_invites". -/// -- (BOOL)isTooManyPendingInvites; - -/// -/// Retrieves whether the union's current tag state has value "rate_limit". -/// -/// @return Whether the union's current tag state has value "rate_limit". -/// -- (BOOL)isRateLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_invitees". -/// -/// @return Whether the union's current tag state has value "too_many_invitees". -/// -- (BOOL)isTooManyInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_plan". -/// -/// @return Whether the union's current tag state has value "insufficient_plan". -/// -- (BOOL)isInsufficientPlan; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "invalid_shared_folder". -/// -- (BOOL)isInvalidSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAddFolderMemberError` union. -/// -@interface DBSHARINGAddFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGAddFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFolderMemberError` object. -/// -+ (DBSHARINGAddFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddMember.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddMember.h deleted file mode 100644 index 05f6d23c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddMember.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAddMember; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddMember` struct. -/// -/// The member and type of access the member should have when added to a shared -/// folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddMember : NSObject - -#pragma mark - Instance fields - -/// The member to add to the shared folder. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The access level to grant member to the shared folder. `owner` in -/// `DBSHARINGAccessLevel` is disallowed. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member The member to add to the shared folder. -/// @param accessLevel The access level to grant member to the shared folder. -/// `owner` in `DBSHARINGAccessLevel` is disallowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param member The member to add to the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddMember` struct. -/// -@interface DBSHARINGAddMemberSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddMember` instances. -/// -/// @param instance An instance of the `DBSHARINGAddMember` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddMember` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddMember *)instance; - -/// -/// Deserializes `DBSHARINGAddMember` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddMember` API object. -/// -/// @return An instantiation of the `DBSHARINGAddMember` object. -/// -+ (DBSHARINGAddMember *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddMemberSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddMemberSelectorError.h deleted file mode 100644 index a0bc7786..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAddMemberSelectorError.h +++ /dev/null @@ -1,261 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddMemberSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddMemberSelectorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddMemberSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAddMemberSelectorErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGAddMemberSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAddMemberSelectorErrorTag) { - /// Automatically created groups can only be added to team folders. - DBSHARINGAddMemberSelectorErrorAutomaticGroup, - - /// The value is the ID that could not be identified. - DBSHARINGAddMemberSelectorErrorInvalidDropboxId, - - /// The value is the e-email address that is malformed. - DBSHARINGAddMemberSelectorErrorInvalidEmail, - - /// The value is the ID of the Dropbox user with an unverified email - /// address. Invite unverified users by email address instead of by their - /// Dropbox ID. - DBSHARINGAddMemberSelectorErrorUnverifiedDropboxId, - - /// At least one of the specified groups in `members` in - /// `DBSHARINGAddFolderMemberArg` is deleted. - DBSHARINGAddMemberSelectorErrorGroupDeleted, - - /// Sharing to a group that is not on the current user's team. - DBSHARINGAddMemberSelectorErrorGroupNotOnTeam, - - /// (no description). - DBSHARINGAddMemberSelectorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAddMemberSelectorErrorTag tag; - -/// The value is the ID that could not be identified. @note Ensure the -/// `isInvalidDropboxId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *invalidDropboxId; - -/// The value is the e-email address that is malformed. @note Ensure the -/// `isInvalidEmail` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *invalidEmail; - -/// The value is the ID of the Dropbox user with an unverified email address. -/// Invite unverified users by email address instead of by their Dropbox ID. -/// @note Ensure the `isUnverifiedDropboxId` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *unverifiedDropboxId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "automatic_group". -/// -/// Description of the "automatic_group" tag state: Automatically created groups -/// can only be added to team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutomaticGroup; - -/// -/// Initializes union class with tag state of "invalid_dropbox_id". -/// -/// Description of the "invalid_dropbox_id" tag state: The value is the ID that -/// could not be identified. -/// -/// @param invalidDropboxId The value is the ID that could not be identified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDropboxId:(NSString *)invalidDropboxId; - -/// -/// Initializes union class with tag state of "invalid_email". -/// -/// Description of the "invalid_email" tag state: The value is the e-email -/// address that is malformed. -/// -/// @param invalidEmail The value is the e-email address that is malformed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidEmail:(NSString *)invalidEmail; - -/// -/// Initializes union class with tag state of "unverified_dropbox_id". -/// -/// Description of the "unverified_dropbox_id" tag state: The value is the ID of -/// the Dropbox user with an unverified email address. Invite unverified users -/// by email address instead of by their Dropbox ID. -/// -/// @param unverifiedDropboxId The value is the ID of the Dropbox user with an -/// unverified email address. Invite unverified users by email address instead -/// of by their Dropbox ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnverifiedDropboxId:(NSString *)unverifiedDropboxId; - -/// -/// Initializes union class with tag state of "group_deleted". -/// -/// Description of the "group_deleted" tag state: At least one of the specified -/// groups in `members` in `DBSHARINGAddFolderMemberArg` is deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDeleted; - -/// -/// Initializes union class with tag state of "group_not_on_team". -/// -/// Description of the "group_not_on_team" tag state: Sharing to a group that is -/// not on the current user's team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotOnTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "automatic_group". -/// -/// @return Whether the union's current tag state has value "automatic_group". -/// -- (BOOL)isAutomaticGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidDropboxId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -- (BOOL)isInvalidDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "invalid_email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidEmail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_email". -/// -- (BOOL)isInvalidEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "unverified_dropbox_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unverifiedDropboxId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "unverified_dropbox_id". -/// -- (BOOL)isUnverifiedDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "group_deleted". -/// -/// @return Whether the union's current tag state has value "group_deleted". -/// -- (BOOL)isGroupDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_on_team". -/// -/// @return Whether the union's current tag state has value "group_not_on_team". -/// -- (BOOL)isGroupNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAddMemberSelectorError` union. -/// -@interface DBSHARINGAddMemberSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddMemberSelectorError` instances. -/// -/// @param instance An instance of the `DBSHARINGAddMemberSelectorError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddMemberSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddMemberSelectorError *)instance; - -/// -/// Deserializes `DBSHARINGAddMemberSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddMemberSelectorError` API object. -/// -/// @return An instantiation of the `DBSHARINGAddMemberSelectorError` object. -/// -+ (DBSHARINGAddMemberSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAlphaResolvedVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAlphaResolvedVisibility.h deleted file mode 100644 index 0b7012fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAlphaResolvedVisibility.h +++ /dev/null @@ -1,255 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAlphaResolvedVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlphaResolvedVisibility` union. -/// -/// check documentation for ResolvedVisibility. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAlphaResolvedVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAlphaResolvedVisibilityTag` enum type represents the possible -/// tag states with which the `DBSHARINGAlphaResolvedVisibility` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAlphaResolvedVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGAlphaResolvedVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGAlphaResolvedVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGAlphaResolvedVisibilityPassword, - - /// Only members of the same team who have the link-specific password can - /// access the link. Login is required. - DBSHARINGAlphaResolvedVisibilityTeamAndPassword, - - /// Only members of the shared folder containing the linked file can access - /// the link. Login is required. - DBSHARINGAlphaResolvedVisibilitySharedFolderOnly, - - /// The link merely points the user to the content, and does not grant any - /// additional rights. Existing members of the content who use this link can - /// only access the content with their pre-existing access rights. Either on - /// the file directly, or inherited from a parent folder. - DBSHARINGAlphaResolvedVisibilityNoOne, - - /// Only the current user can view this link. - DBSHARINGAlphaResolvedVisibilityOnlyYou, - - /// (no description). - DBSHARINGAlphaResolvedVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAlphaResolvedVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "team_and_password". -/// -/// Description of the "team_and_password" tag state: Only members of the same -/// team who have the link-specific password can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndPassword; - -/// -/// Initializes union class with tag state of "shared_folder_only". -/// -/// Description of the "shared_folder_only" tag state: Only members of the -/// shared folder containing the linked file can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderOnly; - -/// -/// Initializes union class with tag state of "no_one". -/// -/// Description of the "no_one" tag state: The link merely points the user to -/// the content, and does not grant any additional rights. Existing members of -/// the content who use this link can only access the content with their -/// pre-existing access rights. Either on the file directly, or inherited from a -/// parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "only_you". -/// -/// Description of the "only_you" tag state: Only the current user can view this -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyYou; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_password". -/// -/// @return Whether the union's current tag state has value "team_and_password". -/// -- (BOOL)isTeamAndPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_only". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_only". -/// -- (BOOL)isSharedFolderOnly; - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "only_you". -/// -/// @return Whether the union's current tag state has value "only_you". -/// -- (BOOL)isOnlyYou; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAlphaResolvedVisibility` union. -/// -@interface DBSHARINGAlphaResolvedVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGAlphaResolvedVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGAlphaResolvedVisibility` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAlphaResolvedVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAlphaResolvedVisibility *)instance; - -/// -/// Deserializes `DBSHARINGAlphaResolvedVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAlphaResolvedVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGAlphaResolvedVisibility` object. -/// -+ (DBSHARINGAlphaResolvedVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAppAuthRoutes.h deleted file mode 100644 index 5e507a5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAppAuthRoutes.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCLaunchEmptyResult; -@class DBASYNCLaunchResultBase; -@class DBASYNCPollError; -@class DBFILESLookupError; -@class DBNilObject; -@class DBSHARINGAccessInheritance; -@class DBSHARINGAccessLevel; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGAddFileMemberError; -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGAddMember; -@class DBSHARINGAddMemberSelectorError; -@class DBSHARINGCreateSharedLinkError; -@class DBSHARINGCreateSharedLinkWithSettingsError; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGFileAction; -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberActionIndividualResult; -@class DBSHARINGFileMemberActionResult; -@class DBSHARINGFileMemberRemoveActionResult; -@class DBSHARINGFilePermission; -@class DBSHARINGFolderAction; -@class DBSHARINGFolderPermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGGetFileMetadataBatchResult; -@class DBSHARINGGetFileMetadataError; -@class DBSHARINGGetFileMetadataIndividualResult; -@class DBSHARINGGetSharedLinkFileError; -@class DBSHARINGGetSharedLinksError; -@class DBSHARINGGetSharedLinksResult; -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInsufficientQuotaAmounts; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGJobError; -@class DBSHARINGJobStatus; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkExpiry; -@class DBSHARINGLinkMetadata; -@class DBSHARINGLinkPassword; -@class DBSHARINGLinkPermissions; -@class DBSHARINGLinkSettings; -@class DBSHARINGListFileMembersBatchResult; -@class DBSHARINGListFileMembersContinueError; -@class DBSHARINGListFileMembersError; -@class DBSHARINGListFileMembersIndividualResult; -@class DBSHARINGListFilesContinueError; -@class DBSHARINGListFilesResult; -@class DBSHARINGListFolderMembersContinueError; -@class DBSHARINGListFoldersContinueError; -@class DBSHARINGListFoldersResult; -@class DBSHARINGListSharedLinksError; -@class DBSHARINGListSharedLinksResult; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGMemberAction; -@class DBSHARINGMemberPolicy; -@class DBSHARINGMemberSelector; -@class DBSHARINGModifySharedLinkSettingsError; -@class DBSHARINGMountFolderError; -@class DBSHARINGParentFolderAccessInfo; -@class DBSHARINGPathLinkMetadata; -@class DBSHARINGPendingUploadMode; -@class DBSHARINGRelinquishFileMembershipError; -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGRemoveFileMemberError; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGRemoveMemberJobStatus; -@class DBSHARINGRequestedLinkAccessLevel; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGRevokeSharedLinkError; -@class DBSHARINGSetAccessInheritanceError; -@class DBSHARINGShareFolderError; -@class DBSHARINGShareFolderJobStatus; -@class DBSHARINGShareFolderLaunch; -@class DBSHARINGSharePathError; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFileMembers; -@class DBSHARINGSharedFileMetadata; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; -@class DBSHARINGSharedFolderMembers; -@class DBSHARINGSharedFolderMetadata; -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkError; -@class DBSHARINGSharedLinkMetadata; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGSharedLinkSettings; -@class DBSHARINGSharedLinkSettingsError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; -@class DBSHARINGTeamMemberInfo; -@class DBSHARINGTransferFolderError; -@class DBSHARINGUnmountFolderError; -@class DBSHARINGUnshareFileError; -@class DBSHARINGUnshareFolderError; -@class DBSHARINGUpdateFolderMemberError; -@class DBSHARINGUpdateFolderPolicyError; -@class DBSHARINGUserFileMembershipInfo; -@class DBSHARINGUserMembershipInfo; -@class DBSHARINGViewerInfoPolicy; -@class DBSHARINGVisibility; -@class DBUSERSTeam; - -@protocol DBTransportClient; - -/// -/// Routes for the `Sharing` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBSHARINGAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBSHARINGAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *)getSharedLinkMetadata:(NSString *)url; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *) - getSharedLinkMetadata:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceExceptionContentInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceExceptionContentInfo.h deleted file mode 100644 index d53cbd42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceExceptionContentInfo.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAudienceExceptionContentInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AudienceExceptionContentInfo` struct. -/// -/// Information about the content that has a link audience different than that -/// of this folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAudienceExceptionContentInfo : NSObject - -#pragma mark - Instance fields - -/// The name of the content, which is either a file or a folder. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of the content, which is either a file or a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AudienceExceptionContentInfo` struct. -/// -@interface DBSHARINGAudienceExceptionContentInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGAudienceExceptionContentInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGAudienceExceptionContentInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptionContentInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAudienceExceptionContentInfo *)instance; - -/// -/// Deserializes `DBSHARINGAudienceExceptionContentInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptionContentInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGAudienceExceptionContentInfo` -/// object. -/// -+ (DBSHARINGAudienceExceptionContentInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceExceptions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceExceptions.h deleted file mode 100644 index 38a39599..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceExceptions.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAudienceExceptionContentInfo; -@class DBSHARINGAudienceExceptions; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AudienceExceptions` struct. -/// -/// The total count and truncated list of information of content inside this -/// folder that has a different audience than the link on this folder. This is -/// only returned for folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAudienceExceptions : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSNumber *count; - -/// A truncated list of some of the content that is an exception. The length of -/// this list could be smaller than the count since it is only a sample but will -/// not be empty as long as count is not 0. -@property (nonatomic, readonly) NSArray *exceptions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param count (no description). -/// @param exceptions A truncated list of some of the content that is an -/// exception. The length of this list could be smaller than the count since it -/// is only a sample but will not be empty as long as count is not 0. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCount:(NSNumber *)count - exceptions:(NSArray *)exceptions; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AudienceExceptions` struct. -/// -@interface DBSHARINGAudienceExceptionsSerializer : NSObject - -/// -/// Serializes `DBSHARINGAudienceExceptions` instances. -/// -/// @param instance An instance of the `DBSHARINGAudienceExceptions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAudienceExceptions *)instance; - -/// -/// Deserializes `DBSHARINGAudienceExceptions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptions` API object. -/// -/// @return An instantiation of the `DBSHARINGAudienceExceptions` object. -/// -+ (DBSHARINGAudienceExceptions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceRestrictingSharedFolder.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceRestrictingSharedFolder.h deleted file mode 100644 index 98e6f5bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGAudienceRestrictingSharedFolder.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGLinkAudience; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AudienceRestrictingSharedFolder` struct. -/// -/// Information about the shared folder that prevents the link audience for this -/// link from being more restrictive. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAudienceRestrictingSharedFolder : NSObject - -#pragma mark - Instance fields - -/// The ID of the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The name of the shared folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The link audience of the shared folder. -@property (nonatomic, readonly) DBSHARINGLinkAudience *audience; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID of the shared folder. -/// @param name The name of the shared folder. -/// @param audience The link audience of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - name:(NSString *)name - audience:(DBSHARINGLinkAudience *)audience; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AudienceRestrictingSharedFolder` struct. -/// -@interface DBSHARINGAudienceRestrictingSharedFolderSerializer : NSObject - -/// -/// Serializes `DBSHARINGAudienceRestrictingSharedFolder` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGAudienceRestrictingSharedFolder` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAudienceRestrictingSharedFolder` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAudienceRestrictingSharedFolder *)instance; - -/// -/// Deserializes `DBSHARINGAudienceRestrictingSharedFolder` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAudienceRestrictingSharedFolder` API object. -/// -/// @return An instantiation of the `DBSHARINGAudienceRestrictingSharedFolder` -/// object. -/// -+ (DBSHARINGAudienceRestrictingSharedFolder *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCollectionLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCollectionLinkMetadata.h deleted file mode 100644 index b0ac963d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCollectionLinkMetadata.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGCollectionLinkMetadata; -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CollectionLinkMetadata` struct. -/// -/// Metadata for a collection-based shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCollectionLinkMetadata : DBSHARINGLinkMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param expires Expiration time, if set. By default the link won't expire. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - visibility:(DBSHARINGVisibility *)visibility - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url visibility:(DBSHARINGVisibility *)visibility; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CollectionLinkMetadata` struct. -/// -@interface DBSHARINGCollectionLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGCollectionLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGCollectionLinkMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCollectionLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCollectionLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGCollectionLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCollectionLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGCollectionLinkMetadata` object. -/// -+ (DBSHARINGCollectionLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkArg.h deleted file mode 100644 index 965a8908..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkArg.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGCreateSharedLinkArg; -@class DBSHARINGPendingUploadMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkArg : NSObject - -#pragma mark - Instance fields - -/// The path to share. -@property (nonatomic, readonly, copy) NSString *path; - -/// (no description). -@property (nonatomic, readonly) NSNumber *shortUrl; - -/// If it's okay to share a path that does not yet exist, set this to either -/// `file` in `DBSHARINGPendingUploadMode` or `folder` in -/// `DBSHARINGPendingUploadMode` to indicate whether to assume it's a file or -/// folder. -@property (nonatomic, readonly, nullable) DBSHARINGPendingUploadMode *pendingUpload; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to share. -/// @param shortUrl (no description). -/// @param pendingUpload If it's okay to share a path that does not yet exist, -/// set this to either `file` in `DBSHARINGPendingUploadMode` or `folder` in -/// `DBSHARINGPendingUploadMode` to indicate whether to assume it's a file or -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - shortUrl:(nullable NSNumber *)shortUrl - pendingUpload:(nullable DBSHARINGPendingUploadMode *)pendingUpload; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to share. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateSharedLinkArg` struct. -/// -@interface DBSHARINGCreateSharedLinkArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkArg` instances. -/// -/// @param instance An instance of the `DBSHARINGCreateSharedLinkArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkArg *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkArg` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkArg` object. -/// -+ (DBSHARINGCreateSharedLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkError.h deleted file mode 100644 index f1ff19f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBSHARINGCreateSharedLinkError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGCreateSharedLinkErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGCreateSharedLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGCreateSharedLinkErrorTag) { - /// (no description). - DBSHARINGCreateSharedLinkErrorPath, - - /// (no description). - DBSHARINGCreateSharedLinkErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGCreateSharedLinkErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGCreateSharedLinkError` union. -/// -@interface DBSHARINGCreateSharedLinkErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkError` instances. -/// -/// @param instance An instance of the `DBSHARINGCreateSharedLinkError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkError *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkError` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkError` object. -/// -+ (DBSHARINGCreateSharedLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkWithSettingsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkWithSettingsArg.h deleted file mode 100644 index 16e7468f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkWithSettingsArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGCreateSharedLinkWithSettingsArg; -@class DBSHARINGSharedLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkWithSettingsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsArg : NSObject - -#pragma mark - Instance fields - -/// The path to be shared by the shared link. -@property (nonatomic, readonly, copy) NSString *path; - -/// The requested settings for the newly created shared link. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkSettings *settings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to be shared by the shared link. -/// @param settings The requested settings for the newly created shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path settings:(nullable DBSHARINGSharedLinkSettings *)settings; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to be shared by the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateSharedLinkWithSettingsArg` struct. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkWithSettingsArg` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGCreateSharedLinkWithSettingsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkWithSettingsArg *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkWithSettingsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsArg` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkWithSettingsArg` -/// object. -/// -+ (DBSHARINGCreateSharedLinkWithSettingsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkWithSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkWithSettingsError.h deleted file mode 100644 index 4a6c4ffe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGCreateSharedLinkWithSettingsError.h +++ /dev/null @@ -1,233 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBSHARINGCreateSharedLinkWithSettingsError; -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkWithSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGCreateSharedLinkWithSettingsErrorTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGCreateSharedLinkWithSettingsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGCreateSharedLinkWithSettingsErrorTag) { - /// (no description). - DBSHARINGCreateSharedLinkWithSettingsErrorPath, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGCreateSharedLinkWithSettingsErrorEmailNotVerified, - - /// The shared link already exists. You can call `listSharedLinks` to get - /// the existing link, or use the provided metadata if it is returned. - DBSHARINGCreateSharedLinkWithSettingsErrorSharedLinkAlreadyExists, - - /// There is an error with the given settings. - DBSHARINGCreateSharedLinkWithSettingsErrorSettingsError, - - /// The user is not allowed to create a shared link to the specified file. - /// For example, this can occur if the file is restricted or if the user's - /// links are banned - /// https://help.dropbox.com/files-folders/share/banned-links. - DBSHARINGCreateSharedLinkWithSettingsErrorAccessDenied, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGCreateSharedLinkWithSettingsErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// The shared link already exists. You can call `listSharedLinks` to get the -/// existing link, or use the provided metadata if it is returned. @note Ensure -/// the `isSharedLinkAlreadyExists` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkAlreadyExistsMetadata *sharedLinkAlreadyExists; - -/// There is an error with the given settings. @note Ensure the -/// `isSettingsError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettingsError *settingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "email_not_verified". -/// -/// Description of the "email_not_verified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailNotVerified; - -/// -/// Initializes union class with tag state of "shared_link_already_exists". -/// -/// Description of the "shared_link_already_exists" tag state: The shared link -/// already exists. You can call `listSharedLinks` to get the existing link, or -/// use the provided metadata if it is returned. -/// -/// @param sharedLinkAlreadyExists The shared link already exists. You can call -/// `listSharedLinks` to get the existing link, or use the provided metadata if -/// it is returned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAlreadyExists: - (nullable DBSHARINGSharedLinkAlreadyExistsMetadata *)sharedLinkAlreadyExists; - -/// -/// Initializes union class with tag state of "settings_error". -/// -/// Description of the "settings_error" tag state: There is an error with the -/// given settings. -/// -/// @param settingsError There is an error with the given settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSettingsError:(DBSHARINGSharedLinkSettingsError *)settingsError; - -/// -/// Initializes union class with tag state of "access_denied". -/// -/// Description of the "access_denied" tag state: The user is not allowed to -/// create a shared link to the specified file. For example, this can occur if -/// the file is restricted or if the user's links are banned -/// https://help.dropbox.com/files-folders/share/banned-links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessDenied; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "email_not_verified". -/// -- (BOOL)isEmailNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_already_exists". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkAlreadyExists` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_already_exists". -/// -- (BOOL)isSharedLinkAlreadyExists; - -/// -/// Retrieves whether the union's current tag state has value "settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `settingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "settings_error". -/// -- (BOOL)isSettingsError; - -/// -/// Retrieves whether the union's current tag state has value "access_denied". -/// -/// @return Whether the union's current tag state has value "access_denied". -/// -- (BOOL)isAccessDenied; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGCreateSharedLinkWithSettingsError` -/// union. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkWithSettingsError` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGCreateSharedLinkWithSettingsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkWithSettingsError *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkWithSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsError` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkWithSettingsError` -/// object. -/// -+ (DBSHARINGCreateSharedLinkWithSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGExpectedSharedContentLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGExpectedSharedContentLinkMetadata.h deleted file mode 100644 index 79428ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGExpectedSharedContentLinkMetadata.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedContentLinkMetadataBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkPermission; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExpectedSharedContentLinkMetadata` struct. -/// -/// The expected metadata of a shared link for a file or folder when a link is -/// first created for the content. Absent if the link already exists. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGExpectedSharedContentLinkMetadata - : DBSHARINGSharedContentLinkMetadataBase - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param accessLevel The access level on the link for this file. -/// @param audienceRestrictingSharedFolder The shared folder that prevents the -/// link audience for this link from being more restrictive. -/// @param expiry Whether the link has an expiry set on it. A link with an -/// expiry will have its audience changed to members when the expiry is -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audienceRestrictingSharedFolder: - (nullable DBSHARINGAudienceRestrictingSharedFolder *)audienceRestrictingSharedFolder - expiry:(nullable NSDate *)expiry; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExpectedSharedContentLinkMetadata` struct. -/// -@interface DBSHARINGExpectedSharedContentLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGExpectedSharedContentLinkMetadata` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGExpectedSharedContentLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGExpectedSharedContentLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGExpectedSharedContentLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGExpectedSharedContentLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGExpectedSharedContentLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGExpectedSharedContentLinkMetadata` -/// object. -/// -+ (DBSHARINGExpectedSharedContentLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileAction.h deleted file mode 100644 index ec2f578a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileAction.h +++ /dev/null @@ -1,349 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAction` union. -/// -/// Sharing actions that may be taken on files. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGFileAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileActionTag) { - /// Disable viewer information on the file. - DBSHARINGFileActionDisableViewerInfo, - - /// Change or edit contents of the file. - DBSHARINGFileActionEditContents, - - /// Enable viewer information on the file. - DBSHARINGFileActionEnableViewerInfo, - - /// Add a member with view permissions. - DBSHARINGFileActionInviteViewer, - - /// Add a member with view permissions but no comment permissions. - DBSHARINGFileActionInviteViewerNoComment, - - /// Add a member with edit permissions. - DBSHARINGFileActionInviteEditor, - - /// Stop sharing this file. - DBSHARINGFileActionUnshare, - - /// Relinquish one's own membership to the file. - DBSHARINGFileActionRelinquishMembership, - - /// Use create_view_link and create_edit_link instead. - DBSHARINGFileActionShareLink, - - /// Use create_view_link and create_edit_link instead. - DBSHARINGFileActionCreateLink, - - /// Create a shared link to a file that only allows users to view the - /// content. - DBSHARINGFileActionCreateViewLink, - - /// Create a shared link to a file that allows users to edit the content. - DBSHARINGFileActionCreateEditLink, - - /// (no description). - DBSHARINGFileActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disable_viewer_info". -/// -/// Description of the "disable_viewer_info" tag state: Disable viewer -/// information on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisableViewerInfo; - -/// -/// Initializes union class with tag state of "edit_contents". -/// -/// Description of the "edit_contents" tag state: Change or edit contents of the -/// file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditContents; - -/// -/// Initializes union class with tag state of "enable_viewer_info". -/// -/// Description of the "enable_viewer_info" tag state: Enable viewer information -/// on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnableViewerInfo; - -/// -/// Initializes union class with tag state of "invite_viewer". -/// -/// Description of the "invite_viewer" tag state: Add a member with view -/// permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewer; - -/// -/// Initializes union class with tag state of "invite_viewer_no_comment". -/// -/// Description of the "invite_viewer_no_comment" tag state: Add a member with -/// view permissions but no comment permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewerNoComment; - -/// -/// Initializes union class with tag state of "invite_editor". -/// -/// Description of the "invite_editor" tag state: Add a member with edit -/// permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteEditor; - -/// -/// Initializes union class with tag state of "unshare". -/// -/// Description of the "unshare" tag state: Stop sharing this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnshare; - -/// -/// Initializes union class with tag state of "relinquish_membership". -/// -/// Description of the "relinquish_membership" tag state: Relinquish one's own -/// membership to the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelinquishMembership; - -/// -/// Initializes union class with tag state of "share_link". -/// -/// Description of the "share_link" tag state: Use create_view_link and -/// create_edit_link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShareLink; - -/// -/// Initializes union class with tag state of "create_link". -/// -/// Description of the "create_link" tag state: Use create_view_link and -/// create_edit_link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateLink; - -/// -/// Initializes union class with tag state of "create_view_link". -/// -/// Description of the "create_view_link" tag state: Create a shared link to a -/// file that only allows users to view the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateViewLink; - -/// -/// Initializes union class with tag state of "create_edit_link". -/// -/// Description of the "create_edit_link" tag state: Create a shared link to a -/// file that allows users to edit the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateEditLink; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "disable_viewer_info". -/// -- (BOOL)isDisableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "edit_contents". -/// -/// @return Whether the union's current tag state has value "edit_contents". -/// -- (BOOL)isEditContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "enable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "enable_viewer_info". -/// -- (BOOL)isEnableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "invite_viewer". -/// -/// @return Whether the union's current tag state has value "invite_viewer". -/// -- (BOOL)isInviteViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -/// @return Whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -- (BOOL)isInviteViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value "invite_editor". -/// -/// @return Whether the union's current tag state has value "invite_editor". -/// -- (BOOL)isInviteEditor; - -/// -/// Retrieves whether the union's current tag state has value "unshare". -/// -/// @return Whether the union's current tag state has value "unshare". -/// -- (BOOL)isUnshare; - -/// -/// Retrieves whether the union's current tag state has value -/// "relinquish_membership". -/// -/// @return Whether the union's current tag state has value -/// "relinquish_membership". -/// -- (BOOL)isRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value "share_link". -/// -/// @return Whether the union's current tag state has value "share_link". -/// -- (BOOL)isShareLink; - -/// -/// Retrieves whether the union's current tag state has value "create_link". -/// -/// @return Whether the union's current tag state has value "create_link". -/// -- (BOOL)isCreateLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_view_link". -/// -/// @return Whether the union's current tag state has value "create_view_link". -/// -- (BOOL)isCreateViewLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_edit_link". -/// -/// @return Whether the union's current tag state has value "create_edit_link". -/// -- (BOOL)isCreateEditLink; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileAction` union. -/// -@interface DBSHARINGFileActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileAction` instances. -/// -/// @param instance An instance of the `DBSHARINGFileAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileAction *)instance; - -/// -/// Deserializes `DBSHARINGFileAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileAction` API object. -/// -/// @return An instantiation of the `DBSHARINGFileAction` object. -/// -+ (DBSHARINGFileAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileErrorResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileErrorResult.h deleted file mode 100644 index 22d580f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileErrorResult.h +++ /dev/null @@ -1,197 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileErrorResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileErrorResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileErrorResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileErrorResultTag` enum type represents the possible tag -/// states with which the `DBSHARINGFileErrorResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileErrorResultTag) { - /// File specified by id was not found. - DBSHARINGFileErrorResultFileNotFoundError, - - /// User does not have permission to take the specified action on the file. - DBSHARINGFileErrorResultInvalidFileActionError, - - /// User does not have permission to access file specified by file.Id. - DBSHARINGFileErrorResultPermissionDeniedError, - - /// (no description). - DBSHARINGFileErrorResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileErrorResultTag tag; - -/// File specified by id was not found. @note Ensure the `isFileNotFoundError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *fileNotFoundError; - -/// User does not have permission to take the specified action on the file. -/// @note Ensure the `isInvalidFileActionError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *invalidFileActionError; - -/// User does not have permission to access file specified by file.Id. @note -/// Ensure the `isPermissionDeniedError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *permissionDeniedError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file_not_found_error". -/// -/// Description of the "file_not_found_error" tag state: File specified by id -/// was not found. -/// -/// @param fileNotFoundError File specified by id was not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileNotFoundError:(NSString *)fileNotFoundError; - -/// -/// Initializes union class with tag state of "invalid_file_action_error". -/// -/// Description of the "invalid_file_action_error" tag state: User does not have -/// permission to take the specified action on the file. -/// -/// @param invalidFileActionError User does not have permission to take the -/// specified action on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFileActionError:(NSString *)invalidFileActionError; - -/// -/// Initializes union class with tag state of "permission_denied_error". -/// -/// Description of the "permission_denied_error" tag state: User does not have -/// permission to access file specified by file.Id. -/// -/// @param permissionDeniedError User does not have permission to access file -/// specified by file.Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDeniedError:(NSString *)permissionDeniedError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "file_not_found_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileNotFoundError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_not_found_error". -/// -- (BOOL)isFileNotFoundError; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_file_action_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidFileActionError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "invalid_file_action_error". -/// -- (BOOL)isInvalidFileActionError; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `permissionDeniedError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "permission_denied_error". -/// -- (BOOL)isPermissionDeniedError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileErrorResult` union. -/// -@interface DBSHARINGFileErrorResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileErrorResult` instances. -/// -/// @param instance An instance of the `DBSHARINGFileErrorResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileErrorResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileErrorResult *)instance; - -/// -/// Deserializes `DBSHARINGFileErrorResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileErrorResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileErrorResult` object. -/// -+ (DBSHARINGFileErrorResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileLinkMetadata.h deleted file mode 100644 index cb0eaa01..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileLinkMetadata.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileLinkMetadata; -@class DBSHARINGLinkPermissions; -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLinkMetadata` struct. -/// -/// The metadata of a file shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileLinkMetadata : DBSHARINGSharedLinkMetadata - -#pragma mark - Instance fields - -/// The modification time set by the desktop client when the file was added to -/// Dropbox. Since this time is not verified (the Dropbox server stores whatever -/// the desktop client sends up), this should only be used for display purposes -/// (such as sorting) and not, for example, to determine if a file has changed -/// or not. -@property (nonatomic, readonly) NSDate *clientModified; - -/// The last time the file was modified on Dropbox. -@property (nonatomic, readonly) NSDate *serverModified; - -/// A unique identifier for the current revision of a file. This field is the -/// same rev as elsewhere in the API and can be used to detect changes and avoid -/// conflicts. -@property (nonatomic, readonly, copy) NSString *rev; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param clientModified The modification time set by the desktop client when -/// the file was added to Dropbox. Since this time is not verified (the Dropbox -/// server stores whatever the desktop client sends up), this should only be -/// used for display purposes (such as sorting) and not, for example, to -/// determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// @param id_ A unique identifier for the linked file. -/// @param expires Expiration time, if set. By default the link won't expire. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will only be present only if the linked file -/// is in the authenticated user's dropbox. -/// @param teamMemberInfo The team membership information of the link's owner. -/// This field will only be present if the link's owner is a team member. -/// @param contentOwnerTeamInfo The team information of the content's owner. -/// This field will only be present if the content's owner is a team member and -/// the content's owner team is different from the link's owner team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size - id_:(nullable NSString *)id_ - expires:(nullable NSDate *)expires - pathLower:(nullable NSString *)pathLower - teamMemberInfo:(nullable DBSHARINGTeamMemberInfo *)teamMemberInfo - contentOwnerTeamInfo:(nullable DBUSERSTeam *)contentOwnerTeamInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param clientModified The modification time set by the desktop client when -/// the file was added to Dropbox. Since this time is not verified (the Dropbox -/// server stores whatever the desktop client sends up), this should only be -/// used for display purposes (such as sorting) and not, for example, to -/// determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLinkMetadata` struct. -/// -@interface DBSHARINGFileLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGFileLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGFileLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGFileLinkMetadata` object. -/// -+ (DBSHARINGFileLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionError.h deleted file mode 100644 index 6dcf1df5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionError.h +++ /dev/null @@ -1,210 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileMemberActionError; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberActionError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberActionError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileMemberActionErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGFileMemberActionError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileMemberActionErrorTag) { - /// Specified member was not found. - DBSHARINGFileMemberActionErrorInvalidMember, - - /// User does not have permission to perform this action on this member. - DBSHARINGFileMemberActionErrorNoPermission, - - /// Specified file was invalid or user does not have access. - DBSHARINGFileMemberActionErrorAccessError, - - /// The action cannot be completed because the target member does not have - /// explicit access to the file. The return value is the access that the - /// member has to the file from a parent folder. - DBSHARINGFileMemberActionErrorNoExplicitAccess, - - /// (no description). - DBSHARINGFileMemberActionErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileMemberActionErrorTag tag; - -/// Specified file was invalid or user does not have access. @note Ensure the -/// `isAccessError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -/// The action cannot be completed because the target member does not have -/// explicit access to the file. The return value is the access that the member -/// has to the file from a parent folder. @note Ensure the `isNoExplicitAccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_member". -/// -/// Description of the "invalid_member" tag state: Specified member was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMember; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: User does not have permission -/// to perform this action on this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: Specified file was invalid or -/// user does not have access. -/// -/// @param accessError Specified file was invalid or user does not have access. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: The action cannot be -/// completed because the target member does not have explicit access to the -/// file. The return value is the access that the member has to the file from a -/// parent folder. -/// -/// @param noExplicitAccess The action cannot be completed because the target -/// member does not have explicit access to the file. The return value is the -/// access that the member has to the file from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGMemberAccessLevelResult *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_member". -/// -/// @return Whether the union's current tag state has value "invalid_member". -/// -- (BOOL)isInvalidMember; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileMemberActionError` union. -/// -@interface DBSHARINGFileMemberActionErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberActionError` instances. -/// -/// @param instance An instance of the `DBSHARINGFileMemberActionError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberActionError *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberActionError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionError` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberActionError` object. -/// -+ (DBSHARINGFileMemberActionError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionIndividualResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionIndividualResult.h deleted file mode 100644 index b47861b2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionIndividualResult.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberActionIndividualResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberActionIndividualResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberActionIndividualResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileMemberActionIndividualResultTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGFileMemberActionIndividualResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileMemberActionIndividualResultTag) { - /// Part of the response for both add_file_member and remove_file_member_v1 - /// (deprecated). For add_file_member, indicates giving access was - /// successful and at what AccessLevel. For remove_file_member_v1, indicates - /// member was successfully removed from the file. If AccessLevel is given, - /// the member still has access via a parent shared folder. - DBSHARINGFileMemberActionIndividualResultSuccess, - - /// User was not able to perform this action. - DBSHARINGFileMemberActionIndividualResultMemberError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileMemberActionIndividualResultTag tag; - -/// Part of the response for both add_file_member and remove_file_member_v1 -/// (deprecated). For add_file_member, indicates giving access was successful -/// and at what AccessLevel. For remove_file_member_v1, indicates member was -/// successfully removed from the file. If AccessLevel is given, the member -/// still has access via a parent shared folder. @note Ensure the `isSuccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *success; - -/// User was not able to perform this action. @note Ensure the `isMemberError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGFileMemberActionError *memberError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Part of the response for both -/// add_file_member and remove_file_member_v1 (deprecated). For add_file_member, -/// indicates giving access was successful and at what AccessLevel. For -/// remove_file_member_v1, indicates member was successfully removed from the -/// file. If AccessLevel is given, the member still has access via a parent -/// shared folder. -/// -/// @param success Part of the response for both add_file_member and -/// remove_file_member_v1 (deprecated). For add_file_member, indicates giving -/// access was successful and at what AccessLevel. For remove_file_member_v1, -/// indicates member was successfully removed from the file. If AccessLevel is -/// given, the member still has access via a parent shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(nullable DBSHARINGAccessLevel *)success; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// Description of the "member_error" tag state: User was not able to perform -/// this action. -/// -/// @param memberError User was not able to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGFileMemberActionError *)memberError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileMemberActionIndividualResult` -/// union. -/// -@interface DBSHARINGFileMemberActionIndividualResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberActionIndividualResult` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGFileMemberActionIndividualResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionIndividualResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberActionIndividualResult *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberActionIndividualResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionIndividualResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberActionIndividualResult` -/// object. -/// -+ (DBSHARINGFileMemberActionIndividualResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionResult.h deleted file mode 100644 index 578d30f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberActionResult.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileMemberActionIndividualResult; -@class DBSHARINGFileMemberActionResult; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberActionResult` struct. -/// -/// Per-member result for `addFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberActionResult : NSObject - -#pragma mark - Instance fields - -/// One of specified input members. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The outcome of the action on this member. -@property (nonatomic, readonly) DBSHARINGFileMemberActionIndividualResult *result; - -/// The SHA-1 encrypted shared content key. -@property (nonatomic, readonly, copy, nullable) NSString *sckeySha1; - -/// The sharing sender-recipient invitation signatures for the input member_id. -/// A member_id can be a group and thus have multiple users and multiple -/// invitation signatures. -@property (nonatomic, readonly, nullable) NSArray *invitationSignature; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member One of specified input members. -/// @param result The outcome of the action on this member. -/// @param sckeySha1 The SHA-1 encrypted shared content key. -/// @param invitationSignature The sharing sender-recipient invitation -/// signatures for the input member_id. A member_id can be a group and thus have -/// multiple users and multiple invitation signatures. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - result:(DBSHARINGFileMemberActionIndividualResult *)result - sckeySha1:(nullable NSString *)sckeySha1 - invitationSignature:(nullable NSArray *)invitationSignature; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param member One of specified input members. -/// @param result The outcome of the action on this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - result:(DBSHARINGFileMemberActionIndividualResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMemberActionResult` struct. -/// -@interface DBSHARINGFileMemberActionResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberActionResult` instances. -/// -/// @param instance An instance of the `DBSHARINGFileMemberActionResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberActionResult *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberActionResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberActionResult` object. -/// -+ (DBSHARINGFileMemberActionResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberRemoveActionResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberRemoveActionResult.h deleted file mode 100644 index a726cbe2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFileMemberRemoveActionResult.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberRemoveActionResult; -@class DBSHARINGMemberAccessLevelResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberRemoveActionResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberRemoveActionResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileMemberRemoveActionResultTag` enum type represents the -/// possible tag states with which the `DBSHARINGFileMemberRemoveActionResult` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileMemberRemoveActionResultTag) { - /// Member was successfully removed from this file. - DBSHARINGFileMemberRemoveActionResultSuccess, - - /// User was not able to remove this member. - DBSHARINGFileMemberRemoveActionResultMemberError, - - /// (no description). - DBSHARINGFileMemberRemoveActionResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileMemberRemoveActionResultTag tag; - -/// Member was successfully removed from this file. @note Ensure the `isSuccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *success; - -/// User was not able to remove this member. @note Ensure the `isMemberError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGFileMemberActionError *memberError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Member was successfully removed from -/// this file. -/// -/// @param success Member was successfully removed from this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBSHARINGMemberAccessLevelResult *)success; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// Description of the "member_error" tag state: User was not able to remove -/// this member. -/// -/// @param memberError User was not able to remove this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGFileMemberActionError *)memberError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileMemberRemoveActionResult` -/// union. -/// -@interface DBSHARINGFileMemberRemoveActionResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberRemoveActionResult` instances. -/// -/// @param instance An instance of the `DBSHARINGFileMemberRemoveActionResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberRemoveActionResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberRemoveActionResult *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberRemoveActionResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberRemoveActionResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberRemoveActionResult` -/// object. -/// -+ (DBSHARINGFileMemberRemoveActionResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFilePermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFilePermission.h deleted file mode 100644 index 4eec58dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFilePermission.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGFilePermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePermission` struct. -/// -/// Whether the user is allowed to take the sharing action on the file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFilePermission : NSObject - -#pragma mark - Instance fields - -/// The action that the user may wish to take on the file. -@property (nonatomic, readonly) DBSHARINGFileAction *action; - -/// True if the user is allowed to take the action. -@property (nonatomic, readonly) NSNumber *allow; - -/// The reason why the user is denied the permission. Not present if the action -/// is allowed. -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The action that the user may wish to take on the file. -/// @param allow True if the user is allowed to take the action. -/// @param reason The reason why the user is denied the permission. Not present -/// if the action is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFileAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action The action that the user may wish to take on the file. -/// @param allow True if the user is allowed to take the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFileAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePermission` struct. -/// -@interface DBSHARINGFilePermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFilePermission` instances. -/// -/// @param instance An instance of the `DBSHARINGFilePermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFilePermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFilePermission *)instance; - -/// -/// Deserializes `DBSHARINGFilePermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFilePermission` API object. -/// -/// @return An instantiation of the `DBSHARINGFilePermission` object. -/// -+ (DBSHARINGFilePermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderAction.h deleted file mode 100644 index 613bf469..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderAction.h +++ /dev/null @@ -1,388 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderAction` union. -/// -/// Actions that may be taken on shared folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFolderActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGFolderAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFolderActionTag) { - /// Change folder options, such as who can be invited to join the folder. - DBSHARINGFolderActionChangeOptions, - - /// Disable viewer information for this folder. - DBSHARINGFolderActionDisableViewerInfo, - - /// Change or edit contents of the folder. - DBSHARINGFolderActionEditContents, - - /// Enable viewer information on the folder. - DBSHARINGFolderActionEnableViewerInfo, - - /// Invite a user or group to join the folder with read and write - /// permission. - DBSHARINGFolderActionInviteEditor, - - /// Invite a user or group to join the folder with read permission. - DBSHARINGFolderActionInviteViewer, - - /// Invite a user or group to join the folder with read permission but no - /// comment permissions. - DBSHARINGFolderActionInviteViewerNoComment, - - /// Relinquish one's own membership in the folder. - DBSHARINGFolderActionRelinquishMembership, - - /// Unmount the folder. - DBSHARINGFolderActionUnmount, - - /// Stop sharing this folder. - DBSHARINGFolderActionUnshare, - - /// Keep a copy of the contents upon leaving or being kicked from the - /// folder. - DBSHARINGFolderActionLeaveACopy, - - /// Use create_link instead. - DBSHARINGFolderActionShareLink, - - /// Create a shared link for folder. - DBSHARINGFolderActionCreateLink, - - /// Set whether the folder inherits permissions from its parent. - DBSHARINGFolderActionSetAccessInheritance, - - /// (no description). - DBSHARINGFolderActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFolderActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "change_options". -/// -/// Description of the "change_options" tag state: Change folder options, such -/// as who can be invited to join the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangeOptions; - -/// -/// Initializes union class with tag state of "disable_viewer_info". -/// -/// Description of the "disable_viewer_info" tag state: Disable viewer -/// information for this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisableViewerInfo; - -/// -/// Initializes union class with tag state of "edit_contents". -/// -/// Description of the "edit_contents" tag state: Change or edit contents of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditContents; - -/// -/// Initializes union class with tag state of "enable_viewer_info". -/// -/// Description of the "enable_viewer_info" tag state: Enable viewer information -/// on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnableViewerInfo; - -/// -/// Initializes union class with tag state of "invite_editor". -/// -/// Description of the "invite_editor" tag state: Invite a user or group to join -/// the folder with read and write permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteEditor; - -/// -/// Initializes union class with tag state of "invite_viewer". -/// -/// Description of the "invite_viewer" tag state: Invite a user or group to join -/// the folder with read permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewer; - -/// -/// Initializes union class with tag state of "invite_viewer_no_comment". -/// -/// Description of the "invite_viewer_no_comment" tag state: Invite a user or -/// group to join the folder with read permission but no comment permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewerNoComment; - -/// -/// Initializes union class with tag state of "relinquish_membership". -/// -/// Description of the "relinquish_membership" tag state: Relinquish one's own -/// membership in the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelinquishMembership; - -/// -/// Initializes union class with tag state of "unmount". -/// -/// Description of the "unmount" tag state: Unmount the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnmount; - -/// -/// Initializes union class with tag state of "unshare". -/// -/// Description of the "unshare" tag state: Stop sharing this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnshare; - -/// -/// Initializes union class with tag state of "leave_a_copy". -/// -/// Description of the "leave_a_copy" tag state: Keep a copy of the contents -/// upon leaving or being kicked from the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLeaveACopy; - -/// -/// Initializes union class with tag state of "share_link". -/// -/// Description of the "share_link" tag state: Use create_link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShareLink; - -/// -/// Initializes union class with tag state of "create_link". -/// -/// Description of the "create_link" tag state: Create a shared link for folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateLink; - -/// -/// Initializes union class with tag state of "set_access_inheritance". -/// -/// Description of the "set_access_inheritance" tag state: Set whether the -/// folder inherits permissions from its parent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetAccessInheritance; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "change_options". -/// -/// @return Whether the union's current tag state has value "change_options". -/// -- (BOOL)isChangeOptions; - -/// -/// Retrieves whether the union's current tag state has value -/// "disable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "disable_viewer_info". -/// -- (BOOL)isDisableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "edit_contents". -/// -/// @return Whether the union's current tag state has value "edit_contents". -/// -- (BOOL)isEditContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "enable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "enable_viewer_info". -/// -- (BOOL)isEnableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "invite_editor". -/// -/// @return Whether the union's current tag state has value "invite_editor". -/// -- (BOOL)isInviteEditor; - -/// -/// Retrieves whether the union's current tag state has value "invite_viewer". -/// -/// @return Whether the union's current tag state has value "invite_viewer". -/// -- (BOOL)isInviteViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -/// @return Whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -- (BOOL)isInviteViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "relinquish_membership". -/// -/// @return Whether the union's current tag state has value -/// "relinquish_membership". -/// -- (BOOL)isRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value "unmount". -/// -/// @return Whether the union's current tag state has value "unmount". -/// -- (BOOL)isUnmount; - -/// -/// Retrieves whether the union's current tag state has value "unshare". -/// -/// @return Whether the union's current tag state has value "unshare". -/// -- (BOOL)isUnshare; - -/// -/// Retrieves whether the union's current tag state has value "leave_a_copy". -/// -/// @return Whether the union's current tag state has value "leave_a_copy". -/// -- (BOOL)isLeaveACopy; - -/// -/// Retrieves whether the union's current tag state has value "share_link". -/// -/// @return Whether the union's current tag state has value "share_link". -/// -- (BOOL)isShareLink; - -/// -/// Retrieves whether the union's current tag state has value "create_link". -/// -/// @return Whether the union's current tag state has value "create_link". -/// -- (BOOL)isCreateLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_access_inheritance". -/// -/// @return Whether the union's current tag state has value -/// "set_access_inheritance". -/// -- (BOOL)isSetAccessInheritance; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFolderAction` union. -/// -@interface DBSHARINGFolderActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderAction` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderAction *)instance; - -/// -/// Deserializes `DBSHARINGFolderAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderAction` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderAction` object. -/// -+ (DBSHARINGFolderAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderLinkMetadata.h deleted file mode 100644 index 063e48dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderLinkMetadata.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderLinkMetadata; -@class DBSHARINGLinkPermissions; -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkMetadata` struct. -/// -/// The metadata of a folder shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderLinkMetadata : DBSHARINGSharedLinkMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param id_ A unique identifier for the linked file. -/// @param expires Expiration time, if set. By default the link won't expire. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will only be present only if the linked file -/// is in the authenticated user's dropbox. -/// @param teamMemberInfo The team membership information of the link's owner. -/// This field will only be present if the link's owner is a team member. -/// @param contentOwnerTeamInfo The team information of the content's owner. -/// This field will only be present if the content's owner is a team member and -/// the content's owner team is different from the link's owner team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - id_:(nullable NSString *)id_ - expires:(nullable NSDate *)expires - pathLower:(nullable NSString *)pathLower - teamMemberInfo:(nullable DBSHARINGTeamMemberInfo *)teamMemberInfo - contentOwnerTeamInfo:(nullable DBUSERSTeam *)contentOwnerTeamInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLinkMetadata` struct. -/// -@interface DBSHARINGFolderLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGFolderLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderLinkMetadata` object. -/// -+ (DBSHARINGFolderLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderPermission.h deleted file mode 100644 index d4e83182..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderPermission.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; -@class DBSHARINGFolderPermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderPermission` struct. -/// -/// Whether the user is allowed to take the action on the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderPermission : NSObject - -#pragma mark - Instance fields - -/// The action that the user may wish to take on the folder. -@property (nonatomic, readonly) DBSHARINGFolderAction *action; - -/// True if the user is allowed to take the action. -@property (nonatomic, readonly) NSNumber *allow; - -/// The reason why the user is denied the permission. Not present if the action -/// is allowed, or if no reason is available. -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The action that the user may wish to take on the folder. -/// @param allow True if the user is allowed to take the action. -/// @param reason The reason why the user is denied the permission. Not present -/// if the action is allowed, or if no reason is available. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFolderAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action The action that the user may wish to take on the folder. -/// @param allow True if the user is allowed to take the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFolderAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderPermission` struct. -/// -@interface DBSHARINGFolderPermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderPermission` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderPermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderPermission *)instance; - -/// -/// Deserializes `DBSHARINGFolderPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderPermission` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderPermission` object. -/// -+ (DBSHARINGFolderPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderPolicy.h deleted file mode 100644 index 6a82ff1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGFolderPolicy.h +++ /dev/null @@ -1,128 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGFolderPolicy; -@class DBSHARINGMemberPolicy; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderPolicy` struct. -/// -/// A set of policies governing membership and privileges for a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderPolicy : NSObject - -#pragma mark - Instance fields - -/// Who can be a member of this shared folder, as set on the folder itself. The -/// effective policy may differ from this value if the team-wide policy is more -/// restrictive. Present only if the folder is owned by a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *memberPolicy; - -/// Who can be a member of this shared folder, taking into account both the -/// folder and the team-wide policy. This value may differ from that of -/// member_policy if the team-wide policy is more restrictive than the folder -/// policy. Present only if the folder is owned by a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *resolvedMemberPolicy; - -/// Who can add and remove members from this shared folder. -@property (nonatomic, readonly) DBSHARINGAclUpdatePolicy *aclUpdatePolicy; - -/// Who links can be shared with. -@property (nonatomic, readonly) DBSHARINGSharedLinkPolicy *sharedLinkPolicy; - -/// Who can enable/disable viewer info for this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *viewerInfoPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param aclUpdatePolicy Who can add and remove members from this shared -/// folder. -/// @param sharedLinkPolicy Who links can be shared with. -/// @param memberPolicy Who can be a member of this shared folder, as set on the -/// folder itself. The effective policy may differ from this value if the -/// team-wide policy is more restrictive. Present only if the folder is owned by -/// a team. -/// @param resolvedMemberPolicy Who can be a member of this shared folder, -/// taking into account both the folder and the team-wide policy. This value may -/// differ from that of member_policy if the team-wide policy is more -/// restrictive than the folder policy. Present only if the folder is owned by a -/// team. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAclUpdatePolicy:(DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - sharedLinkPolicy:(DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - resolvedMemberPolicy:(nullable DBSHARINGMemberPolicy *)resolvedMemberPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param aclUpdatePolicy Who can add and remove members from this shared -/// folder. -/// @param sharedLinkPolicy Who links can be shared with. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAclUpdatePolicy:(DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - sharedLinkPolicy:(DBSHARINGSharedLinkPolicy *)sharedLinkPolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderPolicy` struct. -/// -@interface DBSHARINGFolderPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderPolicy *)instance; - -/// -/// Deserializes `DBSHARINGFolderPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderPolicy` object. -/// -+ (DBSHARINGFolderPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataArg.h deleted file mode 100644 index 3f841b94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGGetFileMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataArg` struct. -/// -/// Arguments of `getFileMetadata`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataArg : NSObject - -#pragma mark - Instance fields - -/// The file to query. -@property (nonatomic, readonly, copy) NSString *file; - -/// A list of `FileAction`s corresponding to `FilePermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFileMetadata` -/// field describing the actions the authenticated user can perform on the -/// file. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The file to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s -/// that should appear in the response's `permissions` in -/// `DBSHARINGSharedFileMetadata` field describing the actions the -/// authenticated user can perform on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param file The file to query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileMetadataArg` struct. -/// -@interface DBSHARINGGetFileMetadataArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataArg *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataArg` object. -/// -+ (DBSHARINGGetFileMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataBatchArg.h deleted file mode 100644 index 179c68dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataBatchArg.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGGetFileMetadataBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataBatchArg` struct. -/// -/// Arguments of `getFileMetadataBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataBatchArg : NSObject - -#pragma mark - Instance fields - -/// The files to query. -@property (nonatomic, readonly) NSArray *files; - -/// A list of `FileAction`s corresponding to `FilePermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFileMetadata` -/// field describing the actions the authenticated user can perform on the -/// file. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param files The files to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s -/// that should appear in the response's `permissions` in -/// `DBSHARINGSharedFileMetadata` field describing the actions the -/// authenticated user can perform on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param files The files to query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileMetadataBatchArg` struct. -/// -@interface DBSHARINGGetFileMetadataBatchArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataBatchArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataBatchArg *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataBatchArg` object. -/// -+ (DBSHARINGGetFileMetadataBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataBatchResult.h deleted file mode 100644 index 4792ce47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataBatchResult.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetFileMetadataBatchResult; -@class DBSHARINGGetFileMetadataIndividualResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataBatchResult` struct. -/// -/// Per file results of `getFileMetadataBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataBatchResult : NSObject - -#pragma mark - Instance fields - -/// This is the input file identifier corresponding to one of `files` in -/// `DBSHARINGGetFileMetadataBatchArg`. -@property (nonatomic, readonly, copy) NSString *file; - -/// The result for this particular file. -@property (nonatomic, readonly) DBSHARINGGetFileMetadataIndividualResult *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file This is the input file identifier corresponding to one of -/// `files` in `DBSHARINGGetFileMetadataBatchArg`. -/// @param result The result for this particular file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file result:(DBSHARINGGetFileMetadataIndividualResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileMetadataBatchResult` struct. -/// -@interface DBSHARINGGetFileMetadataBatchResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataBatchResult` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataBatchResult *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchResult` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataBatchResult` -/// object. -/// -+ (DBSHARINGGetFileMetadataBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataError.h deleted file mode 100644 index cdcd43db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataError.h +++ /dev/null @@ -1,154 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetFileMetadataError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataError` union. -/// -/// Error result for `getFileMetadata`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetFileMetadataErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGGetFileMetadataError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetFileMetadataErrorTag) { - /// (no description). - DBSHARINGGetFileMetadataErrorUserError, - - /// (no description). - DBSHARINGGetFileMetadataErrorAccessError, - - /// (no description). - DBSHARINGGetFileMetadataErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetFileMetadataErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetFileMetadataError` union. -/// -@interface DBSHARINGGetFileMetadataErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataError` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataError *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataError` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataError` object. -/// -+ (DBSHARINGGetFileMetadataError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataIndividualResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataIndividualResult.h deleted file mode 100644 index 1f8f5cd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetFileMetadataIndividualResult.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetFileMetadataIndividualResult; -@class DBSHARINGSharedFileMetadata; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataIndividualResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataIndividualResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetFileMetadataIndividualResultTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGGetFileMetadataIndividualResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetFileMetadataIndividualResultTag) { - /// The result for this file if it was successful. - DBSHARINGGetFileMetadataIndividualResultMetadata, - - /// The result for this file if it was an error. - DBSHARINGGetFileMetadataIndividualResultAccessError, - - /// (no description). - DBSHARINGGetFileMetadataIndividualResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetFileMetadataIndividualResultTag tag; - -/// The result for this file if it was successful. @note Ensure the `isMetadata` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGSharedFileMetadata *metadata; - -/// The result for this file if it was an error. @note Ensure the -/// `isAccessError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "metadata". -/// -/// Description of the "metadata" tag state: The result for this file if it was -/// successful. -/// -/// @param metadata The result for this file if it was successful. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBSHARINGSharedFileMetadata *)metadata; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: The result for this file if it -/// was an error. -/// -/// @param accessError The result for this file if it was an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetFileMetadataIndividualResult` -/// union. -/// -@interface DBSHARINGGetFileMetadataIndividualResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataIndividualResult` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGGetFileMetadataIndividualResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataIndividualResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataIndividualResult *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataIndividualResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataIndividualResult` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataIndividualResult` -/// object. -/// -+ (DBSHARINGGetFileMetadataIndividualResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetMetadataArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetMetadataArgs.h deleted file mode 100644 index 88ba1e38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetMetadataArgs.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; -@class DBSHARINGGetMetadataArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMetadataArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetMetadataArgs : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetMetadataArgs` struct. -/// -@interface DBSHARINGGetMetadataArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetMetadataArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGGetMetadataArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetMetadataArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetMetadataArgs *)instance; - -/// -/// Deserializes `DBSHARINGGetMetadataArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetMetadataArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGGetMetadataArgs` object. -/// -+ (DBSHARINGGetMetadataArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinkFileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinkFileError.h deleted file mode 100644 index 086eaab0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinkFileError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinkFileError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinkFileError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinkFileError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetSharedLinkFileErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGGetSharedLinkFileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetSharedLinkFileErrorTag) { - /// The shared link wasn't found. - DBSHARINGGetSharedLinkFileErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGGetSharedLinkFileErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGGetSharedLinkFileErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGGetSharedLinkFileErrorOther, - - /// Directories cannot be retrieved by this endpoint. - DBSHARINGGetSharedLinkFileErrorSharedLinkIsDirectory, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetSharedLinkFileErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "shared_link_is_directory". -/// -/// Description of the "shared_link_is_directory" tag state: Directories cannot -/// be retrieved by this endpoint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkIsDirectory; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_is_directory". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_is_directory". -/// -- (BOOL)isSharedLinkIsDirectory; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetSharedLinkFileError` union. -/// -@interface DBSHARINGGetSharedLinkFileErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinkFileError` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinkFileError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkFileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinkFileError *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinkFileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkFileError` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinkFileError` object. -/// -+ (DBSHARINGGetSharedLinkFileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinkMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinkMetadataArg.h deleted file mode 100644 index 3a762dc8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinkMetadataArg.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinkMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinkMetadataArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinkMetadataArg : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// If the shared link is to a folder, this parameter can be used to retrieve -/// the metadata for a specific file or sub-folder in this folder. A relative -/// path should be used. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// If the shared link has a password, this parameter can be used. -@property (nonatomic, readonly, copy, nullable) NSString *linkPassword; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to -/// retrieve the metadata for a specific file or sub-folder in this folder. A -/// relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be -/// used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetSharedLinkMetadataArg` struct. -/// -@interface DBSHARINGGetSharedLinkMetadataArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinkMetadataArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinkMetadataArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinkMetadataArg *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinkMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkMetadataArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinkMetadataArg` object. -/// -+ (DBSHARINGGetSharedLinkMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksArg.h deleted file mode 100644 index 651112f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinksArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinksArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinksArg : NSObject - -#pragma mark - Instance fields - -/// See `getSharedLinks` description. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path See `getSharedLinks` description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetSharedLinksArg` struct. -/// -@interface DBSHARINGGetSharedLinksArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinksArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinksArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinksArg *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinksArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinksArg` object. -/// -+ (DBSHARINGGetSharedLinksArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksError.h deleted file mode 100644 index 6530f11e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinksError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinksError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinksError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetSharedLinksErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGGetSharedLinksError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetSharedLinksErrorTag) { - /// (no description). - DBSHARINGGetSharedLinksErrorPath, - - /// (no description). - DBSHARINGGetSharedLinksErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetSharedLinksErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetSharedLinksError` union. -/// -@interface DBSHARINGGetSharedLinksErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinksError` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinksError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinksError *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinksError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksError` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinksError` object. -/// -+ (DBSHARINGGetSharedLinksError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksResult.h deleted file mode 100644 index 01bec843..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGetSharedLinksResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinksResult; -@class DBSHARINGLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinksResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinksResult : NSObject - -#pragma mark - Instance fields - -/// Shared links applicable to the path argument. -@property (nonatomic, readonly) NSArray *links; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param links Shared links applicable to the path argument. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinks:(NSArray *)links; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetSharedLinksResult` struct. -/// -@interface DBSHARINGGetSharedLinksResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinksResult` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinksResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinksResult *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinksResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksResult` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinksResult` object. -/// -+ (DBSHARINGGetSharedLinksResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGroupInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGroupInfo.h deleted file mode 100644 index a439d0a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGroupInfo.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMCOMMONGroupSummary.h" - -@class DBSHARINGGroupInfo; -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMCOMMONGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupInfo` struct. -/// -/// The information about a group. Groups is a way to manage a list of users -/// who need same access permission to the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGroupInfo : DBTEAMCOMMONGroupSummary - -#pragma mark - Instance fields - -/// The type of group. -@property (nonatomic, readonly) DBTEAMCOMMONGroupType *groupType; - -/// If the current user is a member of the group. -@property (nonatomic, readonly) NSNumber *isMember; - -/// If the current user is an owner of the group. -@property (nonatomic, readonly) NSNumber *isOwner; - -/// If the group is owned by the current user's team. -@property (nonatomic, readonly) NSNumber *sameTeam; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param groupType The type of group. -/// @param isMember If the current user is a member of the group. -/// @param isOwner If the current user is an owner of the group. -/// @param sameTeam If the group is owned by the current user's team. -/// @param groupExternalId External ID of group. This is an arbitrary ID that an -/// admin can attach to a group. -/// @param memberCount The number of members in the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - groupType:(DBTEAMCOMMONGroupType *)groupType - isMember:(NSNumber *)isMember - isOwner:(NSNumber *)isOwner - sameTeam:(NSNumber *)sameTeam - groupExternalId:(nullable NSString *)groupExternalId - memberCount:(nullable NSNumber *)memberCount; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param groupType The type of group. -/// @param isMember If the current user is a member of the group. -/// @param isOwner If the current user is an owner of the group. -/// @param sameTeam If the group is owned by the current user's team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - groupType:(DBTEAMCOMMONGroupType *)groupType - isMember:(NSNumber *)isMember - isOwner:(NSNumber *)isOwner - sameTeam:(NSNumber *)sameTeam; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupInfo` struct. -/// -@interface DBSHARINGGroupInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGGroupInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGGroupInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGroupInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGroupInfo *)instance; - -/// -/// Deserializes `DBSHARINGGroupInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGroupInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGGroupInfo` object. -/// -+ (DBSHARINGGroupInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGroupMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGroupMembershipInfo.h deleted file mode 100644 index c9ff72ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGGroupMembershipInfo.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGGroupInfo; -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGMemberPermission; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembershipInfo` struct. -/// -/// The information about a group member of the shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGroupMembershipInfo : DBSHARINGMembershipInfo - -#pragma mark - Instance fields - -/// The information about the membership group. -@property (nonatomic, readonly) DBSHARINGGroupInfo *group; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param group The information about the membership group. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - group:(DBSHARINGGroupInfo *)group - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param group The information about the membership group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType group:(DBSHARINGGroupInfo *)group; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembershipInfo` struct. -/// -@interface DBSHARINGGroupMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGGroupMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGGroupMembershipInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGroupMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGroupMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGGroupMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGroupMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGGroupMembershipInfo` object. -/// -+ (DBSHARINGGroupMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInsufficientPlan.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInsufficientPlan.h deleted file mode 100644 index b2b03eec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInsufficientPlan.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientPlan; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InsufficientPlan` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInsufficientPlan : NSObject - -#pragma mark - Instance fields - -/// A message to tell the user to upgrade in order to support expected action. -@property (nonatomic, readonly, copy) NSString *message; - -/// A URL to send the user to in order to obtain the account type they need, -/// e.g. upgrading. Absent if there is no action the user can take to upgrade. -@property (nonatomic, readonly, copy, nullable) NSString *upsellUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param message A message to tell the user to upgrade in order to support -/// expected action. -/// @param upsellUrl A URL to send the user to in order to obtain the account -/// type they need, e.g. upgrading. Absent if there is no action the user can -/// take to upgrade. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMessage:(NSString *)message upsellUrl:(nullable NSString *)upsellUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param message A message to tell the user to upgrade in order to support -/// expected action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMessage:(NSString *)message; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InsufficientPlan` struct. -/// -@interface DBSHARINGInsufficientPlanSerializer : NSObject - -/// -/// Serializes `DBSHARINGInsufficientPlan` instances. -/// -/// @param instance An instance of the `DBSHARINGInsufficientPlan` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientPlan` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInsufficientPlan *)instance; - -/// -/// Deserializes `DBSHARINGInsufficientPlan` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientPlan` API object. -/// -/// @return An instantiation of the `DBSHARINGInsufficientPlan` object. -/// -+ (DBSHARINGInsufficientPlan *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInsufficientQuotaAmounts.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInsufficientQuotaAmounts.h deleted file mode 100644 index 73e390d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInsufficientQuotaAmounts.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientQuotaAmounts; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InsufficientQuotaAmounts` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInsufficientQuotaAmounts : NSObject - -#pragma mark - Instance fields - -/// The amount of space needed to add the item (the size of the item). -@property (nonatomic, readonly) NSNumber *spaceNeeded; - -/// The amount of extra space needed to add the item. -@property (nonatomic, readonly) NSNumber *spaceShortage; - -/// The amount of space left in the user's Dropbox, less than space_needed. -@property (nonatomic, readonly) NSNumber *spaceLeft; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param spaceNeeded The amount of space needed to add the item (the size of -/// the item). -/// @param spaceShortage The amount of extra space needed to add the item. -/// @param spaceLeft The amount of space left in the user's Dropbox, less than -/// space_needed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSpaceNeeded:(NSNumber *)spaceNeeded - spaceShortage:(NSNumber *)spaceShortage - spaceLeft:(NSNumber *)spaceLeft; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InsufficientQuotaAmounts` struct. -/// -@interface DBSHARINGInsufficientQuotaAmountsSerializer : NSObject - -/// -/// Serializes `DBSHARINGInsufficientQuotaAmounts` instances. -/// -/// @param instance An instance of the `DBSHARINGInsufficientQuotaAmounts` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientQuotaAmounts` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInsufficientQuotaAmounts *)instance; - -/// -/// Deserializes `DBSHARINGInsufficientQuotaAmounts` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientQuotaAmounts` API object. -/// -/// @return An instantiation of the `DBSHARINGInsufficientQuotaAmounts` object. -/// -+ (DBSHARINGInsufficientQuotaAmounts *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInviteeInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInviteeInfo.h deleted file mode 100644 index 6121bf5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInviteeInfo.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInviteeInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteeInfo` union. -/// -/// Information about the recipient of a shared content invitation. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInviteeInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGInviteeInfoTag` enum type represents the possible tag states -/// with which the `DBSHARINGInviteeInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGInviteeInfoTag) { - /// Email address of invited user. - DBSHARINGInviteeInfoEmail, - - /// (no description). - DBSHARINGInviteeInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGInviteeInfoTag tag; - -/// Email address of invited user. @note Ensure the `isEmail` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *email; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email". -/// -/// Description of the "email" tag state: Email address of invited user. -/// -/// @param email Email address of invited user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `email` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGInviteeInfo` union. -/// -@interface DBSHARINGInviteeInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGInviteeInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGInviteeInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInviteeInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInviteeInfo *)instance; - -/// -/// Deserializes `DBSHARINGInviteeInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInviteeInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGInviteeInfo` object. -/// -+ (DBSHARINGInviteeInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInviteeMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInviteeMembershipInfo.h deleted file mode 100644 index 9735a916..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGInviteeMembershipInfo.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGInviteeInfo; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGMemberPermission; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteeMembershipInfo` struct. -/// -/// Information about an invited member of a shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInviteeMembershipInfo : DBSHARINGMembershipInfo - -#pragma mark - Instance fields - -/// Recipient of the invitation. -@property (nonatomic, readonly) DBSHARINGInviteeInfo *invitee; - -/// The user this invitation is tied to, if available. -@property (nonatomic, readonly, nullable) DBSHARINGUserInfo *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param invitee Recipient of the invitation. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// @param user The user this invitation is tied to, if available. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - invitee:(DBSHARINGInviteeInfo *)invitee - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited - user:(nullable DBSHARINGUserInfo *)user; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param invitee Recipient of the invitation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType invitee:(DBSHARINGInviteeInfo *)invitee; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteeMembershipInfo` struct. -/// -@interface DBSHARINGInviteeMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGInviteeMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGInviteeMembershipInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInviteeMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInviteeMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGInviteeMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInviteeMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGInviteeMembershipInfo` object. -/// -+ (DBSHARINGInviteeMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGJobError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGJobError.h deleted file mode 100644 index d9cc14b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGJobError.h +++ /dev/null @@ -1,206 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGJobError; -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGUnshareFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `JobError` union. -/// -/// Error occurred while performing an asynchronous job from `unshareFolder` or -/// `removeFolderMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGJobError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGJobErrorTag` enum type represents the possible tag states with -/// which the `DBSHARINGJobError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGJobErrorTag) { - /// Error occurred while performing `unshareFolder` action. - DBSHARINGJobErrorUnshareFolderError, - - /// Error occurred while performing `removeFolderMember` action. - DBSHARINGJobErrorRemoveFolderMemberError, - - /// Error occurred while performing `relinquishFolderMembership` action. - DBSHARINGJobErrorRelinquishFolderMembershipError, - - /// (no description). - DBSHARINGJobErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGJobErrorTag tag; - -/// Error occurred while performing `unshareFolder` action. @note Ensure the -/// `isUnshareFolderError` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGUnshareFolderError *unshareFolderError; - -/// Error occurred while performing `removeFolderMember` action. @note Ensure -/// the `isRemoveFolderMemberError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGRemoveFolderMemberError *removeFolderMemberError; - -/// Error occurred while performing `relinquishFolderMembership` action. @note -/// Ensure the `isRelinquishFolderMembershipError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGRelinquishFolderMembershipError *relinquishFolderMembershipError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unshare_folder_error". -/// -/// Description of the "unshare_folder_error" tag state: Error occurred while -/// performing `unshareFolder` action. -/// -/// @param unshareFolderError Error occurred while performing `unshareFolder` -/// action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnshareFolderError:(DBSHARINGUnshareFolderError *)unshareFolderError; - -/// -/// Initializes union class with tag state of "remove_folder_member_error". -/// -/// Description of the "remove_folder_member_error" tag state: Error occurred -/// while performing `removeFolderMember` action. -/// -/// @param removeFolderMemberError Error occurred while performing -/// `removeFolderMember` action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveFolderMemberError:(DBSHARINGRemoveFolderMemberError *)removeFolderMemberError; - -/// -/// Initializes union class with tag state of -/// "relinquish_folder_membership_error". -/// -/// Description of the "relinquish_folder_membership_error" tag state: Error -/// occurred while performing `relinquishFolderMembership` action. -/// -/// @param relinquishFolderMembershipError Error occurred while performing -/// `relinquishFolderMembership` action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelinquishFolderMembershipError: - (DBSHARINGRelinquishFolderMembershipError *)relinquishFolderMembershipError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unshare_folder_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unshareFolderError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "unshare_folder_error". -/// -- (BOOL)isUnshareFolderError; - -/// -/// Retrieves whether the union's current tag state has value -/// "remove_folder_member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `removeFolderMemberError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "remove_folder_member_error". -/// -- (BOOL)isRemoveFolderMemberError; - -/// -/// Retrieves whether the union's current tag state has value -/// "relinquish_folder_membership_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `relinquishFolderMembershipError` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "relinquish_folder_membership_error". -/// -- (BOOL)isRelinquishFolderMembershipError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGJobError` union. -/// -@interface DBSHARINGJobErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGJobError` instances. -/// -/// @param instance An instance of the `DBSHARINGJobError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGJobError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGJobError *)instance; - -/// -/// Deserializes `DBSHARINGJobError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGJobError` API object. -/// -/// @return An instantiation of the `DBSHARINGJobError` object. -/// -+ (DBSHARINGJobError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGJobStatus.h deleted file mode 100644 index bea3bea7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGJobStatus.h +++ /dev/null @@ -1,149 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGJobError; -@class DBSHARINGJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `JobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGJobStatusTag` enum type represents the possible tag states -/// with which the `DBSHARINGJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGJobStatusTag) { - /// The asynchronous job is still in progress. - DBSHARINGJobStatusInProgress, - - /// The asynchronous job has finished. - DBSHARINGJobStatusComplete, - - /// The asynchronous job returned an error. - DBSHARINGJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGJobStatusTag tag; - -/// The asynchronous job returned an error. @note Ensure the `isFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGJobError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The asynchronous job returned an -/// error. -/// -/// @param failed The asynchronous job returned an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBSHARINGJobError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGJobStatus` union. -/// -@interface DBSHARINGJobStatusSerializer : NSObject - -/// -/// Serializes `DBSHARINGJobStatus` instances. -/// -/// @param instance An instance of the `DBSHARINGJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGJobStatus *)instance; - -/// -/// Deserializes `DBSHARINGJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGJobStatus` API object. -/// -/// @return An instantiation of the `DBSHARINGJobStatus` object. -/// -+ (DBSHARINGJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAccessLevel.h deleted file mode 100644 index d514d973..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAccessLevel.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAccessLevel` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkAccessLevelTag` enum type represents the possible tag -/// states with which the `DBSHARINGLinkAccessLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkAccessLevelTag) { - /// Users who use the link can view and comment on the content. - DBSHARINGLinkAccessLevelViewer, - - /// Users who use the link can edit, view and comment on the content. - DBSHARINGLinkAccessLevelEditor, - - /// (no description). - DBSHARINGLinkAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "viewer". -/// -/// Description of the "viewer" tag state: Users who use the link can view and -/// comment on the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "editor". -/// -/// Description of the "editor" tag state: Users who use the link can edit, view -/// and comment on the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAccessLevel` union. -/// -@interface DBSHARINGLinkAccessLevelSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAccessLevel` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAccessLevel` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAccessLevel *)instance; - -/// -/// Deserializes `DBSHARINGLinkAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAccessLevel` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAccessLevel` object. -/// -+ (DBSHARINGLinkAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAction.h deleted file mode 100644 index e85dc339..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAction.h +++ /dev/null @@ -1,221 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAction` union. -/// -/// Actions that can be performed on a link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkActionTag) { - /// Change the access level of the link. - DBSHARINGLinkActionChangeAccessLevel, - - /// Change the audience of the link. - DBSHARINGLinkActionChangeAudience, - - /// Remove the expiry date of the link. - DBSHARINGLinkActionRemoveExpiry, - - /// Remove the password of the link. - DBSHARINGLinkActionRemovePassword, - - /// Create or modify the expiry date of the link. - DBSHARINGLinkActionSetExpiry, - - /// Create or modify the password of the link. - DBSHARINGLinkActionSetPassword, - - /// (no description). - DBSHARINGLinkActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "change_access_level". -/// -/// Description of the "change_access_level" tag state: Change the access level -/// of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangeAccessLevel; - -/// -/// Initializes union class with tag state of "change_audience". -/// -/// Description of the "change_audience" tag state: Change the audience of the -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangeAudience; - -/// -/// Initializes union class with tag state of "remove_expiry". -/// -/// Description of the "remove_expiry" tag state: Remove the expiry date of the -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveExpiry; - -/// -/// Initializes union class with tag state of "remove_password". -/// -/// Description of the "remove_password" tag state: Remove the password of the -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovePassword; - -/// -/// Initializes union class with tag state of "set_expiry". -/// -/// Description of the "set_expiry" tag state: Create or modify the expiry date -/// of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetExpiry; - -/// -/// Initializes union class with tag state of "set_password". -/// -/// Description of the "set_password" tag state: Create or modify the password -/// of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetPassword; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "change_access_level". -/// -/// @return Whether the union's current tag state has value -/// "change_access_level". -/// -- (BOOL)isChangeAccessLevel; - -/// -/// Retrieves whether the union's current tag state has value "change_audience". -/// -/// @return Whether the union's current tag state has value "change_audience". -/// -- (BOOL)isChangeAudience; - -/// -/// Retrieves whether the union's current tag state has value "remove_expiry". -/// -/// @return Whether the union's current tag state has value "remove_expiry". -/// -- (BOOL)isRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value "remove_password". -/// -/// @return Whether the union's current tag state has value "remove_password". -/// -- (BOOL)isRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value "set_expiry". -/// -/// @return Whether the union's current tag state has value "set_expiry". -/// -- (BOOL)isSetExpiry; - -/// -/// Retrieves whether the union's current tag state has value "set_password". -/// -/// @return Whether the union's current tag state has value "set_password". -/// -- (BOOL)isSetPassword; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAction` union. -/// -@interface DBSHARINGLinkActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAction` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAction *)instance; - -/// -/// Deserializes `DBSHARINGLinkAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAction` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAction` object. -/// -+ (DBSHARINGLinkAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudience.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudience.h deleted file mode 100644 index ceb4ee90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudience.h +++ /dev/null @@ -1,203 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAudience` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAudience : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkAudienceTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkAudience` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkAudienceTag) { - /// Link is accessible by anyone. - DBSHARINGLinkAudiencePublic, - - /// Link is accessible only by team members. - DBSHARINGLinkAudienceTeam, - - /// The link can be used by no one. The link merely points the user to the - /// content, and does not grant additional rights to the user. Members of - /// the content who use this link can only access the content with their - /// pre-existing access rights. - DBSHARINGLinkAudienceNoOne, - - /// Use `require_password` instead. A link-specific password is required to - /// access the link. Login is not required. - DBSHARINGLinkAudiencePassword, - - /// Link is accessible only by members of the content. - DBSHARINGLinkAudienceMembers, - - /// (no description). - DBSHARINGLinkAudienceOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkAudienceTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Link is accessible by anyone. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Link is accessible only by team -/// members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "no_one". -/// -/// Description of the "no_one" tag state: The link can be used by no one. The -/// link merely points the user to the content, and does not grant additional -/// rights to the user. Members of the content who use this link can only access -/// the content with their pre-existing access rights. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: Use `require_password` instead. A -/// link-specific password is required to access the link. Login is not -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Link is accessible only by members -/// of the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAudience` union. -/// -@interface DBSHARINGLinkAudienceSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAudience` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAudience` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudience` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAudience *)instance; - -/// -/// Deserializes `DBSHARINGLinkAudience` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudience` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAudience` object. -/// -+ (DBSHARINGLinkAudience *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudienceDisallowedReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudienceDisallowedReason.h deleted file mode 100644 index dc64493f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudienceDisallowedReason.h +++ /dev/null @@ -1,237 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudienceDisallowedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAudienceDisallowedReason` union. -/// -/// check documentation for VisibilityPolicyDisallowedReason. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAudienceDisallowedReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkAudienceDisallowedReasonTag` enum type represents the -/// possible tag states with which the `DBSHARINGLinkAudienceDisallowedReason` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkAudienceDisallowedReasonTag) { - /// The user needs to delete and recreate the link to change the visibility - /// policy. - DBSHARINGLinkAudienceDisallowedReasonDeleteAndRecreate, - - /// The parent shared folder restricts sharing of links outside the shared - /// folder. To change the visibility policy, remove the restriction from the - /// parent shared folder. - DBSHARINGLinkAudienceDisallowedReasonRestrictedBySharedFolder, - - /// The team policy prevents links being shared outside the team. - DBSHARINGLinkAudienceDisallowedReasonRestrictedByTeam, - - /// The user needs to be on a team to set this policy. - DBSHARINGLinkAudienceDisallowedReasonUserNotOnTeam, - - /// The user is a basic user or is on a limited team. - DBSHARINGLinkAudienceDisallowedReasonUserAccountType, - - /// The user does not have permission. - DBSHARINGLinkAudienceDisallowedReasonPermissionDenied, - - /// (no description). - DBSHARINGLinkAudienceDisallowedReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkAudienceDisallowedReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete_and_recreate". -/// -/// Description of the "delete_and_recreate" tag state: The user needs to delete -/// and recreate the link to change the visibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteAndRecreate; - -/// -/// Initializes union class with tag state of "restricted_by_shared_folder". -/// -/// Description of the "restricted_by_shared_folder" tag state: The parent -/// shared folder restricts sharing of links outside the shared folder. To -/// change the visibility policy, remove the restriction from the parent shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedBySharedFolder; - -/// -/// Initializes union class with tag state of "restricted_by_team". -/// -/// Description of the "restricted_by_team" tag state: The team policy prevents -/// links being shared outside the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByTeam; - -/// -/// Initializes union class with tag state of "user_not_on_team". -/// -/// Description of the "user_not_on_team" tag state: The user needs to be on a -/// team to set this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotOnTeam; - -/// -/// Initializes union class with tag state of "user_account_type". -/// -/// Description of the "user_account_type" tag state: The user is a basic user -/// or is on a limited team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAccountType; - -/// -/// Initializes union class with tag state of "permission_denied". -/// -/// Description of the "permission_denied" tag state: The user does not have -/// permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_and_recreate". -/// -/// @return Whether the union's current tag state has value -/// "delete_and_recreate". -/// -- (BOOL)isDeleteAndRecreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -- (BOOL)isRestrictedBySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_team". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_team". -/// -- (BOOL)isRestrictedByTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_on_team". -/// -/// @return Whether the union's current tag state has value "user_not_on_team". -/// -- (BOOL)isUserNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_account_type". -/// -/// @return Whether the union's current tag state has value "user_account_type". -/// -- (BOOL)isUserAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied". -/// -/// @return Whether the union's current tag state has value "permission_denied". -/// -- (BOOL)isPermissionDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAudienceDisallowedReason` -/// union. -/// -@interface DBSHARINGLinkAudienceDisallowedReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAudienceDisallowedReason` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAudienceDisallowedReason` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceDisallowedReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAudienceDisallowedReason *)instance; - -/// -/// Deserializes `DBSHARINGLinkAudienceDisallowedReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceDisallowedReason` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAudienceDisallowedReason` -/// object. -/// -+ (DBSHARINGLinkAudienceDisallowedReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudienceOption.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudienceOption.h deleted file mode 100644 index ca06ae07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkAudienceOption.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkAudienceDisallowedReason; -@class DBSHARINGLinkAudienceOption; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAudienceOption` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAudienceOption : NSObject - -#pragma mark - Instance fields - -/// Specifies who can access the link. -@property (nonatomic, readonly) DBSHARINGLinkAudience *audience; - -/// Whether the user calling this API can select this audience option. -@property (nonatomic, readonly) NSNumber *allowed; - -/// If allowed is false, this will provide the reason that the user is not -/// permitted to set the visibility to this policy. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudienceDisallowedReason *disallowedReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audience Specifies who can access the link. -/// @param allowed Whether the user calling this API can select this audience -/// option. -/// @param disallowedReason If allowed is false, this will provide the reason -/// that the user is not permitted to set the visibility to this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudience:(DBSHARINGLinkAudience *)audience - allowed:(NSNumber *)allowed - disallowedReason:(nullable DBSHARINGLinkAudienceDisallowedReason *)disallowedReason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audience Specifies who can access the link. -/// @param allowed Whether the user calling this API can select this audience -/// option. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudience:(DBSHARINGLinkAudience *)audience allowed:(NSNumber *)allowed; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkAudienceOption` struct. -/// -@interface DBSHARINGLinkAudienceOptionSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAudienceOption` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAudienceOption` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceOption` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAudienceOption *)instance; - -/// -/// Deserializes `DBSHARINGLinkAudienceOption` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceOption` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAudienceOption` object. -/// -+ (DBSHARINGLinkAudienceOption *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkExpiry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkExpiry.h deleted file mode 100644 index 3a1777fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkExpiry.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkExpiry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkExpiry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkExpiry : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkExpiryTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkExpiry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkExpiryTag) { - /// Remove the currently set expiry for the link. - DBSHARINGLinkExpiryRemoveExpiry, - - /// Set a new expiry or change an existing expiry. - DBSHARINGLinkExpirySetExpiry, - - /// (no description). - DBSHARINGLinkExpiryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkExpiryTag tag; - -/// Set a new expiry or change an existing expiry. @note Ensure the -/// `isSetExpiry` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) NSDate *setExpiry; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "remove_expiry". -/// -/// Description of the "remove_expiry" tag state: Remove the currently set -/// expiry for the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveExpiry; - -/// -/// Initializes union class with tag state of "set_expiry". -/// -/// Description of the "set_expiry" tag state: Set a new expiry or change an -/// existing expiry. -/// -/// @param setExpiry Set a new expiry or change an existing expiry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetExpiry:(NSDate *)setExpiry; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "remove_expiry". -/// -/// @return Whether the union's current tag state has value "remove_expiry". -/// -- (BOOL)isRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value "set_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `setExpiry` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "set_expiry". -/// -- (BOOL)isSetExpiry; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkExpiry` union. -/// -@interface DBSHARINGLinkExpirySerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkExpiry` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkExpiry` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkExpiry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkExpiry *)instance; - -/// -/// Deserializes `DBSHARINGLinkExpiry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkExpiry` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkExpiry` object. -/// -+ (DBSHARINGLinkExpiry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkMetadata.h deleted file mode 100644 index 035774fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkMetadata.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkMetadata; -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkMetadata` struct. -/// -/// Metadata for a shared link. This can be either a PathLinkMetadata or -/// CollectionLinkMetadata. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkMetadata : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// Who can access the link. -@property (nonatomic, readonly) DBSHARINGVisibility *visibility; - -/// Expiration time, if set. By default the link won't expire. -@property (nonatomic, readonly, nullable) NSDate *expires; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param expires Expiration time, if set. By default the link won't expire. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - visibility:(DBSHARINGVisibility *)visibility - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url visibility:(DBSHARINGVisibility *)visibility; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkMetadata` struct. -/// -@interface DBSHARINGLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkMetadata` object. -/// -+ (DBSHARINGLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPassword.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPassword.h deleted file mode 100644 index 7db315c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPassword.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkPassword; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkPassword` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkPassword : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkPasswordTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkPassword` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkPasswordTag) { - /// Remove the currently set password for the link. - DBSHARINGLinkPasswordRemovePassword, - - /// Set a new password or change an existing password. - DBSHARINGLinkPasswordSetPassword, - - /// (no description). - DBSHARINGLinkPasswordOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkPasswordTag tag; - -/// Set a new password or change an existing password. @note Ensure the -/// `isSetPassword` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *setPassword; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "remove_password". -/// -/// Description of the "remove_password" tag state: Remove the currently set -/// password for the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovePassword; - -/// -/// Initializes union class with tag state of "set_password". -/// -/// Description of the "set_password" tag state: Set a new password or change an -/// existing password. -/// -/// @param setPassword Set a new password or change an existing password. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetPassword:(NSString *)setPassword; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "remove_password". -/// -/// @return Whether the union's current tag state has value "remove_password". -/// -- (BOOL)isRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value "set_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `setPassword` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "set_password". -/// -- (BOOL)isSetPassword; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkPassword` union. -/// -@interface DBSHARINGLinkPasswordSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkPassword` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkPassword` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkPassword` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkPassword *)instance; - -/// -/// Deserializes `DBSHARINGLinkPassword` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkPassword` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkPassword` object. -/// -+ (DBSHARINGLinkPassword *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPermission.h deleted file mode 100644 index b4253967..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPermission.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAction; -@class DBSHARINGLinkPermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkPermission` struct. -/// -/// Permissions for actions that can be performed on a link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkPermission : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBSHARINGLinkAction *action; - -/// (no description). -@property (nonatomic, readonly) NSNumber *allow; - -/// (no description). -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action (no description). -/// @param allow (no description). -/// @param reason (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGLinkAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action (no description). -/// @param allow (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGLinkAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkPermission` struct. -/// -@interface DBSHARINGLinkPermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkPermission` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkPermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkPermission *)instance; - -/// -/// Deserializes `DBSHARINGLinkPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermission` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkPermission` object. -/// -+ (DBSHARINGLinkPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPermissions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPermissions.h deleted file mode 100644 index b1f1a7a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkPermissions.h +++ /dev/null @@ -1,259 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAccessLevel; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkAudienceOption; -@class DBSHARINGLinkPermissions; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGResolvedVisibility; -@class DBSHARINGSharedLinkAccessFailureReason; -@class DBSHARINGVisibilityPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkPermissions` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkPermissions : NSObject - -#pragma mark - Instance fields - -/// The current visibility of the link after considering the shared links -/// policies of the the team (in case the link's owner is part of a team) and -/// the shared folder (in case the linked file is part of a shared folder). This -/// field is shown only if the caller has access to this info (the link's owner -/// always has access to this data). For some links, an effective_audience value -/// is returned instead. -@property (nonatomic, readonly, nullable) DBSHARINGResolvedVisibility *resolvedVisibility; - -/// The shared link's requested visibility. This can be overridden by the team -/// and shared folder policies. The final visibility, after considering these -/// policies, can be found in resolvedVisibility. This is shown only if the -/// caller is the link's owner and resolved_visibility is returned instead of -/// effective_audience. -@property (nonatomic, readonly, nullable) DBSHARINGRequestedVisibility *requestedVisibility; - -/// Whether the caller can revoke the shared link. -@property (nonatomic, readonly) NSNumber *canRevoke; - -/// The failure reason for revoking the link. This field will only be present if -/// the canRevoke is false. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkAccessFailureReason *revokeFailureReason; - -/// The type of audience who can benefit from the access level specified by the -/// `link_access_level` field. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *effectiveAudience; - -/// The access level that the link will grant to its users. A link can grant -/// additional rights to a user beyond their current access level. For example, -/// if a user was invited as a viewer to a file, and then opens a link with -/// `link_access_level` set to `editor`, then they will gain editor privileges. -/// The `link_access_level` is a property of the link, and does not depend on -/// who is calling this API. In particular, `link_access_level` does not take -/// into account the API caller's current permissions to the content. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAccessLevel *linkAccessLevel; - -/// A list of policies that the user might be able to set for the visibility. -@property (nonatomic, readonly) NSArray *visibilityPolicies; - -/// Whether the user can set the expiry settings of the link. This refers to the -/// ability to create a new expiry and modify an existing expiry. -@property (nonatomic, readonly) NSNumber *canSetExpiry; - -/// Whether the user can remove the expiry of the link. -@property (nonatomic, readonly) NSNumber *canRemoveExpiry; - -/// Whether the link can be downloaded or not. -@property (nonatomic, readonly) NSNumber *allowDownload; - -/// Whether the user can allow downloads via the link. This refers to the -/// ability to remove a no-download restriction on the link. -@property (nonatomic, readonly) NSNumber *canAllowDownload; - -/// Whether the user can disallow downloads via the link. This refers to the -/// ability to impose a no-download restriction on the link. -@property (nonatomic, readonly) NSNumber *canDisallowDownload; - -/// Whether comments are enabled for the linked file. This takes the team -/// commenting policy into account. -@property (nonatomic, readonly) NSNumber *allowComments; - -/// Whether the team has disabled commenting globally. -@property (nonatomic, readonly) NSNumber *teamRestrictsComments; - -/// A list of link audience options the user might be able to set as the new -/// audience. -@property (nonatomic, readonly, nullable) NSArray *audienceOptions; - -/// Whether the user can set a password for the link. -@property (nonatomic, readonly, nullable) NSNumber *canSetPassword; - -/// Whether the user can remove the password of the link. -@property (nonatomic, readonly, nullable) NSNumber *canRemovePassword; - -/// Whether the user is required to provide a password to view the link. -@property (nonatomic, readonly, nullable) NSNumber *requirePassword; - -/// Whether the user can use extended sharing controls, based on their account -/// type. -@property (nonatomic, readonly, nullable) NSNumber *canUseExtendedSharingControls; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param canRevoke Whether the caller can revoke the shared link. -/// @param visibilityPolicies A list of policies that the user might be able to -/// set for the visibility. -/// @param canSetExpiry Whether the user can set the expiry settings of the -/// link. This refers to the ability to create a new expiry and modify an -/// existing expiry. -/// @param canRemoveExpiry Whether the user can remove the expiry of the link. -/// @param allowDownload Whether the link can be downloaded or not. -/// @param canAllowDownload Whether the user can allow downloads via the link. -/// This refers to the ability to remove a no-download restriction on the link. -/// @param canDisallowDownload Whether the user can disallow downloads via the -/// link. This refers to the ability to impose a no-download restriction on the -/// link. -/// @param allowComments Whether comments are enabled for the linked file. This -/// takes the team commenting policy into account. -/// @param teamRestrictsComments Whether the team has disabled commenting -/// globally. -/// @param resolvedVisibility The current visibility of the link after -/// considering the shared links policies of the the team (in case the link's -/// owner is part of a team) and the shared folder (in case the linked file is -/// part of a shared folder). This field is shown only if the caller has access -/// to this info (the link's owner always has access to this data). For some -/// links, an effective_audience value is returned instead. -/// @param requestedVisibility The shared link's requested visibility. This can -/// be overridden by the team and shared folder policies. The final visibility, -/// after considering these policies, can be found in resolvedVisibility. This -/// is shown only if the caller is the link's owner and resolved_visibility is -/// returned instead of effective_audience. -/// @param revokeFailureReason The failure reason for revoking the link. This -/// field will only be present if the canRevoke is false. -/// @param effectiveAudience The type of audience who can benefit from the -/// access level specified by the `link_access_level` field. -/// @param linkAccessLevel The access level that the link will grant to its -/// users. A link can grant additional rights to a user beyond their current -/// access level. For example, if a user was invited as a viewer to a file, and -/// then opens a link with `link_access_level` set to `editor`, then they will -/// gain editor privileges. The `link_access_level` is a property of the link, -/// and does not depend on who is calling this API. In particular, -/// `link_access_level` does not take into account the API caller's current -/// permissions to the content. -/// @param audienceOptions A list of link audience options the user might be -/// able to set as the new audience. -/// @param canSetPassword Whether the user can set a password for the link. -/// @param canRemovePassword Whether the user can remove the password of the -/// link. -/// @param requirePassword Whether the user is required to provide a password to -/// view the link. -/// @param canUseExtendedSharingControls Whether the user can use extended -/// sharing controls, based on their account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCanRevoke:(NSNumber *)canRevoke - visibilityPolicies:(NSArray *)visibilityPolicies - canSetExpiry:(NSNumber *)canSetExpiry - canRemoveExpiry:(NSNumber *)canRemoveExpiry - allowDownload:(NSNumber *)allowDownload - canAllowDownload:(NSNumber *)canAllowDownload - canDisallowDownload:(NSNumber *)canDisallowDownload - allowComments:(NSNumber *)allowComments - teamRestrictsComments:(NSNumber *)teamRestrictsComments - resolvedVisibility:(nullable DBSHARINGResolvedVisibility *)resolvedVisibility - requestedVisibility:(nullable DBSHARINGRequestedVisibility *)requestedVisibility - revokeFailureReason:(nullable DBSHARINGSharedLinkAccessFailureReason *)revokeFailureReason - effectiveAudience:(nullable DBSHARINGLinkAudience *)effectiveAudience - linkAccessLevel:(nullable DBSHARINGLinkAccessLevel *)linkAccessLevel - audienceOptions:(nullable NSArray *)audienceOptions - canSetPassword:(nullable NSNumber *)canSetPassword - canRemovePassword:(nullable NSNumber *)canRemovePassword - requirePassword:(nullable NSNumber *)requirePassword - canUseExtendedSharingControls:(nullable NSNumber *)canUseExtendedSharingControls; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param canRevoke Whether the caller can revoke the shared link. -/// @param visibilityPolicies A list of policies that the user might be able to -/// set for the visibility. -/// @param canSetExpiry Whether the user can set the expiry settings of the -/// link. This refers to the ability to create a new expiry and modify an -/// existing expiry. -/// @param canRemoveExpiry Whether the user can remove the expiry of the link. -/// @param allowDownload Whether the link can be downloaded or not. -/// @param canAllowDownload Whether the user can allow downloads via the link. -/// This refers to the ability to remove a no-download restriction on the link. -/// @param canDisallowDownload Whether the user can disallow downloads via the -/// link. This refers to the ability to impose a no-download restriction on the -/// link. -/// @param allowComments Whether comments are enabled for the linked file. This -/// takes the team commenting policy into account. -/// @param teamRestrictsComments Whether the team has disabled commenting -/// globally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCanRevoke:(NSNumber *)canRevoke - visibilityPolicies:(NSArray *)visibilityPolicies - canSetExpiry:(NSNumber *)canSetExpiry - canRemoveExpiry:(NSNumber *)canRemoveExpiry - allowDownload:(NSNumber *)allowDownload - canAllowDownload:(NSNumber *)canAllowDownload - canDisallowDownload:(NSNumber *)canDisallowDownload - allowComments:(NSNumber *)allowComments - teamRestrictsComments:(NSNumber *)teamRestrictsComments; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkPermissions` struct. -/// -@interface DBSHARINGLinkPermissionsSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkPermissions` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkPermissions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermissions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkPermissions *)instance; - -/// -/// Deserializes `DBSHARINGLinkPermissions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermissions` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkPermissions` object. -/// -+ (DBSHARINGLinkPermissions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkSettings.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkSettings.h deleted file mode 100644 index d5ffbb14..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGLinkSettings.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkExpiry; -@class DBSHARINGLinkPassword; -@class DBSHARINGLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkSettings` struct. -/// -/// Settings that apply to a link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkSettings : NSObject - -#pragma mark - Instance fields - -/// The access level on the link for this file. Currently, it only accepts -/// 'viewer' and 'viewer_no_comment'. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessLevel; - -/// The type of audience on the link for this file. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *audience; - -/// An expiry timestamp to set on a link. -@property (nonatomic, readonly, nullable) DBSHARINGLinkExpiry *expiry; - -/// The password for the link. -@property (nonatomic, readonly, nullable) DBSHARINGLinkPassword *password; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessLevel The access level on the link for this file. Currently, it -/// only accepts 'viewer' and 'viewer_no_comment'. -/// @param audience The type of audience on the link for this file. -/// @param expiry An expiry timestamp to set on a link. -/// @param password The password for the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audience:(nullable DBSHARINGLinkAudience *)audience - expiry:(nullable DBSHARINGLinkExpiry *)expiry - password:(nullable DBSHARINGLinkPassword *)password; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkSettings` struct. -/// -@interface DBSHARINGLinkSettingsSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkSettings` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkSettings` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkSettings` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkSettings *)instance; - -/// -/// Deserializes `DBSHARINGLinkSettings` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkSettings` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkSettings` object. -/// -+ (DBSHARINGLinkSettings *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersArg.h deleted file mode 100644 index 9df4a86d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersArg.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersArg; -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersArg` struct. -/// -/// Arguments for `listFileMembers`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersArg : NSObject - -#pragma mark - Instance fields - -/// The file for which you want to see members. -@property (nonatomic, readonly, copy) NSString *file; - -/// The actions for which to return permissions on a member. -@property (nonatomic, readonly, nullable) NSArray *actions; - -/// Whether to include members who only have access from a parent shared folder. -@property (nonatomic, readonly) NSNumber *includeInherited; - -/// Number of members to return max per query. Defaults to 100 if no limit is -/// specified. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The file for which you want to see members. -/// @param actions The actions for which to return permissions on a member. -/// @param includeInherited Whether to include members who only have access from -/// a parent shared folder. -/// @param limit Number of members to return max per query. Defaults to 100 if -/// no limit is specified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file - actions:(nullable NSArray *)actions - includeInherited:(nullable NSNumber *)includeInherited - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param file The file for which you want to see members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersArg` struct. -/// -@interface DBSHARINGListFileMembersArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersArg *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersArg` object. -/// -+ (DBSHARINGListFileMembersArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersBatchArg.h deleted file mode 100644 index d6aaffd7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersBatchArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersBatchArg` struct. -/// -/// Arguments for `listFileMembersBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersBatchArg : NSObject - -#pragma mark - Instance fields - -/// Files for which to return members. -@property (nonatomic, readonly) NSArray *files; - -/// Number of members to return max per query. Defaults to 10 if no limit is -/// specified. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param files Files for which to return members. -/// @param limit Number of members to return max per query. Defaults to 10 if no -/// limit is specified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param files Files for which to return members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersBatchArg` struct. -/// -@interface DBSHARINGListFileMembersBatchArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersBatchArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersBatchArg *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersBatchArg` object. -/// -+ (DBSHARINGListFileMembersBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersBatchResult.h deleted file mode 100644 index f8469c55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersBatchResult.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersBatchResult; -@class DBSHARINGListFileMembersIndividualResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersBatchResult` struct. -/// -/// Per-file result for `listFileMembersBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersBatchResult : NSObject - -#pragma mark - Instance fields - -/// This is the input file identifier, whether an ID or a path. -@property (nonatomic, readonly, copy) NSString *file; - -/// The result for this particular file. -@property (nonatomic, readonly) DBSHARINGListFileMembersIndividualResult *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file This is the input file identifier, whether an ID or a path. -/// @param result The result for this particular file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file result:(DBSHARINGListFileMembersIndividualResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersBatchResult` struct. -/// -@interface DBSHARINGListFileMembersBatchResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersBatchResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersBatchResult *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersBatchResult` -/// object. -/// -+ (DBSHARINGListFileMembersBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersContinueArg.h deleted file mode 100644 index dc260afd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersContinueArg.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersContinueArg` struct. -/// -/// Arguments for `listFileMembersContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `listFileMembers`, -/// `listFileMembersContinue`, or `listFileMembersBatch`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `listFileMembers`, -/// `listFileMembersContinue`, or `listFileMembersBatch`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersContinueArg` struct. -/// -@interface DBSHARINGListFileMembersContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersContinueArg` -/// object. -/// -+ (DBSHARINGListFileMembersContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersContinueError.h deleted file mode 100644 index eaff8c8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersContinueError.h +++ /dev/null @@ -1,177 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersContinueError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersContinueError` union. -/// -/// Error for `listFileMembersContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFileMembersContinueErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGListFileMembersContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFileMembersContinueErrorTag) { - /// (no description). - DBSHARINGListFileMembersContinueErrorUserError, - - /// (no description). - DBSHARINGListFileMembersContinueErrorAccessError, - - /// `cursor` in `DBSHARINGListFileMembersContinueArg` is invalid. - DBSHARINGListFileMembersContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFileMembersContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFileMembersContinueErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFileMembersContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFileMembersContinueError` -/// union. -/// -@interface DBSHARINGListFileMembersContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersContinueError` -/// object. -/// -+ (DBSHARINGListFileMembersContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersCountResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersCountResult.h deleted file mode 100644 index dddf5183..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersCountResult.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersCountResult; -@class DBSHARINGSharedFileMembers; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersCountResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersCountResult : NSObject - -#pragma mark - Instance fields - -/// A list of members on this file. -@property (nonatomic, readonly) DBSHARINGSharedFileMembers *members; - -/// The number of members on this file. This does not include inherited members. -@property (nonatomic, readonly) NSNumber *memberCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members A list of members on this file. -/// @param memberCount The number of members on this file. This does not include -/// inherited members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(DBSHARINGSharedFileMembers *)members memberCount:(NSNumber *)memberCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersCountResult` struct. -/// -@interface DBSHARINGListFileMembersCountResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersCountResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersCountResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersCountResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersCountResult *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersCountResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersCountResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersCountResult` -/// object. -/// -+ (DBSHARINGListFileMembersCountResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersError.h deleted file mode 100644 index d7999bcc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersError.h +++ /dev/null @@ -1,154 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersError` union. -/// -/// Error for `listFileMembers`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFileMembersErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGListFileMembersError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFileMembersErrorTag) { - /// (no description). - DBSHARINGListFileMembersErrorUserError, - - /// (no description). - DBSHARINGListFileMembersErrorAccessError, - - /// (no description). - DBSHARINGListFileMembersErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFileMembersErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFileMembersError` union. -/// -@interface DBSHARINGListFileMembersErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersError *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersError` object. -/// -+ (DBSHARINGListFileMembersError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersIndividualResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersIndividualResult.h deleted file mode 100644 index bf68c224..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFileMembersIndividualResult.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersCountResult; -@class DBSHARINGListFileMembersIndividualResult; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersIndividualResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersIndividualResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFileMembersIndividualResultTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGListFileMembersIndividualResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFileMembersIndividualResultTag) { - /// The results of the query for this file if it was successful. - DBSHARINGListFileMembersIndividualResultResult, - - /// The result of the query for this file if it was an error. - DBSHARINGListFileMembersIndividualResultAccessError, - - /// (no description). - DBSHARINGListFileMembersIndividualResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFileMembersIndividualResultTag tag; - -/// The results of the query for this file if it was successful. @note Ensure -/// the `isResult` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGListFileMembersCountResult *result; - -/// The result of the query for this file if it was an error. @note Ensure the -/// `isAccessError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "result". -/// -/// Description of the "result" tag state: The results of the query for this -/// file if it was successful. -/// -/// @param result The results of the query for this file if it was successful. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResult:(DBSHARINGListFileMembersCountResult *)result; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: The result of the query for -/// this file if it was an error. -/// -/// @param accessError The result of the query for this file if it was an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "result". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `result` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "result". -/// -- (BOOL)isResult; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFileMembersIndividualResult` -/// union. -/// -@interface DBSHARINGListFileMembersIndividualResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersIndividualResult` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGListFileMembersIndividualResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersIndividualResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersIndividualResult *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersIndividualResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersIndividualResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersIndividualResult` -/// object. -/// -+ (DBSHARINGListFileMembersIndividualResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesArg.h deleted file mode 100644 index 9ecb7532..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesArg.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGListFilesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesArg` struct. -/// -/// Arguments for `listReceivedFiles`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesArg : NSObject - -#pragma mark - Instance fields - -/// Number of files to return max per query. Defaults to 100 if no limit is -/// specified. -@property (nonatomic, readonly) NSNumber *limit; - -/// A list of `FileAction`s corresponding to `FilePermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFileMetadata` -/// field describing the actions the authenticated user can perform on the -/// file. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of files to return max per query. Defaults to 100 if no -/// limit is specified. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s -/// that should appear in the response's `permissions` in -/// `DBSHARINGSharedFileMetadata` field describing the actions the -/// authenticated user can perform on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFilesArg` struct. -/// -@interface DBSHARINGListFilesArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesArg *)instance; - -/// -/// Deserializes `DBSHARINGListFilesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesArg` object. -/// -+ (DBSHARINGListFilesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesContinueArg.h deleted file mode 100644 index c379b6c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFilesContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesContinueArg` struct. -/// -/// Arguments for `listReceivedFilesContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesContinueArg : NSObject - -#pragma mark - Instance fields - -/// Cursor in `cursor` in `DBSHARINGListFilesResult`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Cursor in `cursor` in `DBSHARINGListFilesResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFilesContinueArg` struct. -/// -@interface DBSHARINGListFilesContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFilesContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesContinueArg` object. -/// -+ (DBSHARINGListFilesContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesContinueError.h deleted file mode 100644 index f3e1009c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesContinueError.h +++ /dev/null @@ -1,149 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFilesContinueError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesContinueError` union. -/// -/// Error results for `listReceivedFilesContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFilesContinueErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGListFilesContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFilesContinueErrorTag) { - /// User account had a problem. - DBSHARINGListFilesContinueErrorUserError, - - /// `cursor` in `DBSHARINGListFilesContinueArg` is invalid. - DBSHARINGListFilesContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFilesContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFilesContinueErrorTag tag; - -/// User account had a problem. @note Ensure the `isUserError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// Description of the "user_error" tag state: User account had a problem. -/// -/// @param userError User account had a problem. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFilesContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFilesContinueError` union. -/// -@interface DBSHARINGListFilesContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFilesContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesContinueError` object. -/// -+ (DBSHARINGListFilesContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesResult.h deleted file mode 100644 index c1ed574b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFilesResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFilesResult; -@class DBSHARINGSharedFileMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesResult` struct. -/// -/// Success results for `listReceivedFiles`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesResult : NSObject - -#pragma mark - Instance fields - -/// Information about the files shared with current user. -@property (nonatomic, readonly) NSArray *entries; - -/// Cursor used to obtain additional shared files. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Information about the files shared with current user. -/// @param cursor Cursor used to obtain additional shared files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries Information about the files shared with current user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFilesResult` struct. -/// -@interface DBSHARINGListFilesResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesResult *)instance; - -/// -/// Deserializes `DBSHARINGListFilesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesResult` object. -/// -+ (DBSHARINGListFilesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersArgs.h deleted file mode 100644 index 4941c31f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersArgs.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGListFolderMembersCursorArg.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersArgs; -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersArgs : DBSHARINGListFolderMembersCursorArg - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param actions This is a list indicating whether each returned member will -/// include a boolean value `allow` in `DBSHARINGMemberPermission` that -/// describes whether the current user can perform the MemberAction on the -/// member. -/// @param limit The maximum number of results that include members, groups and -/// invitees to return per request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderMembersArgs` struct. -/// -@interface DBSHARINGListFolderMembersArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersArgs *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersArgs` object. -/// -+ (DBSHARINGListFolderMembersArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersContinueArg.h deleted file mode 100644 index 295057eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `listFolderMembers` or -/// `listFolderMembersContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `listFolderMembers` -/// or `listFolderMembersContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderMembersContinueArg` struct. -/// -@interface DBSHARINGListFolderMembersContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersContinueArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersContinueArg` -/// object. -/// -+ (DBSHARINGListFolderMembersContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersContinueError.h deleted file mode 100644 index 19ffaa12..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersContinueError.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersContinueError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFolderMembersContinueErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGListFolderMembersContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFolderMembersContinueErrorTag) { - /// (no description). - DBSHARINGListFolderMembersContinueErrorAccessError, - - /// `cursor` in `DBSHARINGListFolderMembersContinueArg` is invalid. - DBSHARINGListFolderMembersContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFolderMembersContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFolderMembersContinueErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFolderMembersContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFolderMembersContinueError` -/// union. -/// -@interface DBSHARINGListFolderMembersContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersContinueError` -/// object. -/// -+ (DBSHARINGListFolderMembersContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersCursorArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersCursorArg.h deleted file mode 100644 index 4fa3ce71..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFolderMembersCursorArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersCursorArg; -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersCursorArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersCursorArg : NSObject - -#pragma mark - Instance fields - -/// This is a list indicating whether each returned member will include a -/// boolean value `allow` in `DBSHARINGMemberPermission` that describes whether -/// the current user can perform the MemberAction on the member. -@property (nonatomic, readonly, nullable) NSArray *actions; - -/// The maximum number of results that include members, groups and invitees to -/// return per request. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param actions This is a list indicating whether each returned member will -/// include a boolean value `allow` in `DBSHARINGMemberPermission` that -/// describes whether the current user can perform the MemberAction on the -/// member. -/// @param limit The maximum number of results that include members, groups and -/// invitees to return per request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActions:(nullable NSArray *)actions limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderMembersCursorArg` struct. -/// -@interface DBSHARINGListFolderMembersCursorArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersCursorArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersCursorArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersCursorArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersCursorArg *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersCursorArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersCursorArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersCursorArg` -/// object. -/// -+ (DBSHARINGListFolderMembersCursorArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersArgs.h deleted file mode 100644 index 5c6ba24f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersArgs.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; -@class DBSHARINGListFoldersArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersArgs : NSObject - -#pragma mark - Instance fields - -/// The maximum number of results to return per request. -@property (nonatomic, readonly) NSNumber *limit; - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximum number of results to return per request. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFoldersArgs` struct. -/// -@interface DBSHARINGListFoldersArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersArgs *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersArgs` object. -/// -+ (DBSHARINGListFoldersArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersContinueArg.h deleted file mode 100644 index f4e2e109..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFoldersContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by the previous API call specified in the endpoint -/// description. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by the previous API call specified in the -/// endpoint description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFoldersContinueArg` struct. -/// -@interface DBSHARINGListFoldersContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersContinueArg` object. -/// -+ (DBSHARINGListFoldersContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersContinueError.h deleted file mode 100644 index bebc3286..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersContinueError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFoldersContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFoldersContinueErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGListFoldersContinueError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFoldersContinueErrorTag) { - /// `cursor` in `DBSHARINGListFoldersContinueArg` is invalid. - DBSHARINGListFoldersContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFoldersContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFoldersContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFoldersContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFoldersContinueError` union. -/// -@interface DBSHARINGListFoldersContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersContinueError` object. -/// -+ (DBSHARINGListFoldersContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersResult.h deleted file mode 100644 index 1acef614..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListFoldersResult.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFoldersResult; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersResult` struct. -/// -/// Result for `listFolders` or `listMountableFolders`, depending on which -/// endpoint was requested. Unmounted shared folders can be identified by the -/// absence of `pathLower` in `DBSHARINGSharedFolderMetadata`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersResult : NSObject - -#pragma mark - Instance fields - -/// List of all shared folders the authenticated user has access to. -@property (nonatomic, readonly) NSArray *entries; - -/// Present if there are additional shared folders that have not been returned -/// yet. Pass the cursor into the corresponding continue endpoint (either -/// `listFoldersContinue` or `listMountableFoldersContinue`) to list additional -/// folders. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of all shared folders the authenticated user has access -/// to. -/// @param cursor Present if there are additional shared folders that have not -/// been returned yet. Pass the cursor into the corresponding continue endpoint -/// (either `listFoldersContinue` or `listMountableFoldersContinue`) to list -/// additional folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of all shared folders the authenticated user has access -/// to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFoldersResult` struct. -/// -@interface DBSHARINGListFoldersResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersResult *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersResult` object. -/// -+ (DBSHARINGListFoldersResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksArg.h deleted file mode 100644 index bd6eaf72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListSharedLinksArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListSharedLinksArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListSharedLinksArg : NSObject - -#pragma mark - Instance fields - -/// See `listSharedLinks` description. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// The cursor returned by your last call to `listSharedLinks`. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// See `listSharedLinks` description. -@property (nonatomic, readonly, nullable) NSNumber *directOnly; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path See `listSharedLinks` description. -/// @param cursor The cursor returned by your last call to `listSharedLinks`. -/// @param directOnly See `listSharedLinks` description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path - cursor:(nullable NSString *)cursor - directOnly:(nullable NSNumber *)directOnly; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListSharedLinksArg` struct. -/// -@interface DBSHARINGListSharedLinksArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListSharedLinksArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListSharedLinksArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListSharedLinksArg *)instance; - -/// -/// Deserializes `DBSHARINGListSharedLinksArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListSharedLinksArg` object. -/// -+ (DBSHARINGListSharedLinksArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksError.h deleted file mode 100644 index e0505293..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksError.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBSHARINGListSharedLinksError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListSharedLinksError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListSharedLinksError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListSharedLinksErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGListSharedLinksError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListSharedLinksErrorTag) { - /// (no description). - DBSHARINGListSharedLinksErrorPath, - - /// Indicates that the cursor has been invalidated. Call `listSharedLinks` - /// to obtain a new cursor. - DBSHARINGListSharedLinksErrorReset, - - /// (no description). - DBSHARINGListSharedLinksErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListSharedLinksErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `listSharedLinks` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListSharedLinksError` union. -/// -@interface DBSHARINGListSharedLinksErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListSharedLinksError` instances. -/// -/// @param instance An instance of the `DBSHARINGListSharedLinksError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListSharedLinksError *)instance; - -/// -/// Deserializes `DBSHARINGListSharedLinksError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksError` API object. -/// -/// @return An instantiation of the `DBSHARINGListSharedLinksError` object. -/// -+ (DBSHARINGListSharedLinksError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksResult.h deleted file mode 100644 index 1b14d4a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGListSharedLinksResult.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListSharedLinksResult; -@class DBSHARINGSharedLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListSharedLinksResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListSharedLinksResult : NSObject - -#pragma mark - Instance fields - -/// Shared links applicable to the path argument. -@property (nonatomic, readonly) NSArray *links; - -/// Is true if there are additional shared links that have not been returned -/// yet. Pass the cursor into `listSharedLinks` to retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `listSharedLinks` to obtain the additional links. -/// Cursor is returned only if no path is given. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param links Shared links applicable to the path argument. -/// @param hasMore Is true if there are additional shared links that have not -/// been returned yet. Pass the cursor into `listSharedLinks` to retrieve them. -/// @param cursor Pass the cursor into `listSharedLinks` to obtain the -/// additional links. Cursor is returned only if no path is given. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinks:(NSArray *)links - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param links Shared links applicable to the path argument. -/// @param hasMore Is true if there are additional shared links that have not -/// been returned yet. Pass the cursor into `listSharedLinks` to retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinks:(NSArray *)links hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListSharedLinksResult` struct. -/// -@interface DBSHARINGListSharedLinksResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListSharedLinksResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListSharedLinksResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListSharedLinksResult *)instance; - -/// -/// Deserializes `DBSHARINGListSharedLinksResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListSharedLinksResult` object. -/// -+ (DBSHARINGListSharedLinksResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberAccessLevelResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberAccessLevelResult.h deleted file mode 100644 index 321f8ab8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberAccessLevelResult.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGParentFolderAccessInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAccessLevelResult` struct. -/// -/// Contains information about a member's access level to content after an -/// operation. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberAccessLevelResult : NSObject - -#pragma mark - Instance fields - -/// The member still has this level of access to the content through a parent -/// folder. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessLevel; - -/// A localized string with additional information about why the user has this -/// access level to the content. -@property (nonatomic, readonly, copy, nullable) NSString *warning; - -/// The parent folders that a member has access to. The field is present if the -/// user has access to the first parent folder where the member gains access. -@property (nonatomic, readonly, nullable) NSArray *accessDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessLevel The member still has this level of access to the content -/// through a parent folder. -/// @param warning A localized string with additional information about why the -/// user has this access level to the content. -/// @param accessDetails The parent folders that a member has access to. The -/// field is present if the user has access to the first parent folder where the -/// member gains access. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - warning:(nullable NSString *)warning - accessDetails:(nullable NSArray *)accessDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAccessLevelResult` struct. -/// -@interface DBSHARINGMemberAccessLevelResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberAccessLevelResult` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberAccessLevelResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberAccessLevelResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberAccessLevelResult *)instance; - -/// -/// Deserializes `DBSHARINGMemberAccessLevelResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberAccessLevelResult` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberAccessLevelResult` object. -/// -+ (DBSHARINGMemberAccessLevelResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberAction.h deleted file mode 100644 index adc09ebc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberAction.h +++ /dev/null @@ -1,220 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAction` union. -/// -/// Actions that may be taken on members of a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMemberActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGMemberAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMemberActionTag) { - /// Allow the member to keep a copy of the folder when removing. - DBSHARINGMemberActionLeaveACopy, - - /// Make the member an editor of the folder. - DBSHARINGMemberActionMakeEditor, - - /// Make the member an owner of the folder. - DBSHARINGMemberActionMakeOwner, - - /// Make the member a viewer of the folder. - DBSHARINGMemberActionMakeViewer, - - /// Make the member a viewer of the folder without commenting permissions. - DBSHARINGMemberActionMakeViewerNoComment, - - /// Remove the member from the folder. - DBSHARINGMemberActionRemove, - - /// (no description). - DBSHARINGMemberActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMemberActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "leave_a_copy". -/// -/// Description of the "leave_a_copy" tag state: Allow the member to keep a copy -/// of the folder when removing. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLeaveACopy; - -/// -/// Initializes union class with tag state of "make_editor". -/// -/// Description of the "make_editor" tag state: Make the member an editor of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeEditor; - -/// -/// Initializes union class with tag state of "make_owner". -/// -/// Description of the "make_owner" tag state: Make the member an owner of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeOwner; - -/// -/// Initializes union class with tag state of "make_viewer". -/// -/// Description of the "make_viewer" tag state: Make the member a viewer of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeViewer; - -/// -/// Initializes union class with tag state of "make_viewer_no_comment". -/// -/// Description of the "make_viewer_no_comment" tag state: Make the member a -/// viewer of the folder without commenting permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeViewerNoComment; - -/// -/// Initializes union class with tag state of "remove". -/// -/// Description of the "remove" tag state: Remove the member from the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemove; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "leave_a_copy". -/// -/// @return Whether the union's current tag state has value "leave_a_copy". -/// -- (BOOL)isLeaveACopy; - -/// -/// Retrieves whether the union's current tag state has value "make_editor". -/// -/// @return Whether the union's current tag state has value "make_editor". -/// -- (BOOL)isMakeEditor; - -/// -/// Retrieves whether the union's current tag state has value "make_owner". -/// -/// @return Whether the union's current tag state has value "make_owner". -/// -- (BOOL)isMakeOwner; - -/// -/// Retrieves whether the union's current tag state has value "make_viewer". -/// -/// @return Whether the union's current tag state has value "make_viewer". -/// -- (BOOL)isMakeViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "make_viewer_no_comment". -/// -/// @return Whether the union's current tag state has value -/// "make_viewer_no_comment". -/// -- (BOOL)isMakeViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value "remove". -/// -/// @return Whether the union's current tag state has value "remove". -/// -- (BOOL)isRemove; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMemberAction` union. -/// -@interface DBSHARINGMemberActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberAction` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberAction *)instance; - -/// -/// Deserializes `DBSHARINGMemberAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberAction` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberAction` object. -/// -+ (DBSHARINGMemberAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberPermission.h deleted file mode 100644 index 6f95cd6d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberPermission.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAction; -@class DBSHARINGMemberPermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPermission` struct. -/// -/// Whether the user is allowed to take the action on the associated member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberPermission : NSObject - -#pragma mark - Instance fields - -/// The action that the user may wish to take on the member. -@property (nonatomic, readonly) DBSHARINGMemberAction *action; - -/// True if the user is allowed to take the action. -@property (nonatomic, readonly) NSNumber *allow; - -/// The reason why the user is denied the permission. Not present if the action -/// is allowed. -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The action that the user may wish to take on the member. -/// @param allow True if the user is allowed to take the action. -/// @param reason The reason why the user is denied the permission. Not present -/// if the action is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGMemberAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action The action that the user may wish to take on the member. -/// @param allow True if the user is allowed to take the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGMemberAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberPermission` struct. -/// -@interface DBSHARINGMemberPermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberPermission` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberPermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberPermission *)instance; - -/// -/// Deserializes `DBSHARINGMemberPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberPermission` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberPermission` object. -/// -+ (DBSHARINGMemberPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberPolicy.h deleted file mode 100644 index cd659591..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPolicy` union. -/// -/// Policy governing who can be a member of a shared folder. Only applicable to -/// folders owned by a user on a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMemberPolicyTag` enum type represents the possible tag states -/// with which the `DBSHARINGMemberPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMemberPolicyTag) { - /// Only a teammate can become a member. - DBSHARINGMemberPolicyTeam, - - /// Anyone can become a member. - DBSHARINGMemberPolicyAnyone, - - /// (no description). - DBSHARINGMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Only a teammate can become a member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Anyone can become a member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMemberPolicy` union. -/// -@interface DBSHARINGMemberPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberPolicy *)instance; - -/// -/// Deserializes `DBSHARINGMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberPolicy` object. -/// -+ (DBSHARINGMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberSelector.h deleted file mode 100644 index 29853774..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMemberSelector.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSelector` union. -/// -/// Includes different ways to identify a member of a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberSelector : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMemberSelectorTag` enum type represents the possible tag -/// states with which the `DBSHARINGMemberSelector` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMemberSelectorTag) { - /// Dropbox account, team member, or group ID of member. - DBSHARINGMemberSelectorDropboxId, - - /// Email address of member. - DBSHARINGMemberSelectorEmail, - - /// (no description). - DBSHARINGMemberSelectorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMemberSelectorTag tag; - -/// Dropbox account, team member, or group ID of member. @note Ensure the -/// `isDropboxId` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *dropboxId; - -/// Email address of member. @note Ensure the `isEmail` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *email; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "dropbox_id". -/// -/// Description of the "dropbox_id" tag state: Dropbox account, team member, or -/// group ID of member. -/// -/// @param dropboxId Dropbox account, team member, or group ID of member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxId:(NSString *)dropboxId; - -/// -/// Initializes union class with tag state of "email". -/// -/// Description of the "email" tag state: Email address of member. -/// -/// @param email Email address of member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "dropbox_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "dropbox_id". -/// -- (BOOL)isDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `email` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMemberSelector` union. -/// -@interface DBSHARINGMemberSelectorSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberSelector` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberSelector *)instance; - -/// -/// Deserializes `DBSHARINGMemberSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberSelector` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberSelector` object. -/// -+ (DBSHARINGMemberSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMembershipInfo.h deleted file mode 100644 index 292a14b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMembershipInfo.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberPermission; -@class DBSHARINGMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembershipInfo` struct. -/// -/// The information about a member of the shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMembershipInfo : NSObject - -#pragma mark - Instance fields - -/// The access type for this member. It contains inherited access type from -/// parent folder, and acquired access type from this folder. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessType; - -/// The permissions that requesting user has on this member. The set of -/// permissions corresponds to the MemberActions in the request. -@property (nonatomic, readonly, nullable) NSArray *permissions; - -/// Never set. -@property (nonatomic, readonly, copy, nullable) NSString *initials; - -/// True if the member has access from a parent folder. -@property (nonatomic, readonly) NSNumber *isInherited; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembershipInfo` struct. -/// -@interface DBSHARINGMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGMembershipInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGMembershipInfo` object. -/// -+ (DBSHARINGMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGModifySharedLinkSettingsArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGModifySharedLinkSettingsArgs.h deleted file mode 100644 index a382392b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGModifySharedLinkSettingsArgs.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGModifySharedLinkSettingsArgs; -@class DBSHARINGSharedLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ModifySharedLinkSettingsArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGModifySharedLinkSettingsArgs : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link to change its settings. -@property (nonatomic, readonly, copy) NSString *url; - -/// Set of settings for the shared link. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettings *settings; - -/// If set to true, removes the expiration of the shared link. -@property (nonatomic, readonly) NSNumber *removeExpiration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// @param removeExpiration If set to true, removes the expiration of the shared -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - settings:(DBSHARINGSharedLinkSettings *)settings - removeExpiration:(nullable NSNumber *)removeExpiration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url settings:(DBSHARINGSharedLinkSettings *)settings; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ModifySharedLinkSettingsArgs` struct. -/// -@interface DBSHARINGModifySharedLinkSettingsArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGModifySharedLinkSettingsArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGModifySharedLinkSettingsArgs` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGModifySharedLinkSettingsArgs *)instance; - -/// -/// Deserializes `DBSHARINGModifySharedLinkSettingsArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGModifySharedLinkSettingsArgs` -/// object. -/// -+ (DBSHARINGModifySharedLinkSettingsArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGModifySharedLinkSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGModifySharedLinkSettingsError.h deleted file mode 100644 index 61629c95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGModifySharedLinkSettingsError.h +++ /dev/null @@ -1,224 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGModifySharedLinkSettingsError; -@class DBSHARINGSharedLinkSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ModifySharedLinkSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGModifySharedLinkSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGModifySharedLinkSettingsErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGModifySharedLinkSettingsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGModifySharedLinkSettingsErrorTag) { - /// The shared link wasn't found. - DBSHARINGModifySharedLinkSettingsErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGModifySharedLinkSettingsErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGModifySharedLinkSettingsErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGModifySharedLinkSettingsErrorOther, - - /// There is an error with the given settings. - DBSHARINGModifySharedLinkSettingsErrorSettingsError, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGModifySharedLinkSettingsErrorEmailNotVerified, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGModifySharedLinkSettingsErrorTag tag; - -/// There is an error with the given settings. @note Ensure the -/// `isSettingsError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettingsError *settingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "settings_error". -/// -/// Description of the "settings_error" tag state: There is an error with the -/// given settings. -/// -/// @param settingsError There is an error with the given settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSettingsError:(DBSHARINGSharedLinkSettingsError *)settingsError; - -/// -/// Initializes union class with tag state of "email_not_verified". -/// -/// Description of the "email_not_verified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailNotVerified; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `settingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "settings_error". -/// -- (BOOL)isSettingsError; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "email_not_verified". -/// -- (BOOL)isEmailNotVerified; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGModifySharedLinkSettingsError` -/// union. -/// -@interface DBSHARINGModifySharedLinkSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGModifySharedLinkSettingsError` instances. -/// -/// @param instance An instance of the `DBSHARINGModifySharedLinkSettingsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGModifySharedLinkSettingsError *)instance; - -/// -/// Deserializes `DBSHARINGModifySharedLinkSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsError` API object. -/// -/// @return An instantiation of the `DBSHARINGModifySharedLinkSettingsError` -/// object. -/// -+ (DBSHARINGModifySharedLinkSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMountFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMountFolderArg.h deleted file mode 100644 index 97fa2e47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMountFolderArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMountFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MountFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMountFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID of the shared folder to mount. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID of the shared folder to mount. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MountFolderArg` struct. -/// -@interface DBSHARINGMountFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGMountFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGMountFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMountFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGMountFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGMountFolderArg` object. -/// -+ (DBSHARINGMountFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMountFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMountFolderError.h deleted file mode 100644 index f4957f95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGMountFolderError.h +++ /dev/null @@ -1,244 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientQuotaAmounts; -@class DBSHARINGMountFolderError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MountFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMountFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMountFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGMountFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMountFolderErrorTag) { - /// (no description). - DBSHARINGMountFolderErrorAccessError, - - /// Mounting would cause a shared folder to be inside another, which is - /// disallowed. - DBSHARINGMountFolderErrorInsideSharedFolder, - - /// The current user does not have enough space to mount the shared folder. - DBSHARINGMountFolderErrorInsufficientQuota, - - /// The shared folder is already mounted. - DBSHARINGMountFolderErrorAlreadyMounted, - - /// The current user does not have permission to perform this action. - DBSHARINGMountFolderErrorNoPermission, - - /// The shared folder is not mountable. One example where this can occur is - /// when the shared folder belongs within a team folder in the user's - /// Dropbox. - DBSHARINGMountFolderErrorNotMountable, - - /// (no description). - DBSHARINGMountFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMountFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// The current user does not have enough space to mount the shared folder. -/// @note Ensure the `isInsufficientQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGInsufficientQuotaAmounts *insufficientQuota; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "inside_shared_folder". -/// -/// Description of the "inside_shared_folder" tag state: Mounting would cause a -/// shared folder to be inside another, which is disallowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideSharedFolder; - -/// -/// Initializes union class with tag state of "insufficient_quota". -/// -/// Description of the "insufficient_quota" tag state: The current user does not -/// have enough space to mount the shared folder. -/// -/// @param insufficientQuota The current user does not have enough space to -/// mount the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientQuota:(DBSHARINGInsufficientQuotaAmounts *)insufficientQuota; - -/// -/// Initializes union class with tag state of "already_mounted". -/// -/// Description of the "already_mounted" tag state: The shared folder is already -/// mounted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyMounted; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "not_mountable". -/// -/// Description of the "not_mountable" tag state: The shared folder is not -/// mountable. One example where this can occur is when the shared folder -/// belongs within a team folder in the user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotMountable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_shared_folder". -/// -- (BOOL)isInsideSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `insufficientQuota` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "insufficient_quota". -/// -- (BOOL)isInsufficientQuota; - -/// -/// Retrieves whether the union's current tag state has value "already_mounted". -/// -/// @return Whether the union's current tag state has value "already_mounted". -/// -- (BOOL)isAlreadyMounted; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "not_mountable". -/// -/// @return Whether the union's current tag state has value "not_mountable". -/// -- (BOOL)isNotMountable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMountFolderError` union. -/// -@interface DBSHARINGMountFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGMountFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGMountFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMountFolderError *)instance; - -/// -/// Deserializes `DBSHARINGMountFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGMountFolderError` object. -/// -+ (DBSHARINGMountFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGParentFolderAccessInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGParentFolderAccessInfo.h deleted file mode 100644 index 92a63b9a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGParentFolderAccessInfo.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberPermission; -@class DBSHARINGParentFolderAccessInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ParentFolderAccessInfo` struct. -/// -/// Contains information about a parent folder that a member has access to. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGParentFolderAccessInfo : NSObject - -#pragma mark - Instance fields - -/// Display name for the folder. -@property (nonatomic, readonly, copy) NSString *folderName; - -/// The identifier of the parent shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The user's permissions for the parent shared folder. -@property (nonatomic, readonly) NSArray *permissions; - -/// The full path to the parent shared folder relative to the acting user's -/// root. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderName Display name for the folder. -/// @param sharedFolderId The identifier of the parent shared folder. -/// @param permissions The user's permissions for the parent shared folder. -/// @param path The full path to the parent shared folder relative to the acting -/// user's root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderName:(NSString *)folderName - sharedFolderId:(NSString *)sharedFolderId - permissions:(NSArray *)permissions - path:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ParentFolderAccessInfo` struct. -/// -@interface DBSHARINGParentFolderAccessInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGParentFolderAccessInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGParentFolderAccessInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGParentFolderAccessInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGParentFolderAccessInfo *)instance; - -/// -/// Deserializes `DBSHARINGParentFolderAccessInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGParentFolderAccessInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGParentFolderAccessInfo` object. -/// -+ (DBSHARINGParentFolderAccessInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPathLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPathLinkMetadata.h deleted file mode 100644 index b559dc01..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPathLinkMetadata.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGPathLinkMetadata; -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathLinkMetadata` struct. -/// -/// Metadata for a path-based shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGPathLinkMetadata : DBSHARINGLinkMetadata - -#pragma mark - Instance fields - -/// Path in user's Dropbox. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param path Path in user's Dropbox. -/// @param expires Expiration time, if set. By default the link won't expire. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - visibility:(DBSHARINGVisibility *)visibility - path:(NSString *)path - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param path Path in user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url visibility:(DBSHARINGVisibility *)visibility path:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PathLinkMetadata` struct. -/// -@interface DBSHARINGPathLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGPathLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGPathLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGPathLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGPathLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGPathLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGPathLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGPathLinkMetadata` object. -/// -+ (DBSHARINGPathLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPendingUploadMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPendingUploadMode.h deleted file mode 100644 index 25dee377..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPendingUploadMode.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGPendingUploadMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PendingUploadMode` union. -/// -/// Flag to indicate pending upload default (for linking to not-yet-existing -/// paths). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGPendingUploadMode : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGPendingUploadModeTag` enum type represents the possible tag -/// states with which the `DBSHARINGPendingUploadMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGPendingUploadModeTag) { - /// Assume pending uploads are files. - DBSHARINGPendingUploadModeFile, - - /// Assume pending uploads are folders. - DBSHARINGPendingUploadModeFolder, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGPendingUploadModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file". -/// -/// Description of the "file" tag state: Assume pending uploads are files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: Assume pending uploads are folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file". -/// -/// @return Whether the union's current tag state has value "file". -/// -- (BOOL)isFile; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGPendingUploadMode` union. -/// -@interface DBSHARINGPendingUploadModeSerializer : NSObject - -/// -/// Serializes `DBSHARINGPendingUploadMode` instances. -/// -/// @param instance An instance of the `DBSHARINGPendingUploadMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGPendingUploadMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGPendingUploadMode *)instance; - -/// -/// Deserializes `DBSHARINGPendingUploadMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGPendingUploadMode` API object. -/// -/// @return An instantiation of the `DBSHARINGPendingUploadMode` object. -/// -+ (DBSHARINGPendingUploadMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPermissionDeniedReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPermissionDeniedReason.h deleted file mode 100644 index 1b478799..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGPermissionDeniedReason.h +++ /dev/null @@ -1,427 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientPlan; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PermissionDeniedReason` union. -/// -/// Possible reasons the user is denied a permission. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGPermissionDeniedReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGPermissionDeniedReasonTag` enum type represents the possible -/// tag states with which the `DBSHARINGPermissionDeniedReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGPermissionDeniedReasonTag) { - /// User is not on the same team as the folder owner. - DBSHARINGPermissionDeniedReasonUserNotSameTeamAsOwner, - - /// User is prohibited by the owner from taking the action. - DBSHARINGPermissionDeniedReasonUserNotAllowedByOwner, - - /// Target is indirectly a member of the folder, for example by being part - /// of a group. - DBSHARINGPermissionDeniedReasonTargetIsIndirectMember, - - /// Target is the owner of the folder. - DBSHARINGPermissionDeniedReasonTargetIsOwner, - - /// Target is the user itself. - DBSHARINGPermissionDeniedReasonTargetIsSelf, - - /// Target is not an active member of the team. - DBSHARINGPermissionDeniedReasonTargetNotActive, - - /// Folder is team folder for a limited team. - DBSHARINGPermissionDeniedReasonFolderIsLimitedTeamFolder, - - /// The content owner needs to be on a Dropbox team to perform this action. - DBSHARINGPermissionDeniedReasonOwnerNotOnTeam, - - /// The user does not have permission to perform this action on the link. - DBSHARINGPermissionDeniedReasonPermissionDenied, - - /// The user's team policy prevents performing this action on the link. - DBSHARINGPermissionDeniedReasonRestrictedByTeam, - - /// The user's account type does not support this action. - DBSHARINGPermissionDeniedReasonUserAccountType, - - /// The user needs to be on a Dropbox team to perform this action. - DBSHARINGPermissionDeniedReasonUserNotOnTeam, - - /// Folder is inside of another shared folder. - DBSHARINGPermissionDeniedReasonFolderIsInsideSharedFolder, - - /// Policy cannot be changed due to restrictions from parent folder. - DBSHARINGPermissionDeniedReasonRestrictedByParentFolder, - - /// (no description). - DBSHARINGPermissionDeniedReasonInsufficientPlan, - - /// (no description). - DBSHARINGPermissionDeniedReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGPermissionDeniedReasonTag tag; - -/// (no description). @note Ensure the `isInsufficientPlan` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGInsufficientPlan *insufficientPlan; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_same_team_as_owner". -/// -/// Description of the "user_not_same_team_as_owner" tag state: User is not on -/// the same team as the folder owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotSameTeamAsOwner; - -/// -/// Initializes union class with tag state of "user_not_allowed_by_owner". -/// -/// Description of the "user_not_allowed_by_owner" tag state: User is prohibited -/// by the owner from taking the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotAllowedByOwner; - -/// -/// Initializes union class with tag state of "target_is_indirect_member". -/// -/// Description of the "target_is_indirect_member" tag state: Target is -/// indirectly a member of the folder, for example by being part of a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetIsIndirectMember; - -/// -/// Initializes union class with tag state of "target_is_owner". -/// -/// Description of the "target_is_owner" tag state: Target is the owner of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetIsOwner; - -/// -/// Initializes union class with tag state of "target_is_self". -/// -/// Description of the "target_is_self" tag state: Target is the user itself. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetIsSelf; - -/// -/// Initializes union class with tag state of "target_not_active". -/// -/// Description of the "target_not_active" tag state: Target is not an active -/// member of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetNotActive; - -/// -/// Initializes union class with tag state of "folder_is_limited_team_folder". -/// -/// Description of the "folder_is_limited_team_folder" tag state: Folder is team -/// folder for a limited team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderIsLimitedTeamFolder; - -/// -/// Initializes union class with tag state of "owner_not_on_team". -/// -/// Description of the "owner_not_on_team" tag state: The content owner needs to -/// be on a Dropbox team to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwnerNotOnTeam; - -/// -/// Initializes union class with tag state of "permission_denied". -/// -/// Description of the "permission_denied" tag state: The user does not have -/// permission to perform this action on the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDenied; - -/// -/// Initializes union class with tag state of "restricted_by_team". -/// -/// Description of the "restricted_by_team" tag state: The user's team policy -/// prevents performing this action on the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByTeam; - -/// -/// Initializes union class with tag state of "user_account_type". -/// -/// Description of the "user_account_type" tag state: The user's account type -/// does not support this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAccountType; - -/// -/// Initializes union class with tag state of "user_not_on_team". -/// -/// Description of the "user_not_on_team" tag state: The user needs to be on a -/// Dropbox team to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotOnTeam; - -/// -/// Initializes union class with tag state of "folder_is_inside_shared_folder". -/// -/// Description of the "folder_is_inside_shared_folder" tag state: Folder is -/// inside of another shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderIsInsideSharedFolder; - -/// -/// Initializes union class with tag state of "restricted_by_parent_folder". -/// -/// Description of the "restricted_by_parent_folder" tag state: Policy cannot be -/// changed due to restrictions from parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByParentFolder; - -/// -/// Initializes union class with tag state of "insufficient_plan". -/// -/// @param insufficientPlan (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPlan:(DBSHARINGInsufficientPlan *)insufficientPlan; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_same_team_as_owner". -/// -/// @return Whether the union's current tag state has value -/// "user_not_same_team_as_owner". -/// -- (BOOL)isUserNotSameTeamAsOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_allowed_by_owner". -/// -/// @return Whether the union's current tag state has value -/// "user_not_allowed_by_owner". -/// -- (BOOL)isUserNotAllowedByOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "target_is_indirect_member". -/// -/// @return Whether the union's current tag state has value -/// "target_is_indirect_member". -/// -- (BOOL)isTargetIsIndirectMember; - -/// -/// Retrieves whether the union's current tag state has value "target_is_owner". -/// -/// @return Whether the union's current tag state has value "target_is_owner". -/// -- (BOOL)isTargetIsOwner; - -/// -/// Retrieves whether the union's current tag state has value "target_is_self". -/// -/// @return Whether the union's current tag state has value "target_is_self". -/// -- (BOOL)isTargetIsSelf; - -/// -/// Retrieves whether the union's current tag state has value -/// "target_not_active". -/// -/// @return Whether the union's current tag state has value "target_not_active". -/// -- (BOOL)isTargetNotActive; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_is_limited_team_folder". -/// -/// @return Whether the union's current tag state has value -/// "folder_is_limited_team_folder". -/// -- (BOOL)isFolderIsLimitedTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "owner_not_on_team". -/// -/// @return Whether the union's current tag state has value "owner_not_on_team". -/// -- (BOOL)isOwnerNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied". -/// -/// @return Whether the union's current tag state has value "permission_denied". -/// -- (BOOL)isPermissionDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_team". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_team". -/// -- (BOOL)isRestrictedByTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_account_type". -/// -/// @return Whether the union's current tag state has value "user_account_type". -/// -- (BOOL)isUserAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_on_team". -/// -/// @return Whether the union's current tag state has value "user_not_on_team". -/// -- (BOOL)isUserNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_is_inside_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "folder_is_inside_shared_folder". -/// -- (BOOL)isFolderIsInsideSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_parent_folder". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_parent_folder". -/// -- (BOOL)isRestrictedByParentFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_plan". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `insufficientPlan` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "insufficient_plan". -/// -- (BOOL)isInsufficientPlan; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGPermissionDeniedReason` union. -/// -@interface DBSHARINGPermissionDeniedReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGPermissionDeniedReason` instances. -/// -/// @param instance An instance of the `DBSHARINGPermissionDeniedReason` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGPermissionDeniedReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGPermissionDeniedReason *)instance; - -/// -/// Deserializes `DBSHARINGPermissionDeniedReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGPermissionDeniedReason` API object. -/// -/// @return An instantiation of the `DBSHARINGPermissionDeniedReason` object. -/// -+ (DBSHARINGPermissionDeniedReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFileMembershipArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFileMembershipArg.h deleted file mode 100644 index b75c8193..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFileMembershipArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFileMembershipArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFileMembershipArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFileMembershipArg : NSObject - -#pragma mark - Instance fields - -/// The path or id for the file. -@property (nonatomic, readonly, copy) NSString *file; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The path or id for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelinquishFileMembershipArg` struct. -/// -@interface DBSHARINGRelinquishFileMembershipArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFileMembershipArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRelinquishFileMembershipArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFileMembershipArg *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFileMembershipArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFileMembershipArg` -/// object. -/// -+ (DBSHARINGRelinquishFileMembershipArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFileMembershipError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFileMembershipError.h deleted file mode 100644 index 90e5b70e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFileMembershipError.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFileMembershipError; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFileMembershipError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFileMembershipError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRelinquishFileMembershipErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGRelinquishFileMembershipError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRelinquishFileMembershipErrorTag) { - /// (no description). - DBSHARINGRelinquishFileMembershipErrorAccessError, - - /// The current user has access to the shared file via a group. You can't - /// relinquish membership to a file shared via groups. - DBSHARINGRelinquishFileMembershipErrorGroupAccess, - - /// The current user does not have permission to perform this action. - DBSHARINGRelinquishFileMembershipErrorNoPermission, - - /// (no description). - DBSHARINGRelinquishFileMembershipErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRelinquishFileMembershipErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "group_access". -/// -/// Description of the "group_access" tag state: The current user has access to -/// the shared file via a group. You can't relinquish membership to a file -/// shared via groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "group_access". -/// -/// @return Whether the union's current tag state has value "group_access". -/// -- (BOOL)isGroupAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRelinquishFileMembershipError` -/// union. -/// -@interface DBSHARINGRelinquishFileMembershipErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFileMembershipError` instances. -/// -/// @param instance An instance of the `DBSHARINGRelinquishFileMembershipError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFileMembershipError *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFileMembershipError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipError` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFileMembershipError` -/// object. -/// -+ (DBSHARINGRelinquishFileMembershipError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFolderMembershipArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFolderMembershipArg.h deleted file mode 100644 index f8c62b1b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFolderMembershipArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFolderMembershipArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFolderMembershipArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFolderMembershipArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// Keep a copy of the folder's contents upon relinquishing membership. This -/// must be set to false when the folder is within a team folder or another -/// shared folder. -@property (nonatomic, readonly) NSNumber *leaveACopy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy Keep a copy of the folder's contents upon relinquishing -/// membership. This must be set to false when the folder is within a team -/// folder or another shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelinquishFolderMembershipArg` struct. -/// -@interface DBSHARINGRelinquishFolderMembershipArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFolderMembershipArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRelinquishFolderMembershipArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFolderMembershipArg *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFolderMembershipArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFolderMembershipArg` -/// object. -/// -+ (DBSHARINGRelinquishFolderMembershipArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFolderMembershipError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFolderMembershipError.h deleted file mode 100644 index 5a197bd9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRelinquishFolderMembershipError.h +++ /dev/null @@ -1,258 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFolderMembershipError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFolderMembershipError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRelinquishFolderMembershipErrorTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGRelinquishFolderMembershipError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRelinquishFolderMembershipErrorTag) { - /// (no description). - DBSHARINGRelinquishFolderMembershipErrorAccessError, - - /// The current user is the owner of the shared folder. Owners cannot - /// relinquish membership to their own folders. Try unsharing or - /// transferring ownership first. - DBSHARINGRelinquishFolderMembershipErrorFolderOwner, - - /// The shared folder is currently mounted. Unmount the shared folder - /// before relinquishing membership. - DBSHARINGRelinquishFolderMembershipErrorMounted, - - /// The current user has access to the shared folder via a group. You can't - /// relinquish membership to folders shared via groups. - DBSHARINGRelinquishFolderMembershipErrorGroupAccess, - - /// This action cannot be performed on a team shared folder. - DBSHARINGRelinquishFolderMembershipErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGRelinquishFolderMembershipErrorNoPermission, - - /// The current user only has inherited access to the shared folder. You - /// can't relinquish inherited membership to folders. - DBSHARINGRelinquishFolderMembershipErrorNoExplicitAccess, - - /// (no description). - DBSHARINGRelinquishFolderMembershipErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRelinquishFolderMembershipErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "folder_owner". -/// -/// Description of the "folder_owner" tag state: The current user is the owner -/// of the shared folder. Owners cannot relinquish membership to their own -/// folders. Try unsharing or transferring ownership first. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOwner; - -/// -/// Initializes union class with tag state of "mounted". -/// -/// Description of the "mounted" tag state: The shared folder is currently -/// mounted. Unmount the shared folder before relinquishing membership. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMounted; - -/// -/// Initializes union class with tag state of "group_access". -/// -/// Description of the "group_access" tag state: The current user has access to -/// the shared folder via a group. You can't relinquish membership to folders -/// shared via groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAccess; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: The current user only has -/// inherited access to the shared folder. You can't relinquish inherited -/// membership to folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "folder_owner". -/// -/// @return Whether the union's current tag state has value "folder_owner". -/// -- (BOOL)isFolderOwner; - -/// -/// Retrieves whether the union's current tag state has value "mounted". -/// -/// @return Whether the union's current tag state has value "mounted". -/// -- (BOOL)isMounted; - -/// -/// Retrieves whether the union's current tag state has value "group_access". -/// -/// @return Whether the union's current tag state has value "group_access". -/// -- (BOOL)isGroupAccess; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRelinquishFolderMembershipError` -/// union. -/// -@interface DBSHARINGRelinquishFolderMembershipErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFolderMembershipError` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGRelinquishFolderMembershipError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFolderMembershipError *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFolderMembershipError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipError` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFolderMembershipError` -/// object. -/// -+ (DBSHARINGRelinquishFolderMembershipError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFileMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFileMemberArg.h deleted file mode 100644 index 9e3adcc6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFileMemberArg.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberSelector; -@class DBSHARINGRemoveFileMemberArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFileMemberArg` struct. -/// -/// Arguments for `removeFileMember2`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFileMemberArg : NSObject - -#pragma mark - Instance fields - -/// File from which to remove members. -@property (nonatomic, readonly, copy) NSString *file; - -/// Member to remove from this file. Note that even if an email is specified, it -/// may result in the removal of a user (not an invitee) if the user's main -/// account corresponds to that email address. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file File from which to remove members. -/// @param member Member to remove from this file. Note that even if an email is -/// specified, it may result in the removal of a user (not an invitee) if the -/// user's main account corresponds to that email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file member:(DBSHARINGMemberSelector *)member; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveFileMemberArg` struct. -/// -@interface DBSHARINGRemoveFileMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFileMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFileMemberArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFileMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFileMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFileMemberArg` object. -/// -+ (DBSHARINGRemoveFileMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFileMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFileMemberError.h deleted file mode 100644 index 618cd2e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFileMemberError.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGRemoveFileMemberError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFileMemberError` union. -/// -/// Errors for `removeFileMember2`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFileMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRemoveFileMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGRemoveFileMemberError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRemoveFileMemberErrorTag) { - /// (no description). - DBSHARINGRemoveFileMemberErrorUserError, - - /// (no description). - DBSHARINGRemoveFileMemberErrorAccessError, - - /// This member does not have explicit access to the file and therefore - /// cannot be removed. The return value is the access that a user might have - /// to the file from a parent folder. - DBSHARINGRemoveFileMemberErrorNoExplicitAccess, - - /// (no description). - DBSHARINGRemoveFileMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRemoveFileMemberErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -/// This member does not have explicit access to the file and therefore cannot -/// be removed. The return value is the access that a user might have to the -/// file from a parent folder. @note Ensure the `isNoExplicitAccess` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: This member does not have -/// explicit access to the file and therefore cannot be removed. The return -/// value is the access that a user might have to the file from a parent folder. -/// -/// @param noExplicitAccess This member does not have explicit access to the -/// file and therefore cannot be removed. The return value is the access that a -/// user might have to the file from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGMemberAccessLevelResult *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRemoveFileMemberError` union. -/// -@interface DBSHARINGRemoveFileMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFileMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFileMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFileMemberError *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFileMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFileMemberError` object. -/// -+ (DBSHARINGRemoveFileMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFolderMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFolderMemberArg.h deleted file mode 100644 index 9ffa5857..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFolderMemberArg.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberSelector; -@class DBSHARINGRemoveFolderMemberArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFolderMemberArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFolderMemberArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The member to remove from the folder. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// If true, the removed user will keep their copy of the folder after it's -/// unshared, assuming it was mounted. Otherwise, it will be removed from their -/// Dropbox. This must be set to false when removing a group, or when the folder -/// is within a team folder or another shared folder. -@property (nonatomic, readonly) NSNumber *leaveACopy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member to remove from the folder. -/// @param leaveACopy If true, the removed user will keep their copy of the -/// folder after it's unshared, assuming it was mounted. Otherwise, it will be -/// removed from their Dropbox. This must be set to false when removing a group, -/// or when the folder is within a team folder or another shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - leaveACopy:(NSNumber *)leaveACopy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveFolderMemberArg` struct. -/// -@interface DBSHARINGRemoveFolderMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFolderMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFolderMemberArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFolderMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFolderMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFolderMemberArg` object. -/// -+ (DBSHARINGRemoveFolderMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFolderMemberError.h deleted file mode 100644 index 52cabe42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveFolderMemberError.h +++ /dev/null @@ -1,257 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRemoveFolderMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGRemoveFolderMemberError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRemoveFolderMemberErrorTag) { - /// (no description). - DBSHARINGRemoveFolderMemberErrorAccessError, - - /// (no description). - DBSHARINGRemoveFolderMemberErrorMemberError, - - /// The target user is the owner of the shared folder. You can't remove this - /// user until ownership has been transferred to another member. - DBSHARINGRemoveFolderMemberErrorFolderOwner, - - /// The target user has access to the shared folder via a group. - DBSHARINGRemoveFolderMemberErrorGroupAccess, - - /// This action cannot be performed on a team shared folder. - DBSHARINGRemoveFolderMemberErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGRemoveFolderMemberErrorNoPermission, - - /// This shared folder has too many files for leaving a copy. You can still - /// remove this user without leaving a copy. - DBSHARINGRemoveFolderMemberErrorTooManyFiles, - - /// (no description). - DBSHARINGRemoveFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRemoveFolderMemberErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// (no description). @note Ensure the `isMemberError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMemberError *memberError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// @param memberError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGSharedFolderMemberError *)memberError; - -/// -/// Initializes union class with tag state of "folder_owner". -/// -/// Description of the "folder_owner" tag state: The target user is the owner of -/// the shared folder. You can't remove this user until ownership has been -/// transferred to another member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOwner; - -/// -/// Initializes union class with tag state of "group_access". -/// -/// Description of the "group_access" tag state: The target user has access to -/// the shared folder via a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAccess; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: This shared folder has too -/// many files for leaving a copy. You can still remove this user without -/// leaving a copy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves whether the union's current tag state has value "folder_owner". -/// -/// @return Whether the union's current tag state has value "folder_owner". -/// -- (BOOL)isFolderOwner; - -/// -/// Retrieves whether the union's current tag state has value "group_access". -/// -/// @return Whether the union's current tag state has value "group_access". -/// -- (BOOL)isGroupAccess; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRemoveFolderMemberError` union. -/// -@interface DBSHARINGRemoveFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFolderMemberError` object. -/// -+ (DBSHARINGRemoveFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveMemberJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveMemberJobStatus.h deleted file mode 100644 index 0420fe95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRemoveMemberJobStatus.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGRemoveMemberJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveMemberJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveMemberJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRemoveMemberJobStatusTag` enum type represents the possible -/// tag states with which the `DBSHARINGRemoveMemberJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRemoveMemberJobStatusTag) { - /// The asynchronous job is still in progress. - DBSHARINGRemoveMemberJobStatusInProgress, - - /// Removing the folder member has finished. The value is information about - /// whether the member has another form of access. - DBSHARINGRemoveMemberJobStatusComplete, - - /// (no description). - DBSHARINGRemoveMemberJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRemoveMemberJobStatusTag tag; - -/// Removing the folder member has finished. The value is information about -/// whether the member has another form of access. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *complete; - -/// (no description). @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGRemoveFolderMemberError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: Removing the folder member has -/// finished. The value is information about whether the member has another form -/// of access. -/// -/// @param complete Removing the folder member has finished. The value is -/// information about whether the member has another form of access. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBSHARINGMemberAccessLevelResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// @param failed (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBSHARINGRemoveFolderMemberError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRemoveMemberJobStatus` union. -/// -@interface DBSHARINGRemoveMemberJobStatusSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveMemberJobStatus` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveMemberJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveMemberJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveMemberJobStatus *)instance; - -/// -/// Deserializes `DBSHARINGRemoveMemberJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveMemberJobStatus` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveMemberJobStatus` object. -/// -+ (DBSHARINGRemoveMemberJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRequestedLinkAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRequestedLinkAccessLevel.h deleted file mode 100644 index a0e1fdce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRequestedLinkAccessLevel.h +++ /dev/null @@ -1,180 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRequestedLinkAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RequestedLinkAccessLevel` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRequestedLinkAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRequestedLinkAccessLevelTag` enum type represents the possible -/// tag states with which the `DBSHARINGRequestedLinkAccessLevel` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRequestedLinkAccessLevelTag) { - /// Users who use the link can view and comment on the content. - DBSHARINGRequestedLinkAccessLevelViewer, - - /// Users who use the link can edit, view and comment on the content. Note - /// not all file types support edit links yet. - DBSHARINGRequestedLinkAccessLevelEditor, - - /// Request for the maximum access level you can set the link to. - DBSHARINGRequestedLinkAccessLevelMax, - - /// Request for the default access level the user has set. - DBSHARINGRequestedLinkAccessLevelDefault_, - - /// (no description). - DBSHARINGRequestedLinkAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRequestedLinkAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "viewer". -/// -/// Description of the "viewer" tag state: Users who use the link can view and -/// comment on the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "editor". -/// -/// Description of the "editor" tag state: Users who use the link can edit, view -/// and comment on the content. Note not all file types support edit links yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "max". -/// -/// Description of the "max" tag state: Request for the maximum access level you -/// can set the link to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMax; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: Request for the default access level -/// the user has set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "max". -/// -/// @return Whether the union's current tag state has value "max". -/// -- (BOOL)isMax; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRequestedLinkAccessLevel` union. -/// -@interface DBSHARINGRequestedLinkAccessLevelSerializer : NSObject - -/// -/// Serializes `DBSHARINGRequestedLinkAccessLevel` instances. -/// -/// @param instance An instance of the `DBSHARINGRequestedLinkAccessLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRequestedLinkAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRequestedLinkAccessLevel *)instance; - -/// -/// Deserializes `DBSHARINGRequestedLinkAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRequestedLinkAccessLevel` API object. -/// -/// @return An instantiation of the `DBSHARINGRequestedLinkAccessLevel` object. -/// -+ (DBSHARINGRequestedLinkAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRequestedVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRequestedVisibility.h deleted file mode 100644 index d9122302..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRequestedVisibility.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRequestedVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RequestedVisibility` union. -/// -/// The access permission that can be requested by the caller for the shared -/// link. Note that the final resolved visibility of the shared link takes into -/// account other aspects, such as team and shared folder settings. Check the -/// ResolvedVisibility for more info on the possible resolved visibility values -/// of shared links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRequestedVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRequestedVisibilityTag` enum type represents the possible tag -/// states with which the `DBSHARINGRequestedVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRequestedVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGRequestedVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGRequestedVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGRequestedVisibilityPassword, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRequestedVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRequestedVisibility` union. -/// -@interface DBSHARINGRequestedVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGRequestedVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGRequestedVisibility` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRequestedVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRequestedVisibility *)instance; - -/// -/// Deserializes `DBSHARINGRequestedVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRequestedVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGRequestedVisibility` object. -/// -+ (DBSHARINGRequestedVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGResolvedVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGResolvedVisibility.h deleted file mode 100644 index fd9eec27..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGResolvedVisibility.h +++ /dev/null @@ -1,256 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGResolvedVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResolvedVisibility` union. -/// -/// The actual access permissions values of shared links after taking into -/// account user preferences and the team and shared folder settings. Check the -/// RequestedVisibility for more info on the possible visibility values that can -/// be set by the shared link's owner. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGResolvedVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGResolvedVisibilityTag` enum type represents the possible tag -/// states with which the `DBSHARINGResolvedVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGResolvedVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGResolvedVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGResolvedVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGResolvedVisibilityPassword, - - /// Only members of the same team who have the link-specific password can - /// access the link. Login is required. - DBSHARINGResolvedVisibilityTeamAndPassword, - - /// Only members of the shared folder containing the linked file can access - /// the link. Login is required. - DBSHARINGResolvedVisibilitySharedFolderOnly, - - /// The link merely points the user to the content, and does not grant any - /// additional rights. Existing members of the content who use this link can - /// only access the content with their pre-existing access rights. Either on - /// the file directly, or inherited from a parent folder. - DBSHARINGResolvedVisibilityNoOne, - - /// Only the current user can view this link. - DBSHARINGResolvedVisibilityOnlyYou, - - /// (no description). - DBSHARINGResolvedVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGResolvedVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "team_and_password". -/// -/// Description of the "team_and_password" tag state: Only members of the same -/// team who have the link-specific password can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndPassword; - -/// -/// Initializes union class with tag state of "shared_folder_only". -/// -/// Description of the "shared_folder_only" tag state: Only members of the -/// shared folder containing the linked file can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderOnly; - -/// -/// Initializes union class with tag state of "no_one". -/// -/// Description of the "no_one" tag state: The link merely points the user to -/// the content, and does not grant any additional rights. Existing members of -/// the content who use this link can only access the content with their -/// pre-existing access rights. Either on the file directly, or inherited from a -/// parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "only_you". -/// -/// Description of the "only_you" tag state: Only the current user can view this -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyYou; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_password". -/// -/// @return Whether the union's current tag state has value "team_and_password". -/// -- (BOOL)isTeamAndPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_only". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_only". -/// -- (BOOL)isSharedFolderOnly; - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "only_you". -/// -/// @return Whether the union's current tag state has value "only_you". -/// -- (BOOL)isOnlyYou; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGResolvedVisibility` union. -/// -@interface DBSHARINGResolvedVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGResolvedVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGResolvedVisibility` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGResolvedVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGResolvedVisibility *)instance; - -/// -/// Deserializes `DBSHARINGResolvedVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGResolvedVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGResolvedVisibility` object. -/// -+ (DBSHARINGResolvedVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRevokeSharedLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRevokeSharedLinkArg.h deleted file mode 100644 index 2e52c936..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRevokeSharedLinkArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRevokeSharedLinkArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeSharedLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRevokeSharedLinkArg : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeSharedLinkArg` struct. -/// -@interface DBSHARINGRevokeSharedLinkArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRevokeSharedLinkArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRevokeSharedLinkArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRevokeSharedLinkArg *)instance; - -/// -/// Deserializes `DBSHARINGRevokeSharedLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRevokeSharedLinkArg` object. -/// -+ (DBSHARINGRevokeSharedLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRevokeSharedLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRevokeSharedLinkError.h deleted file mode 100644 index fc8749e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRevokeSharedLinkError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRevokeSharedLinkError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeSharedLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRevokeSharedLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRevokeSharedLinkErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGRevokeSharedLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRevokeSharedLinkErrorTag) { - /// The shared link wasn't found. - DBSHARINGRevokeSharedLinkErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGRevokeSharedLinkErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGRevokeSharedLinkErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGRevokeSharedLinkErrorOther, - - /// Shared link is malformed. - DBSHARINGRevokeSharedLinkErrorSharedLinkMalformed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRevokeSharedLinkErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "shared_link_malformed". -/// -/// Description of the "shared_link_malformed" tag state: Shared link is -/// malformed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkMalformed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_malformed". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_malformed". -/// -- (BOOL)isSharedLinkMalformed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRevokeSharedLinkError` union. -/// -@interface DBSHARINGRevokeSharedLinkErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRevokeSharedLinkError` instances. -/// -/// @param instance An instance of the `DBSHARINGRevokeSharedLinkError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRevokeSharedLinkError *)instance; - -/// -/// Deserializes `DBSHARINGRevokeSharedLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkError` API object. -/// -/// @return An instantiation of the `DBSHARINGRevokeSharedLinkError` object. -/// -+ (DBSHARINGRevokeSharedLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRouteObjects.h deleted file mode 100644 index 4999af3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGRouteObjects.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Sharing namespace. Each route in the Sharing -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBSHARINGRouteObjects : NSObject - -/// Accessor method for the addFileMember route object. -+ (DBRoute *)DBSHARINGAddFileMember; - -/// Accessor method for the addFolderMember route object. -+ (DBRoute *)DBSHARINGAddFolderMember; - -/// Accessor method for the checkJobStatus route object. -+ (DBRoute *)DBSHARINGCheckJobStatus; - -/// Accessor method for the checkRemoveMemberJobStatus route object. -+ (DBRoute *)DBSHARINGCheckRemoveMemberJobStatus; - -/// Accessor method for the checkShareJobStatus route object. -+ (DBRoute *)DBSHARINGCheckShareJobStatus; - -/// Accessor method for the createSharedLink route object. -+ (DBRoute *)DBSHARINGCreateSharedLink; - -/// Accessor method for the createSharedLinkWithSettings route object. -+ (DBRoute *)DBSHARINGCreateSharedLinkWithSettings; - -/// Accessor method for the getFileMetadata route object. -+ (DBRoute *)DBSHARINGGetFileMetadata; - -/// Accessor method for the getFileMetadataBatch route object. -+ (DBRoute *)DBSHARINGGetFileMetadataBatch; - -/// Accessor method for the getFolderMetadata route object. -+ (DBRoute *)DBSHARINGGetFolderMetadata; - -/// Accessor method for the getSharedLinkFile route object. -+ (DBRoute *)DBSHARINGGetSharedLinkFile; - -/// Accessor method for the getSharedLinkMetadata route object. -+ (DBRoute *)DBSHARINGGetSharedLinkMetadata; - -/// Accessor method for the getSharedLinks route object. -+ (DBRoute *)DBSHARINGGetSharedLinks; - -/// Accessor method for the listFileMembers route object. -+ (DBRoute *)DBSHARINGListFileMembers; - -/// Accessor method for the listFileMembersBatch route object. -+ (DBRoute *)DBSHARINGListFileMembersBatch; - -/// Accessor method for the listFileMembersContinue route object. -+ (DBRoute *)DBSHARINGListFileMembersContinue; - -/// Accessor method for the listFolderMembers route object. -+ (DBRoute *)DBSHARINGListFolderMembers; - -/// Accessor method for the listFolderMembersContinue route object. -+ (DBRoute *)DBSHARINGListFolderMembersContinue; - -/// Accessor method for the listFolders route object. -+ (DBRoute *)DBSHARINGListFolders; - -/// Accessor method for the listFoldersContinue route object. -+ (DBRoute *)DBSHARINGListFoldersContinue; - -/// Accessor method for the listMountableFolders route object. -+ (DBRoute *)DBSHARINGListMountableFolders; - -/// Accessor method for the listMountableFoldersContinue route object. -+ (DBRoute *)DBSHARINGListMountableFoldersContinue; - -/// Accessor method for the listReceivedFiles route object. -+ (DBRoute *)DBSHARINGListReceivedFiles; - -/// Accessor method for the listReceivedFilesContinue route object. -+ (DBRoute *)DBSHARINGListReceivedFilesContinue; - -/// Accessor method for the listSharedLinks route object. -+ (DBRoute *)DBSHARINGListSharedLinks; - -/// Accessor method for the modifySharedLinkSettings route object. -+ (DBRoute *)DBSHARINGModifySharedLinkSettings; - -/// Accessor method for the mountFolder route object. -+ (DBRoute *)DBSHARINGMountFolder; - -/// Accessor method for the relinquishFileMembership route object. -+ (DBRoute *)DBSHARINGRelinquishFileMembership; - -/// Accessor method for the relinquishFolderMembership route object. -+ (DBRoute *)DBSHARINGRelinquishFolderMembership; - -/// Accessor method for the removeFileMember route object. -+ (DBRoute *)DBSHARINGRemoveFileMember; - -/// Accessor method for the removeFileMember2 route object. -+ (DBRoute *)DBSHARINGRemoveFileMember2; - -/// Accessor method for the removeFolderMember route object. -+ (DBRoute *)DBSHARINGRemoveFolderMember; - -/// Accessor method for the revokeSharedLink route object. -+ (DBRoute *)DBSHARINGRevokeSharedLink; - -/// Accessor method for the setAccessInheritance route object. -+ (DBRoute *)DBSHARINGSetAccessInheritance; - -/// Accessor method for the shareFolder route object. -+ (DBRoute *)DBSHARINGShareFolder; - -/// Accessor method for the transferFolder route object. -+ (DBRoute *)DBSHARINGTransferFolder; - -/// Accessor method for the unmountFolder route object. -+ (DBRoute *)DBSHARINGUnmountFolder; - -/// Accessor method for the unshareFile route object. -+ (DBRoute *)DBSHARINGUnshareFile; - -/// Accessor method for the unshareFolder route object. -+ (DBRoute *)DBSHARINGUnshareFolder; - -/// Accessor method for the updateFileMember route object. -+ (DBRoute *)DBSHARINGUpdateFileMember; - -/// Accessor method for the updateFolderMember route object. -+ (DBRoute *)DBSHARINGUpdateFolderMember; - -/// Accessor method for the updateFolderPolicy route object. -+ (DBRoute *)DBSHARINGUpdateFolderPolicy; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSetAccessInheritanceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSetAccessInheritanceArg.h deleted file mode 100644 index 6f127b37..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSetAccessInheritanceArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGSetAccessInheritanceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetAccessInheritanceArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSetAccessInheritanceArg : NSObject - -#pragma mark - Instance fields - -/// The access inheritance settings for the folder. -@property (nonatomic, readonly) DBSHARINGAccessInheritance *accessInheritance; - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param accessInheritance The access inheritance settings for the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetAccessInheritanceArg` struct. -/// -@interface DBSHARINGSetAccessInheritanceArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGSetAccessInheritanceArg` instances. -/// -/// @param instance An instance of the `DBSHARINGSetAccessInheritanceArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSetAccessInheritanceArg *)instance; - -/// -/// Deserializes `DBSHARINGSetAccessInheritanceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceArg` API object. -/// -/// @return An instantiation of the `DBSHARINGSetAccessInheritanceArg` object. -/// -+ (DBSHARINGSetAccessInheritanceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSetAccessInheritanceError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSetAccessInheritanceError.h deleted file mode 100644 index 3ebc6a2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSetAccessInheritanceError.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSetAccessInheritanceError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetAccessInheritanceError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSetAccessInheritanceError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSetAccessInheritanceErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGSetAccessInheritanceError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSetAccessInheritanceErrorTag) { - /// Unable to access shared folder. - DBSHARINGSetAccessInheritanceErrorAccessError, - - /// The current user does not have permission to perform this action. - DBSHARINGSetAccessInheritanceErrorNoPermission, - - /// (no description). - DBSHARINGSetAccessInheritanceErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSetAccessInheritanceErrorTag tag; - -/// Unable to access shared folder. @note Ensure the `isAccessError` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: Unable to access shared folder. -/// -/// @param accessError Unable to access shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSetAccessInheritanceError` union. -/// -@interface DBSHARINGSetAccessInheritanceErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSetAccessInheritanceError` instances. -/// -/// @param instance An instance of the `DBSHARINGSetAccessInheritanceError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSetAccessInheritanceError *)instance; - -/// -/// Deserializes `DBSHARINGSetAccessInheritanceError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceError` API object. -/// -/// @return An instantiation of the `DBSHARINGSetAccessInheritanceError` object. -/// -+ (DBSHARINGSetAccessInheritanceError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderArg.h deleted file mode 100644 index 588e084b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderArg.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGShareFolderArgBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGFolderAction; -@class DBSHARINGLinkSettings; -@class DBSHARINGMemberPolicy; -@class DBSHARINGShareFolderArg; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderArg : DBSHARINGShareFolderArgBase - -#pragma mark - Instance fields - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -/// Settings on the link for this folder. -@property (nonatomic, readonly, nullable) DBSHARINGLinkSettings *linkSettings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param forceAsync Whether to force the share to happen asynchronously. -/// @param memberPolicy Who can be a member of this shared folder. Only -/// applicable if the current user is on a team. -/// @param sharedLinkPolicy The policy to apply to shared links created for -/// content inside this shared folder. The current user must be on a team to -/// set this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// @param accessInheritance The access inheritance settings for the folder. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// @param linkSettings Settings on the link for this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - forceAsync:(nullable NSNumber *)forceAsync - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance - actions:(nullable NSArray *)actions - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShareFolderArg` struct. -/// -@interface DBSHARINGShareFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderArg` object. -/// -+ (DBSHARINGShareFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderArgBase.h deleted file mode 100644 index 3fd73e82..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderArgBase.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGMemberPolicy; -@class DBSHARINGShareFolderArgBase; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderArgBase : NSObject - -#pragma mark - Instance fields - -/// Who can add and remove members of this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *aclUpdatePolicy; - -/// Whether to force the share to happen asynchronously. -@property (nonatomic, readonly) NSNumber *forceAsync; - -/// Who can be a member of this shared folder. Only applicable if the current -/// user is on a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *memberPolicy; - -/// The path or the file id to the folder to share. If it does not exist, then a -/// new one is created. -@property (nonatomic, readonly, copy) NSString *path; - -/// The policy to apply to shared links created for content inside this shared -/// folder. The current user must be on a team to set this policy to `members` -/// in `DBSHARINGSharedLinkPolicy`. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *sharedLinkPolicy; - -/// Who can enable/disable viewer info for this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *viewerInfoPolicy; - -/// The access inheritance settings for the folder. -@property (nonatomic, readonly) DBSHARINGAccessInheritance *accessInheritance; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param forceAsync Whether to force the share to happen asynchronously. -/// @param memberPolicy Who can be a member of this shared folder. Only -/// applicable if the current user is on a team. -/// @param sharedLinkPolicy The policy to apply to shared links created for -/// content inside this shared folder. The current user must be on a team to -/// set this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// @param accessInheritance The access inheritance settings for the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - forceAsync:(nullable NSNumber *)forceAsync - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShareFolderArgBase` struct. -/// -@interface DBSHARINGShareFolderArgBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderArgBase` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderArgBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderArgBase *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArgBase` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderArgBase` object. -/// -+ (DBSHARINGShareFolderArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderError.h deleted file mode 100644 index 52c98611..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderError.h +++ /dev/null @@ -1,221 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderError; -@class DBSHARINGSharePathError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderErrorTag) { - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGShareFolderErrorEmailUnverified, - - /// `path` in `DBSHARINGShareFolderArg` is invalid. - DBSHARINGShareFolderErrorBadPath, - - /// Team policy is more restrictive than `memberPolicy` in - /// `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorTeamPolicyDisallowsMemberPolicy, - - /// The current user's account is not allowed to select the specified - /// `sharedLinkPolicy` in `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorDisallowedSharedLinkPolicy, - - /// (no description). - DBSHARINGShareFolderErrorOther, - - /// The current user does not have permission to perform this action. - DBSHARINGShareFolderErrorNoPermission, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderErrorTag tag; - -/// `path` in `DBSHARINGShareFolderArg` is invalid. @note Ensure the `isBadPath` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGSharePathError *badPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "bad_path". -/// -/// Description of the "bad_path" tag state: `path` in `DBSHARINGShareFolderArg` -/// is invalid. -/// -/// @param badPath `path` in `DBSHARINGShareFolderArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadPath:(DBSHARINGSharePathError *)badPath; - -/// -/// Initializes union class with tag state of -/// "team_policy_disallows_member_policy". -/// -/// Description of the "team_policy_disallows_member_policy" tag state: Team -/// policy is more restrictive than `memberPolicy` in `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicyDisallowsMemberPolicy; - -/// -/// Initializes union class with tag state of "disallowed_shared_link_policy". -/// -/// Description of the "disallowed_shared_link_policy" tag state: The current -/// user's account is not allowed to select the specified `sharedLinkPolicy` in -/// `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedSharedLinkPolicy; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "bad_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `badPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "bad_path". -/// -- (BOOL)isBadPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -- (BOOL)isTeamPolicyDisallowsMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -- (BOOL)isDisallowedSharedLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderError` union. -/// -@interface DBSHARINGShareFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderError *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderError` object. -/// -+ (DBSHARINGShareFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderErrorBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderErrorBase.h deleted file mode 100644 index 6f490789..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderErrorBase.h +++ /dev/null @@ -1,202 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderErrorBase; -@class DBSHARINGSharePathError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderErrorBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderErrorBase : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderErrorBaseTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderErrorBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderErrorBaseTag) { - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGShareFolderErrorBaseEmailUnverified, - - /// `path` in `DBSHARINGShareFolderArg` is invalid. - DBSHARINGShareFolderErrorBaseBadPath, - - /// Team policy is more restrictive than `memberPolicy` in - /// `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorBaseTeamPolicyDisallowsMemberPolicy, - - /// The current user's account is not allowed to select the specified - /// `sharedLinkPolicy` in `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorBaseDisallowedSharedLinkPolicy, - - /// (no description). - DBSHARINGShareFolderErrorBaseOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderErrorBaseTag tag; - -/// `path` in `DBSHARINGShareFolderArg` is invalid. @note Ensure the `isBadPath` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGSharePathError *badPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "bad_path". -/// -/// Description of the "bad_path" tag state: `path` in `DBSHARINGShareFolderArg` -/// is invalid. -/// -/// @param badPath `path` in `DBSHARINGShareFolderArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadPath:(DBSHARINGSharePathError *)badPath; - -/// -/// Initializes union class with tag state of -/// "team_policy_disallows_member_policy". -/// -/// Description of the "team_policy_disallows_member_policy" tag state: Team -/// policy is more restrictive than `memberPolicy` in `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicyDisallowsMemberPolicy; - -/// -/// Initializes union class with tag state of "disallowed_shared_link_policy". -/// -/// Description of the "disallowed_shared_link_policy" tag state: The current -/// user's account is not allowed to select the specified `sharedLinkPolicy` in -/// `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedSharedLinkPolicy; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "bad_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `badPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "bad_path". -/// -- (BOOL)isBadPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -- (BOOL)isTeamPolicyDisallowsMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -- (BOOL)isDisallowedSharedLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderErrorBase` union. -/// -@interface DBSHARINGShareFolderErrorBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderErrorBase` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderErrorBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderErrorBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderErrorBase *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderErrorBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderErrorBase` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderErrorBase` object. -/// -+ (DBSHARINGShareFolderErrorBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderJobStatus.h deleted file mode 100644 index 63e3b772..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderJobStatus.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderError; -@class DBSHARINGShareFolderJobStatus; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderJobStatusTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderJobStatusTag) { - /// The asynchronous job is still in progress. - DBSHARINGShareFolderJobStatusInProgress, - - /// The share job has finished. The value is the metadata for the folder. - DBSHARINGShareFolderJobStatusComplete, - - /// (no description). - DBSHARINGShareFolderJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderJobStatusTag tag; - -/// The share job has finished. The value is the metadata for the folder. @note -/// Ensure the `isComplete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *complete; - -/// (no description). @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGShareFolderError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The share job has finished. The -/// value is the metadata for the folder. -/// -/// @param complete The share job has finished. The value is the metadata for -/// the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBSHARINGSharedFolderMetadata *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// @param failed (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBSHARINGShareFolderError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderJobStatus` union. -/// -@interface DBSHARINGShareFolderJobStatusSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderJobStatus` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderJobStatus *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderJobStatus` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderJobStatus` object. -/// -+ (DBSHARINGShareFolderJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderLaunch.h deleted file mode 100644 index c7d916e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGShareFolderLaunch.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderLaunch; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderLaunch` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderLaunchTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBSHARINGShareFolderLaunchAsyncJobId, - - /// (no description). - DBSHARINGShareFolderLaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBSHARINGSharedFolderMetadata *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderLaunch` union. -/// -@interface DBSHARINGShareFolderLaunchSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderLaunch` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderLaunch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderLaunch *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderLaunch` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderLaunch` object. -/// -+ (DBSHARINGShareFolderLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharePathError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharePathError.h deleted file mode 100644 index 0720d050..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharePathError.h +++ /dev/null @@ -1,443 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharePathError; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharePathError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharePathError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharePathErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharePathError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharePathErrorTag) { - /// A file is at the specified path. - DBSHARINGSharePathErrorIsFile, - - /// We do not support sharing a folder inside a shared folder. - DBSHARINGSharePathErrorInsideSharedFolder, - - /// We do not support shared folders that contain shared folders. - DBSHARINGSharePathErrorContainsSharedFolder, - - /// We do not support shared folders that contain app folders. - DBSHARINGSharePathErrorContainsAppFolder, - - /// We do not support shared folders that contain team folders. - DBSHARINGSharePathErrorContainsTeamFolder, - - /// We do not support sharing an app folder. - DBSHARINGSharePathErrorIsAppFolder, - - /// We do not support sharing a folder inside an app folder. - DBSHARINGSharePathErrorInsideAppFolder, - - /// A public folder can't be shared this way. Use a public link instead. - DBSHARINGSharePathErrorIsPublicFolder, - - /// A folder inside a public folder can't be shared this way. Use a public - /// link instead. - DBSHARINGSharePathErrorInsidePublicFolder, - - /// Folder is already shared. Contains metadata about the existing shared - /// folder. - DBSHARINGSharePathErrorAlreadyShared, - - /// Path is not valid. - DBSHARINGSharePathErrorInvalidPath, - - /// We do not support sharing a Mac OS X package. - DBSHARINGSharePathErrorIsOsxPackage, - - /// We do not support sharing a folder inside a Mac OS X package. - DBSHARINGSharePathErrorInsideOsxPackage, - - /// We do not support sharing the Vault folder. - DBSHARINGSharePathErrorIsVault, - - /// We do not support sharing a folder inside a locked Vault. - DBSHARINGSharePathErrorIsVaultLocked, - - /// We do not support sharing the Family folder. - DBSHARINGSharePathErrorIsFamily, - - /// (no description). - DBSHARINGSharePathErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharePathErrorTag tag; - -/// Folder is already shared. Contains metadata about the existing shared -/// folder. @note Ensure the `isAlreadyShared` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *alreadyShared; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "is_file". -/// -/// Description of the "is_file" tag state: A file is at the specified path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFile; - -/// -/// Initializes union class with tag state of "inside_shared_folder". -/// -/// Description of the "inside_shared_folder" tag state: We do not support -/// sharing a folder inside a shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideSharedFolder; - -/// -/// Initializes union class with tag state of "contains_shared_folder". -/// -/// Description of the "contains_shared_folder" tag state: We do not support -/// shared folders that contain shared folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContainsSharedFolder; - -/// -/// Initializes union class with tag state of "contains_app_folder". -/// -/// Description of the "contains_app_folder" tag state: We do not support shared -/// folders that contain app folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContainsAppFolder; - -/// -/// Initializes union class with tag state of "contains_team_folder". -/// -/// Description of the "contains_team_folder" tag state: We do not support -/// shared folders that contain team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContainsTeamFolder; - -/// -/// Initializes union class with tag state of "is_app_folder". -/// -/// Description of the "is_app_folder" tag state: We do not support sharing an -/// app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsAppFolder; - -/// -/// Initializes union class with tag state of "inside_app_folder". -/// -/// Description of the "inside_app_folder" tag state: We do not support sharing -/// a folder inside an app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideAppFolder; - -/// -/// Initializes union class with tag state of "is_public_folder". -/// -/// Description of the "is_public_folder" tag state: A public folder can't be -/// shared this way. Use a public link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsPublicFolder; - -/// -/// Initializes union class with tag state of "inside_public_folder". -/// -/// Description of the "inside_public_folder" tag state: A folder inside a -/// public folder can't be shared this way. Use a public link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsidePublicFolder; - -/// -/// Initializes union class with tag state of "already_shared". -/// -/// Description of the "already_shared" tag state: Folder is already shared. -/// Contains metadata about the existing shared folder. -/// -/// @param alreadyShared Folder is already shared. Contains metadata about the -/// existing shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyShared:(DBSHARINGSharedFolderMetadata *)alreadyShared; - -/// -/// Initializes union class with tag state of "invalid_path". -/// -/// Description of the "invalid_path" tag state: Path is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidPath; - -/// -/// Initializes union class with tag state of "is_osx_package". -/// -/// Description of the "is_osx_package" tag state: We do not support sharing a -/// Mac OS X package. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsOsxPackage; - -/// -/// Initializes union class with tag state of "inside_osx_package". -/// -/// Description of the "inside_osx_package" tag state: We do not support sharing -/// a folder inside a Mac OS X package. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideOsxPackage; - -/// -/// Initializes union class with tag state of "is_vault". -/// -/// Description of the "is_vault" tag state: We do not support sharing the Vault -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsVault; - -/// -/// Initializes union class with tag state of "is_vault_locked". -/// -/// Description of the "is_vault_locked" tag state: We do not support sharing a -/// folder inside a locked Vault. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsVaultLocked; - -/// -/// Initializes union class with tag state of "is_family". -/// -/// Description of the "is_family" tag state: We do not support sharing the -/// Family folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFamily; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "is_file". -/// -/// @return Whether the union's current tag state has value "is_file". -/// -- (BOOL)isIsFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_shared_folder". -/// -- (BOOL)isInsideSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "contains_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "contains_shared_folder". -/// -- (BOOL)isContainsSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "contains_app_folder". -/// -/// @return Whether the union's current tag state has value -/// "contains_app_folder". -/// -- (BOOL)isContainsAppFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "contains_team_folder". -/// -/// @return Whether the union's current tag state has value -/// "contains_team_folder". -/// -- (BOOL)isContainsTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "is_app_folder". -/// -/// @return Whether the union's current tag state has value "is_app_folder". -/// -- (BOOL)isIsAppFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_app_folder". -/// -/// @return Whether the union's current tag state has value "inside_app_folder". -/// -- (BOOL)isInsideAppFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "is_public_folder". -/// -/// @return Whether the union's current tag state has value "is_public_folder". -/// -- (BOOL)isIsPublicFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_public_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_public_folder". -/// -- (BOOL)isInsidePublicFolder; - -/// -/// Retrieves whether the union's current tag state has value "already_shared". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `alreadyShared` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "already_shared". -/// -- (BOOL)isAlreadyShared; - -/// -/// Retrieves whether the union's current tag state has value "invalid_path". -/// -/// @return Whether the union's current tag state has value "invalid_path". -/// -- (BOOL)isInvalidPath; - -/// -/// Retrieves whether the union's current tag state has value "is_osx_package". -/// -/// @return Whether the union's current tag state has value "is_osx_package". -/// -- (BOOL)isIsOsxPackage; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_osx_package". -/// -/// @return Whether the union's current tag state has value -/// "inside_osx_package". -/// -- (BOOL)isInsideOsxPackage; - -/// -/// Retrieves whether the union's current tag state has value "is_vault". -/// -/// @return Whether the union's current tag state has value "is_vault". -/// -- (BOOL)isIsVault; - -/// -/// Retrieves whether the union's current tag state has value "is_vault_locked". -/// -/// @return Whether the union's current tag state has value "is_vault_locked". -/// -- (BOOL)isIsVaultLocked; - -/// -/// Retrieves whether the union's current tag state has value "is_family". -/// -/// @return Whether the union's current tag state has value "is_family". -/// -- (BOOL)isIsFamily; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharePathError` union. -/// -@interface DBSHARINGSharePathErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharePathError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharePathError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharePathError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharePathError *)instance; - -/// -/// Deserializes `DBSHARINGSharePathError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharePathError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharePathError` object. -/// -+ (DBSHARINGSharePathError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedContentLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedContentLinkMetadata.h deleted file mode 100644 index b07bd1e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedContentLinkMetadata.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedContentLinkMetadataBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAudienceExceptions; -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkPermission; -@class DBSHARINGSharedContentLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentLinkMetadata` struct. -/// -/// Metadata of a shared link for a file or folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedContentLinkMetadata : DBSHARINGSharedContentLinkMetadataBase - -#pragma mark - Instance fields - -/// The content inside this folder with link audience different than this -/// folder's. This is only returned when an endpoint that returns metadata for a -/// single shared folder is called, e.g. /get_folder_metadata. -@property (nonatomic, readonly, nullable) DBSHARINGAudienceExceptions *audienceExceptions; - -/// The URL of the link. -@property (nonatomic, readonly, copy) NSString *url; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param url The URL of the link. -/// @param accessLevel The access level on the link for this file. -/// @param audienceRestrictingSharedFolder The shared folder that prevents the -/// link audience for this link from being more restrictive. -/// @param expiry Whether the link has an expiry set on it. A link with an -/// expiry will have its audience changed to members when the expiry is -/// reached. -/// @param audienceExceptions The content inside this folder with link audience -/// different than this folder's. This is only returned when an endpoint that -/// returns metadata for a single shared folder is called, e.g. -/// /get_folder_metadata. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - url:(NSString *)url - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audienceRestrictingSharedFolder: - (nullable DBSHARINGAudienceRestrictingSharedFolder *)audienceRestrictingSharedFolder - expiry:(nullable NSDate *)expiry - audienceExceptions:(nullable DBSHARINGAudienceExceptions *)audienceExceptions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param url The URL of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - url:(NSString *)url; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentLinkMetadata` struct. -/// -@interface DBSHARINGSharedContentLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedContentLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedContentLinkMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedContentLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedContentLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedContentLinkMetadata` object. -/// -+ (DBSHARINGSharedContentLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedContentLinkMetadataBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedContentLinkMetadataBase.h deleted file mode 100644 index 9c479efc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedContentLinkMetadataBase.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkPermission; -@class DBSHARINGSharedContentLinkMetadataBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentLinkMetadataBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedContentLinkMetadataBase : NSObject - -#pragma mark - Instance fields - -/// The access level on the link for this file. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessLevel; - -/// The audience options that are available for the content. Some audience -/// options may be unavailable. For example, team_only may be unavailable if the -/// content is not owned by a user on a team. The 'default' audience option is -/// always available if the user can modify link settings. -@property (nonatomic, readonly) NSArray *audienceOptions; - -/// The shared folder that prevents the link audience for this link from being -/// more restrictive. -@property (nonatomic, readonly, nullable) DBSHARINGAudienceRestrictingSharedFolder *audienceRestrictingSharedFolder; - -/// The current audience of the link. -@property (nonatomic, readonly) DBSHARINGLinkAudience *currentAudience; - -/// Whether the link has an expiry set on it. A link with an expiry will have -/// its audience changed to members when the expiry is reached. -@property (nonatomic, readonly, nullable) NSDate *expiry; - -/// A list of permissions for actions you can perform on the link. -@property (nonatomic, readonly) NSArray *linkPermissions; - -/// Whether the link is protected by a password. -@property (nonatomic, readonly) NSNumber *passwordProtected; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param accessLevel The access level on the link for this file. -/// @param audienceRestrictingSharedFolder The shared folder that prevents the -/// link audience for this link from being more restrictive. -/// @param expiry Whether the link has an expiry set on it. A link with an -/// expiry will have its audience changed to members when the expiry is -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audienceRestrictingSharedFolder: - (nullable DBSHARINGAudienceRestrictingSharedFolder *)audienceRestrictingSharedFolder - expiry:(nullable NSDate *)expiry; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentLinkMetadataBase` struct. -/// -@interface DBSHARINGSharedContentLinkMetadataBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedContentLinkMetadataBase` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedContentLinkMetadataBase` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadataBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedContentLinkMetadataBase *)instance; - -/// -/// Deserializes `DBSHARINGSharedContentLinkMetadataBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadataBase` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedContentLinkMetadataBase` -/// object. -/// -+ (DBSHARINGSharedContentLinkMetadataBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFileMembers.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFileMembers.h deleted file mode 100644 index e967185b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFileMembers.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGSharedFileMembers; -@class DBSHARINGUserFileMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFileMembers` struct. -/// -/// Shared file user, group, and invitee membership. Used for the results of -/// `listFileMembers` and `listFileMembersContinue`, and used as part of the -/// results for `listFileMembersBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFileMembers : NSObject - -#pragma mark - Instance fields - -/// The list of user members of the shared file. -@property (nonatomic, readonly) NSArray *users; - -/// The list of group members of the shared file. -@property (nonatomic, readonly) NSArray *groups; - -/// The list of invited members of a file, but have not logged in and claimed -/// this. -@property (nonatomic, readonly) NSArray *invitees; - -/// Present if there are additional shared file members that have not been -/// returned yet. Pass the cursor into `listFileMembersContinue` to list -/// additional members. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users The list of user members of the shared file. -/// @param groups The list of group members of the shared file. -/// @param invitees The list of invited members of a file, but have not logged -/// in and claimed this. -/// @param cursor Present if there are additional shared file members that have -/// not been returned yet. Pass the cursor into `listFileMembersContinue` to -/// list additional members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param users The list of user members of the shared file. -/// @param groups The list of group members of the shared file. -/// @param invitees The list of invited members of a file, but have not logged -/// in and claimed this. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFileMembers` struct. -/// -@interface DBSHARINGSharedFileMembersSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFileMembers` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFileMembers` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMembers` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFileMembers *)instance; - -/// -/// Deserializes `DBSHARINGSharedFileMembers` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMembers` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFileMembers` object. -/// -+ (DBSHARINGSharedFileMembers *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFileMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFileMetadata.h deleted file mode 100644 index ce8f6b07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFileMetadata.h +++ /dev/null @@ -1,196 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGFilePermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFileMetadata; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFileMetadata` struct. -/// -/// Properties of the shared file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFileMetadata : NSObject - -#pragma mark - Instance fields - -/// The current user's access level for this shared file. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessType; - -/// The ID of the file. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The expected metadata of the link associated for the file when it is first -/// shared. Absent if the link already exists. This is for an unreleased feature -/// so it may not be returned yet. -@property (nonatomic, readonly, nullable) DBSHARINGExpectedSharedContentLinkMetadata *expectedLinkMetadata; - -/// The metadata of the link associated for the file. This is for an unreleased -/// feature so it may not be returned yet. -@property (nonatomic, readonly, nullable) DBSHARINGSharedContentLinkMetadata *linkMetadata; - -/// The name of this file. -@property (nonatomic, readonly, copy) NSString *name; - -/// The display names of the users that own the file. If the file is part of a -/// team folder, the display names of the team admins are also included. Absent -/// if the owner display names cannot be fetched. -@property (nonatomic, readonly, nullable) NSArray *ownerDisplayNames; - -/// The team that owns the file. This field is not present if the file is not -/// owned by a team. -@property (nonatomic, readonly, nullable) DBUSERSTeam *ownerTeam; - -/// The ID of the parent shared folder. This field is present only if the file -/// is contained within a shared folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// The cased path to be used for display purposes only. In rare instances the -/// casing will not correctly match the user's filesystem, but this behavior -/// will match the path provided in the Core API v1. Absent for unmounted files. -@property (nonatomic, readonly, copy, nullable) NSString *pathDisplay; - -/// The lower-case full path of this file. Absent for unmounted files. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// The sharing permissions that requesting user has on this file. This -/// corresponds to the entries given in `actions` in -/// `DBSHARINGGetFileMetadataBatchArg` or `actions` in -/// `DBSHARINGGetFileMetadataArg`. -@property (nonatomic, readonly, nullable) NSArray *permissions; - -/// Policies governing this shared file. -@property (nonatomic, readonly) DBSHARINGFolderPolicy *policy; - -/// URL for displaying a web preview of the shared file. -@property (nonatomic, readonly, copy) NSString *previewUrl; - -/// Timestamp indicating when the current user was invited to this shared file. -/// If the user was not invited to the shared file, the timestamp will indicate -/// when the user was invited to the parent shared folder. This value may be -/// absent. -@property (nonatomic, readonly, nullable) NSDate *timeInvited; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file. -/// @param name The name of this file. -/// @param policy Policies governing this shared file. -/// @param previewUrl URL for displaying a web preview of the shared file. -/// @param accessType The current user's access level for this shared file. -/// @param expectedLinkMetadata The expected metadata of the link associated for -/// the file when it is first shared. Absent if the link already exists. This is -/// for an unreleased feature so it may not be returned yet. -/// @param linkMetadata The metadata of the link associated for the file. This -/// is for an unreleased feature so it may not be returned yet. -/// @param ownerDisplayNames The display names of the users that own the file. -/// If the file is part of a team folder, the display names of the team admins -/// are also included. Absent if the owner display names cannot be fetched. -/// @param ownerTeam The team that owns the file. This field is not present if -/// the file is not owned by a team. -/// @param parentSharedFolderId The ID of the parent shared folder. This field -/// is present only if the file is contained within a shared folder. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1. Absent -/// for unmounted files. -/// @param pathLower The lower-case full path of this file. Absent for unmounted -/// files. -/// @param permissions The sharing permissions that requesting user has on this -/// file. This corresponds to the entries given in `actions` in -/// `DBSHARINGGetFileMetadataBatchArg` or `actions` in -/// `DBSHARINGGetFileMetadataArg`. -/// @param timeInvited Timestamp indicating when the current user was invited to -/// this shared file. If the user was not invited to the shared file, the -/// timestamp will indicate when the user was invited to the parent shared -/// folder. This value may be absent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl - accessType:(nullable DBSHARINGAccessLevel *)accessType - expectedLinkMetadata:(nullable DBSHARINGExpectedSharedContentLinkMetadata *)expectedLinkMetadata - linkMetadata:(nullable DBSHARINGSharedContentLinkMetadata *)linkMetadata - ownerDisplayNames:(nullable NSArray *)ownerDisplayNames - ownerTeam:(nullable DBUSERSTeam *)ownerTeam - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - pathDisplay:(nullable NSString *)pathDisplay - pathLower:(nullable NSString *)pathLower - permissions:(nullable NSArray *)permissions - timeInvited:(nullable NSDate *)timeInvited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The ID of the file. -/// @param name The name of this file. -/// @param policy Policies governing this shared file. -/// @param previewUrl URL for displaying a web preview of the shared file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFileMetadata` struct. -/// -@interface DBSHARINGSharedFileMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFileMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFileMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFileMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedFileMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFileMetadata` object. -/// -+ (DBSHARINGSharedFileMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderAccessError.h deleted file mode 100644 index 7892a865..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderAccessError.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderAccessError` union. -/// -/// There is an error accessing the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedFolderAccessErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharedFolderAccessError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedFolderAccessErrorTag) { - /// This shared folder ID is invalid. - DBSHARINGSharedFolderAccessErrorInvalidId, - - /// The user is not a member of the shared folder thus cannot access it. - DBSHARINGSharedFolderAccessErrorNotAMember, - - /// The user does not exist or their account is disabled. - DBSHARINGSharedFolderAccessErrorInvalidMember, - - /// Never set. - DBSHARINGSharedFolderAccessErrorEmailUnverified, - - /// The shared folder is unmounted. - DBSHARINGSharedFolderAccessErrorUnmounted, - - /// (no description). - DBSHARINGSharedFolderAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_id". -/// -/// Description of the "invalid_id" tag state: This shared folder ID is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidId; - -/// -/// Initializes union class with tag state of "not_a_member". -/// -/// Description of the "not_a_member" tag state: The user is not a member of the -/// shared folder thus cannot access it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAMember; - -/// -/// Initializes union class with tag state of "invalid_member". -/// -/// Description of the "invalid_member" tag state: The user does not exist or -/// their account is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMember; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: Never set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "unmounted". -/// -/// Description of the "unmounted" tag state: The shared folder is unmounted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnmounted; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_id". -/// -/// @return Whether the union's current tag state has value "invalid_id". -/// -- (BOOL)isInvalidId; - -/// -/// Retrieves whether the union's current tag state has value "not_a_member". -/// -/// @return Whether the union's current tag state has value "not_a_member". -/// -- (BOOL)isNotAMember; - -/// -/// Retrieves whether the union's current tag state has value "invalid_member". -/// -/// @return Whether the union's current tag state has value "invalid_member". -/// -- (BOOL)isInvalidMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "unmounted". -/// -/// @return Whether the union's current tag state has value "unmounted". -/// -- (BOOL)isUnmounted; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedFolderAccessError` union. -/// -@interface DBSHARINGSharedFolderAccessErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderAccessError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderAccessError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderAccessError *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderAccessError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderAccessError` object. -/// -+ (DBSHARINGSharedFolderAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMemberError.h deleted file mode 100644 index 6613cd68..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMemberError.h +++ /dev/null @@ -1,175 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGSharedFolderMemberError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedFolderMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharedFolderMemberError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedFolderMemberErrorTag) { - /// The target dropbox_id is invalid. - DBSHARINGSharedFolderMemberErrorInvalidDropboxId, - - /// The target dropbox_id is not a member of the shared folder. - DBSHARINGSharedFolderMemberErrorNotAMember, - - /// The target member only has inherited access to the shared folder. - DBSHARINGSharedFolderMemberErrorNoExplicitAccess, - - /// (no description). - DBSHARINGSharedFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedFolderMemberErrorTag tag; - -/// The target member only has inherited access to the shared folder. @note -/// Ensure the `isNoExplicitAccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_dropbox_id". -/// -/// Description of the "invalid_dropbox_id" tag state: The target dropbox_id is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDropboxId; - -/// -/// Initializes union class with tag state of "not_a_member". -/// -/// Description of the "not_a_member" tag state: The target dropbox_id is not a -/// member of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAMember; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: The target member only -/// has inherited access to the shared folder. -/// -/// @param noExplicitAccess The target member only has inherited access to the -/// shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGMemberAccessLevelResult *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -- (BOOL)isInvalidDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "not_a_member". -/// -/// @return Whether the union's current tag state has value "not_a_member". -/// -- (BOOL)isNotAMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedFolderMemberError` union. -/// -@interface DBSHARINGSharedFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMemberError` object. -/// -+ (DBSHARINGSharedFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMembers.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMembers.h deleted file mode 100644 index 33758f86..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMembers.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGSharedFolderMembers; -@class DBSHARINGUserMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMembers` struct. -/// -/// Shared folder user and group membership. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMembers : NSObject - -#pragma mark - Instance fields - -/// The list of user members of the shared folder. -@property (nonatomic, readonly) NSArray *users; - -/// The list of group members of the shared folder. -@property (nonatomic, readonly) NSArray *groups; - -/// The list of invitees to the shared folder. -@property (nonatomic, readonly) NSArray *invitees; - -/// Present if there are additional shared folder members that have not been -/// returned yet. Pass the cursor into `listFolderMembersContinue` to list -/// additional members. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users The list of user members of the shared folder. -/// @param groups The list of group members of the shared folder. -/// @param invitees The list of invitees to the shared folder. -/// @param cursor Present if there are additional shared folder members that -/// have not been returned yet. Pass the cursor into `listFolderMembersContinue` -/// to list additional members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param users The list of user members of the shared folder. -/// @param groups The list of group members of the shared folder. -/// @param invitees The list of invitees to the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMembers` struct. -/// -@interface DBSHARINGSharedFolderMembersSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMembers` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMembers` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMembers` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMembers *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMembers` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMembers` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMembers` object. -/// -+ (DBSHARINGSharedFolderMembers *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMetadata.h deleted file mode 100644 index 354b6a1c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMetadata.h +++ /dev/null @@ -1,179 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedFolderMetadataBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGAccessLevel; -@class DBSHARINGFolderPermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFolderMetadata; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMetadata` struct. -/// -/// The metadata which includes basic information about the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMetadata : DBSHARINGSharedFolderMetadataBase - -#pragma mark - Instance fields - -/// The metadata of the shared content link to this shared folder. Absent if -/// there is no link on the folder. This is for an unreleased feature so it may -/// not be returned yet. -@property (nonatomic, readonly, nullable) DBSHARINGSharedContentLinkMetadata *linkMetadata; - -/// The name of the this shared folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// Actions the current user may perform on the folder and its contents. The set -/// of permissions corresponds to the FolderActions in the request. -@property (nonatomic, readonly, nullable) NSArray *permissions; - -/// Policies governing this shared folder. -@property (nonatomic, readonly) DBSHARINGFolderPolicy *policy; - -/// URL for displaying a web preview of the shared folder. -@property (nonatomic, readonly, copy) NSString *previewUrl; - -/// The ID of the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// Timestamp indicating when the current user was invited to this shared -/// folder. -@property (nonatomic, readonly) NSDate *timeInvited; - -/// Whether the folder inherits its members from its parent. -@property (nonatomic, readonly) DBSHARINGAccessInheritance *accessInheritance; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// @param name The name of the this shared folder. -/// @param policy Policies governing this shared folder. -/// @param previewUrl URL for displaying a web preview of the shared folder. -/// @param sharedFolderId The ID of the shared folder. -/// @param timeInvited Timestamp indicating when the current user was invited to -/// this shared folder. -/// @param ownerDisplayNames The display names of the users that own the folder. -/// If the folder is part of a team folder, the display names of the team admins -/// are also included. Absent if the owner display names cannot be fetched. -/// @param ownerTeam The team that owns the folder. This field is not present if -/// the folder is not owned by a team. -/// @param parentSharedFolderId The ID of the parent shared folder. This field -/// is present only if the folder is contained within another shared folder. -/// @param pathDisplay The full path of this shared folder. Absent for unmounted -/// folders. -/// @param pathLower The lower-cased full path of this shared folder. Absent for -/// unmounted folders. -/// @param parentFolderName Display name for the parent folder. -/// @param linkMetadata The metadata of the shared content link to this shared -/// folder. Absent if there is no link on the folder. This is for an unreleased -/// feature so it may not be returned yet. -/// @param permissions Actions the current user may perform on the folder and -/// its contents. The set of permissions corresponds to the FolderActions in the -/// request. -/// @param accessInheritance Whether the folder inherits its members from its -/// parent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl - sharedFolderId:(NSString *)sharedFolderId - timeInvited:(NSDate *)timeInvited - ownerDisplayNames:(nullable NSArray *)ownerDisplayNames - ownerTeam:(nullable DBUSERSTeam *)ownerTeam - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - pathDisplay:(nullable NSString *)pathDisplay - pathLower:(nullable NSString *)pathLower - parentFolderName:(nullable NSString *)parentFolderName - linkMetadata:(nullable DBSHARINGSharedContentLinkMetadata *)linkMetadata - permissions:(nullable NSArray *)permissions - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// @param name The name of the this shared folder. -/// @param policy Policies governing this shared folder. -/// @param previewUrl URL for displaying a web preview of the shared folder. -/// @param sharedFolderId The ID of the shared folder. -/// @param timeInvited Timestamp indicating when the current user was invited to -/// this shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl - sharedFolderId:(NSString *)sharedFolderId - timeInvited:(NSDate *)timeInvited; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMetadata` struct. -/// -@interface DBSHARINGSharedFolderMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMetadata` object. -/// -+ (DBSHARINGSharedFolderMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMetadataBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMetadataBase.h deleted file mode 100644 index 80907785..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedFolderMetadataBase.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGSharedFolderMetadataBase; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMetadataBase` struct. -/// -/// Properties of the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMetadataBase : NSObject - -#pragma mark - Instance fields - -/// The current user's access level for this shared folder. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessType; - -/// Whether this folder is inside of a team folder. -@property (nonatomic, readonly) NSNumber *isInsideTeamFolder; - -/// Whether this folder is a team folder https://www.dropbox.com/en/help/986. -@property (nonatomic, readonly) NSNumber *isTeamFolder; - -/// The display names of the users that own the folder. If the folder is part of -/// a team folder, the display names of the team admins are also included. -/// Absent if the owner display names cannot be fetched. -@property (nonatomic, readonly, nullable) NSArray *ownerDisplayNames; - -/// The team that owns the folder. This field is not present if the folder is -/// not owned by a team. -@property (nonatomic, readonly, nullable) DBUSERSTeam *ownerTeam; - -/// The ID of the parent shared folder. This field is present only if the folder -/// is contained within another shared folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// The full path of this shared folder. Absent for unmounted folders. -@property (nonatomic, readonly, copy, nullable) NSString *pathDisplay; - -/// The lower-cased full path of this shared folder. Absent for unmounted -/// folders. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// Display name for the parent folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// @param ownerDisplayNames The display names of the users that own the folder. -/// If the folder is part of a team folder, the display names of the team admins -/// are also included. Absent if the owner display names cannot be fetched. -/// @param ownerTeam The team that owns the folder. This field is not present if -/// the folder is not owned by a team. -/// @param parentSharedFolderId The ID of the parent shared folder. This field -/// is present only if the folder is contained within another shared folder. -/// @param pathDisplay The full path of this shared folder. Absent for unmounted -/// folders. -/// @param pathLower The lower-cased full path of this shared folder. Absent for -/// unmounted folders. -/// @param parentFolderName Display name for the parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder - ownerDisplayNames:(nullable NSArray *)ownerDisplayNames - ownerTeam:(nullable DBUSERSTeam *)ownerTeam - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - pathDisplay:(nullable NSString *)pathDisplay - pathLower:(nullable NSString *)pathLower - parentFolderName:(nullable NSString *)parentFolderName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMetadataBase` struct. -/// -@interface DBSHARINGSharedFolderMetadataBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMetadataBase` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMetadataBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadataBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMetadataBase *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMetadataBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadataBase` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMetadataBase` object. -/// -+ (DBSHARINGSharedFolderMetadataBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkAccessFailureReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkAccessFailureReason.h deleted file mode 100644 index ec2b188c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkAccessFailureReason.h +++ /dev/null @@ -1,207 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkAccessFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAccessFailureReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkAccessFailureReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkAccessFailureReasonTag` enum type represents the -/// possible tag states with which the `DBSHARINGSharedLinkAccessFailureReason` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkAccessFailureReasonTag) { - /// User is not logged in. - DBSHARINGSharedLinkAccessFailureReasonLoginRequired, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGSharedLinkAccessFailureReasonEmailVerifyRequired, - - /// The link is password protected. - DBSHARINGSharedLinkAccessFailureReasonPasswordRequired, - - /// Access is allowed for team members only. - DBSHARINGSharedLinkAccessFailureReasonTeamOnly, - - /// Access is allowed for the shared link's owner only. - DBSHARINGSharedLinkAccessFailureReasonOwnerOnly, - - /// (no description). - DBSHARINGSharedLinkAccessFailureReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkAccessFailureReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "login_required". -/// -/// Description of the "login_required" tag state: User is not logged in. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginRequired; - -/// -/// Initializes union class with tag state of "email_verify_required". -/// -/// Description of the "email_verify_required" tag state: This user's email -/// address is not verified. This functionality is only available on accounts -/// with a verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailVerifyRequired; - -/// -/// Initializes union class with tag state of "password_required". -/// -/// Description of the "password_required" tag state: The link is password -/// protected. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordRequired; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Access is allowed for team members -/// only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "owner_only". -/// -/// Description of the "owner_only" tag state: Access is allowed for the shared -/// link's owner only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwnerOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "login_required". -/// -/// @return Whether the union's current tag state has value "login_required". -/// -- (BOOL)isLoginRequired; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_verify_required". -/// -/// @return Whether the union's current tag state has value -/// "email_verify_required". -/// -- (BOOL)isEmailVerifyRequired; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_required". -/// -/// @return Whether the union's current tag state has value "password_required". -/// -- (BOOL)isPasswordRequired; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "owner_only". -/// -/// @return Whether the union's current tag state has value "owner_only". -/// -- (BOOL)isOwnerOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkAccessFailureReason` -/// union. -/// -@interface DBSHARINGSharedLinkAccessFailureReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkAccessFailureReason` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkAccessFailureReason` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAccessFailureReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkAccessFailureReason *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkAccessFailureReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAccessFailureReason` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkAccessFailureReason` -/// object. -/// -+ (DBSHARINGSharedLinkAccessFailureReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkAlreadyExistsMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkAlreadyExistsMetadata.h deleted file mode 100644 index c05c16bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkAlreadyExistsMetadata.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAlreadyExistsMetadata` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkAlreadyExistsMetadata : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkAlreadyExistsMetadataTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkAlreadyExistsMetadataTag) { - /// Metadata of the shared link that already exists. - DBSHARINGSharedLinkAlreadyExistsMetadataMetadata, - - /// (no description). - DBSHARINGSharedLinkAlreadyExistsMetadataOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkAlreadyExistsMetadataTag tag; - -/// Metadata of the shared link that already exists. @note Ensure the -/// `isMetadata` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedLinkMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "metadata". -/// -/// Description of the "metadata" tag state: Metadata of the shared link that -/// already exists. -/// -/// @param metadata Metadata of the shared link that already exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBSHARINGSharedLinkMetadata *)metadata; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkAlreadyExistsMetadata` -/// union. -/// -@interface DBSHARINGSharedLinkAlreadyExistsMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkAlreadyExistsMetadata` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkAlreadyExistsMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkAlreadyExistsMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkAlreadyExistsMetadata` -/// object. -/// -+ (DBSHARINGSharedLinkAlreadyExistsMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkError.h deleted file mode 100644 index 59e2804b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkError.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharedLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkErrorTag) { - /// The shared link wasn't found. - DBSHARINGSharedLinkErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGSharedLinkErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGSharedLinkErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGSharedLinkErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkError` union. -/// -@interface DBSHARINGSharedLinkErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkError *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkError` object. -/// -+ (DBSHARINGSharedLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkMetadata.h deleted file mode 100644 index 85106522..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkMetadata.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkPermissions; -@class DBSHARINGSharedLinkMetadata; -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkMetadata` struct. -/// -/// The metadata of a shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkMetadata : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// A unique identifier for the linked file. -@property (nonatomic, readonly, copy, nullable) NSString *id_; - -/// The linked file name (including extension). This never contains a slash. -@property (nonatomic, readonly, copy) NSString *name; - -/// Expiration time, if set. By default the link won't expire. -@property (nonatomic, readonly, nullable) NSDate *expires; - -/// The lowercased full path in the user's Dropbox. This always starts with a -/// slash. This field will only be present only if the linked file is in the -/// authenticated user's dropbox. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// The link's access permissions. -@property (nonatomic, readonly) DBSHARINGLinkPermissions *linkPermissions; - -/// The team membership information of the link's owner. This field will only -/// be present if the link's owner is a team member. -@property (nonatomic, readonly, nullable) DBSHARINGTeamMemberInfo *teamMemberInfo; - -/// The team information of the content's owner. This field will only be present -/// if the content's owner is a team member and the content's owner team is -/// different from the link's owner team. -@property (nonatomic, readonly, nullable) DBUSERSTeam *contentOwnerTeamInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param id_ A unique identifier for the linked file. -/// @param expires Expiration time, if set. By default the link won't expire. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will only be present only if the linked file -/// is in the authenticated user's dropbox. -/// @param teamMemberInfo The team membership information of the link's owner. -/// This field will only be present if the link's owner is a team member. -/// @param contentOwnerTeamInfo The team information of the content's owner. -/// This field will only be present if the content's owner is a team member and -/// the content's owner team is different from the link's owner team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - id_:(nullable NSString *)id_ - expires:(nullable NSDate *)expires - pathLower:(nullable NSString *)pathLower - teamMemberInfo:(nullable DBSHARINGTeamMemberInfo *)teamMemberInfo - contentOwnerTeamInfo:(nullable DBUSERSTeam *)contentOwnerTeamInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkMetadata` struct. -/// -@interface DBSHARINGSharedLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkMetadata` object. -/// -+ (DBSHARINGSharedLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkPolicy.h deleted file mode 100644 index 85ac30d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkPolicy.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkPolicy` union. -/// -/// Who can view shared links in this folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkPolicyTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharedLinkPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkPolicyTag) { - /// Links can be shared with anyone. - DBSHARINGSharedLinkPolicyAnyone, - - /// Links can be shared with anyone on the same team as the owner. - DBSHARINGSharedLinkPolicyTeam, - - /// Links can only be shared among members of the shared folder. - DBSHARINGSharedLinkPolicyMembers, - - /// (no description). - DBSHARINGSharedLinkPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Links can be shared with anyone. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Links can be shared with anyone on the -/// same team as the owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Links can only be shared among -/// members of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkPolicy` union. -/// -@interface DBSHARINGSharedLinkPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkPolicy *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkPolicy` object. -/// -+ (DBSHARINGSharedLinkPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkSettings.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkSettings.h deleted file mode 100644 index 2e1e2a46..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkSettings.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; -@class DBSHARINGRequestedLinkAccessLevel; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGSharedLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettings` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkSettings : NSObject - -#pragma mark - Instance fields - -/// Boolean flag to enable or disable password protection. -@property (nonatomic, readonly, nullable) NSNumber *requirePassword; - -/// If requirePassword is true, this is needed to specify the password to access -/// the link. -@property (nonatomic, readonly, copy, nullable) NSString *linkPassword; - -/// Expiration time of the shared link. By default the link won't expire. -@property (nonatomic, readonly, nullable) NSDate *expires; - -/// The new audience who can benefit from the access level specified by the -/// link's access level specified in the `link_access_level` field of -/// `LinkPermissions`. This is used in conjunction with team policies and shared -/// folder policies to determine the final effective audience type in the -/// `effective_audience` field of `LinkPermissions. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *audience; - -/// Requested access level you want the audience to gain from this link. Note, -/// modifying access level for an existing link is not supported. -@property (nonatomic, readonly, nullable) DBSHARINGRequestedLinkAccessLevel *access; - -/// Use audience instead. The requested access for this shared link. -@property (nonatomic, readonly, nullable) DBSHARINGRequestedVisibility *requestedVisibility; - -/// Boolean flag to allow or not download capabilities for shared links. -@property (nonatomic, readonly, nullable) NSNumber *allowDownload; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requirePassword Boolean flag to enable or disable password -/// protection. -/// @param linkPassword If requirePassword is true, this is needed to specify -/// the password to access the link. -/// @param expires Expiration time of the shared link. By default the link won't -/// expire. -/// @param audience The new audience who can benefit from the access level -/// specified by the link's access level specified in the `link_access_level` -/// field of `LinkPermissions`. This is used in conjunction with team policies -/// and shared folder policies to determine the final effective audience type in -/// the `effective_audience` field of `LinkPermissions. -/// @param access Requested access level you want the audience to gain from this -/// link. Note, modifying access level for an existing link is not supported. -/// @param requestedVisibility Use audience instead. The requested access for -/// this shared link. -/// @param allowDownload Boolean flag to allow or not download capabilities for -/// shared links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequirePassword:(nullable NSNumber *)requirePassword - linkPassword:(nullable NSString *)linkPassword - expires:(nullable NSDate *)expires - audience:(nullable DBSHARINGLinkAudience *)audience - access:(nullable DBSHARINGRequestedLinkAccessLevel *)access - requestedVisibility:(nullable DBSHARINGRequestedVisibility *)requestedVisibility - allowDownload:(nullable NSNumber *)allowDownload; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettings` struct. -/// -@interface DBSHARINGSharedLinkSettingsSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkSettings` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkSettings` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettings` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkSettings *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkSettings` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettings` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkSettings` object. -/// -+ (DBSHARINGSharedLinkSettings *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkSettingsError.h deleted file mode 100644 index 52319c06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharedLinkSettingsError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkSettingsErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharedLinkSettingsError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkSettingsErrorTag) { - /// The given settings are invalid (for example, all attributes of the - /// SharedLinkSettings are empty, the requested visibility is `password` in - /// `DBSHARINGRequestedVisibility` but the `linkPassword` in - /// `DBSHARINGSharedLinkSettings` is missing, `expires` in - /// `DBSHARINGSharedLinkSettings` is set to the past, etc.). - DBSHARINGSharedLinkSettingsErrorInvalidSettings, - - /// User is not allowed to modify the settings of this link. Note that basic - /// users can only set `public` in `DBSHARINGRequestedVisibility` as the - /// `requestedVisibility` in `DBSHARINGSharedLinkSettings` and cannot set - /// `expires` in `DBSHARINGSharedLinkSettings`. - DBSHARINGSharedLinkSettingsErrorNotAuthorized, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettingsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_settings". -/// -/// Description of the "invalid_settings" tag state: The given settings are -/// invalid (for example, all attributes of the SharedLinkSettings are empty, -/// the requested visibility is `password` in `DBSHARINGRequestedVisibility` but -/// the `linkPassword` in `DBSHARINGSharedLinkSettings` is missing, `expires` in -/// `DBSHARINGSharedLinkSettings` is set to the past, etc.). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSettings; - -/// -/// Initializes union class with tag state of "not_authorized". -/// -/// Description of the "not_authorized" tag state: User is not allowed to modify -/// the settings of this link. Note that basic users can only set `public` in -/// `DBSHARINGRequestedVisibility` as the `requestedVisibility` in -/// `DBSHARINGSharedLinkSettings` and cannot set `expires` in -/// `DBSHARINGSharedLinkSettings`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAuthorized; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_settings". -/// -/// @return Whether the union's current tag state has value "invalid_settings". -/// -- (BOOL)isInvalidSettings; - -/// -/// Retrieves whether the union's current tag state has value "not_authorized". -/// -/// @return Whether the union's current tag state has value "not_authorized". -/// -- (BOOL)isNotAuthorized; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkSettingsError` union. -/// -@interface DBSHARINGSharedLinkSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkSettingsError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkSettingsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkSettingsError *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettingsError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkSettingsError` object. -/// -+ (DBSHARINGSharedLinkSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharingFileAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharingFileAccessError.h deleted file mode 100644 index 686d6d9d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharingFileAccessError.h +++ /dev/null @@ -1,206 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingFileAccessError` union. -/// -/// User could not access this file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharingFileAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharingFileAccessErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharingFileAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharingFileAccessErrorTag) { - /// Current user does not have sufficient privileges to perform the desired - /// action. - DBSHARINGSharingFileAccessErrorNoPermission, - - /// File specified was not found. - DBSHARINGSharingFileAccessErrorInvalidFile, - - /// A folder can't be shared this way. Use folder sharing or a shared link - /// instead. - DBSHARINGSharingFileAccessErrorIsFolder, - - /// A file inside a public folder can't be shared this way. Use a public - /// link instead. - DBSHARINGSharingFileAccessErrorInsidePublicFolder, - - /// A Mac OS X package can't be shared this way. Use a shared link instead. - DBSHARINGSharingFileAccessErrorInsideOsxPackage, - - /// (no description). - DBSHARINGSharingFileAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: Current user does not have -/// sufficient privileges to perform the desired action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "invalid_file". -/// -/// Description of the "invalid_file" tag state: File specified was not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFile; - -/// -/// Initializes union class with tag state of "is_folder". -/// -/// Description of the "is_folder" tag state: A folder can't be shared this way. -/// Use folder sharing or a shared link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFolder; - -/// -/// Initializes union class with tag state of "inside_public_folder". -/// -/// Description of the "inside_public_folder" tag state: A file inside a public -/// folder can't be shared this way. Use a public link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsidePublicFolder; - -/// -/// Initializes union class with tag state of "inside_osx_package". -/// -/// Description of the "inside_osx_package" tag state: A Mac OS X package can't -/// be shared this way. Use a shared link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideOsxPackage; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "invalid_file". -/// -/// @return Whether the union's current tag state has value "invalid_file". -/// -- (BOOL)isInvalidFile; - -/// -/// Retrieves whether the union's current tag state has value "is_folder". -/// -/// @return Whether the union's current tag state has value "is_folder". -/// -- (BOOL)isIsFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_public_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_public_folder". -/// -- (BOOL)isInsidePublicFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_osx_package". -/// -/// @return Whether the union's current tag state has value -/// "inside_osx_package". -/// -- (BOOL)isInsideOsxPackage; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharingFileAccessError` union. -/// -@interface DBSHARINGSharingFileAccessErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharingFileAccessError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharingFileAccessError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharingFileAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharingFileAccessError *)instance; - -/// -/// Deserializes `DBSHARINGSharingFileAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharingFileAccessError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharingFileAccessError` object. -/// -+ (DBSHARINGSharingFileAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharingUserError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharingUserError.h deleted file mode 100644 index d4276bd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGSharingUserError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingUserError` union. -/// -/// User account had a problem preventing this action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharingUserError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharingUserErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharingUserError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharingUserErrorTag) { - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGSharingUserErrorEmailUnverified, - - /// (no description). - DBSHARINGSharingUserErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharingUserErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharingUserError` union. -/// -@interface DBSHARINGSharingUserErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharingUserError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharingUserError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharingUserError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharingUserError *)instance; - -/// -/// Deserializes `DBSHARINGSharingUserError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharingUserError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharingUserError` object. -/// -+ (DBSHARINGSharingUserError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTeamMemberInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTeamMemberInfo.h deleted file mode 100644 index 04b22cf4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTeamMemberInfo.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfo` struct. -/// -/// Information about a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGTeamMemberInfo : NSObject - -#pragma mark - Instance fields - -/// Information about the member's team. -@property (nonatomic, readonly) DBUSERSTeam *teamInfo; - -/// The display name of the user. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// ID of user as a member of a team. This field will only be present if the -/// member is in the same team as current user. -@property (nonatomic, readonly, copy, nullable) NSString *memberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamInfo Information about the member's team. -/// @param displayName The display name of the user. -/// @param memberId ID of user as a member of a team. This field will only be -/// present if the member is in the same team as current user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamInfo:(DBUSERSTeam *)teamInfo - displayName:(NSString *)displayName - memberId:(nullable NSString *)memberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamInfo Information about the member's team. -/// @param displayName The display name of the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamInfo:(DBUSERSTeam *)teamInfo displayName:(NSString *)displayName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfo` struct. -/// -@interface DBSHARINGTeamMemberInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGTeamMemberInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGTeamMemberInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGTeamMemberInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGTeamMemberInfo *)instance; - -/// -/// Deserializes `DBSHARINGTeamMemberInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGTeamMemberInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGTeamMemberInfo` object. -/// -+ (DBSHARINGTeamMemberInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTransferFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTransferFolderArg.h deleted file mode 100644 index 8c909c42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTransferFolderArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGTransferFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TransferFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGTransferFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// A account or team member ID to transfer ownership to. -@property (nonatomic, readonly, copy) NSString *toDropboxId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param toDropboxId A account or team member ID to transfer ownership to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId toDropboxId:(NSString *)toDropboxId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TransferFolderArg` struct. -/// -@interface DBSHARINGTransferFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGTransferFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGTransferFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGTransferFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGTransferFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGTransferFolderArg` object. -/// -+ (DBSHARINGTransferFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTransferFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTransferFolderError.h deleted file mode 100644 index 8481bd8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGTransferFolderError.h +++ /dev/null @@ -1,258 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGTransferFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TransferFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGTransferFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGTransferFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGTransferFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGTransferFolderErrorTag) { - /// (no description). - DBSHARINGTransferFolderErrorAccessError, - - /// `toDropboxId` in `DBSHARINGTransferFolderArg` is invalid. - DBSHARINGTransferFolderErrorInvalidDropboxId, - - /// The new designated owner is not currently a member of the shared folder. - DBSHARINGTransferFolderErrorDNewOwnerNotAMember, - - /// The new designated owner has not added the folder to their Dropbox. - DBSHARINGTransferFolderErrorDNewOwnerUnmounted, - - /// The new designated owner's email address is not verified. This - /// functionality is only available on accounts with a verified email - /// address. Users can verify their email address here - /// https://www.dropbox.com/help/317. - DBSHARINGTransferFolderErrorDNewOwnerEmailUnverified, - - /// This action cannot be performed on a team shared folder. - DBSHARINGTransferFolderErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGTransferFolderErrorNoPermission, - - /// (no description). - DBSHARINGTransferFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGTransferFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "invalid_dropbox_id". -/// -/// Description of the "invalid_dropbox_id" tag state: `toDropboxId` in -/// `DBSHARINGTransferFolderArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDropboxId; - -/// -/// Initializes union class with tag state of "new_owner_not_a_member". -/// -/// Description of the "new_owner_not_a_member" tag state: The new designated -/// owner is not currently a member of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerNotAMember; - -/// -/// Initializes union class with tag state of "new_owner_unmounted". -/// -/// Description of the "new_owner_unmounted" tag state: The new designated owner -/// has not added the folder to their Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerUnmounted; - -/// -/// Initializes union class with tag state of "new_owner_email_unverified". -/// -/// Description of the "new_owner_email_unverified" tag state: The new -/// designated owner's email address is not verified. This functionality is only -/// available on accounts with a verified email address. Users can verify their -/// email address here https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerEmailUnverified; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -- (BOOL)isInvalidDropboxId; - -/// -/// Retrieves whether the union's current tag state has value -/// "new_owner_not_a_member". -/// -/// @return Whether the union's current tag state has value -/// "new_owner_not_a_member". -/// -- (BOOL)isDNewOwnerNotAMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "new_owner_unmounted". -/// -/// @return Whether the union's current tag state has value -/// "new_owner_unmounted". -/// -- (BOOL)isDNewOwnerUnmounted; - -/// -/// Retrieves whether the union's current tag state has value -/// "new_owner_email_unverified". -/// -/// @return Whether the union's current tag state has value -/// "new_owner_email_unverified". -/// -- (BOOL)isDNewOwnerEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGTransferFolderError` union. -/// -@interface DBSHARINGTransferFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGTransferFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGTransferFolderError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGTransferFolderError *)instance; - -/// -/// Deserializes `DBSHARINGTransferFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGTransferFolderError` object. -/// -+ (DBSHARINGTransferFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnmountFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnmountFolderArg.h deleted file mode 100644 index aacafed1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnmountFolderArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUnmountFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnmountFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnmountFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnmountFolderArg` struct. -/// -@interface DBSHARINGUnmountFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnmountFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUnmountFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnmountFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGUnmountFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUnmountFolderArg` object. -/// -+ (DBSHARINGUnmountFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnmountFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnmountFolderError.h deleted file mode 100644 index 563346db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnmountFolderError.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGUnmountFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnmountFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnmountFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUnmountFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGUnmountFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUnmountFolderErrorTag) { - /// (no description). - DBSHARINGUnmountFolderErrorAccessError, - - /// The current user does not have permission to perform this action. - DBSHARINGUnmountFolderErrorNoPermission, - - /// The shared folder can't be unmounted. One example where this can occur - /// is when the shared folder's parent folder is also a shared folder that - /// resides in the current user's Dropbox. - DBSHARINGUnmountFolderErrorNotUnmountable, - - /// (no description). - DBSHARINGUnmountFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUnmountFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "not_unmountable". -/// -/// Description of the "not_unmountable" tag state: The shared folder can't be -/// unmounted. One example where this can occur is when the shared folder's -/// parent folder is also a shared folder that resides in the current user's -/// Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotUnmountable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "not_unmountable". -/// -/// @return Whether the union's current tag state has value "not_unmountable". -/// -- (BOOL)isNotUnmountable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUnmountFolderError` union. -/// -@interface DBSHARINGUnmountFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnmountFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGUnmountFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnmountFolderError *)instance; - -/// -/// Deserializes `DBSHARINGUnmountFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGUnmountFolderError` object. -/// -+ (DBSHARINGUnmountFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFileArg.h deleted file mode 100644 index 52e6c47e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFileArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUnshareFileArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFileArg` struct. -/// -/// Arguments for `unshareFile`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFileArg : NSObject - -#pragma mark - Instance fields - -/// The file to unshare. -@property (nonatomic, readonly, copy) NSString *file; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The file to unshare. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnshareFileArg` struct. -/// -@interface DBSHARINGUnshareFileArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFileArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFileArg *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFileArg` object. -/// -+ (DBSHARINGUnshareFileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFileError.h deleted file mode 100644 index 60542713..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFileError.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; -@class DBSHARINGUnshareFileError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFileError` union. -/// -/// Error result for `unshareFile`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFileError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUnshareFileErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGUnshareFileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUnshareFileErrorTag) { - /// (no description). - DBSHARINGUnshareFileErrorUserError, - - /// (no description). - DBSHARINGUnshareFileErrorAccessError, - - /// (no description). - DBSHARINGUnshareFileErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUnshareFileErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUnshareFileError` union. -/// -@interface DBSHARINGUnshareFileErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFileError` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFileError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFileError *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileError` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFileError` object. -/// -+ (DBSHARINGUnshareFileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFolderArg.h deleted file mode 100644 index 2da07735..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFolderArg.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUnshareFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// If true, members of this shared folder will get a copy of this folder after -/// it's unshared. Otherwise, it will be removed from their Dropbox. The current -/// user, who is an owner, will always retain their copy. -@property (nonatomic, readonly) NSNumber *leaveACopy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy If true, members of this shared folder will get a copy of -/// this folder after it's unshared. Otherwise, it will be removed from their -/// Dropbox. The current user, who is an owner, will always retain their copy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnshareFolderArg` struct. -/// -@interface DBSHARINGUnshareFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFolderArg` object. -/// -+ (DBSHARINGUnshareFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFolderError.h deleted file mode 100644 index 38fa0f61..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUnshareFolderError.h +++ /dev/null @@ -1,184 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGUnshareFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUnshareFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGUnshareFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUnshareFolderErrorTag) { - /// (no description). - DBSHARINGUnshareFolderErrorAccessError, - - /// This action cannot be performed on a team shared folder. - DBSHARINGUnshareFolderErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGUnshareFolderErrorNoPermission, - - /// This shared folder has too many files to be unshared. - DBSHARINGUnshareFolderErrorTooManyFiles, - - /// (no description). - DBSHARINGUnshareFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUnshareFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: This shared folder has too -/// many files to be unshared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUnshareFolderError` union. -/// -@interface DBSHARINGUnshareFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFolderError *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFolderError` object. -/// -+ (DBSHARINGUnshareFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFileMemberArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFileMemberArgs.h deleted file mode 100644 index f451f6eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFileMemberArgs.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberSelector; -@class DBSHARINGUpdateFileMemberArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileMemberArgs` struct. -/// -/// Arguments for `updateFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFileMemberArgs : NSObject - -#pragma mark - Instance fields - -/// File for which we are changing a member's access. -@property (nonatomic, readonly, copy) NSString *file; - -/// The member whose access we are changing. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The new access level for the member. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file File for which we are changing a member's access. -/// @param member The member whose access we are changing. -/// @param accessLevel The new access level for the member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFileMemberArgs` struct. -/// -@interface DBSHARINGUpdateFileMemberArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFileMemberArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFileMemberArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFileMemberArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFileMemberArgs *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFileMemberArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFileMemberArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFileMemberArgs` object. -/// -+ (DBSHARINGUpdateFileMemberArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderMemberArg.h deleted file mode 100644 index b09d3898..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderMemberArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberSelector; -@class DBSHARINGUpdateFolderMemberArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderMemberArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderMemberArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The member of the shared folder to update. Only the `dropboxId` in -/// `DBSHARINGMemberSelector` may be set at this time. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The new access level for member. `owner` in `DBSHARINGAccessLevel` is -/// disallowed. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member of the shared folder to update. Only the -/// `dropboxId` in `DBSHARINGMemberSelector` may be set at this time. -/// @param accessLevel The new access level for member. `owner` in -/// `DBSHARINGAccessLevel` is disallowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFolderMemberArg` struct. -/// -@interface DBSHARINGUpdateFolderMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderMemberArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderMemberArg` object. -/// -+ (DBSHARINGUpdateFolderMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderMemberError.h deleted file mode 100644 index 19b17df9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderMemberError.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; -@class DBSHARINGUpdateFolderMemberError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUpdateFolderMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGUpdateFolderMemberError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUpdateFolderMemberErrorTag) { - /// (no description). - DBSHARINGUpdateFolderMemberErrorAccessError, - - /// (no description). - DBSHARINGUpdateFolderMemberErrorMemberError, - - /// If updating the access type required the member to be added to the - /// shared folder and there was an error when adding the member. - DBSHARINGUpdateFolderMemberErrorNoExplicitAccess, - - /// The current user's account doesn't support this action. An example of - /// this is when downgrading a member from editor to viewer. This action can - /// only be performed by users that have upgraded to a Pro or Business plan. - DBSHARINGUpdateFolderMemberErrorInsufficientPlan, - - /// The current user does not have permission to perform this action. - DBSHARINGUpdateFolderMemberErrorNoPermission, - - /// (no description). - DBSHARINGUpdateFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUpdateFolderMemberErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// (no description). @note Ensure the `isMemberError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMemberError *memberError; - -/// If updating the access type required the member to be added to the shared -/// folder and there was an error when adding the member. @note Ensure the -/// `isNoExplicitAccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGAddFolderMemberError *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// @param memberError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGSharedFolderMemberError *)memberError; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: If updating the access -/// type required the member to be added to the shared folder and there was an -/// error when adding the member. -/// -/// @param noExplicitAccess If updating the access type required the member to -/// be added to the shared folder and there was an error when adding the member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGAddFolderMemberError *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "insufficient_plan". -/// -/// Description of the "insufficient_plan" tag state: The current user's account -/// doesn't support this action. An example of this is when downgrading a member -/// from editor to viewer. This action can only be performed by users that have -/// upgraded to a Pro or Business plan. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPlan; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_plan". -/// -/// @return Whether the union's current tag state has value "insufficient_plan". -/// -- (BOOL)isInsufficientPlan; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUpdateFolderMemberError` union. -/// -@interface DBSHARINGUpdateFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderMemberError` object. -/// -+ (DBSHARINGUpdateFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderPolicyArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderPolicyArg.h deleted file mode 100644 index 1cee7c09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderPolicyArg.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGFolderAction; -@class DBSHARINGLinkSettings; -@class DBSHARINGMemberPolicy; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGUpdateFolderPolicyArg; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderPolicyArg` struct. -/// -/// If any of the policies are unset, then they retain their current setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderPolicyArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// Who can be a member of this shared folder. Only applicable if the current -/// user is on a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *memberPolicy; - -/// Who can add and remove members of this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *aclUpdatePolicy; - -/// Who can enable/disable viewer info for this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *viewerInfoPolicy; - -/// The policy to apply to shared links created for content inside this shared -/// folder. The current user must be on a team to set this policy to `members` -/// in `DBSHARINGSharedLinkPolicy`. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *sharedLinkPolicy; - -/// Settings on the link for this folder. -@property (nonatomic, readonly, nullable) DBSHARINGLinkSettings *linkSettings; - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param memberPolicy Who can be a member of this shared folder. Only -/// applicable if the current user is on a team. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// @param sharedLinkPolicy The policy to apply to shared links created for -/// content inside this shared folder. The current user must be on a team to set -/// this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param linkSettings Settings on the link for this folder. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings - actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFolderPolicyArg` struct. -/// -@interface DBSHARINGUpdateFolderPolicyArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderPolicyArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderPolicyArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderPolicyArg *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderPolicyArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderPolicyArg` object. -/// -+ (DBSHARINGUpdateFolderPolicyArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderPolicyError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderPolicyError.h deleted file mode 100644 index fce86a1d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUpdateFolderPolicyError.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGUpdateFolderPolicyError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderPolicyError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderPolicyError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUpdateFolderPolicyErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGUpdateFolderPolicyError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUpdateFolderPolicyErrorTag) { - /// (no description). - DBSHARINGUpdateFolderPolicyErrorAccessError, - - /// `memberPolicy` in `DBSHARINGUpdateFolderPolicyArg` was set even though - /// user is not on a team. - DBSHARINGUpdateFolderPolicyErrorNotOnTeam, - - /// Team policy is more restrictive than `memberPolicy` in - /// `DBSHARINGShareFolderArg`. - DBSHARINGUpdateFolderPolicyErrorTeamPolicyDisallowsMemberPolicy, - - /// The current account is not allowed to select the specified - /// `sharedLinkPolicy` in `DBSHARINGShareFolderArg`. - DBSHARINGUpdateFolderPolicyErrorDisallowedSharedLinkPolicy, - - /// The current user does not have permission to perform this action. - DBSHARINGUpdateFolderPolicyErrorNoPermission, - - /// This action cannot be performed on a team shared folder. - DBSHARINGUpdateFolderPolicyErrorTeamFolder, - - /// (no description). - DBSHARINGUpdateFolderPolicyErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUpdateFolderPolicyErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "not_on_team". -/// -/// Description of the "not_on_team" tag state: `memberPolicy` in -/// `DBSHARINGUpdateFolderPolicyArg` was set even though user is not on a team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotOnTeam; - -/// -/// Initializes union class with tag state of -/// "team_policy_disallows_member_policy". -/// -/// Description of the "team_policy_disallows_member_policy" tag state: Team -/// policy is more restrictive than `memberPolicy` in `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicyDisallowsMemberPolicy; - -/// -/// Initializes union class with tag state of "disallowed_shared_link_policy". -/// -/// Description of the "disallowed_shared_link_policy" tag state: The current -/// account is not allowed to select the specified `sharedLinkPolicy` in -/// `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedSharedLinkPolicy; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "not_on_team". -/// -/// @return Whether the union's current tag state has value "not_on_team". -/// -- (BOOL)isNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -- (BOOL)isTeamPolicyDisallowsMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -- (BOOL)isDisallowedSharedLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUpdateFolderPolicyError` union. -/// -@interface DBSHARINGUpdateFolderPolicyErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderPolicyError` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderPolicyError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderPolicyError *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderPolicyError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyError` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderPolicyError` object. -/// -+ (DBSHARINGUpdateFolderPolicyError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserAuthRoutes.h deleted file mode 100644 index 39ddb399..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserAuthRoutes.h +++ /dev/null @@ -1,1162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCLaunchEmptyResult; -@class DBASYNCLaunchResultBase; -@class DBASYNCPollError; -@class DBFILESLookupError; -@class DBNilObject; -@class DBSHARINGAccessInheritance; -@class DBSHARINGAccessLevel; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGAddFileMemberError; -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGAddMember; -@class DBSHARINGAddMemberSelectorError; -@class DBSHARINGCreateSharedLinkError; -@class DBSHARINGCreateSharedLinkWithSettingsError; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGFileAction; -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberActionIndividualResult; -@class DBSHARINGFileMemberActionResult; -@class DBSHARINGFileMemberRemoveActionResult; -@class DBSHARINGFilePermission; -@class DBSHARINGFolderAction; -@class DBSHARINGFolderPermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGGetFileMetadataBatchResult; -@class DBSHARINGGetFileMetadataError; -@class DBSHARINGGetFileMetadataIndividualResult; -@class DBSHARINGGetSharedLinkFileError; -@class DBSHARINGGetSharedLinksError; -@class DBSHARINGGetSharedLinksResult; -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInsufficientQuotaAmounts; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGJobError; -@class DBSHARINGJobStatus; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkExpiry; -@class DBSHARINGLinkMetadata; -@class DBSHARINGLinkPassword; -@class DBSHARINGLinkPermissions; -@class DBSHARINGLinkSettings; -@class DBSHARINGListFileMembersBatchResult; -@class DBSHARINGListFileMembersContinueError; -@class DBSHARINGListFileMembersError; -@class DBSHARINGListFileMembersIndividualResult; -@class DBSHARINGListFilesContinueError; -@class DBSHARINGListFilesResult; -@class DBSHARINGListFolderMembersContinueError; -@class DBSHARINGListFoldersContinueError; -@class DBSHARINGListFoldersResult; -@class DBSHARINGListSharedLinksError; -@class DBSHARINGListSharedLinksResult; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGMemberAction; -@class DBSHARINGMemberPolicy; -@class DBSHARINGMemberSelector; -@class DBSHARINGModifySharedLinkSettingsError; -@class DBSHARINGMountFolderError; -@class DBSHARINGParentFolderAccessInfo; -@class DBSHARINGPathLinkMetadata; -@class DBSHARINGPendingUploadMode; -@class DBSHARINGRelinquishFileMembershipError; -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGRemoveFileMemberError; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGRemoveMemberJobStatus; -@class DBSHARINGRequestedLinkAccessLevel; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGRevokeSharedLinkError; -@class DBSHARINGSetAccessInheritanceError; -@class DBSHARINGShareFolderError; -@class DBSHARINGShareFolderJobStatus; -@class DBSHARINGShareFolderLaunch; -@class DBSHARINGSharePathError; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFileMembers; -@class DBSHARINGSharedFileMetadata; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; -@class DBSHARINGSharedFolderMembers; -@class DBSHARINGSharedFolderMetadata; -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkError; -@class DBSHARINGSharedLinkMetadata; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGSharedLinkSettings; -@class DBSHARINGSharedLinkSettingsError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; -@class DBSHARINGTeamMemberInfo; -@class DBSHARINGTransferFolderError; -@class DBSHARINGUnmountFolderError; -@class DBSHARINGUnshareFileError; -@class DBSHARINGUnshareFolderError; -@class DBSHARINGUpdateFolderMemberError; -@class DBSHARINGUpdateFolderPolicyError; -@class DBSHARINGUserFileMembershipInfo; -@class DBSHARINGUserMembershipInfo; -@class DBSHARINGViewerInfoPolicy; -@class DBSHARINGVisibility; -@class DBUSERSTeam; - -@protocol DBTransportClient; - -/// -/// Routes for the `Sharing` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBSHARINGUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBSHARINGUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Adds specified members to a file. -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, this may result in a user being directly -/// added to the membership if that email is the user's main account email. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object -/// on success or a `DBSHARINGAddFileMemberError` object on failure. -/// -- (DBRpcTask *, DBSHARINGAddFileMemberError *> *) - addFileMember:(NSString *)file - members:(NSArray *)members; - -/// -/// Adds specified members to a file. -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, this may result in a user being directly -/// added to the membership if that email is the user's main account email. -/// @param customMessage Message to send to added members in their invitation. -/// @param quiet Whether added members should be notified via email and device notifications of their invitation. -/// @param accessLevel AccessLevel union object, describing what access level we want to give new members. -/// @param addMessageAsComment If the custom message should be added as a comment on the file. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object -/// on success or a `DBSHARINGAddFileMemberError` object on failure. -/// -- (DBRpcTask *, DBSHARINGAddFileMemberError *> *) - addFileMember:(NSString *)file - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - addMessageAsComment:(nullable NSNumber *)addMessageAsComment; - -/// -/// Allows an owner or editor (if the ACL update policy allows) of a shared folder to add another member. For the new -/// member to get access to all the functionality for this folder, you will need to call `mountFolder` on their behalf. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will receive invites to join the shared folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGAddFolderMemberError` object on failure. -/// -- (DBRpcTask *)addFolderMember:(NSString *)sharedFolderId - members:(NSArray *)members; - -/// -/// Allows an owner or editor (if the ACL update policy allows) of a shared folder to add another member. For the new -/// member to get access to all the functionality for this folder, you will need to call `mountFolder` on their behalf. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will receive invites to join the shared folder. -/// @param quiet Whether added members should be notified via email and device notifications of their invite. -/// @param customMessage Optional message to display to added members in their invitation. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGAddFolderMemberError` object on failure. -/// -- (DBRpcTask *)addFolderMember:(NSString *)sharedFolderId - members:(NSArray *)members - quiet:(nullable NSNumber *)quiet - customMessage:(nullable NSString *)customMessage; - -/// -/// Returns the status of an asynchronous job. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGJobStatus` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)checkJobStatus:(NSString *)asyncJobId; - -/// -/// Returns the status of an asynchronous job for sharing a folder. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGRemoveMemberJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)checkRemoveMemberJobStatus:(NSString *)asyncJobId; - -/// -/// Returns the status of an asynchronous job for sharing a folder. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)checkShareJobStatus:(NSString *)asyncJobId; - -/// -/// DEPRECATED: Create a shared link. If a shared link already exists for the given path, that link is returned. -/// Previously, it was technically possible to break a shared link by moving or renaming the corresponding file or -/// folder. In the future, this will no longer be the case, so your app shouldn't rely on this behavior. Instead, if -/// your app needs to revoke a shared link, use `revokeSharedLink`. -/// -/// @param path The path to share. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGPathLinkMetadata` object on success or a -/// `DBSHARINGCreateSharedLinkError` object on failure. -/// -- (DBRpcTask *)createSharedLink:(NSString *)path - __deprecated_msg("createSharedLink is deprecated. Use createSharedLinkWithSettings."); - -/// -/// DEPRECATED: Create a shared link. If a shared link already exists for the given path, that link is returned. -/// Previously, it was technically possible to break a shared link by moving or renaming the corresponding file or -/// folder. In the future, this will no longer be the case, so your app shouldn't rely on this behavior. Instead, if -/// your app needs to revoke a shared link, use `revokeSharedLink`. -/// -/// @param path The path to share. -/// @param pendingUpload If it's okay to share a path that does not yet exist, set this to either `file` in -/// `DBSHARINGPendingUploadMode` or `folder` in `DBSHARINGPendingUploadMode` to indicate whether to assume it's a file -/// or folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGPathLinkMetadata` object on success or a -/// `DBSHARINGCreateSharedLinkError` object on failure. -/// -- (DBRpcTask *) - createSharedLink:(NSString *)path - shortUrl:(nullable NSNumber *)shortUrl - pendingUpload:(nullable DBSHARINGPendingUploadMode *)pendingUpload - __deprecated_msg("createSharedLink is deprecated. Use createSharedLinkWithSettings."); - -/// -/// Create a shared link with custom settings. If no settings are given then the default visibility is `public` in -/// `DBSHARINGRequestedVisibility` (The resolved visibility, though, may depend on other aspects such as team and shared -/// folder settings). -/// -/// @param path The path to be shared by the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGCreateSharedLinkWithSettingsError` object on failure. -/// -- (DBRpcTask *) - createSharedLinkWithSettings:(NSString *)path; - -/// -/// Create a shared link with custom settings. If no settings are given then the default visibility is `public` in -/// `DBSHARINGRequestedVisibility` (The resolved visibility, though, may depend on other aspects such as team and shared -/// folder settings). -/// -/// @param path The path to be shared by the shared link. -/// @param settings The requested settings for the newly created shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGCreateSharedLinkWithSettingsError` object on failure. -/// -- (DBRpcTask *) - createSharedLinkWithSettings:(NSString *)path - settings:(nullable DBSHARINGSharedLinkSettings *)settings; - -/// -/// Returns shared file metadata. -/// -/// @param file The file to query. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMetadata` object on success or -/// a `DBSHARINGGetFileMetadataError` object on failure. -/// -- (DBRpcTask *)getFileMetadata:(NSString *)file; - -/// -/// Returns shared file metadata. -/// -/// @param file The file to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFileMetadata` field describing the actions the authenticated user can perform on -/// the file. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMetadata` object on success or -/// a `DBSHARINGGetFileMetadataError` object on failure. -/// -- (DBRpcTask *) - getFileMetadata:(NSString *)file - actions:(nullable NSArray *)actions; - -/// -/// Returns shared file metadata. -/// -/// @param files The files to query. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *)getFileMetadataBatch: - (NSArray *)files; - -/// -/// Returns shared file metadata. -/// -/// @param files The files to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFileMetadata` field describing the actions the authenticated user can perform on -/// the file. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *) - getFileMetadataBatch:(NSArray *)files - actions:(nullable NSArray *)actions; - -/// -/// Returns shared folder metadata by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *)getFolderMetadata: - (NSString *)sharedFolderId; - -/// -/// Returns shared folder metadata by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *) - getFolderMetadata:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *)getSharedLinkFileData: - (NSString *)url; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *) - getSharedLinkFileData:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *) - getSharedLinkFileData:(NSString *)url - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *) - getSharedLinkFileData:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *)getSharedLinkMetadata:(NSString *)url; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *) - getSharedLinkMetadata:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -/// -/// DEPRECATED: Returns a list of LinkMetadata objects for this user, including collection links. If no path is given, -/// returns a list of all shared links for the current user, including collection links, up to a maximum of 1000 links. -/// If a non-empty path is given, returns a list of all shared links that allow access to the given path. Collection -/// links are never returned in this case. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGGetSharedLinksResult` object on success -/// or a `DBSHARINGGetSharedLinksError` object on failure. -/// -- (DBRpcTask *) - getSharedLinks __deprecated_msg("getSharedLinks is deprecated. Use listSharedLinks."); - -/// -/// DEPRECATED: Returns a list of LinkMetadata objects for this user, including collection links. If no path is given, -/// returns a list of all shared links for the current user, including collection links, up to a maximum of 1000 links. -/// If a non-empty path is given, returns a list of all shared links that allow access to the given path. Collection -/// links are never returned in this case. -/// -/// @param path See `getSharedLinks` description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGGetSharedLinksResult` object on success -/// or a `DBSHARINGGetSharedLinksError` object on failure. -/// -- (DBRpcTask *)getSharedLinks:(nullable NSString *)path - __deprecated_msg("getSharedLinks is deprecated. Use listSharedLinks."); - -/// -/// Use to obtain the members who have been invited to a file, both inherited and uninherited members. -/// -/// @param file The file for which you want to see members. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMembers` object on success or a -/// `DBSHARINGListFileMembersError` object on failure. -/// -- (DBRpcTask *)listFileMembers:(NSString *)file; - -/// -/// Use to obtain the members who have been invited to a file, both inherited and uninherited members. -/// -/// @param file The file for which you want to see members. -/// @param actions The actions for which to return permissions on a member. -/// @param includeInherited Whether to include members who only have access from a parent shared folder. -/// @param limit Number of members to return max per query. Defaults to 100 if no limit is specified. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMembers` object on success or a -/// `DBSHARINGListFileMembersError` object on failure. -/// -- (DBRpcTask *) - listFileMembers:(NSString *)file - actions:(nullable NSArray *)actions - includeInherited:(nullable NSNumber *)includeInherited - limit:(nullable NSNumber *)limit; - -/// -/// Get members of multiple files at once. The arguments to this route are more limited, and the limit on query result -/// size per file is more strict. To customize the results more, use the individual file endpoint. Inherited users and -/// groups are not included in the result, and permissions are not returned for this endpoint. -/// -/// @param files Files for which to return members. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *)listFileMembersBatch: - (NSArray *)files; - -/// -/// Get members of multiple files at once. The arguments to this route are more limited, and the limit on query result -/// size per file is more strict. To customize the results more, use the individual file endpoint. Inherited users and -/// groups are not included in the result, and permissions are not returned for this endpoint. -/// -/// @param files Files for which to return members. -/// @param limit Number of members to return max per query. Defaults to 10 if no limit is specified. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *) - listFileMembersBatch:(NSArray *)files - limit:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `listFileMembers` or `listFileMembersBatch`, use this to paginate through all -/// shared file members. -/// -/// @param cursor The cursor returned by your last call to `listFileMembers`, `listFileMembersContinue`, or -/// `listFileMembersBatch`. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMembers` object on success or a -/// `DBSHARINGListFileMembersContinueError` object on failure. -/// -- (DBRpcTask *)listFileMembersContinue: - (NSString *)cursor; - -/// -/// Returns shared folder membership by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMembers` object on success or -/// a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *)listFolderMembers: - (NSString *)sharedFolderId; - -/// -/// Returns shared folder membership by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMembers` object on success or -/// a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *) - listFolderMembers:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions - limit:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `listFolderMembers`, use this to paginate through all shared folder members. -/// -/// @param cursor The cursor returned by your last call to `listFolderMembers` or `listFolderMembersContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMembers` object on success or -/// a `DBSHARINGListFolderMembersContinueError` object on failure. -/// -- (DBRpcTask *)listFolderMembersContinue: - (NSString *)cursor; - -/// -/// Return the list of all shared folders the current user has access to. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)listFolders; - -/// -/// Return the list of all shared folders the current user has access to. -/// -/// @param limit The maximum number of results to return per request. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)listFolders:(nullable NSNumber *)limit - actions:(nullable NSArray *) - actions; - -/// -/// Once a cursor has been retrieved from `listFolders`, use this to paginate through all shared folders. The cursor -/// must come from a previous call to `listFolders` or `listFoldersContinue`. -/// -/// @param cursor The cursor returned by the previous API call specified in the endpoint description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `DBSHARINGListFoldersContinueError` object on failure. -/// -- (DBRpcTask *)listFoldersContinue: - (NSString *)cursor; - -/// -/// Return the list of all shared folders the current user can mount or unmount. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)listMountableFolders; - -/// -/// Return the list of all shared folders the current user can mount or unmount. -/// -/// @param limit The maximum number of results to return per request. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *) - listMountableFolders:(nullable NSNumber *)limit - actions:(nullable NSArray *)actions; - -/// -/// Once a cursor has been retrieved from `listMountableFolders`, use this to paginate through all mountable shared -/// folders. The cursor must come from a previous call to `listMountableFolders` or `listMountableFoldersContinue`. -/// -/// @param cursor The cursor returned by the previous API call specified in the endpoint description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `DBSHARINGListFoldersContinueError` object on failure. -/// -- (DBRpcTask *)listMountableFoldersContinue: - (NSString *)cursor; - -/// -/// Returns a list of all files shared with current user. Does not include files the user has received via shared -/// folders, and does not include unclaimed invitations. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFilesResult` object on success or a -/// `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *)listReceivedFiles; - -/// -/// Returns a list of all files shared with current user. Does not include files the user has received via shared -/// folders, and does not include unclaimed invitations. -/// -/// @param limit Number of files to return max per query. Defaults to 100 if no limit is specified. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFileMetadata` field describing the actions the authenticated user can perform on -/// the file. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFilesResult` object on success or a -/// `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *) - listReceivedFiles:(nullable NSNumber *)limit - actions:(nullable NSArray *)actions; - -/// -/// Get more results with a cursor from `listReceivedFiles`. -/// -/// @param cursor Cursor in `cursor` in `DBSHARINGListFilesResult`. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFilesResult` object on success or a -/// `DBSHARINGListFilesContinueError` object on failure. -/// -- (DBRpcTask *)listReceivedFilesContinue: - (NSString *)cursor; - -/// -/// List shared links of this user. If no path is given, returns a list of all shared links for the current user. For -/// members of business teams using team space and member folders, returns all shared links in the team member's home -/// folder unless the team space ID is specified in the request header. For more information, refer to the Namespace -/// Guide https://www.dropbox.com/developers/reference/namespace-guide. If a non-empty path is given, returns a list of -/// all shared links that allow access to the given path - direct links to the given path and links to parent folders of -/// the given path. Links to parent folders can be suppressed by setting direct_only to true. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListSharedLinksResult` object on success -/// or a `DBSHARINGListSharedLinksError` object on failure. -/// -- (DBRpcTask *)listSharedLinks; - -/// -/// List shared links of this user. If no path is given, returns a list of all shared links for the current user. For -/// members of business teams using team space and member folders, returns all shared links in the team member's home -/// folder unless the team space ID is specified in the request header. For more information, refer to the Namespace -/// Guide https://www.dropbox.com/developers/reference/namespace-guide. If a non-empty path is given, returns a list of -/// all shared links that allow access to the given path - direct links to the given path and links to parent folders of -/// the given path. Links to parent folders can be suppressed by setting direct_only to true. -/// -/// @param path See `listSharedLinks` description. -/// @param cursor The cursor returned by your last call to `listSharedLinks`. -/// @param directOnly See `listSharedLinks` description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListSharedLinksResult` object on success -/// or a `DBSHARINGListSharedLinksError` object on failure. -/// -- (DBRpcTask *) - listSharedLinks:(nullable NSString *)path - cursor:(nullable NSString *)cursor - directOnly:(nullable NSNumber *)directOnly; - -/// -/// Modify the shared link's settings. If the requested visibility conflict with the shared links policy of the team or -/// the shared folder (in case the linked file is part of a shared folder) then the `resolvedVisibility` in -/// `DBSHARINGLinkPermissions` of the returned SharedLinkMetadata will reflect the actual visibility of the shared link -/// and the `requestedVisibility` in `DBSHARINGLinkPermissions` will reflect the requested visibility. -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGModifySharedLinkSettingsError` object on failure. -/// -- (DBRpcTask *) - modifySharedLinkSettings:(NSString *)url - settings:(DBSHARINGSharedLinkSettings *)settings; - -/// -/// Modify the shared link's settings. If the requested visibility conflict with the shared links policy of the team or -/// the shared folder (in case the linked file is part of a shared folder) then the `resolvedVisibility` in -/// `DBSHARINGLinkPermissions` of the returned SharedLinkMetadata will reflect the actual visibility of the shared link -/// and the `requestedVisibility` in `DBSHARINGLinkPermissions` will reflect the requested visibility. -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// @param removeExpiration If set to true, removes the expiration of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGModifySharedLinkSettingsError` object on failure. -/// -- (DBRpcTask *) - modifySharedLinkSettings:(NSString *)url - settings:(DBSHARINGSharedLinkSettings *)settings - removeExpiration:(nullable NSNumber *)removeExpiration; - -/// -/// The current user mounts the designated folder. Mount a shared folder for a user after they have been added as a -/// member. Once mounted, the shared folder will appear in their Dropbox. -/// -/// @param sharedFolderId The ID of the shared folder to mount. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGMountFolderError` object on failure. -/// -- (DBRpcTask *)mountFolder:(NSString *)sharedFolderId; - -/// -/// The current user relinquishes their membership in the designated file. Note that the current user may still have -/// inherited access to this file through the parent folder. -/// -/// @param file The path or id for the file. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGRelinquishFileMembershipError` object on failure. -/// -- (DBRpcTask *)relinquishFileMembership:(NSString *)file; - -/// -/// The current user relinquishes their membership in the designated shared folder and will no longer have access to the -/// folder. A folder owner cannot relinquish membership in their own folder. This will run synchronously if -/// leave_a_copy is false, and asynchronously if leave_a_copy is true. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGRelinquishFolderMembershipError` object on failure. -/// -- (DBRpcTask *)relinquishFolderMembership: - (NSString *)sharedFolderId; - -/// -/// The current user relinquishes their membership in the designated shared folder and will no longer have access to the -/// folder. A folder owner cannot relinquish membership in their own folder. This will run synchronously if -/// leave_a_copy is false, and asynchronously if leave_a_copy is true. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy Keep a copy of the folder's contents upon relinquishing membership. This must be set to false when -/// the folder is within a team folder or another shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGRelinquishFolderMembershipError` object on failure. -/// -- (DBRpcTask *) - relinquishFolderMembership:(NSString *)sharedFolderId - leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// DEPRECATED: Identical to remove_file_member_2 but with less information returned. -/// -/// @param file File from which to remove members. -/// @param member Member to remove from this file. Note that even if an email is specified, it may result in the removal -/// of a user (not an invitee) if the user's main account corresponds to that email address. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGFileMemberActionIndividualResult` object -/// on success or a `DBSHARINGRemoveFileMemberError` object on failure. -/// -- (DBRpcTask *) - removeFileMember:(NSString *)file - member:(DBSHARINGMemberSelector *)member - __deprecated_msg("removeFileMember is deprecated. Use removeFileMember2."); - -/// -/// Removes a specified member from the file. -/// -/// @param file File from which to remove members. -/// @param member Member to remove from this file. Note that even if an email is specified, it may result in the removal -/// of a user (not an invitee) if the user's main account corresponds to that email address. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGFileMemberRemoveActionResult` object on -/// success or a `DBSHARINGRemoveFileMemberError` object on failure. -/// -- (DBRpcTask *) - removeFileMember2:(NSString *)file - member:(DBSHARINGMemberSelector *)member; - -/// -/// Allows an owner or editor (if the ACL update policy allows) of a shared folder to remove another member. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member to remove from the folder. -/// @param leaveACopy If true, the removed user will keep their copy of the folder after it's unshared, assuming it was -/// mounted. Otherwise, it will be removed from their Dropbox. This must be set to false when removing a group, or when -/// the folder is within a team folder or another shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchResultBase` object on success or a -/// `DBSHARINGRemoveFolderMemberError` object on failure. -/// -- (DBRpcTask *) - removeFolderMember:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - leaveACopy:(NSNumber *)leaveACopy; - -/// -/// Revoke a shared link. Note that even after revoking a shared link to a file, the file may be accessible if there are -/// shared links leading to any of the file parent folders. To list all shared links that enable access to a specific -/// file, you can use the `listSharedLinks` with the file as the `path` in `DBSHARINGListSharedLinksArg` argument. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGRevokeSharedLinkError` object on failure. -/// -- (DBRpcTask *)revokeSharedLink:(NSString *)url; - -/// -/// Change the inheritance policy of an existing Shared Folder. Only permitted for shared folders in a shared team root. -/// If a `asyncJobId` in `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the -/// action completes to get the metadata for the folder. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGSetAccessInheritanceError` object on failure. -/// -- (DBRpcTask *)setAccessInheritance: - (NSString *)sharedFolderId; - -/// -/// Change the inheritance policy of an existing Shared Folder. Only permitted for shared folders in a shared team root. -/// If a `asyncJobId` in `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the -/// action completes to get the metadata for the folder. -/// -/// @param accessInheritance The access inheritance settings for the folder. -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGSetAccessInheritanceError` object on failure. -/// -- (DBRpcTask *) - setAccessInheritance:(NSString *)sharedFolderId - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Share a folder with collaborators. Most sharing will be completed synchronously. Large folders will be completed -/// asynchronously. To make testing the async case repeatable, set `ShareFolderArg.force_async`. If a `asyncJobId` in -/// `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the action completes to -/// get the metadata for the folder. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGShareFolderError` object on failure. -/// -- (DBRpcTask *)shareFolder:(NSString *)path; - -/// -/// Share a folder with collaborators. Most sharing will be completed synchronously. Large folders will be completed -/// asynchronously. To make testing the async case repeatable, set `ShareFolderArg.force_async`. If a `asyncJobId` in -/// `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the action completes to -/// get the metadata for the folder. -/// -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// @param linkSettings Settings on the link for this folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGShareFolderError` object on failure. -/// -- (DBRpcTask *) - shareFolder:(NSString *)path - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - forceAsync:(nullable NSNumber *)forceAsync - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance - actions:(nullable NSArray *)actions - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings; - -/// -/// Transfer ownership of a shared folder to a member of the shared folder. User must have `owner` in -/// `DBSHARINGAccessLevel` access to the shared folder to perform a transfer. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param toDropboxId A account or team member ID to transfer ownership to. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGTransferFolderError` object on failure. -/// -- (DBRpcTask *)transferFolder:(NSString *)sharedFolderId - toDropboxId:(NSString *)toDropboxId; - -/// -/// The current user unmounts the designated folder. They can re-mount the folder at a later time using `mountFolder`. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGUnmountFolderError` object on failure. -/// -- (DBRpcTask *)unmountFolder:(NSString *)sharedFolderId; - -/// -/// Remove all members from this file. Does not remove inherited members. -/// -/// @param file The file to unshare. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGUnshareFileError` object on failure. -/// -- (DBRpcTask *)unshareFile:(NSString *)file; - -/// -/// Allows a shared folder owner to unshare the folder. You'll need to call `checkJobStatus` to determine if the action -/// has completed successfully. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGUnshareFolderError` object on failure. -/// -- (DBRpcTask *)unshareFolder:(NSString *)sharedFolderId; - -/// -/// Allows a shared folder owner to unshare the folder. You'll need to call `checkJobStatus` to determine if the action -/// has completed successfully. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy If true, members of this shared folder will get a copy of this folder after it's unshared. -/// Otherwise, it will be removed from their Dropbox. The current user, who is an owner, will always retain their copy. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGUnshareFolderError` object on failure. -/// -- (DBRpcTask *)unshareFolder:(NSString *)sharedFolderId - leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// Changes a member's access on a shared file. -/// -/// @param file File for which we are changing a member's access. -/// @param member The member whose access we are changing. -/// @param accessLevel The new access level for the member. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGMemberAccessLevelResult` object on -/// success or a `DBSHARINGFileMemberActionError` object on failure. -/// -- (DBRpcTask *) - updateFileMember:(NSString *)file - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -/// -/// Allows an owner or editor of a shared folder to update another member's permissions. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member of the shared folder to update. Only the `dropboxId` in `DBSHARINGMemberSelector` may be -/// set at this time. -/// @param accessLevel The new access level for member. `owner` in `DBSHARINGAccessLevel` is disallowed. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGMemberAccessLevelResult` object on -/// success or a `DBSHARINGUpdateFolderMemberError` object on failure. -/// -- (DBRpcTask *) - updateFolderMember:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -/// -/// Update the sharing policies for a shared folder. User must have `owner` in `DBSHARINGAccessLevel` access to the -/// shared folder to update its policies. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGUpdateFolderPolicyError` object on failure. -/// -- (DBRpcTask *)updateFolderPolicy: - (NSString *)sharedFolderId; - -/// -/// Update the sharing policies for a shared folder. User must have `owner` in `DBSHARINGAccessLevel` access to the -/// shared folder to update its policies. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param memberPolicy Who can be a member of this shared folder. Only applicable if the current user is on a team. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared folder. -/// @param sharedLinkPolicy The policy to apply to shared links created for content inside this shared folder. The -/// current user must be on a team to set this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param linkSettings Settings on the link for this folder. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGUpdateFolderPolicyError` object on failure. -/// -- (DBRpcTask *) - updateFolderPolicy:(NSString *)sharedFolderId - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings - actions:(nullable NSArray *)actions; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserFileMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserFileMembershipInfo.h deleted file mode 100644 index 0f61b349..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserFileMembershipInfo.h +++ /dev/null @@ -1,116 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGUserMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSEENSTATEPlatformType; -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberPermission; -@class DBSHARINGUserFileMembershipInfo; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFileMembershipInfo` struct. -/// -/// The information about a user member of the shared content with an appended -/// last seen timestamp. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUserFileMembershipInfo : DBSHARINGUserMembershipInfo - -#pragma mark - Instance fields - -/// The UTC timestamp of when the user has last seen the content. Only populated -/// if the user has seen the content and the caller has a plan that includes -/// viewer history. -@property (nonatomic, readonly, nullable) NSDate *timeLastSeen; - -/// The platform on which the user has last seen the content, or unknown. -@property (nonatomic, readonly, nullable) DBSEENSTATEPlatformType *platformType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// @param timeLastSeen The UTC timestamp of when the user has last seen the -/// content. Only populated if the user has seen the content and the caller has -/// a plan that includes viewer history. -/// @param platformType The platform on which the user has last seen the -/// content, or unknown. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - user:(DBSHARINGUserInfo *)user - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited - timeLastSeen:(nullable NSDate *)timeLastSeen - platformType:(nullable DBSEENSTATEPlatformType *)platformType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType user:(DBSHARINGUserInfo *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserFileMembershipInfo` struct. -/// -@interface DBSHARINGUserFileMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGUserFileMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGUserFileMembershipInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUserFileMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUserFileMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGUserFileMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUserFileMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGUserFileMembershipInfo` object. -/// -+ (DBSHARINGUserFileMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserInfo.h deleted file mode 100644 index 798a22f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserInfo.h +++ /dev/null @@ -1,116 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfo` struct. -/// -/// Basic information about a user. Use `usersAccount` and `usersAccountBatch` -/// to obtain more detailed information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUserInfo : NSObject - -#pragma mark - Instance fields - -/// The account ID of the user. -@property (nonatomic, readonly, copy) NSString *accountId; - -/// Email address of user. -@property (nonatomic, readonly, copy) NSString *email; - -/// The display name of the user. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// If the user is in the same team as current user. -@property (nonatomic, readonly) NSNumber *sameTeam; - -/// The team member ID of the shared folder member. Only present if sameTeam is -/// true. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The account ID of the user. -/// @param email Email address of user. -/// @param displayName The display name of the user. -/// @param sameTeam If the user is in the same team as current user. -/// @param teamMemberId The team member ID of the shared folder member. Only -/// present if sameTeam is true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - email:(NSString *)email - displayName:(NSString *)displayName - sameTeam:(NSNumber *)sameTeam - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The account ID of the user. -/// @param email Email address of user. -/// @param displayName The display name of the user. -/// @param sameTeam If the user is in the same team as current user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - email:(NSString *)email - displayName:(NSString *)displayName - sameTeam:(NSNumber *)sameTeam; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfo` struct. -/// -@interface DBSHARINGUserInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGUserInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGUserInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUserInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUserInfo *)instance; - -/// -/// Deserializes `DBSHARINGUserInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUserInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGUserInfo` object. -/// -+ (DBSHARINGUserInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserMembershipInfo.h deleted file mode 100644 index 8521c654..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGUserMembershipInfo.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberPermission; -@class DBSHARINGUserInfo; -@class DBSHARINGUserMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserMembershipInfo` struct. -/// -/// The information about a user member of the shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUserMembershipInfo : DBSHARINGMembershipInfo - -#pragma mark - Instance fields - -/// The account information for the membership user. -@property (nonatomic, readonly) DBSHARINGUserInfo *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - user:(DBSHARINGUserInfo *)user - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType user:(DBSHARINGUserInfo *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserMembershipInfo` struct. -/// -@interface DBSHARINGUserMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGUserMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGUserMembershipInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUserMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUserMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGUserMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUserMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGUserMembershipInfo` object. -/// -+ (DBSHARINGUserMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGViewerInfoPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGViewerInfoPolicy.h deleted file mode 100644 index cbb20065..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGViewerInfoPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ViewerInfoPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGViewerInfoPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGViewerInfoPolicyTag` enum type represents the possible tag -/// states with which the `DBSHARINGViewerInfoPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGViewerInfoPolicyTag) { - /// Viewer information is available on this file. - DBSHARINGViewerInfoPolicyEnabled, - - /// Viewer information is disabled on this file. - DBSHARINGViewerInfoPolicyDisabled, - - /// (no description). - DBSHARINGViewerInfoPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGViewerInfoPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Viewer information is available on -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Viewer information is disabled on -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGViewerInfoPolicy` union. -/// -@interface DBSHARINGViewerInfoPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGViewerInfoPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGViewerInfoPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGViewerInfoPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGViewerInfoPolicy *)instance; - -/// -/// Deserializes `DBSHARINGViewerInfoPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGViewerInfoPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGViewerInfoPolicy` object. -/// -+ (DBSHARINGViewerInfoPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibility.h deleted file mode 100644 index 97a7fa13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibility.h +++ /dev/null @@ -1,208 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Visibility` union. -/// -/// Who can access a shared link. The most open visibility is public. The -/// default depends on many aspects, such as team and user preferences and -/// shared folder settings. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGVisibilityTag` enum type represents the possible tag states -/// with which the `DBSHARINGVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGVisibilityPassword, - - /// Only members of the same team who have the link-specific password can - /// access the link. - DBSHARINGVisibilityTeamAndPassword, - - /// Only members of the shared folder containing the linked file can access - /// the link. Login is required. - DBSHARINGVisibilitySharedFolderOnly, - - /// (no description). - DBSHARINGVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "team_and_password". -/// -/// Description of the "team_and_password" tag state: Only members of the same -/// team who have the link-specific password can access the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndPassword; - -/// -/// Initializes union class with tag state of "shared_folder_only". -/// -/// Description of the "shared_folder_only" tag state: Only members of the -/// shared folder containing the linked file can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_password". -/// -/// @return Whether the union's current tag state has value "team_and_password". -/// -- (BOOL)isTeamAndPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_only". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_only". -/// -- (BOOL)isSharedFolderOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGVisibility` union. -/// -@interface DBSHARINGVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGVisibility` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGVisibility *)instance; - -/// -/// Deserializes `DBSHARINGVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGVisibility` object. -/// -+ (DBSHARINGVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibilityPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibilityPolicy.h deleted file mode 100644 index 87d01cd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibilityPolicy.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAlphaResolvedVisibility; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGVisibilityPolicy; -@class DBSHARINGVisibilityPolicyDisallowedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `VisibilityPolicy` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGVisibilityPolicy : NSObject - -#pragma mark - Instance fields - -/// This is the value to submit when saving the visibility setting. -@property (nonatomic, readonly) DBSHARINGRequestedVisibility *policy; - -/// This is what the effective policy would be, if you selected this option. The -/// resolved policy is obtained after considering external effects such as -/// shared folder settings and team policy. This value is guaranteed to be -/// provided. -@property (nonatomic, readonly) DBSHARINGAlphaResolvedVisibility *resolvedPolicy; - -/// Whether the user is permitted to set the visibility to this policy. -@property (nonatomic, readonly) NSNumber *allowed; - -/// If allowed is false, this will provide the reason that the user is not -/// permitted to set the visibility to this policy. -@property (nonatomic, readonly, nullable) DBSHARINGVisibilityPolicyDisallowedReason *disallowedReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param policy This is the value to submit when saving the visibility -/// setting. -/// @param resolvedPolicy This is what the effective policy would be, if you -/// selected this option. The resolved policy is obtained after considering -/// external effects such as shared folder settings and team policy. This value -/// is guaranteed to be provided. -/// @param allowed Whether the user is permitted to set the visibility to this -/// policy. -/// @param disallowedReason If allowed is false, this will provide the reason -/// that the user is not permitted to set the visibility to this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPolicy:(DBSHARINGRequestedVisibility *)policy - resolvedPolicy:(DBSHARINGAlphaResolvedVisibility *)resolvedPolicy - allowed:(NSNumber *)allowed - disallowedReason:(nullable DBSHARINGVisibilityPolicyDisallowedReason *)disallowedReason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param policy This is the value to submit when saving the visibility -/// setting. -/// @param resolvedPolicy This is what the effective policy would be, if you -/// selected this option. The resolved policy is obtained after considering -/// external effects such as shared folder settings and team policy. This value -/// is guaranteed to be provided. -/// @param allowed Whether the user is permitted to set the visibility to this -/// policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPolicy:(DBSHARINGRequestedVisibility *)policy - resolvedPolicy:(DBSHARINGAlphaResolvedVisibility *)resolvedPolicy - allowed:(NSNumber *)allowed; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `VisibilityPolicy` struct. -/// -@interface DBSHARINGVisibilityPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGVisibilityPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGVisibilityPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGVisibilityPolicy *)instance; - -/// -/// Deserializes `DBSHARINGVisibilityPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGVisibilityPolicy` object. -/// -+ (DBSHARINGVisibilityPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibilityPolicyDisallowedReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibilityPolicyDisallowedReason.h deleted file mode 100644 index efa387ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSHARINGVisibilityPolicyDisallowedReason.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGVisibilityPolicyDisallowedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `VisibilityPolicyDisallowedReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGVisibilityPolicyDisallowedReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGVisibilityPolicyDisallowedReasonTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGVisibilityPolicyDisallowedReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGVisibilityPolicyDisallowedReasonTag) { - /// The user needs to delete and recreate the link to change the visibility - /// policy. - DBSHARINGVisibilityPolicyDisallowedReasonDeleteAndRecreate, - - /// The parent shared folder restricts sharing of links outside the shared - /// folder. To change the visibility policy, remove the restriction from the - /// parent shared folder. - DBSHARINGVisibilityPolicyDisallowedReasonRestrictedBySharedFolder, - - /// The team policy prevents links being shared outside the team. - DBSHARINGVisibilityPolicyDisallowedReasonRestrictedByTeam, - - /// The user needs to be on a team to set this policy. - DBSHARINGVisibilityPolicyDisallowedReasonUserNotOnTeam, - - /// The user is a basic user or is on a limited team. - DBSHARINGVisibilityPolicyDisallowedReasonUserAccountType, - - /// The user does not have permission. - DBSHARINGVisibilityPolicyDisallowedReasonPermissionDenied, - - /// (no description). - DBSHARINGVisibilityPolicyDisallowedReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGVisibilityPolicyDisallowedReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete_and_recreate". -/// -/// Description of the "delete_and_recreate" tag state: The user needs to delete -/// and recreate the link to change the visibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteAndRecreate; - -/// -/// Initializes union class with tag state of "restricted_by_shared_folder". -/// -/// Description of the "restricted_by_shared_folder" tag state: The parent -/// shared folder restricts sharing of links outside the shared folder. To -/// change the visibility policy, remove the restriction from the parent shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedBySharedFolder; - -/// -/// Initializes union class with tag state of "restricted_by_team". -/// -/// Description of the "restricted_by_team" tag state: The team policy prevents -/// links being shared outside the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByTeam; - -/// -/// Initializes union class with tag state of "user_not_on_team". -/// -/// Description of the "user_not_on_team" tag state: The user needs to be on a -/// team to set this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotOnTeam; - -/// -/// Initializes union class with tag state of "user_account_type". -/// -/// Description of the "user_account_type" tag state: The user is a basic user -/// or is on a limited team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAccountType; - -/// -/// Initializes union class with tag state of "permission_denied". -/// -/// Description of the "permission_denied" tag state: The user does not have -/// permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_and_recreate". -/// -/// @return Whether the union's current tag state has value -/// "delete_and_recreate". -/// -- (BOOL)isDeleteAndRecreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -- (BOOL)isRestrictedBySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_team". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_team". -/// -- (BOOL)isRestrictedByTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_on_team". -/// -/// @return Whether the union's current tag state has value "user_not_on_team". -/// -- (BOOL)isUserNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_account_type". -/// -/// @return Whether the union's current tag state has value "user_account_type". -/// -- (BOOL)isUserAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied". -/// -/// @return Whether the union's current tag state has value "permission_denied". -/// -- (BOOL)isPermissionDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGVisibilityPolicyDisallowedReason` -/// union. -/// -@interface DBSHARINGVisibilityPolicyDisallowedReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGVisibilityPolicyDisallowedReason` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGVisibilityPolicyDisallowedReason` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicyDisallowedReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGVisibilityPolicyDisallowedReason *)instance; - -/// -/// Deserializes `DBSHARINGVisibilityPolicyDisallowedReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicyDisallowedReason` API object. -/// -/// @return An instantiation of the `DBSHARINGVisibilityPolicyDisallowedReason` -/// object. -/// -+ (DBSHARINGVisibilityPolicyDisallowedReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBScopeRequest.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBScopeRequest.h deleted file mode 100644 index 0c9377eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBScopeRequest.h +++ /dev/null @@ -1,34 +0,0 @@ -/// -/// Copyright (c) 2020 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef NS_ENUM(NSUInteger, DBScopeType) { - DBScopeTypeTeam = 0, - DBScopeTypeUser, -}; - -/// Contains the information of requested scopes. -@interface DBScopeRequest : NSObject - -- (instancetype)init NS_UNAVAILABLE; - -/// -/// Designated Initializer. -/// -/// @param scopeType Type of the requested scopes. -/// @param scopes A list of scope returned by Dropbox server. Each scope correspond to a group of API endpoints. -/// To call one API endpoint you have to obtains the scope first otherwise you will get HTTP 401. -/// @param includeGrantedScopes If false, Dropbox will give you the scopes in scopes array. -/// Otherwise Dropbox server will return a token with all scopes user previously granted your app -/// together with the new scopes. -- (instancetype)initWithScopeType:(DBScopeType)scopeType - scopes:(NSArray *)scopes - includeGrantedScopes:(BOOL)includeGrantedScopes NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSerializableProtocol.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSerializableProtocol.h deleted file mode 100644 index 6fdd745e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSerializableProtocol.h +++ /dev/null @@ -1,44 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Protocol which all Obj-C SDK API route objects must implement, otherwise a compiler-warning -/// is generated. -/// -@protocol DBSerializable - -/// -/// Class method which returns a json-compatible dictionary representation of the -/// supplied object. -/// -/// @param instance An instance of the API object to be serialized. -/// -/// @return A serialized, json-compatible dictionary representation of the API object. -/// -+ (nullable NSDictionary *)serialize:(id)instance; - -/// -/// Class method which returns an instantiation of the supplied object as represented -/// by a json-compatible dictionary. -/// -/// @param dict A dictionary representation of the API object to be serialized. -/// -/// @return A deserialized, instantiation of the API object. -/// -+ (id)deserialize:(NSDictionary *)dict; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current object. -/// -- (NSString *)description; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSharedApplicationProtocol.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSharedApplicationProtocol.h deleted file mode 100644 index e4d541c9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBSharedApplicationProtocol.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Protocol implemented by platform-specific builds of the Obj-C SDK -/// for properly rendering the OAuth linking flow. -/// -@protocol DBSharedApplication - -typedef void (^DBOAuthCancelBlock)(void); - -/// -/// Presents a platform-specific error message, and halts the auth flow. -/// -/// @param message String to display which describes the error. -/// @param title String to display which titles the error view. -/// -- (void)presentErrorMessage:(NSString *)message title:(NSString *)title; - -/// -/// Presents a platform-specific error message, and halts the auth flow. Optional handlers may be provided for view -/// display buttons (mainly useful in the mobile case). -/// -/// @param message String to display which describes the error. -/// @param title String to display which titles the error view. -/// @param buttonHandlers Map from button name to button handler. -/// -- (void)presentErrorMessageWithHandlers:(NSString *)message - title:(NSString *)title - buttonHandlers:(NSDictionary *)buttonHandlers; - -/// -/// Presents platform-specific authorization paths. -/// -/// This method is called before more generic, platform-neutral auth methods. For example, in the mobile case, the Obj-C -/// SDK will use a direct authorization route with the Dropbox mobile app, if it is installed on the current device. -/// -/// @param authURL Gateway url to commence auth flow. -/// -- (BOOL)presentPlatformSpecificAuth:(NSURL *)authURL; - -/// -/// Presents platform-neutral auth flow. -/// -/// @param authURL Gateway url to commence auth flow. -/// @param cancelHandler Handler for cancelling auth flow. Opens "cancel" url to signal cancellation. -/// -- (void)presentAuthChannel:(NSURL *)authURL cancelHandler:(DBOAuthCancelBlock)cancelHandler; - -/// -/// Opens external app to handle url. -/// -/// This method opens whichever app is registered to handle the type of the supplied url, and then passes the supplied -/// url into the newly opened app. -/// -/// @param url Url to open with external app. -/// -- (void)presentExternalApp:(NSURL *)url; - -/// -/// Checks whether there is an external app registered to open the url type. -/// -/// @param url Url to check. -/// -/// @return Whether there is an external app registered to open the url type. -/// -- (BOOL)canPresentExternalApp:(NSURL *)url; - -/// Presents platform-specific loading UX indicating an async operation is ongoing and potentially blocking -/// user interaction while loading. -- (void)presentLoading; - -/// Dismisses loading UX. -- (void)dismissLoading; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneBase.h deleted file mode 100644 index 794c51f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneBase.h +++ /dev/null @@ -1,67 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBStoneSerializers.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Route object used to encapsulate route-specific information. -/// -@interface DBRoute : NSObject - -/// Name of the route. -@property (nonatomic, readonly, copy) NSString *name; - -/// Namespace that the route is contained within. -@property (nonatomic, readonly, copy) NSString *namespace_; - -/// Whether the route is deprecated. -@property (nonatomic, readonly) NSNumber *deprecated; - -/// Class of the route's result object type (must implement `DBSerializable` -/// protocol). -@property (nonatomic, readonly, nullable) Class resultType; - -/// Class of the route's error object type (must implement `DBSerializable` -/// protocol). Note: this class is only for route-specific errors, as opposed -/// to more generic Dropbox API errors, as represented by the `DBRequestError` -/// class. -@property (nonatomic, readonly, nullable) Class errorType; - -/// Custom attributes associated with each route (can pertain to authentication -/// type, host cluster, request-type, etc.). -@property (nonatomic, readonly, nullable) NSDictionary *attrs; - -/// Serialization block for the route's result object type, if that result object -/// type is an `NSArray`, otherwise nil. -@property (nonatomic, readonly, nullable) id (^dataStructSerialBlock)(id dataStruct); - -/// Deserialization block for the route's result object type, if that result object -/// type is a data structure, otherwise nil. -@property (nonatomic, readonly, nullable) id (^dataStructDeserialBlock)(id dataStruct); - -/// Initializes the route object. -- (nonnull instancetype)init:(NSString *)name - namespace_:(NSString *)namespace_ - deprecated:(NSNumber *)deprecated - resultType:(nullable Class)resultType - errorType:(nullable Class)errorType - attrs:(NSDictionary *)attrs - dataStructSerialBlock:(id (^_Nullable)(id))dataStructSerialBlock - dataStructDeserialBlock:(id (^_Nullable)(id))dataStructDeserialBlock; - -@end - -/// -/// Wrapper object designed to represent a nil response from the Dropbox API. -/// -@interface DBNilObject : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneSerializers.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneSerializers.h deleted file mode 100644 index ec11e38d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneSerializers.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBSerializableProtocol.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Category to ensure `NSArray` class "implements" `DBSerializable` protocol, which is -/// required for all Obj-C SDK API route arguments. This avoids a compiler warning for -/// `NSArray` route arguments. -/// -@interface NSArray (DBSerializable) - -+ (nullable NSDictionary *)serialize:(id)obj; - -+ (id)deserialize:(NSDictionary *)dict; - -@end - -/// -/// Category to ensure `NSString` class "implements" `DBSerializable` protocol, which is -/// required for all Obj-C SDK API route arguments. This avoids a compiler warning for -/// `NSString` route arguments. -/// -@interface NSString (DBSerializable) - -+ (nullable NSDictionary *)serialize:(id)obj; - -+ (id)deserialize:(NSDictionary *)dict; - -@end - -/// -/// Serializer functions used by the SDK to serialize/deserialize `NSDate` types. -/// -@interface DBNSDateSerializer : NSObject - -/// Returns a json-compatible `NSString` that represents an `NSDate` type based on the supplied -/// `NSDate` object and date format string. -+ (NSString *)serialize:(NSDate *)value dateFormat:(NSString *)dateFormat; - -/// Returns an `NSDate` object from the supplied `NSString`-representation of an `NSDate` object and -/// the supplied date format string. -+ (NSDate *)deserialize:(NSString *)value dateFormat:(NSString *)dateFormat; - -@end - -/// -/// Serializer functions used by the SDK to serialize/deserialize `NSArray` types. -/// -@interface DBArraySerializer : NSObject - -/// Applies a serialization block to each element in the array and returns a new array with -/// all elements serialized. The serialization block either serializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSArray *)serialize:(NSArray *)value withBlock:(id (^_Nonnull)(id))serializeBlock; - -/// Applies a deserialization block to each element in the array and returns a new array with -/// all elements deserialized. The serialization block either deserializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSArray *)deserialize:(NSArray *)jsonData withBlock:(id (^_Nonnull)(id))deserializeBlock; - -@end - -/// -/// Serializer functions used by the SDK to serialize/deserialize `NSArray` types. -/// -@interface DBMapSerializer : NSObject - -/// Applies a serialization block to each element in the map and returns a new map with -/// all elements serialized. The serialization block either serializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSDictionary *)serialize:(NSDictionary *)value withBlock:(id (^_Nonnull)(id))serializeBlock; - -/// Applies a deserialization block to each element in the map and returns a new map with -/// all elements deserialized. The serialization block either deserializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSDictionary *)deserialize:(NSDictionary *)jsonData withBlock:(id (^_Nonnull)(id))deserializeBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneValidators.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneValidators.h deleted file mode 100644 index ee246597..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBStoneValidators.h +++ /dev/null @@ -1,42 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Validator functions used by SDK to impose value constraints. -/// -@interface DBStoneValidators : NSObject - -/// Validator for `NSString` objects. Enforces minimum length and/or maximum length and/or regex pattern. -+ (void (^_Nonnull)(NSString *))stringValidator:(nullable NSNumber *)minLength - maxLength:(nullable NSNumber *)maxLength - pattern:(nullable NSString *)pattern; - -/// Validator for `NSNumber` objects. Enforces minimum value and/or maximum value. -+ (void (^_Nonnull)(NSNumber *))numericValidator:(nullable NSNumber *)minValue maxValue:(nullable NSNumber *)maxValue; - -/// Validator for `NSArray` objects. Enforces minimum number of items and/or maximum minimum number of items. Method -/// requires a validator block that can validate each item in the array. -+ (void (^_Nonnull)(NSArray *))arrayValidator:(nullable NSNumber *)minItems - maxItems:(nullable NSNumber *)maxItems - itemValidator:(void (^_Nullable)(T))itemValidator; - -/// Validator for `NSDictionary` objects. Enforces minimum number of items and/or maximum minimum number of items. -/// Method -/// requires a validator block that can validate each item in the array. -+ (void (^_Nonnull)(NSDictionary *))mapValidator:(void (^_Nullable)(T))itemValidator; - -/// Wrapper validator for nullable objects. Maintains a reference to the object's normal non-nullable validator. -+ (void (^_Nonnull)(T))nullableValidator:(void (^_Nonnull)(T))internalValidator; - -+ (void (^_Nonnull)(id))nonnullValidator:(void (^_Nullable)(id))internalValidator; - -+ (void)raiseIllegalStateErrorWithMessage:(NSString *)message; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMActiveWebSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMActiveWebSession.h deleted file mode 100644 index 368c23b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMActiveWebSession.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSession.h" - -@class DBTEAMActiveWebSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ActiveWebSession` struct. -/// -/// Information on active web sessions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMActiveWebSession : DBTEAMDeviceSession - -#pragma mark - Instance fields - -/// Information on the hosting device. -@property (nonatomic, readonly, copy) NSString *userAgent; - -/// Information on the hosting operating system. -@property (nonatomic, readonly, copy) NSString *os; - -/// Information on the browser used for this web session. -@property (nonatomic, readonly, copy) NSString *browser; - -/// The time this session expires. -@property (nonatomic, readonly, nullable) NSDate *expires; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param expires The time this session expires. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - userAgent:(NSString *)userAgent - os:(NSString *)os - browser:(NSString *)browser - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - userAgent:(NSString *)userAgent - os:(NSString *)os - browser:(NSString *)browser; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ActiveWebSession` struct. -/// -@interface DBTEAMActiveWebSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMActiveWebSession` instances. -/// -/// @param instance An instance of the `DBTEAMActiveWebSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMActiveWebSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMActiveWebSession *)instance; - -/// -/// Deserializes `DBTEAMActiveWebSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMActiveWebSession` API object. -/// -/// @return An instantiation of the `DBTEAMActiveWebSession` object. -/// -+ (DBTEAMActiveWebSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailResult.h deleted file mode 100644 index a336f326..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailResult.h +++ /dev/null @@ -1,383 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSECONDARYEMAILSSecondaryEmail; -@class DBTEAMAddSecondaryEmailResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailResult` union. -/// -/// Result of trying to add a secondary email to a user. 'success' is the only -/// value indicating that a secondary email was successfully added to a user. -/// The other values explain the type of error that occurred, and include the -/// email for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMAddSecondaryEmailResultTag` enum type represents the possible tag -/// states with which the `DBTEAMAddSecondaryEmailResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMAddSecondaryEmailResultTag) { - /// Describes a secondary email that was successfully added to a user. - DBTEAMAddSecondaryEmailResultSuccess, - - /// Secondary email is not available to be claimed by the user. - DBTEAMAddSecondaryEmailResultUnavailable, - - /// Secondary email is already a pending email for the user. - DBTEAMAddSecondaryEmailResultAlreadyPending, - - /// Secondary email is already a verified email for the user. - DBTEAMAddSecondaryEmailResultAlreadyOwnedByUser, - - /// User already has the maximum number of secondary emails allowed. - DBTEAMAddSecondaryEmailResultReachedLimit, - - /// A transient error occurred. Please try again later. - DBTEAMAddSecondaryEmailResultTransientError, - - /// An error occurred due to conflicting updates. Please try again later. - DBTEAMAddSecondaryEmailResultTooManyUpdates, - - /// An unknown error occurred. - DBTEAMAddSecondaryEmailResultUnknownError, - - /// Too many emails are being sent to this email address. Please try again - /// later. - DBTEAMAddSecondaryEmailResultRateLimited, - - /// (no description). - DBTEAMAddSecondaryEmailResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMAddSecondaryEmailResultTag tag; - -/// Describes a secondary email that was successfully added to a user. @note -/// Ensure the `isSuccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSECONDARYEMAILSSecondaryEmail *success; - -/// Secondary email is not available to be claimed by the user. @note Ensure the -/// `isUnavailable` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *unavailable; - -/// Secondary email is already a pending email for the user. @note Ensure the -/// `isAlreadyPending` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *alreadyPending; - -/// Secondary email is already a verified email for the user. @note Ensure the -/// `isAlreadyOwnedByUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *alreadyOwnedByUser; - -/// User already has the maximum number of secondary emails allowed. @note -/// Ensure the `isReachedLimit` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *reachedLimit; - -/// A transient error occurred. Please try again later. @note Ensure the -/// `isTransientError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *transientError; - -/// An error occurred due to conflicting updates. Please try again later. @note -/// Ensure the `isTooManyUpdates` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *tooManyUpdates; - -/// An unknown error occurred. @note Ensure the `isUnknownError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *unknownError; - -/// Too many emails are being sent to this email address. Please try again -/// later. @note Ensure the `isRateLimited` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *rateLimited; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a secondary email that was -/// successfully added to a user. -/// -/// @param success Describes a secondary email that was successfully added to a -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBSECONDARYEMAILSSecondaryEmail *)success; - -/// -/// Initializes union class with tag state of "unavailable". -/// -/// Description of the "unavailable" tag state: Secondary email is not available -/// to be claimed by the user. -/// -/// @param unavailable Secondary email is not available to be claimed by the -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnavailable:(NSString *)unavailable; - -/// -/// Initializes union class with tag state of "already_pending". -/// -/// Description of the "already_pending" tag state: Secondary email is already a -/// pending email for the user. -/// -/// @param alreadyPending Secondary email is already a pending email for the -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyPending:(NSString *)alreadyPending; - -/// -/// Initializes union class with tag state of "already_owned_by_user". -/// -/// Description of the "already_owned_by_user" tag state: Secondary email is -/// already a verified email for the user. -/// -/// @param alreadyOwnedByUser Secondary email is already a verified email for -/// the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyOwnedByUser:(NSString *)alreadyOwnedByUser; - -/// -/// Initializes union class with tag state of "reached_limit". -/// -/// Description of the "reached_limit" tag state: User already has the maximum -/// number of secondary emails allowed. -/// -/// @param reachedLimit User already has the maximum number of secondary emails -/// allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReachedLimit:(NSString *)reachedLimit; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: A transient error occurred. -/// Please try again later. -/// -/// @param transientError A transient error occurred. Please try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError:(NSString *)transientError; - -/// -/// Initializes union class with tag state of "too_many_updates". -/// -/// Description of the "too_many_updates" tag state: An error occurred due to -/// conflicting updates. Please try again later. -/// -/// @param tooManyUpdates An error occurred due to conflicting updates. Please -/// try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUpdates:(NSString *)tooManyUpdates; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: An unknown error occurred. -/// -/// @param unknownError An unknown error occurred. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError:(NSString *)unknownError; - -/// -/// Initializes union class with tag state of "rate_limited". -/// -/// Description of the "rate_limited" tag state: Too many emails are being sent -/// to this email address. Please try again later. -/// -/// @param rateLimited Too many emails are being sent to this email address. -/// Please try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimited:(NSString *)rateLimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "unavailable". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unavailable` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "unavailable". -/// -- (BOOL)isUnavailable; - -/// -/// Retrieves whether the union's current tag state has value "already_pending". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `alreadyPending` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "already_pending". -/// -- (BOOL)isAlreadyPending; - -/// -/// Retrieves whether the union's current tag state has value -/// "already_owned_by_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `alreadyOwnedByUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "already_owned_by_user". -/// -- (BOOL)isAlreadyOwnedByUser; - -/// -/// Retrieves whether the union's current tag state has value "reached_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `reachedLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "reached_limit". -/// -- (BOOL)isReachedLimit; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `transientError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_updates". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tooManyUpdates` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "too_many_updates". -/// -- (BOOL)isTooManyUpdates; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unknownError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value "rate_limited". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rateLimited` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "rate_limited". -/// -- (BOOL)isRateLimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMAddSecondaryEmailResult` union. -/// -@interface DBTEAMAddSecondaryEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailResult *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailResult` object. -/// -+ (DBTEAMAddSecondaryEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsArg.h deleted file mode 100644 index df9d6652..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailsArg; -@class DBTEAMUserSecondaryEmailsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailsArg : NSObject - -#pragma mark - Instance fields - -/// List of users and secondary emails to add. -@property (nonatomic, readonly) NSArray *dNewSecondaryEmails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewSecondaryEmails List of users and secondary emails to add. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewSecondaryEmails:(NSArray *)dNewSecondaryEmails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddSecondaryEmailsArg` struct. -/// -@interface DBTEAMAddSecondaryEmailsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailsArg` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailsArg *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsArg` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailsArg` object. -/// -+ (DBTEAMAddSecondaryEmailsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsError.h deleted file mode 100644 index 53beaf81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsError.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailsError` union. -/// -/// Error returned when adding secondary emails fails. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMAddSecondaryEmailsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMAddSecondaryEmailsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMAddSecondaryEmailsErrorTag) { - /// Secondary emails are disabled for the team. - DBTEAMAddSecondaryEmailsErrorSecondaryEmailsDisabled, - - /// A maximum of 20 secondary emails can be added in a single call. - DBTEAMAddSecondaryEmailsErrorTooManyEmails, - - /// (no description). - DBTEAMAddSecondaryEmailsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMAddSecondaryEmailsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "secondary_emails_disabled". -/// -/// Description of the "secondary_emails_disabled" tag state: Secondary emails -/// are disabled for the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailsDisabled; - -/// -/// Initializes union class with tag state of "too_many_emails". -/// -/// Description of the "too_many_emails" tag state: A maximum of 20 secondary -/// emails can be added in a single call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyEmails; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_emails_disabled". -/// -/// @return Whether the union's current tag state has value -/// "secondary_emails_disabled". -/// -- (BOOL)isSecondaryEmailsDisabled; - -/// -/// Retrieves whether the union's current tag state has value "too_many_emails". -/// -/// @return Whether the union's current tag state has value "too_many_emails". -/// -- (BOOL)isTooManyEmails; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMAddSecondaryEmailsError` union. -/// -@interface DBTEAMAddSecondaryEmailsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailsError` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailsError *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsError` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailsError` object. -/// -+ (DBTEAMAddSecondaryEmailsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsResult.h deleted file mode 100644 index 4f328a34..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAddSecondaryEmailsResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailsResult; -@class DBTEAMUserAddResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailsResult : NSObject - -#pragma mark - Instance fields - -/// List of users and secondary email results. -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param results List of users and secondary email results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResults:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddSecondaryEmailsResult` struct. -/// -@interface DBTEAMAddSecondaryEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailsResult` object. -/// -+ (DBTEAMAddSecondaryEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAdminTier.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAdminTier.h deleted file mode 100644 index e6a769ea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMAdminTier.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminTier` union. -/// -/// Describes which team-related admin permissions a user has. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAdminTier : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMAdminTierTag` enum type represents the possible tag states with -/// which the `DBTEAMAdminTier` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMAdminTierTag) { - /// User is an administrator of the team - has all permissions. - DBTEAMAdminTierTeamAdmin, - - /// User can do most user provisioning, de-provisioning and management. - DBTEAMAdminTierUserManagementAdmin, - - /// User can do a limited set of common support tasks for existing users. - /// Note: Dropbox is adding new types of admin roles; these may display as - /// support_admin. - DBTEAMAdminTierSupportAdmin, - - /// User is not an admin of the team. - DBTEAMAdminTierMemberOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMAdminTierTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_admin". -/// -/// Description of the "team_admin" tag state: User is an administrator of the -/// team - has all permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAdmin; - -/// -/// Initializes union class with tag state of "user_management_admin". -/// -/// Description of the "user_management_admin" tag state: User can do most user -/// provisioning, de-provisioning and management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManagementAdmin; - -/// -/// Initializes union class with tag state of "support_admin". -/// -/// Description of the "support_admin" tag state: User can do a limited set of -/// common support tasks for existing users. Note: Dropbox is adding new types -/// of admin roles; these may display as support_admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSupportAdmin; - -/// -/// Initializes union class with tag state of "member_only". -/// -/// Description of the "member_only" tag state: User is not an admin of the -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team_admin". -/// -/// @return Whether the union's current tag state has value "team_admin". -/// -- (BOOL)isTeamAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_management_admin". -/// -/// @return Whether the union's current tag state has value -/// "user_management_admin". -/// -- (BOOL)isUserManagementAdmin; - -/// -/// Retrieves whether the union's current tag state has value "support_admin". -/// -/// @return Whether the union's current tag state has value "support_admin". -/// -- (BOOL)isSupportAdmin; - -/// -/// Retrieves whether the union's current tag state has value "member_only". -/// -/// @return Whether the union's current tag state has value "member_only". -/// -- (BOOL)isMemberOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMAdminTier` union. -/// -@interface DBTEAMAdminTierSerializer : NSObject - -/// -/// Serializes `DBTEAMAdminTier` instances. -/// -/// @param instance An instance of the `DBTEAMAdminTier` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMAdminTier` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAdminTier *)instance; - -/// -/// Deserializes `DBTEAMAdminTier` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAdminTier` API object. -/// -/// @return An instantiation of the `DBTEAMAdminTier` object. -/// -+ (DBTEAMAdminTier *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMApiApp.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMApiApp.h deleted file mode 100644 index e08f1c72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMApiApp.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMApiApp; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApiApp` struct. -/// -/// Information on linked third party applications. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMApiApp : NSObject - -#pragma mark - Instance fields - -/// The application unique id. -@property (nonatomic, readonly, copy) NSString *appId; - -/// The application name. -@property (nonatomic, readonly, copy) NSString *appName; - -/// The application publisher name. -@property (nonatomic, readonly, copy, nullable) NSString *publisher; - -/// The publisher's URL. -@property (nonatomic, readonly, copy, nullable) NSString *publisherUrl; - -/// The time this application was linked. -@property (nonatomic, readonly, nullable) NSDate *linked; - -/// Whether the linked application uses a dedicated folder. -@property (nonatomic, readonly) NSNumber *isAppFolder; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId The application unique id. -/// @param appName The application name. -/// @param isAppFolder Whether the linked application uses a dedicated folder. -/// @param publisher The application publisher name. -/// @param publisherUrl The publisher's URL. -/// @param linked The time this application was linked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId - appName:(NSString *)appName - isAppFolder:(NSNumber *)isAppFolder - publisher:(nullable NSString *)publisher - publisherUrl:(nullable NSString *)publisherUrl - linked:(nullable NSDate *)linked; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param appId The application unique id. -/// @param appName The application name. -/// @param isAppFolder Whether the linked application uses a dedicated folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId appName:(NSString *)appName isAppFolder:(NSNumber *)isAppFolder; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApiApp` struct. -/// -@interface DBTEAMApiAppSerializer : NSObject - -/// -/// Serializes `DBTEAMApiApp` instances. -/// -/// @param instance An instance of the `DBTEAMApiApp` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMApiApp` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMApiApp *)instance; - -/// -/// Deserializes `DBTEAMApiApp` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMApiApp` API object. -/// -/// @return An instantiation of the `DBTEAMApiApp` object. -/// -+ (DBTEAMApiApp *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMBaseDfbReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMBaseDfbReport.h deleted file mode 100644 index 69cd23fb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMBaseDfbReport.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMBaseDfbReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BaseDfbReport` struct. -/// -/// Base report structure. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMBaseDfbReport : NSObject - -#pragma mark - Instance fields - -/// First date present in the results as 'YYYY-MM-DD' or None. -@property (nonatomic, readonly, copy) NSString *startDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BaseDfbReport` struct. -/// -@interface DBTEAMBaseDfbReportSerializer : NSObject - -/// -/// Serializes `DBTEAMBaseDfbReport` instances. -/// -/// @param instance An instance of the `DBTEAMBaseDfbReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMBaseDfbReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMBaseDfbReport *)instance; - -/// -/// Deserializes `DBTEAMBaseDfbReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMBaseDfbReport` API object. -/// -/// @return An instantiation of the `DBTEAMBaseDfbReport` object. -/// -+ (DBTEAMBaseDfbReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMBaseTeamFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMBaseTeamFolderError.h deleted file mode 100644 index 74c860c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMBaseTeamFolderError.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMBaseTeamFolderError; -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BaseTeamFolderError` union. -/// -/// Base error that all errors for existing team folders should extend. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMBaseTeamFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMBaseTeamFolderErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMBaseTeamFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMBaseTeamFolderErrorTag) { - /// (no description). - DBTEAMBaseTeamFolderErrorAccessError, - - /// (no description). - DBTEAMBaseTeamFolderErrorStatusError, - - /// (no description). - DBTEAMBaseTeamFolderErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMBaseTeamFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMBaseTeamFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMBaseTeamFolderError` union. -/// -@interface DBTEAMBaseTeamFolderErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMBaseTeamFolderError` instances. -/// -/// @param instance An instance of the `DBTEAMBaseTeamFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMBaseTeamFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMBaseTeamFolderError *)instance; - -/// -/// Deserializes `DBTEAMBaseTeamFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMBaseTeamFolderError` API object. -/// -/// @return An instantiation of the `DBTEAMBaseTeamFolderError` object. -/// -+ (DBTEAMBaseTeamFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupManagementType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupManagementType.h deleted file mode 100644 index 099da4c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupManagementType.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupManagementType` union. -/// -/// The group type determines how a group is managed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONGroupManagementType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCOMMONGroupManagementTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMCOMMONGroupManagementType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCOMMONGroupManagementTypeTag) { - /// A group which is managed by selected users. - DBTEAMCOMMONGroupManagementTypeUserManaged, - - /// A group which is managed by team admins only. - DBTEAMCOMMONGroupManagementTypeCompanyManaged, - - /// A group which is managed automatically by Dropbox. - DBTEAMCOMMONGroupManagementTypeSystemManaged, - - /// (no description). - DBTEAMCOMMONGroupManagementTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCOMMONGroupManagementTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_managed". -/// -/// Description of the "user_managed" tag state: A group which is managed by -/// selected users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManaged; - -/// -/// Initializes union class with tag state of "company_managed". -/// -/// Description of the "company_managed" tag state: A group which is managed by -/// team admins only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCompanyManaged; - -/// -/// Initializes union class with tag state of "system_managed". -/// -/// Description of the "system_managed" tag state: A group which is managed -/// automatically by Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManaged; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_managed". -/// -/// @return Whether the union's current tag state has value "user_managed". -/// -- (BOOL)isUserManaged; - -/// -/// Retrieves whether the union's current tag state has value "company_managed". -/// -/// @return Whether the union's current tag state has value "company_managed". -/// -- (BOOL)isCompanyManaged; - -/// -/// Retrieves whether the union's current tag state has value "system_managed". -/// -/// @return Whether the union's current tag state has value "system_managed". -/// -- (BOOL)isSystemManaged; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCOMMONGroupManagementType` union. -/// -@interface DBTEAMCOMMONGroupManagementTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONGroupManagementType` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONGroupManagementType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupManagementType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONGroupManagementType *)instance; - -/// -/// Deserializes `DBTEAMCOMMONGroupManagementType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupManagementType` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONGroupManagementType` object. -/// -+ (DBTEAMCOMMONGroupManagementType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupSummary.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupSummary.h deleted file mode 100644 index 4939b389..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupSummary.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMCOMMONGroupSummary; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSummary` struct. -/// -/// Information about a group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONGroupSummary : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *groupName; - -/// (no description). -@property (nonatomic, readonly, copy) NSString *groupId; - -/// External ID of group. This is an arbitrary ID that an admin can attach to a -/// group. -@property (nonatomic, readonly, copy, nullable) NSString *groupExternalId; - -/// The number of members in the group. -@property (nonatomic, readonly, nullable) NSNumber *memberCount; - -/// Who is allowed to manage the group. -@property (nonatomic, readonly) DBTEAMCOMMONGroupManagementType *groupManagementType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param groupExternalId External ID of group. This is an arbitrary ID that an -/// admin can attach to a group. -/// @param memberCount The number of members in the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - groupExternalId:(nullable NSString *)groupExternalId - memberCount:(nullable NSNumber *)memberCount; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupSummary` struct. -/// -@interface DBTEAMCOMMONGroupSummarySerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONGroupSummary` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONGroupSummary` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupSummary` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONGroupSummary *)instance; - -/// -/// Deserializes `DBTEAMCOMMONGroupSummary` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupSummary` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONGroupSummary` object. -/// -+ (DBTEAMCOMMONGroupSummary *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupType.h deleted file mode 100644 index 62411508..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONGroupType.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupType` union. -/// -/// The group type determines how a group is created and managed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONGroupType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCOMMONGroupTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMCOMMONGroupType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCOMMONGroupTypeTag) { - /// A group to which team members are automatically added. Applicable to - /// team folders https://www.dropbox.com/help/986 only. - DBTEAMCOMMONGroupTypeTeam, - - /// A group is created and managed by a user. - DBTEAMCOMMONGroupTypeUserManaged, - - /// (no description). - DBTEAMCOMMONGroupTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCOMMONGroupTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: A group to which team members are -/// automatically added. Applicable to team folders -/// https://www.dropbox.com/help/986 only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "user_managed". -/// -/// Description of the "user_managed" tag state: A group is created and managed -/// by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManaged; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "user_managed". -/// -/// @return Whether the union's current tag state has value "user_managed". -/// -- (BOOL)isUserManaged; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCOMMONGroupType` union. -/// -@interface DBTEAMCOMMONGroupTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONGroupType` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONGroupType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONGroupType *)instance; - -/// -/// Deserializes `DBTEAMCOMMONGroupType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupType` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONGroupType` object. -/// -+ (DBTEAMCOMMONGroupType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONMemberSpaceLimitType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONMemberSpaceLimitType.h deleted file mode 100644 index af108acd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONMemberSpaceLimitType.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONMemberSpaceLimitType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitType` union. -/// -/// The type of the space limit imposed on a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONMemberSpaceLimitType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCOMMONMemberSpaceLimitTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMCOMMONMemberSpaceLimitType` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCOMMONMemberSpaceLimitTypeTag) { - /// The team member does not have imposed space limit. - DBTEAMCOMMONMemberSpaceLimitTypeOff, - - /// The team member has soft imposed space limit - the limit is used for - /// display and for notifications. - DBTEAMCOMMONMemberSpaceLimitTypeAlertOnly, - - /// The team member has hard imposed space limit - Dropbox file sync will - /// stop after the limit is reached. - DBTEAMCOMMONMemberSpaceLimitTypeStopSync, - - /// (no description). - DBTEAMCOMMONMemberSpaceLimitTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCOMMONMemberSpaceLimitTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "off". -/// -/// Description of the "off" tag state: The team member does not have imposed -/// space limit. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOff; - -/// -/// Initializes union class with tag state of "alert_only". -/// -/// Description of the "alert_only" tag state: The team member has soft imposed -/// space limit - the limit is used for display and for notifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertOnly; - -/// -/// Initializes union class with tag state of "stop_sync". -/// -/// Description of the "stop_sync" tag state: The team member has hard imposed -/// space limit - Dropbox file sync will stop after the limit is reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStopSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "off". -/// -/// @return Whether the union's current tag state has value "off". -/// -- (BOOL)isOff; - -/// -/// Retrieves whether the union's current tag state has value "alert_only". -/// -/// @return Whether the union's current tag state has value "alert_only". -/// -- (BOOL)isAlertOnly; - -/// -/// Retrieves whether the union's current tag state has value "stop_sync". -/// -/// @return Whether the union's current tag state has value "stop_sync". -/// -- (BOOL)isStopSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCOMMONMemberSpaceLimitType` union. -/// -@interface DBTEAMCOMMONMemberSpaceLimitTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONMemberSpaceLimitType` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONMemberSpaceLimitType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONMemberSpaceLimitType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONMemberSpaceLimitType *)instance; - -/// -/// Deserializes `DBTEAMCOMMONMemberSpaceLimitType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONMemberSpaceLimitType` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONMemberSpaceLimitType` object. -/// -+ (DBTEAMCOMMONMemberSpaceLimitType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONTimeRange.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONTimeRange.h deleted file mode 100644 index 8f8a074d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCOMMONTimeRange.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONTimeRange; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TimeRange` struct. -/// -/// Time range. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONTimeRange : NSObject - -#pragma mark - Instance fields - -/// Optional starting time (inclusive). -@property (nonatomic, readonly, nullable) NSDate *startTime; - -/// Optional ending time (exclusive). -@property (nonatomic, readonly, nullable) NSDate *endTime; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startTime Optional starting time (inclusive). -/// @param endTime Optional ending time (exclusive). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartTime:(nullable NSDate *)startTime endTime:(nullable NSDate *)endTime; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TimeRange` struct. -/// -@interface DBTEAMCOMMONTimeRangeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONTimeRange` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONTimeRange` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONTimeRange` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONTimeRange *)instance; - -/// -/// Deserializes `DBTEAMCOMMONTimeRange` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONTimeRange` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONTimeRange` object. -/// -+ (DBTEAMCOMMONTimeRange *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaError.h deleted file mode 100644 index 19c8aafb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCustomQuotaError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CustomQuotaError` union. -/// -/// Error returned when getting member custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCustomQuotaError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCustomQuotaErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMCustomQuotaError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCustomQuotaErrorTag) { - /// A maximum of 1000 users can be set for a single call. - DBTEAMCustomQuotaErrorTooManyUsers, - - /// (no description). - DBTEAMCustomQuotaErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCustomQuotaErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_users". -/// -/// Description of the "too_many_users" tag state: A maximum of 1000 users can -/// be set for a single call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUsers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_users". -/// -/// @return Whether the union's current tag state has value "too_many_users". -/// -- (BOOL)isTooManyUsers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCustomQuotaError` union. -/// -@interface DBTEAMCustomQuotaErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMCustomQuotaError` instances. -/// -/// @param instance An instance of the `DBTEAMCustomQuotaError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCustomQuotaError *)instance; - -/// -/// Deserializes `DBTEAMCustomQuotaError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaError` API object. -/// -/// @return An instantiation of the `DBTEAMCustomQuotaError` object. -/// -+ (DBTEAMCustomQuotaError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaResult.h deleted file mode 100644 index fd791d87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaResult.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCustomQuotaResult; -@class DBTEAMUserCustomQuotaResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CustomQuotaResult` union. -/// -/// User custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCustomQuotaResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCustomQuotaResultTag` enum type represents the possible tag -/// states with which the `DBTEAMCustomQuotaResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCustomQuotaResultTag) { - /// User's custom quota. - DBTEAMCustomQuotaResultSuccess, - - /// Invalid user (not in team). - DBTEAMCustomQuotaResultInvalidUser, - - /// (no description). - DBTEAMCustomQuotaResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCustomQuotaResultTag tag; - -/// User's custom quota. @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserCustomQuotaResult *success; - -/// Invalid user (not in team). @note Ensure the `isInvalidUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: User's custom quota. -/// -/// @param success User's custom quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserCustomQuotaResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Invalid user (not in team). -/// -/// @param invalidUser Invalid user (not in team). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCustomQuotaResult` union. -/// -@interface DBTEAMCustomQuotaResultSerializer : NSObject - -/// -/// Serializes `DBTEAMCustomQuotaResult` instances. -/// -/// @param instance An instance of the `DBTEAMCustomQuotaResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCustomQuotaResult *)instance; - -/// -/// Deserializes `DBTEAMCustomQuotaResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaResult` API object. -/// -/// @return An instantiation of the `DBTEAMCustomQuotaResult` object. -/// -+ (DBTEAMCustomQuotaResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaUsersArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaUsersArg.h deleted file mode 100644 index ecfccbf7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMCustomQuotaUsersArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCustomQuotaUsersArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CustomQuotaUsersArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCustomQuotaUsersArg : NSObject - -#pragma mark - Instance fields - -/// List of users. -@property (nonatomic, readonly) NSArray *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users List of users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CustomQuotaUsersArg` struct. -/// -@interface DBTEAMCustomQuotaUsersArgSerializer : NSObject - -/// -/// Serializes `DBTEAMCustomQuotaUsersArg` instances. -/// -/// @param instance An instance of the `DBTEAMCustomQuotaUsersArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaUsersArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCustomQuotaUsersArg *)instance; - -/// -/// Deserializes `DBTEAMCustomQuotaUsersArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaUsersArg` API object. -/// -/// @return An instantiation of the `DBTEAMCustomQuotaUsersArg` object. -/// -+ (DBTEAMCustomQuotaUsersArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDateRange.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDateRange.h deleted file mode 100644 index ef43e04d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDateRange.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDateRange; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DateRange` struct. -/// -/// Input arguments that can be provided for most reports. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDateRange : NSObject - -#pragma mark - Instance fields - -/// Optional starting date (inclusive). If start_date is None or too long ago, -/// this field will be set to 6 months ago. -@property (nonatomic, readonly, nullable) NSDate *startDate; - -/// Optional ending date (exclusive). -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Optional starting date (inclusive). If start_date is None -/// or too long ago, this field will be set to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(nullable NSDate *)startDate endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DateRange` struct. -/// -@interface DBTEAMDateRangeSerializer : NSObject - -/// -/// Serializes `DBTEAMDateRange` instances. -/// -/// @param instance An instance of the `DBTEAMDateRange` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMDateRange` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDateRange *)instance; - -/// -/// Deserializes `DBTEAMDateRange` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDateRange` API object. -/// -/// @return An instantiation of the `DBTEAMDateRange` object. -/// -+ (DBTEAMDateRange *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDateRangeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDateRangeError.h deleted file mode 100644 index 9856c582..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDateRangeError.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDateRangeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DateRangeError` union. -/// -/// Errors that can originate from problems in input arguments to reports. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDateRangeError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMDateRangeErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMDateRangeError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMDateRangeErrorTag) { - /// (no description). - DBTEAMDateRangeErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMDateRangeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMDateRangeError` union. -/// -@interface DBTEAMDateRangeErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMDateRangeError` instances. -/// -/// @param instance An instance of the `DBTEAMDateRangeError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDateRangeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDateRangeError *)instance; - -/// -/// Deserializes `DBTEAMDateRangeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDateRangeError` API object. -/// -/// @return An instantiation of the `DBTEAMDateRangeError` object. -/// -+ (DBTEAMDateRangeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailResult.h deleted file mode 100644 index c0c4cb97..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailResult.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteSecondaryEmailResult` union. -/// -/// Result of trying to delete a secondary email address. 'success' is the only -/// value indicating that a secondary email was successfully deleted. The other -/// values explain the type of error that occurred, and include the email for -/// which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeleteSecondaryEmailResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMDeleteSecondaryEmailResultTag` enum type represents the possible -/// tag states with which the `DBTEAMDeleteSecondaryEmailResult` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMDeleteSecondaryEmailResultTag) { - /// The secondary email was successfully deleted. - DBTEAMDeleteSecondaryEmailResultSuccess, - - /// The email address was not found for the user. - DBTEAMDeleteSecondaryEmailResultNotFound, - - /// The email address is the primary email address of the user, and cannot - /// be removed. - DBTEAMDeleteSecondaryEmailResultCannotRemovePrimary, - - /// (no description). - DBTEAMDeleteSecondaryEmailResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMDeleteSecondaryEmailResultTag tag; - -/// The secondary email was successfully deleted. @note Ensure the `isSuccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *success; - -/// The email address was not found for the user. @note Ensure the `isNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *notFound; - -/// The email address is the primary email address of the user, and cannot be -/// removed. @note Ensure the `isCannotRemovePrimary` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *cannotRemovePrimary; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: The secondary email was successfully -/// deleted. -/// -/// @param success The secondary email was successfully deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSString *)success; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The email address was not found -/// for the user. -/// -/// @param notFound The email address was not found for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound:(NSString *)notFound; - -/// -/// Initializes union class with tag state of "cannot_remove_primary". -/// -/// Description of the "cannot_remove_primary" tag state: The email address is -/// the primary email address of the user, and cannot be removed. -/// -/// @param cannotRemovePrimary The email address is the primary email address of -/// the user, and cannot be removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRemovePrimary:(NSString *)cannotRemovePrimary; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `notFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_remove_primary". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cannotRemovePrimary` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "cannot_remove_primary". -/// -- (BOOL)isCannotRemovePrimary; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMDeleteSecondaryEmailResult` union. -/// -@interface DBTEAMDeleteSecondaryEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMDeleteSecondaryEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMDeleteSecondaryEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeleteSecondaryEmailResult *)instance; - -/// -/// Deserializes `DBTEAMDeleteSecondaryEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMDeleteSecondaryEmailResult` object. -/// -+ (DBTEAMDeleteSecondaryEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailsArg.h deleted file mode 100644 index 3ef9891b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailsArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailsArg; -@class DBTEAMUserSecondaryEmailsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteSecondaryEmailsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeleteSecondaryEmailsArg : NSObject - -#pragma mark - Instance fields - -/// List of users and their secondary emails to delete. -@property (nonatomic, readonly) NSArray *emailsToDelete; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param emailsToDelete List of users and their secondary emails to delete. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailsToDelete:(NSArray *)emailsToDelete; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteSecondaryEmailsArg` struct. -/// -@interface DBTEAMDeleteSecondaryEmailsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMDeleteSecondaryEmailsArg` instances. -/// -/// @param instance An instance of the `DBTEAMDeleteSecondaryEmailsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeleteSecondaryEmailsArg *)instance; - -/// -/// Deserializes `DBTEAMDeleteSecondaryEmailsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsArg` API object. -/// -/// @return An instantiation of the `DBTEAMDeleteSecondaryEmailsArg` object. -/// -+ (DBTEAMDeleteSecondaryEmailsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailsResult.h deleted file mode 100644 index 493293e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeleteSecondaryEmailsResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailsResult; -@class DBTEAMUserDeleteResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteSecondaryEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeleteSecondaryEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResults:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteSecondaryEmailsResult` struct. -/// -@interface DBTEAMDeleteSecondaryEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMDeleteSecondaryEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMDeleteSecondaryEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeleteSecondaryEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMDeleteSecondaryEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMDeleteSecondaryEmailsResult` object. -/// -+ (DBTEAMDeleteSecondaryEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDesktopClientSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDesktopClientSession.h deleted file mode 100644 index 4ce236f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDesktopClientSession.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSession.h" - -@class DBTEAMDesktopClientSession; -@class DBTEAMDesktopPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopClientSession` struct. -/// -/// Information about linked Dropbox desktop client sessions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDesktopClientSession : DBTEAMDeviceSession - -#pragma mark - Instance fields - -/// Name of the hosting desktop. -@property (nonatomic, readonly, copy) NSString *hostName; - -/// The Dropbox desktop client type. -@property (nonatomic, readonly) DBTEAMDesktopPlatform *clientType; - -/// The Dropbox client version. -@property (nonatomic, readonly, copy) NSString *clientVersion; - -/// Information on the hosting platform. -@property (nonatomic, readonly, copy) NSString *platform; - -/// Whether it's possible to delete all of the account files upon unlinking. -@property (nonatomic, readonly) NSNumber *isDeleteOnUnlinkSupported; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param clientVersion The Dropbox client version. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether it's possible to delete all of the -/// account files upon unlinking. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - hostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - clientVersion:(NSString *)clientVersion - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param clientVersion The Dropbox client version. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether it's possible to delete all of the -/// account files upon unlinking. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - hostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - clientVersion:(NSString *)clientVersion - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DesktopClientSession` struct. -/// -@interface DBTEAMDesktopClientSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMDesktopClientSession` instances. -/// -/// @param instance An instance of the `DBTEAMDesktopClientSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDesktopClientSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDesktopClientSession *)instance; - -/// -/// Deserializes `DBTEAMDesktopClientSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDesktopClientSession` API object. -/// -/// @return An instantiation of the `DBTEAMDesktopClientSession` object. -/// -+ (DBTEAMDesktopClientSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDesktopPlatform.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDesktopPlatform.h deleted file mode 100644 index 292bf662..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDesktopPlatform.h +++ /dev/null @@ -1,155 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDesktopPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopPlatform` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDesktopPlatform : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMDesktopPlatformTag` enum type represents the possible tag states -/// with which the `DBTEAMDesktopPlatform` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMDesktopPlatformTag) { - /// Official Windows Dropbox desktop client. - DBTEAMDesktopPlatformWindows, - - /// Official Mac Dropbox desktop client. - DBTEAMDesktopPlatformMac, - - /// Official Linux Dropbox desktop client. - DBTEAMDesktopPlatformLinux, - - /// (no description). - DBTEAMDesktopPlatformOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMDesktopPlatformTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "windows". -/// -/// Description of the "windows" tag state: Official Windows Dropbox desktop -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWindows; - -/// -/// Initializes union class with tag state of "mac". -/// -/// Description of the "mac" tag state: Official Mac Dropbox desktop client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMac; - -/// -/// Initializes union class with tag state of "linux". -/// -/// Description of the "linux" tag state: Official Linux Dropbox desktop client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinux; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "windows". -/// -/// @return Whether the union's current tag state has value "windows". -/// -- (BOOL)isWindows; - -/// -/// Retrieves whether the union's current tag state has value "mac". -/// -/// @return Whether the union's current tag state has value "mac". -/// -- (BOOL)isMac; - -/// -/// Retrieves whether the union's current tag state has value "linux". -/// -/// @return Whether the union's current tag state has value "linux". -/// -- (BOOL)isLinux; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMDesktopPlatform` union. -/// -@interface DBTEAMDesktopPlatformSerializer : NSObject - -/// -/// Serializes `DBTEAMDesktopPlatform` instances. -/// -/// @param instance An instance of the `DBTEAMDesktopPlatform` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDesktopPlatform` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDesktopPlatform *)instance; - -/// -/// Deserializes `DBTEAMDesktopPlatform` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDesktopPlatform` API object. -/// -/// @return An instantiation of the `DBTEAMDesktopPlatform` object. -/// -+ (DBTEAMDesktopPlatform *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeviceSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeviceSession.h deleted file mode 100644 index 1d2195c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeviceSession.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeviceSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSession` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeviceSession : NSObject - -#pragma mark - Instance fields - -/// The session id. -@property (nonatomic, readonly, copy) NSString *sessionId; - -/// The IP address of the last activity from this session. -@property (nonatomic, readonly, copy, nullable) NSString *ipAddress; - -/// The country from which the last activity from this session was made. -@property (nonatomic, readonly, copy, nullable) NSString *country; - -/// The time this session was created. -@property (nonatomic, readonly, nullable) NSDate *created; - -/// The time of the last activity from this session. -@property (nonatomic, readonly, nullable) NSDate *updated; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSession` struct. -/// -@interface DBTEAMDeviceSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMDeviceSession` instances. -/// -/// @param instance An instance of the `DBTEAMDeviceSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeviceSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeviceSession *)instance; - -/// -/// Deserializes `DBTEAMDeviceSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeviceSession` API object. -/// -/// @return An instantiation of the `DBTEAMDeviceSession` object. -/// -+ (DBTEAMDeviceSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeviceSessionArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeviceSessionArg.h deleted file mode 100644 index f87e5c08..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDeviceSessionArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeviceSessionArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSessionArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeviceSessionArg : NSObject - -#pragma mark - Instance fields - -/// The session id. -@property (nonatomic, readonly, copy) NSString *sessionId; - -/// The unique id of the member owning the device. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId teamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSessionArg` struct. -/// -@interface DBTEAMDeviceSessionArgSerializer : NSObject - -/// -/// Serializes `DBTEAMDeviceSessionArg` instances. -/// -/// @param instance An instance of the `DBTEAMDeviceSessionArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeviceSessionArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeviceSessionArg *)instance; - -/// -/// Deserializes `DBTEAMDeviceSessionArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeviceSessionArg` API object. -/// -/// @return An instantiation of the `DBTEAMDeviceSessionArg` object. -/// -+ (DBTEAMDeviceSessionArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDevicesActive.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDevicesActive.h deleted file mode 100644 index 7de71992..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMDevicesActive.h +++ /dev/null @@ -1,113 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDevicesActive; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DevicesActive` struct. -/// -/// Each of the items is an array of values, one value per day. The value is the -/// number of devices active within a time window, ending with that day. If -/// there is no data for a day, then the value will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDevicesActive : NSObject - -#pragma mark - Instance fields - -/// Array of number of linked windows (desktop) clients with activity. -@property (nonatomic, readonly) NSArray *windows; - -/// Array of number of linked mac (desktop) clients with activity. -@property (nonatomic, readonly) NSArray *macos; - -/// Array of number of linked linus (desktop) clients with activity. -@property (nonatomic, readonly) NSArray *linux; - -/// Array of number of linked ios devices with activity. -@property (nonatomic, readonly) NSArray *ios; - -/// Array of number of linked android devices with activity. -@property (nonatomic, readonly) NSArray *android; - -/// Array of number of other linked devices (blackberry, windows phone, etc) -/// with activity. -@property (nonatomic, readonly) NSArray *other; - -/// Array of total number of linked clients with activity. -@property (nonatomic, readonly) NSArray *total; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param windows Array of number of linked windows (desktop) clients with -/// activity. -/// @param macos Array of number of linked mac (desktop) clients with activity. -/// @param linux Array of number of linked linus (desktop) clients with -/// activity. -/// @param ios Array of number of linked ios devices with activity. -/// @param android Array of number of linked android devices with activity. -/// @param other Array of number of other linked devices (blackberry, windows -/// phone, etc) with activity. -/// @param total Array of total number of linked clients with activity. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWindows:(NSArray *)windows - macos:(NSArray *)macos - linux:(NSArray *)linux - ios:(NSArray *)ios - android:(NSArray *)android - other:(NSArray *)other - total:(NSArray *)total; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DevicesActive` struct. -/// -@interface DBTEAMDevicesActiveSerializer : NSObject - -/// -/// Serializes `DBTEAMDevicesActive` instances. -/// -/// @param instance An instance of the `DBTEAMDevicesActive` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDevicesActive` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDevicesActive *)instance; - -/// -/// Deserializes `DBTEAMDevicesActive` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDevicesActive` API object. -/// -/// @return An instantiation of the `DBTEAMDevicesActive` object. -/// -+ (DBTEAMDevicesActive *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListArg.h deleted file mode 100644 index 5b596d7c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListArg.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListArg` struct. -/// -/// Excluded users list argument. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListArg : NSObject - -#pragma mark - Instance fields - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of results to return per call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersListArg` struct. -/// -@interface DBTEAMExcludedUsersListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListArg` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListArg *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListArg` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListArg` object. -/// -+ (DBTEAMExcludedUsersListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListContinueArg.h deleted file mode 100644 index 5fbbe9cf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListContinueArg` struct. -/// -/// Excluded users list continue argument. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of users. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersListContinueArg` struct. -/// -@interface DBTEAMExcludedUsersListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListContinueArg` object. -/// -+ (DBTEAMExcludedUsersListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListContinueError.h deleted file mode 100644 index 01aec2f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListContinueError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListContinueError` union. -/// -/// Excluded users list continue error. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMExcludedUsersListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMExcludedUsersListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMExcludedUsersListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersListContinueError` -/// union. -/// -@interface DBTEAMExcludedUsersListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListContinueError *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListContinueError` -/// object. -/// -+ (DBTEAMExcludedUsersListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListError.h deleted file mode 100644 index f4d302d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListError` union. -/// -/// Excluded users list error. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersListErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMExcludedUsersListError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersListErrorTag) { - /// An error occurred. - DBTEAMExcludedUsersListErrorListError, - - /// (no description). - DBTEAMExcludedUsersListErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersListErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "list_error". -/// -/// Description of the "list_error" tag state: An error occurred. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithListError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "list_error". -/// -/// @return Whether the union's current tag state has value "list_error". -/// -- (BOOL)isListError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersListError` union. -/// -@interface DBTEAMExcludedUsersListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListError` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListError *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListError` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListError` object. -/// -+ (DBTEAMExcludedUsersListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListResult.h deleted file mode 100644 index 33330d06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersListResult.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListResult; -@class DBTEAMMemberProfile; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListResult` struct. -/// -/// Excluded users list result. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *users; - -/// Pass the cursor into `memberSpaceLimitsExcludedUsersListContinue` to obtain -/// additional excluded users. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// Is true if there are additional excluded users that have not been returned -/// yet. An additional call to `memberSpaceLimitsExcludedUsersListContinue` can -/// retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users (no description). -/// @param hasMore Is true if there are additional excluded users that have not -/// been returned yet. An additional call to -/// `memberSpaceLimitsExcludedUsersListContinue` can retrieve them. -/// @param cursor Pass the cursor into -/// `memberSpaceLimitsExcludedUsersListContinue` to obtain additional excluded -/// users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param users (no description). -/// @param hasMore Is true if there are additional excluded users that have not -/// been returned yet. An additional call to -/// `memberSpaceLimitsExcludedUsersListContinue` can retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersListResult` struct. -/// -@interface DBTEAMExcludedUsersListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListResult` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListResult *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListResult` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListResult` object. -/// -+ (DBTEAMExcludedUsersListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateArg.h deleted file mode 100644 index 82ace085..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateArg.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateArg` struct. -/// -/// Argument of excluded users update operation. Should include a list of users -/// to add/remove (according to endpoint), Maximum size of the list is 1000 -/// users. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateArg : NSObject - -#pragma mark - Instance fields - -/// List of users to be added/removed. -@property (nonatomic, readonly, nullable) NSArray *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users List of users to be added/removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(nullable NSArray *)users; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersUpdateArg` struct. -/// -@interface DBTEAMExcludedUsersUpdateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateArg` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateArg *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateArg` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateArg` object. -/// -+ (DBTEAMExcludedUsersUpdateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateError.h deleted file mode 100644 index dded9118..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateError.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateError` union. -/// -/// Excluded users update error. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersUpdateErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMExcludedUsersUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersUpdateErrorTag) { - /// At least one of the users is not part of your team. - DBTEAMExcludedUsersUpdateErrorUsersNotInTeam, - - /// A maximum of 1000 users for each of addition/removal can be supplied. - DBTEAMExcludedUsersUpdateErrorTooManyUsers, - - /// (no description). - DBTEAMExcludedUsersUpdateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "users_not_in_team". -/// -/// Description of the "users_not_in_team" tag state: At least one of the users -/// is not part of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersNotInTeam; - -/// -/// Initializes union class with tag state of "too_many_users". -/// -/// Description of the "too_many_users" tag state: A maximum of 1000 users for -/// each of addition/removal can be supplied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUsers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "users_not_in_team". -/// -/// @return Whether the union's current tag state has value "users_not_in_team". -/// -- (BOOL)isUsersNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "too_many_users". -/// -/// @return Whether the union's current tag state has value "too_many_users". -/// -- (BOOL)isTooManyUsers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersUpdateError` union. -/// -@interface DBTEAMExcludedUsersUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateError` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateError *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateError` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateError` object. -/// -+ (DBTEAMExcludedUsersUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateResult.h deleted file mode 100644 index 26fb9a99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateResult; -@class DBTEAMExcludedUsersUpdateStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateResult` struct. -/// -/// Excluded users update result. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateResult : NSObject - -#pragma mark - Instance fields - -/// Update status. -@property (nonatomic, readonly) DBTEAMExcludedUsersUpdateStatus *status; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param status Update status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatus:(DBTEAMExcludedUsersUpdateStatus *)status; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersUpdateResult` struct. -/// -@interface DBTEAMExcludedUsersUpdateResultSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateResult` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateResult *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateResult` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateResult` object. -/// -+ (DBTEAMExcludedUsersUpdateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateStatus.h deleted file mode 100644 index 640a7213..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMExcludedUsersUpdateStatus.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateStatus` union. -/// -/// Excluded users update operation status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersUpdateStatusTag` enum type represents the possible -/// tag states with which the `DBTEAMExcludedUsersUpdateStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersUpdateStatusTag) { - /// Update successful. - DBTEAMExcludedUsersUpdateStatusSuccess, - - /// (no description). - DBTEAMExcludedUsersUpdateStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersUpdateStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Update successful. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersUpdateStatus` union. -/// -@interface DBTEAMExcludedUsersUpdateStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateStatus` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateStatus *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateStatus` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateStatus` object. -/// -+ (DBTEAMExcludedUsersUpdateStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeature.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeature.h deleted file mode 100644 index af54bddd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeature.h +++ /dev/null @@ -1,187 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeature; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Feature` union. -/// -/// A set of features that a Dropbox Business account may support. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeature : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMFeatureTag` enum type represents the possible tag states with -/// which the `DBTEAMFeature` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMFeatureTag) { - /// The number of upload API calls allowed per month. - DBTEAMFeatureUploadApiRateLimit, - - /// Does this team have a shared team root. - DBTEAMFeatureHasTeamSharedDropbox, - - /// Does this team have file events. - DBTEAMFeatureHasTeamFileEvents, - - /// Does this team have team selective sync enabled. - DBTEAMFeatureHasTeamSelectiveSync, - - /// (no description). - DBTEAMFeatureOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMFeatureTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "upload_api_rate_limit". -/// -/// Description of the "upload_api_rate_limit" tag state: The number of upload -/// API calls allowed per month. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUploadApiRateLimit; - -/// -/// Initializes union class with tag state of "has_team_shared_dropbox". -/// -/// Description of the "has_team_shared_dropbox" tag state: Does this team have -/// a shared team root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSharedDropbox; - -/// -/// Initializes union class with tag state of "has_team_file_events". -/// -/// Description of the "has_team_file_events" tag state: Does this team have -/// file events. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamFileEvents; - -/// -/// Initializes union class with tag state of "has_team_selective_sync". -/// -/// Description of the "has_team_selective_sync" tag state: Does this team have -/// team selective sync enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSelectiveSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -/// @return Whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -- (BOOL)isUploadApiRateLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -/// @return Whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -- (BOOL)isHasTeamSharedDropbox; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_file_events". -/// -/// @return Whether the union's current tag state has value -/// "has_team_file_events". -/// -- (BOOL)isHasTeamFileEvents; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_selective_sync". -/// -/// @return Whether the union's current tag state has value -/// "has_team_selective_sync". -/// -- (BOOL)isHasTeamSelectiveSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMFeature` union. -/// -@interface DBTEAMFeatureSerializer : NSObject - -/// -/// Serializes `DBTEAMFeature` instances. -/// -/// @param instance An instance of the `DBTEAMFeature` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMFeature` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeature *)instance; - -/// -/// Deserializes `DBTEAMFeature` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeature` API object. -/// -/// @return An instantiation of the `DBTEAMFeature` object. -/// -+ (DBTEAMFeature *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeatureValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeatureValue.h deleted file mode 100644 index 7718de6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeatureValue.h +++ /dev/null @@ -1,218 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeatureValue; -@class DBTEAMHasTeamFileEventsValue; -@class DBTEAMHasTeamSelectiveSyncValue; -@class DBTEAMHasTeamSharedDropboxValue; -@class DBTEAMUploadApiRateLimitValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeatureValue` union. -/// -/// The values correspond to entries in Feature. You may get different value -/// according to your Dropbox Business plan. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeatureValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMFeatureValueTag` enum type represents the possible tag states -/// with which the `DBTEAMFeatureValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMFeatureValueTag) { - /// (no description). - DBTEAMFeatureValueUploadApiRateLimit, - - /// (no description). - DBTEAMFeatureValueHasTeamSharedDropbox, - - /// (no description). - DBTEAMFeatureValueHasTeamFileEvents, - - /// (no description). - DBTEAMFeatureValueHasTeamSelectiveSync, - - /// (no description). - DBTEAMFeatureValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMFeatureValueTag tag; - -/// (no description). @note Ensure the `isUploadApiRateLimit` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUploadApiRateLimitValue *uploadApiRateLimit; - -/// (no description). @note Ensure the `isHasTeamSharedDropbox` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMHasTeamSharedDropboxValue *hasTeamSharedDropbox; - -/// (no description). @note Ensure the `isHasTeamFileEvents` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMHasTeamFileEventsValue *hasTeamFileEvents; - -/// (no description). @note Ensure the `isHasTeamSelectiveSync` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMHasTeamSelectiveSyncValue *hasTeamSelectiveSync; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "upload_api_rate_limit". -/// -/// @param uploadApiRateLimit (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUploadApiRateLimit:(DBTEAMUploadApiRateLimitValue *)uploadApiRateLimit; - -/// -/// Initializes union class with tag state of "has_team_shared_dropbox". -/// -/// @param hasTeamSharedDropbox (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSharedDropbox:(DBTEAMHasTeamSharedDropboxValue *)hasTeamSharedDropbox; - -/// -/// Initializes union class with tag state of "has_team_file_events". -/// -/// @param hasTeamFileEvents (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamFileEvents:(DBTEAMHasTeamFileEventsValue *)hasTeamFileEvents; - -/// -/// Initializes union class with tag state of "has_team_selective_sync". -/// -/// @param hasTeamSelectiveSync (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSelectiveSync:(DBTEAMHasTeamSelectiveSyncValue *)hasTeamSelectiveSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `uploadApiRateLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -- (BOOL)isUploadApiRateLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSharedDropbox` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -- (BOOL)isHasTeamSharedDropbox; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_file_events". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamFileEvents` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_file_events". -/// -- (BOOL)isHasTeamFileEvents; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_selective_sync". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSelectiveSync` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_selective_sync". -/// -- (BOOL)isHasTeamSelectiveSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMFeatureValue` union. -/// -@interface DBTEAMFeatureValueSerializer : NSObject - -/// -/// Serializes `DBTEAMFeatureValue` instances. -/// -/// @param instance An instance of the `DBTEAMFeatureValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeatureValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeatureValue *)instance; - -/// -/// Deserializes `DBTEAMFeatureValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeatureValue` API object. -/// -/// @return An instantiation of the `DBTEAMFeatureValue` object. -/// -+ (DBTEAMFeatureValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchArg.h deleted file mode 100644 index 297b98f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeature; -@class DBTEAMFeaturesGetValuesBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeaturesGetValuesBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeaturesGetValuesBatchArg : NSObject - -#pragma mark - Instance fields - -/// A list of features in Feature. If the list is empty, this route will return -/// FeaturesGetValuesBatchError. -@property (nonatomic, readonly) NSArray *features; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param features A list of features in Feature. If the list is empty, this -/// route will return FeaturesGetValuesBatchError. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFeatures:(NSArray *)features; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FeaturesGetValuesBatchArg` struct. -/// -@interface DBTEAMFeaturesGetValuesBatchArgSerializer : NSObject - -/// -/// Serializes `DBTEAMFeaturesGetValuesBatchArg` instances. -/// -/// @param instance An instance of the `DBTEAMFeaturesGetValuesBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeaturesGetValuesBatchArg *)instance; - -/// -/// Deserializes `DBTEAMFeaturesGetValuesBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchArg` API object. -/// -/// @return An instantiation of the `DBTEAMFeaturesGetValuesBatchArg` object. -/// -+ (DBTEAMFeaturesGetValuesBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchError.h deleted file mode 100644 index f9268f0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeaturesGetValuesBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeaturesGetValuesBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeaturesGetValuesBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMFeaturesGetValuesBatchErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMFeaturesGetValuesBatchError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMFeaturesGetValuesBatchErrorTag) { - /// At least one Feature must be included in the - /// FeaturesGetValuesBatchArg.features list. - DBTEAMFeaturesGetValuesBatchErrorEmptyFeaturesList, - - /// (no description). - DBTEAMFeaturesGetValuesBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMFeaturesGetValuesBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "empty_features_list". -/// -/// Description of the "empty_features_list" tag state: At least one Feature -/// must be included in the FeaturesGetValuesBatchArg.features list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyFeaturesList; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_features_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_features_list". -/// -- (BOOL)isEmptyFeaturesList; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMFeaturesGetValuesBatchError` union. -/// -@interface DBTEAMFeaturesGetValuesBatchErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMFeaturesGetValuesBatchError` instances. -/// -/// @param instance An instance of the `DBTEAMFeaturesGetValuesBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeaturesGetValuesBatchError *)instance; - -/// -/// Deserializes `DBTEAMFeaturesGetValuesBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchError` API object. -/// -/// @return An instantiation of the `DBTEAMFeaturesGetValuesBatchError` object. -/// -+ (DBTEAMFeaturesGetValuesBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchResult.h deleted file mode 100644 index 0b1a9349..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMFeaturesGetValuesBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeatureValue; -@class DBTEAMFeaturesGetValuesBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeaturesGetValuesBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeaturesGetValuesBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FeaturesGetValuesBatchResult` struct. -/// -@interface DBTEAMFeaturesGetValuesBatchResultSerializer : NSObject - -/// -/// Serializes `DBTEAMFeaturesGetValuesBatchResult` instances. -/// -/// @param instance An instance of the `DBTEAMFeaturesGetValuesBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeaturesGetValuesBatchResult *)instance; - -/// -/// Deserializes `DBTEAMFeaturesGetValuesBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchResult` API object. -/// -/// @return An instantiation of the `DBTEAMFeaturesGetValuesBatchResult` object. -/// -+ (DBTEAMFeaturesGetValuesBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetActivityReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetActivityReport.h deleted file mode 100644 index 2c919e7a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetActivityReport.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMGetActivityReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetActivityReport` struct. -/// -/// Activity Report Result. Each of the items in the storage report is an array -/// of values, one value per day. If there is no data for a day, then the value -/// will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetActivityReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Array of total number of adds by team members. -@property (nonatomic, readonly) NSArray *adds; - -/// Array of number of edits by team members. If the same user edits the same -/// file multiple times this is counted as a single edit. -@property (nonatomic, readonly) NSArray *edits; - -/// Array of total number of deletes by team members. -@property (nonatomic, readonly) NSArray *deletes; - -/// Array of the number of users who have been active in the last 28 days. -@property (nonatomic, readonly) NSArray *activeUsers28Day; - -/// Array of the number of users who have been active in the last week. -@property (nonatomic, readonly) NSArray *activeUsers7Day; - -/// Array of the number of users who have been active in the last day. -@property (nonatomic, readonly) NSArray *activeUsers1Day; - -/// Array of the number of shared folders with some activity in the last 28 -/// days. -@property (nonatomic, readonly) NSArray *activeSharedFolders28Day; - -/// Array of the number of shared folders with some activity in the last week. -@property (nonatomic, readonly) NSArray *activeSharedFolders7Day; - -/// Array of the number of shared folders with some activity in the last day. -@property (nonatomic, readonly) NSArray *activeSharedFolders1Day; - -/// Array of the number of shared links created. -@property (nonatomic, readonly) NSArray *sharedLinksCreated; - -/// Array of the number of views by team users to shared links created by the -/// team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedByTeam; - -/// Array of the number of views by users outside of the team to shared links -/// created by the team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedByOutsideUser; - -/// Array of the number of views by non-logged-in users to shared links created -/// by the team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedByNotLoggedIn; - -/// Array of the total number of views to shared links created by the team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedTotal; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param adds Array of total number of adds by team members. -/// @param edits Array of number of edits by team members. If the same user -/// edits the same file multiple times this is counted as a single edit. -/// @param deletes Array of total number of deletes by team members. -/// @param activeUsers28Day Array of the number of users who have been active in -/// the last 28 days. -/// @param activeUsers7Day Array of the number of users who have been active in -/// the last week. -/// @param activeUsers1Day Array of the number of users who have been active in -/// the last day. -/// @param activeSharedFolders28Day Array of the number of shared folders with -/// some activity in the last 28 days. -/// @param activeSharedFolders7Day Array of the number of shared folders with -/// some activity in the last week. -/// @param activeSharedFolders1Day Array of the number of shared folders with -/// some activity in the last day. -/// @param sharedLinksCreated Array of the number of shared links created. -/// @param sharedLinksViewedByTeam Array of the number of views by team users to -/// shared links created by the team. -/// @param sharedLinksViewedByOutsideUser Array of the number of views by users -/// outside of the team to shared links created by the team. -/// @param sharedLinksViewedByNotLoggedIn Array of the number of views by -/// non-logged-in users to shared links created by the team. -/// @param sharedLinksViewedTotal Array of the total number of views to shared -/// links created by the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - adds:(NSArray *)adds - edits:(NSArray *)edits - deletes:(NSArray *)deletes - activeUsers28Day:(NSArray *)activeUsers28Day - activeUsers7Day:(NSArray *)activeUsers7Day - activeUsers1Day:(NSArray *)activeUsers1Day - activeSharedFolders28Day:(NSArray *)activeSharedFolders28Day - activeSharedFolders7Day:(NSArray *)activeSharedFolders7Day - activeSharedFolders1Day:(NSArray *)activeSharedFolders1Day - sharedLinksCreated:(NSArray *)sharedLinksCreated - sharedLinksViewedByTeam:(NSArray *)sharedLinksViewedByTeam - sharedLinksViewedByOutsideUser:(NSArray *)sharedLinksViewedByOutsideUser - sharedLinksViewedByNotLoggedIn:(NSArray *)sharedLinksViewedByNotLoggedIn - sharedLinksViewedTotal:(NSArray *)sharedLinksViewedTotal; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetActivityReport` struct. -/// -@interface DBTEAMGetActivityReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetActivityReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetActivityReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetActivityReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetActivityReport *)instance; - -/// -/// Deserializes `DBTEAMGetActivityReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetActivityReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetActivityReport` object. -/// -+ (DBTEAMGetActivityReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetDevicesReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetDevicesReport.h deleted file mode 100644 index 4d2233d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetDevicesReport.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMDevicesActive; -@class DBTEAMGetDevicesReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetDevicesReport` struct. -/// -/// Devices Report Result. Contains subsections for different time ranges of -/// activity. Each of the items in each subsection of the storage report is an -/// array of values, one value per day. If there is no data for a day, then the -/// value will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetDevicesReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Report of the number of devices active in the last day. -@property (nonatomic, readonly) DBTEAMDevicesActive *active1Day; - -/// Report of the number of devices active in the last 7 days. -@property (nonatomic, readonly) DBTEAMDevicesActive *active7Day; - -/// Report of the number of devices active in the last 28 days. -@property (nonatomic, readonly) DBTEAMDevicesActive *active28Day; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param active1Day Report of the number of devices active in the last day. -/// @param active7Day Report of the number of devices active in the last 7 days. -/// @param active28Day Report of the number of devices active in the last 28 -/// days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - active1Day:(DBTEAMDevicesActive *)active1Day - active7Day:(DBTEAMDevicesActive *)active7Day - active28Day:(DBTEAMDevicesActive *)active28Day; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetDevicesReport` struct. -/// -@interface DBTEAMGetDevicesReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetDevicesReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetDevicesReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetDevicesReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetDevicesReport *)instance; - -/// -/// Deserializes `DBTEAMGetDevicesReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetDevicesReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetDevicesReport` object. -/// -+ (DBTEAMGetDevicesReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetMembershipReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetMembershipReport.h deleted file mode 100644 index d3ccbaa4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetMembershipReport.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMGetMembershipReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMembershipReport` struct. -/// -/// Membership Report Result. Each of the items in the storage report is an -/// array of values, one value per day. If there is no data for a day, then the -/// value will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetMembershipReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Team size, for each day. -@property (nonatomic, readonly) NSArray *teamSize; - -/// The number of pending invites to the team, for each day. -@property (nonatomic, readonly) NSArray *pendingInvites; - -/// The number of members that joined the team, for each day. -@property (nonatomic, readonly) NSArray *membersJoined; - -/// The number of suspended team members, for each day. -@property (nonatomic, readonly) NSArray *suspendedMembers; - -/// The total number of licenses the team has, for each day. -@property (nonatomic, readonly) NSArray *licenses; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param teamSize Team size, for each day. -/// @param pendingInvites The number of pending invites to the team, for each -/// day. -/// @param membersJoined The number of members that joined the team, for each -/// day. -/// @param suspendedMembers The number of suspended team members, for each day. -/// @param licenses The total number of licenses the team has, for each day. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - teamSize:(NSArray *)teamSize - pendingInvites:(NSArray *)pendingInvites - membersJoined:(NSArray *)membersJoined - suspendedMembers:(NSArray *)suspendedMembers - licenses:(NSArray *)licenses; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetMembershipReport` struct. -/// -@interface DBTEAMGetMembershipReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetMembershipReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetMembershipReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetMembershipReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetMembershipReport *)instance; - -/// -/// Deserializes `DBTEAMGetMembershipReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetMembershipReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetMembershipReport` object. -/// -+ (DBTEAMGetMembershipReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetStorageReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetStorageReport.h deleted file mode 100644 index 8e93a741..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGetStorageReport.h +++ /dev/null @@ -1,116 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMGetStorageReport; -@class DBTEAMStorageBucket; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetStorageReport` struct. -/// -/// Storage Report Result. Each of the items in the storage report is an array -/// of values, one value per day. If there is no data for a day, then the value -/// will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetStorageReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Sum of the shared, unshared, and datastore usages, for each day. -@property (nonatomic, readonly) NSArray *totalUsage; - -/// Array of the combined size (bytes) of team members' shared folders, for each -/// day. -@property (nonatomic, readonly) NSArray *sharedUsage; - -/// Array of the combined size (bytes) of team members' root namespaces, for -/// each day. -@property (nonatomic, readonly) NSArray *unsharedUsage; - -/// Array of the number of shared folders owned by team members, for each day. -@property (nonatomic, readonly) NSArray *sharedFolders; - -/// Array of storage summaries of team members' account sizes. Each storage -/// summary is an array of key, value pairs, where each pair describes a storage -/// bucket. The key indicates the upper bound of the bucket and the value is the -/// number of users in that bucket. There is one such summary per day. If there -/// is no data for a day, the storage summary will be empty. -@property (nonatomic, readonly) NSArray *> *memberStorageMap; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param totalUsage Sum of the shared, unshared, and datastore usages, for -/// each day. -/// @param sharedUsage Array of the combined size (bytes) of team members' -/// shared folders, for each day. -/// @param unsharedUsage Array of the combined size (bytes) of team members' -/// root namespaces, for each day. -/// @param sharedFolders Array of the number of shared folders owned by team -/// members, for each day. -/// @param memberStorageMap Array of storage summaries of team members' account -/// sizes. Each storage summary is an array of key, value pairs, where each pair -/// describes a storage bucket. The key indicates the upper bound of the bucket -/// and the value is the number of users in that bucket. There is one such -/// summary per day. If there is no data for a day, the storage summary will be -/// empty. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - totalUsage:(NSArray *)totalUsage - sharedUsage:(NSArray *)sharedUsage - unsharedUsage:(NSArray *)unsharedUsage - sharedFolders:(NSArray *)sharedFolders - memberStorageMap:(NSArray *> *)memberStorageMap; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetStorageReport` struct. -/// -@interface DBTEAMGetStorageReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetStorageReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetStorageReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetStorageReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetStorageReport *)instance; - -/// -/// Deserializes `DBTEAMGetStorageReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetStorageReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetStorageReport` object. -/// -+ (DBTEAMGetStorageReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupAccessType.h deleted file mode 100644 index 01e6702a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupAccessType.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAccessType` union. -/// -/// Role of a user in group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupAccessType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupAccessTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupAccessType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupAccessTypeTag) { - /// User is a member of the group, but has no special permissions. - DBTEAMGroupAccessTypeMember, - - /// User can rename the group, and add/remove members. - DBTEAMGroupAccessTypeOwner, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupAccessTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "member". -/// -/// Description of the "member" tag state: User is a member of the group, but -/// has no special permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember; - -/// -/// Initializes union class with tag state of "owner". -/// -/// Description of the "owner" tag state: User can rename the group, and -/// add/remove members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "member". -/// -/// @return Whether the union's current tag state has value "member". -/// -- (BOOL)isMember; - -/// -/// Retrieves whether the union's current tag state has value "owner". -/// -/// @return Whether the union's current tag state has value "owner". -/// -- (BOOL)isOwner; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupAccessType` union. -/// -@interface DBTEAMGroupAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMGroupAccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupAccessType *)instance; - -/// -/// Deserializes `DBTEAMGroupAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMGroupAccessType` object. -/// -+ (DBTEAMGroupAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupCreateArg.h deleted file mode 100644 index 23e6452b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupCreateArg.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMGroupCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupCreateArg : NSObject - -#pragma mark - Instance fields - -/// Group name. -@property (nonatomic, readonly, copy) NSString *groupName; - -/// Automatically add the creator of the group. -@property (nonatomic, readonly) NSNumber *addCreatorAsOwner; - -/// The creator of a team can associate an arbitrary external ID to the group. -@property (nonatomic, readonly, copy, nullable) NSString *groupExternalId; - -/// Whether the team can be managed by selected users, or only by team admins. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONGroupManagementType *groupManagementType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName Group name. -/// @param addCreatorAsOwner Automatically add the creator of the group. -/// @param groupExternalId The creator of a team can associate an arbitrary -/// external ID to the group. -/// @param groupManagementType Whether the team can be managed by selected -/// users, or only by team admins. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - addCreatorAsOwner:(nullable NSNumber *)addCreatorAsOwner - groupExternalId:(nullable NSString *)groupExternalId - groupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)groupManagementType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName Group name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupCreateArg` struct. -/// -@interface DBTEAMGroupCreateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupCreateArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupCreateArg *)instance; - -/// -/// Deserializes `DBTEAMGroupCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupCreateArg` object. -/// -+ (DBTEAMGroupCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupCreateError.h deleted file mode 100644 index 886e7d9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupCreateError.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupCreateErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupCreateErrorTag) { - /// The requested group name is already being used by another group. - DBTEAMGroupCreateErrorGroupNameAlreadyUsed, - - /// Group name is empty or has invalid characters. - DBTEAMGroupCreateErrorGroupNameInvalid, - - /// The requested external ID is already being used by another group. - DBTEAMGroupCreateErrorExternalIdAlreadyInUse, - - /// System-managed group cannot be manually created. - DBTEAMGroupCreateErrorSystemManagedGroupDisallowed, - - /// (no description). - DBTEAMGroupCreateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_name_already_used". -/// -/// Description of the "group_name_already_used" tag state: The requested group -/// name is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "group_name_invalid". -/// -/// Description of the "group_name_invalid" tag state: Group name is empty or -/// has invalid characters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameInvalid; - -/// -/// Initializes union class with tag state of "external_id_already_in_use". -/// -/// Description of the "external_id_already_in_use" tag state: The requested -/// external ID is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdAlreadyInUse; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: -/// System-managed group cannot be manually created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "group_name_already_used". -/// -- (BOOL)isGroupNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_invalid". -/// -/// @return Whether the union's current tag state has value -/// "group_name_invalid". -/// -- (BOOL)isGroupNameInvalid; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_already_in_use". -/// -/// @return Whether the union's current tag state has value -/// "external_id_already_in_use". -/// -- (BOOL)isExternalIdAlreadyInUse; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupCreateError` union. -/// -@interface DBTEAMGroupCreateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupCreateError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupCreateError *)instance; - -/// -/// Deserializes `DBTEAMGroupCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupCreateError` object. -/// -+ (DBTEAMGroupCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupDeleteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupDeleteError.h deleted file mode 100644 index d02b6033..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupDeleteError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupDeleteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDeleteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupDeleteError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupDeleteErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupDeleteError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupDeleteErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupDeleteErrorGroupNotFound, - - /// (no description). - DBTEAMGroupDeleteErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupDeleteErrorSystemManagedGroupDisallowed, - - /// This group has already been deleted. - DBTEAMGroupDeleteErrorGroupAlreadyDeleted, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupDeleteErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "group_already_deleted". -/// -/// Description of the "group_already_deleted" tag state: This group has already -/// been deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAlreadyDeleted; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_already_deleted". -/// -/// @return Whether the union's current tag state has value -/// "group_already_deleted". -/// -- (BOOL)isGroupAlreadyDeleted; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupDeleteError` union. -/// -@interface DBTEAMGroupDeleteErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupDeleteError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupDeleteError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupDeleteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupDeleteError *)instance; - -/// -/// Deserializes `DBTEAMGroupDeleteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupDeleteError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupDeleteError` object. -/// -+ (DBTEAMGroupDeleteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupFullInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupFullInfo.h deleted file mode 100644 index 70b35790..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupFullInfo.h +++ /dev/null @@ -1,113 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMCOMMONGroupSummary.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupFullInfo` struct. -/// -/// Full description of a group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupFullInfo : DBTEAMCOMMONGroupSummary - -#pragma mark - Instance fields - -/// List of group members. -@property (nonatomic, readonly, nullable) NSArray *members; - -/// The group creation time as a UTC timestamp in milliseconds since the Unix -/// epoch. -@property (nonatomic, readonly) NSNumber *created; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param created The group creation time as a UTC timestamp in milliseconds -/// since the Unix epoch. -/// @param groupExternalId External ID of group. This is an arbitrary ID that an -/// admin can attach to a group. -/// @param memberCount The number of members in the group. -/// @param members List of group members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - created:(NSNumber *)created - groupExternalId:(nullable NSString *)groupExternalId - memberCount:(nullable NSNumber *)memberCount - members:(nullable NSArray *)members; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param created The group creation time as a UTC timestamp in milliseconds -/// since the Unix epoch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - created:(NSNumber *)created; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupFullInfo` struct. -/// -@interface DBTEAMGroupFullInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupFullInfo` instances. -/// -/// @param instance An instance of the `DBTEAMGroupFullInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupFullInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupFullInfo *)instance; - -/// -/// Deserializes `DBTEAMGroupFullInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupFullInfo` API object. -/// -/// @return An instantiation of the `DBTEAMGroupFullInfo` object. -/// -+ (DBTEAMGroupFullInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberInfo.h deleted file mode 100644 index ea5470bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupAccessType; -@class DBTEAMGroupMemberInfo; -@class DBTEAMMemberProfile; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberInfo` struct. -/// -/// Profile of group member, and role in group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberInfo : NSObject - -#pragma mark - Instance fields - -/// Profile of group member. -@property (nonatomic, readonly) DBTEAMMemberProfile *profile; - -/// The role that the user has in the group. -@property (nonatomic, readonly) DBTEAMGroupAccessType *accessType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profile Profile of group member. -/// @param accessType The role that the user has in the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMMemberProfile *)profile accessType:(DBTEAMGroupAccessType *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMemberInfo` struct. -/// -@interface DBTEAMGroupMemberInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberInfo` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberInfo *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberInfo` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberInfo` object. -/// -+ (DBTEAMGroupMemberInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSelector.h deleted file mode 100644 index 1fc30510..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSelector.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberSelector; -@class DBTEAMGroupSelector; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberSelector` struct. -/// -/// Argument for selecting a group and a single user. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberSelector : NSObject - -#pragma mark - Instance fields - -/// Specify a group. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// Identity of a user that is a member of group. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param user Identity of a user that is a member of group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group user:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMemberSelector` struct. -/// -@interface DBTEAMGroupMemberSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberSelector` object. -/// -+ (DBTEAMGroupMemberSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSelectorError.h deleted file mode 100644 index e558318e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSelectorError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberSelectorError` union. -/// -/// Error that can be raised when GroupMemberSelector is used, and the user is -/// required to be a member of the specified group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMemberSelectorErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMGroupMemberSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMemberSelectorErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMemberSelectorErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMemberSelectorErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMemberSelectorErrorSystemManagedGroupDisallowed, - - /// The specified user is not a member of this group. - DBTEAMGroupMemberSelectorErrorMemberNotInGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMemberSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: The specified user is -/// not a member of this group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMemberSelectorError` union. -/// -@interface DBTEAMGroupMemberSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberSelectorError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberSelectorError *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberSelectorError` object. -/// -+ (DBTEAMGroupMemberSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSetAccessTypeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSetAccessTypeError.h deleted file mode 100644 index 9300fc85..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMemberSetAccessTypeError.h +++ /dev/null @@ -1,187 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberSetAccessTypeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberSetAccessTypeError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberSetAccessTypeError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMemberSetAccessTypeErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMGroupMemberSetAccessTypeError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMemberSetAccessTypeErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMemberSetAccessTypeErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMemberSetAccessTypeErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMemberSetAccessTypeErrorSystemManagedGroupDisallowed, - - /// The specified user is not a member of this group. - DBTEAMGroupMemberSetAccessTypeErrorMemberNotInGroup, - - /// A company managed group cannot be managed by a user. - DBTEAMGroupMemberSetAccessTypeErrorUserCannotBeManagerOfCompanyManagedGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMemberSetAccessTypeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: The specified user is -/// not a member of this group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -/// -/// Initializes union class with tag state of -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// Description of the "user_cannot_be_manager_of_company_managed_group" tag -/// state: A company managed group cannot be managed by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCannotBeManagerOfCompanyManagedGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// @return Whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -- (BOOL)isUserCannotBeManagerOfCompanyManagedGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMemberSetAccessTypeError` union. -/// -@interface DBTEAMGroupMemberSetAccessTypeErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberSetAccessTypeError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberSetAccessTypeError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSetAccessTypeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberSetAccessTypeError *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberSetAccessTypeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSetAccessTypeError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberSetAccessTypeError` -/// object. -/// -+ (DBTEAMGroupMemberSetAccessTypeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersAddArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersAddArg.h deleted file mode 100644 index 286a211c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersAddArg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMIncludeMembersArg.h" - -@class DBTEAMGroupMembersAddArg; -@class DBTEAMGroupSelector; -@class DBTEAMMemberAccess; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersAddArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersAddArg : DBTEAMIncludeMembersArg - -#pragma mark - Instance fields - -/// Group to which users will be added. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// List of users to be added to the group. -@property (nonatomic, readonly) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - members:(NSArray *)members - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group members:(NSArray *)members; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersAddArg` struct. -/// -@interface DBTEAMGroupMembersAddArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersAddArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersAddArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersAddArg *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersAddArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersAddArg` object. -/// -+ (DBTEAMGroupMembersAddArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersAddError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersAddError.h deleted file mode 100644 index ba8524d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersAddError.h +++ /dev/null @@ -1,315 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersAddError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersAddError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersAddError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMembersAddErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupMembersAddError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMembersAddErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMembersAddErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMembersAddErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMembersAddErrorSystemManagedGroupDisallowed, - - /// You cannot add duplicate users. One or more of the members you are - /// trying to add is already a member of the group. - DBTEAMGroupMembersAddErrorDuplicateUser, - - /// Group is not in this team. You cannot add members to a group that is - /// outside of your team. - DBTEAMGroupMembersAddErrorGroupNotInTeam, - - /// These members are not part of your team. Currently, you cannot add - /// members to a group if they are not part of your team, though this may - /// change in a subsequent version. To add new members to your Dropbox - /// Business team, use the `membersAdd` endpoint. - DBTEAMGroupMembersAddErrorMembersNotInTeam, - - /// These users were not found in Dropbox. - DBTEAMGroupMembersAddErrorUsersNotFound, - - /// A suspended user cannot be added to a group as `owner` in - /// `DBTEAMGroupAccessType`. - DBTEAMGroupMembersAddErrorUserMustBeActiveToBeOwner, - - /// A company-managed group cannot be managed by a user. - DBTEAMGroupMembersAddErrorUserCannotBeManagerOfCompanyManagedGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMembersAddErrorTag tag; - -/// These members are not part of your team. Currently, you cannot add members -/// to a group if they are not part of your team, though this may change in a -/// subsequent version. To add new members to your Dropbox Business team, use -/// the `membersAdd` endpoint. @note Ensure the `isMembersNotInTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *membersNotInTeam; - -/// These users were not found in Dropbox. @note Ensure the `isUsersNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSArray *usersNotFound; - -/// A company-managed group cannot be managed by a user. @note Ensure the -/// `isUserCannotBeManagerOfCompanyManagedGroup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *userCannotBeManagerOfCompanyManagedGroup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "duplicate_user". -/// -/// Description of the "duplicate_user" tag state: You cannot add duplicate -/// users. One or more of the members you are trying to add is already a member -/// of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateUser; - -/// -/// Initializes union class with tag state of "group_not_in_team". -/// -/// Description of the "group_not_in_team" tag state: Group is not in this team. -/// You cannot add members to a group that is outside of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotInTeam; - -/// -/// Initializes union class with tag state of "members_not_in_team". -/// -/// Description of the "members_not_in_team" tag state: These members are not -/// part of your team. Currently, you cannot add members to a group if they are -/// not part of your team, though this may change in a subsequent version. To -/// add new members to your Dropbox Business team, use the `membersAdd` -/// endpoint. -/// -/// @param membersNotInTeam These members are not part of your team. Currently, -/// you cannot add members to a group if they are not part of your team, though -/// this may change in a subsequent version. To add new members to your Dropbox -/// Business team, use the `membersAdd` endpoint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembersNotInTeam:(NSArray *)membersNotInTeam; - -/// -/// Initializes union class with tag state of "users_not_found". -/// -/// Description of the "users_not_found" tag state: These users were not found -/// in Dropbox. -/// -/// @param usersNotFound These users were not found in Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersNotFound:(NSArray *)usersNotFound; - -/// -/// Initializes union class with tag state of "user_must_be_active_to_be_owner". -/// -/// Description of the "user_must_be_active_to_be_owner" tag state: A suspended -/// user cannot be added to a group as `owner` in `DBTEAMGroupAccessType`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMustBeActiveToBeOwner; - -/// -/// Initializes union class with tag state of -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// Description of the "user_cannot_be_manager_of_company_managed_group" tag -/// state: A company-managed group cannot be managed by a user. -/// -/// @param userCannotBeManagerOfCompanyManagedGroup A company-managed group -/// cannot be managed by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCannotBeManagerOfCompanyManagedGroup: - (NSArray *)userCannotBeManagerOfCompanyManagedGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "duplicate_user". -/// -/// @return Whether the union's current tag state has value "duplicate_user". -/// -- (BOOL)isDuplicateUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_in_team". -/// -/// @return Whether the union's current tag state has value "group_not_in_team". -/// -- (BOOL)isGroupNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "members_not_in_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `membersNotInTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "members_not_in_team". -/// -- (BOOL)isMembersNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "users_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `usersNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "users_not_found". -/// -- (BOOL)isUsersNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_must_be_active_to_be_owner". -/// -/// @return Whether the union's current tag state has value -/// "user_must_be_active_to_be_owner". -/// -- (BOOL)isUserMustBeActiveToBeOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCannotBeManagerOfCompanyManagedGroup` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -- (BOOL)isUserCannotBeManagerOfCompanyManagedGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMembersAddError` union. -/// -@interface DBTEAMGroupMembersAddErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersAddError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersAddError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersAddError *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersAddError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersAddError` object. -/// -+ (DBTEAMGroupMembersAddError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersChangeResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersChangeResult.h deleted file mode 100644 index 982eb787..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersChangeResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupMembersChangeResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersChangeResult` struct. -/// -/// Result returned by `groupsMembersAdd` and `groupsMembersRemove`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersChangeResult : NSObject - -#pragma mark - Instance fields - -/// The group info after member change operation has been performed. -@property (nonatomic, readonly) DBTEAMGroupFullInfo *groupInfo; - -/// For legacy purposes async_job_id will always return one space ' '. Formerly, -/// it was an ID that was used to obtain the status of granting/revoking -/// group-owned resources. It's no longer necessary because the async processing -/// now happens automatically. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupInfo The group info after member change operation has been -/// performed. -/// @param asyncJobId For legacy purposes async_job_id will always return one -/// space ' '. Formerly, it was an ID that was used to obtain the status of -/// granting/revoking group-owned resources. It's no longer necessary because -/// the async processing now happens automatically. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupInfo:(DBTEAMGroupFullInfo *)groupInfo asyncJobId:(NSString *)asyncJobId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersChangeResult` struct. -/// -@interface DBTEAMGroupMembersChangeResultSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersChangeResult` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersChangeResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersChangeResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersChangeResult *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersChangeResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersChangeResult` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersChangeResult` object. -/// -+ (DBTEAMGroupMembersChangeResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersRemoveArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersRemoveArg.h deleted file mode 100644 index f725f51d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersRemoveArg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMIncludeMembersArg.h" - -@class DBTEAMGroupMembersRemoveArg; -@class DBTEAMGroupSelector; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersRemoveArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersRemoveArg : DBTEAMIncludeMembersArg - -#pragma mark - Instance fields - -/// Group from which users will be removed. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// List of users to be removed from the group. -@property (nonatomic, readonly) NSArray *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - users:(NSArray *)users - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group users:(NSArray *)users; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersRemoveArg` struct. -/// -@interface DBTEAMGroupMembersRemoveArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersRemoveArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersRemoveArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersRemoveArg *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersRemoveArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersRemoveArg` object. -/// -+ (DBTEAMGroupMembersRemoveArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersRemoveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersRemoveError.h deleted file mode 100644 index 8930ecac..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersRemoveError.h +++ /dev/null @@ -1,246 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersRemoveError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersRemoveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersRemoveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMembersRemoveErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupMembersRemoveError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMembersRemoveErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMembersRemoveErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMembersRemoveErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMembersRemoveErrorSystemManagedGroupDisallowed, - - /// At least one of the specified users is not a member of the group. - DBTEAMGroupMembersRemoveErrorMemberNotInGroup, - - /// Group is not in this team. You cannot remove members from a group that - /// is outside of your team. - DBTEAMGroupMembersRemoveErrorGroupNotInTeam, - - /// These members are not part of your team. - DBTEAMGroupMembersRemoveErrorMembersNotInTeam, - - /// These users were not found in Dropbox. - DBTEAMGroupMembersRemoveErrorUsersNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMembersRemoveErrorTag tag; - -/// These members are not part of your team. @note Ensure the -/// `isMembersNotInTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSArray *membersNotInTeam; - -/// These users were not found in Dropbox. @note Ensure the `isUsersNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSArray *usersNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: At least one of the -/// specified users is not a member of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -/// -/// Initializes union class with tag state of "group_not_in_team". -/// -/// Description of the "group_not_in_team" tag state: Group is not in this team. -/// You cannot remove members from a group that is outside of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotInTeam; - -/// -/// Initializes union class with tag state of "members_not_in_team". -/// -/// Description of the "members_not_in_team" tag state: These members are not -/// part of your team. -/// -/// @param membersNotInTeam These members are not part of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembersNotInTeam:(NSArray *)membersNotInTeam; - -/// -/// Initializes union class with tag state of "users_not_found". -/// -/// Description of the "users_not_found" tag state: These users were not found -/// in Dropbox. -/// -/// @param usersNotFound These users were not found in Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersNotFound:(NSArray *)usersNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_in_team". -/// -/// @return Whether the union's current tag state has value "group_not_in_team". -/// -- (BOOL)isGroupNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "members_not_in_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `membersNotInTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "members_not_in_team". -/// -- (BOOL)isMembersNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "users_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `usersNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "users_not_found". -/// -- (BOOL)isUsersNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMembersRemoveError` union. -/// -@interface DBTEAMGroupMembersRemoveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersRemoveError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersRemoveError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersRemoveError *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersRemoveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersRemoveError` object. -/// -+ (DBTEAMGroupMembersRemoveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSelector.h deleted file mode 100644 index 4dca295f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSelector.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersSelector; -@class DBTEAMGroupSelector; -@class DBTEAMUsersSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersSelector` struct. -/// -/// Argument for selecting a group and a list of users. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersSelector : NSObject - -#pragma mark - Instance fields - -/// Specify a group. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// A list of users that are members of group. -@property (nonatomic, readonly) DBTEAMUsersSelectorArg *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param users A list of users that are members of group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group users:(DBTEAMUsersSelectorArg *)users; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersSelector` struct. -/// -@interface DBTEAMGroupMembersSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersSelector` object. -/// -+ (DBTEAMGroupMembersSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSelectorError.h deleted file mode 100644 index 005677d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSelectorError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersSelectorError` union. -/// -/// Error that can be raised when GroupMembersSelector is used, and the users -/// are required to be members of the specified group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMembersSelectorErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMGroupMembersSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMembersSelectorErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMembersSelectorErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMembersSelectorErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMembersSelectorErrorSystemManagedGroupDisallowed, - - /// At least one of the specified users is not a member of the group. - DBTEAMGroupMembersSelectorErrorMemberNotInGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMembersSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: At least one of the -/// specified users is not a member of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMembersSelectorError` union. -/// -@interface DBTEAMGroupMembersSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersSelectorError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersSelectorError *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersSelectorError` object. -/// -+ (DBTEAMGroupMembersSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSetAccessTypeArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSetAccessTypeArg.h deleted file mode 100644 index 6e8a50bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupMembersSetAccessTypeArg.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMGroupMemberSelector.h" - -@class DBTEAMGroupAccessType; -@class DBTEAMGroupMembersSetAccessTypeArg; -@class DBTEAMGroupSelector; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersSetAccessTypeArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersSetAccessTypeArg : DBTEAMGroupMemberSelector - -#pragma mark - Instance fields - -/// New group access type the user will have. -@property (nonatomic, readonly) DBTEAMGroupAccessType *accessType; - -/// Whether to return the list of members in the group. Note that the default -/// value will cause all the group members to be returned in the response. This -/// may take a long time for large groups. -@property (nonatomic, readonly) NSNumber *returnMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param user Identity of a user that is a member of group. -/// @param accessType New group access type the user will have. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Specify a group. -/// @param user Identity of a user that is a member of group. -/// @param accessType New group access type the user will have. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersSetAccessTypeArg` struct. -/// -@interface DBTEAMGroupMembersSetAccessTypeArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersSetAccessTypeArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersSetAccessTypeArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSetAccessTypeArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersSetAccessTypeArg *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersSetAccessTypeArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSetAccessTypeArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersSetAccessTypeArg` object. -/// -+ (DBTEAMGroupMembersSetAccessTypeArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelector.h deleted file mode 100644 index a4c72585..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelector.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSelector` union. -/// -/// Argument for selecting a single group, either by group_id or by external -/// group ID. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupSelector : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupSelectorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupSelector` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupSelectorTag) { - /// Group ID. - DBTEAMGroupSelectorGroupId, - - /// External ID of the group. - DBTEAMGroupSelectorGroupExternalId, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupSelectorTag tag; - -/// Group ID. @note Ensure the `isGroupId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *groupId; - -/// External ID of the group. @note Ensure the `isGroupExternalId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *groupExternalId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_id". -/// -/// Description of the "group_id" tag state: Group ID. -/// -/// @param groupId Group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupId:(NSString *)groupId; - -/// -/// Initializes union class with tag state of "group_external_id". -/// -/// Description of the "group_external_id" tag state: External ID of the group. -/// -/// @param groupExternalId External ID of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupExternalId:(NSString *)groupExternalId; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_id". -/// -- (BOOL)isGroupId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupExternalId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_external_id". -/// -- (BOOL)isGroupExternalId; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupSelector` union. -/// -@interface DBTEAMGroupSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupSelector` object. -/// -+ (DBTEAMGroupSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelectorError.h deleted file mode 100644 index e1c07561..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelectorError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSelectorError` union. -/// -/// Error that can be raised when GroupSelector is used. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupSelectorErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupSelectorErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupSelectorErrorGroupNotFound, - - /// (no description). - DBTEAMGroupSelectorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupSelectorError` union. -/// -@interface DBTEAMGroupSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupSelectorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupSelectorError *)instance; - -/// -/// Deserializes `DBTEAMGroupSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupSelectorError` object. -/// -+ (DBTEAMGroupSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelectorWithTeamGroupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelectorWithTeamGroupError.h deleted file mode 100644 index bd8a1e45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupSelectorWithTeamGroupError.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelectorWithTeamGroupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSelectorWithTeamGroupError` union. -/// -/// Error that can be raised when GroupSelector is used and team groups are -/// disallowed from being used. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupSelectorWithTeamGroupError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupSelectorWithTeamGroupErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMGroupSelectorWithTeamGroupError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupSelectorWithTeamGroupErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupSelectorWithTeamGroupErrorGroupNotFound, - - /// (no description). - DBTEAMGroupSelectorWithTeamGroupErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupSelectorWithTeamGroupErrorSystemManagedGroupDisallowed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupSelectorWithTeamGroupErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupSelectorWithTeamGroupError` -/// union. -/// -@interface DBTEAMGroupSelectorWithTeamGroupErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupSelectorWithTeamGroupError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupSelectorWithTeamGroupError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorWithTeamGroupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupSelectorWithTeamGroupError *)instance; - -/// -/// Deserializes `DBTEAMGroupSelectorWithTeamGroupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorWithTeamGroupError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupSelectorWithTeamGroupError` -/// object. -/// -+ (DBTEAMGroupSelectorWithTeamGroupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupUpdateArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupUpdateArgs.h deleted file mode 100644 index a5b62875..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupUpdateArgs.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMIncludeMembersArg.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMGroupSelector; -@class DBTEAMGroupUpdateArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUpdateArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupUpdateArgs : DBTEAMIncludeMembersArg - -#pragma mark - Instance fields - -/// Specify a group. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// Optional argument. Set group name to this if provided. -@property (nonatomic, readonly, copy, nullable) NSString *dNewGroupName; - -/// Optional argument. New group external ID. If the argument is None, the -/// group's external_id won't be updated. If the argument is empty string, the -/// group's external id will be cleared. -@property (nonatomic, readonly, copy, nullable) NSString *dNewGroupExternalId; - -/// Set new group management type, if provided. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONGroupManagementType *dNewGroupManagementType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// @param dNewGroupName Optional argument. Set group name to this if provided. -/// @param dNewGroupExternalId Optional argument. New group external ID. If the -/// argument is None, the group's external_id won't be updated. If the argument -/// is empty string, the group's external id will be cleared. -/// @param dNewGroupManagementType Set new group management type, if provided. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - returnMembers:(nullable NSNumber *)returnMembers - dNewGroupName:(nullable NSString *)dNewGroupName - dNewGroupExternalId:(nullable NSString *)dNewGroupExternalId - dNewGroupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)dNewGroupManagementType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Specify a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupUpdateArgs` struct. -/// -@interface DBTEAMGroupUpdateArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupUpdateArgs` instances. -/// -/// @param instance An instance of the `DBTEAMGroupUpdateArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupUpdateArgs *)instance; - -/// -/// Deserializes `DBTEAMGroupUpdateArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateArgs` API object. -/// -/// @return An instantiation of the `DBTEAMGroupUpdateArgs` object. -/// -+ (DBTEAMGroupUpdateArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupUpdateError.h deleted file mode 100644 index 8381aa09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupUpdateError.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupUpdateErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupUpdateErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupUpdateErrorGroupNotFound, - - /// (no description). - DBTEAMGroupUpdateErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupUpdateErrorSystemManagedGroupDisallowed, - - /// The requested group name is already being used by another group. - DBTEAMGroupUpdateErrorGroupNameAlreadyUsed, - - /// Group name is empty or has invalid characters. - DBTEAMGroupUpdateErrorGroupNameInvalid, - - /// The requested external ID is already being used by another group. - DBTEAMGroupUpdateErrorExternalIdAlreadyInUse, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "group_name_already_used". -/// -/// Description of the "group_name_already_used" tag state: The requested group -/// name is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "group_name_invalid". -/// -/// Description of the "group_name_invalid" tag state: Group name is empty or -/// has invalid characters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameInvalid; - -/// -/// Initializes union class with tag state of "external_id_already_in_use". -/// -/// Description of the "external_id_already_in_use" tag state: The requested -/// external ID is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdAlreadyInUse; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "group_name_already_used". -/// -- (BOOL)isGroupNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_invalid". -/// -/// @return Whether the union's current tag state has value -/// "group_name_invalid". -/// -- (BOOL)isGroupNameInvalid; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_already_in_use". -/// -/// @return Whether the union's current tag state has value -/// "external_id_already_in_use". -/// -- (BOOL)isExternalIdAlreadyInUse; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupUpdateError` union. -/// -@interface DBTEAMGroupUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupUpdateError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupUpdateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupUpdateError *)instance; - -/// -/// Deserializes `DBTEAMGroupUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupUpdateError` object. -/// -+ (DBTEAMGroupUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsGetInfoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsGetInfoError.h deleted file mode 100644 index 54ea01d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsGetInfoError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsGetInfoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsGetInfoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsGetInfoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsGetInfoErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupsGetInfoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsGetInfoErrorTag) { - /// The group is not on your team. - DBTEAMGroupsGetInfoErrorGroupNotOnTeam, - - /// (no description). - DBTEAMGroupsGetInfoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsGetInfoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_on_team". -/// -/// Description of the "group_not_on_team" tag state: The group is not on your -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotOnTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_on_team". -/// -/// @return Whether the union's current tag state has value "group_not_on_team". -/// -- (BOOL)isGroupNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsGetInfoError` union. -/// -@interface DBTEAMGroupsGetInfoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsGetInfoError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsGetInfoError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsGetInfoError *)instance; - -/// -/// Deserializes `DBTEAMGroupsGetInfoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsGetInfoError` object. -/// -+ (DBTEAMGroupsGetInfoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsGetInfoItem.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsGetInfoItem.h deleted file mode 100644 index f9565cb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsGetInfoItem.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupsGetInfoItem; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsGetInfoItem` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsGetInfoItem : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsGetInfoItemTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupsGetInfoItem` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsGetInfoItemTag) { - /// An ID that was provided as a parameter to `groupsGetInfo`, and did not - /// match a corresponding group. The ID can be a group ID, or an external - /// ID, depending on how the method was called. - DBTEAMGroupsGetInfoItemIdNotFound, - - /// Info about a group. - DBTEAMGroupsGetInfoItemGroupInfo, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsGetInfoItemTag tag; - -/// An ID that was provided as a parameter to `groupsGetInfo`, and did not match -/// a corresponding group. The ID can be a group ID, or an external ID, -/// depending on how the method was called. @note Ensure the `isIdNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Info about a group. @note Ensure the `isGroupInfo` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMGroupFullInfo *groupInfo; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `groupsGetInfo`, and did not match a corresponding group. The -/// ID can be a group ID, or an external ID, depending on how the method was -/// called. -/// -/// @param idNotFound An ID that was provided as a parameter to `groupsGetInfo`, -/// and did not match a corresponding group. The ID can be a group ID, or an -/// external ID, depending on how the method was called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "group_info". -/// -/// Description of the "group_info" tag state: Info about a group. -/// -/// @param groupInfo Info about a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupInfo:(DBTEAMGroupFullInfo *)groupInfo; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value "group_info". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupInfo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_info". -/// -- (BOOL)isGroupInfo; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsGetInfoItem` union. -/// -@interface DBTEAMGroupsGetInfoItemSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsGetInfoItem` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsGetInfoItem` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoItem` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsGetInfoItem *)instance; - -/// -/// Deserializes `DBTEAMGroupsGetInfoItem` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoItem` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsGetInfoItem` object. -/// -+ (DBTEAMGroupsGetInfoItem *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListArg.h deleted file mode 100644 index ca40c166..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListArg : NSObject - -#pragma mark - Instance fields - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of results to return per call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsListArg` struct. -/// -@interface DBTEAMGroupsListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListArg` object. -/// -+ (DBTEAMGroupsListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListContinueArg.h deleted file mode 100644 index 5b9419c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListContinueArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of groups. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsListContinueArg` struct. -/// -@interface DBTEAMGroupsListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListContinueArg` object. -/// -+ (DBTEAMGroupsListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListContinueError.h deleted file mode 100644 index 9d6c63e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListContinueError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsListContinueErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupsListContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMGroupsListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMGroupsListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsListContinueError` union. -/// -@interface DBTEAMGroupsListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListContinueError *)instance; - -/// -/// Deserializes `DBTEAMGroupsListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListContinueError` object. -/// -+ (DBTEAMGroupsListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListResult.h deleted file mode 100644 index 2bfb9441..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsListResult.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupSummary; -@class DBTEAMGroupsListResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *groups; - -/// Pass the cursor into `groupsListContinue` to obtain the additional groups. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional groups that have not been returned yet. An -/// additional call to `groupsListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groups (no description). -/// @param cursor Pass the cursor into `groupsListContinue` to obtain the -/// additional groups. -/// @param hasMore Is true if there are additional groups that have not been -/// returned yet. An additional call to `groupsListContinue` can retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroups:(NSArray *)groups - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsListResult` struct. -/// -@interface DBTEAMGroupsListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListResult` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListResult *)instance; - -/// -/// Deserializes `DBTEAMGroupsListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListResult` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListResult` object. -/// -+ (DBTEAMGroupsListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListArg.h deleted file mode 100644 index 2a880b8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListArg.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelector; -@class DBTEAMGroupsMembersListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListArg : NSObject - -#pragma mark - Instance fields - -/// The group whose members are to be listed. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group The group whose members are to be listed. -/// @param limit Number of results to return per call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group The group whose members are to be listed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsMembersListArg` struct. -/// -@interface DBTEAMGroupsMembersListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListArg` object. -/// -+ (DBTEAMGroupsMembersListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListContinueArg.h deleted file mode 100644 index 4dc6ea99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsMembersListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of groups. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsMembersListContinueArg` struct. -/// -@interface DBTEAMGroupsMembersListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListContinueArg` object. -/// -+ (DBTEAMGroupsMembersListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListContinueError.h deleted file mode 100644 index d5ce40e6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListContinueError.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsMembersListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsMembersListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMGroupsMembersListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsMembersListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMGroupsMembersListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMGroupsMembersListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsMembersListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsMembersListContinueError` -/// union. -/// -@interface DBTEAMGroupsMembersListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListContinueError *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListContinueError` -/// object. -/// -+ (DBTEAMGroupsMembersListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListResult.h deleted file mode 100644 index 7ff0242a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsMembersListResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberInfo; -@class DBTEAMGroupsMembersListResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *members; - -/// Pass the cursor into `groupsMembersListContinue` to obtain additional group -/// members. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional group members that have not been returned -/// yet. An additional call to `groupsMembersListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members (no description). -/// @param cursor Pass the cursor into `groupsMembersListContinue` to obtain -/// additional group members. -/// @param hasMore Is true if there are additional group members that have not -/// been returned yet. An additional call to `groupsMembersListContinue` can -/// retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsMembersListResult` struct. -/// -@interface DBTEAMGroupsMembersListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListResult` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListResult *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListResult` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListResult` object. -/// -+ (DBTEAMGroupsMembersListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsPollError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsPollError.h deleted file mode 100644 index 4bb5e998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsPollError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsPollError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsPollError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsPollError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsPollErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupsPollError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsPollErrorTag) { - /// The job ID is invalid. - DBTEAMGroupsPollErrorInvalidAsyncJobId, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBTEAMGroupsPollErrorInternalError, - - /// (no description). - DBTEAMGroupsPollErrorOther, - - /// You are not allowed to poll this job. - DBTEAMGroupsPollErrorAccessDenied, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsPollErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_async_job_id". -/// -/// Description of the "invalid_async_job_id" tag state: The job ID is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAsyncJobId; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "access_denied". -/// -/// Description of the "access_denied" tag state: You are not allowed to poll -/// this job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessDenied; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_async_job_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_async_job_id". -/// -- (BOOL)isInvalidAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "access_denied". -/// -/// @return Whether the union's current tag state has value "access_denied". -/// -- (BOOL)isAccessDenied; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsPollError` union. -/// -@interface DBTEAMGroupsPollErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsPollError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsPollError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsPollError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsPollError *)instance; - -/// -/// Deserializes `DBTEAMGroupsPollError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsPollError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsPollError` object. -/// -+ (DBTEAMGroupsPollError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsSelector.h deleted file mode 100644 index 6c2a96b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMGroupsSelector.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsSelector` union. -/// -/// Argument for selecting a list of groups, either by group_ids, or external -/// group IDs. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsSelector : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsSelectorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupsSelector` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsSelectorTag) { - /// List of group IDs. - DBTEAMGroupsSelectorGroupIds, - - /// List of external IDs of groups. - DBTEAMGroupsSelectorGroupExternalIds, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsSelectorTag tag; - -/// List of group IDs. @note Ensure the `isGroupIds` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *groupIds; - -/// List of external IDs of groups. @note Ensure the `isGroupExternalIds` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *groupExternalIds; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_ids". -/// -/// Description of the "group_ids" tag state: List of group IDs. -/// -/// @param groupIds List of group IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupIds:(NSArray *)groupIds; - -/// -/// Initializes union class with tag state of "group_external_ids". -/// -/// Description of the "group_external_ids" tag state: List of external IDs of -/// groups. -/// -/// @param groupExternalIds List of external IDs of groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupExternalIds:(NSArray *)groupExternalIds; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_ids". -/// -- (BOOL)isGroupIds; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_external_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupExternalIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_external_ids". -/// -- (BOOL)isGroupExternalIds; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsSelector` union. -/// -@interface DBTEAMGroupsSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupsSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsSelector` object. -/// -+ (DBTEAMGroupsSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamFileEventsValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamFileEventsValue.h deleted file mode 100644 index 017e318f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamFileEventsValue.h +++ /dev/null @@ -1,128 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMHasTeamFileEventsValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HasTeamFileEventsValue` union. -/// -/// The value for `hasTeamFileEvents` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMHasTeamFileEventsValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMHasTeamFileEventsValueTag` enum type represents the possible tag -/// states with which the `DBTEAMHasTeamFileEventsValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMHasTeamFileEventsValueTag) { - /// Does this team have file events. - DBTEAMHasTeamFileEventsValueEnabled, - - /// (no description). - DBTEAMHasTeamFileEventsValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMHasTeamFileEventsValueTag tag; - -/// Does this team have file events. @note Ensure the `isEnabled` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *enabled; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Does this team have file events. -/// -/// @param enabled Does this team have file events. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled:(NSNumber *)enabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabled` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMHasTeamFileEventsValue` union. -/// -@interface DBTEAMHasTeamFileEventsValueSerializer : NSObject - -/// -/// Serializes `DBTEAMHasTeamFileEventsValue` instances. -/// -/// @param instance An instance of the `DBTEAMHasTeamFileEventsValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMHasTeamFileEventsValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMHasTeamFileEventsValue *)instance; - -/// -/// Deserializes `DBTEAMHasTeamFileEventsValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMHasTeamFileEventsValue` API object. -/// -/// @return An instantiation of the `DBTEAMHasTeamFileEventsValue` object. -/// -+ (DBTEAMHasTeamFileEventsValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamSelectiveSyncValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamSelectiveSyncValue.h deleted file mode 100644 index b713cfe7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamSelectiveSyncValue.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMHasTeamSelectiveSyncValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HasTeamSelectiveSyncValue` union. -/// -/// The value for `hasTeamSelectiveSync` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMHasTeamSelectiveSyncValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMHasTeamSelectiveSyncValueTag` enum type represents the possible -/// tag states with which the `DBTEAMHasTeamSelectiveSyncValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMHasTeamSelectiveSyncValueTag) { - /// Does this team have team selective sync enabled. - DBTEAMHasTeamSelectiveSyncValueHasTeamSelectiveSync, - - /// (no description). - DBTEAMHasTeamSelectiveSyncValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMHasTeamSelectiveSyncValueTag tag; - -/// Does this team have team selective sync enabled. @note Ensure the -/// `isHasTeamSelectiveSync` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *hasTeamSelectiveSync; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "has_team_selective_sync". -/// -/// Description of the "has_team_selective_sync" tag state: Does this team have -/// team selective sync enabled. -/// -/// @param hasTeamSelectiveSync Does this team have team selective sync enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSelectiveSync:(NSNumber *)hasTeamSelectiveSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_selective_sync". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSelectiveSync` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_selective_sync". -/// -- (BOOL)isHasTeamSelectiveSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMHasTeamSelectiveSyncValue` union. -/// -@interface DBTEAMHasTeamSelectiveSyncValueSerializer : NSObject - -/// -/// Serializes `DBTEAMHasTeamSelectiveSyncValue` instances. -/// -/// @param instance An instance of the `DBTEAMHasTeamSelectiveSyncValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSelectiveSyncValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMHasTeamSelectiveSyncValue *)instance; - -/// -/// Deserializes `DBTEAMHasTeamSelectiveSyncValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSelectiveSyncValue` API object. -/// -/// @return An instantiation of the `DBTEAMHasTeamSelectiveSyncValue` object. -/// -+ (DBTEAMHasTeamSelectiveSyncValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamSharedDropboxValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamSharedDropboxValue.h deleted file mode 100644 index ab84ae3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMHasTeamSharedDropboxValue.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMHasTeamSharedDropboxValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HasTeamSharedDropboxValue` union. -/// -/// The value for `hasTeamSharedDropbox` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMHasTeamSharedDropboxValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMHasTeamSharedDropboxValueTag` enum type represents the possible -/// tag states with which the `DBTEAMHasTeamSharedDropboxValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMHasTeamSharedDropboxValueTag) { - /// Does this team have a shared team root. - DBTEAMHasTeamSharedDropboxValueHasTeamSharedDropbox, - - /// (no description). - DBTEAMHasTeamSharedDropboxValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMHasTeamSharedDropboxValueTag tag; - -/// Does this team have a shared team root. @note Ensure the -/// `isHasTeamSharedDropbox` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *hasTeamSharedDropbox; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "has_team_shared_dropbox". -/// -/// Description of the "has_team_shared_dropbox" tag state: Does this team have -/// a shared team root. -/// -/// @param hasTeamSharedDropbox Does this team have a shared team root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSharedDropbox:(NSNumber *)hasTeamSharedDropbox; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSharedDropbox` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -- (BOOL)isHasTeamSharedDropbox; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMHasTeamSharedDropboxValue` union. -/// -@interface DBTEAMHasTeamSharedDropboxValueSerializer : NSObject - -/// -/// Serializes `DBTEAMHasTeamSharedDropboxValue` instances. -/// -/// @param instance An instance of the `DBTEAMHasTeamSharedDropboxValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSharedDropboxValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMHasTeamSharedDropboxValue *)instance; - -/// -/// Deserializes `DBTEAMHasTeamSharedDropboxValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSharedDropboxValue` API object. -/// -/// @return An instantiation of the `DBTEAMHasTeamSharedDropboxValue` object. -/// -+ (DBTEAMHasTeamSharedDropboxValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMIncludeMembersArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMIncludeMembersArg.h deleted file mode 100644 index 21662edb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMIncludeMembersArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMIncludeMembersArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IncludeMembersArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMIncludeMembersArg : NSObject - -#pragma mark - Instance fields - -/// Whether to return the list of members in the group. Note that the default -/// value will cause all the group members to be returned in the response. This -/// may take a long time for large groups. -@property (nonatomic, readonly) NSNumber *returnMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReturnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IncludeMembersArg` struct. -/// -@interface DBTEAMIncludeMembersArgSerializer : NSObject - -/// -/// Serializes `DBTEAMIncludeMembersArg` instances. -/// -/// @param instance An instance of the `DBTEAMIncludeMembersArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMIncludeMembersArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMIncludeMembersArg *)instance; - -/// -/// Deserializes `DBTEAMIncludeMembersArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMIncludeMembersArg` API object. -/// -/// @return An instantiation of the `DBTEAMIncludeMembersArg` object. -/// -+ (DBTEAMIncludeMembersArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccessMethodLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccessMethodLogInfo.h deleted file mode 100644 index 12e19cae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccessMethodLogInfo.h +++ /dev/null @@ -1,276 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccessMethodLogInfo; -@class DBTEAMLOGApiSessionLogInfo; -@class DBTEAMLOGSessionLogInfo; -@class DBTEAMLOGWebSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessMethodLogInfo` union. -/// -/// Indicates the method in which the action was performed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccessMethodLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccessMethodLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGAccessMethodLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccessMethodLogInfoTag) { - /// Admin console session details. - DBTEAMLOGAccessMethodLogInfoAdminConsole, - - /// Api session details. - DBTEAMLOGAccessMethodLogInfoApi, - - /// Content manager session details. - DBTEAMLOGAccessMethodLogInfoContentManager, - - /// End user session details. - DBTEAMLOGAccessMethodLogInfoEndUser, - - /// Enterprise console session details. - DBTEAMLOGAccessMethodLogInfoEnterpriseConsole, - - /// Sign in as session details. - DBTEAMLOGAccessMethodLogInfoSignInAs, - - /// (no description). - DBTEAMLOGAccessMethodLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccessMethodLogInfoTag tag; - -/// Admin console session details. @note Ensure the `isAdminConsole` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *adminConsole; - -/// Api session details. @note Ensure the `isApi` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGApiSessionLogInfo *api; - -/// Content manager session details. @note Ensure the `isContentManager` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *contentManager; - -/// End user session details. @note Ensure the `isEndUser` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSessionLogInfo *endUser; - -/// Enterprise console session details. @note Ensure the `isEnterpriseConsole` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *enterpriseConsole; - -/// Sign in as session details. @note Ensure the `isSignInAs` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *signInAs; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admin_console". -/// -/// Description of the "admin_console" tag state: Admin console session details. -/// -/// @param adminConsole Admin console session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminConsole:(DBTEAMLOGWebSessionLogInfo *)adminConsole; - -/// -/// Initializes union class with tag state of "api". -/// -/// Description of the "api" tag state: Api session details. -/// -/// @param api Api session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApi:(DBTEAMLOGApiSessionLogInfo *)api; - -/// -/// Initializes union class with tag state of "content_manager". -/// -/// Description of the "content_manager" tag state: Content manager session -/// details. -/// -/// @param contentManager Content manager session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentManager:(DBTEAMLOGWebSessionLogInfo *)contentManager; - -/// -/// Initializes union class with tag state of "end_user". -/// -/// Description of the "end_user" tag state: End user session details. -/// -/// @param endUser End user session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndUser:(DBTEAMLOGSessionLogInfo *)endUser; - -/// -/// Initializes union class with tag state of "enterprise_console". -/// -/// Description of the "enterprise_console" tag state: Enterprise console -/// session details. -/// -/// @param enterpriseConsole Enterprise console session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseConsole:(DBTEAMLOGWebSessionLogInfo *)enterpriseConsole; - -/// -/// Initializes union class with tag state of "sign_in_as". -/// -/// Description of the "sign_in_as" tag state: Sign in as session details. -/// -/// @param signInAs Sign in as session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAs:(DBTEAMLOGWebSessionLogInfo *)signInAs; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admin_console". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminConsole` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "admin_console". -/// -- (BOOL)isAdminConsole; - -/// -/// Retrieves whether the union's current tag state has value "api". -/// -/// @note Call this method and ensure it returns true before accessing the `api` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "api". -/// -- (BOOL)isApi; - -/// -/// Retrieves whether the union's current tag state has value "content_manager". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contentManager` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "content_manager". -/// -- (BOOL)isContentManager; - -/// -/// Retrieves whether the union's current tag state has value "end_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "end_user". -/// -- (BOOL)isEndUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_console". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enterpriseConsole` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "enterprise_console". -/// -- (BOOL)isEnterpriseConsole; - -/// -/// Retrieves whether the union's current tag state has value "sign_in_as". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAs` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sign_in_as". -/// -- (BOOL)isSignInAs; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccessMethodLogInfo` union. -/// -@interface DBTEAMLOGAccessMethodLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccessMethodLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccessMethodLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccessMethodLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccessMethodLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGAccessMethodLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccessMethodLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccessMethodLogInfo` object. -/// -+ (DBTEAMLOGAccessMethodLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureAvailability.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureAvailability.h deleted file mode 100644 index 5be94459..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureAvailability.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureAvailability; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureAvailability` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureAvailability : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountCaptureAvailabilityTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAccountCaptureAvailability` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountCaptureAvailabilityTag) { - /// (no description). - DBTEAMLOGAccountCaptureAvailabilityAvailable, - - /// (no description). - DBTEAMLOGAccountCaptureAvailabilityUnavailable, - - /// (no description). - DBTEAMLOGAccountCaptureAvailabilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureAvailabilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "available". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAvailable; - -/// -/// Initializes union class with tag state of "unavailable". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnavailable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "available". -/// -/// @return Whether the union's current tag state has value "available". -/// -- (BOOL)isAvailable; - -/// -/// Retrieves whether the union's current tag state has value "unavailable". -/// -/// @return Whether the union's current tag state has value "unavailable". -/// -- (BOOL)isUnavailable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountCaptureAvailability` union. -/// -@interface DBTEAMLOGAccountCaptureAvailabilitySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureAvailability` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCaptureAvailability` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureAvailability` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureAvailability *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureAvailability` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureAvailability` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureAvailability` -/// object. -/// -+ (DBTEAMLOGAccountCaptureAvailability *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h deleted file mode 100644 index 9493d974..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureAvailability; -@class DBTEAMLOGAccountCaptureChangeAvailabilityDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangeAvailabilityDetails` struct. -/// -/// Granted/revoked option to enable account capture on team domains. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityDetails : NSObject - -#pragma mark - Instance fields - -/// New account capture availabilty value. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureAvailability *dNewValue; - -/// Previous account capture availabilty value. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCaptureAvailability *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New account capture availabilty value. -/// @param previousValue Previous account capture availabilty value. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCaptureAvailability *)dNewValue - previousValue:(nullable DBTEAMLOGAccountCaptureAvailability *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New account capture availabilty value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCaptureAvailability *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangeAvailabilityDetails` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangeAvailabilityDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` object. -/// -+ (DBTEAMLOGAccountCaptureChangeAvailabilityDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityType.h deleted file mode 100644 index 14a72aba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangeAvailabilityType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangeAvailabilityType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangeAvailabilityType` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangeAvailabilityType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangeAvailabilityType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangeAvailabilityType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` object. -/// -+ (DBTEAMLOGAccountCaptureChangeAvailabilityType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangePolicyDetails.h deleted file mode 100644 index 65180056..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangePolicyDetails; -@class DBTEAMLOGAccountCapturePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangePolicyDetails` struct. -/// -/// Changed account capture setting on team domain. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New account capture policy. -@property (nonatomic, readonly) DBTEAMLOGAccountCapturePolicy *dNewValue; - -/// Previous account capture policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCapturePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New account capture policy. -/// @param previousValue Previous account capture policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCapturePolicy *)dNewValue - previousValue:(nullable DBTEAMLOGAccountCapturePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New account capture policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCapturePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangePolicyDetails` struct. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGAccountCaptureChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangePolicyType.h deleted file mode 100644 index f7a46a8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangePolicyType` struct. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCaptureChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureChangePolicyType` -/// object. -/// -+ (DBTEAMLOGAccountCaptureChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureMigrateAccountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureMigrateAccountDetails.h deleted file mode 100644 index 37300adc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureMigrateAccountDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureMigrateAccountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureMigrateAccountDetails` struct. -/// -/// Account-captured user migrated account to team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureMigrateAccountDetails` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureMigrateAccountDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureMigrateAccountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureMigrateAccountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` object. -/// -+ (DBTEAMLOGAccountCaptureMigrateAccountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureMigrateAccountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureMigrateAccountType.h deleted file mode 100644 index 4ccc1076..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureMigrateAccountType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureMigrateAccountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureMigrateAccountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureMigrateAccountType` struct. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureMigrateAccountType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureMigrateAccountType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureMigrateAccountType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureMigrateAccountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureMigrateAccountType` -/// object. -/// -+ (DBTEAMLOGAccountCaptureMigrateAccountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h deleted file mode 100644 index bd7d7656..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureNotificationEmailsSentDetails; -@class DBTEAMLOGAccountCaptureNotificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureNotificationEmailsSentDetails` struct. -/// -/// Sent account capture email to all unmanaged members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -/// Account-capture email notification type. -@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCaptureNotificationType *notificationType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// @param notificationType Account-capture email notification type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName - notificationType:(nullable DBTEAMLOGAccountCaptureNotificationType *)notificationType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `AccountCaptureNotificationEmailsSentDetails` struct. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` object. -/// -+ (DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentType.h deleted file mode 100644 index af3a9f9e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureNotificationEmailsSentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureNotificationEmailsSentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureNotificationEmailsSentType` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureNotificationEmailsSentType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureNotificationEmailsSentType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureNotificationEmailsSentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` object. -/// -+ (DBTEAMLOGAccountCaptureNotificationEmailsSentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationType.h deleted file mode 100644 index 25ef89e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureNotificationType.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureNotificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureNotificationType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureNotificationType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountCaptureNotificationTypeTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAccountCaptureNotificationType` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountCaptureNotificationTypeTag) { - /// (no description). - DBTEAMLOGAccountCaptureNotificationTypeActionableNotification, - - /// (no description). - DBTEAMLOGAccountCaptureNotificationTypeProactiveWarningNotification, - - /// (no description). - DBTEAMLOGAccountCaptureNotificationTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureNotificationTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "actionable_notification". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActionableNotification; - -/// -/// Initializes union class with tag state of "proactive_warning_notification". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProactiveWarningNotification; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "actionable_notification". -/// -/// @return Whether the union's current tag state has value -/// "actionable_notification". -/// -- (BOOL)isActionableNotification; - -/// -/// Retrieves whether the union's current tag state has value -/// "proactive_warning_notification". -/// -/// @return Whether the union's current tag state has value -/// "proactive_warning_notification". -/// -- (BOOL)isProactiveWarningNotification; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountCaptureNotificationType` -/// union. -/// -@interface DBTEAMLOGAccountCaptureNotificationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureNotificationType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCaptureNotificationType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureNotificationType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureNotificationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureNotificationType` -/// object. -/// -+ (DBTEAMLOGAccountCaptureNotificationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCapturePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCapturePolicy.h deleted file mode 100644 index 971353d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCapturePolicy.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCapturePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCapturePolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCapturePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountCapturePolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGAccountCapturePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountCapturePolicyTag) { - /// (no description). - DBTEAMLOGAccountCapturePolicyAllUsers, - - /// (no description). - DBTEAMLOGAccountCapturePolicyDisabled, - - /// (no description). - DBTEAMLOGAccountCapturePolicyInvitedUsers, - - /// (no description). - DBTEAMLOGAccountCapturePolicyPreventPersonalCreation, - - /// (no description). - DBTEAMLOGAccountCapturePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountCapturePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "all_users". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllUsers; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "invited_users". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitedUsers; - -/// -/// Initializes union class with tag state of "prevent_personal_creation". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreventPersonalCreation; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "all_users". -/// -/// @return Whether the union's current tag state has value "all_users". -/// -- (BOOL)isAllUsers; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "invited_users". -/// -/// @return Whether the union's current tag state has value "invited_users". -/// -- (BOOL)isInvitedUsers; - -/// -/// Retrieves whether the union's current tag state has value -/// "prevent_personal_creation". -/// -/// @return Whether the union's current tag state has value -/// "prevent_personal_creation". -/// -- (BOOL)isPreventPersonalCreation; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountCapturePolicy` union. -/// -@interface DBTEAMLOGAccountCapturePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCapturePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCapturePolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCapturePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCapturePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCapturePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCapturePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCapturePolicy` object. -/// -+ (DBTEAMLOGAccountCapturePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureRelinquishAccountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureRelinquishAccountDetails.h deleted file mode 100644 index 403cd6ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureRelinquishAccountDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureRelinquishAccountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureRelinquishAccountDetails` struct. -/// -/// Account-captured user changed account email to personal email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureRelinquishAccountDetails` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureRelinquishAccountDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureRelinquishAccountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureRelinquishAccountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` object. -/// -+ (DBTEAMLOGAccountCaptureRelinquishAccountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureRelinquishAccountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureRelinquishAccountType.h deleted file mode 100644 index b7857aa9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountCaptureRelinquishAccountType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureRelinquishAccountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureRelinquishAccountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureRelinquishAccountType` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureRelinquishAccountType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureRelinquishAccountType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureRelinquishAccountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` object. -/// -+ (DBTEAMLOGAccountCaptureRelinquishAccountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountLockOrUnlockedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountLockOrUnlockedDetails.h deleted file mode 100644 index b0838640..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountLockOrUnlockedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountLockOrUnlockedDetails; -@class DBTEAMLOGAccountState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountLockOrUnlockedDetails` struct. -/// -/// Unlocked/locked account after failed sign in attempts. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountLockOrUnlockedDetails : NSObject - -#pragma mark - Instance fields - -/// The previous account status. -@property (nonatomic, readonly) DBTEAMLOGAccountState *previousValue; - -/// The new account status. -@property (nonatomic, readonly) DBTEAMLOGAccountState *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue The previous account status. -/// @param dNewValue The new account status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGAccountState *)previousValue - dNewValue:(DBTEAMLOGAccountState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountLockOrUnlockedDetails` struct. -/// -@interface DBTEAMLOGAccountLockOrUnlockedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountLockOrUnlockedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountLockOrUnlockedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountLockOrUnlockedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountLockOrUnlockedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountLockOrUnlockedDetails` -/// object. -/// -+ (DBTEAMLOGAccountLockOrUnlockedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountLockOrUnlockedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountLockOrUnlockedType.h deleted file mode 100644 index f51f4036..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountLockOrUnlockedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountLockOrUnlockedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountLockOrUnlockedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountLockOrUnlockedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountLockOrUnlockedType` struct. -/// -@interface DBTEAMLOGAccountLockOrUnlockedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountLockOrUnlockedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountLockOrUnlockedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountLockOrUnlockedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountLockOrUnlockedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountLockOrUnlockedType` object. -/// -+ (DBTEAMLOGAccountLockOrUnlockedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountState.h deleted file mode 100644 index ff9c3b78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAccountState.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountStateTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGAccountState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountStateTag) { - /// (no description). - DBTEAMLOGAccountStateLocked, - - /// (no description). - DBTEAMLOGAccountStateUnlocked, - - /// (no description). - DBTEAMLOGAccountStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "locked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocked; - -/// -/// Initializes union class with tag state of "unlocked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlocked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "locked". -/// -/// @return Whether the union's current tag state has value "locked". -/// -- (BOOL)isLocked; - -/// -/// Retrieves whether the union's current tag state has value "unlocked". -/// -/// @return Whether the union's current tag state has value "unlocked". -/// -- (BOOL)isUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountState` union. -/// -@interface DBTEAMLOGAccountStateSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountState` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountState *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountState` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountState` object. -/// -+ (DBTEAMLOGAccountState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGActionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGActionDetails.h deleted file mode 100644 index 8e86045c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGActionDetails.h +++ /dev/null @@ -1,198 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActionDetails; -@class DBTEAMLOGJoinTeamDetails; -@class DBTEAMLOGMemberRemoveActionType; -@class DBTEAMLOGTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ActionDetails` union. -/// -/// Additional information indicating the action taken that caused status -/// change. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGActionDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGActionDetailsTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGActionDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGActionDetailsTag) { - /// Define how the user was removed from the team. - DBTEAMLOGActionDetailsRemoveAction, - - /// Additional information relevant when someone is invited to the team. - DBTEAMLOGActionDetailsTeamInviteDetails, - - /// Additional information relevant when a new member joins the team. - DBTEAMLOGActionDetailsTeamJoinDetails, - - /// (no description). - DBTEAMLOGActionDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGActionDetailsTag tag; - -/// Define how the user was removed from the team. @note Ensure the -/// `isRemoveAction` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveActionType *removeAction; - -/// Additional information relevant when someone is invited to the team. @note -/// Ensure the `isTeamInviteDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamInviteDetails *teamInviteDetails; - -/// Additional information relevant when a new member joins the team. @note -/// Ensure the `isTeamJoinDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGJoinTeamDetails *teamJoinDetails; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "remove_action". -/// -/// Description of the "remove_action" tag state: Define how the user was -/// removed from the team. -/// -/// @param removeAction Define how the user was removed from the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveAction:(DBTEAMLOGMemberRemoveActionType *)removeAction; - -/// -/// Initializes union class with tag state of "team_invite_details". -/// -/// Description of the "team_invite_details" tag state: Additional information -/// relevant when someone is invited to the team. -/// -/// @param teamInviteDetails Additional information relevant when someone is -/// invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamInviteDetails:(DBTEAMLOGTeamInviteDetails *)teamInviteDetails; - -/// -/// Initializes union class with tag state of "team_join_details". -/// -/// Description of the "team_join_details" tag state: Additional information -/// relevant when a new member joins the team. -/// -/// @param teamJoinDetails Additional information relevant when a new member -/// joins the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamJoinDetails:(DBTEAMLOGJoinTeamDetails *)teamJoinDetails; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "remove_action". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `removeAction` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "remove_action". -/// -- (BOOL)isRemoveAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamInviteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_invite_details". -/// -- (BOOL)isTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_join_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamJoinDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_join_details". -/// -- (BOOL)isTeamJoinDetails; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGActionDetails` union. -/// -@interface DBTEAMLOGActionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGActionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGActionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGActionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGActionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGActionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGActionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGActionDetails` object. -/// -+ (DBTEAMLOGActionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGActorLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGActorLogInfo.h deleted file mode 100644 index ad67df90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGActorLogInfo.h +++ /dev/null @@ -1,252 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActorLogInfo; -@class DBTEAMLOGAppLogInfo; -@class DBTEAMLOGResellerLogInfo; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ActorLogInfo` union. -/// -/// The entity who performed the action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGActorLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGActorLogInfoTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGActorLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGActorLogInfoTag) { - /// The admin who did the action. - DBTEAMLOGActorLogInfoAdmin, - - /// Anonymous actor. - DBTEAMLOGActorLogInfoAnonymous, - - /// The application who did the action. - DBTEAMLOGActorLogInfoApp, - - /// Action done by Dropbox. - DBTEAMLOGActorLogInfoDropbox, - - /// Action done by reseller. - DBTEAMLOGActorLogInfoReseller, - - /// The user who did the action. - DBTEAMLOGActorLogInfoUser, - - /// (no description). - DBTEAMLOGActorLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGActorLogInfoTag tag; - -/// The admin who did the action. @note Ensure the `isAdmin` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserLogInfo *admin; - -/// The application who did the action. @note Ensure the `isApp` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *app; - -/// Action done by reseller. @note Ensure the `isReseller` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerLogInfo *reseller; - -/// The user who did the action. @note Ensure the `isUser` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserLogInfo *user; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admin". -/// -/// Description of the "admin" tag state: The admin who did the action. -/// -/// @param admin The admin who did the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdmin:(DBTEAMLOGUserLogInfo *)admin; - -/// -/// Initializes union class with tag state of "anonymous". -/// -/// Description of the "anonymous" tag state: Anonymous actor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnonymous; - -/// -/// Initializes union class with tag state of "app". -/// -/// Description of the "app" tag state: The application who did the action. -/// -/// @param app The application who did the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApp:(DBTEAMLOGAppLogInfo *)app; - -/// -/// Initializes union class with tag state of "dropbox". -/// -/// Description of the "dropbox" tag state: Action done by Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropbox; - -/// -/// Initializes union class with tag state of "reseller". -/// -/// Description of the "reseller" tag state: Action done by reseller. -/// -/// @param reseller Action done by reseller. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReseller:(DBTEAMLOGResellerLogInfo *)reseller; - -/// -/// Initializes union class with tag state of "user". -/// -/// Description of the "user" tag state: The user who did the action. -/// -/// @param user The user who did the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMLOGUserLogInfo *)user; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admin". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `admin` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "admin". -/// -- (BOOL)isAdmin; - -/// -/// Retrieves whether the union's current tag state has value "anonymous". -/// -/// @return Whether the union's current tag state has value "anonymous". -/// -- (BOOL)isAnonymous; - -/// -/// Retrieves whether the union's current tag state has value "app". -/// -/// @note Call this method and ensure it returns true before accessing the `app` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app". -/// -- (BOOL)isApp; - -/// -/// Retrieves whether the union's current tag state has value "dropbox". -/// -/// @return Whether the union's current tag state has value "dropbox". -/// -- (BOOL)isDropbox; - -/// -/// Retrieves whether the union's current tag state has value "reseller". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `reseller` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "reseller". -/// -- (BOOL)isReseller; - -/// -/// Retrieves whether the union's current tag state has value "user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `user` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user". -/// -- (BOOL)isUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGActorLogInfo` union. -/// -@interface DBTEAMLOGActorLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGActorLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGActorLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGActorLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGActorLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGActorLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGActorLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGActorLogInfo` object. -/// -+ (DBTEAMLOGActorLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertCategoryEnum.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertCategoryEnum.h deleted file mode 100644 index e6b5ba30..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertCategoryEnum.h +++ /dev/null @@ -1,227 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertCategoryEnum; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertCategoryEnum` union. -/// -/// Alert category -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertCategoryEnum : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertCategoryEnumTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGAdminAlertCategoryEnum` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertCategoryEnumTag) { - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumAccountTakeover, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumDataLossProtection, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumInformationGovernance, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumMalwareSharing, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumMassiveFileOperation, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumNa, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumThreatManagement, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertCategoryEnumTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "account_takeover". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountTakeover; - -/// -/// Initializes union class with tag state of "data_loss_protection". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataLossProtection; - -/// -/// Initializes union class with tag state of "information_governance". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInformationGovernance; - -/// -/// Initializes union class with tag state of "malware_sharing". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalwareSharing; - -/// -/// Initializes union class with tag state of "massive_file_operation". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMassiveFileOperation; - -/// -/// Initializes union class with tag state of "na". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNa; - -/// -/// Initializes union class with tag state of "threat_management". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithThreatManagement; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "account_takeover". -/// -/// @return Whether the union's current tag state has value "account_takeover". -/// -- (BOOL)isAccountTakeover; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_loss_protection". -/// -/// @return Whether the union's current tag state has value -/// "data_loss_protection". -/// -- (BOOL)isDataLossProtection; - -/// -/// Retrieves whether the union's current tag state has value -/// "information_governance". -/// -/// @return Whether the union's current tag state has value -/// "information_governance". -/// -- (BOOL)isInformationGovernance; - -/// -/// Retrieves whether the union's current tag state has value "malware_sharing". -/// -/// @return Whether the union's current tag state has value "malware_sharing". -/// -- (BOOL)isMalwareSharing; - -/// -/// Retrieves whether the union's current tag state has value -/// "massive_file_operation". -/// -/// @return Whether the union's current tag state has value -/// "massive_file_operation". -/// -- (BOOL)isMassiveFileOperation; - -/// -/// Retrieves whether the union's current tag state has value "na". -/// -/// @return Whether the union's current tag state has value "na". -/// -- (BOOL)isNa; - -/// -/// Retrieves whether the union's current tag state has value -/// "threat_management". -/// -/// @return Whether the union's current tag state has value "threat_management". -/// -- (BOOL)isThreatManagement; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertCategoryEnum` union. -/// -@interface DBTEAMLOGAdminAlertCategoryEnumSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertCategoryEnum` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertCategoryEnum` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertCategoryEnum` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertCategoryEnum *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertCategoryEnum` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertCategoryEnum` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertCategoryEnum` object. -/// -+ (DBTEAMLOGAdminAlertCategoryEnum *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertGeneralStateEnum.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertGeneralStateEnum.h deleted file mode 100644 index 7262692b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertGeneralStateEnum.h +++ /dev/null @@ -1,187 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertGeneralStateEnum; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertGeneralStateEnum` union. -/// -/// Alert state -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertGeneralStateEnum : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertGeneralStateEnumTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminAlertGeneralStateEnum` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertGeneralStateEnumTag) { - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumActive, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumDismissed, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumInProgress, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumNa, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumResolved, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertGeneralStateEnumTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "dismissed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDismissed; - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "na". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNa; - -/// -/// Initializes union class with tag state of "resolved". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResolved; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "dismissed". -/// -/// @return Whether the union's current tag state has value "dismissed". -/// -- (BOOL)isDismissed; - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "na". -/// -/// @return Whether the union's current tag state has value "na". -/// -- (BOOL)isNa; - -/// -/// Retrieves whether the union's current tag state has value "resolved". -/// -/// @return Whether the union's current tag state has value "resolved". -/// -- (BOOL)isResolved; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertGeneralStateEnum` union. -/// -@interface DBTEAMLOGAdminAlertGeneralStateEnumSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertGeneralStateEnum` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertGeneralStateEnum` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertGeneralStateEnum` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertGeneralStateEnum *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertGeneralStateEnum` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertGeneralStateEnum` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertGeneralStateEnum` -/// object. -/// -+ (DBTEAMLOGAdminAlertGeneralStateEnum *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertSeverityEnum.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertSeverityEnum.h deleted file mode 100644 index 7502e36c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertSeverityEnum.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertSeverityEnum; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertSeverityEnum` union. -/// -/// Alert severity -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertSeverityEnum : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertSeverityEnumTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGAdminAlertSeverityEnum` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertSeverityEnumTag) { - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumHigh, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumInfo, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumLow, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumMedium, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumNa, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertSeverityEnumTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "high". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHigh; - -/// -/// Initializes union class with tag state of "info". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInfo; - -/// -/// Initializes union class with tag state of "low". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLow; - -/// -/// Initializes union class with tag state of "medium". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMedium; - -/// -/// Initializes union class with tag state of "na". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNa; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "high". -/// -/// @return Whether the union's current tag state has value "high". -/// -- (BOOL)isHigh; - -/// -/// Retrieves whether the union's current tag state has value "info". -/// -/// @return Whether the union's current tag state has value "info". -/// -- (BOOL)isInfo; - -/// -/// Retrieves whether the union's current tag state has value "low". -/// -/// @return Whether the union's current tag state has value "low". -/// -- (BOOL)isLow; - -/// -/// Retrieves whether the union's current tag state has value "medium". -/// -/// @return Whether the union's current tag state has value "medium". -/// -- (BOOL)isMedium; - -/// -/// Retrieves whether the union's current tag state has value "na". -/// -/// @return Whether the union's current tag state has value "na". -/// -- (BOOL)isNa; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertSeverityEnum` union. -/// -@interface DBTEAMLOGAdminAlertSeverityEnumSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertSeverityEnum` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertSeverityEnum` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertSeverityEnum` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertSeverityEnum *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertSeverityEnum` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertSeverityEnum` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertSeverityEnum` object. -/// -+ (DBTEAMLOGAdminAlertSeverityEnum *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertConfiguration.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertConfiguration.h deleted file mode 100644 index 9b22d42b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertConfiguration.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertConfiguration; -@class DBTEAMLOGAdminAlertingAlertSensitivity; -@class DBTEAMLOGAdminAlertingAlertStatePolicy; -@class DBTEAMLOGRecipientsConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertConfiguration` struct. -/// -/// Alert configurations -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertConfiguration : NSObject - -#pragma mark - Instance fields - -/// Alert state. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminAlertingAlertStatePolicy *alertState; - -/// Sensitivity level. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminAlertingAlertSensitivity *sensitivityLevel; - -/// Recipient settings. -@property (nonatomic, readonly, nullable) DBTEAMLOGRecipientsConfiguration *recipientsSettings; - -/// Text. -@property (nonatomic, readonly, copy, nullable) NSString *text; - -/// Excluded file extensions. -@property (nonatomic, readonly, copy, nullable) NSString *excludedFileExtensions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertState Alert state. -/// @param sensitivityLevel Sensitivity level. -/// @param recipientsSettings Recipient settings. -/// @param text Text. -/// @param excludedFileExtensions Excluded file extensions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertState:(nullable DBTEAMLOGAdminAlertingAlertStatePolicy *)alertState - sensitivityLevel:(nullable DBTEAMLOGAdminAlertingAlertSensitivity *)sensitivityLevel - recipientsSettings:(nullable DBTEAMLOGRecipientsConfiguration *)recipientsSettings - text:(nullable NSString *)text - excludedFileExtensions:(nullable NSString *)excludedFileExtensions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingAlertConfiguration` struct. -/// -@interface DBTEAMLOGAdminAlertingAlertConfigurationSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertConfiguration` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingAlertConfiguration` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertConfiguration` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertConfiguration *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertConfiguration` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertConfiguration` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingAlertConfiguration` -/// object. -/// -+ (DBTEAMLOGAdminAlertingAlertConfiguration *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertSensitivity.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertSensitivity.h deleted file mode 100644 index 5005bf8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertSensitivity.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertSensitivity; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertSensitivity` union. -/// -/// Alert sensitivity -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertSensitivity : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertingAlertSensitivityTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertingAlertSensitivityTag) { - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityHigh, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityHighest, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityInvalid, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityLow, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityLowest, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityMedium, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertSensitivityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "high". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHigh; - -/// -/// Initializes union class with tag state of "highest". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHighest; - -/// -/// Initializes union class with tag state of "invalid". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalid; - -/// -/// Initializes union class with tag state of "low". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLow; - -/// -/// Initializes union class with tag state of "lowest". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLowest; - -/// -/// Initializes union class with tag state of "medium". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMedium; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "high". -/// -/// @return Whether the union's current tag state has value "high". -/// -- (BOOL)isHigh; - -/// -/// Retrieves whether the union's current tag state has value "highest". -/// -/// @return Whether the union's current tag state has value "highest". -/// -- (BOOL)isHighest; - -/// -/// Retrieves whether the union's current tag state has value "invalid". -/// -/// @return Whether the union's current tag state has value "invalid". -/// -- (BOOL)isInvalid; - -/// -/// Retrieves whether the union's current tag state has value "low". -/// -/// @return Whether the union's current tag state has value "low". -/// -- (BOOL)isLow; - -/// -/// Retrieves whether the union's current tag state has value "lowest". -/// -/// @return Whether the union's current tag state has value "lowest". -/// -- (BOOL)isLowest; - -/// -/// Retrieves whether the union's current tag state has value "medium". -/// -/// @return Whether the union's current tag state has value "medium". -/// -- (BOOL)isMedium; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// union. -/// -@interface DBTEAMLOGAdminAlertingAlertSensitivitySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertSensitivity` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertSensitivity` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertSensitivity *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertSensitivity` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertSensitivity` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// object. -/// -+ (DBTEAMLOGAdminAlertingAlertSensitivity *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStateChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStateChangedDetails.h deleted file mode 100644 index 54d9955f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStateChangedDetails.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertCategoryEnum; -@class DBTEAMLOGAdminAlertGeneralStateEnum; -@class DBTEAMLOGAdminAlertSeverityEnum; -@class DBTEAMLOGAdminAlertingAlertStateChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertStateChangedDetails` struct. -/// -/// Changed an alert state. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Alert name. -@property (nonatomic, readonly, copy) NSString *alertName; - -/// Alert severity. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertSeverityEnum *alertSeverity; - -/// Alert category. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertCategoryEnum *alertCategory; - -/// Alert ID. -@property (nonatomic, readonly, copy) NSString *alertInstanceId; - -/// Alert state before the change. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertGeneralStateEnum *previousValue; - -/// Alert state after the change. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertGeneralStateEnum *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertName Alert name. -/// @param alertSeverity Alert severity. -/// @param alertCategory Alert category. -/// @param alertInstanceId Alert ID. -/// @param previousValue Alert state before the change. -/// @param dNewValue Alert state after the change. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertName:(NSString *)alertName - alertSeverity:(DBTEAMLOGAdminAlertSeverityEnum *)alertSeverity - alertCategory:(DBTEAMLOGAdminAlertCategoryEnum *)alertCategory - alertInstanceId:(NSString *)alertInstanceId - previousValue:(DBTEAMLOGAdminAlertGeneralStateEnum *)previousValue - dNewValue:(DBTEAMLOGAdminAlertGeneralStateEnum *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingAlertStateChangedDetails` -/// struct. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertStateChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertStateChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertStateChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` object. -/// -+ (DBTEAMLOGAdminAlertingAlertStateChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStateChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStateChangedType.h deleted file mode 100644 index a607aab0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStateChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertStateChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertStateChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingAlertStateChangedType` struct. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertStateChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertStateChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertStateChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` object. -/// -+ (DBTEAMLOGAdminAlertingAlertStateChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStatePolicy.h deleted file mode 100644 index 851e953f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingAlertStatePolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertStatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertStatePolicy` union. -/// -/// Policy for controlling whether an alert can be triggered or not -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertStatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertingAlertStatePolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertingAlertStatePolicyTag) { - /// (no description). - DBTEAMLOGAdminAlertingAlertStatePolicyOff, - - /// (no description). - DBTEAMLOGAdminAlertingAlertStatePolicyOn, - - /// (no description). - DBTEAMLOGAdminAlertingAlertStatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertStatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "off". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOff; - -/// -/// Initializes union class with tag state of "on". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOn; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "off". -/// -/// @return Whether the union's current tag state has value "off". -/// -- (BOOL)isOff; - -/// -/// Retrieves whether the union's current tag state has value "on". -/// -/// @return Whether the union's current tag state has value "on". -/// -- (BOOL)isOn; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// union. -/// -@interface DBTEAMLOGAdminAlertingAlertStatePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertStatePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertStatePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertStatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStatePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// object. -/// -+ (DBTEAMLOGAdminAlertingAlertStatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h deleted file mode 100644 index c73f2745..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertConfiguration; -@class DBTEAMLOGAdminAlertingChangedAlertConfigDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingChangedAlertConfigDetails` struct. -/// -/// Changed an alert setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigDetails : NSObject - -#pragma mark - Instance fields - -/// Alert Name. -@property (nonatomic, readonly, copy) NSString *alertName; - -/// Previous alert configuration. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertConfiguration *previousAlertConfig; - -/// New alert configuration. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertConfiguration *dNewAlertConfig; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertName Alert Name. -/// @param previousAlertConfig Previous alert configuration. -/// @param dNewAlertConfig New alert configuration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertName:(NSString *)alertName - previousAlertConfig:(DBTEAMLOGAdminAlertingAlertConfiguration *)previousAlertConfig - dNewAlertConfig:(DBTEAMLOGAdminAlertingAlertConfiguration *)dNewAlertConfig; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingChangedAlertConfigDetails` -/// struct. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingChangedAlertConfigDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` object. -/// -+ (DBTEAMLOGAdminAlertingChangedAlertConfigDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigType.h deleted file mode 100644 index 69cc8d5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingChangedAlertConfigType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingChangedAlertConfigType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingChangedAlertConfigType` -/// struct. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingChangedAlertConfigType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingChangedAlertConfigType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingChangedAlertConfigType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` object. -/// -+ (DBTEAMLOGAdminAlertingChangedAlertConfigType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingTriggeredAlertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingTriggeredAlertDetails.h deleted file mode 100644 index 09b45a89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingTriggeredAlertDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertCategoryEnum; -@class DBTEAMLOGAdminAlertSeverityEnum; -@class DBTEAMLOGAdminAlertingTriggeredAlertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingTriggeredAlertDetails` struct. -/// -/// Triggered security alert. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertDetails : NSObject - -#pragma mark - Instance fields - -/// Alert name. -@property (nonatomic, readonly, copy) NSString *alertName; - -/// Alert severity. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertSeverityEnum *alertSeverity; - -/// Alert category. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertCategoryEnum *alertCategory; - -/// Alert ID. -@property (nonatomic, readonly, copy) NSString *alertInstanceId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertName Alert name. -/// @param alertSeverity Alert severity. -/// @param alertCategory Alert category. -/// @param alertInstanceId Alert ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertName:(NSString *)alertName - alertSeverity:(DBTEAMLOGAdminAlertSeverityEnum *)alertSeverity - alertCategory:(DBTEAMLOGAdminAlertCategoryEnum *)alertCategory - alertInstanceId:(NSString *)alertInstanceId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingTriggeredAlertDetails` struct. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingTriggeredAlertDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingTriggeredAlertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingTriggeredAlertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` object. -/// -+ (DBTEAMLOGAdminAlertingTriggeredAlertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingTriggeredAlertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingTriggeredAlertType.h deleted file mode 100644 index b82fd295..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminAlertingTriggeredAlertType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingTriggeredAlertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingTriggeredAlertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingTriggeredAlertType` struct. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingTriggeredAlertType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingTriggeredAlertType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingTriggeredAlertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingTriggeredAlertType` -/// object. -/// -+ (DBTEAMLOGAdminAlertingTriggeredAlertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminConsoleAppPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminConsoleAppPermission.h deleted file mode 100644 index 42ca33ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminConsoleAppPermission.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminConsoleAppPermission; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminConsoleAppPermission` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminConsoleAppPermission : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminConsoleAppPermissionTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminConsoleAppPermission` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminConsoleAppPermissionTag) { - /// (no description). - DBTEAMLOGAdminConsoleAppPermissionDefaultForListedApps, - - /// (no description). - DBTEAMLOGAdminConsoleAppPermissionDefaultForUnlistedApps, - - /// (no description). - DBTEAMLOGAdminConsoleAppPermissionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPermissionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default_for_listed_apps". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultForListedApps; - -/// -/// Initializes union class with tag state of "default_for_unlisted_apps". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultForUnlistedApps; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "default_for_listed_apps". -/// -/// @return Whether the union's current tag state has value -/// "default_for_listed_apps". -/// -- (BOOL)isDefaultForListedApps; - -/// -/// Retrieves whether the union's current tag state has value -/// "default_for_unlisted_apps". -/// -/// @return Whether the union's current tag state has value -/// "default_for_unlisted_apps". -/// -- (BOOL)isDefaultForUnlistedApps; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminConsoleAppPermission` union. -/// -@interface DBTEAMLOGAdminConsoleAppPermissionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminConsoleAppPermission` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminConsoleAppPermission` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminConsoleAppPermission *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminConsoleAppPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPermission` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminConsoleAppPermission` object. -/// -+ (DBTEAMLOGAdminConsoleAppPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminConsoleAppPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminConsoleAppPolicy.h deleted file mode 100644 index 291c025a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminConsoleAppPolicy.h +++ /dev/null @@ -1,149 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminConsoleAppPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminConsoleAppPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminConsoleAppPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminConsoleAppPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGAdminConsoleAppPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminConsoleAppPolicyTag) { - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyAllow, - - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyBlock, - - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyDefault_, - - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "block". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBlock; - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "block". -/// -/// @return Whether the union's current tag state has value "block". -/// -- (BOOL)isBlock; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminConsoleAppPolicy` union. -/// -@interface DBTEAMLOGAdminConsoleAppPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminConsoleAppPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminConsoleAppPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminConsoleAppPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminConsoleAppPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminConsoleAppPolicy` object. -/// -+ (DBTEAMLOGAdminConsoleAppPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersChangedDetails.h deleted file mode 100644 index f72b9559..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminEmailRemindersChangedDetails; -@class DBTEAMLOGAdminEmailRemindersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminEmailRemindersChangedDetails` struct. -/// -/// Changed admin reminder settings for requests to join the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAdminEmailRemindersPolicy *)dNewValue - previousValue:(DBTEAMLOGAdminEmailRemindersPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminEmailRemindersChangedDetails` struct. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminEmailRemindersChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminEmailRemindersChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminEmailRemindersChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminEmailRemindersChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminEmailRemindersChangedDetails` -/// object. -/// -+ (DBTEAMLOGAdminEmailRemindersChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersChangedType.h deleted file mode 100644 index 55f0a213..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminEmailRemindersChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminEmailRemindersChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminEmailRemindersChangedType` struct. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminEmailRemindersChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminEmailRemindersChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminEmailRemindersChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminEmailRemindersChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminEmailRemindersChangedType` -/// object. -/// -+ (DBTEAMLOGAdminEmailRemindersChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersPolicy.h deleted file mode 100644 index b5b35c87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminEmailRemindersPolicy.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminEmailRemindersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminEmailRemindersPolicy` union. -/// -/// Policy for deciding whether team admins receive reminder emails for requests -/// to join the team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminEmailRemindersPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminEmailRemindersPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminEmailRemindersPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminEmailRemindersPolicyTag) { - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyDefault_, - - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyDisabled, - - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyEnabled, - - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminEmailRemindersPolicy` union. -/// -@interface DBTEAMLOGAdminEmailRemindersPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminEmailRemindersPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminEmailRemindersPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminEmailRemindersPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminEmailRemindersPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminEmailRemindersPolicy` object. -/// -+ (DBTEAMLOGAdminEmailRemindersPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminRole.h deleted file mode 100644 index 30b5bf25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAdminRole.h +++ /dev/null @@ -1,270 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminRole` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminRole : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminRoleTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGAdminRole` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminRoleTag) { - /// (no description). - DBTEAMLOGAdminRoleBillingAdmin, - - /// (no description). - DBTEAMLOGAdminRoleComplianceAdmin, - - /// (no description). - DBTEAMLOGAdminRoleContentAdmin, - - /// (no description). - DBTEAMLOGAdminRoleLimitedAdmin, - - /// (no description). - DBTEAMLOGAdminRoleMemberOnly, - - /// (no description). - DBTEAMLOGAdminRoleReportingAdmin, - - /// (no description). - DBTEAMLOGAdminRoleSecurityAdmin, - - /// (no description). - DBTEAMLOGAdminRoleSupportAdmin, - - /// (no description). - DBTEAMLOGAdminRoleTeamAdmin, - - /// (no description). - DBTEAMLOGAdminRoleUserManagementAdmin, - - /// (no description). - DBTEAMLOGAdminRoleOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminRoleTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "billing_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBillingAdmin; - -/// -/// Initializes union class with tag state of "compliance_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplianceAdmin; - -/// -/// Initializes union class with tag state of "content_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdmin; - -/// -/// Initializes union class with tag state of "limited_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimitedAdmin; - -/// -/// Initializes union class with tag state of "member_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberOnly; - -/// -/// Initializes union class with tag state of "reporting_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReportingAdmin; - -/// -/// Initializes union class with tag state of "security_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecurityAdmin; - -/// -/// Initializes union class with tag state of "support_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSupportAdmin; - -/// -/// Initializes union class with tag state of "team_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAdmin; - -/// -/// Initializes union class with tag state of "user_management_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManagementAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "billing_admin". -/// -/// @return Whether the union's current tag state has value "billing_admin". -/// -- (BOOL)isBillingAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "compliance_admin". -/// -/// @return Whether the union's current tag state has value "compliance_admin". -/// -- (BOOL)isComplianceAdmin; - -/// -/// Retrieves whether the union's current tag state has value "content_admin". -/// -/// @return Whether the union's current tag state has value "content_admin". -/// -- (BOOL)isContentAdmin; - -/// -/// Retrieves whether the union's current tag state has value "limited_admin". -/// -/// @return Whether the union's current tag state has value "limited_admin". -/// -- (BOOL)isLimitedAdmin; - -/// -/// Retrieves whether the union's current tag state has value "member_only". -/// -/// @return Whether the union's current tag state has value "member_only". -/// -- (BOOL)isMemberOnly; - -/// -/// Retrieves whether the union's current tag state has value "reporting_admin". -/// -/// @return Whether the union's current tag state has value "reporting_admin". -/// -- (BOOL)isReportingAdmin; - -/// -/// Retrieves whether the union's current tag state has value "security_admin". -/// -/// @return Whether the union's current tag state has value "security_admin". -/// -- (BOOL)isSecurityAdmin; - -/// -/// Retrieves whether the union's current tag state has value "support_admin". -/// -/// @return Whether the union's current tag state has value "support_admin". -/// -- (BOOL)isSupportAdmin; - -/// -/// Retrieves whether the union's current tag state has value "team_admin". -/// -/// @return Whether the union's current tag state has value "team_admin". -/// -- (BOOL)isTeamAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_management_admin". -/// -/// @return Whether the union's current tag state has value -/// "user_management_admin". -/// -- (BOOL)isUserManagementAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminRole` union. -/// -@interface DBTEAMLOGAdminRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminRole` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminRole *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminRole` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminRole` object. -/// -+ (DBTEAMLOGAdminRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAlertRecipientsSettingType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAlertRecipientsSettingType.h deleted file mode 100644 index 6fc89954..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAlertRecipientsSettingType.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAlertRecipientsSettingType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlertRecipientsSettingType` union. -/// -/// Alert recipients setting type -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAlertRecipientsSettingType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAlertRecipientsSettingTypeTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAlertRecipientsSettingType` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAlertRecipientsSettingTypeTag) { - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeCustomList, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeInvalid, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeNone, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeTeamAdmins, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAlertRecipientsSettingTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "custom_list". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCustomList; - -/// -/// Initializes union class with tag state of "invalid". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalid; - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "team_admins". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAdmins; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "custom_list". -/// -/// @return Whether the union's current tag state has value "custom_list". -/// -- (BOOL)isCustomList; - -/// -/// Retrieves whether the union's current tag state has value "invalid". -/// -/// @return Whether the union's current tag state has value "invalid". -/// -- (BOOL)isInvalid; - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "team_admins". -/// -/// @return Whether the union's current tag state has value "team_admins". -/// -- (BOOL)isTeamAdmins; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAlertRecipientsSettingType` union. -/// -@interface DBTEAMLOGAlertRecipientsSettingTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAlertRecipientsSettingType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAlertRecipientsSettingType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAlertRecipientsSettingType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAlertRecipientsSettingType *)instance; - -/// -/// Deserializes `DBTEAMLOGAlertRecipientsSettingType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAlertRecipientsSettingType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAlertRecipientsSettingType` -/// object. -/// -+ (DBTEAMLOGAlertRecipientsSettingType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadDisabledDetails.h deleted file mode 100644 index 2d1292f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadDisabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadDisabledDetails` struct. -/// -/// Disabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadDisabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadDisabledDetails` struct. -/// -@interface DBTEAMLOGAllowDownloadDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadDisabledDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadDisabledDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadDisabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadDisabledDetails` -/// object. -/// -+ (DBTEAMLOGAllowDownloadDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadDisabledType.h deleted file mode 100644 index 65ba6571..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadDisabledType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadDisabledType` struct. -/// -@interface DBTEAMLOGAllowDownloadDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadDisabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadDisabledType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadDisabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadDisabledType` object. -/// -+ (DBTEAMLOGAllowDownloadDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadEnabledDetails.h deleted file mode 100644 index 840cb489..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadEnabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadEnabledDetails` struct. -/// -/// Enabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadEnabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadEnabledDetails` struct. -/// -@interface DBTEAMLOGAllowDownloadEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadEnabledDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadEnabledDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadEnabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadEnabledDetails` -/// object. -/// -+ (DBTEAMLOGAllowDownloadEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadEnabledType.h deleted file mode 100644 index ce5dde52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAllowDownloadEnabledType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadEnabledType` struct. -/// -@interface DBTEAMLOGAllowDownloadEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadEnabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadEnabledType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadEnabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadEnabledType` object. -/// -+ (DBTEAMLOGAllowDownloadEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApiSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApiSessionLogInfo.h deleted file mode 100644 index 712eb18e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApiSessionLogInfo.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGApiSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApiSessionLogInfo` struct. -/// -/// Api session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGApiSessionLogInfo : NSObject - -#pragma mark - Instance fields - -/// Api request ID. -@property (nonatomic, readonly, copy) NSString *requestId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestId Api request ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestId:(NSString *)requestId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApiSessionLogInfo` struct. -/// -@interface DBTEAMLOGApiSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGApiSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGApiSessionLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGApiSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGApiSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGApiSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGApiSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGApiSessionLogInfo` object. -/// -+ (DBTEAMLOGApiSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppBlockedByPermissionsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppBlockedByPermissionsDetails.h deleted file mode 100644 index 908a8495..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppBlockedByPermissionsDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppBlockedByPermissionsDetails; -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppBlockedByPermissionsDetails` struct. -/// -/// Failed to connect app for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppBlockedByPermissionsDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppBlockedByPermissionsDetails` struct. -/// -@interface DBTEAMLOGAppBlockedByPermissionsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppBlockedByPermissionsDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppBlockedByPermissionsDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppBlockedByPermissionsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppBlockedByPermissionsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppBlockedByPermissionsDetails` -/// object. -/// -+ (DBTEAMLOGAppBlockedByPermissionsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppBlockedByPermissionsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppBlockedByPermissionsType.h deleted file mode 100644 index ea286dd0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppBlockedByPermissionsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppBlockedByPermissionsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppBlockedByPermissionsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppBlockedByPermissionsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppBlockedByPermissionsType` struct. -/// -@interface DBTEAMLOGAppBlockedByPermissionsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppBlockedByPermissionsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppBlockedByPermissionsType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppBlockedByPermissionsType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppBlockedByPermissionsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppBlockedByPermissionsType` -/// object. -/// -+ (DBTEAMLOGAppBlockedByPermissionsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkTeamDetails.h deleted file mode 100644 index 3daaa72c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkTeamDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkTeamDetails; -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkTeamDetails` struct. -/// -/// Linked app for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkTeamDetails` struct. -/// -@interface DBTEAMLOGAppLinkTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkTeamDetails` object. -/// -+ (DBTEAMLOGAppLinkTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkTeamType.h deleted file mode 100644 index 60121754..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkTeamType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkTeamType` struct. -/// -@interface DBTEAMLOGAppLinkTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkTeamType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkTeamType` object. -/// -+ (DBTEAMLOGAppLinkTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkUserDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkUserDetails.h deleted file mode 100644 index 1a7cd470..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkUserDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkUserDetails; -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkUserDetails` struct. -/// -/// Linked app for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkUserDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkUserDetails` struct. -/// -@interface DBTEAMLOGAppLinkUserDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkUserDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkUserDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkUserDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkUserDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkUserDetails` object. -/// -+ (DBTEAMLOGAppLinkUserDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkUserType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkUserType.h deleted file mode 100644 index dcdf9f58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLinkUserType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkUserType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkUserType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkUserType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkUserType` struct. -/// -@interface DBTEAMLOGAppLinkUserTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkUserType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkUserType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkUserType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkUserType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkUserType` object. -/// -+ (DBTEAMLOGAppLinkUserType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLogInfo.h deleted file mode 100644 index 6ea5bd66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppLogInfo.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLogInfo` struct. -/// -/// App's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLogInfo : NSObject - -#pragma mark - Instance fields - -/// App unique ID. -@property (nonatomic, readonly, copy, nullable) NSString *appId; - -/// App display name. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLogInfo` struct. -/// -@interface DBTEAMLOGAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLogInfo` object. -/// -+ (DBTEAMLOGAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppPermissionsChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppPermissionsChangedDetails.h deleted file mode 100644 index b2010831..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppPermissionsChangedDetails.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminConsoleAppPermission; -@class DBTEAMLOGAdminConsoleAppPolicy; -@class DBTEAMLOGAppPermissionsChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppPermissionsChangedDetails` struct. -/// -/// Changed app permissions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppPermissionsChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the app. -@property (nonatomic, readonly, copy, nullable) NSString *appName; - -/// Permission that was changed. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminConsoleAppPermission *permission; - -/// Previous policy. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPolicy *previousValue; - -/// New policy. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous policy. -/// @param dNewValue New policy. -/// @param appName Name of the app. -/// @param permission Permission that was changed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGAdminConsoleAppPolicy *)previousValue - dNewValue:(DBTEAMLOGAdminConsoleAppPolicy *)dNewValue - appName:(nullable NSString *)appName - permission:(nullable DBTEAMLOGAdminConsoleAppPermission *)permission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param previousValue Previous policy. -/// @param dNewValue New policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGAdminConsoleAppPolicy *)previousValue - dNewValue:(DBTEAMLOGAdminConsoleAppPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppPermissionsChangedDetails` struct. -/// -@interface DBTEAMLOGAppPermissionsChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppPermissionsChangedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppPermissionsChangedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppPermissionsChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppPermissionsChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppPermissionsChangedDetails` -/// object. -/// -+ (DBTEAMLOGAppPermissionsChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppPermissionsChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppPermissionsChangedType.h deleted file mode 100644 index 8cceccc2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppPermissionsChangedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppPermissionsChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppPermissionsChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppPermissionsChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppPermissionsChangedType` struct. -/// -@interface DBTEAMLOGAppPermissionsChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppPermissionsChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppPermissionsChangedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppPermissionsChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppPermissionsChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppPermissionsChangedType` object. -/// -+ (DBTEAMLOGAppPermissionsChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkTeamDetails.h deleted file mode 100644 index 22794bbb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkTeamDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLogInfo; -@class DBTEAMLOGAppUnlinkTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkTeamDetails` struct. -/// -/// Unlinked app for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkTeamDetails` struct. -/// -@interface DBTEAMLOGAppUnlinkTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkTeamDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkTeamDetails` object. -/// -+ (DBTEAMLOGAppUnlinkTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkTeamType.h deleted file mode 100644 index c7c31cb0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkTeamType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppUnlinkTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkTeamType` struct. -/// -@interface DBTEAMLOGAppUnlinkTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkTeamType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkTeamType` object. -/// -+ (DBTEAMLOGAppUnlinkTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkUserDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkUserDetails.h deleted file mode 100644 index 3f52efd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkUserDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLogInfo; -@class DBTEAMLOGAppUnlinkUserDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkUserDetails` struct. -/// -/// Unlinked app for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkUserDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkUserDetails` struct. -/// -@interface DBTEAMLOGAppUnlinkUserDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkUserDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkUserDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkUserDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkUserDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkUserDetails` object. -/// -+ (DBTEAMLOGAppUnlinkUserDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkUserType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkUserType.h deleted file mode 100644 index 46581db3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAppUnlinkUserType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppUnlinkUserType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkUserType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkUserType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkUserType` struct. -/// -@interface DBTEAMLOGAppUnlinkUserTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkUserType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkUserType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkUserType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkUserType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkUserType` object. -/// -+ (DBTEAMLOGAppUnlinkUserType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApplyNamingConventionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApplyNamingConventionDetails.h deleted file mode 100644 index b8aa726d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApplyNamingConventionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGApplyNamingConventionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApplyNamingConventionDetails` struct. -/// -/// Applied naming convention. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGApplyNamingConventionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApplyNamingConventionDetails` struct. -/// -@interface DBTEAMLOGApplyNamingConventionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGApplyNamingConventionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGApplyNamingConventionDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGApplyNamingConventionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGApplyNamingConventionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGApplyNamingConventionDetails` -/// object. -/// -+ (DBTEAMLOGApplyNamingConventionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApplyNamingConventionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApplyNamingConventionType.h deleted file mode 100644 index 0a51b6d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGApplyNamingConventionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGApplyNamingConventionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApplyNamingConventionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGApplyNamingConventionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApplyNamingConventionType` struct. -/// -@interface DBTEAMLOGApplyNamingConventionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGApplyNamingConventionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGApplyNamingConventionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGApplyNamingConventionType *)instance; - -/// -/// Deserializes `DBTEAMLOGApplyNamingConventionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGApplyNamingConventionType` object. -/// -+ (DBTEAMLOGApplyNamingConventionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAssetLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAssetLogInfo.h deleted file mode 100644 index 6b86ebe0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGAssetLogInfo.h +++ /dev/null @@ -1,246 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAssetLogInfo; -@class DBTEAMLOGFileLogInfo; -@class DBTEAMLOGFolderLogInfo; -@class DBTEAMLOGPaperDocumentLogInfo; -@class DBTEAMLOGPaperFolderLogInfo; -@class DBTEAMLOGShowcaseDocumentLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AssetLogInfo` union. -/// -/// Asset details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAssetLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAssetLogInfoTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGAssetLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAssetLogInfoTag) { - /// File's details. - DBTEAMLOGAssetLogInfoFile, - - /// Folder's details. - DBTEAMLOGAssetLogInfoFolder, - - /// Paper document's details. - DBTEAMLOGAssetLogInfoPaperDocument, - - /// Paper folder's details. - DBTEAMLOGAssetLogInfoPaperFolder, - - /// Showcase document's details. - DBTEAMLOGAssetLogInfoShowcaseDocument, - - /// (no description). - DBTEAMLOGAssetLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAssetLogInfoTag tag; - -/// File's details. @note Ensure the `isFile` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLogInfo *file; - -/// Folder's details. @note Ensure the `isFolder` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderLogInfo *folder; - -/// Paper document's details. @note Ensure the `isPaperDocument` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocumentLogInfo *paperDocument; - -/// Paper folder's details. @note Ensure the `isPaperFolder` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderLogInfo *paperFolder; - -/// Showcase document's details. @note Ensure the `isShowcaseDocument` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDocumentLogInfo *showcaseDocument; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file". -/// -/// Description of the "file" tag state: File's details. -/// -/// @param file File's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(DBTEAMLOGFileLogInfo *)file; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: Folder's details. -/// -/// @param folder Folder's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder:(DBTEAMLOGFolderLogInfo *)folder; - -/// -/// Initializes union class with tag state of "paper_document". -/// -/// Description of the "paper_document" tag state: Paper document's details. -/// -/// @param paperDocument Paper document's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocument:(DBTEAMLOGPaperDocumentLogInfo *)paperDocument; - -/// -/// Initializes union class with tag state of "paper_folder". -/// -/// Description of the "paper_folder" tag state: Paper folder's details. -/// -/// @param paperFolder Paper folder's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolder:(DBTEAMLOGPaperFolderLogInfo *)paperFolder; - -/// -/// Initializes union class with tag state of "showcase_document". -/// -/// Description of the "showcase_document" tag state: Showcase document's -/// details. -/// -/// @param showcaseDocument Showcase document's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDocument:(DBTEAMLOGShowcaseDocumentLogInfo *)showcaseDocument; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `file` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file". -/// -- (BOOL)isFile; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves whether the union's current tag state has value "paper_document". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocument` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_document". -/// -- (BOOL)isPaperDocument; - -/// -/// Retrieves whether the union's current tag state has value "paper_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_folder". -/// -- (BOOL)isPaperFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_document". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseDocument` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_document". -/// -- (BOOL)isShowcaseDocument; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAssetLogInfo` union. -/// -@interface DBTEAMLOGAssetLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAssetLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAssetLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAssetLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAssetLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGAssetLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAssetLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAssetLogInfo` object. -/// -+ (DBTEAMLOGAssetLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupAdminInvitationSentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupAdminInvitationSentDetails.h deleted file mode 100644 index de277eef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupAdminInvitationSentDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupAdminInvitationSentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupAdminInvitationSentDetails` struct. -/// -/// Invited members to activate Backup. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupAdminInvitationSentDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupAdminInvitationSentDetails` struct. -/// -@interface DBTEAMLOGBackupAdminInvitationSentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupAdminInvitationSentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGBackupAdminInvitationSentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupAdminInvitationSentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupAdminInvitationSentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupAdminInvitationSentDetails` -/// object. -/// -+ (DBTEAMLOGBackupAdminInvitationSentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupAdminInvitationSentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupAdminInvitationSentType.h deleted file mode 100644 index 39ab4c09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupAdminInvitationSentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupAdminInvitationSentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupAdminInvitationSentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupAdminInvitationSentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupAdminInvitationSentType` struct. -/// -@interface DBTEAMLOGBackupAdminInvitationSentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupAdminInvitationSentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupAdminInvitationSentType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupAdminInvitationSentType *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupAdminInvitationSentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupAdminInvitationSentType` -/// object. -/// -+ (DBTEAMLOGBackupAdminInvitationSentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupInvitationOpenedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupInvitationOpenedDetails.h deleted file mode 100644 index d4cef9d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupInvitationOpenedDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupInvitationOpenedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupInvitationOpenedDetails` struct. -/// -/// Opened Backup invite. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupInvitationOpenedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupInvitationOpenedDetails` struct. -/// -@interface DBTEAMLOGBackupInvitationOpenedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupInvitationOpenedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupInvitationOpenedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupInvitationOpenedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupInvitationOpenedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupInvitationOpenedDetails` -/// object. -/// -+ (DBTEAMLOGBackupInvitationOpenedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupInvitationOpenedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupInvitationOpenedType.h deleted file mode 100644 index 886e5fec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupInvitationOpenedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupInvitationOpenedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupInvitationOpenedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupInvitationOpenedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupInvitationOpenedType` struct. -/// -@interface DBTEAMLOGBackupInvitationOpenedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupInvitationOpenedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupInvitationOpenedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupInvitationOpenedType *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupInvitationOpenedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupInvitationOpenedType` -/// object. -/// -+ (DBTEAMLOGBackupInvitationOpenedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupStatus.h deleted file mode 100644 index 419f337a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBackupStatus.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupStatus` union. -/// -/// Backup status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGBackupStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGBackupStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGBackupStatusTag) { - /// (no description). - DBTEAMLOGBackupStatusDisabled, - - /// (no description). - DBTEAMLOGBackupStatusEnabled, - - /// (no description). - DBTEAMLOGBackupStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGBackupStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGBackupStatus` union. -/// -@interface DBTEAMLOGBackupStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupStatus` object. -/// -+ (DBTEAMLOGBackupStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddPageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddPageDetails.h deleted file mode 100644 index f0cc0ee4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddPageDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddPageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddPageDetails` struct. -/// -/// Added Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddPageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddPageDetails` struct. -/// -@interface DBTEAMLOGBinderAddPageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddPageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddPageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddPageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddPageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddPageDetails` object. -/// -+ (DBTEAMLOGBinderAddPageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddPageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddPageType.h deleted file mode 100644 index 8919635c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddPageType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddPageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddPageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddPageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddPageType` struct. -/// -@interface DBTEAMLOGBinderAddPageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddPageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddPageType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddPageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddPageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddPageType` object. -/// -+ (DBTEAMLOGBinderAddPageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddSectionDetails.h deleted file mode 100644 index 89fb5b9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddSectionDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddSectionDetails` struct. -/// -/// Added Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddSectionDetails` struct. -/// -@interface DBTEAMLOGBinderAddSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddSectionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddSectionDetails` object. -/// -+ (DBTEAMLOGBinderAddSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddSectionType.h deleted file mode 100644 index 1abd43ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderAddSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddSectionType` struct. -/// -@interface DBTEAMLOGBinderAddSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddSectionType` object. -/// -+ (DBTEAMLOGBinderAddSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemovePageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemovePageDetails.h deleted file mode 100644 index f52aa6a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemovePageDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemovePageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemovePageDetails` struct. -/// -/// Removed Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemovePageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemovePageDetails` struct. -/// -@interface DBTEAMLOGBinderRemovePageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemovePageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemovePageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemovePageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemovePageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemovePageDetails` object. -/// -+ (DBTEAMLOGBinderRemovePageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemovePageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemovePageType.h deleted file mode 100644 index b2a0b722..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemovePageType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemovePageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemovePageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemovePageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemovePageType` struct. -/// -@interface DBTEAMLOGBinderRemovePageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemovePageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemovePageType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemovePageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemovePageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemovePageType` object. -/// -+ (DBTEAMLOGBinderRemovePageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemoveSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemoveSectionDetails.h deleted file mode 100644 index e70a1809..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemoveSectionDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemoveSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemoveSectionDetails` struct. -/// -/// Removed Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemoveSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemoveSectionDetails` struct. -/// -@interface DBTEAMLOGBinderRemoveSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemoveSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemoveSectionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemoveSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemoveSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemoveSectionDetails` -/// object. -/// -+ (DBTEAMLOGBinderRemoveSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemoveSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemoveSectionType.h deleted file mode 100644 index ad2a2891..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRemoveSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemoveSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemoveSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemoveSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemoveSectionType` struct. -/// -@interface DBTEAMLOGBinderRemoveSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemoveSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemoveSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemoveSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemoveSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemoveSectionType` object. -/// -+ (DBTEAMLOGBinderRemoveSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenamePageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenamePageDetails.h deleted file mode 100644 index 50d2942b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenamePageDetails.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenamePageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenamePageDetails` struct. -/// -/// Renamed Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenamePageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -/// Previous name of the Binder page/section. -@property (nonatomic, readonly, copy, nullable) NSString *previousBinderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// @param previousBinderItemName Previous name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName - previousBinderItemName:(nullable NSString *)previousBinderItemName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenamePageDetails` struct. -/// -@interface DBTEAMLOGBinderRenamePageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenamePageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenamePageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenamePageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenamePageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenamePageDetails` object. -/// -+ (DBTEAMLOGBinderRenamePageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenamePageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenamePageType.h deleted file mode 100644 index c3c990e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenamePageType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenamePageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenamePageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenamePageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenamePageType` struct. -/// -@interface DBTEAMLOGBinderRenamePageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenamePageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenamePageType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenamePageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenamePageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenamePageType` object. -/// -+ (DBTEAMLOGBinderRenamePageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenameSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenameSectionDetails.h deleted file mode 100644 index d348f372..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenameSectionDetails.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenameSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenameSectionDetails` struct. -/// -/// Renamed Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenameSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -/// Previous name of the Binder page/section. -@property (nonatomic, readonly, copy, nullable) NSString *previousBinderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// @param previousBinderItemName Previous name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName - previousBinderItemName:(nullable NSString *)previousBinderItemName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenameSectionDetails` struct. -/// -@interface DBTEAMLOGBinderRenameSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenameSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenameSectionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenameSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenameSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenameSectionDetails` -/// object. -/// -+ (DBTEAMLOGBinderRenameSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenameSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenameSectionType.h deleted file mode 100644 index 52f0ca4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderRenameSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenameSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenameSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenameSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenameSectionType` struct. -/// -@interface DBTEAMLOGBinderRenameSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenameSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenameSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenameSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenameSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenameSectionType` object. -/// -+ (DBTEAMLOGBinderRenameSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderPageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderPageDetails.h deleted file mode 100644 index 671b6843..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderPageDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderPageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderPageDetails` struct. -/// -/// Reordered Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderPageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderPageDetails` struct. -/// -@interface DBTEAMLOGBinderReorderPageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderPageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderPageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderPageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderPageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderPageDetails` object. -/// -+ (DBTEAMLOGBinderReorderPageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderPageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderPageType.h deleted file mode 100644 index 6d78c820..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderPageType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderPageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderPageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderPageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderPageType` struct. -/// -@interface DBTEAMLOGBinderReorderPageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderPageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderPageType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderPageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderPageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderPageType` object. -/// -+ (DBTEAMLOGBinderReorderPageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderSectionDetails.h deleted file mode 100644 index 70ccfe7b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderSectionDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderSectionDetails` struct. -/// -/// Reordered Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderSectionDetails` struct. -/// -@interface DBTEAMLOGBinderReorderSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderSectionDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderSectionDetails` -/// object. -/// -+ (DBTEAMLOGBinderReorderSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderSectionType.h deleted file mode 100644 index cf2e6d1e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGBinderReorderSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderSectionType` struct. -/// -@interface DBTEAMLOGBinderReorderSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderSectionType` object. -/// -+ (DBTEAMLOGBinderReorderSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicy.h deleted file mode 100644 index 929c4cce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCameraUploadsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicy` union. -/// -/// Policy for controlling if team members can activate camera uploads -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCameraUploadsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGCameraUploadsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGCameraUploadsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGCameraUploadsPolicyTag) { - /// (no description). - DBTEAMLOGCameraUploadsPolicyDisabled, - - /// (no description). - DBTEAMLOGCameraUploadsPolicyEnabled, - - /// (no description). - DBTEAMLOGCameraUploadsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGCameraUploadsPolicy` union. -/// -@interface DBTEAMLOGCameraUploadsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCameraUploadsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCameraUploadsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCameraUploadsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGCameraUploadsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCameraUploadsPolicy` object. -/// -+ (DBTEAMLOGCameraUploadsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicyChangedDetails.h deleted file mode 100644 index 7d06f7b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCameraUploadsPolicy; -@class DBTEAMLOGCameraUploadsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicyChangedDetails` struct. -/// -/// Changed camera uploads setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New camera uploads setting. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicy *dNewValue; - -/// Previous camera uploads setting. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New camera uploads setting. -/// @param previousValue Previous camera uploads setting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGCameraUploadsPolicy *)dNewValue - previousValue:(DBTEAMLOGCameraUploadsPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CameraUploadsPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCameraUploadsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGCameraUploadsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCameraUploadsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCameraUploadsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCameraUploadsPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGCameraUploadsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicyChangedType.h deleted file mode 100644 index 55757c51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCameraUploadsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCameraUploadsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CameraUploadsPolicyChangedType` struct. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCameraUploadsPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCameraUploadsPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCameraUploadsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGCameraUploadsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCameraUploadsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGCameraUploadsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicy.h deleted file mode 100644 index da85771e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicy.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCaptureTranscriptPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CaptureTranscriptPolicy` union. -/// -/// Policy for deciding whether team users can transcription in Capture -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCaptureTranscriptPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGCaptureTranscriptPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGCaptureTranscriptPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGCaptureTranscriptPolicyTag) { - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyDefault_, - - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyDisabled, - - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyEnabled, - - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGCaptureTranscriptPolicy` union. -/// -@interface DBTEAMLOGCaptureTranscriptPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCaptureTranscriptPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCaptureTranscriptPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCaptureTranscriptPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGCaptureTranscriptPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCaptureTranscriptPolicy` object. -/// -+ (DBTEAMLOGCaptureTranscriptPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h deleted file mode 100644 index 31bb3314..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCaptureTranscriptPolicy; -@class DBTEAMLOGCaptureTranscriptPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CaptureTranscriptPolicyChangedDetails` struct. -/// -/// Changed Capture transcription policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGCaptureTranscriptPolicy *)dNewValue - previousValue:(DBTEAMLOGCaptureTranscriptPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CaptureTranscriptPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCaptureTranscriptPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` object. -/// -+ (DBTEAMLOGCaptureTranscriptPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedType.h deleted file mode 100644 index fb478d4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCaptureTranscriptPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CaptureTranscriptPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CaptureTranscriptPolicyChangedType` struct. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCaptureTranscriptPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCaptureTranscriptPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGCaptureTranscriptPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` object. -/// -+ (DBTEAMLOGCaptureTranscriptPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCertificate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCertificate.h deleted file mode 100644 index 5d80d903..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCertificate.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCertificate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Certificate` struct. -/// -/// Certificate details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCertificate : NSObject - -#pragma mark - Instance fields - -/// Certificate subject. -@property (nonatomic, readonly, copy) NSString *subject; - -/// Certificate issuer. -@property (nonatomic, readonly, copy) NSString *issuer; - -/// Certificate issue date. -@property (nonatomic, readonly, copy) NSString *issueDate; - -/// Certificate expiration date. -@property (nonatomic, readonly, copy) NSString *expirationDate; - -/// Certificate serial number. -@property (nonatomic, readonly, copy) NSString *serialNumber; - -/// Certificate sha1 fingerprint. -@property (nonatomic, readonly, copy) NSString *sha1Fingerprint; - -/// Certificate common name. -@property (nonatomic, readonly, copy, nullable) NSString *commonName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param subject Certificate subject. -/// @param issuer Certificate issuer. -/// @param issueDate Certificate issue date. -/// @param expirationDate Certificate expiration date. -/// @param serialNumber Certificate serial number. -/// @param sha1Fingerprint Certificate sha1 fingerprint. -/// @param commonName Certificate common name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubject:(NSString *)subject - issuer:(NSString *)issuer - issueDate:(NSString *)issueDate - expirationDate:(NSString *)expirationDate - serialNumber:(NSString *)serialNumber - sha1Fingerprint:(NSString *)sha1Fingerprint - commonName:(nullable NSString *)commonName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param subject Certificate subject. -/// @param issuer Certificate issuer. -/// @param issueDate Certificate issue date. -/// @param expirationDate Certificate expiration date. -/// @param serialNumber Certificate serial number. -/// @param sha1Fingerprint Certificate sha1 fingerprint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubject:(NSString *)subject - issuer:(NSString *)issuer - issueDate:(NSString *)issueDate - expirationDate:(NSString *)expirationDate - serialNumber:(NSString *)serialNumber - sha1Fingerprint:(NSString *)sha1Fingerprint; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Certificate` struct. -/// -@interface DBTEAMLOGCertificateSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCertificate` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCertificate` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCertificate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCertificate *)instance; - -/// -/// Deserializes `DBTEAMLOGCertificate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCertificate` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCertificate` object. -/// -+ (DBTEAMLOGCertificate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangeLinkExpirationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangeLinkExpirationPolicy.h deleted file mode 100644 index 3e486a5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangeLinkExpirationPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangeLinkExpirationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangeLinkExpirationPolicy` union. -/// -/// Policy for deciding whether the team's default expiration days policy must -/// be enforced when an externally shared link is updated -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangeLinkExpirationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGChangeLinkExpirationPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGChangeLinkExpirationPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGChangeLinkExpirationPolicyTag) { - /// (no description). - DBTEAMLOGChangeLinkExpirationPolicyAllowed, - - /// (no description). - DBTEAMLOGChangeLinkExpirationPolicyNotAllowed, - - /// (no description). - DBTEAMLOGChangeLinkExpirationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGChangeLinkExpirationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allowed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowed; - -/// -/// Initializes union class with tag state of "not_allowed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAllowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allowed". -/// -/// @return Whether the union's current tag state has value "allowed". -/// -- (BOOL)isAllowed; - -/// -/// Retrieves whether the union's current tag state has value "not_allowed". -/// -/// @return Whether the union's current tag state has value "not_allowed". -/// -- (BOOL)isNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGChangeLinkExpirationPolicy` union. -/// -@interface DBTEAMLOGChangeLinkExpirationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangeLinkExpirationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGChangeLinkExpirationPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangeLinkExpirationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangeLinkExpirationPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGChangeLinkExpirationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangeLinkExpirationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGChangeLinkExpirationPolicy` -/// object. -/// -+ (DBTEAMLOGChangeLinkExpirationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseAdminRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseAdminRoleDetails.h deleted file mode 100644 index 3f148443..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseAdminRoleDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseAdminRoleDetails; -@class DBTEAMLOGFedAdminRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseAdminRoleDetails` struct. -/// -/// Changed enterprise admin role. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleDetails : NSObject - -#pragma mark - Instance fields - -/// The member’s previous enterprise admin role. -@property (nonatomic, readonly) DBTEAMLOGFedAdminRole *previousValue; - -/// The member’s new enterprise admin role. -@property (nonatomic, readonly) DBTEAMLOGFedAdminRole *dNewValue; - -/// The name of the member’s team. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue The member’s previous enterprise admin role. -/// @param dNewValue The member’s new enterprise admin role. -/// @param teamName The name of the member’s team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGFedAdminRole *)previousValue - dNewValue:(DBTEAMLOGFedAdminRole *)dNewValue - teamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ChangedEnterpriseAdminRoleDetails` struct. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseAdminRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseAdminRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseAdminRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGChangedEnterpriseAdminRoleDetails` -/// object. -/// -+ (DBTEAMLOGChangedEnterpriseAdminRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseAdminRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseAdminRoleType.h deleted file mode 100644 index ae03a5e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseAdminRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseAdminRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseAdminRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ChangedEnterpriseAdminRoleType` struct. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseAdminRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGChangedEnterpriseAdminRoleType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseAdminRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseAdminRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGChangedEnterpriseAdminRoleType` -/// object. -/// -+ (DBTEAMLOGChangedEnterpriseAdminRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h deleted file mode 100644 index 77f8c0a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails; -@class DBTEAMLOGFedHandshakeAction; -@class DBTEAMLOGFederationStatusChangeAdditionalInfo; -@class DBTEAMLOGTrustedTeamsRequestState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseConnectedTeamStatusDetails` struct. -/// -/// Changed enterprise-connected team status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails : NSObject - -#pragma mark - Instance fields - -/// The preformed change in the team’s connection status. -@property (nonatomic, readonly) DBTEAMLOGFedHandshakeAction *action; - -/// Additional information about the organization or team. -@property (nonatomic, readonly) DBTEAMLOGFederationStatusChangeAdditionalInfo *additionalInfo; - -/// Previous request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *previousValue; - -/// New request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The preformed change in the team’s connection status. -/// @param additionalInfo Additional information about the organization or team. -/// @param previousValue Previous request state. -/// @param dNewValue New request state. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBTEAMLOGFedHandshakeAction *)action - additionalInfo:(DBTEAMLOGFederationStatusChangeAdditionalInfo *)additionalInfo - previousValue:(DBTEAMLOGTrustedTeamsRequestState *)previousValue - dNewValue:(DBTEAMLOGTrustedTeamsRequestState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `ChangedEnterpriseConnectedTeamStatusDetails` struct. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` object. -/// -+ (DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h deleted file mode 100644 index b0f2be08..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseConnectedTeamStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ChangedEnterpriseConnectedTeamStatusType` -/// struct. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` object. -/// -+ (DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationChangePolicyDetails.h deleted file mode 100644 index 3f40e150..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationChangePolicyDetails.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationChangePolicyDetails; -@class DBTEAMLOGClassificationPolicyEnumWrapper; -@class DBTEAMLOGClassificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationChangePolicyDetails` struct. -/// -/// Changed classification policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous classification policy. -@property (nonatomic, readonly) DBTEAMLOGClassificationPolicyEnumWrapper *previousValue; - -/// New classification policy. -@property (nonatomic, readonly) DBTEAMLOGClassificationPolicyEnumWrapper *dNewValue; - -/// Policy type. -@property (nonatomic, readonly) DBTEAMLOGClassificationType *classificationType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous classification policy. -/// @param dNewValue New classification policy. -/// @param classificationType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGClassificationPolicyEnumWrapper *)previousValue - dNewValue:(DBTEAMLOGClassificationPolicyEnumWrapper *)dNewValue - classificationType:(DBTEAMLOGClassificationType *)classificationType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationChangePolicyDetails` struct. -/// -@interface DBTEAMLOGClassificationChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGClassificationChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationChangePolicyType.h deleted file mode 100644 index 90bd04aa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationChangePolicyType` struct. -/// -@interface DBTEAMLOGClassificationChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGClassificationChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationChangePolicyType` -/// object. -/// -+ (DBTEAMLOGClassificationChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportDetails.h deleted file mode 100644 index 281cf4c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportDetails` struct. -/// -/// Created Classification report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportDetails` struct. -/// -@interface DBTEAMLOGClassificationCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationCreateReportDetails` -/// object. -/// -+ (DBTEAMLOGClassificationCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportFailDetails.h deleted file mode 100644 index 0fb0a0f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportFailDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportFailDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportFailDetails` struct. -/// -/// Couldn't create Classification report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportFailDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportFailDetails` -/// struct. -/// -@interface DBTEAMLOGClassificationCreateReportFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` object. -/// -+ (DBTEAMLOGClassificationCreateReportFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportFailType.h deleted file mode 100644 index 159268a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportFailType` struct. -/// -@interface DBTEAMLOGClassificationCreateReportFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportFailType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationCreateReportFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGClassificationCreateReportFailType` object. -/// -+ (DBTEAMLOGClassificationCreateReportFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportType.h deleted file mode 100644 index a0511d2c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportType` struct. -/// -@interface DBTEAMLOGClassificationCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGClassificationCreateReportType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationCreateReportType` -/// object. -/// -+ (DBTEAMLOGClassificationCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationPolicyEnumWrapper.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationPolicyEnumWrapper.h deleted file mode 100644 index 5dd0385f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationPolicyEnumWrapper.h +++ /dev/null @@ -1,173 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationPolicyEnumWrapper; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationPolicyEnumWrapper` union. -/// -/// Policy for controlling team access to the classification feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationPolicyEnumWrapper : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGClassificationPolicyEnumWrapperTag` enum type represents the -/// possible tag states with which the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGClassificationPolicyEnumWrapperTag) { - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperDisabled, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperEnabled, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperMemberAndTeamFolders, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperTeamFolders, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGClassificationPolicyEnumWrapperTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "member_and_team_folders". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAndTeamFolders; - -/// -/// Initializes union class with tag state of "team_folders". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolders; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_and_team_folders". -/// -/// @return Whether the union's current tag state has value -/// "member_and_team_folders". -/// -- (BOOL)isMemberAndTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "team_folders". -/// -/// @return Whether the union's current tag state has value "team_folders". -/// -- (BOOL)isTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGClassificationPolicyEnumWrapper` -/// union. -/// -@interface DBTEAMLOGClassificationPolicyEnumWrapperSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationPolicyEnumWrapper` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationPolicyEnumWrapper *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationPolicyEnumWrapper` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationPolicyEnumWrapper` -/// object. -/// -+ (DBTEAMLOGClassificationPolicyEnumWrapper *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationType.h deleted file mode 100644 index ffef97f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGClassificationType.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationType` union. -/// -/// The type of classification (currently only personal information) -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGClassificationTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGClassificationType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGClassificationTypeTag) { - /// (no description). - DBTEAMLOGClassificationTypePersonalInformation, - - /// (no description). - DBTEAMLOGClassificationTypePii, - - /// (no description). - DBTEAMLOGClassificationTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGClassificationTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "personal_information". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersonalInformation; - -/// -/// Initializes union class with tag state of "pii". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPii; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "personal_information". -/// -/// @return Whether the union's current tag state has value -/// "personal_information". -/// -- (BOOL)isPersonalInformation; - -/// -/// Retrieves whether the union's current tag state has value "pii". -/// -/// @return Whether the union's current tag state has value "pii". -/// -- (BOOL)isPii; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGClassificationType` union. -/// -@interface DBTEAMLOGClassificationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGClassificationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationType` object. -/// -+ (DBTEAMLOGClassificationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCollectionShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCollectionShareDetails.h deleted file mode 100644 index 7de94665..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCollectionShareDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCollectionShareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CollectionShareDetails` struct. -/// -/// Shared album. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCollectionShareDetails : NSObject - -#pragma mark - Instance fields - -/// Album name. -@property (nonatomic, readonly, copy) NSString *albumName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param albumName Album name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlbumName:(NSString *)albumName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CollectionShareDetails` struct. -/// -@interface DBTEAMLOGCollectionShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCollectionShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCollectionShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCollectionShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCollectionShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCollectionShareDetails` object. -/// -+ (DBTEAMLOGCollectionShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCollectionShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCollectionShareType.h deleted file mode 100644 index efc8c774..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCollectionShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCollectionShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CollectionShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCollectionShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CollectionShareType` struct. -/// -@interface DBTEAMLOGCollectionShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCollectionShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCollectionShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCollectionShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGCollectionShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCollectionShareType` object. -/// -+ (DBTEAMLOGCollectionShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicy.h deleted file mode 100644 index 92eb7665..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGComputerBackupPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicy` union. -/// -/// Policy for controlling team access to computer backup feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGComputerBackupPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGComputerBackupPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGComputerBackupPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGComputerBackupPolicyTag) { - /// (no description). - DBTEAMLOGComputerBackupPolicyDefault_, - - /// (no description). - DBTEAMLOGComputerBackupPolicyDisabled, - - /// (no description). - DBTEAMLOGComputerBackupPolicyEnabled, - - /// (no description). - DBTEAMLOGComputerBackupPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGComputerBackupPolicy` union. -/// -@interface DBTEAMLOGComputerBackupPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGComputerBackupPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGComputerBackupPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGComputerBackupPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGComputerBackupPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGComputerBackupPolicy` object. -/// -+ (DBTEAMLOGComputerBackupPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicyChangedDetails.h deleted file mode 100644 index 6da1cdbf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGComputerBackupPolicy; -@class DBTEAMLOGComputerBackupPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicyChangedDetails` struct. -/// -/// Changed computer backup policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New computer backup policy. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicy *dNewValue; - -/// Previous computer backup policy. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New computer backup policy. -/// @param previousValue Previous computer backup policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGComputerBackupPolicy *)dNewValue - previousValue:(DBTEAMLOGComputerBackupPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ComputerBackupPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGComputerBackupPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGComputerBackupPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGComputerBackupPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` object. -/// -+ (DBTEAMLOGComputerBackupPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicyChangedType.h deleted file mode 100644 index a11edb34..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGComputerBackupPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGComputerBackupPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ComputerBackupPolicyChangedType` struct. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGComputerBackupPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGComputerBackupPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGComputerBackupPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGComputerBackupPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGComputerBackupPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGComputerBackupPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGConnectedTeamName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGConnectedTeamName.h deleted file mode 100644 index 4a74d59a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGConnectedTeamName.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGConnectedTeamName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ConnectedTeamName` struct. -/// -/// The name of the team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGConnectedTeamName : NSObject - -#pragma mark - Instance fields - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ConnectedTeamName` struct. -/// -@interface DBTEAMLOGConnectedTeamNameSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGConnectedTeamName` instances. -/// -/// @param instance An instance of the `DBTEAMLOGConnectedTeamName` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGConnectedTeamName` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGConnectedTeamName *)instance; - -/// -/// Deserializes `DBTEAMLOGConnectedTeamName` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGConnectedTeamName` API object. -/// -/// @return An instantiation of the `DBTEAMLOGConnectedTeamName` object. -/// -+ (DBTEAMLOGConnectedTeamName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentAdministrationPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentAdministrationPolicyChangedDetails.h deleted file mode 100644 index 71f01d07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentAdministrationPolicyChangedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentAdministrationPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentAdministrationPolicyChangedDetails` struct. -/// -/// Changed content management setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New content administration policy. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Previous content administration policy. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New content administration policy. -/// @param previousValue Previous content administration policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentAdministrationPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContentAdministrationPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContentAdministrationPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGContentAdministrationPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` object. -/// -+ (DBTEAMLOGContentAdministrationPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentAdministrationPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentAdministrationPolicyChangedType.h deleted file mode 100644 index 8bdcc699..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentAdministrationPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentAdministrationPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentAdministrationPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentAdministrationPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContentAdministrationPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContentAdministrationPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGContentAdministrationPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` object. -/// -+ (DBTEAMLOGContentAdministrationPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentPermanentDeletePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentPermanentDeletePolicy.h deleted file mode 100644 index 01df7e6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContentPermanentDeletePolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentPermanentDeletePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentPermanentDeletePolicy` union. -/// -/// Policy for pemanent content deletion -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContentPermanentDeletePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGContentPermanentDeletePolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGContentPermanentDeletePolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGContentPermanentDeletePolicyTag) { - /// (no description). - DBTEAMLOGContentPermanentDeletePolicyDisabled, - - /// (no description). - DBTEAMLOGContentPermanentDeletePolicyEnabled, - - /// (no description). - DBTEAMLOGContentPermanentDeletePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGContentPermanentDeletePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGContentPermanentDeletePolicy` -/// union. -/// -@interface DBTEAMLOGContentPermanentDeletePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContentPermanentDeletePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGContentPermanentDeletePolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContentPermanentDeletePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContentPermanentDeletePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGContentPermanentDeletePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContentPermanentDeletePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGContentPermanentDeletePolicy` -/// object. -/// -+ (DBTEAMLOGContentPermanentDeletePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContextLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContextLogInfo.h deleted file mode 100644 index 46c3afe1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGContextLogInfo.h +++ /dev/null @@ -1,267 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContextLogInfo; -@class DBTEAMLOGNonTeamMemberLogInfo; -@class DBTEAMLOGTeamLogInfo; -@class DBTEAMLOGTeamMemberLogInfo; -@class DBTEAMLOGTrustedNonTeamMemberLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContextLogInfo` union. -/// -/// The primary entity on which the action was done. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContextLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGContextLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGContextLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGContextLogInfoTag) { - /// Anonymous context. - DBTEAMLOGContextLogInfoAnonymous, - - /// Action was done on behalf of a non team member. - DBTEAMLOGContextLogInfoNonTeamMember, - - /// Action was done on behalf of a team that's part of an organization. - DBTEAMLOGContextLogInfoOrganizationTeam, - - /// Action was done on behalf of the team. - DBTEAMLOGContextLogInfoTeam, - - /// Action was done on behalf of a team member. - DBTEAMLOGContextLogInfoTeamMember, - - /// Action was done on behalf of a trusted non team member. - DBTEAMLOGContextLogInfoTrustedNonTeamMember, - - /// (no description). - DBTEAMLOGContextLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGContextLogInfoTag tag; - -/// Action was done on behalf of a non team member. @note Ensure the -/// `isNonTeamMember` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNonTeamMemberLogInfo *nonTeamMember; - -/// Action was done on behalf of a team that's part of an organization. @note -/// Ensure the `isOrganizationTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamLogInfo *organizationTeam; - -/// Action was done on behalf of a team member. @note Ensure the `isTeamMember` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMemberLogInfo *teamMember; - -/// Action was done on behalf of a trusted non team member. @note Ensure the -/// `isTrustedNonTeamMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberLogInfo *trustedNonTeamMember; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "anonymous". -/// -/// Description of the "anonymous" tag state: Anonymous context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnonymous; - -/// -/// Initializes union class with tag state of "non_team_member". -/// -/// Description of the "non_team_member" tag state: Action was done on behalf of -/// a non team member. -/// -/// @param nonTeamMember Action was done on behalf of a non team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNonTeamMember:(DBTEAMLOGNonTeamMemberLogInfo *)nonTeamMember; - -/// -/// Initializes union class with tag state of "organization_team". -/// -/// Description of the "organization_team" tag state: Action was done on behalf -/// of a team that's part of an organization. -/// -/// @param organizationTeam Action was done on behalf of a team that's part of -/// an organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizationTeam:(DBTEAMLOGTeamLogInfo *)organizationTeam; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Action was done on behalf of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "team_member". -/// -/// Description of the "team_member" tag state: Action was done on behalf of a -/// team member. -/// -/// @param teamMember Action was done on behalf of a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMember:(DBTEAMLOGTeamMemberLogInfo *)teamMember; - -/// -/// Initializes union class with tag state of "trusted_non_team_member". -/// -/// Description of the "trusted_non_team_member" tag state: Action was done on -/// behalf of a trusted non team member. -/// -/// @param trustedNonTeamMember Action was done on behalf of a trusted non team -/// member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedNonTeamMember:(DBTEAMLOGTrustedNonTeamMemberLogInfo *)trustedNonTeamMember; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "anonymous". -/// -/// @return Whether the union's current tag state has value "anonymous". -/// -- (BOOL)isAnonymous; - -/// -/// Retrieves whether the union's current tag state has value "non_team_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `nonTeamMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "non_team_member". -/// -- (BOOL)isNonTeamMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "organization_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizationTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "organization_team". -/// -- (BOOL)isOrganizationTeam; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "team_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_member". -/// -- (BOOL)isTeamMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "trusted_non_team_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `trustedNonTeamMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "trusted_non_team_member". -/// -- (BOOL)isTrustedNonTeamMember; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGContextLogInfo` union. -/// -@interface DBTEAMLOGContextLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContextLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGContextLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContextLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContextLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGContextLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContextLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGContextLogInfo` object. -/// -+ (DBTEAMLOGContextLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateFolderDetails.h deleted file mode 100644 index c7d5b137..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateFolderDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderDetails` struct. -/// -/// Created folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateFolderDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderDetails` struct. -/// -@interface DBTEAMLOGCreateFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateFolderDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateFolderDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateFolderDetails` object. -/// -+ (DBTEAMLOGCreateFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateFolderType.h deleted file mode 100644 index 1cc2c785..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateFolderType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderType` struct. -/// -@interface DBTEAMLOGCreateFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateFolderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateFolderType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateFolderType` object. -/// -+ (DBTEAMLOGCreateFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateTeamInviteLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateTeamInviteLinkDetails.h deleted file mode 100644 index ad68b43a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateTeamInviteLinkDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateTeamInviteLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateTeamInviteLinkDetails` struct. -/// -/// Created team invite link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateTeamInviteLinkDetails : NSObject - -#pragma mark - Instance fields - -/// The invite link url that was created. -@property (nonatomic, readonly, copy) NSString *linkUrl; - -/// The expiration date of the invite link. -@property (nonatomic, readonly, copy) NSString *expiryDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkUrl The invite link url that was created. -/// @param expiryDate The expiration date of the invite link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkUrl:(NSString *)linkUrl expiryDate:(NSString *)expiryDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateTeamInviteLinkDetails` struct. -/// -@interface DBTEAMLOGCreateTeamInviteLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateTeamInviteLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateTeamInviteLinkDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateTeamInviteLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateTeamInviteLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateTeamInviteLinkDetails` -/// object. -/// -+ (DBTEAMLOGCreateTeamInviteLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateTeamInviteLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateTeamInviteLinkType.h deleted file mode 100644 index 63fa7e59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGCreateTeamInviteLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateTeamInviteLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateTeamInviteLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateTeamInviteLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateTeamInviteLinkType` struct. -/// -@interface DBTEAMLOGCreateTeamInviteLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateTeamInviteLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateTeamInviteLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateTeamInviteLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateTeamInviteLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateTeamInviteLinkType` object. -/// -+ (DBTEAMLOGCreateTeamInviteLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h deleted file mode 100644 index 720497f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionChangePolicyDetails; -@class DBTEAMLOGPlacementRestriction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionChangePolicyDetails` struct. -/// -/// Set restrictions on data center locations where team data resides. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous placement restriction. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestriction *previousValue; - -/// New placement restriction. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestriction *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous placement restriction. -/// @param dNewValue New placement restriction. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGPlacementRestriction *)previousValue - dNewValue:(DBTEAMLOGPlacementRestriction *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataPlacementRestrictionChangePolicyDetails` struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyType.h deleted file mode 100644 index 8799c6fb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DataPlacementRestrictionChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h deleted file mode 100644 index 77c54d67..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails; -@class DBTEAMLOGPlacementRestriction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionSatisfyPolicyDetails` struct. -/// -/// Completed restrictions on data center locations where team data resides. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Placement restriction. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestriction *placementRestriction; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param placementRestriction Placement restriction. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlacementRestriction:(DBTEAMLOGPlacementRestriction *)placementRestriction; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataPlacementRestrictionSatisfyPolicyDetails` struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h deleted file mode 100644 index e46f884c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionSatisfyPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DataPlacementRestrictionSatisfyPolicyType` -/// struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h deleted file mode 100644 index f4e867e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestSuccessfulDetails` struct. -/// -/// Requested data residency migration for team data. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestSuccessfulDetails` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h deleted file mode 100644 index 47216db1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestSuccessfulType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestSuccessfulType` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h deleted file mode 100644 index c51e9e3e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestUnsuccessfulDetails` struct. -/// -/// Request for data residency migration for team data has failed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestUnsuccessfulDetails` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h deleted file mode 100644 index b816a381..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestUnsuccessfulType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestUnsuccessfulType` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDefaultLinkExpirationDaysPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDefaultLinkExpirationDaysPolicy.h deleted file mode 100644 index af31c5bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDefaultLinkExpirationDaysPolicy.h +++ /dev/null @@ -1,240 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDefaultLinkExpirationDaysPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DefaultLinkExpirationDaysPolicy` union. -/// -/// Policy for the default number of days until an externally shared link -/// expires -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDefaultLinkExpirationDaysPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDefaultLinkExpirationDaysPolicyTag` enum type represents the -/// possible tag states with which the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDefaultLinkExpirationDaysPolicyTag) { - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay1, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay180, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay3, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay30, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay7, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay90, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyNone, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyYear1, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDefaultLinkExpirationDaysPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "day_1". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay1; - -/// -/// Initializes union class with tag state of "day_180". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay180; - -/// -/// Initializes union class with tag state of "day_3". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay3; - -/// -/// Initializes union class with tag state of "day_30". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay30; - -/// -/// Initializes union class with tag state of "day_7". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay7; - -/// -/// Initializes union class with tag state of "day_90". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay90; - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "year_1". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithYear1; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "day_1". -/// -/// @return Whether the union's current tag state has value "day_1". -/// -- (BOOL)isDay1; - -/// -/// Retrieves whether the union's current tag state has value "day_180". -/// -/// @return Whether the union's current tag state has value "day_180". -/// -- (BOOL)isDay180; - -/// -/// Retrieves whether the union's current tag state has value "day_3". -/// -/// @return Whether the union's current tag state has value "day_3". -/// -- (BOOL)isDay3; - -/// -/// Retrieves whether the union's current tag state has value "day_30". -/// -/// @return Whether the union's current tag state has value "day_30". -/// -- (BOOL)isDay30; - -/// -/// Retrieves whether the union's current tag state has value "day_7". -/// -/// @return Whether the union's current tag state has value "day_7". -/// -- (BOOL)isDay7; - -/// -/// Retrieves whether the union's current tag state has value "day_90". -/// -/// @return Whether the union's current tag state has value "day_90". -/// -- (BOOL)isDay90; - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "year_1". -/// -/// @return Whether the union's current tag state has value "year_1". -/// -- (BOOL)isYear1; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDefaultLinkExpirationDaysPolicy` -/// union. -/// -@interface DBTEAMLOGDefaultLinkExpirationDaysPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDefaultLinkExpirationDaysPolicy` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDefaultLinkExpirationDaysPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDefaultLinkExpirationDaysPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDefaultLinkExpirationDaysPolicy` -/// object. -/// -+ (DBTEAMLOGDefaultLinkExpirationDaysPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeleteTeamInviteLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeleteTeamInviteLinkDetails.h deleted file mode 100644 index 8355c746..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeleteTeamInviteLinkDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeleteTeamInviteLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteTeamInviteLinkDetails` struct. -/// -/// Deleted team invite link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkDetails : NSObject - -#pragma mark - Instance fields - -/// The invite link url that was deleted. -@property (nonatomic, readonly, copy) NSString *linkUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkUrl The invite link url that was deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkUrl:(NSString *)linkUrl; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteTeamInviteLinkDetails` struct. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeleteTeamInviteLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeleteTeamInviteLinkDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeleteTeamInviteLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeleteTeamInviteLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeleteTeamInviteLinkDetails` -/// object. -/// -+ (DBTEAMLOGDeleteTeamInviteLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeleteTeamInviteLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeleteTeamInviteLinkType.h deleted file mode 100644 index 51b93b04..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeleteTeamInviteLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeleteTeamInviteLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteTeamInviteLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteTeamInviteLinkType` struct. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeleteTeamInviteLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeleteTeamInviteLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeleteTeamInviteLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeleteTeamInviteLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeleteTeamInviteLinkType` object. -/// -+ (DBTEAMLOGDeleteTeamInviteLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDesktopDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDesktopDeviceSessionLogInfo.h deleted file mode 100644 index d58166fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDesktopDeviceSessionLogInfo.h +++ /dev/null @@ -1,129 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMDesktopPlatform; -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGDesktopSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopDeviceSessionLogInfo` struct. -/// -/// Information about linked Dropbox desktop client sessions -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDesktopDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Desktop session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGDesktopSessionLogInfo *sessionInfo; - -/// Name of the hosting desktop. -@property (nonatomic, readonly, copy) NSString *hostName; - -/// The Dropbox desktop client type. -@property (nonatomic, readonly) DBTEAMDesktopPlatform *clientType; - -/// The Dropbox client version. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// Information on the hosting platform. -@property (nonatomic, readonly, copy) NSString *platform; - -/// Whether itu2019s possible to delete all of the account files upon unlinking. -@property (nonatomic, readonly) NSNumber *isDeleteOnUnlinkSupported; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether itu2019s possible to delete all of -/// the account files upon unlinking. -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Desktop session unique id. -/// @param clientVersion The Dropbox client version. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported - ipAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGDesktopSessionLogInfo *)sessionInfo - clientVersion:(nullable NSString *)clientVersion; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether itu2019s possible to delete all of -/// the account files upon unlinking. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DesktopDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGDesktopDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDesktopDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDesktopDeviceSessionLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDesktopDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDesktopDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDesktopDeviceSessionLogInfo` -/// object. -/// -+ (DBTEAMLOGDesktopDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDesktopSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDesktopSessionLogInfo.h deleted file mode 100644 index 895ccac8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDesktopSessionLogInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGSessionLogInfo.h" - -@class DBTEAMLOGDesktopSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopSessionLogInfo` struct. -/// -/// Desktop session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDesktopSessionLogInfo : DBTEAMLOGSessionLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DesktopSessionLogInfo` struct. -/// -@interface DBTEAMLOGDesktopSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDesktopSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDesktopSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDesktopSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDesktopSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDesktopSessionLogInfo` object. -/// -+ (DBTEAMLOGDesktopSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsAddExceptionDetails.h deleted file mode 100644 index bf6a7bd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsAddExceptionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsAddExceptionDetails` struct. -/// -/// Added members to device approvals exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsAddExceptionDetails` struct. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsAddExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsAddExceptionType.h deleted file mode 100644 index 1c51aac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsAddExceptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsAddExceptionType` struct. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsAddExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceApprovalsAddExceptionType` -/// object. -/// -+ (DBTEAMLOGDeviceApprovalsAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h deleted file mode 100644 index 4dfcbbfd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails; -@class DBTEAMLOGDeviceApprovalsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeDesktopPolicyDetails` struct. -/// -/// Set/removed limit on number of computers member can link to team Dropbox -/// account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New desktop device approvals policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *dNewValue; - -/// Previous desktop device approvals policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New desktop device approvals policy. Might be missing due -/// to historical data gap. -/// @param previousValue Previous desktop device approvals policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeDesktopPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h deleted file mode 100644 index e4eb3167..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeDesktopPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeDesktopPolicyType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h deleted file mode 100644 index 5f570b07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails; -@class DBTEAMLOGDeviceApprovalsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeMobilePolicyDetails` struct. -/// -/// Set/removed limit on number of mobile devices member can link to team -/// Dropbox account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New mobile device approvals policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *dNewValue; - -/// Previous mobile device approvals policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New mobile device approvals policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous mobile device approvals policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeMobilePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h deleted file mode 100644 index 9ec568c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeMobilePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeMobilePolicyType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h deleted file mode 100644 index f6253205..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeOverageActionDetails; -@class DBTEAMPOLICIESRolloutMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeOverageActionDetails` struct. -/// -/// Changed device approvals setting when member is over limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionDetails : NSObject - -#pragma mark - Instance fields - -/// New over the limits policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESRolloutMethod *dNewValue; - -/// Previous over the limit policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESRolloutMethod *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New over the limits policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous over the limit policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMPOLICIESRolloutMethod *)dNewValue - previousValue:(nullable DBTEAMPOLICIESRolloutMethod *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeOverageActionDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionType.h deleted file mode 100644 index 1c7817a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeOverageActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeOverageActionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeOverageActionType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeOverageActionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeOverageActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeOverageActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeOverageActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h deleted file mode 100644 index 356fba6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails; -@class DBTEAMLOGDeviceUnlinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeUnlinkActionDetails` struct. -/// -/// Changed device approvals setting when member unlinks approved device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails : NSObject - -#pragma mark - Instance fields - -/// New device unlink policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceUnlinkPolicy *dNewValue; - -/// Previous device unlink policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceUnlinkPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New device unlink policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous device unlink policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGDeviceUnlinkPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDeviceUnlinkPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeUnlinkActionDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h deleted file mode 100644 index c0b6059a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeUnlinkActionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeUnlinkActionType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsPolicy.h deleted file mode 100644 index dc5decba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDeviceApprovalsPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGDeviceApprovalsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDeviceApprovalsPolicyTag) { - /// (no description). - DBTEAMLOGDeviceApprovalsPolicyLimited, - - /// (no description). - DBTEAMLOGDeviceApprovalsPolicyUnlimited, - - /// (no description). - DBTEAMLOGDeviceApprovalsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "limited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimited; - -/// -/// Initializes union class with tag state of "unlimited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "limited". -/// -/// @return Whether the union's current tag state has value "limited". -/// -- (BOOL)isLimited; - -/// -/// Retrieves whether the union's current tag state has value "unlimited". -/// -/// @return Whether the union's current tag state has value "unlimited". -/// -- (BOOL)isUnlimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDeviceApprovalsPolicy` union. -/// -@interface DBTEAMLOGDeviceApprovalsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceApprovalsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceApprovalsPolicy` object. -/// -+ (DBTEAMLOGDeviceApprovalsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h deleted file mode 100644 index 3db84e7b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsRemoveExceptionDetails` struct. -/// -/// Removed members from device approvals exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsRemoveExceptionDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionType.h deleted file mode 100644 index c922e8f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsRemoveExceptionType` struct. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsRemoveExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` object. -/// -+ (DBTEAMLOGDeviceApprovalsRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpDesktopDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpDesktopDetails.h deleted file mode 100644 index a95287be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpDesktopDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpDesktopDetails; -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpDesktopDetails` struct. -/// -/// Changed IP address associated with active desktop session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDeviceSessionLogInfo *deviceSessionInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceSessionInfo Device's session logged information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionInfo:(DBTEAMLOGDeviceSessionLogInfo *)deviceSessionInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpDesktopDetails` struct. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpDesktopDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpDesktopDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpDesktopDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpDesktopDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpDesktopDetails` -/// object. -/// -+ (DBTEAMLOGDeviceChangeIpDesktopDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpDesktopType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpDesktopType.h deleted file mode 100644 index e31e95f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpDesktopType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpDesktopType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpDesktopType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpDesktopType` struct. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpDesktopType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpDesktopType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpDesktopType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpDesktopType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpDesktopType` object. -/// -+ (DBTEAMLOGDeviceChangeIpDesktopType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpMobileDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpMobileDetails.h deleted file mode 100644 index f6c4b5dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpMobileDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpMobileDetails; -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpMobileDetails` struct. -/// -/// Changed IP address associated with active mobile session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpMobileDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceSessionLogInfo *deviceSessionInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceSessionInfo Device's session logged information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionInfo:(nullable DBTEAMLOGDeviceSessionLogInfo *)deviceSessionInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpMobileDetails` struct. -/// -@interface DBTEAMLOGDeviceChangeIpMobileDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpMobileDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpMobileDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpMobileDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpMobileDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpMobileDetails` -/// object. -/// -+ (DBTEAMLOGDeviceChangeIpMobileDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpMobileType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpMobileType.h deleted file mode 100644 index 864a7d23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpMobileType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpMobileType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpMobileType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpMobileType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpMobileType` struct. -/// -@interface DBTEAMLOGDeviceChangeIpMobileTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpMobileType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpMobileType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpMobileType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpMobileType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpMobileType` object. -/// -+ (DBTEAMLOGDeviceChangeIpMobileType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpWebDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpWebDetails.h deleted file mode 100644 index dd758118..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpWebDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpWebDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpWebDetails` struct. -/// -/// Changed IP address associated with active web session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpWebDetails : NSObject - -#pragma mark - Instance fields - -/// Web browser name. -@property (nonatomic, readonly, copy) NSString *userAgent; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userAgent Web browser name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAgent:(NSString *)userAgent; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpWebDetails` struct. -/// -@interface DBTEAMLOGDeviceChangeIpWebDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpWebDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpWebDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpWebDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpWebDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpWebDetails` object. -/// -+ (DBTEAMLOGDeviceChangeIpWebDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpWebType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpWebType.h deleted file mode 100644 index c152b942..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceChangeIpWebType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpWebType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpWebType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpWebType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpWebType` struct. -/// -@interface DBTEAMLOGDeviceChangeIpWebTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpWebType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpWebType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpWebType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpWebType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpWebType` object. -/// -+ (DBTEAMLOGDeviceChangeIpWebType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h deleted file mode 100644 index 29b4d764..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkFailDetails; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkFailDetails` struct. -/// -/// Failed to delete all files from unlinked device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailDetails : NSObject - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// The number of times that remote file deletion failed. -@property (nonatomic, readonly) NSNumber *numFailures; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param numFailures The number of times that remote file deletion failed. -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumFailures:(NSNumber *)numFailures - sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param numFailures The number of times that remote file deletion failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumFailures:(NSNumber *)numFailures; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkFailDetails` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` -/// object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailType.h deleted file mode 100644 index 07f98654..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkFailType` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceDeleteOnUnlinkFailType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceDeleteOnUnlinkFailType` -/// object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h deleted file mode 100644 index 25d3e76b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkSuccessDetails` struct. -/// -/// Deleted all files from unlinked device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkSuccessDetails` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h deleted file mode 100644 index 7691b287..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkSuccessType` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` -/// object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkFailDetails.h deleted file mode 100644 index 512a743f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkFailDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkFailDetails; -@class DBTEAMLOGDeviceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkFailDetails` struct. -/// -/// Failed to link device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkFailDetails : NSObject - -#pragma mark - Instance fields - -/// IP address. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *ipAddress; - -/// A description of the device used while user approval blocked. -@property (nonatomic, readonly) DBTEAMLOGDeviceType *deviceType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceType A description of the device used while user approval -/// blocked. -/// @param ipAddress IP address. Might be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceType:(DBTEAMLOGDeviceType *)deviceType ipAddress:(nullable NSString *)ipAddress; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deviceType A description of the device used while user approval -/// blocked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceType:(DBTEAMLOGDeviceType *)deviceType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkFailDetails` struct. -/// -@interface DBTEAMLOGDeviceLinkFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkFailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkFailDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkFailDetails` object. -/// -+ (DBTEAMLOGDeviceLinkFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkFailType.h deleted file mode 100644 index d6610fdc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkFailType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkFailType` struct. -/// -@interface DBTEAMLOGDeviceLinkFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkFailType` object. -/// -+ (DBTEAMLOGDeviceLinkFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkSuccessDetails.h deleted file mode 100644 index f7adb097..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkSuccessDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkSuccessDetails; -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkSuccessDetails` struct. -/// -/// Linked device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceSessionLogInfo *deviceSessionInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceSessionInfo Device's session logged information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionInfo:(nullable DBTEAMLOGDeviceSessionLogInfo *)deviceSessionInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkSuccessDetails` struct. -/// -@interface DBTEAMLOGDeviceLinkSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkSuccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkSuccessDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkSuccessDetails` object. -/// -+ (DBTEAMLOGDeviceLinkSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkSuccessType.h deleted file mode 100644 index 2c2dbd7f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceLinkSuccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkSuccessType` struct. -/// -@interface DBTEAMLOGDeviceLinkSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkSuccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkSuccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkSuccessType` object. -/// -+ (DBTEAMLOGDeviceLinkSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementDisabledDetails.h deleted file mode 100644 index 52d2b3e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementDisabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementDisabledDetails` struct. -/// -/// Disabled device management. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementDisabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementDisabledDetails` struct. -/// -@interface DBTEAMLOGDeviceManagementDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementDisabledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceManagementDisabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementDisabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementDisabledDetails` -/// object. -/// -+ (DBTEAMLOGDeviceManagementDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementDisabledType.h deleted file mode 100644 index 354fc0a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementDisabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementDisabledType` struct. -/// -@interface DBTEAMLOGDeviceManagementDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementDisabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceManagementDisabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementDisabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementDisabledType` -/// object. -/// -+ (DBTEAMLOGDeviceManagementDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementEnabledDetails.h deleted file mode 100644 index 5839affe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementEnabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementEnabledDetails` struct. -/// -/// Enabled device management. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementEnabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementEnabledDetails` struct. -/// -@interface DBTEAMLOGDeviceManagementEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementEnabledDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceManagementEnabledDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementEnabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementEnabledDetails` -/// object. -/// -+ (DBTEAMLOGDeviceManagementEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementEnabledType.h deleted file mode 100644 index 379eaa70..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceManagementEnabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementEnabledType` struct. -/// -@interface DBTEAMLOGDeviceManagementEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementEnabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceManagementEnabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementEnabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementEnabledType` -/// object. -/// -+ (DBTEAMLOGDeviceManagementEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSessionLogInfo.h deleted file mode 100644 index fdbd48de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSessionLogInfo.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSessionLogInfo` struct. -/// -/// Device's session logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceSessionLogInfo : NSObject - -#pragma mark - Instance fields - -/// The IP address of the last activity from this session. -@property (nonatomic, readonly, copy, nullable) NSString *ipAddress; - -/// The time this session was created. -@property (nonatomic, readonly, nullable) NSDate *created; - -/// The time of the last activity from this session. -@property (nonatomic, readonly, nullable) NSDate *updated; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceSessionLogInfo` object. -/// -+ (DBTEAMLOGDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h deleted file mode 100644 index 0b0aa2f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupStatus; -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGDeviceSyncBackupStatusChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSyncBackupStatusChangedDetails` struct. -/// -/// Enabled/disabled backup for computer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSessionInfo; - -/// Previous status of computer backup on the device. -@property (nonatomic, readonly) DBTEAMLOGBackupStatus *previousValue; - -/// Next status of computer backup on the device. -@property (nonatomic, readonly) DBTEAMLOGBackupStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param desktopDeviceSessionInfo Device's session logged information. -/// @param previousValue Previous status of computer backup on the device. -/// @param dNewValue Next status of computer backup on the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSessionInfo:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo - previousValue:(DBTEAMLOGBackupStatus *)previousValue - dNewValue:(DBTEAMLOGBackupStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSyncBackupStatusChangedDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceSyncBackupStatusChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` object. -/// -+ (DBTEAMLOGDeviceSyncBackupStatusChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedType.h deleted file mode 100644 index 84b657ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceSyncBackupStatusChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSyncBackupStatusChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSyncBackupStatusChangedType` struct. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceSyncBackupStatusChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceSyncBackupStatusChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceSyncBackupStatusChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceSyncBackupStatusChangedType` -/// object. -/// -+ (DBTEAMLOGDeviceSyncBackupStatusChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceType.h deleted file mode 100644 index 52768024..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceType.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDeviceTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGDeviceType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDeviceTypeTag) { - /// (no description). - DBTEAMLOGDeviceTypeDesktop, - - /// (no description). - DBTEAMLOGDeviceTypeMobile, - - /// (no description). - DBTEAMLOGDeviceTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDeviceTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "desktop". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktop; - -/// -/// Initializes union class with tag state of "mobile". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobile; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "desktop". -/// -/// @return Whether the union's current tag state has value "desktop". -/// -- (BOOL)isDesktop; - -/// -/// Retrieves whether the union's current tag state has value "mobile". -/// -/// @return Whether the union's current tag state has value "mobile". -/// -- (BOOL)isMobile; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDeviceType` union. -/// -@interface DBTEAMLOGDeviceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceType` object. -/// -+ (DBTEAMLOGDeviceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkDetails.h deleted file mode 100644 index 027fd455..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceUnlinkDetails; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceUnlinkDetails` struct. -/// -/// Disconnected device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceUnlinkDetails : NSObject - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// True if the user requested to delete data after device unlink, false -/// otherwise. -@property (nonatomic, readonly) NSNumber *deleteData; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deleteData True if the user requested to delete data after device -/// unlink, false otherwise. -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteData:(NSNumber *)deleteData - sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deleteData True if the user requested to delete data after device -/// unlink, false otherwise. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteData:(NSNumber *)deleteData; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceUnlinkDetails` struct. -/// -@interface DBTEAMLOGDeviceUnlinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceUnlinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceUnlinkDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceUnlinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceUnlinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceUnlinkDetails` object. -/// -+ (DBTEAMLOGDeviceUnlinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkPolicy.h deleted file mode 100644 index 76869218..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkPolicy.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceUnlinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceUnlinkPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceUnlinkPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDeviceUnlinkPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGDeviceUnlinkPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDeviceUnlinkPolicyTag) { - /// (no description). - DBTEAMLOGDeviceUnlinkPolicyKeep, - - /// (no description). - DBTEAMLOGDeviceUnlinkPolicyRemove, - - /// (no description). - DBTEAMLOGDeviceUnlinkPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDeviceUnlinkPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "keep". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithKeep; - -/// -/// Initializes union class with tag state of "remove". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemove; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "keep". -/// -/// @return Whether the union's current tag state has value "keep". -/// -- (BOOL)isKeep; - -/// -/// Retrieves whether the union's current tag state has value "remove". -/// -/// @return Whether the union's current tag state has value "remove". -/// -- (BOOL)isRemove; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDeviceUnlinkPolicy` union. -/// -@interface DBTEAMLOGDeviceUnlinkPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceUnlinkPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceUnlinkPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceUnlinkPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceUnlinkPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceUnlinkPolicy` object. -/// -+ (DBTEAMLOGDeviceUnlinkPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkType.h deleted file mode 100644 index 26fd661d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDeviceUnlinkType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceUnlinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceUnlinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceUnlinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceUnlinkType` struct. -/// -@interface DBTEAMLOGDeviceUnlinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceUnlinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceUnlinkType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceUnlinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceUnlinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceUnlinkType` object. -/// -+ (DBTEAMLOGDeviceUnlinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h deleted file mode 100644 index 6b221a8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsAddMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsAddMembersDetails` struct. -/// -/// Added members to directory restrictions list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsAddMembersDetails` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsAddMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsAddMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersType.h deleted file mode 100644 index 63caa3b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsAddMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsAddMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsAddMembersType` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsAddMembersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsAddMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsAddMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsAddMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h deleted file mode 100644 index 4ad62605..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsRemoveMembersDetails` struct. -/// -/// Removed members from directory restrictions list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsRemoveMembersDetails` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h deleted file mode 100644 index 1ee2af2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsRemoveMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsRemoveMembersType` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsRemoveMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsRemoveMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDisabledDomainInvitesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDisabledDomainInvitesDetails.h deleted file mode 100644 index 88860241..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDisabledDomainInvitesDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDisabledDomainInvitesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DisabledDomainInvitesDetails` struct. -/// -/// Disabled domain invites. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDisabledDomainInvitesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DisabledDomainInvitesDetails` struct. -/// -@interface DBTEAMLOGDisabledDomainInvitesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDisabledDomainInvitesDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDisabledDomainInvitesDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDisabledDomainInvitesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDisabledDomainInvitesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDisabledDomainInvitesDetails` -/// object. -/// -+ (DBTEAMLOGDisabledDomainInvitesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDisabledDomainInvitesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDisabledDomainInvitesType.h deleted file mode 100644 index b1261c0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDisabledDomainInvitesType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDisabledDomainInvitesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DisabledDomainInvitesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDisabledDomainInvitesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DisabledDomainInvitesType` struct. -/// -@interface DBTEAMLOGDisabledDomainInvitesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDisabledDomainInvitesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDisabledDomainInvitesType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDisabledDomainInvitesType *)instance; - -/// -/// Deserializes `DBTEAMLOGDisabledDomainInvitesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDisabledDomainInvitesType` object. -/// -+ (DBTEAMLOGDisabledDomainInvitesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDispositionActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDispositionActionType.h deleted file mode 100644 index 389e435e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDispositionActionType.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDispositionActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DispositionActionType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDispositionActionType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDispositionActionTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGDispositionActionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDispositionActionTypeTag) { - /// (no description). - DBTEAMLOGDispositionActionTypeAutomaticDelete, - - /// (no description). - DBTEAMLOGDispositionActionTypeAutomaticPermanentlyDelete, - - /// (no description). - DBTEAMLOGDispositionActionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDispositionActionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "automatic_delete". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutomaticDelete; - -/// -/// Initializes union class with tag state of "automatic_permanently_delete". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutomaticPermanentlyDelete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "automatic_delete". -/// -/// @return Whether the union's current tag state has value "automatic_delete". -/// -- (BOOL)isAutomaticDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "automatic_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "automatic_permanently_delete". -/// -- (BOOL)isAutomaticPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDispositionActionType` union. -/// -@interface DBTEAMLOGDispositionActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDispositionActionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDispositionActionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDispositionActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDispositionActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDispositionActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDispositionActionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDispositionActionType` object. -/// -+ (DBTEAMLOGDispositionActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h deleted file mode 100644 index 431d79d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesApproveRequestToJoinTeamDetails` struct. -/// -/// Approved user's request to join team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesApproveRequestToJoinTeamDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` object. -/// -+ (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h deleted file mode 100644 index 3d898851..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesApproveRequestToJoinTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesApproveRequestToJoinTeamType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` object. -/// -+ (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h deleted file mode 100644 index 960b49df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesDeclineRequestToJoinTeamDetails` struct. -/// -/// Declined user's request to join team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesDeclineRequestToJoinTeamDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` object. -/// -+ (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h deleted file mode 100644 index e8823f58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesDeclineRequestToJoinTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesDeclineRequestToJoinTeamType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` object. -/// -+ (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h deleted file mode 100644 index a70362c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesEmailExistingUsersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesEmailExistingUsersDetails` struct. -/// -/// Sent domain invites to existing domain accounts. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersDetails : NSObject - -#pragma mark - Instance fields - -/// Domain names. -@property (nonatomic, readonly, copy) NSString *domainName; - -/// Number of recipients. -@property (nonatomic, readonly) NSNumber *numRecipients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain names. -/// @param numRecipients Number of recipients. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName numRecipients:(NSNumber *)numRecipients; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesEmailExistingUsersDetails` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesEmailExistingUsersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` object. -/// -+ (DBTEAMLOGDomainInvitesEmailExistingUsersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersType.h deleted file mode 100644 index 6276c6a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesEmailExistingUsersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesEmailExistingUsersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesEmailExistingUsersType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesEmailExistingUsersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesEmailExistingUsersType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesEmailExistingUsersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` object. -/// -+ (DBTEAMLOGDomainInvitesEmailExistingUsersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h deleted file mode 100644 index 10c2aa2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesRequestToJoinTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesRequestToJoinTeamDetails` struct. -/// -/// Requested to join team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesRequestToJoinTeamDetails` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` object. -/// -+ (DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamType.h deleted file mode 100644 index e760d8d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesRequestToJoinTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesRequestToJoinTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesRequestToJoinTeamType` struct. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesRequestToJoinTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesRequestToJoinTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesRequestToJoinTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` object. -/// -+ (DBTEAMLOGDomainInvitesRequestToJoinTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h deleted file mode 100644 index 8be5584d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToNoDetails` struct. -/// -/// Disabled "Automatically invite new users". -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesSetInviteNewUserPrefToNoDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h deleted file mode 100644 index 9457330c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToNoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesSetInviteNewUserPrefToNoType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h deleted file mode 100644 index 60202aab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToYesDetails` struct. -/// -/// Enabled "Automatically invite new users". -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesSetInviteNewUserPrefToYesDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h deleted file mode 100644 index 87d557b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToYesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesSetInviteNewUserPrefToYesType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainFailDetails.h deleted file mode 100644 index 48e6e845..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainFailDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainFailDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainFailDetails` struct. -/// -/// Failed to verify team domain. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -/// Domain name verification method. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *verificationMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// @param verificationMethod Domain name verification method. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName verificationMethod:(nullable NSString *)verificationMethod; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainFailDetails` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainFailType.h deleted file mode 100644 index 790d3f55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainFailType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainFailType` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainFailType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h deleted file mode 100644 index 5b6cf93f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainSuccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainSuccessDetails` struct. -/// -/// Verified team domain. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Domain names. -@property (nonatomic, readonly) NSArray *domainNames; - -/// Domain name verification method. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *verificationMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainNames Domain names. -/// @param verificationMethod Domain name verification method. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainNames:(NSArray *)domainNames - verificationMethod:(nullable NSString *)verificationMethod; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domainNames Domain names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainNames:(NSArray *)domainNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainSuccessDetails` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessType.h deleted file mode 100644 index 7f83d036..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainSuccessType` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainSuccessType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationRemoveDomainDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationRemoveDomainDetails.h deleted file mode 100644 index 120a2f2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationRemoveDomainDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationRemoveDomainDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationRemoveDomainDetails` struct. -/// -/// Removed domain from list of verified team domains. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainDetails : NSObject - -#pragma mark - Instance fields - -/// Domain names. -@property (nonatomic, readonly) NSArray *domainNames; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainNames Domain names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainNames:(NSArray *)domainNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationRemoveDomainDetails` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationRemoveDomainDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationRemoveDomainDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationRemoveDomainDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` object. -/// -+ (DBTEAMLOGDomainVerificationRemoveDomainDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationRemoveDomainType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationRemoveDomainType.h deleted file mode 100644 index 766c12d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDomainVerificationRemoveDomainType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationRemoveDomainType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationRemoveDomainType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationRemoveDomainType` struct. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationRemoveDomainType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationRemoveDomainType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationRemoveDomainType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` object. -/// -+ (DBTEAMLOGDomainVerificationRemoveDomainType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDownloadPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDownloadPolicyType.h deleted file mode 100644 index 319fcc54..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDownloadPolicyType.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDownloadPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadPolicyType` union. -/// -/// Shared content downloads policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDownloadPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDownloadPolicyTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGDownloadPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDownloadPolicyTypeTag) { - /// (no description). - DBTEAMLOGDownloadPolicyTypeAllow, - - /// (no description). - DBTEAMLOGDownloadPolicyTypeDisallow, - - /// (no description). - DBTEAMLOGDownloadPolicyTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDownloadPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "disallow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallow; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "disallow". -/// -/// @return Whether the union's current tag state has value "disallow". -/// -- (BOOL)isDisallow; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDownloadPolicyType` union. -/// -@interface DBTEAMLOGDownloadPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDownloadPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDownloadPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDownloadPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDownloadPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDownloadPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDownloadPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDownloadPolicyType` object. -/// -+ (DBTEAMLOGDownloadPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsExportedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsExportedDetails.h deleted file mode 100644 index 4ba111d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsExportedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsExportedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsExportedDetails` struct. -/// -/// Exported passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsExportedDetails : NSObject - -#pragma mark - Instance fields - -/// The platform the device runs export. -@property (nonatomic, readonly, copy) NSString *platform; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param platform The platform the device runs export. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlatform:(NSString *)platform; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsExportedDetails` struct. -/// -@interface DBTEAMLOGDropboxPasswordsExportedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsExportedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsExportedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsExportedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsExportedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsExportedDetails` -/// object. -/// -+ (DBTEAMLOGDropboxPasswordsExportedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsExportedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsExportedType.h deleted file mode 100644 index 0b747085..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsExportedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsExportedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsExportedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsExportedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsExportedType` struct. -/// -@interface DBTEAMLOGDropboxPasswordsExportedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsExportedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDropboxPasswordsExportedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsExportedType *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsExportedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsExportedType` -/// object. -/// -+ (DBTEAMLOGDropboxPasswordsExportedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h deleted file mode 100644 index ab821ded..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsNewDeviceEnrolledDetails` struct. -/// -/// Enrolled new Dropbox Passwords device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails : NSObject - -#pragma mark - Instance fields - -/// Whether it's a first device enrolled. -@property (nonatomic, readonly) NSNumber *isFirstDevice; - -/// The platform the device is enrolled. -@property (nonatomic, readonly, copy) NSString *platform; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isFirstDevice Whether it's a first device enrolled. -/// @param platform The platform the device is enrolled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFirstDevice:(NSNumber *)isFirstDevice platform:(NSString *)platform; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsNewDeviceEnrolledDetails` -/// struct. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` object. -/// -+ (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h deleted file mode 100644 index 959079ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsNewDeviceEnrolledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsNewDeviceEnrolledType` -/// struct. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` object. -/// -+ (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicy.h deleted file mode 100644 index ecc24112..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsPolicy` union. -/// -/// Policy for deciding whether team users can use Dropbox Passwords -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDropboxPasswordsPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGDropboxPasswordsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDropboxPasswordsPolicyTag) { - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyDefault_, - - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyDisabled, - - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyEnabled, - - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDropboxPasswordsPolicy` union. -/// -@interface DBTEAMLOGDropboxPasswordsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDropboxPasswordsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsPolicy` object. -/// -+ (DBTEAMLOGDropboxPasswordsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h deleted file mode 100644 index d2240bd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsPolicy; -@class DBTEAMLOGDropboxPasswordsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsPolicyChangedDetails` struct. -/// -/// Changed Dropbox Passwords policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDropboxPasswordsPolicy *)dNewValue - previousValue:(DBTEAMLOGDropboxPasswordsPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` object. -/// -+ (DBTEAMLOGDropboxPasswordsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedType.h deleted file mode 100644 index 86dd2374..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsPolicyChangedType` struct. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGDropboxPasswordsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDurationLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDurationLogInfo.h deleted file mode 100644 index 60fa21e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGDurationLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGTimeUnit; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DurationLogInfo` struct. -/// -/// Represents a time duration: unit and amount -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDurationLogInfo : NSObject - -#pragma mark - Instance fields - -/// Time unit. -@property (nonatomic, readonly) DBTEAMLOGTimeUnit *unit; - -/// Amount of time. -@property (nonatomic, readonly) NSNumber *amount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param unit Time unit. -/// @param amount Amount of time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnit:(DBTEAMLOGTimeUnit *)unit amount:(NSNumber *)amount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DurationLogInfo` struct. -/// -@interface DBTEAMLOGDurationLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDurationLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDurationLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDurationLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDurationLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDurationLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDurationLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDurationLogInfo` object. -/// -+ (DBTEAMLOGDurationLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicy.h deleted file mode 100644 index 0da4f647..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestPolicy` union. -/// -/// Policy for deciding whether a team can use Email to Dropbox feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEmailIngestPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGEmailIngestPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEmailIngestPolicyTag) { - /// (no description). - DBTEAMLOGEmailIngestPolicyDisabled, - - /// (no description). - DBTEAMLOGEmailIngestPolicyEnabled, - - /// (no description). - DBTEAMLOGEmailIngestPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEmailIngestPolicy` union. -/// -@interface DBTEAMLOGEmailIngestPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestPolicy` object. -/// -+ (DBTEAMLOGEmailIngestPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicyChangedDetails.h deleted file mode 100644 index cc9f77ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestPolicy; -@class DBTEAMLOGEmailIngestPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestPolicyChangedDetails` struct. -/// -/// Changed email to Dropbox policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGEmailIngestPolicy *)dNewValue - previousValue:(DBTEAMLOGEmailIngestPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEmailIngestPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGEmailIngestPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicyChangedType.h deleted file mode 100644 index e71e2e55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestPolicyChangedType` struct. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGEmailIngestPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestReceiveFileDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestReceiveFileDetails.h deleted file mode 100644 index 6f7b9960..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestReceiveFileDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestReceiveFileDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestReceiveFileDetails` struct. -/// -/// Received files via Email to Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestReceiveFileDetails : NSObject - -#pragma mark - Instance fields - -/// Inbox name. -@property (nonatomic, readonly, copy) NSString *inboxName; - -/// Submitted file names. -@property (nonatomic, readonly) NSArray *attachmentNames; - -/// Subject of the email. -@property (nonatomic, readonly, copy, nullable) NSString *subject; - -/// The name as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *fromName; - -/// The email as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *fromEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param inboxName Inbox name. -/// @param attachmentNames Submitted file names. -/// @param subject Subject of the email. -/// @param fromName The name as provided by the submitter. -/// @param fromEmail The email as provided by the submitter. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInboxName:(NSString *)inboxName - attachmentNames:(NSArray *)attachmentNames - subject:(nullable NSString *)subject - fromName:(nullable NSString *)fromName - fromEmail:(nullable NSString *)fromEmail; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param inboxName Inbox name. -/// @param attachmentNames Submitted file names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInboxName:(NSString *)inboxName attachmentNames:(NSArray *)attachmentNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestReceiveFileDetails` struct. -/// -@interface DBTEAMLOGEmailIngestReceiveFileDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestReceiveFileDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestReceiveFileDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestReceiveFileDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestReceiveFileDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestReceiveFileDetails` -/// object. -/// -+ (DBTEAMLOGEmailIngestReceiveFileDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestReceiveFileType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestReceiveFileType.h deleted file mode 100644 index 0f706688..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmailIngestReceiveFileType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestReceiveFileType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestReceiveFileType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestReceiveFileType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestReceiveFileType` struct. -/// -@interface DBTEAMLOGEmailIngestReceiveFileTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestReceiveFileType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestReceiveFileType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestReceiveFileType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestReceiveFileType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestReceiveFileType` -/// object. -/// -+ (DBTEAMLOGEmailIngestReceiveFileType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmAddExceptionDetails.h deleted file mode 100644 index f4f043bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmAddExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmAddExceptionDetails` struct. -/// -/// Added members to EMM exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmAddExceptionDetails` struct. -/// -@interface DBTEAMLOGEmmAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmAddExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmAddExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmAddExceptionDetails` object. -/// -+ (DBTEAMLOGEmmAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmAddExceptionType.h deleted file mode 100644 index 3a0411eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmAddExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmAddExceptionType` struct. -/// -@interface DBTEAMLOGEmmAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmAddExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmAddExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmAddExceptionType` object. -/// -+ (DBTEAMLOGEmmAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmChangePolicyDetails.h deleted file mode 100644 index 22b1802f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmChangePolicyDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmChangePolicyDetails; -@class DBTEAMPOLICIESEmmState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmChangePolicyDetails` struct. -/// -/// Enabled/disabled enterprise mobility management for members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New enterprise mobility management policy. -@property (nonatomic, readonly) DBTEAMPOLICIESEmmState *dNewValue; - -/// Previous enterprise mobility management policy. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESEmmState *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New enterprise mobility management policy. -/// @param previousValue Previous enterprise mobility management policy. Might -/// be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESEmmState *)dNewValue - previousValue:(nullable DBTEAMPOLICIESEmmState *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New enterprise mobility management policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESEmmState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmChangePolicyDetails` struct. -/// -@interface DBTEAMLOGEmmChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmChangePolicyDetails` object. -/// -+ (DBTEAMLOGEmmChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmChangePolicyType.h deleted file mode 100644 index 9bce78b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmChangePolicyType` struct. -/// -@interface DBTEAMLOGEmmChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmChangePolicyType` object. -/// -+ (DBTEAMLOGEmmChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateExceptionsReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateExceptionsReportDetails.h deleted file mode 100644 index ba08dcec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateExceptionsReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateExceptionsReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateExceptionsReportDetails` struct. -/// -/// Created EMM-excluded users report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateExceptionsReportDetails` struct. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateExceptionsReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEmmCreateExceptionsReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateExceptionsReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateExceptionsReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateExceptionsReportDetails` -/// object. -/// -+ (DBTEAMLOGEmmCreateExceptionsReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateExceptionsReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateExceptionsReportType.h deleted file mode 100644 index 81682c2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateExceptionsReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateExceptionsReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateExceptionsReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateExceptionsReportType` struct. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateExceptionsReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmCreateExceptionsReportType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateExceptionsReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateExceptionsReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateExceptionsReportType` -/// object. -/// -+ (DBTEAMLOGEmmCreateExceptionsReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateUsageReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateUsageReportDetails.h deleted file mode 100644 index 14fb38f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateUsageReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateUsageReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateUsageReportDetails` struct. -/// -/// Created EMM mobile app usage report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateUsageReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateUsageReportDetails` struct. -/// -@interface DBTEAMLOGEmmCreateUsageReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateUsageReportDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmCreateUsageReportDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateUsageReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateUsageReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateUsageReportDetails` -/// object. -/// -+ (DBTEAMLOGEmmCreateUsageReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateUsageReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateUsageReportType.h deleted file mode 100644 index e776e7e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmCreateUsageReportType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateUsageReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateUsageReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateUsageReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateUsageReportType` struct. -/// -@interface DBTEAMLOGEmmCreateUsageReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateUsageReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmCreateUsageReportType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateUsageReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateUsageReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateUsageReportType` object. -/// -+ (DBTEAMLOGEmmCreateUsageReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmErrorDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmErrorDetails.h deleted file mode 100644 index c8da0f38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmErrorDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmErrorDetails; -@class DBTEAMLOGFailureDetailsLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmErrorDetails` struct. -/// -/// Failed to sign in via EMM. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmErrorDetails : NSObject - -#pragma mark - Instance fields - -/// Error details. -@property (nonatomic, readonly) DBTEAMLOGFailureDetailsLogInfo *errorDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param errorDetails Error details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithErrorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmErrorDetails` struct. -/// -@interface DBTEAMLOGEmmErrorDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmErrorDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmErrorDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmErrorDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmErrorDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmErrorDetails` object. -/// -+ (DBTEAMLOGEmmErrorDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmErrorType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmErrorType.h deleted file mode 100644 index 36e44697..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmErrorType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmErrorType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmErrorType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmErrorType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmErrorType` struct. -/// -@interface DBTEAMLOGEmmErrorTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmErrorType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmErrorType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmErrorType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmErrorType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmErrorType` object. -/// -+ (DBTEAMLOGEmmErrorType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRefreshAuthTokenDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRefreshAuthTokenDetails.h deleted file mode 100644 index a6f39b80..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRefreshAuthTokenDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRefreshAuthTokenDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRefreshAuthTokenDetails` struct. -/// -/// Refreshed auth token used for setting up EMM. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRefreshAuthTokenDetails` struct. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRefreshAuthTokenDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRefreshAuthTokenDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRefreshAuthTokenDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRefreshAuthTokenDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRefreshAuthTokenDetails` -/// object. -/// -+ (DBTEAMLOGEmmRefreshAuthTokenDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRefreshAuthTokenType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRefreshAuthTokenType.h deleted file mode 100644 index fd850540..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRefreshAuthTokenType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRefreshAuthTokenType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRefreshAuthTokenType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRefreshAuthTokenType` struct. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRefreshAuthTokenType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRefreshAuthTokenType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRefreshAuthTokenType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRefreshAuthTokenType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRefreshAuthTokenType` object. -/// -+ (DBTEAMLOGEmmRefreshAuthTokenType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRemoveExceptionDetails.h deleted file mode 100644 index 6b6a381c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRemoveExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRemoveExceptionDetails` struct. -/// -/// Removed members from EMM exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRemoveExceptionDetails` struct. -/// -@interface DBTEAMLOGEmmRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRemoveExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGEmmRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRemoveExceptionType.h deleted file mode 100644 index 3f54c63b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEmmRemoveExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRemoveExceptionType` struct. -/// -@interface DBTEAMLOGEmmRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRemoveExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRemoveExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRemoveExceptionType` object. -/// -+ (DBTEAMLOGEmmRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnabledDomainInvitesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnabledDomainInvitesDetails.h deleted file mode 100644 index 3cf7511f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnabledDomainInvitesDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnabledDomainInvitesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnabledDomainInvitesDetails` struct. -/// -/// Enabled domain invites. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnabledDomainInvitesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnabledDomainInvitesDetails` struct. -/// -@interface DBTEAMLOGEnabledDomainInvitesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnabledDomainInvitesDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnabledDomainInvitesDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnabledDomainInvitesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEnabledDomainInvitesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnabledDomainInvitesDetails` -/// object. -/// -+ (DBTEAMLOGEnabledDomainInvitesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnabledDomainInvitesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnabledDomainInvitesType.h deleted file mode 100644 index bbd796cc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnabledDomainInvitesType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnabledDomainInvitesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnabledDomainInvitesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnabledDomainInvitesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnabledDomainInvitesType` struct. -/// -@interface DBTEAMLOGEnabledDomainInvitesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnabledDomainInvitesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnabledDomainInvitesType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnabledDomainInvitesType *)instance; - -/// -/// Deserializes `DBTEAMLOGEnabledDomainInvitesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnabledDomainInvitesType` object. -/// -+ (DBTEAMLOGEnabledDomainInvitesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h deleted file mode 100644 index f2234ea8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails; -@class DBTEAMLOGFedExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionDeprecatedDetails` struct. -/// -/// Ended enterprise admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails : NSObject - -#pragma mark - Instance fields - -/// More information about the organization or team. -@property (nonatomic, readonly) DBTEAMLOGFedExtraDetails *federationExtraDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param federationExtraDetails More information about the organization or -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFederationExtraDetails:(DBTEAMLOGFedExtraDetails *)federationExtraDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `EndedEnterpriseAdminSessionDeprecatedDetails` struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h deleted file mode 100644 index 58ab2efd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionDeprecatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EndedEnterpriseAdminSessionDeprecatedType` -/// struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDetails.h deleted file mode 100644 index f767c788..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionDetails` struct. -/// -/// Ended enterprise admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EndedEnterpriseAdminSessionDetails` struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionType.h deleted file mode 100644 index e130cfc1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEndedEnterpriseAdminSessionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EndedEnterpriseAdminSessionType` struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionType *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEndedEnterpriseAdminSessionType` -/// object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnforceLinkPasswordPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnforceLinkPasswordPolicy.h deleted file mode 100644 index 071e5c98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnforceLinkPasswordPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnforceLinkPasswordPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnforceLinkPasswordPolicy` union. -/// -/// Policy for deciding whether password must be enforced when an externally -/// shared link is updated -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnforceLinkPasswordPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEnforceLinkPasswordPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGEnforceLinkPasswordPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEnforceLinkPasswordPolicyTag) { - /// (no description). - DBTEAMLOGEnforceLinkPasswordPolicyOptional, - - /// (no description). - DBTEAMLOGEnforceLinkPasswordPolicyRequired, - - /// (no description). - DBTEAMLOGEnforceLinkPasswordPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEnforceLinkPasswordPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "optional". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "required". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEnforceLinkPasswordPolicy` union. -/// -@interface DBTEAMLOGEnforceLinkPasswordPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnforceLinkPasswordPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnforceLinkPasswordPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnforceLinkPasswordPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnforceLinkPasswordPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGEnforceLinkPasswordPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnforceLinkPasswordPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnforceLinkPasswordPolicy` object. -/// -+ (DBTEAMLOGEnforceLinkPasswordPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnterpriseSettingsLockingDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnterpriseSettingsLockingDetails.h deleted file mode 100644 index fa14b0a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnterpriseSettingsLockingDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnterpriseSettingsLockingDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnterpriseSettingsLockingDetails` struct. -/// -/// Changed who can update a setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *teamName; - -/// Settings page name. -@property (nonatomic, readonly, copy) NSString *settingsPageName; - -/// Previous locked settings page state. -@property (nonatomic, readonly, copy) NSString *previousSettingsPageLockingState; - -/// New locked settings page state. -@property (nonatomic, readonly, copy) NSString *dNewSettingsPageLockingState; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName The secondary team name. -/// @param settingsPageName Settings page name. -/// @param previousSettingsPageLockingState Previous locked settings page state. -/// @param dNewSettingsPageLockingState New locked settings page state. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(NSString *)teamName - settingsPageName:(NSString *)settingsPageName - previousSettingsPageLockingState:(NSString *)previousSettingsPageLockingState - dNewSettingsPageLockingState:(NSString *)dNewSettingsPageLockingState; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnterpriseSettingsLockingDetails` struct. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnterpriseSettingsLockingDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEnterpriseSettingsLockingDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnterpriseSettingsLockingDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEnterpriseSettingsLockingDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnterpriseSettingsLockingDetails` -/// object. -/// -+ (DBTEAMLOGEnterpriseSettingsLockingDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnterpriseSettingsLockingType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnterpriseSettingsLockingType.h deleted file mode 100644 index d83cfffd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEnterpriseSettingsLockingType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnterpriseSettingsLockingType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnterpriseSettingsLockingType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnterpriseSettingsLockingType` struct. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnterpriseSettingsLockingType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnterpriseSettingsLockingType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnterpriseSettingsLockingType *)instance; - -/// -/// Deserializes `DBTEAMLOGEnterpriseSettingsLockingType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnterpriseSettingsLockingType` -/// object. -/// -+ (DBTEAMLOGEnterpriseSettingsLockingType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventCategory.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventCategory.h deleted file mode 100644 index 419840b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventCategory.h +++ /dev/null @@ -1,564 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEventCategory; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventCategory` union. -/// -/// Category of events in event audit log. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventCategory : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventCategoryTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventCategory` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventCategoryTag) { - /// Events that involve team related alerts. - DBTEAMLOGEventCategoryAdminAlerting, - - /// Events that apply to management of linked apps. - DBTEAMLOGEventCategoryApps, - - /// Events that have to do with comments on files and Paper documents. - DBTEAMLOGEventCategoryComments, - - /// Events that involve data governance actions - DBTEAMLOGEventCategoryDataGovernance, - - /// Events that apply to linked devices on mobile, desktop and Web - /// platforms. - DBTEAMLOGEventCategoryDevices, - - /// Events that involve domain management feature: domain verification, - /// invite enforcement and account capture. - DBTEAMLOGEventCategoryDomains, - - /// Events that involve encryption. - DBTEAMLOGEventCategoryEncryption, - - /// Events that have to do with filesystem operations on files and folders: - /// copy, move, delete, etc. - DBTEAMLOGEventCategoryFileOperations, - - /// Events that apply to the file requests feature. - DBTEAMLOGEventCategoryFileRequests, - - /// Events that involve group management. - DBTEAMLOGEventCategoryGroups, - - /// Events that involve users signing in to or out of Dropbox. - DBTEAMLOGEventCategoryLogins, - - /// Events that involve team member management. - DBTEAMLOGEventCategoryMembers, - - /// Events that apply to Dropbox Paper. - DBTEAMLOGEventCategoryPaper, - - /// Events that involve using, changing or resetting passwords. - DBTEAMLOGEventCategoryPasswords, - - /// Events that concern generation of admin reports, including team activity - /// and device usage. - DBTEAMLOGEventCategoryReports, - - /// Events that apply to all types of sharing and collaboration. - DBTEAMLOGEventCategorySharing, - - /// Events that apply to Dropbox Showcase. - DBTEAMLOGEventCategoryShowcase, - - /// Events that involve using or configuring single sign-on as well as - /// administrative policies concerning single sign-on. - DBTEAMLOGEventCategorySso, - - /// Events that involve team folder management. - DBTEAMLOGEventCategoryTeamFolders, - - /// Events that involve a change in team-wide policies. - DBTEAMLOGEventCategoryTeamPolicies, - - /// Events that involve a change in the team profile. - DBTEAMLOGEventCategoryTeamProfile, - - /// Events that involve using or configuring two factor authentication as - /// well as administrative policies concerning two factor authentication. - DBTEAMLOGEventCategoryTfa, - - /// Events that apply to cross-team trust establishment. - DBTEAMLOGEventCategoryTrustedTeams, - - /// (no description). - DBTEAMLOGEventCategoryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventCategoryTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admin_alerting". -/// -/// Description of the "admin_alerting" tag state: Events that involve team -/// related alerts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlerting; - -/// -/// Initializes union class with tag state of "apps". -/// -/// Description of the "apps" tag state: Events that apply to management of -/// linked apps. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps; - -/// -/// Initializes union class with tag state of "comments". -/// -/// Description of the "comments" tag state: Events that have to do with -/// comments on files and Paper documents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComments; - -/// -/// Initializes union class with tag state of "data_governance". -/// -/// Description of the "data_governance" tag state: Events that involve data -/// governance actions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataGovernance; - -/// -/// Initializes union class with tag state of "devices". -/// -/// Description of the "devices" tag state: Events that apply to linked devices -/// on mobile, desktop and Web platforms. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices; - -/// -/// Initializes union class with tag state of "domains". -/// -/// Description of the "domains" tag state: Events that involve domain -/// management feature: domain verification, invite enforcement and account -/// capture. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains; - -/// -/// Initializes union class with tag state of "encryption". -/// -/// Description of the "encryption" tag state: Events that involve encryption. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEncryption; - -/// -/// Initializes union class with tag state of "file_operations". -/// -/// Description of the "file_operations" tag state: Events that have to do with -/// filesystem operations on files and folders: copy, move, delete, etc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileOperations; - -/// -/// Initializes union class with tag state of "file_requests". -/// -/// Description of the "file_requests" tag state: Events that apply to the file -/// requests feature. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests; - -/// -/// Initializes union class with tag state of "groups". -/// -/// Description of the "groups" tag state: Events that involve group management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroups; - -/// -/// Initializes union class with tag state of "logins". -/// -/// Description of the "logins" tag state: Events that involve users signing in -/// to or out of Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogins; - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Events that involve team member -/// management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "paper". -/// -/// Description of the "paper" tag state: Events that apply to Dropbox Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaper; - -/// -/// Initializes union class with tag state of "passwords". -/// -/// Description of the "passwords" tag state: Events that involve using, -/// changing or resetting passwords. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswords; - -/// -/// Initializes union class with tag state of "reports". -/// -/// Description of the "reports" tag state: Events that concern generation of -/// admin reports, including team activity and device usage. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReports; - -/// -/// Initializes union class with tag state of "sharing". -/// -/// Description of the "sharing" tag state: Events that apply to all types of -/// sharing and collaboration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharing; - -/// -/// Initializes union class with tag state of "showcase". -/// -/// Description of the "showcase" tag state: Events that apply to Dropbox -/// Showcase. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcase; - -/// -/// Initializes union class with tag state of "sso". -/// -/// Description of the "sso" tag state: Events that involve using or configuring -/// single sign-on as well as administrative policies concerning single sign-on. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSso; - -/// -/// Initializes union class with tag state of "team_folders". -/// -/// Description of the "team_folders" tag state: Events that involve team folder -/// management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolders; - -/// -/// Initializes union class with tag state of "team_policies". -/// -/// Description of the "team_policies" tag state: Events that involve a change -/// in team-wide policies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicies; - -/// -/// Initializes union class with tag state of "team_profile". -/// -/// Description of the "team_profile" tag state: Events that involve a change in -/// the team profile. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfile; - -/// -/// Initializes union class with tag state of "tfa". -/// -/// Description of the "tfa" tag state: Events that involve using or configuring -/// two factor authentication as well as administrative policies concerning two -/// factor authentication. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfa; - -/// -/// Initializes union class with tag state of "trusted_teams". -/// -/// Description of the "trusted_teams" tag state: Events that apply to -/// cross-team trust establishment. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedTeams; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admin_alerting". -/// -/// @return Whether the union's current tag state has value "admin_alerting". -/// -- (BOOL)isAdminAlerting; - -/// -/// Retrieves whether the union's current tag state has value "apps". -/// -/// @return Whether the union's current tag state has value "apps". -/// -- (BOOL)isApps; - -/// -/// Retrieves whether the union's current tag state has value "comments". -/// -/// @return Whether the union's current tag state has value "comments". -/// -- (BOOL)isComments; - -/// -/// Retrieves whether the union's current tag state has value "data_governance". -/// -/// @return Whether the union's current tag state has value "data_governance". -/// -- (BOOL)isDataGovernance; - -/// -/// Retrieves whether the union's current tag state has value "devices". -/// -/// @return Whether the union's current tag state has value "devices". -/// -- (BOOL)isDevices; - -/// -/// Retrieves whether the union's current tag state has value "domains". -/// -/// @return Whether the union's current tag state has value "domains". -/// -- (BOOL)isDomains; - -/// -/// Retrieves whether the union's current tag state has value "encryption". -/// -/// @return Whether the union's current tag state has value "encryption". -/// -- (BOOL)isEncryption; - -/// -/// Retrieves whether the union's current tag state has value "file_operations". -/// -/// @return Whether the union's current tag state has value "file_operations". -/// -- (BOOL)isFileOperations; - -/// -/// Retrieves whether the union's current tag state has value "file_requests". -/// -/// @return Whether the union's current tag state has value "file_requests". -/// -- (BOOL)isFileRequests; - -/// -/// Retrieves whether the union's current tag state has value "groups". -/// -/// @return Whether the union's current tag state has value "groups". -/// -- (BOOL)isGroups; - -/// -/// Retrieves whether the union's current tag state has value "logins". -/// -/// @return Whether the union's current tag state has value "logins". -/// -- (BOOL)isLogins; - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "paper". -/// -/// @return Whether the union's current tag state has value "paper". -/// -- (BOOL)isPaper; - -/// -/// Retrieves whether the union's current tag state has value "passwords". -/// -/// @return Whether the union's current tag state has value "passwords". -/// -- (BOOL)isPasswords; - -/// -/// Retrieves whether the union's current tag state has value "reports". -/// -/// @return Whether the union's current tag state has value "reports". -/// -- (BOOL)isReports; - -/// -/// Retrieves whether the union's current tag state has value "sharing". -/// -/// @return Whether the union's current tag state has value "sharing". -/// -- (BOOL)isSharing; - -/// -/// Retrieves whether the union's current tag state has value "showcase". -/// -/// @return Whether the union's current tag state has value "showcase". -/// -- (BOOL)isShowcase; - -/// -/// Retrieves whether the union's current tag state has value "sso". -/// -/// @return Whether the union's current tag state has value "sso". -/// -- (BOOL)isSso; - -/// -/// Retrieves whether the union's current tag state has value "team_folders". -/// -/// @return Whether the union's current tag state has value "team_folders". -/// -- (BOOL)isTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "team_policies". -/// -/// @return Whether the union's current tag state has value "team_policies". -/// -- (BOOL)isTeamPolicies; - -/// -/// Retrieves whether the union's current tag state has value "team_profile". -/// -/// @return Whether the union's current tag state has value "team_profile". -/// -- (BOOL)isTeamProfile; - -/// -/// Retrieves whether the union's current tag state has value "tfa". -/// -/// @return Whether the union's current tag state has value "tfa". -/// -- (BOOL)isTfa; - -/// -/// Retrieves whether the union's current tag state has value "trusted_teams". -/// -/// @return Whether the union's current tag state has value "trusted_teams". -/// -- (BOOL)isTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventCategory` union. -/// -@interface DBTEAMLOGEventCategorySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventCategory` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventCategory` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventCategory` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventCategory *)instance; - -/// -/// Deserializes `DBTEAMLOGEventCategory` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventCategory` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventCategory` object. -/// -+ (DBTEAMLOGEventCategory *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventDetails.h deleted file mode 100644 index 832cd68b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventDetails.h +++ /dev/null @@ -1,16145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangeAvailabilityDetails; -@class DBTEAMLOGAccountCaptureChangePolicyDetails; -@class DBTEAMLOGAccountCaptureMigrateAccountDetails; -@class DBTEAMLOGAccountCaptureNotificationEmailsSentDetails; -@class DBTEAMLOGAccountCaptureRelinquishAccountDetails; -@class DBTEAMLOGAccountLockOrUnlockedDetails; -@class DBTEAMLOGAdminAlertingAlertStateChangedDetails; -@class DBTEAMLOGAdminAlertingChangedAlertConfigDetails; -@class DBTEAMLOGAdminAlertingTriggeredAlertDetails; -@class DBTEAMLOGAdminEmailRemindersChangedDetails; -@class DBTEAMLOGAllowDownloadDisabledDetails; -@class DBTEAMLOGAllowDownloadEnabledDetails; -@class DBTEAMLOGAppBlockedByPermissionsDetails; -@class DBTEAMLOGAppLinkTeamDetails; -@class DBTEAMLOGAppLinkUserDetails; -@class DBTEAMLOGAppPermissionsChangedDetails; -@class DBTEAMLOGAppUnlinkTeamDetails; -@class DBTEAMLOGAppUnlinkUserDetails; -@class DBTEAMLOGApplyNamingConventionDetails; -@class DBTEAMLOGBackupAdminInvitationSentDetails; -@class DBTEAMLOGBackupInvitationOpenedDetails; -@class DBTEAMLOGBinderAddPageDetails; -@class DBTEAMLOGBinderAddSectionDetails; -@class DBTEAMLOGBinderRemovePageDetails; -@class DBTEAMLOGBinderRemoveSectionDetails; -@class DBTEAMLOGBinderRenamePageDetails; -@class DBTEAMLOGBinderRenameSectionDetails; -@class DBTEAMLOGBinderReorderPageDetails; -@class DBTEAMLOGBinderReorderSectionDetails; -@class DBTEAMLOGCameraUploadsPolicyChangedDetails; -@class DBTEAMLOGCaptureTranscriptPolicyChangedDetails; -@class DBTEAMLOGChangedEnterpriseAdminRoleDetails; -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails; -@class DBTEAMLOGClassificationChangePolicyDetails; -@class DBTEAMLOGClassificationCreateReportDetails; -@class DBTEAMLOGClassificationCreateReportFailDetails; -@class DBTEAMLOGCollectionShareDetails; -@class DBTEAMLOGComputerBackupPolicyChangedDetails; -@class DBTEAMLOGContentAdministrationPolicyChangedDetails; -@class DBTEAMLOGCreateFolderDetails; -@class DBTEAMLOGCreateTeamInviteLinkDetails; -@class DBTEAMLOGDataPlacementRestrictionChangePolicyDetails; -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails; -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails; -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails; -@class DBTEAMLOGDeleteTeamInviteLinkDetails; -@class DBTEAMLOGDeviceApprovalsAddExceptionDetails; -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails; -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails; -@class DBTEAMLOGDeviceApprovalsChangeOverageActionDetails; -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails; -@class DBTEAMLOGDeviceApprovalsRemoveExceptionDetails; -@class DBTEAMLOGDeviceChangeIpDesktopDetails; -@class DBTEAMLOGDeviceChangeIpMobileDetails; -@class DBTEAMLOGDeviceChangeIpWebDetails; -@class DBTEAMLOGDeviceDeleteOnUnlinkFailDetails; -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails; -@class DBTEAMLOGDeviceLinkFailDetails; -@class DBTEAMLOGDeviceLinkSuccessDetails; -@class DBTEAMLOGDeviceManagementDisabledDetails; -@class DBTEAMLOGDeviceManagementEnabledDetails; -@class DBTEAMLOGDeviceSyncBackupStatusChangedDetails; -@class DBTEAMLOGDeviceUnlinkDetails; -@class DBTEAMLOGDirectoryRestrictionsAddMembersDetails; -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails; -@class DBTEAMLOGDisabledDomainInvitesDetails; -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails; -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails; -@class DBTEAMLOGDomainInvitesEmailExistingUsersDetails; -@class DBTEAMLOGDomainInvitesRequestToJoinTeamDetails; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails; -@class DBTEAMLOGDomainVerificationAddDomainFailDetails; -@class DBTEAMLOGDomainVerificationAddDomainSuccessDetails; -@class DBTEAMLOGDomainVerificationRemoveDomainDetails; -@class DBTEAMLOGDropboxPasswordsExportedDetails; -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails; -@class DBTEAMLOGDropboxPasswordsPolicyChangedDetails; -@class DBTEAMLOGEmailIngestPolicyChangedDetails; -@class DBTEAMLOGEmailIngestReceiveFileDetails; -@class DBTEAMLOGEmmAddExceptionDetails; -@class DBTEAMLOGEmmChangePolicyDetails; -@class DBTEAMLOGEmmCreateExceptionsReportDetails; -@class DBTEAMLOGEmmCreateUsageReportDetails; -@class DBTEAMLOGEmmErrorDetails; -@class DBTEAMLOGEmmRefreshAuthTokenDetails; -@class DBTEAMLOGEmmRemoveExceptionDetails; -@class DBTEAMLOGEnabledDomainInvitesDetails; -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails; -@class DBTEAMLOGEndedEnterpriseAdminSessionDetails; -@class DBTEAMLOGEnterpriseSettingsLockingDetails; -@class DBTEAMLOGEventDetails; -@class DBTEAMLOGExportMembersReportDetails; -@class DBTEAMLOGExportMembersReportFailDetails; -@class DBTEAMLOGExtendedVersionHistoryChangePolicyDetails; -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails; -@class DBTEAMLOGExternalDriveBackupPolicyChangedDetails; -@class DBTEAMLOGExternalDriveBackupStatusChangedDetails; -@class DBTEAMLOGExternalSharingCreateReportDetails; -@class DBTEAMLOGExternalSharingReportFailedDetails; -@class DBTEAMLOGFileAddCommentDetails; -@class DBTEAMLOGFileAddDetails; -@class DBTEAMLOGFileAddFromAutomationDetails; -@class DBTEAMLOGFileChangeCommentSubscriptionDetails; -@class DBTEAMLOGFileCommentsChangePolicyDetails; -@class DBTEAMLOGFileCopyDetails; -@class DBTEAMLOGFileDeleteCommentDetails; -@class DBTEAMLOGFileDeleteDetails; -@class DBTEAMLOGFileDownloadDetails; -@class DBTEAMLOGFileEditCommentDetails; -@class DBTEAMLOGFileEditDetails; -@class DBTEAMLOGFileGetCopyReferenceDetails; -@class DBTEAMLOGFileLikeCommentDetails; -@class DBTEAMLOGFileLockingLockStatusChangedDetails; -@class DBTEAMLOGFileLockingPolicyChangedDetails; -@class DBTEAMLOGFileMoveDetails; -@class DBTEAMLOGFilePermanentlyDeleteDetails; -@class DBTEAMLOGFilePreviewDetails; -@class DBTEAMLOGFileProviderMigrationPolicyChangedDetails; -@class DBTEAMLOGFileRenameDetails; -@class DBTEAMLOGFileRequestChangeDetails; -@class DBTEAMLOGFileRequestCloseDetails; -@class DBTEAMLOGFileRequestCreateDetails; -@class DBTEAMLOGFileRequestDeleteDetails; -@class DBTEAMLOGFileRequestReceiveFileDetails; -@class DBTEAMLOGFileRequestsChangePolicyDetails; -@class DBTEAMLOGFileRequestsEmailsEnabledDetails; -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails; -@class DBTEAMLOGFileResolveCommentDetails; -@class DBTEAMLOGFileRestoreDetails; -@class DBTEAMLOGFileRevertDetails; -@class DBTEAMLOGFileRollbackChangesDetails; -@class DBTEAMLOGFileSaveCopyReferenceDetails; -@class DBTEAMLOGFileTransfersFileAddDetails; -@class DBTEAMLOGFileTransfersPolicyChangedDetails; -@class DBTEAMLOGFileTransfersTransferDeleteDetails; -@class DBTEAMLOGFileTransfersTransferDownloadDetails; -@class DBTEAMLOGFileTransfersTransferSendDetails; -@class DBTEAMLOGFileTransfersTransferViewDetails; -@class DBTEAMLOGFileUnlikeCommentDetails; -@class DBTEAMLOGFileUnresolveCommentDetails; -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails; -@class DBTEAMLOGFolderOverviewDescriptionChangedDetails; -@class DBTEAMLOGFolderOverviewItemPinnedDetails; -@class DBTEAMLOGFolderOverviewItemUnpinnedDetails; -@class DBTEAMLOGGoogleSsoChangePolicyDetails; -@class DBTEAMLOGGovernancePolicyAddFolderFailedDetails; -@class DBTEAMLOGGovernancePolicyAddFoldersDetails; -@class DBTEAMLOGGovernancePolicyContentDisposedDetails; -@class DBTEAMLOGGovernancePolicyCreateDetails; -@class DBTEAMLOGGovernancePolicyDeleteDetails; -@class DBTEAMLOGGovernancePolicyEditDetailsDetails; -@class DBTEAMLOGGovernancePolicyEditDurationDetails; -@class DBTEAMLOGGovernancePolicyExportCreatedDetails; -@class DBTEAMLOGGovernancePolicyExportRemovedDetails; -@class DBTEAMLOGGovernancePolicyRemoveFoldersDetails; -@class DBTEAMLOGGovernancePolicyReportCreatedDetails; -@class DBTEAMLOGGovernancePolicyZipPartDownloadedDetails; -@class DBTEAMLOGGroupAddExternalIdDetails; -@class DBTEAMLOGGroupAddMemberDetails; -@class DBTEAMLOGGroupChangeExternalIdDetails; -@class DBTEAMLOGGroupChangeManagementTypeDetails; -@class DBTEAMLOGGroupChangeMemberRoleDetails; -@class DBTEAMLOGGroupCreateDetails; -@class DBTEAMLOGGroupDeleteDetails; -@class DBTEAMLOGGroupDescriptionUpdatedDetails; -@class DBTEAMLOGGroupJoinPolicyUpdatedDetails; -@class DBTEAMLOGGroupMovedDetails; -@class DBTEAMLOGGroupRemoveExternalIdDetails; -@class DBTEAMLOGGroupRemoveMemberDetails; -@class DBTEAMLOGGroupRenameDetails; -@class DBTEAMLOGGroupUserManagementChangePolicyDetails; -@class DBTEAMLOGGuestAdminChangeStatusDetails; -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails; -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails; -@class DBTEAMLOGIntegrationConnectedDetails; -@class DBTEAMLOGIntegrationDisconnectedDetails; -@class DBTEAMLOGIntegrationPolicyChangedDetails; -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails; -@class DBTEAMLOGLegalHoldsActivateAHoldDetails; -@class DBTEAMLOGLegalHoldsAddMembersDetails; -@class DBTEAMLOGLegalHoldsChangeHoldDetailsDetails; -@class DBTEAMLOGLegalHoldsChangeHoldNameDetails; -@class DBTEAMLOGLegalHoldsExportAHoldDetails; -@class DBTEAMLOGLegalHoldsExportCancelledDetails; -@class DBTEAMLOGLegalHoldsExportDownloadedDetails; -@class DBTEAMLOGLegalHoldsExportRemovedDetails; -@class DBTEAMLOGLegalHoldsReleaseAHoldDetails; -@class DBTEAMLOGLegalHoldsRemoveMembersDetails; -@class DBTEAMLOGLegalHoldsReportAHoldDetails; -@class DBTEAMLOGLoginFailDetails; -@class DBTEAMLOGLoginSuccessDetails; -@class DBTEAMLOGLogoutDetails; -@class DBTEAMLOGMemberAddExternalIdDetails; -@class DBTEAMLOGMemberAddNameDetails; -@class DBTEAMLOGMemberChangeAdminRoleDetails; -@class DBTEAMLOGMemberChangeEmailDetails; -@class DBTEAMLOGMemberChangeExternalIdDetails; -@class DBTEAMLOGMemberChangeMembershipTypeDetails; -@class DBTEAMLOGMemberChangeNameDetails; -@class DBTEAMLOGMemberChangeResellerRoleDetails; -@class DBTEAMLOGMemberChangeStatusDetails; -@class DBTEAMLOGMemberDeleteManualContactsDetails; -@class DBTEAMLOGMemberDeleteProfilePhotoDetails; -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails; -@class DBTEAMLOGMemberRemoveExternalIdDetails; -@class DBTEAMLOGMemberRequestsChangePolicyDetails; -@class DBTEAMLOGMemberSendInvitePolicyChangedDetails; -@class DBTEAMLOGMemberSetProfilePhotoDetails; -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails; -@class DBTEAMLOGMemberSpaceLimitsAddExceptionDetails; -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails; -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails; -@class DBTEAMLOGMemberSpaceLimitsChangePolicyDetails; -@class DBTEAMLOGMemberSpaceLimitsChangeStatusDetails; -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails; -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails; -@class DBTEAMLOGMemberSuggestDetails; -@class DBTEAMLOGMemberSuggestionsChangePolicyDetails; -@class DBTEAMLOGMemberTransferAccountContentsDetails; -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails; -@class DBTEAMLOGMissingDetails; -@class DBTEAMLOGNetworkControlChangePolicyDetails; -@class DBTEAMLOGNoExpirationLinkGenCreateReportDetails; -@class DBTEAMLOGNoExpirationLinkGenReportFailedDetails; -@class DBTEAMLOGNoPasswordLinkGenCreateReportDetails; -@class DBTEAMLOGNoPasswordLinkGenReportFailedDetails; -@class DBTEAMLOGNoPasswordLinkViewCreateReportDetails; -@class DBTEAMLOGNoPasswordLinkViewReportFailedDetails; -@class DBTEAMLOGNoteAclInviteOnlyDetails; -@class DBTEAMLOGNoteAclLinkDetails; -@class DBTEAMLOGNoteAclTeamLinkDetails; -@class DBTEAMLOGNoteShareReceiveDetails; -@class DBTEAMLOGNoteSharedDetails; -@class DBTEAMLOGObjectLabelAddedDetails; -@class DBTEAMLOGObjectLabelRemovedDetails; -@class DBTEAMLOGObjectLabelUpdatedValueDetails; -@class DBTEAMLOGOpenNoteSharedDetails; -@class DBTEAMLOGOrganizeFolderWithTidyDetails; -@class DBTEAMLOGOutdatedLinkViewCreateReportDetails; -@class DBTEAMLOGOutdatedLinkViewReportFailedDetails; -@class DBTEAMLOGPaperAdminExportStartDetails; -@class DBTEAMLOGPaperChangeDeploymentPolicyDetails; -@class DBTEAMLOGPaperChangeMemberLinkPolicyDetails; -@class DBTEAMLOGPaperChangeMemberPolicyDetails; -@class DBTEAMLOGPaperChangePolicyDetails; -@class DBTEAMLOGPaperContentAddMemberDetails; -@class DBTEAMLOGPaperContentAddToFolderDetails; -@class DBTEAMLOGPaperContentArchiveDetails; -@class DBTEAMLOGPaperContentCreateDetails; -@class DBTEAMLOGPaperContentPermanentlyDeleteDetails; -@class DBTEAMLOGPaperContentRemoveFromFolderDetails; -@class DBTEAMLOGPaperContentRemoveMemberDetails; -@class DBTEAMLOGPaperContentRenameDetails; -@class DBTEAMLOGPaperContentRestoreDetails; -@class DBTEAMLOGPaperDefaultFolderPolicyChangedDetails; -@class DBTEAMLOGPaperDesktopPolicyChangedDetails; -@class DBTEAMLOGPaperDocAddCommentDetails; -@class DBTEAMLOGPaperDocChangeMemberRoleDetails; -@class DBTEAMLOGPaperDocChangeSharingPolicyDetails; -@class DBTEAMLOGPaperDocChangeSubscriptionDetails; -@class DBTEAMLOGPaperDocDeleteCommentDetails; -@class DBTEAMLOGPaperDocDeletedDetails; -@class DBTEAMLOGPaperDocDownloadDetails; -@class DBTEAMLOGPaperDocEditCommentDetails; -@class DBTEAMLOGPaperDocEditDetails; -@class DBTEAMLOGPaperDocFollowedDetails; -@class DBTEAMLOGPaperDocMentionDetails; -@class DBTEAMLOGPaperDocOwnershipChangedDetails; -@class DBTEAMLOGPaperDocRequestAccessDetails; -@class DBTEAMLOGPaperDocResolveCommentDetails; -@class DBTEAMLOGPaperDocRevertDetails; -@class DBTEAMLOGPaperDocSlackShareDetails; -@class DBTEAMLOGPaperDocTeamInviteDetails; -@class DBTEAMLOGPaperDocTrashedDetails; -@class DBTEAMLOGPaperDocUnresolveCommentDetails; -@class DBTEAMLOGPaperDocUntrashedDetails; -@class DBTEAMLOGPaperDocViewDetails; -@class DBTEAMLOGPaperEnabledUsersGroupAdditionDetails; -@class DBTEAMLOGPaperEnabledUsersGroupRemovalDetails; -@class DBTEAMLOGPaperExternalViewAllowDetails; -@class DBTEAMLOGPaperExternalViewDefaultTeamDetails; -@class DBTEAMLOGPaperExternalViewForbidDetails; -@class DBTEAMLOGPaperFolderChangeSubscriptionDetails; -@class DBTEAMLOGPaperFolderDeletedDetails; -@class DBTEAMLOGPaperFolderFollowedDetails; -@class DBTEAMLOGPaperFolderTeamInviteDetails; -@class DBTEAMLOGPaperPublishedLinkChangePermissionDetails; -@class DBTEAMLOGPaperPublishedLinkCreateDetails; -@class DBTEAMLOGPaperPublishedLinkDisabledDetails; -@class DBTEAMLOGPaperPublishedLinkViewDetails; -@class DBTEAMLOGPasswordChangeDetails; -@class DBTEAMLOGPasswordResetAllDetails; -@class DBTEAMLOGPasswordResetDetails; -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails; -@class DBTEAMLOGPendingSecondaryEmailAddedDetails; -@class DBTEAMLOGPermanentDeleteChangePolicyDetails; -@class DBTEAMLOGRansomwareAlertCreateReportDetails; -@class DBTEAMLOGRansomwareAlertCreateReportFailedDetails; -@class DBTEAMLOGRansomwareRestoreProcessCompletedDetails; -@class DBTEAMLOGRansomwareRestoreProcessStartedDetails; -@class DBTEAMLOGReplayFileDeleteDetails; -@class DBTEAMLOGReplayFileSharedLinkCreatedDetails; -@class DBTEAMLOGReplayFileSharedLinkModifiedDetails; -@class DBTEAMLOGReplayProjectTeamAddDetails; -@class DBTEAMLOGReplayProjectTeamDeleteDetails; -@class DBTEAMLOGResellerSupportChangePolicyDetails; -@class DBTEAMLOGResellerSupportSessionEndDetails; -@class DBTEAMLOGResellerSupportSessionStartDetails; -@class DBTEAMLOGRewindFolderDetails; -@class DBTEAMLOGRewindPolicyChangedDetails; -@class DBTEAMLOGSecondaryEmailDeletedDetails; -@class DBTEAMLOGSecondaryEmailVerifiedDetails; -@class DBTEAMLOGSecondaryMailsPolicyChangedDetails; -@class DBTEAMLOGSendForSignaturePolicyChangedDetails; -@class DBTEAMLOGSfAddGroupDetails; -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails; -@class DBTEAMLOGSfExternalInviteWarnDetails; -@class DBTEAMLOGSfFbInviteChangeRoleDetails; -@class DBTEAMLOGSfFbInviteDetails; -@class DBTEAMLOGSfFbUninviteDetails; -@class DBTEAMLOGSfInviteGroupDetails; -@class DBTEAMLOGSfTeamGrantAccessDetails; -@class DBTEAMLOGSfTeamInviteChangeRoleDetails; -@class DBTEAMLOGSfTeamInviteDetails; -@class DBTEAMLOGSfTeamJoinDetails; -@class DBTEAMLOGSfTeamJoinFromOobLinkDetails; -@class DBTEAMLOGSfTeamUninviteDetails; -@class DBTEAMLOGSharedContentAddInviteesDetails; -@class DBTEAMLOGSharedContentAddLinkExpiryDetails; -@class DBTEAMLOGSharedContentAddLinkPasswordDetails; -@class DBTEAMLOGSharedContentAddMemberDetails; -@class DBTEAMLOGSharedContentChangeDownloadsPolicyDetails; -@class DBTEAMLOGSharedContentChangeInviteeRoleDetails; -@class DBTEAMLOGSharedContentChangeLinkAudienceDetails; -@class DBTEAMLOGSharedContentChangeLinkExpiryDetails; -@class DBTEAMLOGSharedContentChangeLinkPasswordDetails; -@class DBTEAMLOGSharedContentChangeMemberRoleDetails; -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails; -@class DBTEAMLOGSharedContentClaimInvitationDetails; -@class DBTEAMLOGSharedContentCopyDetails; -@class DBTEAMLOGSharedContentDownloadDetails; -@class DBTEAMLOGSharedContentRelinquishMembershipDetails; -@class DBTEAMLOGSharedContentRemoveInviteesDetails; -@class DBTEAMLOGSharedContentRemoveLinkExpiryDetails; -@class DBTEAMLOGSharedContentRemoveLinkPasswordDetails; -@class DBTEAMLOGSharedContentRemoveMemberDetails; -@class DBTEAMLOGSharedContentRequestAccessDetails; -@class DBTEAMLOGSharedContentRestoreInviteesDetails; -@class DBTEAMLOGSharedContentRestoreMemberDetails; -@class DBTEAMLOGSharedContentUnshareDetails; -@class DBTEAMLOGSharedContentViewDetails; -@class DBTEAMLOGSharedFolderChangeLinkPolicyDetails; -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails; -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails; -@class DBTEAMLOGSharedFolderChangeMembersPolicyDetails; -@class DBTEAMLOGSharedFolderCreateDetails; -@class DBTEAMLOGSharedFolderDeclineInvitationDetails; -@class DBTEAMLOGSharedFolderMountDetails; -@class DBTEAMLOGSharedFolderNestDetails; -@class DBTEAMLOGSharedFolderTransferOwnershipDetails; -@class DBTEAMLOGSharedFolderUnmountDetails; -@class DBTEAMLOGSharedLinkAddExpiryDetails; -@class DBTEAMLOGSharedLinkChangeExpiryDetails; -@class DBTEAMLOGSharedLinkChangeVisibilityDetails; -@class DBTEAMLOGSharedLinkCopyDetails; -@class DBTEAMLOGSharedLinkCreateDetails; -@class DBTEAMLOGSharedLinkDisableDetails; -@class DBTEAMLOGSharedLinkDownloadDetails; -@class DBTEAMLOGSharedLinkRemoveExpiryDetails; -@class DBTEAMLOGSharedLinkSettingsAddExpirationDetails; -@class DBTEAMLOGSharedLinkSettingsAddPasswordDetails; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails; -@class DBTEAMLOGSharedLinkSettingsChangeAudienceDetails; -@class DBTEAMLOGSharedLinkSettingsChangeExpirationDetails; -@class DBTEAMLOGSharedLinkSettingsChangePasswordDetails; -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails; -@class DBTEAMLOGSharedLinkSettingsRemovePasswordDetails; -@class DBTEAMLOGSharedLinkShareDetails; -@class DBTEAMLOGSharedLinkViewDetails; -@class DBTEAMLOGSharedNoteOpenedDetails; -@class DBTEAMLOGSharingChangeFolderJoinPolicyDetails; -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails; -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails; -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails; -@class DBTEAMLOGSharingChangeLinkPolicyDetails; -@class DBTEAMLOGSharingChangeMemberPolicyDetails; -@class DBTEAMLOGShmodelDisableDownloadsDetails; -@class DBTEAMLOGShmodelEnableDownloadsDetails; -@class DBTEAMLOGShmodelGroupShareDetails; -@class DBTEAMLOGShowcaseAccessGrantedDetails; -@class DBTEAMLOGShowcaseAddMemberDetails; -@class DBTEAMLOGShowcaseArchivedDetails; -@class DBTEAMLOGShowcaseChangeDownloadPolicyDetails; -@class DBTEAMLOGShowcaseChangeEnabledPolicyDetails; -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails; -@class DBTEAMLOGShowcaseCreatedDetails; -@class DBTEAMLOGShowcaseDeleteCommentDetails; -@class DBTEAMLOGShowcaseEditCommentDetails; -@class DBTEAMLOGShowcaseEditedDetails; -@class DBTEAMLOGShowcaseFileAddedDetails; -@class DBTEAMLOGShowcaseFileDownloadDetails; -@class DBTEAMLOGShowcaseFileRemovedDetails; -@class DBTEAMLOGShowcaseFileViewDetails; -@class DBTEAMLOGShowcasePermanentlyDeletedDetails; -@class DBTEAMLOGShowcasePostCommentDetails; -@class DBTEAMLOGShowcaseRemoveMemberDetails; -@class DBTEAMLOGShowcaseRenamedDetails; -@class DBTEAMLOGShowcaseRequestAccessDetails; -@class DBTEAMLOGShowcaseResolveCommentDetails; -@class DBTEAMLOGShowcaseRestoredDetails; -@class DBTEAMLOGShowcaseTrashedDeprecatedDetails; -@class DBTEAMLOGShowcaseTrashedDetails; -@class DBTEAMLOGShowcaseUnresolveCommentDetails; -@class DBTEAMLOGShowcaseUntrashedDeprecatedDetails; -@class DBTEAMLOGShowcaseUntrashedDetails; -@class DBTEAMLOGShowcaseViewDetails; -@class DBTEAMLOGSignInAsSessionEndDetails; -@class DBTEAMLOGSignInAsSessionStartDetails; -@class DBTEAMLOGSmartSyncChangePolicyDetails; -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails; -@class DBTEAMLOGSmartSyncNotOptOutDetails; -@class DBTEAMLOGSmartSyncOptOutDetails; -@class DBTEAMLOGSmarterSmartSyncPolicyChangedDetails; -@class DBTEAMLOGSsoAddCertDetails; -@class DBTEAMLOGSsoAddLoginUrlDetails; -@class DBTEAMLOGSsoAddLogoutUrlDetails; -@class DBTEAMLOGSsoChangeCertDetails; -@class DBTEAMLOGSsoChangeLoginUrlDetails; -@class DBTEAMLOGSsoChangeLogoutUrlDetails; -@class DBTEAMLOGSsoChangePolicyDetails; -@class DBTEAMLOGSsoChangeSamlIdentityModeDetails; -@class DBTEAMLOGSsoErrorDetails; -@class DBTEAMLOGSsoRemoveCertDetails; -@class DBTEAMLOGSsoRemoveLoginUrlDetails; -@class DBTEAMLOGSsoRemoveLogoutUrlDetails; -@class DBTEAMLOGStartedEnterpriseAdminSessionDetails; -@class DBTEAMLOGTeamActivityCreateReportDetails; -@class DBTEAMLOGTeamActivityCreateReportFailDetails; -@class DBTEAMLOGTeamBrandingPolicyChangedDetails; -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails; -@class DBTEAMLOGTeamEncryptionKeyCreateKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyDisableKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyEnableKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyRotateKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails; -@class DBTEAMLOGTeamExtensionsPolicyChangedDetails; -@class DBTEAMLOGTeamFolderChangeStatusDetails; -@class DBTEAMLOGTeamFolderCreateDetails; -@class DBTEAMLOGTeamFolderDowngradeDetails; -@class DBTEAMLOGTeamFolderPermanentlyDeleteDetails; -@class DBTEAMLOGTeamFolderRenameDetails; -@class DBTEAMLOGTeamMergeFromDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestAutoCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestExpiredDetails; -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestReminderDetails; -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestRevokedDetails; -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeToDetails; -@class DBTEAMLOGTeamProfileAddBackgroundDetails; -@class DBTEAMLOGTeamProfileAddLogoDetails; -@class DBTEAMLOGTeamProfileChangeBackgroundDetails; -@class DBTEAMLOGTeamProfileChangeDefaultLanguageDetails; -@class DBTEAMLOGTeamProfileChangeLogoDetails; -@class DBTEAMLOGTeamProfileChangeNameDetails; -@class DBTEAMLOGTeamProfileRemoveBackgroundDetails; -@class DBTEAMLOGTeamProfileRemoveLogoDetails; -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails; -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails; -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails; -@class DBTEAMLOGTfaAddBackupPhoneDetails; -@class DBTEAMLOGTfaAddExceptionDetails; -@class DBTEAMLOGTfaAddSecurityKeyDetails; -@class DBTEAMLOGTfaChangeBackupPhoneDetails; -@class DBTEAMLOGTfaChangePolicyDetails; -@class DBTEAMLOGTfaChangeStatusDetails; -@class DBTEAMLOGTfaRemoveBackupPhoneDetails; -@class DBTEAMLOGTfaRemoveExceptionDetails; -@class DBTEAMLOGTfaRemoveSecurityKeyDetails; -@class DBTEAMLOGTfaResetDetails; -@class DBTEAMLOGTwoAccountChangePolicyDetails; -@class DBTEAMLOGUndoNamingConventionDetails; -@class DBTEAMLOGUndoOrganizeFolderWithTidyDetails; -@class DBTEAMLOGUserTagsAddedDetails; -@class DBTEAMLOGUserTagsRemovedDetails; -@class DBTEAMLOGViewerInfoPolicyChangedDetails; -@class DBTEAMLOGWatermarkingPolicyChangedDetails; -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails; -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails; -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventDetails` union. -/// -/// Additional fields depending on the event type. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventDetailsTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventDetailsTag) { - /// (no description). - DBTEAMLOGEventDetailsAdminAlertingAlertStateChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAdminAlertingChangedAlertConfigDetails, - - /// (no description). - DBTEAMLOGEventDetailsAdminAlertingTriggeredAlertDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareRestoreProcessCompletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareRestoreProcessStartedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppBlockedByPermissionsDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppLinkTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppLinkUserDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppUnlinkTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppUnlinkUserDetails, - - /// (no description). - DBTEAMLOGEventDetailsIntegrationConnectedDetails, - - /// (no description). - DBTEAMLOGEventDetailsIntegrationDisconnectedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileAddCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileChangeCommentSubscriptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileDeleteCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileEditCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileLikeCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileResolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileUnlikeCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileUnresolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyAddFoldersDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyAddFolderFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyContentDisposedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyEditDetailsDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyEditDurationDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyExportCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyExportRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyRemoveFoldersDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyReportCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyZipPartDownloadedDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsActivateAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsAddMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsChangeHoldDetailsDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsChangeHoldNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportCancelledDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportDownloadedDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsReleaseAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsRemoveMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsReportAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceChangeIpDesktopDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceChangeIpMobileDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceChangeIpWebDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceDeleteOnUnlinkFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceDeleteOnUnlinkSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceLinkFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceLinkSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceManagementDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceManagementEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceSyncBackupStatusChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceUnlinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsDropboxPasswordsExportedDetails, - - /// (no description). - DBTEAMLOGEventDetailsDropboxPasswordsNewDeviceEnrolledDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmRefreshAuthTokenDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalDriveBackupEligibilityStatusCheckedDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalDriveBackupStatusChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureChangeAvailabilityDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureMigrateAccountDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureNotificationEmailsSentDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureRelinquishAccountDetails, - - /// (no description). - DBTEAMLOGEventDetailsDisabledDomainInvitesDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesApproveRequestToJoinTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesDeclineRequestToJoinTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesEmailExistingUsersDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesRequestToJoinTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesSetInviteNewUserPrefToNoDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesSetInviteNewUserPrefToYesDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainVerificationAddDomainFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainVerificationAddDomainSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainVerificationRemoveDomainDetails, - - /// (no description). - DBTEAMLOGEventDetailsEnabledDomainInvitesDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyCancelKeyDeletionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyCreateKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyDeleteKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyDisableKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyEnableKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyRotateKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyScheduleKeyDeletionDetails, - - /// (no description). - DBTEAMLOGEventDetailsApplyNamingConventionDetails, - - /// (no description). - DBTEAMLOGEventDetailsCreateFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileAddDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileAddFromAutomationDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileCopyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileEditDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileGetCopyReferenceDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileLockingLockStatusChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileMoveDetails, - - /// (no description). - DBTEAMLOGEventDetailsFilePermanentlyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFilePreviewDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRestoreDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRevertDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRollbackChangesDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileSaveCopyReferenceDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderOverviewDescriptionChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderOverviewItemPinnedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderOverviewItemUnpinnedDetails, - - /// (no description). - DBTEAMLOGEventDetailsObjectLabelAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsObjectLabelRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsObjectLabelUpdatedValueDetails, - - /// (no description). - DBTEAMLOGEventDetailsOrganizeFolderWithTidyDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayFileDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsRewindFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsUndoNamingConventionDetails, - - /// (no description). - DBTEAMLOGEventDetailsUndoOrganizeFolderWithTidyDetails, - - /// (no description). - DBTEAMLOGEventDetailsUserTagsAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsUserTagsRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmailIngestReceiveFileDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestChangeDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestCloseDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestReceiveFileDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupAddExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupChangeExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupChangeManagementTypeDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupChangeMemberRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupDescriptionUpdatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupJoinPolicyUpdatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupMovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupRemoveExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountLockOrUnlockedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmErrorDetails, - - /// (no description). - DBTEAMLOGEventDetailsGuestAdminSignedInViaTrustedTeamsDetails, - - /// (no description). - DBTEAMLOGEventDetailsGuestAdminSignedOutViaTrustedTeamsDetails, - - /// (no description). - DBTEAMLOGEventDetailsLoginFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsLoginSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsLogoutDetails, - - /// (no description). - DBTEAMLOGEventDetailsResellerSupportSessionEndDetails, - - /// (no description). - DBTEAMLOGEventDetailsResellerSupportSessionStartDetails, - - /// (no description). - DBTEAMLOGEventDetailsSignInAsSessionEndDetails, - - /// (no description). - DBTEAMLOGEventDetailsSignInAsSessionStartDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoErrorDetails, - - /// (no description). - DBTEAMLOGEventDetailsBackupAdminInvitationSentDetails, - - /// (no description). - DBTEAMLOGEventDetailsBackupInvitationOpenedDetails, - - /// (no description). - DBTEAMLOGEventDetailsCreateTeamInviteLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeleteTeamInviteLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberAddExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberAddNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeAdminRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeEmailDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeMembershipTypeDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeResellerRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberDeleteManualContactsDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberDeleteProfilePhotoDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberPermanentlyDeleteAccountContentsDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberRemoveExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSetProfilePhotoDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsAddCustomQuotaDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangeCustomQuotaDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsRemoveCustomQuotaDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSuggestDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberTransferAccountContentsDetails, - - /// (no description). - DBTEAMLOGEventDetailsPendingSecondaryEmailAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSecondaryEmailDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSecondaryEmailVerifiedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSecondaryMailsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderAddPageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderAddSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRemovePageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRemoveSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRenamePageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRenameSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderReorderPageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderReorderSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentAddToFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentArchiveDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentPermanentlyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRemoveFromFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRestoreDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocAddCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocChangeMemberRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocChangeSharingPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocChangeSubscriptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocDeleteCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocEditDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocEditCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocFollowedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocMentionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocOwnershipChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocRequestAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocResolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocRevertDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocSlackShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocTeamInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocTrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocUnresolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocUntrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperExternalViewAllowDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperExternalViewDefaultTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperExternalViewForbidDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderChangeSubscriptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderFollowedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderTeamInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkChangePermissionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordChangeDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordResetDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordResetAllDetails, - - /// (no description). - DBTEAMLOGEventDetailsClassificationCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsClassificationCreateReportFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmCreateExceptionsReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmCreateUsageReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsExportMembersReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsExportMembersReportFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalSharingCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalSharingReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoExpirationLinkGenCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoExpirationLinkGenReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkGenCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkGenReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkViewCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkViewReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsOutdatedLinkViewCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsOutdatedLinkViewReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperAdminExportStartDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareAlertCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareAlertCreateReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncCreateAdminPrivilegeReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamActivityCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamActivityCreateReportFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsCollectionShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersFileAddDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferSendDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteAclInviteOnlyDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteAclLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteAclTeamLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteSharedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteShareReceiveDetails, - - /// (no description). - DBTEAMLOGEventDetailsOpenNoteSharedDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayFileSharedLinkCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayFileSharedLinkModifiedDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayProjectTeamAddDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayProjectTeamDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfAddGroupDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfAllowNonMembersToViewSharedLinksDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfExternalInviteWarnDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfFbInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfFbInviteChangeRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfFbUninviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfInviteGroupDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamGrantAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamInviteChangeRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamJoinDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamJoinFromOobLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamUninviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddInviteesDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddLinkExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddLinkPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeDownloadsPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeInviteeRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeLinkAudienceDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeLinkExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeLinkPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeMemberRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeViewerInfoPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentClaimInvitationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentCopyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRelinquishMembershipDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveInviteesDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveLinkExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveLinkPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRequestAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRestoreInviteesDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRestoreMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentUnshareDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeLinkPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeMembersInheritancePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeMembersManagementPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeMembersPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderDeclineInvitationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderMountDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderNestDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderTransferOwnershipDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderUnmountDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkAddExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkChangeExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkChangeVisibilityDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkCopyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkDisableDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkRemoveExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAddExpirationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAddPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAllowDownloadDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAllowDownloadEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsChangeAudienceDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsChangeExpirationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsChangePasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsRemoveExpirationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsRemovePasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedNoteOpenedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShmodelDisableDownloadsDetails, - - /// (no description). - DBTEAMLOGEventDetailsShmodelEnableDownloadsDetails, - - /// (no description). - DBTEAMLOGEventDetailsShmodelGroupShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseAccessGrantedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseArchivedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseDeleteCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseEditedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseEditCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcasePermanentlyDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcasePostCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRenamedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRequestAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseResolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRestoredDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseTrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseTrashedDeprecatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseUnresolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseUntrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseUntrashedDeprecatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoAddCertDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoAddLoginUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoAddLogoutUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeCertDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeLoginUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeLogoutUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeSamlIdentityModeDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoRemoveCertDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoRemoveLoginUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoRemoveLogoutUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderDowngradeDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderPermanentlyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamSelectiveSyncSettingsChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsAdminEmailRemindersChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAllowDownloadDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsAllowDownloadEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppPermissionsChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsCameraUploadsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsCaptureTranscriptPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsClassificationChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsComputerBackupPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsContentAdministrationPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataPlacementRestrictionChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataPlacementRestrictionSatisfyPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeDesktopPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeMobilePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeOverageActionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeUnlinkActionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDirectoryRestrictionsAddMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsDirectoryRestrictionsRemoveMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsDropboxPasswordsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmailIngestPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsExtendedVersionHistoryChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalDriveBackupPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileCommentsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileLockingPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileProviderMigrationPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestsEmailsEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestsEmailsRestrictedToTeamOnlyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderLinkRestrictionPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGoogleSsoChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupUserManagementChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsIntegrationPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsInviteAcceptanceEmailPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberRequestsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSendInvitePolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangeCapsTypePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSuggestionsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMicrosoftOfficeAddinChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsNetworkControlChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangeDeploymentPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangeMemberLinkPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangeMemberPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDefaultFolderPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDesktopPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperEnabledUsersGroupAdditionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperEnabledUsersGroupRemovalDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordStrengthRequirementsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPermanentDeleteChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsResellerSupportChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsRewindPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSendForSignaturePolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeFolderJoinPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkAllowChangeExpirationPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkDefaultExpirationPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkEnforcePasswordPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeMemberPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseChangeDownloadPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseChangeEnabledPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseChangeExternalSharingPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmarterSmartSyncPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncNotOptOutDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncOptOutDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamBrandingPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamExtensionsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamSelectiveSyncPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamSharingWhitelistSubjectsChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTwoAccountChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsViewerInfoPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsWatermarkingPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsWebSessionsChangeActiveSessionLimitDetails, - - /// (no description). - DBTEAMLOGEventDetailsWebSessionsChangeFixedLengthPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsWebSessionsChangeIdleLengthPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataResidencyMigrationRequestSuccessfulDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataResidencyMigrationRequestUnsuccessfulDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeFromDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeToDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileAddBackgroundDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileAddLogoDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeBackgroundDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeDefaultLanguageDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeLogoDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileRemoveBackgroundDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileRemoveLogoDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaAddBackupPhoneDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaAddSecurityKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaChangeBackupPhoneDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaRemoveBackupPhoneDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaRemoveSecurityKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaResetDetails, - - /// (no description). - DBTEAMLOGEventDetailsChangedEnterpriseAdminRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsChangedEnterpriseConnectedTeamStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsEndedEnterpriseAdminSessionDetails, - - /// (no description). - DBTEAMLOGEventDetailsEndedEnterpriseAdminSessionDeprecatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEnterpriseSettingsLockingDetails, - - /// (no description). - DBTEAMLOGEventDetailsGuestAdminChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsStartedEnterpriseAdminSessionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAcceptedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAcceptedShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAcceptedShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAutoCanceledDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestCanceledDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestCanceledShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestCanceledShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestExpiredDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestExpiredShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestExpiredShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestRejectedShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestRejectedShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestReminderDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestReminderShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestReminderShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestRevokedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestSentShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestSentShownToSecondaryTeamDetails, - - /// Hints that this event was returned with missing details due to an - /// internal error. - DBTEAMLOGEventDetailsMissingDetails, - - /// (no description). - DBTEAMLOGEventDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventDetailsTag tag; - -/// (no description). @note Ensure the `isAdminAlertingAlertStateChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertStateChangedDetails *adminAlertingAlertStateChangedDetails; - -/// (no description). @note Ensure the -/// `isAdminAlertingChangedAlertConfigDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingChangedAlertConfigDetails *adminAlertingChangedAlertConfigDetails; - -/// (no description). @note Ensure the `isAdminAlertingTriggeredAlertDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingTriggeredAlertDetails *adminAlertingTriggeredAlertDetails; - -/// (no description). @note Ensure the -/// `isRansomwareRestoreProcessCompletedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGRansomwareRestoreProcessCompletedDetails *ransomwareRestoreProcessCompletedDetails; - -/// (no description). @note Ensure the -/// `isRansomwareRestoreProcessStartedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareRestoreProcessStartedDetails *ransomwareRestoreProcessStartedDetails; - -/// (no description). @note Ensure the `isAppBlockedByPermissionsDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppBlockedByPermissionsDetails *appBlockedByPermissionsDetails; - -/// (no description). @note Ensure the `isAppLinkTeamDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkTeamDetails *appLinkTeamDetails; - -/// (no description). @note Ensure the `isAppLinkUserDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkUserDetails *appLinkUserDetails; - -/// (no description). @note Ensure the `isAppUnlinkTeamDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkTeamDetails *appUnlinkTeamDetails; - -/// (no description). @note Ensure the `isAppUnlinkUserDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkUserDetails *appUnlinkUserDetails; - -/// (no description). @note Ensure the `isIntegrationConnectedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationConnectedDetails *integrationConnectedDetails; - -/// (no description). @note Ensure the `isIntegrationDisconnectedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationDisconnectedDetails *integrationDisconnectedDetails; - -/// (no description). @note Ensure the `isFileAddCommentDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddCommentDetails *fileAddCommentDetails; - -/// (no description). @note Ensure the `isFileChangeCommentSubscriptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileChangeCommentSubscriptionDetails *fileChangeCommentSubscriptionDetails; - -/// (no description). @note Ensure the `isFileDeleteCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteCommentDetails *fileDeleteCommentDetails; - -/// (no description). @note Ensure the `isFileEditCommentDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditCommentDetails *fileEditCommentDetails; - -/// (no description). @note Ensure the `isFileLikeCommentDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLikeCommentDetails *fileLikeCommentDetails; - -/// (no description). @note Ensure the `isFileResolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileResolveCommentDetails *fileResolveCommentDetails; - -/// (no description). @note Ensure the `isFileUnlikeCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnlikeCommentDetails *fileUnlikeCommentDetails; - -/// (no description). @note Ensure the `isFileUnresolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnresolveCommentDetails *fileUnresolveCommentDetails; - -/// (no description). @note Ensure the `isGovernancePolicyAddFoldersDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFoldersDetails *governancePolicyAddFoldersDetails; - -/// (no description). @note Ensure the -/// `isGovernancePolicyAddFolderFailedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFolderFailedDetails *governancePolicyAddFolderFailedDetails; - -/// (no description). @note Ensure the -/// `isGovernancePolicyContentDisposedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyContentDisposedDetails *governancePolicyContentDisposedDetails; - -/// (no description). @note Ensure the `isGovernancePolicyCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyCreateDetails *governancePolicyCreateDetails; - -/// (no description). @note Ensure the `isGovernancePolicyDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyDeleteDetails *governancePolicyDeleteDetails; - -/// (no description). @note Ensure the `isGovernancePolicyEditDetailsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDetailsDetails *governancePolicyEditDetailsDetails; - -/// (no description). @note Ensure the `isGovernancePolicyEditDurationDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDurationDetails *governancePolicyEditDurationDetails; - -/// (no description). @note Ensure the `isGovernancePolicyExportCreatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportCreatedDetails *governancePolicyExportCreatedDetails; - -/// (no description). @note Ensure the `isGovernancePolicyExportRemovedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportRemovedDetails *governancePolicyExportRemovedDetails; - -/// (no description). @note Ensure the `isGovernancePolicyRemoveFoldersDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyRemoveFoldersDetails *governancePolicyRemoveFoldersDetails; - -/// (no description). @note Ensure the `isGovernancePolicyReportCreatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyReportCreatedDetails *governancePolicyReportCreatedDetails; - -/// (no description). @note Ensure the -/// `isGovernancePolicyZipPartDownloadedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *governancePolicyZipPartDownloadedDetails; - -/// (no description). @note Ensure the `isLegalHoldsActivateAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsActivateAHoldDetails *legalHoldsActivateAHoldDetails; - -/// (no description). @note Ensure the `isLegalHoldsAddMembersDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsAddMembersDetails *legalHoldsAddMembersDetails; - -/// (no description). @note Ensure the `isLegalHoldsChangeHoldDetailsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *legalHoldsChangeHoldDetailsDetails; - -/// (no description). @note Ensure the `isLegalHoldsChangeHoldNameDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldNameDetails *legalHoldsChangeHoldNameDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportAHoldDetails *legalHoldsExportAHoldDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportCancelledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportCancelledDetails *legalHoldsExportCancelledDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportDownloadedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportDownloadedDetails *legalHoldsExportDownloadedDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportRemovedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportRemovedDetails *legalHoldsExportRemovedDetails; - -/// (no description). @note Ensure the `isLegalHoldsReleaseAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReleaseAHoldDetails *legalHoldsReleaseAHoldDetails; - -/// (no description). @note Ensure the `isLegalHoldsRemoveMembersDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsRemoveMembersDetails *legalHoldsRemoveMembersDetails; - -/// (no description). @note Ensure the `isLegalHoldsReportAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReportAHoldDetails *legalHoldsReportAHoldDetails; - -/// (no description). @note Ensure the `isDeviceChangeIpDesktopDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpDesktopDetails *deviceChangeIpDesktopDetails; - -/// (no description). @note Ensure the `isDeviceChangeIpMobileDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpMobileDetails *deviceChangeIpMobileDetails; - -/// (no description). @note Ensure the `isDeviceChangeIpWebDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpWebDetails *deviceChangeIpWebDetails; - -/// (no description). @note Ensure the `isDeviceDeleteOnUnlinkFailDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *deviceDeleteOnUnlinkFailDetails; - -/// (no description). @note Ensure the `isDeviceDeleteOnUnlinkSuccessDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *deviceDeleteOnUnlinkSuccessDetails; - -/// (no description). @note Ensure the `isDeviceLinkFailDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkFailDetails *deviceLinkFailDetails; - -/// (no description). @note Ensure the `isDeviceLinkSuccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkSuccessDetails *deviceLinkSuccessDetails; - -/// (no description). @note Ensure the `isDeviceManagementDisabledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementDisabledDetails *deviceManagementDisabledDetails; - -/// (no description). @note Ensure the `isDeviceManagementEnabledDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementEnabledDetails *deviceManagementEnabledDetails; - -/// (no description). @note Ensure the `isDeviceSyncBackupStatusChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceSyncBackupStatusChangedDetails *deviceSyncBackupStatusChangedDetails; - -/// (no description). @note Ensure the `isDeviceUnlinkDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceUnlinkDetails *deviceUnlinkDetails; - -/// (no description). @note Ensure the `isDropboxPasswordsExportedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsExportedDetails *dropboxPasswordsExportedDetails; - -/// (no description). @note Ensure the -/// `isDropboxPasswordsNewDeviceEnrolledDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *dropboxPasswordsNewDeviceEnrolledDetails; - -/// (no description). @note Ensure the `isEmmRefreshAuthTokenDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRefreshAuthTokenDetails *emmRefreshAuthTokenDetails; - -/// (no description). @note Ensure the -/// `isExternalDriveBackupEligibilityStatusCheckedDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *externalDriveBackupEligibilityStatusCheckedDetails; - -/// (no description). @note Ensure the -/// `isExternalDriveBackupStatusChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupStatusChangedDetails *externalDriveBackupStatusChangedDetails; - -/// (no description). @note Ensure the -/// `isAccountCaptureChangeAvailabilityDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGAccountCaptureChangeAvailabilityDetails *accountCaptureChangeAvailabilityDetails; - -/// (no description). @note Ensure the `isAccountCaptureMigrateAccountDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureMigrateAccountDetails *accountCaptureMigrateAccountDetails; - -/// (no description). @note Ensure the -/// `isAccountCaptureNotificationEmailsSentDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *accountCaptureNotificationEmailsSentDetails; - -/// (no description). @note Ensure the -/// `isAccountCaptureRelinquishAccountDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureRelinquishAccountDetails *accountCaptureRelinquishAccountDetails; - -/// (no description). @note Ensure the `isDisabledDomainInvitesDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDisabledDomainInvitesDetails *disabledDomainInvitesDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesApproveRequestToJoinTeamDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *domainInvitesApproveRequestToJoinTeamDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesDeclineRequestToJoinTeamDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *domainInvitesDeclineRequestToJoinTeamDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesEmailExistingUsersDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesEmailExistingUsersDetails *domainInvitesEmailExistingUsersDetails; - -/// (no description). @note Ensure the `isDomainInvitesRequestToJoinTeamDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *domainInvitesRequestToJoinTeamDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesSetInviteNewUserPrefToNoDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *domainInvitesSetInviteNewUserPrefToNoDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesSetInviteNewUserPrefToYesDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *domainInvitesSetInviteNewUserPrefToYesDetails; - -/// (no description). @note Ensure the -/// `isDomainVerificationAddDomainFailDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationAddDomainFailDetails *domainVerificationAddDomainFailDetails; - -/// (no description). @note Ensure the -/// `isDomainVerificationAddDomainSuccessDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainVerificationAddDomainSuccessDetails *domainVerificationAddDomainSuccessDetails; - -/// (no description). @note Ensure the `isDomainVerificationRemoveDomainDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationRemoveDomainDetails *domainVerificationRemoveDomainDetails; - -/// (no description). @note Ensure the `isEnabledDomainInvitesDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEnabledDomainInvitesDetails *enabledDomainInvitesDetails; - -/// (no description). @note Ensure the -/// `isTeamEncryptionKeyCancelKeyDeletionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *teamEncryptionKeyCancelKeyDeletionDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyCreateKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *teamEncryptionKeyCreateKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyDeleteKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *teamEncryptionKeyDeleteKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyDisableKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *teamEncryptionKeyDisableKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyEnableKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *teamEncryptionKeyEnableKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyRotateKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *teamEncryptionKeyRotateKeyDetails; - -/// (no description). @note Ensure the -/// `isTeamEncryptionKeyScheduleKeyDeletionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *teamEncryptionKeyScheduleKeyDeletionDetails; - -/// (no description). @note Ensure the `isApplyNamingConventionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGApplyNamingConventionDetails *applyNamingConventionDetails; - -/// (no description). @note Ensure the `isCreateFolderDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCreateFolderDetails *createFolderDetails; - -/// (no description). @note Ensure the `isFileAddDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddDetails *fileAddDetails; - -/// (no description). @note Ensure the `isFileAddFromAutomationDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddFromAutomationDetails *fileAddFromAutomationDetails; - -/// (no description). @note Ensure the `isFileCopyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileCopyDetails *fileCopyDetails; - -/// (no description). @note Ensure the `isFileDeleteDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteDetails *fileDeleteDetails; - -/// (no description). @note Ensure the `isFileDownloadDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDownloadDetails *fileDownloadDetails; - -/// (no description). @note Ensure the `isFileEditDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditDetails *fileEditDetails; - -/// (no description). @note Ensure the `isFileGetCopyReferenceDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileGetCopyReferenceDetails *fileGetCopyReferenceDetails; - -/// (no description). @note Ensure the `isFileLockingLockStatusChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingLockStatusChangedDetails *fileLockingLockStatusChangedDetails; - -/// (no description). @note Ensure the `isFileMoveDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileMoveDetails *fileMoveDetails; - -/// (no description). @note Ensure the `isFilePermanentlyDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePermanentlyDeleteDetails *filePermanentlyDeleteDetails; - -/// (no description). @note Ensure the `isFilePreviewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePreviewDetails *filePreviewDetails; - -/// (no description). @note Ensure the `isFileRenameDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRenameDetails *fileRenameDetails; - -/// (no description). @note Ensure the `isFileRestoreDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRestoreDetails *fileRestoreDetails; - -/// (no description). @note Ensure the `isFileRevertDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRevertDetails *fileRevertDetails; - -/// (no description). @note Ensure the `isFileRollbackChangesDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRollbackChangesDetails *fileRollbackChangesDetails; - -/// (no description). @note Ensure the `isFileSaveCopyReferenceDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileSaveCopyReferenceDetails *fileSaveCopyReferenceDetails; - -/// (no description). @note Ensure the -/// `isFolderOverviewDescriptionChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFolderOverviewDescriptionChangedDetails *folderOverviewDescriptionChangedDetails; - -/// (no description). @note Ensure the `isFolderOverviewItemPinnedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemPinnedDetails *folderOverviewItemPinnedDetails; - -/// (no description). @note Ensure the `isFolderOverviewItemUnpinnedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemUnpinnedDetails *folderOverviewItemUnpinnedDetails; - -/// (no description). @note Ensure the `isObjectLabelAddedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelAddedDetails *objectLabelAddedDetails; - -/// (no description). @note Ensure the `isObjectLabelRemovedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelRemovedDetails *objectLabelRemovedDetails; - -/// (no description). @note Ensure the `isObjectLabelUpdatedValueDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelUpdatedValueDetails *objectLabelUpdatedValueDetails; - -/// (no description). @note Ensure the `isOrganizeFolderWithTidyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizeFolderWithTidyDetails *organizeFolderWithTidyDetails; - -/// (no description). @note Ensure the `isReplayFileDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileDeleteDetails *replayFileDeleteDetails; - -/// (no description). @note Ensure the `isRewindFolderDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindFolderDetails *rewindFolderDetails; - -/// (no description). @note Ensure the `isUndoNamingConventionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUndoNamingConventionDetails *undoNamingConventionDetails; - -/// (no description). @note Ensure the `isUndoOrganizeFolderWithTidyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGUndoOrganizeFolderWithTidyDetails *undoOrganizeFolderWithTidyDetails; - -/// (no description). @note Ensure the `isUserTagsAddedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsAddedDetails *userTagsAddedDetails; - -/// (no description). @note Ensure the `isUserTagsRemovedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsRemovedDetails *userTagsRemovedDetails; - -/// (no description). @note Ensure the `isEmailIngestReceiveFileDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestReceiveFileDetails *emailIngestReceiveFileDetails; - -/// (no description). @note Ensure the `isFileRequestChangeDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestChangeDetails *fileRequestChangeDetails; - -/// (no description). @note Ensure the `isFileRequestCloseDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCloseDetails *fileRequestCloseDetails; - -/// (no description). @note Ensure the `isFileRequestCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCreateDetails *fileRequestCreateDetails; - -/// (no description). @note Ensure the `isFileRequestDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestDeleteDetails *fileRequestDeleteDetails; - -/// (no description). @note Ensure the `isFileRequestReceiveFileDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestReceiveFileDetails *fileRequestReceiveFileDetails; - -/// (no description). @note Ensure the `isGroupAddExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddExternalIdDetails *groupAddExternalIdDetails; - -/// (no description). @note Ensure the `isGroupAddMemberDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddMemberDetails *groupAddMemberDetails; - -/// (no description). @note Ensure the `isGroupChangeExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeExternalIdDetails *groupChangeExternalIdDetails; - -/// (no description). @note Ensure the `isGroupChangeManagementTypeDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeManagementTypeDetails *groupChangeManagementTypeDetails; - -/// (no description). @note Ensure the `isGroupChangeMemberRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeMemberRoleDetails *groupChangeMemberRoleDetails; - -/// (no description). @note Ensure the `isGroupCreateDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupCreateDetails *groupCreateDetails; - -/// (no description). @note Ensure the `isGroupDeleteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDeleteDetails *groupDeleteDetails; - -/// (no description). @note Ensure the `isGroupDescriptionUpdatedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDescriptionUpdatedDetails *groupDescriptionUpdatedDetails; - -/// (no description). @note Ensure the `isGroupJoinPolicyUpdatedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupJoinPolicyUpdatedDetails *groupJoinPolicyUpdatedDetails; - -/// (no description). @note Ensure the `isGroupMovedDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupMovedDetails *groupMovedDetails; - -/// (no description). @note Ensure the `isGroupRemoveExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveExternalIdDetails *groupRemoveExternalIdDetails; - -/// (no description). @note Ensure the `isGroupRemoveMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveMemberDetails *groupRemoveMemberDetails; - -/// (no description). @note Ensure the `isGroupRenameDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRenameDetails *groupRenameDetails; - -/// (no description). @note Ensure the `isAccountLockOrUnlockedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountLockOrUnlockedDetails *accountLockOrUnlockedDetails; - -/// (no description). @note Ensure the `isEmmErrorDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmErrorDetails *emmErrorDetails; - -/// (no description). @note Ensure the -/// `isGuestAdminSignedInViaTrustedTeamsDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *guestAdminSignedInViaTrustedTeamsDetails; - -/// (no description). @note Ensure the -/// `isGuestAdminSignedOutViaTrustedTeamsDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *guestAdminSignedOutViaTrustedTeamsDetails; - -/// (no description). @note Ensure the `isLoginFailDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginFailDetails *loginFailDetails; - -/// (no description). @note Ensure the `isLoginSuccessDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginSuccessDetails *loginSuccessDetails; - -/// (no description). @note Ensure the `isLogoutDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLogoutDetails *logoutDetails; - -/// (no description). @note Ensure the `isResellerSupportSessionEndDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionEndDetails *resellerSupportSessionEndDetails; - -/// (no description). @note Ensure the `isResellerSupportSessionStartDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionStartDetails *resellerSupportSessionStartDetails; - -/// (no description). @note Ensure the `isSignInAsSessionEndDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionEndDetails *signInAsSessionEndDetails; - -/// (no description). @note Ensure the `isSignInAsSessionStartDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionStartDetails *signInAsSessionStartDetails; - -/// (no description). @note Ensure the `isSsoErrorDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoErrorDetails *ssoErrorDetails; - -/// (no description). @note Ensure the `isBackupAdminInvitationSentDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGBackupAdminInvitationSentDetails *backupAdminInvitationSentDetails; - -/// (no description). @note Ensure the `isBackupInvitationOpenedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBackupInvitationOpenedDetails *backupInvitationOpenedDetails; - -/// (no description). @note Ensure the `isCreateTeamInviteLinkDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCreateTeamInviteLinkDetails *createTeamInviteLinkDetails; - -/// (no description). @note Ensure the `isDeleteTeamInviteLinkDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeleteTeamInviteLinkDetails *deleteTeamInviteLinkDetails; - -/// (no description). @note Ensure the `isMemberAddExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddExternalIdDetails *memberAddExternalIdDetails; - -/// (no description). @note Ensure the `isMemberAddNameDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddNameDetails *memberAddNameDetails; - -/// (no description). @note Ensure the `isMemberChangeAdminRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeAdminRoleDetails *memberChangeAdminRoleDetails; - -/// (no description). @note Ensure the `isMemberChangeEmailDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeEmailDetails *memberChangeEmailDetails; - -/// (no description). @note Ensure the `isMemberChangeExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeExternalIdDetails *memberChangeExternalIdDetails; - -/// (no description). @note Ensure the `isMemberChangeMembershipTypeDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeMembershipTypeDetails *memberChangeMembershipTypeDetails; - -/// (no description). @note Ensure the `isMemberChangeNameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeNameDetails *memberChangeNameDetails; - -/// (no description). @note Ensure the `isMemberChangeResellerRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeResellerRoleDetails *memberChangeResellerRoleDetails; - -/// (no description). @note Ensure the `isMemberChangeStatusDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeStatusDetails *memberChangeStatusDetails; - -/// (no description). @note Ensure the `isMemberDeleteManualContactsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteManualContactsDetails *memberDeleteManualContactsDetails; - -/// (no description). @note Ensure the `isMemberDeleteProfilePhotoDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteProfilePhotoDetails *memberDeleteProfilePhotoDetails; - -/// (no description). @note Ensure the -/// `isMemberPermanentlyDeleteAccountContentsDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *memberPermanentlyDeleteAccountContentsDetails; - -/// (no description). @note Ensure the `isMemberRemoveExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveExternalIdDetails *memberRemoveExternalIdDetails; - -/// (no description). @note Ensure the `isMemberSetProfilePhotoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSetProfilePhotoDetails *memberSetProfilePhotoDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsAddCustomQuotaDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *memberSpaceLimitsAddCustomQuotaDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsChangeCustomQuotaDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *memberSpaceLimitsChangeCustomQuotaDetails; - -/// (no description). @note Ensure the `isMemberSpaceLimitsChangeStatusDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *memberSpaceLimitsChangeStatusDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsRemoveCustomQuotaDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *memberSpaceLimitsRemoveCustomQuotaDetails; - -/// (no description). @note Ensure the `isMemberSuggestDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestDetails *memberSuggestDetails; - -/// (no description). @note Ensure the `isMemberTransferAccountContentsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberTransferAccountContentsDetails *memberTransferAccountContentsDetails; - -/// (no description). @note Ensure the `isPendingSecondaryEmailAddedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPendingSecondaryEmailAddedDetails *pendingSecondaryEmailAddedDetails; - -/// (no description). @note Ensure the `isSecondaryEmailDeletedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailDeletedDetails *secondaryEmailDeletedDetails; - -/// (no description). @note Ensure the `isSecondaryEmailVerifiedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailVerifiedDetails *secondaryEmailVerifiedDetails; - -/// (no description). @note Ensure the `isSecondaryMailsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicyChangedDetails *secondaryMailsPolicyChangedDetails; - -/// (no description). @note Ensure the `isBinderAddPageDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddPageDetails *binderAddPageDetails; - -/// (no description). @note Ensure the `isBinderAddSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddSectionDetails *binderAddSectionDetails; - -/// (no description). @note Ensure the `isBinderRemovePageDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemovePageDetails *binderRemovePageDetails; - -/// (no description). @note Ensure the `isBinderRemoveSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemoveSectionDetails *binderRemoveSectionDetails; - -/// (no description). @note Ensure the `isBinderRenamePageDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenamePageDetails *binderRenamePageDetails; - -/// (no description). @note Ensure the `isBinderRenameSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenameSectionDetails *binderRenameSectionDetails; - -/// (no description). @note Ensure the `isBinderReorderPageDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderPageDetails *binderReorderPageDetails; - -/// (no description). @note Ensure the `isBinderReorderSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderSectionDetails *binderReorderSectionDetails; - -/// (no description). @note Ensure the `isPaperContentAddMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddMemberDetails *paperContentAddMemberDetails; - -/// (no description). @note Ensure the `isPaperContentAddToFolderDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddToFolderDetails *paperContentAddToFolderDetails; - -/// (no description). @note Ensure the `isPaperContentArchiveDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentArchiveDetails *paperContentArchiveDetails; - -/// (no description). @note Ensure the `isPaperContentCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentCreateDetails *paperContentCreateDetails; - -/// (no description). @note Ensure the `isPaperContentPermanentlyDeleteDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentPermanentlyDeleteDetails *paperContentPermanentlyDeleteDetails; - -/// (no description). @note Ensure the `isPaperContentRemoveFromFolderDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveFromFolderDetails *paperContentRemoveFromFolderDetails; - -/// (no description). @note Ensure the `isPaperContentRemoveMemberDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveMemberDetails *paperContentRemoveMemberDetails; - -/// (no description). @note Ensure the `isPaperContentRenameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRenameDetails *paperContentRenameDetails; - -/// (no description). @note Ensure the `isPaperContentRestoreDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRestoreDetails *paperContentRestoreDetails; - -/// (no description). @note Ensure the `isPaperDocAddCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocAddCommentDetails *paperDocAddCommentDetails; - -/// (no description). @note Ensure the `isPaperDocChangeMemberRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeMemberRoleDetails *paperDocChangeMemberRoleDetails; - -/// (no description). @note Ensure the `isPaperDocChangeSharingPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSharingPolicyDetails *paperDocChangeSharingPolicyDetails; - -/// (no description). @note Ensure the `isPaperDocChangeSubscriptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSubscriptionDetails *paperDocChangeSubscriptionDetails; - -/// (no description). @note Ensure the `isPaperDocDeletedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeletedDetails *paperDocDeletedDetails; - -/// (no description). @note Ensure the `isPaperDocDeleteCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeleteCommentDetails *paperDocDeleteCommentDetails; - -/// (no description). @note Ensure the `isPaperDocDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDownloadDetails *paperDocDownloadDetails; - -/// (no description). @note Ensure the `isPaperDocEditDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditDetails *paperDocEditDetails; - -/// (no description). @note Ensure the `isPaperDocEditCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditCommentDetails *paperDocEditCommentDetails; - -/// (no description). @note Ensure the `isPaperDocFollowedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocFollowedDetails *paperDocFollowedDetails; - -/// (no description). @note Ensure the `isPaperDocMentionDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocMentionDetails *paperDocMentionDetails; - -/// (no description). @note Ensure the `isPaperDocOwnershipChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocOwnershipChangedDetails *paperDocOwnershipChangedDetails; - -/// (no description). @note Ensure the `isPaperDocRequestAccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRequestAccessDetails *paperDocRequestAccessDetails; - -/// (no description). @note Ensure the `isPaperDocResolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocResolveCommentDetails *paperDocResolveCommentDetails; - -/// (no description). @note Ensure the `isPaperDocRevertDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRevertDetails *paperDocRevertDetails; - -/// (no description). @note Ensure the `isPaperDocSlackShareDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocSlackShareDetails *paperDocSlackShareDetails; - -/// (no description). @note Ensure the `isPaperDocTeamInviteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTeamInviteDetails *paperDocTeamInviteDetails; - -/// (no description). @note Ensure the `isPaperDocTrashedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTrashedDetails *paperDocTrashedDetails; - -/// (no description). @note Ensure the `isPaperDocUnresolveCommentDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUnresolveCommentDetails *paperDocUnresolveCommentDetails; - -/// (no description). @note Ensure the `isPaperDocUntrashedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUntrashedDetails *paperDocUntrashedDetails; - -/// (no description). @note Ensure the `isPaperDocViewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocViewDetails *paperDocViewDetails; - -/// (no description). @note Ensure the `isPaperExternalViewAllowDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewAllowDetails *paperExternalViewAllowDetails; - -/// (no description). @note Ensure the `isPaperExternalViewDefaultTeamDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewDefaultTeamDetails *paperExternalViewDefaultTeamDetails; - -/// (no description). @note Ensure the `isPaperExternalViewForbidDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewForbidDetails *paperExternalViewForbidDetails; - -/// (no description). @note Ensure the `isPaperFolderChangeSubscriptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderChangeSubscriptionDetails *paperFolderChangeSubscriptionDetails; - -/// (no description). @note Ensure the `isPaperFolderDeletedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderDeletedDetails *paperFolderDeletedDetails; - -/// (no description). @note Ensure the `isPaperFolderFollowedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderFollowedDetails *paperFolderFollowedDetails; - -/// (no description). @note Ensure the `isPaperFolderTeamInviteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderTeamInviteDetails *paperFolderTeamInviteDetails; - -/// (no description). @note Ensure the -/// `isPaperPublishedLinkChangePermissionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGPaperPublishedLinkChangePermissionDetails *paperPublishedLinkChangePermissionDetails; - -/// (no description). @note Ensure the `isPaperPublishedLinkCreateDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkCreateDetails *paperPublishedLinkCreateDetails; - -/// (no description). @note Ensure the `isPaperPublishedLinkDisabledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkDisabledDetails *paperPublishedLinkDisabledDetails; - -/// (no description). @note Ensure the `isPaperPublishedLinkViewDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkViewDetails *paperPublishedLinkViewDetails; - -/// (no description). @note Ensure the `isPasswordChangeDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordChangeDetails *passwordChangeDetails; - -/// (no description). @note Ensure the `isPasswordResetDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetDetails *passwordResetDetails; - -/// (no description). @note Ensure the `isPasswordResetAllDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetAllDetails *passwordResetAllDetails; - -/// (no description). @note Ensure the `isClassificationCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportDetails *classificationCreateReportDetails; - -/// (no description). @note Ensure the `isClassificationCreateReportFailDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportFailDetails *classificationCreateReportFailDetails; - -/// (no description). @note Ensure the `isEmmCreateExceptionsReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateExceptionsReportDetails *emmCreateExceptionsReportDetails; - -/// (no description). @note Ensure the `isEmmCreateUsageReportDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateUsageReportDetails *emmCreateUsageReportDetails; - -/// (no description). @note Ensure the `isExportMembersReportDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportDetails *exportMembersReportDetails; - -/// (no description). @note Ensure the `isExportMembersReportFailDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportFailDetails *exportMembersReportFailDetails; - -/// (no description). @note Ensure the `isExternalSharingCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingCreateReportDetails *externalSharingCreateReportDetails; - -/// (no description). @note Ensure the `isExternalSharingReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingReportFailedDetails *externalSharingReportFailedDetails; - -/// (no description). @note Ensure the -/// `isNoExpirationLinkGenCreateReportDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenCreateReportDetails *noExpirationLinkGenCreateReportDetails; - -/// (no description). @note Ensure the -/// `isNoExpirationLinkGenReportFailedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenReportFailedDetails *noExpirationLinkGenReportFailedDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkGenCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenCreateReportDetails *noPasswordLinkGenCreateReportDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkGenReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenReportFailedDetails *noPasswordLinkGenReportFailedDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkViewCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewCreateReportDetails *noPasswordLinkViewCreateReportDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkViewReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewReportFailedDetails *noPasswordLinkViewReportFailedDetails; - -/// (no description). @note Ensure the `isOutdatedLinkViewCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewCreateReportDetails *outdatedLinkViewCreateReportDetails; - -/// (no description). @note Ensure the `isOutdatedLinkViewReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewReportFailedDetails *outdatedLinkViewReportFailedDetails; - -/// (no description). @note Ensure the `isPaperAdminExportStartDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperAdminExportStartDetails *paperAdminExportStartDetails; - -/// (no description). @note Ensure the `isRansomwareAlertCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareAlertCreateReportDetails *ransomwareAlertCreateReportDetails; - -/// (no description). @note Ensure the -/// `isRansomwareAlertCreateReportFailedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGRansomwareAlertCreateReportFailedDetails *ransomwareAlertCreateReportFailedDetails; - -/// (no description). @note Ensure the -/// `isSmartSyncCreateAdminPrivilegeReportDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *smartSyncCreateAdminPrivilegeReportDetails; - -/// (no description). @note Ensure the `isTeamActivityCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportDetails *teamActivityCreateReportDetails; - -/// (no description). @note Ensure the `isTeamActivityCreateReportFailDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportFailDetails *teamActivityCreateReportFailDetails; - -/// (no description). @note Ensure the `isCollectionShareDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCollectionShareDetails *collectionShareDetails; - -/// (no description). @note Ensure the `isFileTransfersFileAddDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersFileAddDetails *fileTransfersFileAddDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferDeleteDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDeleteDetails *fileTransfersTransferDeleteDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferDownloadDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDownloadDetails *fileTransfersTransferDownloadDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferSendDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferSendDetails *fileTransfersTransferSendDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferViewDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferViewDetails *fileTransfersTransferViewDetails; - -/// (no description). @note Ensure the `isNoteAclInviteOnlyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclInviteOnlyDetails *noteAclInviteOnlyDetails; - -/// (no description). @note Ensure the `isNoteAclLinkDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclLinkDetails *noteAclLinkDetails; - -/// (no description). @note Ensure the `isNoteAclTeamLinkDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclTeamLinkDetails *noteAclTeamLinkDetails; - -/// (no description). @note Ensure the `isNoteSharedDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteSharedDetails *noteSharedDetails; - -/// (no description). @note Ensure the `isNoteShareReceiveDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteShareReceiveDetails *noteShareReceiveDetails; - -/// (no description). @note Ensure the `isOpenNoteSharedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOpenNoteSharedDetails *openNoteSharedDetails; - -/// (no description). @note Ensure the `isReplayFileSharedLinkCreatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkCreatedDetails *replayFileSharedLinkCreatedDetails; - -/// (no description). @note Ensure the `isReplayFileSharedLinkModifiedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkModifiedDetails *replayFileSharedLinkModifiedDetails; - -/// (no description). @note Ensure the `isReplayProjectTeamAddDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamAddDetails *replayProjectTeamAddDetails; - -/// (no description). @note Ensure the `isReplayProjectTeamDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamDeleteDetails *replayProjectTeamDeleteDetails; - -/// (no description). @note Ensure the `isSfAddGroupDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfAddGroupDetails *sfAddGroupDetails; - -/// (no description). @note Ensure the -/// `isSfAllowNonMembersToViewSharedLinksDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *sfAllowNonMembersToViewSharedLinksDetails; - -/// (no description). @note Ensure the `isSfExternalInviteWarnDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfExternalInviteWarnDetails *sfExternalInviteWarnDetails; - -/// (no description). @note Ensure the `isSfFbInviteDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteDetails *sfFbInviteDetails; - -/// (no description). @note Ensure the `isSfFbInviteChangeRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteChangeRoleDetails *sfFbInviteChangeRoleDetails; - -/// (no description). @note Ensure the `isSfFbUninviteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbUninviteDetails *sfFbUninviteDetails; - -/// (no description). @note Ensure the `isSfInviteGroupDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfInviteGroupDetails *sfInviteGroupDetails; - -/// (no description). @note Ensure the `isSfTeamGrantAccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamGrantAccessDetails *sfTeamGrantAccessDetails; - -/// (no description). @note Ensure the `isSfTeamInviteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteDetails *sfTeamInviteDetails; - -/// (no description). @note Ensure the `isSfTeamInviteChangeRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteChangeRoleDetails *sfTeamInviteChangeRoleDetails; - -/// (no description). @note Ensure the `isSfTeamJoinDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinDetails *sfTeamJoinDetails; - -/// (no description). @note Ensure the `isSfTeamJoinFromOobLinkDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinFromOobLinkDetails *sfTeamJoinFromOobLinkDetails; - -/// (no description). @note Ensure the `isSfTeamUninviteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamUninviteDetails *sfTeamUninviteDetails; - -/// (no description). @note Ensure the `isSharedContentAddInviteesDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddInviteesDetails *sharedContentAddInviteesDetails; - -/// (no description). @note Ensure the `isSharedContentAddLinkExpiryDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkExpiryDetails *sharedContentAddLinkExpiryDetails; - -/// (no description). @note Ensure the `isSharedContentAddLinkPasswordDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkPasswordDetails *sharedContentAddLinkPasswordDetails; - -/// (no description). @note Ensure the `isSharedContentAddMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddMemberDetails *sharedContentAddMemberDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeDownloadsPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *sharedContentChangeDownloadsPolicyDetails; - -/// (no description). @note Ensure the `isSharedContentChangeInviteeRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeInviteeRoleDetails *sharedContentChangeInviteeRoleDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeLinkAudienceDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkAudienceDetails *sharedContentChangeLinkAudienceDetails; - -/// (no description). @note Ensure the `isSharedContentChangeLinkExpiryDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkExpiryDetails *sharedContentChangeLinkExpiryDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeLinkPasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkPasswordDetails *sharedContentChangeLinkPasswordDetails; - -/// (no description). @note Ensure the `isSharedContentChangeMemberRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeMemberRoleDetails *sharedContentChangeMemberRoleDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeViewerInfoPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *sharedContentChangeViewerInfoPolicyDetails; - -/// (no description). @note Ensure the `isSharedContentClaimInvitationDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentClaimInvitationDetails *sharedContentClaimInvitationDetails; - -/// (no description). @note Ensure the `isSharedContentCopyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentCopyDetails *sharedContentCopyDetails; - -/// (no description). @note Ensure the `isSharedContentDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentDownloadDetails *sharedContentDownloadDetails; - -/// (no description). @note Ensure the -/// `isSharedContentRelinquishMembershipDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedContentRelinquishMembershipDetails *sharedContentRelinquishMembershipDetails; - -/// (no description). @note Ensure the `isSharedContentRemoveInviteesDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveInviteesDetails *sharedContentRemoveInviteesDetails; - -/// (no description). @note Ensure the `isSharedContentRemoveLinkExpiryDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkExpiryDetails *sharedContentRemoveLinkExpiryDetails; - -/// (no description). @note Ensure the -/// `isSharedContentRemoveLinkPasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkPasswordDetails *sharedContentRemoveLinkPasswordDetails; - -/// (no description). @note Ensure the `isSharedContentRemoveMemberDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveMemberDetails *sharedContentRemoveMemberDetails; - -/// (no description). @note Ensure the `isSharedContentRequestAccessDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRequestAccessDetails *sharedContentRequestAccessDetails; - -/// (no description). @note Ensure the `isSharedContentRestoreInviteesDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreInviteesDetails *sharedContentRestoreInviteesDetails; - -/// (no description). @note Ensure the `isSharedContentRestoreMemberDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreMemberDetails *sharedContentRestoreMemberDetails; - -/// (no description). @note Ensure the `isSharedContentUnshareDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentUnshareDetails *sharedContentUnshareDetails; - -/// (no description). @note Ensure the `isSharedContentViewDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentViewDetails *sharedContentViewDetails; - -/// (no description). @note Ensure the `isSharedFolderChangeLinkPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeLinkPolicyDetails *sharedFolderChangeLinkPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharedFolderChangeMembersInheritancePolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *sharedFolderChangeMembersInheritancePolicyDetails; - -/// (no description). @note Ensure the -/// `isSharedFolderChangeMembersManagementPolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *sharedFolderChangeMembersManagementPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharedFolderChangeMembersPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeMembersPolicyDetails *sharedFolderChangeMembersPolicyDetails; - -/// (no description). @note Ensure the `isSharedFolderCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderCreateDetails *sharedFolderCreateDetails; - -/// (no description). @note Ensure the `isSharedFolderDeclineInvitationDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderDeclineInvitationDetails *sharedFolderDeclineInvitationDetails; - -/// (no description). @note Ensure the `isSharedFolderMountDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMountDetails *sharedFolderMountDetails; - -/// (no description). @note Ensure the `isSharedFolderNestDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderNestDetails *sharedFolderNestDetails; - -/// (no description). @note Ensure the `isSharedFolderTransferOwnershipDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderTransferOwnershipDetails *sharedFolderTransferOwnershipDetails; - -/// (no description). @note Ensure the `isSharedFolderUnmountDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderUnmountDetails *sharedFolderUnmountDetails; - -/// (no description). @note Ensure the `isSharedLinkAddExpiryDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkAddExpiryDetails *sharedLinkAddExpiryDetails; - -/// (no description). @note Ensure the `isSharedLinkChangeExpiryDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeExpiryDetails *sharedLinkChangeExpiryDetails; - -/// (no description). @note Ensure the `isSharedLinkChangeVisibilityDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeVisibilityDetails *sharedLinkChangeVisibilityDetails; - -/// (no description). @note Ensure the `isSharedLinkCopyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCopyDetails *sharedLinkCopyDetails; - -/// (no description). @note Ensure the `isSharedLinkCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCreateDetails *sharedLinkCreateDetails; - -/// (no description). @note Ensure the `isSharedLinkDisableDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDisableDetails *sharedLinkDisableDetails; - -/// (no description). @note Ensure the `isSharedLinkDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDownloadDetails *sharedLinkDownloadDetails; - -/// (no description). @note Ensure the `isSharedLinkRemoveExpiryDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkRemoveExpiryDetails *sharedLinkRemoveExpiryDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsAddExpirationDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddExpirationDetails *sharedLinkSettingsAddExpirationDetails; - -/// (no description). @note Ensure the `isSharedLinkSettingsAddPasswordDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddPasswordDetails *sharedLinkSettingsAddPasswordDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsAllowDownloadDisabledDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *sharedLinkSettingsAllowDownloadDisabledDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsAllowDownloadEnabledDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *sharedLinkSettingsAllowDownloadEnabledDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsChangeAudienceDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *sharedLinkSettingsChangeAudienceDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsChangeExpirationDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *sharedLinkSettingsChangeExpirationDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsChangePasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsChangePasswordDetails *sharedLinkSettingsChangePasswordDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsRemoveExpirationDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *sharedLinkSettingsRemoveExpirationDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsRemovePasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *sharedLinkSettingsRemovePasswordDetails; - -/// (no description). @note Ensure the `isSharedLinkShareDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkShareDetails *sharedLinkShareDetails; - -/// (no description). @note Ensure the `isSharedLinkViewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkViewDetails *sharedLinkViewDetails; - -/// (no description). @note Ensure the `isSharedNoteOpenedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedNoteOpenedDetails *sharedNoteOpenedDetails; - -/// (no description). @note Ensure the `isShmodelDisableDownloadsDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelDisableDownloadsDetails *shmodelDisableDownloadsDetails; - -/// (no description). @note Ensure the `isShmodelEnableDownloadsDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelEnableDownloadsDetails *shmodelEnableDownloadsDetails; - -/// (no description). @note Ensure the `isShmodelGroupShareDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelGroupShareDetails *shmodelGroupShareDetails; - -/// (no description). @note Ensure the `isShowcaseAccessGrantedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAccessGrantedDetails *showcaseAccessGrantedDetails; - -/// (no description). @note Ensure the `isShowcaseAddMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAddMemberDetails *showcaseAddMemberDetails; - -/// (no description). @note Ensure the `isShowcaseArchivedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseArchivedDetails *showcaseArchivedDetails; - -/// (no description). @note Ensure the `isShowcaseCreatedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseCreatedDetails *showcaseCreatedDetails; - -/// (no description). @note Ensure the `isShowcaseDeleteCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDeleteCommentDetails *showcaseDeleteCommentDetails; - -/// (no description). @note Ensure the `isShowcaseEditedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditedDetails *showcaseEditedDetails; - -/// (no description). @note Ensure the `isShowcaseEditCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditCommentDetails *showcaseEditCommentDetails; - -/// (no description). @note Ensure the `isShowcaseFileAddedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileAddedDetails *showcaseFileAddedDetails; - -/// (no description). @note Ensure the `isShowcaseFileDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileDownloadDetails *showcaseFileDownloadDetails; - -/// (no description). @note Ensure the `isShowcaseFileRemovedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileRemovedDetails *showcaseFileRemovedDetails; - -/// (no description). @note Ensure the `isShowcaseFileViewDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileViewDetails *showcaseFileViewDetails; - -/// (no description). @note Ensure the `isShowcasePermanentlyDeletedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePermanentlyDeletedDetails *showcasePermanentlyDeletedDetails; - -/// (no description). @note Ensure the `isShowcasePostCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePostCommentDetails *showcasePostCommentDetails; - -/// (no description). @note Ensure the `isShowcaseRemoveMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRemoveMemberDetails *showcaseRemoveMemberDetails; - -/// (no description). @note Ensure the `isShowcaseRenamedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRenamedDetails *showcaseRenamedDetails; - -/// (no description). @note Ensure the `isShowcaseRequestAccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRequestAccessDetails *showcaseRequestAccessDetails; - -/// (no description). @note Ensure the `isShowcaseResolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseResolveCommentDetails *showcaseResolveCommentDetails; - -/// (no description). @note Ensure the `isShowcaseRestoredDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRestoredDetails *showcaseRestoredDetails; - -/// (no description). @note Ensure the `isShowcaseTrashedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedDetails *showcaseTrashedDetails; - -/// (no description). @note Ensure the `isShowcaseTrashedDeprecatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedDeprecatedDetails *showcaseTrashedDeprecatedDetails; - -/// (no description). @note Ensure the `isShowcaseUnresolveCommentDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUnresolveCommentDetails *showcaseUnresolveCommentDetails; - -/// (no description). @note Ensure the `isShowcaseUntrashedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedDetails *showcaseUntrashedDetails; - -/// (no description). @note Ensure the `isShowcaseUntrashedDeprecatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedDeprecatedDetails *showcaseUntrashedDeprecatedDetails; - -/// (no description). @note Ensure the `isShowcaseViewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseViewDetails *showcaseViewDetails; - -/// (no description). @note Ensure the `isSsoAddCertDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddCertDetails *ssoAddCertDetails; - -/// (no description). @note Ensure the `isSsoAddLoginUrlDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLoginUrlDetails *ssoAddLoginUrlDetails; - -/// (no description). @note Ensure the `isSsoAddLogoutUrlDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLogoutUrlDetails *ssoAddLogoutUrlDetails; - -/// (no description). @note Ensure the `isSsoChangeCertDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeCertDetails *ssoChangeCertDetails; - -/// (no description). @note Ensure the `isSsoChangeLoginUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLoginUrlDetails *ssoChangeLoginUrlDetails; - -/// (no description). @note Ensure the `isSsoChangeLogoutUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLogoutUrlDetails *ssoChangeLogoutUrlDetails; - -/// (no description). @note Ensure the `isSsoChangeSamlIdentityModeDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeSamlIdentityModeDetails *ssoChangeSamlIdentityModeDetails; - -/// (no description). @note Ensure the `isSsoRemoveCertDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveCertDetails *ssoRemoveCertDetails; - -/// (no description). @note Ensure the `isSsoRemoveLoginUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLoginUrlDetails *ssoRemoveLoginUrlDetails; - -/// (no description). @note Ensure the `isSsoRemoveLogoutUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLogoutUrlDetails *ssoRemoveLogoutUrlDetails; - -/// (no description). @note Ensure the `isTeamFolderChangeStatusDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderChangeStatusDetails *teamFolderChangeStatusDetails; - -/// (no description). @note Ensure the `isTeamFolderCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderCreateDetails *teamFolderCreateDetails; - -/// (no description). @note Ensure the `isTeamFolderDowngradeDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderDowngradeDetails *teamFolderDowngradeDetails; - -/// (no description). @note Ensure the `isTeamFolderPermanentlyDeleteDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderPermanentlyDeleteDetails *teamFolderPermanentlyDeleteDetails; - -/// (no description). @note Ensure the `isTeamFolderRenameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderRenameDetails *teamFolderRenameDetails; - -/// (no description). @note Ensure the -/// `isTeamSelectiveSyncSettingsChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *teamSelectiveSyncSettingsChangedDetails; - -/// (no description). @note Ensure the `isAccountCaptureChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureChangePolicyDetails *accountCaptureChangePolicyDetails; - -/// (no description). @note Ensure the `isAdminEmailRemindersChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersChangedDetails *adminEmailRemindersChangedDetails; - -/// (no description). @note Ensure the `isAllowDownloadDisabledDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadDisabledDetails *allowDownloadDisabledDetails; - -/// (no description). @note Ensure the `isAllowDownloadEnabledDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadEnabledDetails *allowDownloadEnabledDetails; - -/// (no description). @note Ensure the `isAppPermissionsChangedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppPermissionsChangedDetails *appPermissionsChangedDetails; - -/// (no description). @note Ensure the `isCameraUploadsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicyChangedDetails *cameraUploadsPolicyChangedDetails; - -/// (no description). @note Ensure the `isCaptureTranscriptPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicyChangedDetails *captureTranscriptPolicyChangedDetails; - -/// (no description). @note Ensure the `isClassificationChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationChangePolicyDetails *classificationChangePolicyDetails; - -/// (no description). @note Ensure the `isComputerBackupPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicyChangedDetails *computerBackupPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isContentAdministrationPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGContentAdministrationPolicyChangedDetails *contentAdministrationPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isDataPlacementRestrictionChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *dataPlacementRestrictionChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isDataPlacementRestrictionSatisfyPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *dataPlacementRestrictionSatisfyPolicyDetails; - -/// (no description). @note Ensure the `isDeviceApprovalsAddExceptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsAddExceptionDetails *deviceApprovalsAddExceptionDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeDesktopPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *deviceApprovalsChangeDesktopPolicyDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeMobilePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *deviceApprovalsChangeMobilePolicyDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeOverageActionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *deviceApprovalsChangeOverageActionDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeUnlinkActionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *deviceApprovalsChangeUnlinkActionDetails; - -/// (no description). @note Ensure the `isDeviceApprovalsRemoveExceptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *deviceApprovalsRemoveExceptionDetails; - -/// (no description). @note Ensure the -/// `isDirectoryRestrictionsAddMembersDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDirectoryRestrictionsAddMembersDetails *directoryRestrictionsAddMembersDetails; - -/// (no description). @note Ensure the -/// `isDirectoryRestrictionsRemoveMembersDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *directoryRestrictionsRemoveMembersDetails; - -/// (no description). @note Ensure the `isDropboxPasswordsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicyChangedDetails *dropboxPasswordsPolicyChangedDetails; - -/// (no description). @note Ensure the `isEmailIngestPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicyChangedDetails *emailIngestPolicyChangedDetails; - -/// (no description). @note Ensure the `isEmmAddExceptionDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmAddExceptionDetails *emmAddExceptionDetails; - -/// (no description). @note Ensure the `isEmmChangePolicyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmChangePolicyDetails *emmChangePolicyDetails; - -/// (no description). @note Ensure the `isEmmRemoveExceptionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRemoveExceptionDetails *emmRemoveExceptionDetails; - -/// (no description). @note Ensure the -/// `isExtendedVersionHistoryChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *extendedVersionHistoryChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isExternalDriveBackupPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupPolicyChangedDetails *externalDriveBackupPolicyChangedDetails; - -/// (no description). @note Ensure the `isFileCommentsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsChangePolicyDetails *fileCommentsChangePolicyDetails; - -/// (no description). @note Ensure the `isFileLockingPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingPolicyChangedDetails *fileLockingPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isFileProviderMigrationPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFileProviderMigrationPolicyChangedDetails *fileProviderMigrationPolicyChangedDetails; - -/// (no description). @note Ensure the `isFileRequestsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsChangePolicyDetails *fileRequestsChangePolicyDetails; - -/// (no description). @note Ensure the `isFileRequestsEmailsEnabledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsEmailsEnabledDetails *fileRequestsEmailsEnabledDetails; - -/// (no description). @note Ensure the -/// `isFileRequestsEmailsRestrictedToTeamOnlyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *fileRequestsEmailsRestrictedToTeamOnlyDetails; - -/// (no description). @note Ensure the `isFileTransfersPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicyChangedDetails *fileTransfersPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isFolderLinkRestrictionPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *folderLinkRestrictionPolicyChangedDetails; - -/// (no description). @note Ensure the `isGoogleSsoChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoChangePolicyDetails *googleSsoChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isGroupUserManagementChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupUserManagementChangePolicyDetails *groupUserManagementChangePolicyDetails; - -/// (no description). @note Ensure the `isIntegrationPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicyChangedDetails *integrationPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isInviteAcceptanceEmailPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *inviteAcceptanceEmailPolicyChangedDetails; - -/// (no description). @note Ensure the `isMemberRequestsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsChangePolicyDetails *memberRequestsChangePolicyDetails; - -/// (no description). @note Ensure the `isMemberSendInvitePolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicyChangedDetails *memberSendInvitePolicyChangedDetails; - -/// (no description). @note Ensure the `isMemberSpaceLimitsAddExceptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *memberSpaceLimitsAddExceptionDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsChangeCapsTypePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *memberSpaceLimitsChangeCapsTypePolicyDetails; - -/// (no description). @note Ensure the `isMemberSpaceLimitsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *memberSpaceLimitsChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsRemoveExceptionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *memberSpaceLimitsRemoveExceptionDetails; - -/// (no description). @note Ensure the `isMemberSuggestionsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsChangePolicyDetails *memberSuggestionsChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isMicrosoftOfficeAddinChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *microsoftOfficeAddinChangePolicyDetails; - -/// (no description). @note Ensure the `isNetworkControlChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlChangePolicyDetails *networkControlChangePolicyDetails; - -/// (no description). @note Ensure the `isPaperChangeDeploymentPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeDeploymentPolicyDetails *paperChangeDeploymentPolicyDetails; - -/// (no description). @note Ensure the `isPaperChangeMemberLinkPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberLinkPolicyDetails *paperChangeMemberLinkPolicyDetails; - -/// (no description). @note Ensure the `isPaperChangeMemberPolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberPolicyDetails *paperChangeMemberPolicyDetails; - -/// (no description). @note Ensure the `isPaperChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangePolicyDetails *paperChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isPaperDefaultFolderPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *paperDefaultFolderPolicyChangedDetails; - -/// (no description). @note Ensure the `isPaperDesktopPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicyChangedDetails *paperDesktopPolicyChangedDetails; - -/// (no description). @note Ensure the `isPaperEnabledUsersGroupAdditionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *paperEnabledUsersGroupAdditionDetails; - -/// (no description). @note Ensure the `isPaperEnabledUsersGroupRemovalDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *paperEnabledUsersGroupRemovalDetails; - -/// (no description). @note Ensure the -/// `isPasswordStrengthRequirementsChangePolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *passwordStrengthRequirementsChangePolicyDetails; - -/// (no description). @note Ensure the `isPermanentDeleteChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPermanentDeleteChangePolicyDetails *permanentDeleteChangePolicyDetails; - -/// (no description). @note Ensure the `isResellerSupportChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportChangePolicyDetails *resellerSupportChangePolicyDetails; - -/// (no description). @note Ensure the `isRewindPolicyChangedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicyChangedDetails *rewindPolicyChangedDetails; - -/// (no description). @note Ensure the `isSendForSignaturePolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicyChangedDetails *sendForSignaturePolicyChangedDetails; - -/// (no description). @note Ensure the `isSharingChangeFolderJoinPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeFolderJoinPolicyDetails *sharingChangeFolderJoinPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharingChangeLinkAllowChangeExpirationPolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *sharingChangeLinkAllowChangeExpirationPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharingChangeLinkDefaultExpirationPolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *sharingChangeLinkDefaultExpirationPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharingChangeLinkEnforcePasswordPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *sharingChangeLinkEnforcePasswordPolicyDetails; - -/// (no description). @note Ensure the `isSharingChangeLinkPolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeLinkPolicyDetails *sharingChangeLinkPolicyDetails; - -/// (no description). @note Ensure the `isSharingChangeMemberPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeMemberPolicyDetails *sharingChangeMemberPolicyDetails; - -/// (no description). @note Ensure the `isShowcaseChangeDownloadPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeDownloadPolicyDetails *showcaseChangeDownloadPolicyDetails; - -/// (no description). @note Ensure the `isShowcaseChangeEnabledPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeEnabledPolicyDetails *showcaseChangeEnabledPolicyDetails; - -/// (no description). @note Ensure the -/// `isShowcaseChangeExternalSharingPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *showcaseChangeExternalSharingPolicyDetails; - -/// (no description). @note Ensure the `isSmarterSmartSyncPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *smarterSmartSyncPolicyChangedDetails; - -/// (no description). @note Ensure the `isSmartSyncChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncChangePolicyDetails *smartSyncChangePolicyDetails; - -/// (no description). @note Ensure the `isSmartSyncNotOptOutDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncNotOptOutDetails *smartSyncNotOptOutDetails; - -/// (no description). @note Ensure the `isSmartSyncOptOutDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutDetails *smartSyncOptOutDetails; - -/// (no description). @note Ensure the `isSsoChangePolicyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangePolicyDetails *ssoChangePolicyDetails; - -/// (no description). @note Ensure the `isTeamBrandingPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicyChangedDetails *teamBrandingPolicyChangedDetails; - -/// (no description). @note Ensure the `isTeamExtensionsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicyChangedDetails *teamExtensionsPolicyChangedDetails; - -/// (no description). @note Ensure the `isTeamSelectiveSyncPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *teamSelectiveSyncPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isTeamSharingWhitelistSubjectsChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *teamSharingWhitelistSubjectsChangedDetails; - -/// (no description). @note Ensure the `isTfaAddExceptionDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddExceptionDetails *tfaAddExceptionDetails; - -/// (no description). @note Ensure the `isTfaChangePolicyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangePolicyDetails *tfaChangePolicyDetails; - -/// (no description). @note Ensure the `isTfaRemoveExceptionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveExceptionDetails *tfaRemoveExceptionDetails; - -/// (no description). @note Ensure the `isTwoAccountChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountChangePolicyDetails *twoAccountChangePolicyDetails; - -/// (no description). @note Ensure the `isViewerInfoPolicyChangedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGViewerInfoPolicyChangedDetails *viewerInfoPolicyChangedDetails; - -/// (no description). @note Ensure the `isWatermarkingPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicyChangedDetails *watermarkingPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isWebSessionsChangeActiveSessionLimitDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *webSessionsChangeActiveSessionLimitDetails; - -/// (no description). @note Ensure the -/// `isWebSessionsChangeFixedLengthPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *webSessionsChangeFixedLengthPolicyDetails; - -/// (no description). @note Ensure the -/// `isWebSessionsChangeIdleLengthPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *webSessionsChangeIdleLengthPolicyDetails; - -/// (no description). @note Ensure the -/// `isDataResidencyMigrationRequestSuccessfulDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *dataResidencyMigrationRequestSuccessfulDetails; - -/// (no description). @note Ensure the -/// `isDataResidencyMigrationRequestUnsuccessfulDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *dataResidencyMigrationRequestUnsuccessfulDetails; - -/// (no description). @note Ensure the `isTeamMergeFromDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeFromDetails *teamMergeFromDetails; - -/// (no description). @note Ensure the `isTeamMergeToDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeToDetails *teamMergeToDetails; - -/// (no description). @note Ensure the `isTeamProfileAddBackgroundDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddBackgroundDetails *teamProfileAddBackgroundDetails; - -/// (no description). @note Ensure the `isTeamProfileAddLogoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddLogoDetails *teamProfileAddLogoDetails; - -/// (no description). @note Ensure the `isTeamProfileChangeBackgroundDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeBackgroundDetails *teamProfileChangeBackgroundDetails; - -/// (no description). @note Ensure the -/// `isTeamProfileChangeDefaultLanguageDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *teamProfileChangeDefaultLanguageDetails; - -/// (no description). @note Ensure the `isTeamProfileChangeLogoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeLogoDetails *teamProfileChangeLogoDetails; - -/// (no description). @note Ensure the `isTeamProfileChangeNameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeNameDetails *teamProfileChangeNameDetails; - -/// (no description). @note Ensure the `isTeamProfileRemoveBackgroundDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveBackgroundDetails *teamProfileRemoveBackgroundDetails; - -/// (no description). @note Ensure the `isTeamProfileRemoveLogoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveLogoDetails *teamProfileRemoveLogoDetails; - -/// (no description). @note Ensure the `isTfaAddBackupPhoneDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddBackupPhoneDetails *tfaAddBackupPhoneDetails; - -/// (no description). @note Ensure the `isTfaAddSecurityKeyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddSecurityKeyDetails *tfaAddSecurityKeyDetails; - -/// (no description). @note Ensure the `isTfaChangeBackupPhoneDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeBackupPhoneDetails *tfaChangeBackupPhoneDetails; - -/// (no description). @note Ensure the `isTfaChangeStatusDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeStatusDetails *tfaChangeStatusDetails; - -/// (no description). @note Ensure the `isTfaRemoveBackupPhoneDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveBackupPhoneDetails *tfaRemoveBackupPhoneDetails; - -/// (no description). @note Ensure the `isTfaRemoveSecurityKeyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveSecurityKeyDetails *tfaRemoveSecurityKeyDetails; - -/// (no description). @note Ensure the `isTfaResetDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaResetDetails *tfaResetDetails; - -/// (no description). @note Ensure the `isChangedEnterpriseAdminRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGChangedEnterpriseAdminRoleDetails *changedEnterpriseAdminRoleDetails; - -/// (no description). @note Ensure the -/// `isChangedEnterpriseConnectedTeamStatusDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *changedEnterpriseConnectedTeamStatusDetails; - -/// (no description). @note Ensure the `isEndedEnterpriseAdminSessionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEndedEnterpriseAdminSessionDetails *endedEnterpriseAdminSessionDetails; - -/// (no description). @note Ensure the -/// `isEndedEnterpriseAdminSessionDeprecatedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *endedEnterpriseAdminSessionDeprecatedDetails; - -/// (no description). @note Ensure the `isEnterpriseSettingsLockingDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEnterpriseSettingsLockingDetails *enterpriseSettingsLockingDetails; - -/// (no description). @note Ensure the `isGuestAdminChangeStatusDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminChangeStatusDetails *guestAdminChangeStatusDetails; - -/// (no description). @note Ensure the `isStartedEnterpriseAdminSessionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGStartedEnterpriseAdminSessionDetails *startedEnterpriseAdminSessionDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestAcceptedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedDetails *teamMergeRequestAcceptedDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestAcceptedShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *teamMergeRequestAcceptedShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestAcceptedShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *teamMergeRequestAcceptedShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestAutoCanceledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAutoCanceledDetails *teamMergeRequestAutoCanceledDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestCanceledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledDetails *teamMergeRequestCanceledDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestCanceledShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *teamMergeRequestCanceledShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestCanceledShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *teamMergeRequestCanceledShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestExpiredDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredDetails *teamMergeRequestExpiredDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestExpiredShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *teamMergeRequestExpiredShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestExpiredShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *teamMergeRequestExpiredShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestRejectedShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *teamMergeRequestRejectedShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestRejectedShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *teamMergeRequestRejectedShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestReminderDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderDetails *teamMergeRequestReminderDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestReminderShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *teamMergeRequestReminderShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestReminderShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *teamMergeRequestReminderShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestRevokedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestRevokedDetails *teamMergeRequestRevokedDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestSentShownToPrimaryTeamDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *teamMergeRequestSentShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestSentShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *teamMergeRequestSentShownToSecondaryTeamDetails; - -/// Hints that this event was returned with missing details due to an internal -/// error. @note Ensure the `isMissingDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMissingDetails *missingDetails; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "admin_alerting_alert_state_changed_details". -/// -/// @param adminAlertingAlertStateChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingAlertStateChangedDetails: - (DBTEAMLOGAdminAlertingAlertStateChangedDetails *)adminAlertingAlertStateChangedDetails; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_changed_alert_config_details". -/// -/// @param adminAlertingChangedAlertConfigDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingChangedAlertConfigDetails: - (DBTEAMLOGAdminAlertingChangedAlertConfigDetails *)adminAlertingChangedAlertConfigDetails; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_triggered_alert_details". -/// -/// @param adminAlertingTriggeredAlertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingTriggeredAlertDetails: - (DBTEAMLOGAdminAlertingTriggeredAlertDetails *)adminAlertingTriggeredAlertDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_completed_details". -/// -/// @param ransomwareRestoreProcessCompletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessCompletedDetails: - (DBTEAMLOGRansomwareRestoreProcessCompletedDetails *)ransomwareRestoreProcessCompletedDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_started_details". -/// -/// @param ransomwareRestoreProcessStartedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessStartedDetails: - (DBTEAMLOGRansomwareRestoreProcessStartedDetails *)ransomwareRestoreProcessStartedDetails; - -/// -/// Initializes union class with tag state of -/// "app_blocked_by_permissions_details". -/// -/// @param appBlockedByPermissionsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppBlockedByPermissionsDetails: - (DBTEAMLOGAppBlockedByPermissionsDetails *)appBlockedByPermissionsDetails; - -/// -/// Initializes union class with tag state of "app_link_team_details". -/// -/// @param appLinkTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkTeamDetails:(DBTEAMLOGAppLinkTeamDetails *)appLinkTeamDetails; - -/// -/// Initializes union class with tag state of "app_link_user_details". -/// -/// @param appLinkUserDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkUserDetails:(DBTEAMLOGAppLinkUserDetails *)appLinkUserDetails; - -/// -/// Initializes union class with tag state of "app_unlink_team_details". -/// -/// @param appUnlinkTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkTeamDetails:(DBTEAMLOGAppUnlinkTeamDetails *)appUnlinkTeamDetails; - -/// -/// Initializes union class with tag state of "app_unlink_user_details". -/// -/// @param appUnlinkUserDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkUserDetails:(DBTEAMLOGAppUnlinkUserDetails *)appUnlinkUserDetails; - -/// -/// Initializes union class with tag state of "integration_connected_details". -/// -/// @param integrationConnectedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationConnectedDetails:(DBTEAMLOGIntegrationConnectedDetails *)integrationConnectedDetails; - -/// -/// Initializes union class with tag state of -/// "integration_disconnected_details". -/// -/// @param integrationDisconnectedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationDisconnectedDetails: - (DBTEAMLOGIntegrationDisconnectedDetails *)integrationDisconnectedDetails; - -/// -/// Initializes union class with tag state of "file_add_comment_details". -/// -/// @param fileAddCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddCommentDetails:(DBTEAMLOGFileAddCommentDetails *)fileAddCommentDetails; - -/// -/// Initializes union class with tag state of -/// "file_change_comment_subscription_details". -/// -/// @param fileChangeCommentSubscriptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileChangeCommentSubscriptionDetails: - (DBTEAMLOGFileChangeCommentSubscriptionDetails *)fileChangeCommentSubscriptionDetails; - -/// -/// Initializes union class with tag state of "file_delete_comment_details". -/// -/// @param fileDeleteCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteCommentDetails:(DBTEAMLOGFileDeleteCommentDetails *)fileDeleteCommentDetails; - -/// -/// Initializes union class with tag state of "file_edit_comment_details". -/// -/// @param fileEditCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditCommentDetails:(DBTEAMLOGFileEditCommentDetails *)fileEditCommentDetails; - -/// -/// Initializes union class with tag state of "file_like_comment_details". -/// -/// @param fileLikeCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLikeCommentDetails:(DBTEAMLOGFileLikeCommentDetails *)fileLikeCommentDetails; - -/// -/// Initializes union class with tag state of "file_resolve_comment_details". -/// -/// @param fileResolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileResolveCommentDetails:(DBTEAMLOGFileResolveCommentDetails *)fileResolveCommentDetails; - -/// -/// Initializes union class with tag state of "file_unlike_comment_details". -/// -/// @param fileUnlikeCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnlikeCommentDetails:(DBTEAMLOGFileUnlikeCommentDetails *)fileUnlikeCommentDetails; - -/// -/// Initializes union class with tag state of "file_unresolve_comment_details". -/// -/// @param fileUnresolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnresolveCommentDetails:(DBTEAMLOGFileUnresolveCommentDetails *)fileUnresolveCommentDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folders_details". -/// -/// @param governancePolicyAddFoldersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFoldersDetails: - (DBTEAMLOGGovernancePolicyAddFoldersDetails *)governancePolicyAddFoldersDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folder_failed_details". -/// -/// @param governancePolicyAddFolderFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolderFailedDetails: - (DBTEAMLOGGovernancePolicyAddFolderFailedDetails *)governancePolicyAddFolderFailedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_content_disposed_details". -/// -/// @param governancePolicyContentDisposedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyContentDisposedDetails: - (DBTEAMLOGGovernancePolicyContentDisposedDetails *)governancePolicyContentDisposedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_create_details". -/// -/// @param governancePolicyCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyCreateDetails: - (DBTEAMLOGGovernancePolicyCreateDetails *)governancePolicyCreateDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_delete_details". -/// -/// @param governancePolicyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyDeleteDetails: - (DBTEAMLOGGovernancePolicyDeleteDetails *)governancePolicyDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_edit_details_details". -/// -/// @param governancePolicyEditDetailsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDetailsDetails: - (DBTEAMLOGGovernancePolicyEditDetailsDetails *)governancePolicyEditDetailsDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_edit_duration_details". -/// -/// @param governancePolicyEditDurationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDurationDetails: - (DBTEAMLOGGovernancePolicyEditDurationDetails *)governancePolicyEditDurationDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_created_details". -/// -/// @param governancePolicyExportCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportCreatedDetails: - (DBTEAMLOGGovernancePolicyExportCreatedDetails *)governancePolicyExportCreatedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_removed_details". -/// -/// @param governancePolicyExportRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportRemovedDetails: - (DBTEAMLOGGovernancePolicyExportRemovedDetails *)governancePolicyExportRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_remove_folders_details". -/// -/// @param governancePolicyRemoveFoldersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyRemoveFoldersDetails: - (DBTEAMLOGGovernancePolicyRemoveFoldersDetails *)governancePolicyRemoveFoldersDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_report_created_details". -/// -/// @param governancePolicyReportCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyReportCreatedDetails: - (DBTEAMLOGGovernancePolicyReportCreatedDetails *)governancePolicyReportCreatedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_zip_part_downloaded_details". -/// -/// @param governancePolicyZipPartDownloadedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyZipPartDownloadedDetails: - (DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *)governancePolicyZipPartDownloadedDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_activate_a_hold_details". -/// -/// @param legalHoldsActivateAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsActivateAHoldDetails: - (DBTEAMLOGLegalHoldsActivateAHoldDetails *)legalHoldsActivateAHoldDetails; - -/// -/// Initializes union class with tag state of "legal_holds_add_members_details". -/// -/// @param legalHoldsAddMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsAddMembersDetails:(DBTEAMLOGLegalHoldsAddMembersDetails *)legalHoldsAddMembersDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_change_hold_details_details". -/// -/// @param legalHoldsChangeHoldDetailsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldDetailsDetails: - (DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *)legalHoldsChangeHoldDetailsDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_change_hold_name_details". -/// -/// @param legalHoldsChangeHoldNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldNameDetails: - (DBTEAMLOGLegalHoldsChangeHoldNameDetails *)legalHoldsChangeHoldNameDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_a_hold_details". -/// -/// @param legalHoldsExportAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportAHoldDetails: - (DBTEAMLOGLegalHoldsExportAHoldDetails *)legalHoldsExportAHoldDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_cancelled_details". -/// -/// @param legalHoldsExportCancelledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportCancelledDetails: - (DBTEAMLOGLegalHoldsExportCancelledDetails *)legalHoldsExportCancelledDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_downloaded_details". -/// -/// @param legalHoldsExportDownloadedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportDownloadedDetails: - (DBTEAMLOGLegalHoldsExportDownloadedDetails *)legalHoldsExportDownloadedDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_removed_details". -/// -/// @param legalHoldsExportRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportRemovedDetails: - (DBTEAMLOGLegalHoldsExportRemovedDetails *)legalHoldsExportRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_release_a_hold_details". -/// -/// @param legalHoldsReleaseAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReleaseAHoldDetails: - (DBTEAMLOGLegalHoldsReleaseAHoldDetails *)legalHoldsReleaseAHoldDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_remove_members_details". -/// -/// @param legalHoldsRemoveMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsRemoveMembersDetails: - (DBTEAMLOGLegalHoldsRemoveMembersDetails *)legalHoldsRemoveMembersDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_report_a_hold_details". -/// -/// @param legalHoldsReportAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReportAHoldDetails: - (DBTEAMLOGLegalHoldsReportAHoldDetails *)legalHoldsReportAHoldDetails; - -/// -/// Initializes union class with tag state of -/// "device_change_ip_desktop_details". -/// -/// @param deviceChangeIpDesktopDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpDesktopDetails: - (DBTEAMLOGDeviceChangeIpDesktopDetails *)deviceChangeIpDesktopDetails; - -/// -/// Initializes union class with tag state of "device_change_ip_mobile_details". -/// -/// @param deviceChangeIpMobileDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpMobileDetails:(DBTEAMLOGDeviceChangeIpMobileDetails *)deviceChangeIpMobileDetails; - -/// -/// Initializes union class with tag state of "device_change_ip_web_details". -/// -/// @param deviceChangeIpWebDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpWebDetails:(DBTEAMLOGDeviceChangeIpWebDetails *)deviceChangeIpWebDetails; - -/// -/// Initializes union class with tag state of -/// "device_delete_on_unlink_fail_details". -/// -/// @param deviceDeleteOnUnlinkFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkFailDetails: - (DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *)deviceDeleteOnUnlinkFailDetails; - -/// -/// Initializes union class with tag state of -/// "device_delete_on_unlink_success_details". -/// -/// @param deviceDeleteOnUnlinkSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkSuccessDetails: - (DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *)deviceDeleteOnUnlinkSuccessDetails; - -/// -/// Initializes union class with tag state of "device_link_fail_details". -/// -/// @param deviceLinkFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkFailDetails:(DBTEAMLOGDeviceLinkFailDetails *)deviceLinkFailDetails; - -/// -/// Initializes union class with tag state of "device_link_success_details". -/// -/// @param deviceLinkSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkSuccessDetails:(DBTEAMLOGDeviceLinkSuccessDetails *)deviceLinkSuccessDetails; - -/// -/// Initializes union class with tag state of -/// "device_management_disabled_details". -/// -/// @param deviceManagementDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementDisabledDetails: - (DBTEAMLOGDeviceManagementDisabledDetails *)deviceManagementDisabledDetails; - -/// -/// Initializes union class with tag state of -/// "device_management_enabled_details". -/// -/// @param deviceManagementEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementEnabledDetails: - (DBTEAMLOGDeviceManagementEnabledDetails *)deviceManagementEnabledDetails; - -/// -/// Initializes union class with tag state of -/// "device_sync_backup_status_changed_details". -/// -/// @param deviceSyncBackupStatusChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSyncBackupStatusChangedDetails: - (DBTEAMLOGDeviceSyncBackupStatusChangedDetails *)deviceSyncBackupStatusChangedDetails; - -/// -/// Initializes union class with tag state of "device_unlink_details". -/// -/// @param deviceUnlinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceUnlinkDetails:(DBTEAMLOGDeviceUnlinkDetails *)deviceUnlinkDetails; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_exported_details". -/// -/// @param dropboxPasswordsExportedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsExportedDetails: - (DBTEAMLOGDropboxPasswordsExportedDetails *)dropboxPasswordsExportedDetails; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_new_device_enrolled_details". -/// -/// @param dropboxPasswordsNewDeviceEnrolledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsNewDeviceEnrolledDetails: - (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *)dropboxPasswordsNewDeviceEnrolledDetails; - -/// -/// Initializes union class with tag state of "emm_refresh_auth_token_details". -/// -/// @param emmRefreshAuthTokenDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRefreshAuthTokenDetails:(DBTEAMLOGEmmRefreshAuthTokenDetails *)emmRefreshAuthTokenDetails; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_eligibility_status_checked_details". -/// -/// @param externalDriveBackupEligibilityStatusCheckedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupEligibilityStatusCheckedDetails: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *)externalDriveBackupEligibilityStatusCheckedDetails; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_status_changed_details". -/// -/// @param externalDriveBackupStatusChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupStatusChangedDetails: - (DBTEAMLOGExternalDriveBackupStatusChangedDetails *)externalDriveBackupStatusChangedDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_availability_details". -/// -/// @param accountCaptureChangeAvailabilityDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangeAvailabilityDetails: - (DBTEAMLOGAccountCaptureChangeAvailabilityDetails *)accountCaptureChangeAvailabilityDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_migrate_account_details". -/// -/// @param accountCaptureMigrateAccountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureMigrateAccountDetails: - (DBTEAMLOGAccountCaptureMigrateAccountDetails *)accountCaptureMigrateAccountDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_notification_emails_sent_details". -/// -/// @param accountCaptureNotificationEmailsSentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureNotificationEmailsSentDetails: - (DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *)accountCaptureNotificationEmailsSentDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_relinquish_account_details". -/// -/// @param accountCaptureRelinquishAccountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureRelinquishAccountDetails: - (DBTEAMLOGAccountCaptureRelinquishAccountDetails *)accountCaptureRelinquishAccountDetails; - -/// -/// Initializes union class with tag state of "disabled_domain_invites_details". -/// -/// @param disabledDomainInvitesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledDomainInvitesDetails: - (DBTEAMLOGDisabledDomainInvitesDetails *)disabledDomainInvitesDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_approve_request_to_join_team_details". -/// -/// @param domainInvitesApproveRequestToJoinTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesApproveRequestToJoinTeamDetails: - (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *)domainInvitesApproveRequestToJoinTeamDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_decline_request_to_join_team_details". -/// -/// @param domainInvitesDeclineRequestToJoinTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesDeclineRequestToJoinTeamDetails: - (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *)domainInvitesDeclineRequestToJoinTeamDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_email_existing_users_details". -/// -/// @param domainInvitesEmailExistingUsersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesEmailExistingUsersDetails: - (DBTEAMLOGDomainInvitesEmailExistingUsersDetails *)domainInvitesEmailExistingUsersDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_request_to_join_team_details". -/// -/// @param domainInvitesRequestToJoinTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesRequestToJoinTeamDetails: - (DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *)domainInvitesRequestToJoinTeamDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_no_details". -/// -/// @param domainInvitesSetInviteNewUserPrefToNoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToNoDetails: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *)domainInvitesSetInviteNewUserPrefToNoDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_yes_details". -/// -/// @param domainInvitesSetInviteNewUserPrefToYesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToYesDetails: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *)domainInvitesSetInviteNewUserPrefToYesDetails; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_fail_details". -/// -/// @param domainVerificationAddDomainFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainFailDetails: - (DBTEAMLOGDomainVerificationAddDomainFailDetails *)domainVerificationAddDomainFailDetails; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_success_details". -/// -/// @param domainVerificationAddDomainSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainSuccessDetails: - (DBTEAMLOGDomainVerificationAddDomainSuccessDetails *)domainVerificationAddDomainSuccessDetails; - -/// -/// Initializes union class with tag state of -/// "domain_verification_remove_domain_details". -/// -/// @param domainVerificationRemoveDomainDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationRemoveDomainDetails: - (DBTEAMLOGDomainVerificationRemoveDomainDetails *)domainVerificationRemoveDomainDetails; - -/// -/// Initializes union class with tag state of "enabled_domain_invites_details". -/// -/// @param enabledDomainInvitesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabledDomainInvitesDetails:(DBTEAMLOGEnabledDomainInvitesDetails *)enabledDomainInvitesDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_cancel_key_deletion_details". -/// -/// @param teamEncryptionKeyCancelKeyDeletionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCancelKeyDeletionDetails: - (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *)teamEncryptionKeyCancelKeyDeletionDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_create_key_details". -/// -/// @param teamEncryptionKeyCreateKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCreateKeyDetails: - (DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *)teamEncryptionKeyCreateKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_delete_key_details". -/// -/// @param teamEncryptionKeyDeleteKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDeleteKeyDetails: - (DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *)teamEncryptionKeyDeleteKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_disable_key_details". -/// -/// @param teamEncryptionKeyDisableKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDisableKeyDetails: - (DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *)teamEncryptionKeyDisableKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_enable_key_details". -/// -/// @param teamEncryptionKeyEnableKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyEnableKeyDetails: - (DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *)teamEncryptionKeyEnableKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_rotate_key_details". -/// -/// @param teamEncryptionKeyRotateKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyRotateKeyDetails: - (DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *)teamEncryptionKeyRotateKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_schedule_key_deletion_details". -/// -/// @param teamEncryptionKeyScheduleKeyDeletionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyScheduleKeyDeletionDetails: - (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *)teamEncryptionKeyScheduleKeyDeletionDetails; - -/// -/// Initializes union class with tag state of "apply_naming_convention_details". -/// -/// @param applyNamingConventionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApplyNamingConventionDetails: - (DBTEAMLOGApplyNamingConventionDetails *)applyNamingConventionDetails; - -/// -/// Initializes union class with tag state of "create_folder_details". -/// -/// @param createFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateFolderDetails:(DBTEAMLOGCreateFolderDetails *)createFolderDetails; - -/// -/// Initializes union class with tag state of "file_add_details". -/// -/// @param fileAddDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddDetails:(DBTEAMLOGFileAddDetails *)fileAddDetails; - -/// -/// Initializes union class with tag state of -/// "file_add_from_automation_details". -/// -/// @param fileAddFromAutomationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddFromAutomationDetails: - (DBTEAMLOGFileAddFromAutomationDetails *)fileAddFromAutomationDetails; - -/// -/// Initializes union class with tag state of "file_copy_details". -/// -/// @param fileCopyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCopyDetails:(DBTEAMLOGFileCopyDetails *)fileCopyDetails; - -/// -/// Initializes union class with tag state of "file_delete_details". -/// -/// @param fileDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteDetails:(DBTEAMLOGFileDeleteDetails *)fileDeleteDetails; - -/// -/// Initializes union class with tag state of "file_download_details". -/// -/// @param fileDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDownloadDetails:(DBTEAMLOGFileDownloadDetails *)fileDownloadDetails; - -/// -/// Initializes union class with tag state of "file_edit_details". -/// -/// @param fileEditDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditDetails:(DBTEAMLOGFileEditDetails *)fileEditDetails; - -/// -/// Initializes union class with tag state of "file_get_copy_reference_details". -/// -/// @param fileGetCopyReferenceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileGetCopyReferenceDetails:(DBTEAMLOGFileGetCopyReferenceDetails *)fileGetCopyReferenceDetails; - -/// -/// Initializes union class with tag state of -/// "file_locking_lock_status_changed_details". -/// -/// @param fileLockingLockStatusChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingLockStatusChangedDetails: - (DBTEAMLOGFileLockingLockStatusChangedDetails *)fileLockingLockStatusChangedDetails; - -/// -/// Initializes union class with tag state of "file_move_details". -/// -/// @param fileMoveDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMoveDetails:(DBTEAMLOGFileMoveDetails *)fileMoveDetails; - -/// -/// Initializes union class with tag state of "file_permanently_delete_details". -/// -/// @param filePermanentlyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePermanentlyDeleteDetails: - (DBTEAMLOGFilePermanentlyDeleteDetails *)filePermanentlyDeleteDetails; - -/// -/// Initializes union class with tag state of "file_preview_details". -/// -/// @param filePreviewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePreviewDetails:(DBTEAMLOGFilePreviewDetails *)filePreviewDetails; - -/// -/// Initializes union class with tag state of "file_rename_details". -/// -/// @param fileRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRenameDetails:(DBTEAMLOGFileRenameDetails *)fileRenameDetails; - -/// -/// Initializes union class with tag state of "file_restore_details". -/// -/// @param fileRestoreDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRestoreDetails:(DBTEAMLOGFileRestoreDetails *)fileRestoreDetails; - -/// -/// Initializes union class with tag state of "file_revert_details". -/// -/// @param fileRevertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRevertDetails:(DBTEAMLOGFileRevertDetails *)fileRevertDetails; - -/// -/// Initializes union class with tag state of "file_rollback_changes_details". -/// -/// @param fileRollbackChangesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRollbackChangesDetails:(DBTEAMLOGFileRollbackChangesDetails *)fileRollbackChangesDetails; - -/// -/// Initializes union class with tag state of -/// "file_save_copy_reference_details". -/// -/// @param fileSaveCopyReferenceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSaveCopyReferenceDetails: - (DBTEAMLOGFileSaveCopyReferenceDetails *)fileSaveCopyReferenceDetails; - -/// -/// Initializes union class with tag state of -/// "folder_overview_description_changed_details". -/// -/// @param folderOverviewDescriptionChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewDescriptionChangedDetails: - (DBTEAMLOGFolderOverviewDescriptionChangedDetails *)folderOverviewDescriptionChangedDetails; - -/// -/// Initializes union class with tag state of -/// "folder_overview_item_pinned_details". -/// -/// @param folderOverviewItemPinnedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemPinnedDetails: - (DBTEAMLOGFolderOverviewItemPinnedDetails *)folderOverviewItemPinnedDetails; - -/// -/// Initializes union class with tag state of -/// "folder_overview_item_unpinned_details". -/// -/// @param folderOverviewItemUnpinnedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemUnpinnedDetails: - (DBTEAMLOGFolderOverviewItemUnpinnedDetails *)folderOverviewItemUnpinnedDetails; - -/// -/// Initializes union class with tag state of "object_label_added_details". -/// -/// @param objectLabelAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelAddedDetails:(DBTEAMLOGObjectLabelAddedDetails *)objectLabelAddedDetails; - -/// -/// Initializes union class with tag state of "object_label_removed_details". -/// -/// @param objectLabelRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelRemovedDetails:(DBTEAMLOGObjectLabelRemovedDetails *)objectLabelRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "object_label_updated_value_details". -/// -/// @param objectLabelUpdatedValueDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelUpdatedValueDetails: - (DBTEAMLOGObjectLabelUpdatedValueDetails *)objectLabelUpdatedValueDetails; - -/// -/// Initializes union class with tag state of -/// "organize_folder_with_tidy_details". -/// -/// @param organizeFolderWithTidyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizeFolderWithTidyDetails: - (DBTEAMLOGOrganizeFolderWithTidyDetails *)organizeFolderWithTidyDetails; - -/// -/// Initializes union class with tag state of "replay_file_delete_details". -/// -/// @param replayFileDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileDeleteDetails:(DBTEAMLOGReplayFileDeleteDetails *)replayFileDeleteDetails; - -/// -/// Initializes union class with tag state of "rewind_folder_details". -/// -/// @param rewindFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolderDetails:(DBTEAMLOGRewindFolderDetails *)rewindFolderDetails; - -/// -/// Initializes union class with tag state of "undo_naming_convention_details". -/// -/// @param undoNamingConventionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoNamingConventionDetails:(DBTEAMLOGUndoNamingConventionDetails *)undoNamingConventionDetails; - -/// -/// Initializes union class with tag state of -/// "undo_organize_folder_with_tidy_details". -/// -/// @param undoOrganizeFolderWithTidyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoOrganizeFolderWithTidyDetails: - (DBTEAMLOGUndoOrganizeFolderWithTidyDetails *)undoOrganizeFolderWithTidyDetails; - -/// -/// Initializes union class with tag state of "user_tags_added_details". -/// -/// @param userTagsAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsAddedDetails:(DBTEAMLOGUserTagsAddedDetails *)userTagsAddedDetails; - -/// -/// Initializes union class with tag state of "user_tags_removed_details". -/// -/// @param userTagsRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsRemovedDetails:(DBTEAMLOGUserTagsRemovedDetails *)userTagsRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "email_ingest_receive_file_details". -/// -/// @param emailIngestReceiveFileDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestReceiveFileDetails: - (DBTEAMLOGEmailIngestReceiveFileDetails *)emailIngestReceiveFileDetails; - -/// -/// Initializes union class with tag state of "file_request_change_details". -/// -/// @param fileRequestChangeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestChangeDetails:(DBTEAMLOGFileRequestChangeDetails *)fileRequestChangeDetails; - -/// -/// Initializes union class with tag state of "file_request_close_details". -/// -/// @param fileRequestCloseDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCloseDetails:(DBTEAMLOGFileRequestCloseDetails *)fileRequestCloseDetails; - -/// -/// Initializes union class with tag state of "file_request_create_details". -/// -/// @param fileRequestCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCreateDetails:(DBTEAMLOGFileRequestCreateDetails *)fileRequestCreateDetails; - -/// -/// Initializes union class with tag state of "file_request_delete_details". -/// -/// @param fileRequestDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestDeleteDetails:(DBTEAMLOGFileRequestDeleteDetails *)fileRequestDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "file_request_receive_file_details". -/// -/// @param fileRequestReceiveFileDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestReceiveFileDetails: - (DBTEAMLOGFileRequestReceiveFileDetails *)fileRequestReceiveFileDetails; - -/// -/// Initializes union class with tag state of "group_add_external_id_details". -/// -/// @param groupAddExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddExternalIdDetails:(DBTEAMLOGGroupAddExternalIdDetails *)groupAddExternalIdDetails; - -/// -/// Initializes union class with tag state of "group_add_member_details". -/// -/// @param groupAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddMemberDetails:(DBTEAMLOGGroupAddMemberDetails *)groupAddMemberDetails; - -/// -/// Initializes union class with tag state of -/// "group_change_external_id_details". -/// -/// @param groupChangeExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeExternalIdDetails: - (DBTEAMLOGGroupChangeExternalIdDetails *)groupChangeExternalIdDetails; - -/// -/// Initializes union class with tag state of -/// "group_change_management_type_details". -/// -/// @param groupChangeManagementTypeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeManagementTypeDetails: - (DBTEAMLOGGroupChangeManagementTypeDetails *)groupChangeManagementTypeDetails; - -/// -/// Initializes union class with tag state of -/// "group_change_member_role_details". -/// -/// @param groupChangeMemberRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeMemberRoleDetails: - (DBTEAMLOGGroupChangeMemberRoleDetails *)groupChangeMemberRoleDetails; - -/// -/// Initializes union class with tag state of "group_create_details". -/// -/// @param groupCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupCreateDetails:(DBTEAMLOGGroupCreateDetails *)groupCreateDetails; - -/// -/// Initializes union class with tag state of "group_delete_details". -/// -/// @param groupDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDeleteDetails:(DBTEAMLOGGroupDeleteDetails *)groupDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "group_description_updated_details". -/// -/// @param groupDescriptionUpdatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDescriptionUpdatedDetails: - (DBTEAMLOGGroupDescriptionUpdatedDetails *)groupDescriptionUpdatedDetails; - -/// -/// Initializes union class with tag state of -/// "group_join_policy_updated_details". -/// -/// @param groupJoinPolicyUpdatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupJoinPolicyUpdatedDetails: - (DBTEAMLOGGroupJoinPolicyUpdatedDetails *)groupJoinPolicyUpdatedDetails; - -/// -/// Initializes union class with tag state of "group_moved_details". -/// -/// @param groupMovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupMovedDetails:(DBTEAMLOGGroupMovedDetails *)groupMovedDetails; - -/// -/// Initializes union class with tag state of -/// "group_remove_external_id_details". -/// -/// @param groupRemoveExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveExternalIdDetails: - (DBTEAMLOGGroupRemoveExternalIdDetails *)groupRemoveExternalIdDetails; - -/// -/// Initializes union class with tag state of "group_remove_member_details". -/// -/// @param groupRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveMemberDetails:(DBTEAMLOGGroupRemoveMemberDetails *)groupRemoveMemberDetails; - -/// -/// Initializes union class with tag state of "group_rename_details". -/// -/// @param groupRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRenameDetails:(DBTEAMLOGGroupRenameDetails *)groupRenameDetails; - -/// -/// Initializes union class with tag state of -/// "account_lock_or_unlocked_details". -/// -/// @param accountLockOrUnlockedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountLockOrUnlockedDetails: - (DBTEAMLOGAccountLockOrUnlockedDetails *)accountLockOrUnlockedDetails; - -/// -/// Initializes union class with tag state of "emm_error_details". -/// -/// @param emmErrorDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmErrorDetails:(DBTEAMLOGEmmErrorDetails *)emmErrorDetails; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_in_via_trusted_teams_details". -/// -/// @param guestAdminSignedInViaTrustedTeamsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedInViaTrustedTeamsDetails: - (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *)guestAdminSignedInViaTrustedTeamsDetails; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_out_via_trusted_teams_details". -/// -/// @param guestAdminSignedOutViaTrustedTeamsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedOutViaTrustedTeamsDetails: - (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *)guestAdminSignedOutViaTrustedTeamsDetails; - -/// -/// Initializes union class with tag state of "login_fail_details". -/// -/// @param loginFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginFailDetails:(DBTEAMLOGLoginFailDetails *)loginFailDetails; - -/// -/// Initializes union class with tag state of "login_success_details". -/// -/// @param loginSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginSuccessDetails:(DBTEAMLOGLoginSuccessDetails *)loginSuccessDetails; - -/// -/// Initializes union class with tag state of "logout_details". -/// -/// @param logoutDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogoutDetails:(DBTEAMLOGLogoutDetails *)logoutDetails; - -/// -/// Initializes union class with tag state of -/// "reseller_support_session_end_details". -/// -/// @param resellerSupportSessionEndDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionEndDetails: - (DBTEAMLOGResellerSupportSessionEndDetails *)resellerSupportSessionEndDetails; - -/// -/// Initializes union class with tag state of -/// "reseller_support_session_start_details". -/// -/// @param resellerSupportSessionStartDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionStartDetails: - (DBTEAMLOGResellerSupportSessionStartDetails *)resellerSupportSessionStartDetails; - -/// -/// Initializes union class with tag state of "sign_in_as_session_end_details". -/// -/// @param signInAsSessionEndDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionEndDetails:(DBTEAMLOGSignInAsSessionEndDetails *)signInAsSessionEndDetails; - -/// -/// Initializes union class with tag state of -/// "sign_in_as_session_start_details". -/// -/// @param signInAsSessionStartDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionStartDetails:(DBTEAMLOGSignInAsSessionStartDetails *)signInAsSessionStartDetails; - -/// -/// Initializes union class with tag state of "sso_error_details". -/// -/// @param ssoErrorDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoErrorDetails:(DBTEAMLOGSsoErrorDetails *)ssoErrorDetails; - -/// -/// Initializes union class with tag state of -/// "backup_admin_invitation_sent_details". -/// -/// @param backupAdminInvitationSentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupAdminInvitationSentDetails: - (DBTEAMLOGBackupAdminInvitationSentDetails *)backupAdminInvitationSentDetails; - -/// -/// Initializes union class with tag state of -/// "backup_invitation_opened_details". -/// -/// @param backupInvitationOpenedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupInvitationOpenedDetails: - (DBTEAMLOGBackupInvitationOpenedDetails *)backupInvitationOpenedDetails; - -/// -/// Initializes union class with tag state of "create_team_invite_link_details". -/// -/// @param createTeamInviteLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateTeamInviteLinkDetails:(DBTEAMLOGCreateTeamInviteLinkDetails *)createTeamInviteLinkDetails; - -/// -/// Initializes union class with tag state of "delete_team_invite_link_details". -/// -/// @param deleteTeamInviteLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteTeamInviteLinkDetails:(DBTEAMLOGDeleteTeamInviteLinkDetails *)deleteTeamInviteLinkDetails; - -/// -/// Initializes union class with tag state of "member_add_external_id_details". -/// -/// @param memberAddExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddExternalIdDetails:(DBTEAMLOGMemberAddExternalIdDetails *)memberAddExternalIdDetails; - -/// -/// Initializes union class with tag state of "member_add_name_details". -/// -/// @param memberAddNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddNameDetails:(DBTEAMLOGMemberAddNameDetails *)memberAddNameDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_admin_role_details". -/// -/// @param memberChangeAdminRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeAdminRoleDetails: - (DBTEAMLOGMemberChangeAdminRoleDetails *)memberChangeAdminRoleDetails; - -/// -/// Initializes union class with tag state of "member_change_email_details". -/// -/// @param memberChangeEmailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeEmailDetails:(DBTEAMLOGMemberChangeEmailDetails *)memberChangeEmailDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_external_id_details". -/// -/// @param memberChangeExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeExternalIdDetails: - (DBTEAMLOGMemberChangeExternalIdDetails *)memberChangeExternalIdDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_membership_type_details". -/// -/// @param memberChangeMembershipTypeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeMembershipTypeDetails: - (DBTEAMLOGMemberChangeMembershipTypeDetails *)memberChangeMembershipTypeDetails; - -/// -/// Initializes union class with tag state of "member_change_name_details". -/// -/// @param memberChangeNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeNameDetails:(DBTEAMLOGMemberChangeNameDetails *)memberChangeNameDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_reseller_role_details". -/// -/// @param memberChangeResellerRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeResellerRoleDetails: - (DBTEAMLOGMemberChangeResellerRoleDetails *)memberChangeResellerRoleDetails; - -/// -/// Initializes union class with tag state of "member_change_status_details". -/// -/// @param memberChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeStatusDetails:(DBTEAMLOGMemberChangeStatusDetails *)memberChangeStatusDetails; - -/// -/// Initializes union class with tag state of -/// "member_delete_manual_contacts_details". -/// -/// @param memberDeleteManualContactsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteManualContactsDetails: - (DBTEAMLOGMemberDeleteManualContactsDetails *)memberDeleteManualContactsDetails; - -/// -/// Initializes union class with tag state of -/// "member_delete_profile_photo_details". -/// -/// @param memberDeleteProfilePhotoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteProfilePhotoDetails: - (DBTEAMLOGMemberDeleteProfilePhotoDetails *)memberDeleteProfilePhotoDetails; - -/// -/// Initializes union class with tag state of -/// "member_permanently_delete_account_contents_details". -/// -/// @param memberPermanentlyDeleteAccountContentsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberPermanentlyDeleteAccountContentsDetails: - (DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *)memberPermanentlyDeleteAccountContentsDetails; - -/// -/// Initializes union class with tag state of -/// "member_remove_external_id_details". -/// -/// @param memberRemoveExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRemoveExternalIdDetails: - (DBTEAMLOGMemberRemoveExternalIdDetails *)memberRemoveExternalIdDetails; - -/// -/// Initializes union class with tag state of -/// "member_set_profile_photo_details". -/// -/// @param memberSetProfilePhotoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSetProfilePhotoDetails: - (DBTEAMLOGMemberSetProfilePhotoDetails *)memberSetProfilePhotoDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_custom_quota_details". -/// -/// @param memberSpaceLimitsAddCustomQuotaDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddCustomQuotaDetails: - (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *)memberSpaceLimitsAddCustomQuotaDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_custom_quota_details". -/// -/// @param memberSpaceLimitsChangeCustomQuotaDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCustomQuotaDetails: - (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *)memberSpaceLimitsChangeCustomQuotaDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_status_details". -/// -/// @param memberSpaceLimitsChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeStatusDetails: - (DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *)memberSpaceLimitsChangeStatusDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_custom_quota_details". -/// -/// @param memberSpaceLimitsRemoveCustomQuotaDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveCustomQuotaDetails: - (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *)memberSpaceLimitsRemoveCustomQuotaDetails; - -/// -/// Initializes union class with tag state of "member_suggest_details". -/// -/// @param memberSuggestDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestDetails:(DBTEAMLOGMemberSuggestDetails *)memberSuggestDetails; - -/// -/// Initializes union class with tag state of -/// "member_transfer_account_contents_details". -/// -/// @param memberTransferAccountContentsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberTransferAccountContentsDetails: - (DBTEAMLOGMemberTransferAccountContentsDetails *)memberTransferAccountContentsDetails; - -/// -/// Initializes union class with tag state of -/// "pending_secondary_email_added_details". -/// -/// @param pendingSecondaryEmailAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPendingSecondaryEmailAddedDetails: - (DBTEAMLOGPendingSecondaryEmailAddedDetails *)pendingSecondaryEmailAddedDetails; - -/// -/// Initializes union class with tag state of "secondary_email_deleted_details". -/// -/// @param secondaryEmailDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailDeletedDetails: - (DBTEAMLOGSecondaryEmailDeletedDetails *)secondaryEmailDeletedDetails; - -/// -/// Initializes union class with tag state of -/// "secondary_email_verified_details". -/// -/// @param secondaryEmailVerifiedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailVerifiedDetails: - (DBTEAMLOGSecondaryEmailVerifiedDetails *)secondaryEmailVerifiedDetails; - -/// -/// Initializes union class with tag state of -/// "secondary_mails_policy_changed_details". -/// -/// @param secondaryMailsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryMailsPolicyChangedDetails: - (DBTEAMLOGSecondaryMailsPolicyChangedDetails *)secondaryMailsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of "binder_add_page_details". -/// -/// @param binderAddPageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddPageDetails:(DBTEAMLOGBinderAddPageDetails *)binderAddPageDetails; - -/// -/// Initializes union class with tag state of "binder_add_section_details". -/// -/// @param binderAddSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddSectionDetails:(DBTEAMLOGBinderAddSectionDetails *)binderAddSectionDetails; - -/// -/// Initializes union class with tag state of "binder_remove_page_details". -/// -/// @param binderRemovePageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemovePageDetails:(DBTEAMLOGBinderRemovePageDetails *)binderRemovePageDetails; - -/// -/// Initializes union class with tag state of "binder_remove_section_details". -/// -/// @param binderRemoveSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemoveSectionDetails:(DBTEAMLOGBinderRemoveSectionDetails *)binderRemoveSectionDetails; - -/// -/// Initializes union class with tag state of "binder_rename_page_details". -/// -/// @param binderRenamePageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenamePageDetails:(DBTEAMLOGBinderRenamePageDetails *)binderRenamePageDetails; - -/// -/// Initializes union class with tag state of "binder_rename_section_details". -/// -/// @param binderRenameSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenameSectionDetails:(DBTEAMLOGBinderRenameSectionDetails *)binderRenameSectionDetails; - -/// -/// Initializes union class with tag state of "binder_reorder_page_details". -/// -/// @param binderReorderPageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderPageDetails:(DBTEAMLOGBinderReorderPageDetails *)binderReorderPageDetails; - -/// -/// Initializes union class with tag state of "binder_reorder_section_details". -/// -/// @param binderReorderSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderSectionDetails:(DBTEAMLOGBinderReorderSectionDetails *)binderReorderSectionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_add_member_details". -/// -/// @param paperContentAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddMemberDetails: - (DBTEAMLOGPaperContentAddMemberDetails *)paperContentAddMemberDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_add_to_folder_details". -/// -/// @param paperContentAddToFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddToFolderDetails: - (DBTEAMLOGPaperContentAddToFolderDetails *)paperContentAddToFolderDetails; - -/// -/// Initializes union class with tag state of "paper_content_archive_details". -/// -/// @param paperContentArchiveDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentArchiveDetails:(DBTEAMLOGPaperContentArchiveDetails *)paperContentArchiveDetails; - -/// -/// Initializes union class with tag state of "paper_content_create_details". -/// -/// @param paperContentCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentCreateDetails:(DBTEAMLOGPaperContentCreateDetails *)paperContentCreateDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_permanently_delete_details". -/// -/// @param paperContentPermanentlyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentPermanentlyDeleteDetails: - (DBTEAMLOGPaperContentPermanentlyDeleteDetails *)paperContentPermanentlyDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_from_folder_details". -/// -/// @param paperContentRemoveFromFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveFromFolderDetails: - (DBTEAMLOGPaperContentRemoveFromFolderDetails *)paperContentRemoveFromFolderDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_member_details". -/// -/// @param paperContentRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveMemberDetails: - (DBTEAMLOGPaperContentRemoveMemberDetails *)paperContentRemoveMemberDetails; - -/// -/// Initializes union class with tag state of "paper_content_rename_details". -/// -/// @param paperContentRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRenameDetails:(DBTEAMLOGPaperContentRenameDetails *)paperContentRenameDetails; - -/// -/// Initializes union class with tag state of "paper_content_restore_details". -/// -/// @param paperContentRestoreDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRestoreDetails:(DBTEAMLOGPaperContentRestoreDetails *)paperContentRestoreDetails; - -/// -/// Initializes union class with tag state of "paper_doc_add_comment_details". -/// -/// @param paperDocAddCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocAddCommentDetails:(DBTEAMLOGPaperDocAddCommentDetails *)paperDocAddCommentDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_change_member_role_details". -/// -/// @param paperDocChangeMemberRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeMemberRoleDetails: - (DBTEAMLOGPaperDocChangeMemberRoleDetails *)paperDocChangeMemberRoleDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_change_sharing_policy_details". -/// -/// @param paperDocChangeSharingPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSharingPolicyDetails: - (DBTEAMLOGPaperDocChangeSharingPolicyDetails *)paperDocChangeSharingPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_change_subscription_details". -/// -/// @param paperDocChangeSubscriptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSubscriptionDetails: - (DBTEAMLOGPaperDocChangeSubscriptionDetails *)paperDocChangeSubscriptionDetails; - -/// -/// Initializes union class with tag state of "paper_doc_deleted_details". -/// -/// @param paperDocDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeletedDetails:(DBTEAMLOGPaperDocDeletedDetails *)paperDocDeletedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_delete_comment_details". -/// -/// @param paperDocDeleteCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleteCommentDetails: - (DBTEAMLOGPaperDocDeleteCommentDetails *)paperDocDeleteCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_download_details". -/// -/// @param paperDocDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDownloadDetails:(DBTEAMLOGPaperDocDownloadDetails *)paperDocDownloadDetails; - -/// -/// Initializes union class with tag state of "paper_doc_edit_details". -/// -/// @param paperDocEditDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditDetails:(DBTEAMLOGPaperDocEditDetails *)paperDocEditDetails; - -/// -/// Initializes union class with tag state of "paper_doc_edit_comment_details". -/// -/// @param paperDocEditCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditCommentDetails:(DBTEAMLOGPaperDocEditCommentDetails *)paperDocEditCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_followed_details". -/// -/// @param paperDocFollowedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocFollowedDetails:(DBTEAMLOGPaperDocFollowedDetails *)paperDocFollowedDetails; - -/// -/// Initializes union class with tag state of "paper_doc_mention_details". -/// -/// @param paperDocMentionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocMentionDetails:(DBTEAMLOGPaperDocMentionDetails *)paperDocMentionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_ownership_changed_details". -/// -/// @param paperDocOwnershipChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocOwnershipChangedDetails: - (DBTEAMLOGPaperDocOwnershipChangedDetails *)paperDocOwnershipChangedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_request_access_details". -/// -/// @param paperDocRequestAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRequestAccessDetails: - (DBTEAMLOGPaperDocRequestAccessDetails *)paperDocRequestAccessDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_resolve_comment_details". -/// -/// @param paperDocResolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocResolveCommentDetails: - (DBTEAMLOGPaperDocResolveCommentDetails *)paperDocResolveCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_revert_details". -/// -/// @param paperDocRevertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRevertDetails:(DBTEAMLOGPaperDocRevertDetails *)paperDocRevertDetails; - -/// -/// Initializes union class with tag state of "paper_doc_slack_share_details". -/// -/// @param paperDocSlackShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocSlackShareDetails:(DBTEAMLOGPaperDocSlackShareDetails *)paperDocSlackShareDetails; - -/// -/// Initializes union class with tag state of "paper_doc_team_invite_details". -/// -/// @param paperDocTeamInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTeamInviteDetails:(DBTEAMLOGPaperDocTeamInviteDetails *)paperDocTeamInviteDetails; - -/// -/// Initializes union class with tag state of "paper_doc_trashed_details". -/// -/// @param paperDocTrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTrashedDetails:(DBTEAMLOGPaperDocTrashedDetails *)paperDocTrashedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_unresolve_comment_details". -/// -/// @param paperDocUnresolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUnresolveCommentDetails: - (DBTEAMLOGPaperDocUnresolveCommentDetails *)paperDocUnresolveCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_untrashed_details". -/// -/// @param paperDocUntrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUntrashedDetails:(DBTEAMLOGPaperDocUntrashedDetails *)paperDocUntrashedDetails; - -/// -/// Initializes union class with tag state of "paper_doc_view_details". -/// -/// @param paperDocViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocViewDetails:(DBTEAMLOGPaperDocViewDetails *)paperDocViewDetails; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_allow_details". -/// -/// @param paperExternalViewAllowDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewAllowDetails: - (DBTEAMLOGPaperExternalViewAllowDetails *)paperExternalViewAllowDetails; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_default_team_details". -/// -/// @param paperExternalViewDefaultTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewDefaultTeamDetails: - (DBTEAMLOGPaperExternalViewDefaultTeamDetails *)paperExternalViewDefaultTeamDetails; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_forbid_details". -/// -/// @param paperExternalViewForbidDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewForbidDetails: - (DBTEAMLOGPaperExternalViewForbidDetails *)paperExternalViewForbidDetails; - -/// -/// Initializes union class with tag state of -/// "paper_folder_change_subscription_details". -/// -/// @param paperFolderChangeSubscriptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderChangeSubscriptionDetails: - (DBTEAMLOGPaperFolderChangeSubscriptionDetails *)paperFolderChangeSubscriptionDetails; - -/// -/// Initializes union class with tag state of "paper_folder_deleted_details". -/// -/// @param paperFolderDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderDeletedDetails:(DBTEAMLOGPaperFolderDeletedDetails *)paperFolderDeletedDetails; - -/// -/// Initializes union class with tag state of "paper_folder_followed_details". -/// -/// @param paperFolderFollowedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderFollowedDetails:(DBTEAMLOGPaperFolderFollowedDetails *)paperFolderFollowedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_folder_team_invite_details". -/// -/// @param paperFolderTeamInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderTeamInviteDetails: - (DBTEAMLOGPaperFolderTeamInviteDetails *)paperFolderTeamInviteDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_change_permission_details". -/// -/// @param paperPublishedLinkChangePermissionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkChangePermissionDetails: - (DBTEAMLOGPaperPublishedLinkChangePermissionDetails *)paperPublishedLinkChangePermissionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_create_details". -/// -/// @param paperPublishedLinkCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkCreateDetails: - (DBTEAMLOGPaperPublishedLinkCreateDetails *)paperPublishedLinkCreateDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_disabled_details". -/// -/// @param paperPublishedLinkDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkDisabledDetails: - (DBTEAMLOGPaperPublishedLinkDisabledDetails *)paperPublishedLinkDisabledDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_view_details". -/// -/// @param paperPublishedLinkViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkViewDetails: - (DBTEAMLOGPaperPublishedLinkViewDetails *)paperPublishedLinkViewDetails; - -/// -/// Initializes union class with tag state of "password_change_details". -/// -/// @param passwordChangeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordChangeDetails:(DBTEAMLOGPasswordChangeDetails *)passwordChangeDetails; - -/// -/// Initializes union class with tag state of "password_reset_details". -/// -/// @param passwordResetDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetDetails:(DBTEAMLOGPasswordResetDetails *)passwordResetDetails; - -/// -/// Initializes union class with tag state of "password_reset_all_details". -/// -/// @param passwordResetAllDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetAllDetails:(DBTEAMLOGPasswordResetAllDetails *)passwordResetAllDetails; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_details". -/// -/// @param classificationCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportDetails: - (DBTEAMLOGClassificationCreateReportDetails *)classificationCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_fail_details". -/// -/// @param classificationCreateReportFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportFailDetails: - (DBTEAMLOGClassificationCreateReportFailDetails *)classificationCreateReportFailDetails; - -/// -/// Initializes union class with tag state of -/// "emm_create_exceptions_report_details". -/// -/// @param emmCreateExceptionsReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateExceptionsReportDetails: - (DBTEAMLOGEmmCreateExceptionsReportDetails *)emmCreateExceptionsReportDetails; - -/// -/// Initializes union class with tag state of "emm_create_usage_report_details". -/// -/// @param emmCreateUsageReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateUsageReportDetails:(DBTEAMLOGEmmCreateUsageReportDetails *)emmCreateUsageReportDetails; - -/// -/// Initializes union class with tag state of "export_members_report_details". -/// -/// @param exportMembersReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportDetails:(DBTEAMLOGExportMembersReportDetails *)exportMembersReportDetails; - -/// -/// Initializes union class with tag state of -/// "export_members_report_fail_details". -/// -/// @param exportMembersReportFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportFailDetails: - (DBTEAMLOGExportMembersReportFailDetails *)exportMembersReportFailDetails; - -/// -/// Initializes union class with tag state of -/// "external_sharing_create_report_details". -/// -/// @param externalSharingCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingCreateReportDetails: - (DBTEAMLOGExternalSharingCreateReportDetails *)externalSharingCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "external_sharing_report_failed_details". -/// -/// @param externalSharingReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingReportFailedDetails: - (DBTEAMLOGExternalSharingReportFailedDetails *)externalSharingReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_create_report_details". -/// -/// @param noExpirationLinkGenCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenCreateReportDetails: - (DBTEAMLOGNoExpirationLinkGenCreateReportDetails *)noExpirationLinkGenCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_report_failed_details". -/// -/// @param noExpirationLinkGenReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenReportFailedDetails: - (DBTEAMLOGNoExpirationLinkGenReportFailedDetails *)noExpirationLinkGenReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_create_report_details". -/// -/// @param noPasswordLinkGenCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenCreateReportDetails: - (DBTEAMLOGNoPasswordLinkGenCreateReportDetails *)noPasswordLinkGenCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_report_failed_details". -/// -/// @param noPasswordLinkGenReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenReportFailedDetails: - (DBTEAMLOGNoPasswordLinkGenReportFailedDetails *)noPasswordLinkGenReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_create_report_details". -/// -/// @param noPasswordLinkViewCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewCreateReportDetails: - (DBTEAMLOGNoPasswordLinkViewCreateReportDetails *)noPasswordLinkViewCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_report_failed_details". -/// -/// @param noPasswordLinkViewReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewReportFailedDetails: - (DBTEAMLOGNoPasswordLinkViewReportFailedDetails *)noPasswordLinkViewReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_create_report_details". -/// -/// @param outdatedLinkViewCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewCreateReportDetails: - (DBTEAMLOGOutdatedLinkViewCreateReportDetails *)outdatedLinkViewCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_report_failed_details". -/// -/// @param outdatedLinkViewReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewReportFailedDetails: - (DBTEAMLOGOutdatedLinkViewReportFailedDetails *)outdatedLinkViewReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_admin_export_start_details". -/// -/// @param paperAdminExportStartDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAdminExportStartDetails: - (DBTEAMLOGPaperAdminExportStartDetails *)paperAdminExportStartDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_details". -/// -/// @param ransomwareAlertCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportDetails: - (DBTEAMLOGRansomwareAlertCreateReportDetails *)ransomwareAlertCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_failed_details". -/// -/// @param ransomwareAlertCreateReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportFailedDetails: - (DBTEAMLOGRansomwareAlertCreateReportFailedDetails *)ransomwareAlertCreateReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "smart_sync_create_admin_privilege_report_details". -/// -/// @param smartSyncCreateAdminPrivilegeReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncCreateAdminPrivilegeReportDetails: - (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *)smartSyncCreateAdminPrivilegeReportDetails; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_details". -/// -/// @param teamActivityCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportDetails: - (DBTEAMLOGTeamActivityCreateReportDetails *)teamActivityCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_fail_details". -/// -/// @param teamActivityCreateReportFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportFailDetails: - (DBTEAMLOGTeamActivityCreateReportFailDetails *)teamActivityCreateReportFailDetails; - -/// -/// Initializes union class with tag state of "collection_share_details". -/// -/// @param collectionShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCollectionShareDetails:(DBTEAMLOGCollectionShareDetails *)collectionShareDetails; - -/// -/// Initializes union class with tag state of "file_transfers_file_add_details". -/// -/// @param fileTransfersFileAddDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersFileAddDetails:(DBTEAMLOGFileTransfersFileAddDetails *)fileTransfersFileAddDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_delete_details". -/// -/// @param fileTransfersTransferDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDeleteDetails: - (DBTEAMLOGFileTransfersTransferDeleteDetails *)fileTransfersTransferDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_download_details". -/// -/// @param fileTransfersTransferDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDownloadDetails: - (DBTEAMLOGFileTransfersTransferDownloadDetails *)fileTransfersTransferDownloadDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_send_details". -/// -/// @param fileTransfersTransferSendDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferSendDetails: - (DBTEAMLOGFileTransfersTransferSendDetails *)fileTransfersTransferSendDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_view_details". -/// -/// @param fileTransfersTransferViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferViewDetails: - (DBTEAMLOGFileTransfersTransferViewDetails *)fileTransfersTransferViewDetails; - -/// -/// Initializes union class with tag state of "note_acl_invite_only_details". -/// -/// @param noteAclInviteOnlyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclInviteOnlyDetails:(DBTEAMLOGNoteAclInviteOnlyDetails *)noteAclInviteOnlyDetails; - -/// -/// Initializes union class with tag state of "note_acl_link_details". -/// -/// @param noteAclLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclLinkDetails:(DBTEAMLOGNoteAclLinkDetails *)noteAclLinkDetails; - -/// -/// Initializes union class with tag state of "note_acl_team_link_details". -/// -/// @param noteAclTeamLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclTeamLinkDetails:(DBTEAMLOGNoteAclTeamLinkDetails *)noteAclTeamLinkDetails; - -/// -/// Initializes union class with tag state of "note_shared_details". -/// -/// @param noteSharedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteSharedDetails:(DBTEAMLOGNoteSharedDetails *)noteSharedDetails; - -/// -/// Initializes union class with tag state of "note_share_receive_details". -/// -/// @param noteShareReceiveDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShareReceiveDetails:(DBTEAMLOGNoteShareReceiveDetails *)noteShareReceiveDetails; - -/// -/// Initializes union class with tag state of "open_note_shared_details". -/// -/// @param openNoteSharedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenNoteSharedDetails:(DBTEAMLOGOpenNoteSharedDetails *)openNoteSharedDetails; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_created_details". -/// -/// @param replayFileSharedLinkCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkCreatedDetails: - (DBTEAMLOGReplayFileSharedLinkCreatedDetails *)replayFileSharedLinkCreatedDetails; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_modified_details". -/// -/// @param replayFileSharedLinkModifiedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkModifiedDetails: - (DBTEAMLOGReplayFileSharedLinkModifiedDetails *)replayFileSharedLinkModifiedDetails; - -/// -/// Initializes union class with tag state of "replay_project_team_add_details". -/// -/// @param replayProjectTeamAddDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamAddDetails:(DBTEAMLOGReplayProjectTeamAddDetails *)replayProjectTeamAddDetails; - -/// -/// Initializes union class with tag state of -/// "replay_project_team_delete_details". -/// -/// @param replayProjectTeamDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamDeleteDetails: - (DBTEAMLOGReplayProjectTeamDeleteDetails *)replayProjectTeamDeleteDetails; - -/// -/// Initializes union class with tag state of "sf_add_group_details". -/// -/// @param sfAddGroupDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAddGroupDetails:(DBTEAMLOGSfAddGroupDetails *)sfAddGroupDetails; - -/// -/// Initializes union class with tag state of -/// "sf_allow_non_members_to_view_shared_links_details". -/// -/// @param sfAllowNonMembersToViewSharedLinksDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAllowNonMembersToViewSharedLinksDetails: - (DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *)sfAllowNonMembersToViewSharedLinksDetails; - -/// -/// Initializes union class with tag state of "sf_external_invite_warn_details". -/// -/// @param sfExternalInviteWarnDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfExternalInviteWarnDetails:(DBTEAMLOGSfExternalInviteWarnDetails *)sfExternalInviteWarnDetails; - -/// -/// Initializes union class with tag state of "sf_fb_invite_details". -/// -/// @param sfFbInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteDetails:(DBTEAMLOGSfFbInviteDetails *)sfFbInviteDetails; - -/// -/// Initializes union class with tag state of -/// "sf_fb_invite_change_role_details". -/// -/// @param sfFbInviteChangeRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteChangeRoleDetails:(DBTEAMLOGSfFbInviteChangeRoleDetails *)sfFbInviteChangeRoleDetails; - -/// -/// Initializes union class with tag state of "sf_fb_uninvite_details". -/// -/// @param sfFbUninviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbUninviteDetails:(DBTEAMLOGSfFbUninviteDetails *)sfFbUninviteDetails; - -/// -/// Initializes union class with tag state of "sf_invite_group_details". -/// -/// @param sfInviteGroupDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfInviteGroupDetails:(DBTEAMLOGSfInviteGroupDetails *)sfInviteGroupDetails; - -/// -/// Initializes union class with tag state of "sf_team_grant_access_details". -/// -/// @param sfTeamGrantAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamGrantAccessDetails:(DBTEAMLOGSfTeamGrantAccessDetails *)sfTeamGrantAccessDetails; - -/// -/// Initializes union class with tag state of "sf_team_invite_details". -/// -/// @param sfTeamInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteDetails:(DBTEAMLOGSfTeamInviteDetails *)sfTeamInviteDetails; - -/// -/// Initializes union class with tag state of -/// "sf_team_invite_change_role_details". -/// -/// @param sfTeamInviteChangeRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteChangeRoleDetails: - (DBTEAMLOGSfTeamInviteChangeRoleDetails *)sfTeamInviteChangeRoleDetails; - -/// -/// Initializes union class with tag state of "sf_team_join_details". -/// -/// @param sfTeamJoinDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinDetails:(DBTEAMLOGSfTeamJoinDetails *)sfTeamJoinDetails; - -/// -/// Initializes union class with tag state of -/// "sf_team_join_from_oob_link_details". -/// -/// @param sfTeamJoinFromOobLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinFromOobLinkDetails: - (DBTEAMLOGSfTeamJoinFromOobLinkDetails *)sfTeamJoinFromOobLinkDetails; - -/// -/// Initializes union class with tag state of "sf_team_uninvite_details". -/// -/// @param sfTeamUninviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamUninviteDetails:(DBTEAMLOGSfTeamUninviteDetails *)sfTeamUninviteDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_invitees_details". -/// -/// @param sharedContentAddInviteesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddInviteesDetails: - (DBTEAMLOGSharedContentAddInviteesDetails *)sharedContentAddInviteesDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_expiry_details". -/// -/// @param sharedContentAddLinkExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkExpiryDetails: - (DBTEAMLOGSharedContentAddLinkExpiryDetails *)sharedContentAddLinkExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_password_details". -/// -/// @param sharedContentAddLinkPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkPasswordDetails: - (DBTEAMLOGSharedContentAddLinkPasswordDetails *)sharedContentAddLinkPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_member_details". -/// -/// @param sharedContentAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddMemberDetails: - (DBTEAMLOGSharedContentAddMemberDetails *)sharedContentAddMemberDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_downloads_policy_details". -/// -/// @param sharedContentChangeDownloadsPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeDownloadsPolicyDetails: - (DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *)sharedContentChangeDownloadsPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_invitee_role_details". -/// -/// @param sharedContentChangeInviteeRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeInviteeRoleDetails: - (DBTEAMLOGSharedContentChangeInviteeRoleDetails *)sharedContentChangeInviteeRoleDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_audience_details". -/// -/// @param sharedContentChangeLinkAudienceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkAudienceDetails: - (DBTEAMLOGSharedContentChangeLinkAudienceDetails *)sharedContentChangeLinkAudienceDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_expiry_details". -/// -/// @param sharedContentChangeLinkExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkExpiryDetails: - (DBTEAMLOGSharedContentChangeLinkExpiryDetails *)sharedContentChangeLinkExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_password_details". -/// -/// @param sharedContentChangeLinkPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkPasswordDetails: - (DBTEAMLOGSharedContentChangeLinkPasswordDetails *)sharedContentChangeLinkPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_member_role_details". -/// -/// @param sharedContentChangeMemberRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeMemberRoleDetails: - (DBTEAMLOGSharedContentChangeMemberRoleDetails *)sharedContentChangeMemberRoleDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_viewer_info_policy_details". -/// -/// @param sharedContentChangeViewerInfoPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeViewerInfoPolicyDetails: - (DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *)sharedContentChangeViewerInfoPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_claim_invitation_details". -/// -/// @param sharedContentClaimInvitationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentClaimInvitationDetails: - (DBTEAMLOGSharedContentClaimInvitationDetails *)sharedContentClaimInvitationDetails; - -/// -/// Initializes union class with tag state of "shared_content_copy_details". -/// -/// @param sharedContentCopyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentCopyDetails:(DBTEAMLOGSharedContentCopyDetails *)sharedContentCopyDetails; - -/// -/// Initializes union class with tag state of "shared_content_download_details". -/// -/// @param sharedContentDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentDownloadDetails: - (DBTEAMLOGSharedContentDownloadDetails *)sharedContentDownloadDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_relinquish_membership_details". -/// -/// @param sharedContentRelinquishMembershipDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRelinquishMembershipDetails: - (DBTEAMLOGSharedContentRelinquishMembershipDetails *)sharedContentRelinquishMembershipDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_invitees_details". -/// -/// @param sharedContentRemoveInviteesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveInviteesDetails: - (DBTEAMLOGSharedContentRemoveInviteesDetails *)sharedContentRemoveInviteesDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_expiry_details". -/// -/// @param sharedContentRemoveLinkExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkExpiryDetails: - (DBTEAMLOGSharedContentRemoveLinkExpiryDetails *)sharedContentRemoveLinkExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_password_details". -/// -/// @param sharedContentRemoveLinkPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkPasswordDetails: - (DBTEAMLOGSharedContentRemoveLinkPasswordDetails *)sharedContentRemoveLinkPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_member_details". -/// -/// @param sharedContentRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveMemberDetails: - (DBTEAMLOGSharedContentRemoveMemberDetails *)sharedContentRemoveMemberDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_request_access_details". -/// -/// @param sharedContentRequestAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRequestAccessDetails: - (DBTEAMLOGSharedContentRequestAccessDetails *)sharedContentRequestAccessDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_restore_invitees_details". -/// -/// @param sharedContentRestoreInviteesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreInviteesDetails: - (DBTEAMLOGSharedContentRestoreInviteesDetails *)sharedContentRestoreInviteesDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_restore_member_details". -/// -/// @param sharedContentRestoreMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreMemberDetails: - (DBTEAMLOGSharedContentRestoreMemberDetails *)sharedContentRestoreMemberDetails; - -/// -/// Initializes union class with tag state of "shared_content_unshare_details". -/// -/// @param sharedContentUnshareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentUnshareDetails:(DBTEAMLOGSharedContentUnshareDetails *)sharedContentUnshareDetails; - -/// -/// Initializes union class with tag state of "shared_content_view_details". -/// -/// @param sharedContentViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentViewDetails:(DBTEAMLOGSharedContentViewDetails *)sharedContentViewDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_link_policy_details". -/// -/// @param sharedFolderChangeLinkPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeLinkPolicyDetails: - (DBTEAMLOGSharedFolderChangeLinkPolicyDetails *)sharedFolderChangeLinkPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_inheritance_policy_details". -/// -/// @param sharedFolderChangeMembersInheritancePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersInheritancePolicyDetails: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *)sharedFolderChangeMembersInheritancePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_management_policy_details". -/// -/// @param sharedFolderChangeMembersManagementPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersManagementPolicyDetails: - (DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *)sharedFolderChangeMembersManagementPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_policy_details". -/// -/// @param sharedFolderChangeMembersPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersPolicyDetails: - (DBTEAMLOGSharedFolderChangeMembersPolicyDetails *)sharedFolderChangeMembersPolicyDetails; - -/// -/// Initializes union class with tag state of "shared_folder_create_details". -/// -/// @param sharedFolderCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderCreateDetails:(DBTEAMLOGSharedFolderCreateDetails *)sharedFolderCreateDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_decline_invitation_details". -/// -/// @param sharedFolderDeclineInvitationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderDeclineInvitationDetails: - (DBTEAMLOGSharedFolderDeclineInvitationDetails *)sharedFolderDeclineInvitationDetails; - -/// -/// Initializes union class with tag state of "shared_folder_mount_details". -/// -/// @param sharedFolderMountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMountDetails:(DBTEAMLOGSharedFolderMountDetails *)sharedFolderMountDetails; - -/// -/// Initializes union class with tag state of "shared_folder_nest_details". -/// -/// @param sharedFolderNestDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderNestDetails:(DBTEAMLOGSharedFolderNestDetails *)sharedFolderNestDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_transfer_ownership_details". -/// -/// @param sharedFolderTransferOwnershipDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderTransferOwnershipDetails: - (DBTEAMLOGSharedFolderTransferOwnershipDetails *)sharedFolderTransferOwnershipDetails; - -/// -/// Initializes union class with tag state of "shared_folder_unmount_details". -/// -/// @param sharedFolderUnmountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderUnmountDetails:(DBTEAMLOGSharedFolderUnmountDetails *)sharedFolderUnmountDetails; - -/// -/// Initializes union class with tag state of "shared_link_add_expiry_details". -/// -/// @param sharedLinkAddExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAddExpiryDetails:(DBTEAMLOGSharedLinkAddExpiryDetails *)sharedLinkAddExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_change_expiry_details". -/// -/// @param sharedLinkChangeExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeExpiryDetails: - (DBTEAMLOGSharedLinkChangeExpiryDetails *)sharedLinkChangeExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_change_visibility_details". -/// -/// @param sharedLinkChangeVisibilityDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeVisibilityDetails: - (DBTEAMLOGSharedLinkChangeVisibilityDetails *)sharedLinkChangeVisibilityDetails; - -/// -/// Initializes union class with tag state of "shared_link_copy_details". -/// -/// @param sharedLinkCopyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCopyDetails:(DBTEAMLOGSharedLinkCopyDetails *)sharedLinkCopyDetails; - -/// -/// Initializes union class with tag state of "shared_link_create_details". -/// -/// @param sharedLinkCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCreateDetails:(DBTEAMLOGSharedLinkCreateDetails *)sharedLinkCreateDetails; - -/// -/// Initializes union class with tag state of "shared_link_disable_details". -/// -/// @param sharedLinkDisableDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDisableDetails:(DBTEAMLOGSharedLinkDisableDetails *)sharedLinkDisableDetails; - -/// -/// Initializes union class with tag state of "shared_link_download_details". -/// -/// @param sharedLinkDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDownloadDetails:(DBTEAMLOGSharedLinkDownloadDetails *)sharedLinkDownloadDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_remove_expiry_details". -/// -/// @param sharedLinkRemoveExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkRemoveExpiryDetails: - (DBTEAMLOGSharedLinkRemoveExpiryDetails *)sharedLinkRemoveExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_expiration_details". -/// -/// @param sharedLinkSettingsAddExpirationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddExpirationDetails: - (DBTEAMLOGSharedLinkSettingsAddExpirationDetails *)sharedLinkSettingsAddExpirationDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_password_details". -/// -/// @param sharedLinkSettingsAddPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddPasswordDetails: - (DBTEAMLOGSharedLinkSettingsAddPasswordDetails *)sharedLinkSettingsAddPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_disabled_details". -/// -/// @param sharedLinkSettingsAllowDownloadDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadDisabledDetails: - (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *)sharedLinkSettingsAllowDownloadDisabledDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_enabled_details". -/// -/// @param sharedLinkSettingsAllowDownloadEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadEnabledDetails: - (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *)sharedLinkSettingsAllowDownloadEnabledDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_audience_details". -/// -/// @param sharedLinkSettingsChangeAudienceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeAudienceDetails: - (DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *)sharedLinkSettingsChangeAudienceDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_expiration_details". -/// -/// @param sharedLinkSettingsChangeExpirationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeExpirationDetails: - (DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *)sharedLinkSettingsChangeExpirationDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_password_details". -/// -/// @param sharedLinkSettingsChangePasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangePasswordDetails: - (DBTEAMLOGSharedLinkSettingsChangePasswordDetails *)sharedLinkSettingsChangePasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_expiration_details". -/// -/// @param sharedLinkSettingsRemoveExpirationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemoveExpirationDetails: - (DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *)sharedLinkSettingsRemoveExpirationDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_password_details". -/// -/// @param sharedLinkSettingsRemovePasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemovePasswordDetails: - (DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *)sharedLinkSettingsRemovePasswordDetails; - -/// -/// Initializes union class with tag state of "shared_link_share_details". -/// -/// @param sharedLinkShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkShareDetails:(DBTEAMLOGSharedLinkShareDetails *)sharedLinkShareDetails; - -/// -/// Initializes union class with tag state of "shared_link_view_details". -/// -/// @param sharedLinkViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkViewDetails:(DBTEAMLOGSharedLinkViewDetails *)sharedLinkViewDetails; - -/// -/// Initializes union class with tag state of "shared_note_opened_details". -/// -/// @param sharedNoteOpenedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedNoteOpenedDetails:(DBTEAMLOGSharedNoteOpenedDetails *)sharedNoteOpenedDetails; - -/// -/// Initializes union class with tag state of -/// "shmodel_disable_downloads_details". -/// -/// @param shmodelDisableDownloadsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelDisableDownloadsDetails: - (DBTEAMLOGShmodelDisableDownloadsDetails *)shmodelDisableDownloadsDetails; - -/// -/// Initializes union class with tag state of -/// "shmodel_enable_downloads_details". -/// -/// @param shmodelEnableDownloadsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelEnableDownloadsDetails: - (DBTEAMLOGShmodelEnableDownloadsDetails *)shmodelEnableDownloadsDetails; - -/// -/// Initializes union class with tag state of "shmodel_group_share_details". -/// -/// @param shmodelGroupShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelGroupShareDetails:(DBTEAMLOGShmodelGroupShareDetails *)shmodelGroupShareDetails; - -/// -/// Initializes union class with tag state of "showcase_access_granted_details". -/// -/// @param showcaseAccessGrantedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAccessGrantedDetails: - (DBTEAMLOGShowcaseAccessGrantedDetails *)showcaseAccessGrantedDetails; - -/// -/// Initializes union class with tag state of "showcase_add_member_details". -/// -/// @param showcaseAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAddMemberDetails:(DBTEAMLOGShowcaseAddMemberDetails *)showcaseAddMemberDetails; - -/// -/// Initializes union class with tag state of "showcase_archived_details". -/// -/// @param showcaseArchivedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseArchivedDetails:(DBTEAMLOGShowcaseArchivedDetails *)showcaseArchivedDetails; - -/// -/// Initializes union class with tag state of "showcase_created_details". -/// -/// @param showcaseCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseCreatedDetails:(DBTEAMLOGShowcaseCreatedDetails *)showcaseCreatedDetails; - -/// -/// Initializes union class with tag state of "showcase_delete_comment_details". -/// -/// @param showcaseDeleteCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDeleteCommentDetails: - (DBTEAMLOGShowcaseDeleteCommentDetails *)showcaseDeleteCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_edited_details". -/// -/// @param showcaseEditedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditedDetails:(DBTEAMLOGShowcaseEditedDetails *)showcaseEditedDetails; - -/// -/// Initializes union class with tag state of "showcase_edit_comment_details". -/// -/// @param showcaseEditCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditCommentDetails:(DBTEAMLOGShowcaseEditCommentDetails *)showcaseEditCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_file_added_details". -/// -/// @param showcaseFileAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileAddedDetails:(DBTEAMLOGShowcaseFileAddedDetails *)showcaseFileAddedDetails; - -/// -/// Initializes union class with tag state of "showcase_file_download_details". -/// -/// @param showcaseFileDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileDownloadDetails:(DBTEAMLOGShowcaseFileDownloadDetails *)showcaseFileDownloadDetails; - -/// -/// Initializes union class with tag state of "showcase_file_removed_details". -/// -/// @param showcaseFileRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileRemovedDetails:(DBTEAMLOGShowcaseFileRemovedDetails *)showcaseFileRemovedDetails; - -/// -/// Initializes union class with tag state of "showcase_file_view_details". -/// -/// @param showcaseFileViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileViewDetails:(DBTEAMLOGShowcaseFileViewDetails *)showcaseFileViewDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_permanently_deleted_details". -/// -/// @param showcasePermanentlyDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePermanentlyDeletedDetails: - (DBTEAMLOGShowcasePermanentlyDeletedDetails *)showcasePermanentlyDeletedDetails; - -/// -/// Initializes union class with tag state of "showcase_post_comment_details". -/// -/// @param showcasePostCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePostCommentDetails:(DBTEAMLOGShowcasePostCommentDetails *)showcasePostCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_remove_member_details". -/// -/// @param showcaseRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRemoveMemberDetails:(DBTEAMLOGShowcaseRemoveMemberDetails *)showcaseRemoveMemberDetails; - -/// -/// Initializes union class with tag state of "showcase_renamed_details". -/// -/// @param showcaseRenamedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRenamedDetails:(DBTEAMLOGShowcaseRenamedDetails *)showcaseRenamedDetails; - -/// -/// Initializes union class with tag state of "showcase_request_access_details". -/// -/// @param showcaseRequestAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRequestAccessDetails: - (DBTEAMLOGShowcaseRequestAccessDetails *)showcaseRequestAccessDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_resolve_comment_details". -/// -/// @param showcaseResolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseResolveCommentDetails: - (DBTEAMLOGShowcaseResolveCommentDetails *)showcaseResolveCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_restored_details". -/// -/// @param showcaseRestoredDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRestoredDetails:(DBTEAMLOGShowcaseRestoredDetails *)showcaseRestoredDetails; - -/// -/// Initializes union class with tag state of "showcase_trashed_details". -/// -/// @param showcaseTrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDetails:(DBTEAMLOGShowcaseTrashedDetails *)showcaseTrashedDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_trashed_deprecated_details". -/// -/// @param showcaseTrashedDeprecatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDeprecatedDetails: - (DBTEAMLOGShowcaseTrashedDeprecatedDetails *)showcaseTrashedDeprecatedDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_unresolve_comment_details". -/// -/// @param showcaseUnresolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUnresolveCommentDetails: - (DBTEAMLOGShowcaseUnresolveCommentDetails *)showcaseUnresolveCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_untrashed_details". -/// -/// @param showcaseUntrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDetails:(DBTEAMLOGShowcaseUntrashedDetails *)showcaseUntrashedDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_untrashed_deprecated_details". -/// -/// @param showcaseUntrashedDeprecatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDeprecatedDetails: - (DBTEAMLOGShowcaseUntrashedDeprecatedDetails *)showcaseUntrashedDeprecatedDetails; - -/// -/// Initializes union class with tag state of "showcase_view_details". -/// -/// @param showcaseViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseViewDetails:(DBTEAMLOGShowcaseViewDetails *)showcaseViewDetails; - -/// -/// Initializes union class with tag state of "sso_add_cert_details". -/// -/// @param ssoAddCertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddCertDetails:(DBTEAMLOGSsoAddCertDetails *)ssoAddCertDetails; - -/// -/// Initializes union class with tag state of "sso_add_login_url_details". -/// -/// @param ssoAddLoginUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLoginUrlDetails:(DBTEAMLOGSsoAddLoginUrlDetails *)ssoAddLoginUrlDetails; - -/// -/// Initializes union class with tag state of "sso_add_logout_url_details". -/// -/// @param ssoAddLogoutUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLogoutUrlDetails:(DBTEAMLOGSsoAddLogoutUrlDetails *)ssoAddLogoutUrlDetails; - -/// -/// Initializes union class with tag state of "sso_change_cert_details". -/// -/// @param ssoChangeCertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeCertDetails:(DBTEAMLOGSsoChangeCertDetails *)ssoChangeCertDetails; - -/// -/// Initializes union class with tag state of "sso_change_login_url_details". -/// -/// @param ssoChangeLoginUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLoginUrlDetails:(DBTEAMLOGSsoChangeLoginUrlDetails *)ssoChangeLoginUrlDetails; - -/// -/// Initializes union class with tag state of "sso_change_logout_url_details". -/// -/// @param ssoChangeLogoutUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLogoutUrlDetails:(DBTEAMLOGSsoChangeLogoutUrlDetails *)ssoChangeLogoutUrlDetails; - -/// -/// Initializes union class with tag state of -/// "sso_change_saml_identity_mode_details". -/// -/// @param ssoChangeSamlIdentityModeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeSamlIdentityModeDetails: - (DBTEAMLOGSsoChangeSamlIdentityModeDetails *)ssoChangeSamlIdentityModeDetails; - -/// -/// Initializes union class with tag state of "sso_remove_cert_details". -/// -/// @param ssoRemoveCertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveCertDetails:(DBTEAMLOGSsoRemoveCertDetails *)ssoRemoveCertDetails; - -/// -/// Initializes union class with tag state of "sso_remove_login_url_details". -/// -/// @param ssoRemoveLoginUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLoginUrlDetails:(DBTEAMLOGSsoRemoveLoginUrlDetails *)ssoRemoveLoginUrlDetails; - -/// -/// Initializes union class with tag state of "sso_remove_logout_url_details". -/// -/// @param ssoRemoveLogoutUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLogoutUrlDetails:(DBTEAMLOGSsoRemoveLogoutUrlDetails *)ssoRemoveLogoutUrlDetails; - -/// -/// Initializes union class with tag state of -/// "team_folder_change_status_details". -/// -/// @param teamFolderChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderChangeStatusDetails: - (DBTEAMLOGTeamFolderChangeStatusDetails *)teamFolderChangeStatusDetails; - -/// -/// Initializes union class with tag state of "team_folder_create_details". -/// -/// @param teamFolderCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderCreateDetails:(DBTEAMLOGTeamFolderCreateDetails *)teamFolderCreateDetails; - -/// -/// Initializes union class with tag state of "team_folder_downgrade_details". -/// -/// @param teamFolderDowngradeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderDowngradeDetails:(DBTEAMLOGTeamFolderDowngradeDetails *)teamFolderDowngradeDetails; - -/// -/// Initializes union class with tag state of -/// "team_folder_permanently_delete_details". -/// -/// @param teamFolderPermanentlyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderPermanentlyDeleteDetails: - (DBTEAMLOGTeamFolderPermanentlyDeleteDetails *)teamFolderPermanentlyDeleteDetails; - -/// -/// Initializes union class with tag state of "team_folder_rename_details". -/// -/// @param teamFolderRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderRenameDetails:(DBTEAMLOGTeamFolderRenameDetails *)teamFolderRenameDetails; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_settings_changed_details". -/// -/// @param teamSelectiveSyncSettingsChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncSettingsChangedDetails: - (DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *)teamSelectiveSyncSettingsChangedDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_policy_details". -/// -/// @param accountCaptureChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangePolicyDetails: - (DBTEAMLOGAccountCaptureChangePolicyDetails *)accountCaptureChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "admin_email_reminders_changed_details". -/// -/// @param adminEmailRemindersChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminEmailRemindersChangedDetails: - (DBTEAMLOGAdminEmailRemindersChangedDetails *)adminEmailRemindersChangedDetails; - -/// -/// Initializes union class with tag state of "allow_download_disabled_details". -/// -/// @param allowDownloadDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadDisabledDetails: - (DBTEAMLOGAllowDownloadDisabledDetails *)allowDownloadDisabledDetails; - -/// -/// Initializes union class with tag state of "allow_download_enabled_details". -/// -/// @param allowDownloadEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadEnabledDetails:(DBTEAMLOGAllowDownloadEnabledDetails *)allowDownloadEnabledDetails; - -/// -/// Initializes union class with tag state of "app_permissions_changed_details". -/// -/// @param appPermissionsChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppPermissionsChangedDetails: - (DBTEAMLOGAppPermissionsChangedDetails *)appPermissionsChangedDetails; - -/// -/// Initializes union class with tag state of -/// "camera_uploads_policy_changed_details". -/// -/// @param cameraUploadsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCameraUploadsPolicyChangedDetails: - (DBTEAMLOGCameraUploadsPolicyChangedDetails *)cameraUploadsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "capture_transcript_policy_changed_details". -/// -/// @param captureTranscriptPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCaptureTranscriptPolicyChangedDetails: - (DBTEAMLOGCaptureTranscriptPolicyChangedDetails *)captureTranscriptPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "classification_change_policy_details". -/// -/// @param classificationChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationChangePolicyDetails: - (DBTEAMLOGClassificationChangePolicyDetails *)classificationChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "computer_backup_policy_changed_details". -/// -/// @param computerBackupPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComputerBackupPolicyChangedDetails: - (DBTEAMLOGComputerBackupPolicyChangedDetails *)computerBackupPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "content_administration_policy_changed_details". -/// -/// @param contentAdministrationPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdministrationPolicyChangedDetails: - (DBTEAMLOGContentAdministrationPolicyChangedDetails *)contentAdministrationPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_change_policy_details". -/// -/// @param dataPlacementRestrictionChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionChangePolicyDetails: - (DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *)dataPlacementRestrictionChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_satisfy_policy_details". -/// -/// @param dataPlacementRestrictionSatisfyPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionSatisfyPolicyDetails: - (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *)dataPlacementRestrictionSatisfyPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_add_exception_details". -/// -/// @param deviceApprovalsAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsAddExceptionDetails: - (DBTEAMLOGDeviceApprovalsAddExceptionDetails *)deviceApprovalsAddExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_desktop_policy_details". -/// -/// @param deviceApprovalsChangeDesktopPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeDesktopPolicyDetails: - (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *)deviceApprovalsChangeDesktopPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_mobile_policy_details". -/// -/// @param deviceApprovalsChangeMobilePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeMobilePolicyDetails: - (DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *)deviceApprovalsChangeMobilePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_overage_action_details". -/// -/// @param deviceApprovalsChangeOverageActionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeOverageActionDetails: - (DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *)deviceApprovalsChangeOverageActionDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_unlink_action_details". -/// -/// @param deviceApprovalsChangeUnlinkActionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeUnlinkActionDetails: - (DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *)deviceApprovalsChangeUnlinkActionDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_remove_exception_details". -/// -/// @param deviceApprovalsRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsRemoveExceptionDetails: - (DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *)deviceApprovalsRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_add_members_details". -/// -/// @param directoryRestrictionsAddMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsAddMembersDetails: - (DBTEAMLOGDirectoryRestrictionsAddMembersDetails *)directoryRestrictionsAddMembersDetails; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_remove_members_details". -/// -/// @param directoryRestrictionsRemoveMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsRemoveMembersDetails: - (DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *)directoryRestrictionsRemoveMembersDetails; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_policy_changed_details". -/// -/// @param dropboxPasswordsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsPolicyChangedDetails: - (DBTEAMLOGDropboxPasswordsPolicyChangedDetails *)dropboxPasswordsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "email_ingest_policy_changed_details". -/// -/// @param emailIngestPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestPolicyChangedDetails: - (DBTEAMLOGEmailIngestPolicyChangedDetails *)emailIngestPolicyChangedDetails; - -/// -/// Initializes union class with tag state of "emm_add_exception_details". -/// -/// @param emmAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmAddExceptionDetails:(DBTEAMLOGEmmAddExceptionDetails *)emmAddExceptionDetails; - -/// -/// Initializes union class with tag state of "emm_change_policy_details". -/// -/// @param emmChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmChangePolicyDetails:(DBTEAMLOGEmmChangePolicyDetails *)emmChangePolicyDetails; - -/// -/// Initializes union class with tag state of "emm_remove_exception_details". -/// -/// @param emmRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRemoveExceptionDetails:(DBTEAMLOGEmmRemoveExceptionDetails *)emmRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "extended_version_history_change_policy_details". -/// -/// @param extendedVersionHistoryChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtendedVersionHistoryChangePolicyDetails: - (DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *)extendedVersionHistoryChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_policy_changed_details". -/// -/// @param externalDriveBackupPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupPolicyChangedDetails: - (DBTEAMLOGExternalDriveBackupPolicyChangedDetails *)externalDriveBackupPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "file_comments_change_policy_details". -/// -/// @param fileCommentsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommentsChangePolicyDetails: - (DBTEAMLOGFileCommentsChangePolicyDetails *)fileCommentsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "file_locking_policy_changed_details". -/// -/// @param fileLockingPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingPolicyChangedDetails: - (DBTEAMLOGFileLockingPolicyChangedDetails *)fileLockingPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "file_provider_migration_policy_changed_details". -/// -/// @param fileProviderMigrationPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileProviderMigrationPolicyChangedDetails: - (DBTEAMLOGFileProviderMigrationPolicyChangedDetails *)fileProviderMigrationPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "file_requests_change_policy_details". -/// -/// @param fileRequestsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsChangePolicyDetails: - (DBTEAMLOGFileRequestsChangePolicyDetails *)fileRequestsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_enabled_details". -/// -/// @param fileRequestsEmailsEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsEnabledDetails: - (DBTEAMLOGFileRequestsEmailsEnabledDetails *)fileRequestsEmailsEnabledDetails; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_restricted_to_team_only_details". -/// -/// @param fileRequestsEmailsRestrictedToTeamOnlyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsRestrictedToTeamOnlyDetails: - (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *)fileRequestsEmailsRestrictedToTeamOnlyDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_policy_changed_details". -/// -/// @param fileTransfersPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersPolicyChangedDetails: - (DBTEAMLOGFileTransfersPolicyChangedDetails *)fileTransfersPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "folder_link_restriction_policy_changed_details". -/// -/// @param folderLinkRestrictionPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderLinkRestrictionPolicyChangedDetails: - (DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *)folderLinkRestrictionPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "google_sso_change_policy_details". -/// -/// @param googleSsoChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleSsoChangePolicyDetails: - (DBTEAMLOGGoogleSsoChangePolicyDetails *)googleSsoChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "group_user_management_change_policy_details". -/// -/// @param groupUserManagementChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupUserManagementChangePolicyDetails: - (DBTEAMLOGGroupUserManagementChangePolicyDetails *)groupUserManagementChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "integration_policy_changed_details". -/// -/// @param integrationPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationPolicyChangedDetails: - (DBTEAMLOGIntegrationPolicyChangedDetails *)integrationPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "invite_acceptance_email_policy_changed_details". -/// -/// @param inviteAcceptanceEmailPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteAcceptanceEmailPolicyChangedDetails: - (DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *)inviteAcceptanceEmailPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "member_requests_change_policy_details". -/// -/// @param memberRequestsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRequestsChangePolicyDetails: - (DBTEAMLOGMemberRequestsChangePolicyDetails *)memberRequestsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "member_send_invite_policy_changed_details". -/// -/// @param memberSendInvitePolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSendInvitePolicyChangedDetails: - (DBTEAMLOGMemberSendInvitePolicyChangedDetails *)memberSendInvitePolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_exception_details". -/// -/// @param memberSpaceLimitsAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddExceptionDetails: - (DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *)memberSpaceLimitsAddExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_caps_type_policy_details". -/// -/// @param memberSpaceLimitsChangeCapsTypePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCapsTypePolicyDetails: - (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *)memberSpaceLimitsChangeCapsTypePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_policy_details". -/// -/// @param memberSpaceLimitsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangePolicyDetails: - (DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *)memberSpaceLimitsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_exception_details". -/// -/// @param memberSpaceLimitsRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveExceptionDetails: - (DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *)memberSpaceLimitsRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "member_suggestions_change_policy_details". -/// -/// @param memberSuggestionsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestionsChangePolicyDetails: - (DBTEAMLOGMemberSuggestionsChangePolicyDetails *)memberSuggestionsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "microsoft_office_addin_change_policy_details". -/// -/// @param microsoftOfficeAddinChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMicrosoftOfficeAddinChangePolicyDetails: - (DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *)microsoftOfficeAddinChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "network_control_change_policy_details". -/// -/// @param networkControlChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNetworkControlChangePolicyDetails: - (DBTEAMLOGNetworkControlChangePolicyDetails *)networkControlChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_change_deployment_policy_details". -/// -/// @param paperChangeDeploymentPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeDeploymentPolicyDetails: - (DBTEAMLOGPaperChangeDeploymentPolicyDetails *)paperChangeDeploymentPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_change_member_link_policy_details". -/// -/// @param paperChangeMemberLinkPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberLinkPolicyDetails: - (DBTEAMLOGPaperChangeMemberLinkPolicyDetails *)paperChangeMemberLinkPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_change_member_policy_details". -/// -/// @param paperChangeMemberPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberPolicyDetails: - (DBTEAMLOGPaperChangeMemberPolicyDetails *)paperChangeMemberPolicyDetails; - -/// -/// Initializes union class with tag state of "paper_change_policy_details". -/// -/// @param paperChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangePolicyDetails:(DBTEAMLOGPaperChangePolicyDetails *)paperChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_default_folder_policy_changed_details". -/// -/// @param paperDefaultFolderPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDefaultFolderPolicyChangedDetails: - (DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *)paperDefaultFolderPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_desktop_policy_changed_details". -/// -/// @param paperDesktopPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDesktopPolicyChangedDetails: - (DBTEAMLOGPaperDesktopPolicyChangedDetails *)paperDesktopPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_addition_details". -/// -/// @param paperEnabledUsersGroupAdditionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupAdditionDetails: - (DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *)paperEnabledUsersGroupAdditionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_removal_details". -/// -/// @param paperEnabledUsersGroupRemovalDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupRemovalDetails: - (DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *)paperEnabledUsersGroupRemovalDetails; - -/// -/// Initializes union class with tag state of -/// "password_strength_requirements_change_policy_details". -/// -/// @param passwordStrengthRequirementsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordStrengthRequirementsChangePolicyDetails: - (DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *)passwordStrengthRequirementsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "permanent_delete_change_policy_details". -/// -/// @param permanentDeleteChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermanentDeleteChangePolicyDetails: - (DBTEAMLOGPermanentDeleteChangePolicyDetails *)permanentDeleteChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "reseller_support_change_policy_details". -/// -/// @param resellerSupportChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportChangePolicyDetails: - (DBTEAMLOGResellerSupportChangePolicyDetails *)resellerSupportChangePolicyDetails; - -/// -/// Initializes union class with tag state of "rewind_policy_changed_details". -/// -/// @param rewindPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindPolicyChangedDetails:(DBTEAMLOGRewindPolicyChangedDetails *)rewindPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "send_for_signature_policy_changed_details". -/// -/// @param sendForSignaturePolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSendForSignaturePolicyChangedDetails: - (DBTEAMLOGSendForSignaturePolicyChangedDetails *)sendForSignaturePolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_folder_join_policy_details". -/// -/// @param sharingChangeFolderJoinPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeFolderJoinPolicyDetails: - (DBTEAMLOGSharingChangeFolderJoinPolicyDetails *)sharingChangeFolderJoinPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_allow_change_expiration_policy_details". -/// -/// @param sharingChangeLinkAllowChangeExpirationPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkAllowChangeExpirationPolicyDetails: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *)sharingChangeLinkAllowChangeExpirationPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_default_expiration_policy_details". -/// -/// @param sharingChangeLinkDefaultExpirationPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkDefaultExpirationPolicyDetails: - (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *)sharingChangeLinkDefaultExpirationPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_enforce_password_policy_details". -/// -/// @param sharingChangeLinkEnforcePasswordPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkEnforcePasswordPolicyDetails: - (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *)sharingChangeLinkEnforcePasswordPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_policy_details". -/// -/// @param sharingChangeLinkPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkPolicyDetails: - (DBTEAMLOGSharingChangeLinkPolicyDetails *)sharingChangeLinkPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_member_policy_details". -/// -/// @param sharingChangeMemberPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeMemberPolicyDetails: - (DBTEAMLOGSharingChangeMemberPolicyDetails *)sharingChangeMemberPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_change_download_policy_details". -/// -/// @param showcaseChangeDownloadPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeDownloadPolicyDetails: - (DBTEAMLOGShowcaseChangeDownloadPolicyDetails *)showcaseChangeDownloadPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_change_enabled_policy_details". -/// -/// @param showcaseChangeEnabledPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeEnabledPolicyDetails: - (DBTEAMLOGShowcaseChangeEnabledPolicyDetails *)showcaseChangeEnabledPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_change_external_sharing_policy_details". -/// -/// @param showcaseChangeExternalSharingPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeExternalSharingPolicyDetails: - (DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *)showcaseChangeExternalSharingPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "smarter_smart_sync_policy_changed_details". -/// -/// @param smarterSmartSyncPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmarterSmartSyncPolicyChangedDetails: - (DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *)smarterSmartSyncPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "smart_sync_change_policy_details". -/// -/// @param smartSyncChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncChangePolicyDetails: - (DBTEAMLOGSmartSyncChangePolicyDetails *)smartSyncChangePolicyDetails; - -/// -/// Initializes union class with tag state of "smart_sync_not_opt_out_details". -/// -/// @param smartSyncNotOptOutDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncNotOptOutDetails:(DBTEAMLOGSmartSyncNotOptOutDetails *)smartSyncNotOptOutDetails; - -/// -/// Initializes union class with tag state of "smart_sync_opt_out_details". -/// -/// @param smartSyncOptOutDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncOptOutDetails:(DBTEAMLOGSmartSyncOptOutDetails *)smartSyncOptOutDetails; - -/// -/// Initializes union class with tag state of "sso_change_policy_details". -/// -/// @param ssoChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangePolicyDetails:(DBTEAMLOGSsoChangePolicyDetails *)ssoChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "team_branding_policy_changed_details". -/// -/// @param teamBrandingPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamBrandingPolicyChangedDetails: - (DBTEAMLOGTeamBrandingPolicyChangedDetails *)teamBrandingPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "team_extensions_policy_changed_details". -/// -/// @param teamExtensionsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExtensionsPolicyChangedDetails: - (DBTEAMLOGTeamExtensionsPolicyChangedDetails *)teamExtensionsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_policy_changed_details". -/// -/// @param teamSelectiveSyncPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncPolicyChangedDetails: - (DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *)teamSelectiveSyncPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "team_sharing_whitelist_subjects_changed_details". -/// -/// @param teamSharingWhitelistSubjectsChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharingWhitelistSubjectsChangedDetails: - (DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *)teamSharingWhitelistSubjectsChangedDetails; - -/// -/// Initializes union class with tag state of "tfa_add_exception_details". -/// -/// @param tfaAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddExceptionDetails:(DBTEAMLOGTfaAddExceptionDetails *)tfaAddExceptionDetails; - -/// -/// Initializes union class with tag state of "tfa_change_policy_details". -/// -/// @param tfaChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangePolicyDetails:(DBTEAMLOGTfaChangePolicyDetails *)tfaChangePolicyDetails; - -/// -/// Initializes union class with tag state of "tfa_remove_exception_details". -/// -/// @param tfaRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveExceptionDetails:(DBTEAMLOGTfaRemoveExceptionDetails *)tfaRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "two_account_change_policy_details". -/// -/// @param twoAccountChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoAccountChangePolicyDetails: - (DBTEAMLOGTwoAccountChangePolicyDetails *)twoAccountChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "viewer_info_policy_changed_details". -/// -/// @param viewerInfoPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerInfoPolicyChangedDetails: - (DBTEAMLOGViewerInfoPolicyChangedDetails *)viewerInfoPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "watermarking_policy_changed_details". -/// -/// @param watermarkingPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWatermarkingPolicyChangedDetails: - (DBTEAMLOGWatermarkingPolicyChangedDetails *)watermarkingPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_active_session_limit_details". -/// -/// @param webSessionsChangeActiveSessionLimitDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeActiveSessionLimitDetails: - (DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *)webSessionsChangeActiveSessionLimitDetails; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_fixed_length_policy_details". -/// -/// @param webSessionsChangeFixedLengthPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeFixedLengthPolicyDetails: - (DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *)webSessionsChangeFixedLengthPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_idle_length_policy_details". -/// -/// @param webSessionsChangeIdleLengthPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeIdleLengthPolicyDetails: - (DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *)webSessionsChangeIdleLengthPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_successful_details". -/// -/// @param dataResidencyMigrationRequestSuccessfulDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestSuccessfulDetails: - (DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *)dataResidencyMigrationRequestSuccessfulDetails; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_unsuccessful_details". -/// -/// @param dataResidencyMigrationRequestUnsuccessfulDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestUnsuccessfulDetails: - (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *)dataResidencyMigrationRequestUnsuccessfulDetails; - -/// -/// Initializes union class with tag state of "team_merge_from_details". -/// -/// @param teamMergeFromDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeFromDetails:(DBTEAMLOGTeamMergeFromDetails *)teamMergeFromDetails; - -/// -/// Initializes union class with tag state of "team_merge_to_details". -/// -/// @param teamMergeToDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeToDetails:(DBTEAMLOGTeamMergeToDetails *)teamMergeToDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_add_background_details". -/// -/// @param teamProfileAddBackgroundDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddBackgroundDetails: - (DBTEAMLOGTeamProfileAddBackgroundDetails *)teamProfileAddBackgroundDetails; - -/// -/// Initializes union class with tag state of "team_profile_add_logo_details". -/// -/// @param teamProfileAddLogoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddLogoDetails:(DBTEAMLOGTeamProfileAddLogoDetails *)teamProfileAddLogoDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_background_details". -/// -/// @param teamProfileChangeBackgroundDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeBackgroundDetails: - (DBTEAMLOGTeamProfileChangeBackgroundDetails *)teamProfileChangeBackgroundDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_default_language_details". -/// -/// @param teamProfileChangeDefaultLanguageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeDefaultLanguageDetails: - (DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *)teamProfileChangeDefaultLanguageDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_logo_details". -/// -/// @param teamProfileChangeLogoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeLogoDetails: - (DBTEAMLOGTeamProfileChangeLogoDetails *)teamProfileChangeLogoDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_name_details". -/// -/// @param teamProfileChangeNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeNameDetails: - (DBTEAMLOGTeamProfileChangeNameDetails *)teamProfileChangeNameDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_remove_background_details". -/// -/// @param teamProfileRemoveBackgroundDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveBackgroundDetails: - (DBTEAMLOGTeamProfileRemoveBackgroundDetails *)teamProfileRemoveBackgroundDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_remove_logo_details". -/// -/// @param teamProfileRemoveLogoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveLogoDetails: - (DBTEAMLOGTeamProfileRemoveLogoDetails *)teamProfileRemoveLogoDetails; - -/// -/// Initializes union class with tag state of "tfa_add_backup_phone_details". -/// -/// @param tfaAddBackupPhoneDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddBackupPhoneDetails:(DBTEAMLOGTfaAddBackupPhoneDetails *)tfaAddBackupPhoneDetails; - -/// -/// Initializes union class with tag state of "tfa_add_security_key_details". -/// -/// @param tfaAddSecurityKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddSecurityKeyDetails:(DBTEAMLOGTfaAddSecurityKeyDetails *)tfaAddSecurityKeyDetails; - -/// -/// Initializes union class with tag state of "tfa_change_backup_phone_details". -/// -/// @param tfaChangeBackupPhoneDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeBackupPhoneDetails:(DBTEAMLOGTfaChangeBackupPhoneDetails *)tfaChangeBackupPhoneDetails; - -/// -/// Initializes union class with tag state of "tfa_change_status_details". -/// -/// @param tfaChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeStatusDetails:(DBTEAMLOGTfaChangeStatusDetails *)tfaChangeStatusDetails; - -/// -/// Initializes union class with tag state of "tfa_remove_backup_phone_details". -/// -/// @param tfaRemoveBackupPhoneDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveBackupPhoneDetails:(DBTEAMLOGTfaRemoveBackupPhoneDetails *)tfaRemoveBackupPhoneDetails; - -/// -/// Initializes union class with tag state of "tfa_remove_security_key_details". -/// -/// @param tfaRemoveSecurityKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveSecurityKeyDetails:(DBTEAMLOGTfaRemoveSecurityKeyDetails *)tfaRemoveSecurityKeyDetails; - -/// -/// Initializes union class with tag state of "tfa_reset_details". -/// -/// @param tfaResetDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaResetDetails:(DBTEAMLOGTfaResetDetails *)tfaResetDetails; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_admin_role_details". -/// -/// @param changedEnterpriseAdminRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseAdminRoleDetails: - (DBTEAMLOGChangedEnterpriseAdminRoleDetails *)changedEnterpriseAdminRoleDetails; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_connected_team_status_details". -/// -/// @param changedEnterpriseConnectedTeamStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseConnectedTeamStatusDetails: - (DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *)changedEnterpriseConnectedTeamStatusDetails; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_details". -/// -/// @param endedEnterpriseAdminSessionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDetails: - (DBTEAMLOGEndedEnterpriseAdminSessionDetails *)endedEnterpriseAdminSessionDetails; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_deprecated_details". -/// -/// @param endedEnterpriseAdminSessionDeprecatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDeprecatedDetails: - (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *)endedEnterpriseAdminSessionDeprecatedDetails; - -/// -/// Initializes union class with tag state of -/// "enterprise_settings_locking_details". -/// -/// @param enterpriseSettingsLockingDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseSettingsLockingDetails: - (DBTEAMLOGEnterpriseSettingsLockingDetails *)enterpriseSettingsLockingDetails; - -/// -/// Initializes union class with tag state of -/// "guest_admin_change_status_details". -/// -/// @param guestAdminChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminChangeStatusDetails: - (DBTEAMLOGGuestAdminChangeStatusDetails *)guestAdminChangeStatusDetails; - -/// -/// Initializes union class with tag state of -/// "started_enterprise_admin_session_details". -/// -/// @param startedEnterpriseAdminSessionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartedEnterpriseAdminSessionDetails: - (DBTEAMLOGStartedEnterpriseAdminSessionDetails *)startedEnterpriseAdminSessionDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_details". -/// -/// @param teamMergeRequestAcceptedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedDetails: - (DBTEAMLOGTeamMergeRequestAcceptedDetails *)teamMergeRequestAcceptedDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_primary_team_details". -/// -/// @param teamMergeRequestAcceptedShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *)teamMergeRequestAcceptedShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestAcceptedShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *)teamMergeRequestAcceptedShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_auto_canceled_details". -/// -/// @param teamMergeRequestAutoCanceledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAutoCanceledDetails: - (DBTEAMLOGTeamMergeRequestAutoCanceledDetails *)teamMergeRequestAutoCanceledDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_details". -/// -/// @param teamMergeRequestCanceledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledDetails: - (DBTEAMLOGTeamMergeRequestCanceledDetails *)teamMergeRequestCanceledDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_primary_team_details". -/// -/// @param teamMergeRequestCanceledShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *)teamMergeRequestCanceledShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestCanceledShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *)teamMergeRequestCanceledShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_details". -/// -/// @param teamMergeRequestExpiredDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredDetails: - (DBTEAMLOGTeamMergeRequestExpiredDetails *)teamMergeRequestExpiredDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_primary_team_details". -/// -/// @param teamMergeRequestExpiredShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *)teamMergeRequestExpiredShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestExpiredShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *)teamMergeRequestExpiredShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_primary_team_details". -/// -/// @param teamMergeRequestRejectedShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *)teamMergeRequestRejectedShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestRejectedShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *)teamMergeRequestRejectedShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_details". -/// -/// @param teamMergeRequestReminderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderDetails: - (DBTEAMLOGTeamMergeRequestReminderDetails *)teamMergeRequestReminderDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_primary_team_details". -/// -/// @param teamMergeRequestReminderShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *)teamMergeRequestReminderShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestReminderShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *)teamMergeRequestReminderShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_revoked_details". -/// -/// @param teamMergeRequestRevokedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRevokedDetails: - (DBTEAMLOGTeamMergeRequestRevokedDetails *)teamMergeRequestRevokedDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_primary_team_details". -/// -/// @param teamMergeRequestSentShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *)teamMergeRequestSentShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestSentShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *)teamMergeRequestSentShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of "missing_details". -/// -/// Description of the "missing_details" tag state: Hints that this event was -/// returned with missing details due to an internal error. -/// -/// @param missingDetails Hints that this event was returned with missing -/// details due to an internal error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMissingDetails:(DBTEAMLOGMissingDetails *)missingDetails; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_alert_state_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingAlertStateChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_alert_state_changed_details". -/// -- (BOOL)isAdminAlertingAlertStateChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_changed_alert_config_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingChangedAlertConfigDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_changed_alert_config_details". -/// -- (BOOL)isAdminAlertingChangedAlertConfigDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_triggered_alert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingTriggeredAlertDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_triggered_alert_details". -/// -- (BOOL)isAdminAlertingTriggeredAlertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_completed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessCompletedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_completed_details". -/// -- (BOOL)isRansomwareRestoreProcessCompletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_started_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessStartedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_started_details". -/// -- (BOOL)isRansomwareRestoreProcessStartedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_blocked_by_permissions_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appBlockedByPermissionsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_blocked_by_permissions_details". -/// -- (BOOL)isAppBlockedByPermissionsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_link_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkTeamDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_link_team_details". -/// -- (BOOL)isAppLinkTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_link_user_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkUserDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_link_user_details". -/// -- (BOOL)isAppLinkUserDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_unlink_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkTeamDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_unlink_team_details". -/// -- (BOOL)isAppUnlinkTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_unlink_user_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkUserDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_unlink_user_details". -/// -- (BOOL)isAppUnlinkUserDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_connected_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationConnectedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_connected_details". -/// -- (BOOL)isIntegrationConnectedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_disconnected_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationDisconnectedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_disconnected_details". -/// -- (BOOL)isIntegrationDisconnectedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_add_comment_details". -/// -- (BOOL)isFileAddCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_change_comment_subscription_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileChangeCommentSubscriptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_change_comment_subscription_details". -/// -- (BOOL)isFileChangeCommentSubscriptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDeleteCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_delete_comment_details". -/// -- (BOOL)isFileDeleteCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEditCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_edit_comment_details". -/// -- (BOOL)isFileEditCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_like_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLikeCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_like_comment_details". -/// -- (BOOL)isFileLikeCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_resolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileResolveCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_resolve_comment_details". -/// -- (BOOL)isFileResolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unlike_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnlikeCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unlike_comment_details". -/// -- (BOOL)isFileUnlikeCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unresolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnresolveCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unresolve_comment_details". -/// -- (BOOL)isFileUnresolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folders_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFoldersDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folders_details". -/// -- (BOOL)isGovernancePolicyAddFoldersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folder_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFolderFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folder_failed_details". -/// -- (BOOL)isGovernancePolicyAddFolderFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_content_disposed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyContentDisposedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_content_disposed_details". -/// -- (BOOL)isGovernancePolicyContentDisposedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyCreateDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_create_details". -/// -- (BOOL)isGovernancePolicyCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyDeleteDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_delete_details". -/// -- (BOOL)isGovernancePolicyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_details_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDetailsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_details_details". -/// -- (BOOL)isGovernancePolicyEditDetailsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_duration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDurationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_duration_details". -/// -- (BOOL)isGovernancePolicyEditDurationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportCreatedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_created_details". -/// -- (BOOL)isGovernancePolicyExportCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportRemovedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_removed_details". -/// -- (BOOL)isGovernancePolicyExportRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_remove_folders_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyRemoveFoldersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_remove_folders_details". -/// -- (BOOL)isGovernancePolicyRemoveFoldersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_report_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyReportCreatedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_report_created_details". -/// -- (BOOL)isGovernancePolicyReportCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyZipPartDownloadedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded_details". -/// -- (BOOL)isGovernancePolicyZipPartDownloadedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_activate_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsActivateAHoldDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_activate_a_hold_details". -/// -- (BOOL)isLegalHoldsActivateAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_add_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsAddMembersDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_add_members_details". -/// -- (BOOL)isLegalHoldsAddMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_details_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldDetailsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_details_details". -/// -- (BOOL)isLegalHoldsChangeHoldDetailsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldNameDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_name_details". -/// -- (BOOL)isLegalHoldsChangeHoldNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportAHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_a_hold_details". -/// -- (BOOL)isLegalHoldsExportAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_cancelled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportCancelledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_cancelled_details". -/// -- (BOOL)isLegalHoldsExportCancelledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_downloaded_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportDownloadedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_downloaded_details". -/// -- (BOOL)isLegalHoldsExportDownloadedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportRemovedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_removed_details". -/// -- (BOOL)isLegalHoldsExportRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_release_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReleaseAHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_release_a_hold_details". -/// -- (BOOL)isLegalHoldsReleaseAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_remove_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsRemoveMembersDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_remove_members_details". -/// -- (BOOL)isLegalHoldsRemoveMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_report_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReportAHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_report_a_hold_details". -/// -- (BOOL)isLegalHoldsReportAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_desktop_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpDesktopDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_desktop_details". -/// -- (BOOL)isDeviceChangeIpDesktopDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_mobile_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpMobileDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_mobile_details". -/// -- (BOOL)isDeviceChangeIpMobileDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_web_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpWebDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_web_details". -/// -- (BOOL)isDeviceChangeIpWebDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkFailDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_fail_details". -/// -- (BOOL)isDeviceDeleteOnUnlinkFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkSuccessDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_success_details". -/// -- (BOOL)isDeviceDeleteOnUnlinkSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkFailDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_link_fail_details". -/// -- (BOOL)isDeviceLinkFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkSuccessDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_link_success_details". -/// -- (BOOL)isDeviceLinkSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementDisabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_disabled_details". -/// -- (BOOL)isDeviceManagementDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementEnabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_enabled_details". -/// -- (BOOL)isDeviceManagementEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_sync_backup_status_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceSyncBackupStatusChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_sync_backup_status_changed_details". -/// -- (BOOL)isDeviceSyncBackupStatusChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_unlink_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceUnlinkDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_unlink_details". -/// -- (BOOL)isDeviceUnlinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_exported_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsExportedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_exported_details". -/// -- (BOOL)isDropboxPasswordsExportedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsNewDeviceEnrolledDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled_details". -/// -- (BOOL)isDropboxPasswordsNewDeviceEnrolledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_refresh_auth_token_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRefreshAuthTokenDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_refresh_auth_token_details". -/// -- (BOOL)isEmmRefreshAuthTokenDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupEligibilityStatusCheckedDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked_details". -/// -- (BOOL)isExternalDriveBackupEligibilityStatusCheckedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_status_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupStatusChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_status_changed_details". -/// -- (BOOL)isExternalDriveBackupStatusChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_availability_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangeAvailabilityDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_availability_details". -/// -- (BOOL)isAccountCaptureChangeAvailabilityDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_migrate_account_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureMigrateAccountDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_migrate_account_details". -/// -- (BOOL)isAccountCaptureMigrateAccountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_notification_emails_sent_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureNotificationEmailsSentDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_notification_emails_sent_details". -/// -- (BOOL)isAccountCaptureNotificationEmailsSentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_relinquish_account_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureRelinquishAccountDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_relinquish_account_details". -/// -- (BOOL)isAccountCaptureRelinquishAccountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_domain_invites_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `disabledDomainInvitesDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "disabled_domain_invites_details". -/// -- (BOOL)isDisabledDomainInvitesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesApproveRequestToJoinTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team_details". -/// -- (BOOL)isDomainInvitesApproveRequestToJoinTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesDeclineRequestToJoinTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team_details". -/// -- (BOOL)isDomainInvitesDeclineRequestToJoinTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_email_existing_users_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesEmailExistingUsersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_email_existing_users_details". -/// -- (BOOL)isDomainInvitesEmailExistingUsersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_request_to_join_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesRequestToJoinTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_request_to_join_team_details". -/// -- (BOOL)isDomainInvitesRequestToJoinTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToNoDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no_details". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToNoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToYesDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes_details". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToYesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainFailDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_fail_details". -/// -- (BOOL)isDomainVerificationAddDomainFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainSuccessDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_success_details". -/// -- (BOOL)isDomainVerificationAddDomainSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_remove_domain_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationRemoveDomainDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_remove_domain_details". -/// -- (BOOL)isDomainVerificationRemoveDomainDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "enabled_domain_invites_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabledDomainInvitesDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "enabled_domain_invites_details". -/// -- (BOOL)isEnabledDomainInvitesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCancelKeyDeletionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion_details". -/// -- (BOOL)isTeamEncryptionKeyCancelKeyDeletionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_create_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCreateKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_create_key_details". -/// -- (BOOL)isTeamEncryptionKeyCreateKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_delete_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDeleteKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_delete_key_details". -/// -- (BOOL)isTeamEncryptionKeyDeleteKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_disable_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDisableKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_disable_key_details". -/// -- (BOOL)isTeamEncryptionKeyDisableKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_enable_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyEnableKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_enable_key_details". -/// -- (BOOL)isTeamEncryptionKeyEnableKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_rotate_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyRotateKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_rotate_key_details". -/// -- (BOOL)isTeamEncryptionKeyRotateKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyScheduleKeyDeletionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion_details". -/// -- (BOOL)isTeamEncryptionKeyScheduleKeyDeletionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "apply_naming_convention_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `applyNamingConventionDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "apply_naming_convention_details". -/// -- (BOOL)isApplyNamingConventionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createFolderDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "create_folder_details". -/// -- (BOOL)isCreateFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_add_details". -/// -- (BOOL)isFileAddDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_from_automation_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddFromAutomationDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_add_from_automation_details". -/// -- (BOOL)isFileAddFromAutomationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_copy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCopyDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_copy_details". -/// -- (BOOL)isFileCopyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDeleteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_delete_details". -/// -- (BOOL)isFileDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDownloadDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_download_details". -/// -- (BOOL)isFileDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEditDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_edit_details". -/// -- (BOOL)isFileEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_get_copy_reference_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileGetCopyReferenceDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_get_copy_reference_details". -/// -- (BOOL)isFileGetCopyReferenceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_lock_status_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingLockStatusChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_lock_status_changed_details". -/// -- (BOOL)isFileLockingLockStatusChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_move_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileMoveDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_move_details". -/// -- (BOOL)isFileMoveDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_permanently_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePermanentlyDeleteDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_permanently_delete_details". -/// -- (BOOL)isFilePermanentlyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_preview_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePreviewDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_preview_details". -/// -- (BOOL)isFilePreviewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRenameDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_rename_details". -/// -- (BOOL)isFileRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_restore_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRestoreDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_restore_details". -/// -- (BOOL)isFileRestoreDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_revert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRevertDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_revert_details". -/// -- (BOOL)isFileRevertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rollback_changes_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRollbackChangesDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_rollback_changes_details". -/// -- (BOOL)isFileRollbackChangesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_save_copy_reference_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileSaveCopyReferenceDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_save_copy_reference_details". -/// -- (BOOL)isFileSaveCopyReferenceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_description_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewDescriptionChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_description_changed_details". -/// -- (BOOL)isFolderOverviewDescriptionChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_pinned_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemPinnedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_pinned_details". -/// -- (BOOL)isFolderOverviewItemPinnedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_unpinned_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemUnpinnedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_unpinned_details". -/// -- (BOOL)isFolderOverviewItemUnpinnedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelAddedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_added_details". -/// -- (BOOL)isObjectLabelAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelRemovedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_removed_details". -/// -- (BOOL)isObjectLabelRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_updated_value_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelUpdatedValueDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_updated_value_details". -/// -- (BOOL)isObjectLabelUpdatedValueDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "organize_folder_with_tidy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizeFolderWithTidyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "organize_folder_with_tidy_details". -/// -- (BOOL)isOrganizeFolderWithTidyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileDeleteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_delete_details". -/// -- (BOOL)isReplayFileDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindFolderDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "rewind_folder_details". -/// -- (BOOL)isRewindFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_naming_convention_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoNamingConventionDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_naming_convention_details". -/// -- (BOOL)isUndoNamingConventionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_organize_folder_with_tidy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoOrganizeFolderWithTidyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_organize_folder_with_tidy_details". -/// -- (BOOL)isUndoOrganizeFolderWithTidyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsAddedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_tags_added_details". -/// -- (BOOL)isUserTagsAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsRemovedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_tags_removed_details". -/// -- (BOOL)isUserTagsRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_receive_file_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestReceiveFileDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_receive_file_details". -/// -- (BOOL)isEmailIngestReceiveFileDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_change_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestChangeDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_change_details". -/// -- (BOOL)isFileRequestChangeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_close_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestCloseDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_close_details". -/// -- (BOOL)isFileRequestCloseDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_create_details". -/// -- (BOOL)isFileRequestCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestDeleteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_delete_details". -/// -- (BOOL)isFileRequestDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_receive_file_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestReceiveFileDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_receive_file_details". -/// -- (BOOL)isFileRequestReceiveFileDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddExternalIdDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_add_external_id_details". -/// -- (BOOL)isGroupAddExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddMemberDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_add_member_details". -/// -- (BOOL)isGroupAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_external_id_details". -/// -- (BOOL)isGroupChangeExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_management_type_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeManagementTypeDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_management_type_details". -/// -- (BOOL)isGroupChangeManagementTypeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_member_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeMemberRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_member_role_details". -/// -- (BOOL)isGroupChangeMemberRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupCreateDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_create_details". -/// -- (BOOL)isGroupCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDeleteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_delete_details". -/// -- (BOOL)isGroupDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_description_updated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDescriptionUpdatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_description_updated_details". -/// -- (BOOL)isGroupDescriptionUpdatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_join_policy_updated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupJoinPolicyUpdatedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_join_policy_updated_details". -/// -- (BOOL)isGroupJoinPolicyUpdatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_moved_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupMovedDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_moved_details". -/// -- (BOOL)isGroupMovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_external_id_details". -/// -- (BOOL)isGroupRemoveExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveMemberDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_member_details". -/// -- (BOOL)isGroupRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRenameDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_rename_details". -/// -- (BOOL)isGroupRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_lock_or_unlocked_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountLockOrUnlockedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_lock_or_unlocked_details". -/// -- (BOOL)isAccountLockOrUnlockedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_error_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmErrorDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_error_details". -/// -- (BOOL)isEmmErrorDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedInViaTrustedTeamsDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams_details". -/// -- (BOOL)isGuestAdminSignedInViaTrustedTeamsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedOutViaTrustedTeamsDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams_details". -/// -- (BOOL)isGuestAdminSignedOutViaTrustedTeamsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "login_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginFailDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "login_fail_details". -/// -- (BOOL)isLoginFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "login_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginSuccessDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "login_success_details". -/// -- (BOOL)isLoginSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value "logout_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `logoutDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "logout_details". -/// -- (BOOL)isLogoutDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_end_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionEndDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_end_details". -/// -- (BOOL)isResellerSupportSessionEndDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_start_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionStartDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_start_details". -/// -- (BOOL)isResellerSupportSessionStartDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_end_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionEndDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_end_details". -/// -- (BOOL)isSignInAsSessionEndDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_start_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionStartDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_start_details". -/// -- (BOOL)isSignInAsSessionStartDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_error_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoErrorDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_error_details". -/// -- (BOOL)isSsoErrorDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_admin_invitation_sent_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupAdminInvitationSentDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_admin_invitation_sent_details". -/// -- (BOOL)isBackupAdminInvitationSentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_invitation_opened_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupInvitationOpenedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_invitation_opened_details". -/// -- (BOOL)isBackupInvitationOpenedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_team_invite_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createTeamInviteLinkDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "create_team_invite_link_details". -/// -- (BOOL)isCreateTeamInviteLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_team_invite_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deleteTeamInviteLinkDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "delete_team_invite_link_details". -/// -- (BOOL)isDeleteTeamInviteLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddExternalIdDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_add_external_id_details". -/// -- (BOOL)isMemberAddExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddNameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_add_name_details". -/// -- (BOOL)isMemberAddNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_admin_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeAdminRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_admin_role_details". -/// -- (BOOL)isMemberChangeAdminRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_email_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeEmailDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_email_details". -/// -- (BOOL)isMemberChangeEmailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_external_id_details". -/// -- (BOOL)isMemberChangeExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_membership_type_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeMembershipTypeDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_membership_type_details". -/// -- (BOOL)isMemberChangeMembershipTypeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeNameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_name_details". -/// -- (BOOL)isMemberChangeNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_reseller_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeResellerRoleDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_reseller_role_details". -/// -- (BOOL)isMemberChangeResellerRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeStatusDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_status_details". -/// -- (BOOL)isMemberChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_manual_contacts_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteManualContactsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_manual_contacts_details". -/// -- (BOOL)isMemberDeleteManualContactsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_profile_photo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteProfilePhotoDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_profile_photo_details". -/// -- (BOOL)isMemberDeleteProfilePhotoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_permanently_delete_account_contents_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberPermanentlyDeleteAccountContentsDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_permanently_delete_account_contents_details". -/// -- (BOOL)isMemberPermanentlyDeleteAccountContentsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_remove_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRemoveExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_remove_external_id_details". -/// -- (BOOL)isMemberRemoveExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_set_profile_photo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSetProfilePhotoDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_set_profile_photo_details". -/// -- (BOOL)isMemberSetProfilePhotoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_custom_quota_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddCustomQuotaDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_custom_quota_details". -/// -- (BOOL)isMemberSpaceLimitsAddCustomQuotaDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_custom_quota_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCustomQuotaDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_custom_quota_details". -/// -- (BOOL)isMemberSpaceLimitsChangeCustomQuotaDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeStatusDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_status_details". -/// -- (BOOL)isMemberSpaceLimitsChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveCustomQuotaDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota_details". -/// -- (BOOL)isMemberSpaceLimitsRemoveCustomQuotaDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggest_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggestDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_suggest_details". -/// -- (BOOL)isMemberSuggestDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_transfer_account_contents_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberTransferAccountContentsDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_transfer_account_contents_details". -/// -- (BOOL)isMemberTransferAccountContentsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "pending_secondary_email_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pendingSecondaryEmailAddedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "pending_secondary_email_added_details". -/// -- (BOOL)isPendingSecondaryEmailAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailDeletedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_deleted_details". -/// -- (BOOL)isSecondaryEmailDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_verified_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailVerifiedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_verified_details". -/// -- (BOOL)isSecondaryEmailVerifiedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_mails_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryMailsPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_mails_policy_changed_details". -/// -- (BOOL)isSecondaryMailsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddPageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_add_page_details". -/// -- (BOOL)isBinderAddPageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddSectionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_add_section_details". -/// -- (BOOL)isBinderAddSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemovePageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_page_details". -/// -- (BOOL)isBinderRemovePageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemoveSectionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_section_details". -/// -- (BOOL)isBinderRemoveSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenamePageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_page_details". -/// -- (BOOL)isBinderRenamePageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenameSectionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_section_details". -/// -- (BOOL)isBinderRenameSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderPageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_page_details". -/// -- (BOOL)isBinderReorderPageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderSectionDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_section_details". -/// -- (BOOL)isBinderReorderSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddMemberDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_member_details". -/// -- (BOOL)isPaperContentAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_to_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddToFolderDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_to_folder_details". -/// -- (BOOL)isPaperContentAddToFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_archive_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentArchiveDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_archive_details". -/// -- (BOOL)isPaperContentArchiveDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_create_details". -/// -- (BOOL)isPaperContentCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_permanently_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentPermanentlyDeleteDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_permanently_delete_details". -/// -- (BOOL)isPaperContentPermanentlyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_from_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveFromFolderDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_from_folder_details". -/// -- (BOOL)isPaperContentRemoveFromFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveMemberDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_member_details". -/// -- (BOOL)isPaperContentRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRenameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_rename_details". -/// -- (BOOL)isPaperContentRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_restore_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRestoreDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_restore_details". -/// -- (BOOL)isPaperContentRestoreDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_add_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocAddCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_add_comment_details". -/// -- (BOOL)isPaperDocAddCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_member_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeMemberRoleDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_member_role_details". -/// -- (BOOL)isPaperDocChangeMemberRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_sharing_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSharingPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_sharing_policy_details". -/// -- (BOOL)isPaperDocChangeSharingPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_subscription_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSubscriptionDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_subscription_details". -/// -- (BOOL)isPaperDocChangeSubscriptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeletedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_deleted_details". -/// -- (BOOL)isPaperDocDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_delete_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeleteCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_delete_comment_details". -/// -- (BOOL)isPaperDocDeleteCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDownloadDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_download_details". -/// -- (BOOL)isPaperDocDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEditDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_details". -/// -- (BOOL)isPaperDocEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEditCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_comment_details". -/// -- (BOOL)isPaperDocEditCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_followed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocFollowedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_followed_details". -/// -- (BOOL)isPaperDocFollowedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_mention_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocMentionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_mention_details". -/// -- (BOOL)isPaperDocMentionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_ownership_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocOwnershipChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_ownership_changed_details". -/// -- (BOOL)isPaperDocOwnershipChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_request_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRequestAccessDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_request_access_details". -/// -- (BOOL)isPaperDocRequestAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_resolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocResolveCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_resolve_comment_details". -/// -- (BOOL)isPaperDocResolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_revert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRevertDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_revert_details". -/// -- (BOOL)isPaperDocRevertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_slack_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocSlackShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_slack_share_details". -/// -- (BOOL)isPaperDocSlackShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTeamInviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_team_invite_details". -/// -- (BOOL)isPaperDocTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_trashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_trashed_details". -/// -- (BOOL)isPaperDocTrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_unresolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUnresolveCommentDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_unresolve_comment_details". -/// -- (BOOL)isPaperDocUnresolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_untrashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUntrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_untrashed_details". -/// -- (BOOL)isPaperDocUntrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_view_details". -/// -- (BOOL)isPaperDocViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_allow_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewAllowDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_allow_details". -/// -- (BOOL)isPaperExternalViewAllowDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_default_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewDefaultTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_default_team_details". -/// -- (BOOL)isPaperExternalViewDefaultTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_forbid_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewForbidDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_forbid_details". -/// -- (BOOL)isPaperExternalViewForbidDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_change_subscription_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderChangeSubscriptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_change_subscription_details". -/// -- (BOOL)isPaperFolderChangeSubscriptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderDeletedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_deleted_details". -/// -- (BOOL)isPaperFolderDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_followed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderFollowedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_followed_details". -/// -- (BOOL)isPaperFolderFollowedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderTeamInviteDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_team_invite_details". -/// -- (BOOL)isPaperFolderTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_change_permission_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkChangePermissionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_change_permission_details". -/// -- (BOOL)isPaperPublishedLinkChangePermissionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkCreateDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_create_details". -/// -- (BOOL)isPaperPublishedLinkCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkDisabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_disabled_details". -/// -- (BOOL)isPaperPublishedLinkDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkViewDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_view_details". -/// -- (BOOL)isPaperPublishedLinkViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_change_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordChangeDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_change_details". -/// -- (BOOL)isPasswordChangeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordResetDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_reset_details". -/// -- (BOOL)isPasswordResetDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_all_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordResetAllDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_reset_all_details". -/// -- (BOOL)isPasswordResetAllDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_details". -/// -- (BOOL)isClassificationCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReportFailDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_fail_details". -/// -- (BOOL)isClassificationCreateReportFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_exceptions_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateExceptionsReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_exceptions_report_details". -/// -- (BOOL)isEmmCreateExceptionsReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_usage_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateUsageReportDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_usage_report_details". -/// -- (BOOL)isEmmCreateUsageReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReportDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_details". -/// -- (BOOL)isExportMembersReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReportFailDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_fail_details". -/// -- (BOOL)isExportMembersReportFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_create_report_details". -/// -- (BOOL)isExternalSharingCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingReportFailedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_report_failed_details". -/// -- (BOOL)isExternalSharingReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_create_report_details". -/// -- (BOOL)isNoExpirationLinkGenCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed_details". -/// -- (BOOL)isNoExpirationLinkGenReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_create_report_details". -/// -- (BOOL)isNoPasswordLinkGenCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_report_failed_details". -/// -- (BOOL)isNoPasswordLinkGenReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_create_report_details". -/// -- (BOOL)isNoPasswordLinkViewCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_report_failed_details". -/// -- (BOOL)isNoPasswordLinkViewReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_create_report_details". -/// -- (BOOL)isOutdatedLinkViewCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_report_failed_details". -/// -- (BOOL)isOutdatedLinkViewReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_admin_export_start_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAdminExportStartDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_admin_export_start_details". -/// -- (BOOL)isPaperAdminExportStartDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_details". -/// -- (BOOL)isRansomwareAlertCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_failed_details". -/// -- (BOOL)isRansomwareAlertCreateReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncCreateAdminPrivilegeReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report_details". -/// -- (BOOL)isSmartSyncCreateAdminPrivilegeReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_details". -/// -- (BOOL)isTeamActivityCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReportFailDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_fail_details". -/// -- (BOOL)isTeamActivityCreateReportFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "collection_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `collectionShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "collection_share_details". -/// -- (BOOL)isCollectionShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_file_add_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersFileAddDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_file_add_details". -/// -- (BOOL)isFileTransfersFileAddDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDeleteDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_delete_details". -/// -- (BOOL)isFileTransfersTransferDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDownloadDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_download_details". -/// -- (BOOL)isFileTransfersTransferDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_send_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferSendDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_send_details". -/// -- (BOOL)isFileTransfersTransferSendDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferViewDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_view_details". -/// -- (BOOL)isFileTransfersTransferViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_invite_only_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclInviteOnlyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_invite_only_details". -/// -- (BOOL)isNoteAclInviteOnlyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclLinkDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_link_details". -/// -- (BOOL)isNoteAclLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_team_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclTeamLinkDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_team_link_details". -/// -- (BOOL)isNoteAclTeamLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_shared_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteSharedDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_shared_details". -/// -- (BOOL)isNoteSharedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_share_receive_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteShareReceiveDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_share_receive_details". -/// -- (BOOL)isNoteShareReceiveDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "open_note_shared_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `openNoteSharedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "open_note_shared_details". -/// -- (BOOL)isOpenNoteSharedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkCreatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_created_details". -/// -- (BOOL)isReplayFileSharedLinkCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_modified_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkModifiedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_modified_details". -/// -- (BOOL)isReplayFileSharedLinkModifiedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_add_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamAddDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_add_details". -/// -- (BOOL)isReplayProjectTeamAddDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamDeleteDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_delete_details". -/// -- (BOOL)isReplayProjectTeamDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_add_group_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAddGroupDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_add_group_details". -/// -- (BOOL)isSfAddGroupDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAllowNonMembersToViewSharedLinksDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links_details". -/// -- (BOOL)isSfAllowNonMembersToViewSharedLinksDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_external_invite_warn_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfExternalInviteWarnDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_external_invite_warn_details". -/// -- (BOOL)isSfExternalInviteWarnDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInviteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_details". -/// -- (BOOL)isSfFbInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_change_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInviteChangeRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_change_role_details". -/// -- (BOOL)isSfFbInviteChangeRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_uninvite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbUninviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_uninvite_details". -/// -- (BOOL)isSfFbUninviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_invite_group_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfInviteGroupDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_invite_group_details". -/// -- (BOOL)isSfInviteGroupDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_grant_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamGrantAccessDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_grant_access_details". -/// -- (BOOL)isSfTeamGrantAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_details". -/// -- (BOOL)isSfTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_change_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInviteChangeRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_change_role_details". -/// -- (BOOL)isSfTeamInviteChangeRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoinDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_details". -/// -- (BOOL)isSfTeamJoinDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_from_oob_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoinFromOobLinkDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_from_oob_link_details". -/// -- (BOOL)isSfTeamJoinFromOobLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_uninvite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamUninviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_uninvite_details". -/// -- (BOOL)isSfTeamUninviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_invitees_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddInviteesDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_invitees_details". -/// -- (BOOL)isSharedContentAddInviteesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkExpiryDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_expiry_details". -/// -- (BOOL)isSharedContentAddLinkExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_password_details". -/// -- (BOOL)isSharedContentAddLinkPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddMemberDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_member_details". -/// -- (BOOL)isSharedContentAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_downloads_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeDownloadsPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_downloads_policy_details". -/// -- (BOOL)isSharedContentChangeDownloadsPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_invitee_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeInviteeRoleDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_invitee_role_details". -/// -- (BOOL)isSharedContentChangeInviteeRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_audience_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkAudienceDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_audience_details". -/// -- (BOOL)isSharedContentChangeLinkAudienceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkExpiryDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_expiry_details". -/// -- (BOOL)isSharedContentChangeLinkExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_password_details". -/// -- (BOOL)isSharedContentChangeLinkPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_member_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeMemberRoleDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_member_role_details". -/// -- (BOOL)isSharedContentChangeMemberRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeViewerInfoPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy_details". -/// -- (BOOL)isSharedContentChangeViewerInfoPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_claim_invitation_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentClaimInvitationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_claim_invitation_details". -/// -- (BOOL)isSharedContentClaimInvitationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_copy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentCopyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_copy_details". -/// -- (BOOL)isSharedContentCopyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentDownloadDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_download_details". -/// -- (BOOL)isSharedContentDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_relinquish_membership_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRelinquishMembershipDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_relinquish_membership_details". -/// -- (BOOL)isSharedContentRelinquishMembershipDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_invitees_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveInviteesDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_invitees_details". -/// -- (BOOL)isSharedContentRemoveInviteesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkExpiryDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_expiry_details". -/// -- (BOOL)isSharedContentRemoveLinkExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_password_details". -/// -- (BOOL)isSharedContentRemoveLinkPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveMemberDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_member_details". -/// -- (BOOL)isSharedContentRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_request_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRequestAccessDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_request_access_details". -/// -- (BOOL)isSharedContentRequestAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_invitees_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreInviteesDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_invitees_details". -/// -- (BOOL)isSharedContentRestoreInviteesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreMemberDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_member_details". -/// -- (BOOL)isSharedContentRestoreMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_unshare_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentUnshareDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_unshare_details". -/// -- (BOOL)isSharedContentUnshareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_view_details". -/// -- (BOOL)isSharedContentViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_link_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeLinkPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_link_policy_details". -/// -- (BOOL)isSharedFolderChangeLinkPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersInheritancePolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy_details". -/// -- (BOOL)isSharedFolderChangeMembersInheritancePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_management_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersManagementPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_management_policy_details". -/// -- (BOOL)isSharedFolderChangeMembersManagementPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_policy_details". -/// -- (BOOL)isSharedFolderChangeMembersPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_create_details". -/// -- (BOOL)isSharedFolderCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_decline_invitation_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderDeclineInvitationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_decline_invitation_details". -/// -- (BOOL)isSharedFolderDeclineInvitationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_mount_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderMountDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_mount_details". -/// -- (BOOL)isSharedFolderMountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_nest_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderNestDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_nest_details". -/// -- (BOOL)isSharedFolderNestDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_transfer_ownership_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderTransferOwnershipDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_transfer_ownership_details". -/// -- (BOOL)isSharedFolderTransferOwnershipDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_unmount_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderUnmountDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_unmount_details". -/// -- (BOOL)isSharedFolderUnmountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_add_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkAddExpiryDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_add_expiry_details". -/// -- (BOOL)isSharedLinkAddExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeExpiryDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_expiry_details". -/// -- (BOOL)isSharedLinkChangeExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_visibility_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeVisibilityDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_visibility_details". -/// -- (BOOL)isSharedLinkChangeVisibilityDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_copy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCopyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_copy_details". -/// -- (BOOL)isSharedLinkCopyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_create_details". -/// -- (BOOL)isSharedLinkCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_disable_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDisableDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_disable_details". -/// -- (BOOL)isSharedLinkDisableDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDownloadDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_download_details". -/// -- (BOOL)isSharedLinkDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_remove_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkRemoveExpiryDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_remove_expiry_details". -/// -- (BOOL)isSharedLinkRemoveExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_expiration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddExpirationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_expiration_details". -/// -- (BOOL)isSharedLinkSettingsAddExpirationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_password_details". -/// -- (BOOL)isSharedLinkSettingsAddPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadDisabledDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled_details". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadEnabledDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled_details". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_audience_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeAudienceDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_audience_details". -/// -- (BOOL)isSharedLinkSettingsChangeAudienceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_expiration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeExpirationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_expiration_details". -/// -- (BOOL)isSharedLinkSettingsChangeExpirationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangePasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_password_details". -/// -- (BOOL)isSharedLinkSettingsChangePasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_expiration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemoveExpirationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_expiration_details". -/// -- (BOOL)isSharedLinkSettingsRemoveExpirationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemovePasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_password_details". -/// -- (BOOL)isSharedLinkSettingsRemovePasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_share_details". -/// -- (BOOL)isSharedLinkShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_view_details". -/// -- (BOOL)isSharedLinkViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_note_opened_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedNoteOpenedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_note_opened_details". -/// -- (BOOL)isSharedNoteOpenedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_disable_downloads_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelDisableDownloadsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_disable_downloads_details". -/// -- (BOOL)isShmodelDisableDownloadsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_enable_downloads_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelEnableDownloadsDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_enable_downloads_details". -/// -- (BOOL)isShmodelEnableDownloadsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_group_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelGroupShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_group_share_details". -/// -- (BOOL)isShmodelGroupShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_access_granted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAccessGrantedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_access_granted_details". -/// -- (BOOL)isShowcaseAccessGrantedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAddMemberDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_add_member_details". -/// -- (BOOL)isShowcaseAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_archived_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseArchivedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_archived_details". -/// -- (BOOL)isShowcaseArchivedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseCreatedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_created_details". -/// -- (BOOL)isShowcaseCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_delete_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseDeleteCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_delete_comment_details". -/// -- (BOOL)isShowcaseDeleteCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edited_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEditedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_edited_details". -/// -- (BOOL)isShowcaseEditedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edit_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEditCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_edit_comment_details". -/// -- (BOOL)isShowcaseEditCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileAddedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_added_details". -/// -- (BOOL)isShowcaseFileAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileDownloadDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_download_details". -/// -- (BOOL)isShowcaseFileDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileRemovedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_removed_details". -/// -- (BOOL)isShowcaseFileRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_view_details". -/// -- (BOOL)isShowcaseFileViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_permanently_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePermanentlyDeletedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_permanently_deleted_details". -/// -- (BOOL)isShowcasePermanentlyDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_post_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePostCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_post_comment_details". -/// -- (BOOL)isShowcasePostCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRemoveMemberDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_remove_member_details". -/// -- (BOOL)isShowcaseRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_renamed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRenamedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_renamed_details". -/// -- (BOOL)isShowcaseRenamedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_request_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRequestAccessDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_request_access_details". -/// -- (BOOL)isShowcaseRequestAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_resolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseResolveCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_resolve_comment_details". -/// -- (BOOL)isShowcaseResolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_restored_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRestoredDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_restored_details". -/// -- (BOOL)isShowcaseRestoredDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_details". -/// -- (BOOL)isShowcaseTrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_deprecated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashedDeprecatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_deprecated_details". -/// -- (BOOL)isShowcaseTrashedDeprecatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_unresolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUnresolveCommentDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_unresolve_comment_details". -/// -- (BOOL)isShowcaseUnresolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_details". -/// -- (BOOL)isShowcaseUntrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_deprecated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashedDeprecatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_deprecated_details". -/// -- (BOOL)isShowcaseUntrashedDeprecatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_view_details". -/// -- (BOOL)isShowcaseViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_cert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddCertDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_cert_details". -/// -- (BOOL)isSsoAddCertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_login_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLoginUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_login_url_details". -/// -- (BOOL)isSsoAddLoginUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_logout_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLogoutUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_logout_url_details". -/// -- (BOOL)isSsoAddLogoutUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_cert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeCertDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_cert_details". -/// -- (BOOL)isSsoChangeCertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_login_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLoginUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_login_url_details". -/// -- (BOOL)isSsoChangeLoginUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_logout_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLogoutUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_logout_url_details". -/// -- (BOOL)isSsoChangeLogoutUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_saml_identity_mode_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeSamlIdentityModeDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_saml_identity_mode_details". -/// -- (BOOL)isSsoChangeSamlIdentityModeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_cert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveCertDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_cert_details". -/// -- (BOOL)isSsoRemoveCertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_login_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLoginUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_login_url_details". -/// -- (BOOL)isSsoRemoveLoginUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_logout_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLogoutUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_logout_url_details". -/// -- (BOOL)isSsoRemoveLogoutUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderChangeStatusDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_change_status_details". -/// -- (BOOL)isTeamFolderChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_create_details". -/// -- (BOOL)isTeamFolderCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_downgrade_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderDowngradeDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_downgrade_details". -/// -- (BOOL)isTeamFolderDowngradeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_permanently_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderPermanentlyDeleteDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_permanently_delete_details". -/// -- (BOOL)isTeamFolderPermanentlyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderRenameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_rename_details". -/// -- (BOOL)isTeamFolderRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_settings_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncSettingsChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_settings_changed_details". -/// -- (BOOL)isTeamSelectiveSyncSettingsChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_policy_details". -/// -- (BOOL)isAccountCaptureChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_email_reminders_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminEmailRemindersChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_email_reminders_changed_details". -/// -- (BOOL)isAdminEmailRemindersChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadDisabledDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_disabled_details". -/// -- (BOOL)isAllowDownloadDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadEnabledDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_enabled_details". -/// -- (BOOL)isAllowDownloadEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_permissions_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appPermissionsChangedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_permissions_changed_details". -/// -- (BOOL)isAppPermissionsChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "camera_uploads_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cameraUploadsPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "camera_uploads_policy_changed_details". -/// -- (BOOL)isCameraUploadsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "capture_transcript_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `captureTranscriptPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "capture_transcript_policy_changed_details". -/// -- (BOOL)isCaptureTranscriptPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_change_policy_details". -/// -- (BOOL)isClassificationChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "computer_backup_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `computerBackupPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "computer_backup_policy_changed_details". -/// -- (BOOL)isComputerBackupPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_administration_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contentAdministrationPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "content_administration_policy_changed_details". -/// -- (BOOL)isContentAdministrationPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_change_policy_details". -/// -- (BOOL)isDataPlacementRestrictionChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionSatisfyPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy_details". -/// -- (BOOL)isDataPlacementRestrictionSatisfyPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsAddExceptionDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_add_exception_details". -/// -- (BOOL)isDeviceApprovalsAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_desktop_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeDesktopPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_desktop_policy_details". -/// -- (BOOL)isDeviceApprovalsChangeDesktopPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_mobile_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeMobilePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_mobile_policy_details". -/// -- (BOOL)isDeviceApprovalsChangeMobilePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_overage_action_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeOverageActionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_overage_action_details". -/// -- (BOOL)isDeviceApprovalsChangeOverageActionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_unlink_action_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeUnlinkActionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_unlink_action_details". -/// -- (BOOL)isDeviceApprovalsChangeUnlinkActionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsRemoveExceptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_remove_exception_details". -/// -- (BOOL)isDeviceApprovalsRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_add_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsAddMembersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_add_members_details". -/// -- (BOOL)isDirectoryRestrictionsAddMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_remove_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsRemoveMembersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_remove_members_details". -/// -- (BOOL)isDirectoryRestrictionsRemoveMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_policy_changed_details". -/// -- (BOOL)isDropboxPasswordsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_policy_changed_details". -/// -- (BOOL)isEmailIngestPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmAddExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_add_exception_details". -/// -- (BOOL)isEmmAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_change_policy_details". -/// -- (BOOL)isEmmChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRemoveExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_remove_exception_details". -/// -- (BOOL)isEmmRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "extended_version_history_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `extendedVersionHistoryChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "extended_version_history_change_policy_details". -/// -- (BOOL)isExtendedVersionHistoryChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_policy_changed_details". -/// -- (BOOL)isExternalDriveBackupPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_comments_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCommentsChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_comments_change_policy_details". -/// -- (BOOL)isFileCommentsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_policy_changed_details". -/// -- (BOOL)isFileLockingPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_provider_migration_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileProviderMigrationPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_provider_migration_policy_changed_details". -/// -- (BOOL)isFileProviderMigrationPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_change_policy_details". -/// -- (BOOL)isFileRequestsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsEnabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_enabled_details". -/// -- (BOOL)isFileRequestsEmailsEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsRestrictedToTeamOnlyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only_details". -/// -- (BOOL)isFileRequestsEmailsRestrictedToTeamOnlyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_policy_changed_details". -/// -- (BOOL)isFileTransfersPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_link_restriction_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderLinkRestrictionPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_link_restriction_policy_changed_details". -/// -- (BOOL)isFolderLinkRestrictionPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "google_sso_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `googleSsoChangePolicyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "google_sso_change_policy_details". -/// -- (BOOL)isGoogleSsoChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_user_management_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupUserManagementChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_user_management_change_policy_details". -/// -- (BOOL)isGroupUserManagementChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_policy_changed_details". -/// -- (BOOL)isIntegrationPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `inviteAcceptanceEmailPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed_details". -/// -- (BOOL)isInviteAcceptanceEmailPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_requests_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRequestsChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_requests_change_policy_details". -/// -- (BOOL)isMemberRequestsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_send_invite_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSendInvitePolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_send_invite_policy_changed_details". -/// -- (BOOL)isMemberSendInvitePolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddExceptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_exception_details". -/// -- (BOOL)isMemberSpaceLimitsAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCapsTypePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy_details". -/// -- (BOOL)isMemberSpaceLimitsChangeCapsTypePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_policy_details". -/// -- (BOOL)isMemberSpaceLimitsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveExceptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_exception_details". -/// -- (BOOL)isMemberSpaceLimitsRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggestions_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggestionsChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_suggestions_change_policy_details". -/// -- (BOOL)isMemberSuggestionsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "microsoft_office_addin_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `microsoftOfficeAddinChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "microsoft_office_addin_change_policy_details". -/// -- (BOOL)isMicrosoftOfficeAddinChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "network_control_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `networkControlChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "network_control_change_policy_details". -/// -- (BOOL)isNetworkControlChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_deployment_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeDeploymentPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_deployment_policy_details". -/// -- (BOOL)isPaperChangeDeploymentPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_link_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberLinkPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_link_policy_details". -/// -- (BOOL)isPaperChangeMemberLinkPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_policy_details". -/// -- (BOOL)isPaperChangeMemberPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_policy_details". -/// -- (BOOL)isPaperChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_default_folder_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDefaultFolderPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_default_folder_policy_changed_details". -/// -- (BOOL)isPaperDefaultFolderPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_desktop_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDesktopPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_desktop_policy_changed_details". -/// -- (BOOL)isPaperDesktopPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_addition_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupAdditionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_addition_details". -/// -- (BOOL)isPaperEnabledUsersGroupAdditionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_removal_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupRemovalDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_removal_details". -/// -- (BOOL)isPaperEnabledUsersGroupRemovalDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_strength_requirements_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordStrengthRequirementsChangePolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_strength_requirements_change_policy_details". -/// -- (BOOL)isPasswordStrengthRequirementsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "permanent_delete_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `permanentDeleteChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "permanent_delete_change_policy_details". -/// -- (BOOL)isPermanentDeleteChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_change_policy_details". -/// -- (BOOL)isResellerSupportChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindPolicyChangedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "rewind_policy_changed_details". -/// -- (BOOL)isRewindPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "send_for_signature_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sendForSignaturePolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "send_for_signature_policy_changed_details". -/// -- (BOOL)isSendForSignaturePolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_folder_join_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeFolderJoinPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_folder_join_policy_details". -/// -- (BOOL)isSharingChangeFolderJoinPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkAllowChangeExpirationPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy_details". -/// -- (BOOL)isSharingChangeLinkAllowChangeExpirationPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkDefaultExpirationPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy_details". -/// -- (BOOL)isSharingChangeLinkDefaultExpirationPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkEnforcePasswordPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy_details". -/// -- (BOOL)isSharingChangeLinkEnforcePasswordPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_policy_details". -/// -- (BOOL)isSharingChangeLinkPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_member_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeMemberPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_member_policy_details". -/// -- (BOOL)isSharingChangeMemberPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_download_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeDownloadPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_download_policy_details". -/// -- (BOOL)isShowcaseChangeDownloadPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_enabled_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeEnabledPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_enabled_policy_details". -/// -- (BOOL)isShowcaseChangeEnabledPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_external_sharing_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeExternalSharingPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_external_sharing_policy_details". -/// -- (BOOL)isShowcaseChangeExternalSharingPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smarterSmartSyncPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed_details". -/// -- (BOOL)isSmarterSmartSyncPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncChangePolicyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_change_policy_details". -/// -- (BOOL)isSmartSyncChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_not_opt_out_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncNotOptOutDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_not_opt_out_details". -/// -- (BOOL)isSmartSyncNotOptOutDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_opt_out_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncOptOutDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_opt_out_details". -/// -- (BOOL)isSmartSyncOptOutDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_policy_details". -/// -- (BOOL)isSsoChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_branding_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamBrandingPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_branding_policy_changed_details". -/// -- (BOOL)isTeamBrandingPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_extensions_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamExtensionsPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_extensions_policy_changed_details". -/// -- (BOOL)isTeamExtensionsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_policy_changed_details". -/// -- (BOOL)isTeamSelectiveSyncPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharingWhitelistSubjectsChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed_details". -/// -- (BOOL)isTeamSharingWhitelistSubjectsChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_exception_details". -/// -- (BOOL)isTfaAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_policy_details". -/// -- (BOOL)isTfaChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_exception_details". -/// -- (BOOL)isTfaRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_account_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `twoAccountChangePolicyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "two_account_change_policy_details". -/// -- (BOOL)isTwoAccountChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_info_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `viewerInfoPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "viewer_info_policy_changed_details". -/// -- (BOOL)isViewerInfoPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "watermarking_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `watermarkingPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "watermarking_policy_changed_details". -/// -- (BOOL)isWatermarkingPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_active_session_limit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeActiveSessionLimitDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_active_session_limit_details". -/// -- (BOOL)isWebSessionsChangeActiveSessionLimitDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeFixedLengthPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy_details". -/// -- (BOOL)isWebSessionsChangeFixedLengthPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeIdleLengthPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy_details". -/// -- (BOOL)isWebSessionsChangeIdleLengthPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_successful_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestSuccessfulDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_successful_details". -/// -- (BOOL)isDataResidencyMigrationRequestSuccessfulDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestUnsuccessfulDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful_details". -/// -- (BOOL)isDataResidencyMigrationRequestUnsuccessfulDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_from_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeFromDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_from_details". -/// -- (BOOL)isTeamMergeFromDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_to_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeToDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_to_details". -/// -- (BOOL)isTeamMergeToDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_background_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddBackgroundDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_background_details". -/// -- (BOOL)isTeamProfileAddBackgroundDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_logo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddLogoDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_logo_details". -/// -- (BOOL)isTeamProfileAddLogoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_background_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeBackgroundDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_background_details". -/// -- (BOOL)isTeamProfileChangeBackgroundDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_default_language_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeDefaultLanguageDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_default_language_details". -/// -- (BOOL)isTeamProfileChangeDefaultLanguageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_logo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeLogoDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_logo_details". -/// -- (BOOL)isTeamProfileChangeLogoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeNameDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_name_details". -/// -- (BOOL)isTeamProfileChangeNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_background_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveBackgroundDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_background_details". -/// -- (BOOL)isTeamProfileRemoveBackgroundDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_logo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveLogoDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_logo_details". -/// -- (BOOL)isTeamProfileRemoveLogoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_backup_phone_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddBackupPhoneDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_backup_phone_details". -/// -- (BOOL)isTfaAddBackupPhoneDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_security_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddSecurityKeyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_security_key_details". -/// -- (BOOL)isTfaAddSecurityKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_backup_phone_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeBackupPhoneDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_backup_phone_details". -/// -- (BOOL)isTfaChangeBackupPhoneDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeStatusDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_status_details". -/// -- (BOOL)isTfaChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_backup_phone_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveBackupPhoneDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_backup_phone_details". -/// -- (BOOL)isTfaRemoveBackupPhoneDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_security_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveSecurityKeyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_security_key_details". -/// -- (BOOL)isTfaRemoveSecurityKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_reset_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaResetDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_reset_details". -/// -- (BOOL)isTfaResetDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_admin_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseAdminRoleDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_admin_role_details". -/// -- (BOOL)isChangedEnterpriseAdminRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_connected_team_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseConnectedTeamStatusDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_connected_team_status_details". -/// -- (BOOL)isChangedEnterpriseConnectedTeamStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSessionDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_details". -/// -- (BOOL)isEndedEnterpriseAdminSessionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSessionDeprecatedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated_details". -/// -- (BOOL)isEndedEnterpriseAdminSessionDeprecatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_settings_locking_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enterpriseSettingsLockingDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "enterprise_settings_locking_details". -/// -- (BOOL)isEnterpriseSettingsLockingDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminChangeStatusDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_change_status_details". -/// -- (BOOL)isGuestAdminChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "started_enterprise_admin_session_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `startedEnterpriseAdminSessionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "started_enterprise_admin_session_details". -/// -- (BOOL)isStartedEnterpriseAdminSessionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_details". -/// -- (BOOL)isTeamMergeRequestAcceptedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_auto_canceled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAutoCanceledDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_auto_canceled_details". -/// -- (BOOL)isTeamMergeRequestAutoCanceledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_details". -/// -- (BOOL)isTeamMergeRequestCanceledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestCanceledShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestCanceledShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_details". -/// -- (BOOL)isTeamMergeRequestExpiredDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestExpiredShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestExpiredShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestRejectedShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestRejectedShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_details". -/// -- (BOOL)isTeamMergeRequestReminderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestReminderShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestReminderShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_revoked_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRevokedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_revoked_details". -/// -- (BOOL)isTeamMergeRequestRevokedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestSentShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestSentShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value "missing_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `missingDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "missing_details". -/// -- (BOOL)isMissingDetails; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventDetails` union. -/// -@interface DBTEAMLOGEventDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEventDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventDetails` object. -/// -+ (DBTEAMLOGEventDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventType.h deleted file mode 100644 index 2e6d76e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventType.h +++ /dev/null @@ -1,17722 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangeAvailabilityType; -@class DBTEAMLOGAccountCaptureChangePolicyType; -@class DBTEAMLOGAccountCaptureMigrateAccountType; -@class DBTEAMLOGAccountCaptureNotificationEmailsSentType; -@class DBTEAMLOGAccountCaptureRelinquishAccountType; -@class DBTEAMLOGAccountLockOrUnlockedType; -@class DBTEAMLOGAdminAlertingAlertStateChangedType; -@class DBTEAMLOGAdminAlertingChangedAlertConfigType; -@class DBTEAMLOGAdminAlertingTriggeredAlertType; -@class DBTEAMLOGAdminEmailRemindersChangedType; -@class DBTEAMLOGAllowDownloadDisabledType; -@class DBTEAMLOGAllowDownloadEnabledType; -@class DBTEAMLOGAppBlockedByPermissionsType; -@class DBTEAMLOGAppLinkTeamType; -@class DBTEAMLOGAppLinkUserType; -@class DBTEAMLOGAppPermissionsChangedType; -@class DBTEAMLOGAppUnlinkTeamType; -@class DBTEAMLOGAppUnlinkUserType; -@class DBTEAMLOGApplyNamingConventionType; -@class DBTEAMLOGBackupAdminInvitationSentType; -@class DBTEAMLOGBackupInvitationOpenedType; -@class DBTEAMLOGBinderAddPageType; -@class DBTEAMLOGBinderAddSectionType; -@class DBTEAMLOGBinderRemovePageType; -@class DBTEAMLOGBinderRemoveSectionType; -@class DBTEAMLOGBinderRenamePageType; -@class DBTEAMLOGBinderRenameSectionType; -@class DBTEAMLOGBinderReorderPageType; -@class DBTEAMLOGBinderReorderSectionType; -@class DBTEAMLOGCameraUploadsPolicyChangedType; -@class DBTEAMLOGCaptureTranscriptPolicyChangedType; -@class DBTEAMLOGChangedEnterpriseAdminRoleType; -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusType; -@class DBTEAMLOGClassificationChangePolicyType; -@class DBTEAMLOGClassificationCreateReportFailType; -@class DBTEAMLOGClassificationCreateReportType; -@class DBTEAMLOGCollectionShareType; -@class DBTEAMLOGComputerBackupPolicyChangedType; -@class DBTEAMLOGContentAdministrationPolicyChangedType; -@class DBTEAMLOGCreateFolderType; -@class DBTEAMLOGCreateTeamInviteLinkType; -@class DBTEAMLOGDataPlacementRestrictionChangePolicyType; -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType; -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulType; -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType; -@class DBTEAMLOGDeleteTeamInviteLinkType; -@class DBTEAMLOGDeviceApprovalsAddExceptionType; -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType; -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyType; -@class DBTEAMLOGDeviceApprovalsChangeOverageActionType; -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionType; -@class DBTEAMLOGDeviceApprovalsRemoveExceptionType; -@class DBTEAMLOGDeviceChangeIpDesktopType; -@class DBTEAMLOGDeviceChangeIpMobileType; -@class DBTEAMLOGDeviceChangeIpWebType; -@class DBTEAMLOGDeviceDeleteOnUnlinkFailType; -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessType; -@class DBTEAMLOGDeviceLinkFailType; -@class DBTEAMLOGDeviceLinkSuccessType; -@class DBTEAMLOGDeviceManagementDisabledType; -@class DBTEAMLOGDeviceManagementEnabledType; -@class DBTEAMLOGDeviceSyncBackupStatusChangedType; -@class DBTEAMLOGDeviceUnlinkType; -@class DBTEAMLOGDirectoryRestrictionsAddMembersType; -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersType; -@class DBTEAMLOGDisabledDomainInvitesType; -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType; -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType; -@class DBTEAMLOGDomainInvitesEmailExistingUsersType; -@class DBTEAMLOGDomainInvitesRequestToJoinTeamType; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType; -@class DBTEAMLOGDomainVerificationAddDomainFailType; -@class DBTEAMLOGDomainVerificationAddDomainSuccessType; -@class DBTEAMLOGDomainVerificationRemoveDomainType; -@class DBTEAMLOGDropboxPasswordsExportedType; -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType; -@class DBTEAMLOGDropboxPasswordsPolicyChangedType; -@class DBTEAMLOGEmailIngestPolicyChangedType; -@class DBTEAMLOGEmailIngestReceiveFileType; -@class DBTEAMLOGEmmAddExceptionType; -@class DBTEAMLOGEmmChangePolicyType; -@class DBTEAMLOGEmmCreateExceptionsReportType; -@class DBTEAMLOGEmmCreateUsageReportType; -@class DBTEAMLOGEmmErrorType; -@class DBTEAMLOGEmmRefreshAuthTokenType; -@class DBTEAMLOGEmmRemoveExceptionType; -@class DBTEAMLOGEnabledDomainInvitesType; -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType; -@class DBTEAMLOGEndedEnterpriseAdminSessionType; -@class DBTEAMLOGEnterpriseSettingsLockingType; -@class DBTEAMLOGEventType; -@class DBTEAMLOGExportMembersReportFailType; -@class DBTEAMLOGExportMembersReportType; -@class DBTEAMLOGExtendedVersionHistoryChangePolicyType; -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType; -@class DBTEAMLOGExternalDriveBackupPolicyChangedType; -@class DBTEAMLOGExternalDriveBackupStatusChangedType; -@class DBTEAMLOGExternalSharingCreateReportType; -@class DBTEAMLOGExternalSharingReportFailedType; -@class DBTEAMLOGFileAddCommentType; -@class DBTEAMLOGFileAddFromAutomationType; -@class DBTEAMLOGFileAddType; -@class DBTEAMLOGFileChangeCommentSubscriptionType; -@class DBTEAMLOGFileCommentsChangePolicyType; -@class DBTEAMLOGFileCopyType; -@class DBTEAMLOGFileDeleteCommentType; -@class DBTEAMLOGFileDeleteType; -@class DBTEAMLOGFileDownloadType; -@class DBTEAMLOGFileEditCommentType; -@class DBTEAMLOGFileEditType; -@class DBTEAMLOGFileGetCopyReferenceType; -@class DBTEAMLOGFileLikeCommentType; -@class DBTEAMLOGFileLockingLockStatusChangedType; -@class DBTEAMLOGFileLockingPolicyChangedType; -@class DBTEAMLOGFileMoveType; -@class DBTEAMLOGFilePermanentlyDeleteType; -@class DBTEAMLOGFilePreviewType; -@class DBTEAMLOGFileProviderMigrationPolicyChangedType; -@class DBTEAMLOGFileRenameType; -@class DBTEAMLOGFileRequestChangeType; -@class DBTEAMLOGFileRequestCloseType; -@class DBTEAMLOGFileRequestCreateType; -@class DBTEAMLOGFileRequestDeleteType; -@class DBTEAMLOGFileRequestReceiveFileType; -@class DBTEAMLOGFileRequestsChangePolicyType; -@class DBTEAMLOGFileRequestsEmailsEnabledType; -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType; -@class DBTEAMLOGFileResolveCommentType; -@class DBTEAMLOGFileRestoreType; -@class DBTEAMLOGFileRevertType; -@class DBTEAMLOGFileRollbackChangesType; -@class DBTEAMLOGFileSaveCopyReferenceType; -@class DBTEAMLOGFileTransfersFileAddType; -@class DBTEAMLOGFileTransfersPolicyChangedType; -@class DBTEAMLOGFileTransfersTransferDeleteType; -@class DBTEAMLOGFileTransfersTransferDownloadType; -@class DBTEAMLOGFileTransfersTransferSendType; -@class DBTEAMLOGFileTransfersTransferViewType; -@class DBTEAMLOGFileUnlikeCommentType; -@class DBTEAMLOGFileUnresolveCommentType; -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedType; -@class DBTEAMLOGFolderOverviewDescriptionChangedType; -@class DBTEAMLOGFolderOverviewItemPinnedType; -@class DBTEAMLOGFolderOverviewItemUnpinnedType; -@class DBTEAMLOGGoogleSsoChangePolicyType; -@class DBTEAMLOGGovernancePolicyAddFolderFailedType; -@class DBTEAMLOGGovernancePolicyAddFoldersType; -@class DBTEAMLOGGovernancePolicyContentDisposedType; -@class DBTEAMLOGGovernancePolicyCreateType; -@class DBTEAMLOGGovernancePolicyDeleteType; -@class DBTEAMLOGGovernancePolicyEditDetailsType; -@class DBTEAMLOGGovernancePolicyEditDurationType; -@class DBTEAMLOGGovernancePolicyExportCreatedType; -@class DBTEAMLOGGovernancePolicyExportRemovedType; -@class DBTEAMLOGGovernancePolicyRemoveFoldersType; -@class DBTEAMLOGGovernancePolicyReportCreatedType; -@class DBTEAMLOGGovernancePolicyZipPartDownloadedType; -@class DBTEAMLOGGroupAddExternalIdType; -@class DBTEAMLOGGroupAddMemberType; -@class DBTEAMLOGGroupChangeExternalIdType; -@class DBTEAMLOGGroupChangeManagementTypeType; -@class DBTEAMLOGGroupChangeMemberRoleType; -@class DBTEAMLOGGroupCreateType; -@class DBTEAMLOGGroupDeleteType; -@class DBTEAMLOGGroupDescriptionUpdatedType; -@class DBTEAMLOGGroupJoinPolicyUpdatedType; -@class DBTEAMLOGGroupMovedType; -@class DBTEAMLOGGroupRemoveExternalIdType; -@class DBTEAMLOGGroupRemoveMemberType; -@class DBTEAMLOGGroupRenameType; -@class DBTEAMLOGGroupUserManagementChangePolicyType; -@class DBTEAMLOGGuestAdminChangeStatusType; -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType; -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType; -@class DBTEAMLOGIntegrationConnectedType; -@class DBTEAMLOGIntegrationDisconnectedType; -@class DBTEAMLOGIntegrationPolicyChangedType; -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedType; -@class DBTEAMLOGLegalHoldsActivateAHoldType; -@class DBTEAMLOGLegalHoldsAddMembersType; -@class DBTEAMLOGLegalHoldsChangeHoldDetailsType; -@class DBTEAMLOGLegalHoldsChangeHoldNameType; -@class DBTEAMLOGLegalHoldsExportAHoldType; -@class DBTEAMLOGLegalHoldsExportCancelledType; -@class DBTEAMLOGLegalHoldsExportDownloadedType; -@class DBTEAMLOGLegalHoldsExportRemovedType; -@class DBTEAMLOGLegalHoldsReleaseAHoldType; -@class DBTEAMLOGLegalHoldsRemoveMembersType; -@class DBTEAMLOGLegalHoldsReportAHoldType; -@class DBTEAMLOGLoginFailType; -@class DBTEAMLOGLoginSuccessType; -@class DBTEAMLOGLogoutType; -@class DBTEAMLOGMemberAddExternalIdType; -@class DBTEAMLOGMemberAddNameType; -@class DBTEAMLOGMemberChangeAdminRoleType; -@class DBTEAMLOGMemberChangeEmailType; -@class DBTEAMLOGMemberChangeExternalIdType; -@class DBTEAMLOGMemberChangeMembershipTypeType; -@class DBTEAMLOGMemberChangeNameType; -@class DBTEAMLOGMemberChangeResellerRoleType; -@class DBTEAMLOGMemberChangeStatusType; -@class DBTEAMLOGMemberDeleteManualContactsType; -@class DBTEAMLOGMemberDeleteProfilePhotoType; -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsType; -@class DBTEAMLOGMemberRemoveExternalIdType; -@class DBTEAMLOGMemberRequestsChangePolicyType; -@class DBTEAMLOGMemberSendInvitePolicyChangedType; -@class DBTEAMLOGMemberSetProfilePhotoType; -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType; -@class DBTEAMLOGMemberSpaceLimitsAddExceptionType; -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType; -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType; -@class DBTEAMLOGMemberSpaceLimitsChangePolicyType; -@class DBTEAMLOGMemberSpaceLimitsChangeStatusType; -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType; -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionType; -@class DBTEAMLOGMemberSuggestType; -@class DBTEAMLOGMemberSuggestionsChangePolicyType; -@class DBTEAMLOGMemberTransferAccountContentsType; -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyType; -@class DBTEAMLOGNetworkControlChangePolicyType; -@class DBTEAMLOGNoExpirationLinkGenCreateReportType; -@class DBTEAMLOGNoExpirationLinkGenReportFailedType; -@class DBTEAMLOGNoPasswordLinkGenCreateReportType; -@class DBTEAMLOGNoPasswordLinkGenReportFailedType; -@class DBTEAMLOGNoPasswordLinkViewCreateReportType; -@class DBTEAMLOGNoPasswordLinkViewReportFailedType; -@class DBTEAMLOGNoteAclInviteOnlyType; -@class DBTEAMLOGNoteAclLinkType; -@class DBTEAMLOGNoteAclTeamLinkType; -@class DBTEAMLOGNoteShareReceiveType; -@class DBTEAMLOGNoteSharedType; -@class DBTEAMLOGObjectLabelAddedType; -@class DBTEAMLOGObjectLabelRemovedType; -@class DBTEAMLOGObjectLabelUpdatedValueType; -@class DBTEAMLOGOpenNoteSharedType; -@class DBTEAMLOGOrganizeFolderWithTidyType; -@class DBTEAMLOGOutdatedLinkViewCreateReportType; -@class DBTEAMLOGOutdatedLinkViewReportFailedType; -@class DBTEAMLOGPaperAdminExportStartType; -@class DBTEAMLOGPaperChangeDeploymentPolicyType; -@class DBTEAMLOGPaperChangeMemberLinkPolicyType; -@class DBTEAMLOGPaperChangeMemberPolicyType; -@class DBTEAMLOGPaperChangePolicyType; -@class DBTEAMLOGPaperContentAddMemberType; -@class DBTEAMLOGPaperContentAddToFolderType; -@class DBTEAMLOGPaperContentArchiveType; -@class DBTEAMLOGPaperContentCreateType; -@class DBTEAMLOGPaperContentPermanentlyDeleteType; -@class DBTEAMLOGPaperContentRemoveFromFolderType; -@class DBTEAMLOGPaperContentRemoveMemberType; -@class DBTEAMLOGPaperContentRenameType; -@class DBTEAMLOGPaperContentRestoreType; -@class DBTEAMLOGPaperDefaultFolderPolicyChangedType; -@class DBTEAMLOGPaperDesktopPolicyChangedType; -@class DBTEAMLOGPaperDocAddCommentType; -@class DBTEAMLOGPaperDocChangeMemberRoleType; -@class DBTEAMLOGPaperDocChangeSharingPolicyType; -@class DBTEAMLOGPaperDocChangeSubscriptionType; -@class DBTEAMLOGPaperDocDeleteCommentType; -@class DBTEAMLOGPaperDocDeletedType; -@class DBTEAMLOGPaperDocDownloadType; -@class DBTEAMLOGPaperDocEditCommentType; -@class DBTEAMLOGPaperDocEditType; -@class DBTEAMLOGPaperDocFollowedType; -@class DBTEAMLOGPaperDocMentionType; -@class DBTEAMLOGPaperDocOwnershipChangedType; -@class DBTEAMLOGPaperDocRequestAccessType; -@class DBTEAMLOGPaperDocResolveCommentType; -@class DBTEAMLOGPaperDocRevertType; -@class DBTEAMLOGPaperDocSlackShareType; -@class DBTEAMLOGPaperDocTeamInviteType; -@class DBTEAMLOGPaperDocTrashedType; -@class DBTEAMLOGPaperDocUnresolveCommentType; -@class DBTEAMLOGPaperDocUntrashedType; -@class DBTEAMLOGPaperDocViewType; -@class DBTEAMLOGPaperEnabledUsersGroupAdditionType; -@class DBTEAMLOGPaperEnabledUsersGroupRemovalType; -@class DBTEAMLOGPaperExternalViewAllowType; -@class DBTEAMLOGPaperExternalViewDefaultTeamType; -@class DBTEAMLOGPaperExternalViewForbidType; -@class DBTEAMLOGPaperFolderChangeSubscriptionType; -@class DBTEAMLOGPaperFolderDeletedType; -@class DBTEAMLOGPaperFolderFollowedType; -@class DBTEAMLOGPaperFolderTeamInviteType; -@class DBTEAMLOGPaperPublishedLinkChangePermissionType; -@class DBTEAMLOGPaperPublishedLinkCreateType; -@class DBTEAMLOGPaperPublishedLinkDisabledType; -@class DBTEAMLOGPaperPublishedLinkViewType; -@class DBTEAMLOGPasswordChangeType; -@class DBTEAMLOGPasswordResetAllType; -@class DBTEAMLOGPasswordResetType; -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyType; -@class DBTEAMLOGPendingSecondaryEmailAddedType; -@class DBTEAMLOGPermanentDeleteChangePolicyType; -@class DBTEAMLOGRansomwareAlertCreateReportFailedType; -@class DBTEAMLOGRansomwareAlertCreateReportType; -@class DBTEAMLOGRansomwareRestoreProcessCompletedType; -@class DBTEAMLOGRansomwareRestoreProcessStartedType; -@class DBTEAMLOGReplayFileDeleteType; -@class DBTEAMLOGReplayFileSharedLinkCreatedType; -@class DBTEAMLOGReplayFileSharedLinkModifiedType; -@class DBTEAMLOGReplayProjectTeamAddType; -@class DBTEAMLOGReplayProjectTeamDeleteType; -@class DBTEAMLOGResellerSupportChangePolicyType; -@class DBTEAMLOGResellerSupportSessionEndType; -@class DBTEAMLOGResellerSupportSessionStartType; -@class DBTEAMLOGRewindFolderType; -@class DBTEAMLOGRewindPolicyChangedType; -@class DBTEAMLOGSecondaryEmailDeletedType; -@class DBTEAMLOGSecondaryEmailVerifiedType; -@class DBTEAMLOGSecondaryMailsPolicyChangedType; -@class DBTEAMLOGSendForSignaturePolicyChangedType; -@class DBTEAMLOGSfAddGroupType; -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksType; -@class DBTEAMLOGSfExternalInviteWarnType; -@class DBTEAMLOGSfFbInviteChangeRoleType; -@class DBTEAMLOGSfFbInviteType; -@class DBTEAMLOGSfFbUninviteType; -@class DBTEAMLOGSfInviteGroupType; -@class DBTEAMLOGSfTeamGrantAccessType; -@class DBTEAMLOGSfTeamInviteChangeRoleType; -@class DBTEAMLOGSfTeamInviteType; -@class DBTEAMLOGSfTeamJoinFromOobLinkType; -@class DBTEAMLOGSfTeamJoinType; -@class DBTEAMLOGSfTeamUninviteType; -@class DBTEAMLOGSharedContentAddInviteesType; -@class DBTEAMLOGSharedContentAddLinkExpiryType; -@class DBTEAMLOGSharedContentAddLinkPasswordType; -@class DBTEAMLOGSharedContentAddMemberType; -@class DBTEAMLOGSharedContentChangeDownloadsPolicyType; -@class DBTEAMLOGSharedContentChangeInviteeRoleType; -@class DBTEAMLOGSharedContentChangeLinkAudienceType; -@class DBTEAMLOGSharedContentChangeLinkExpiryType; -@class DBTEAMLOGSharedContentChangeLinkPasswordType; -@class DBTEAMLOGSharedContentChangeMemberRoleType; -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyType; -@class DBTEAMLOGSharedContentClaimInvitationType; -@class DBTEAMLOGSharedContentCopyType; -@class DBTEAMLOGSharedContentDownloadType; -@class DBTEAMLOGSharedContentRelinquishMembershipType; -@class DBTEAMLOGSharedContentRemoveInviteesType; -@class DBTEAMLOGSharedContentRemoveLinkExpiryType; -@class DBTEAMLOGSharedContentRemoveLinkPasswordType; -@class DBTEAMLOGSharedContentRemoveMemberType; -@class DBTEAMLOGSharedContentRequestAccessType; -@class DBTEAMLOGSharedContentRestoreInviteesType; -@class DBTEAMLOGSharedContentRestoreMemberType; -@class DBTEAMLOGSharedContentUnshareType; -@class DBTEAMLOGSharedContentViewType; -@class DBTEAMLOGSharedFolderChangeLinkPolicyType; -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType; -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyType; -@class DBTEAMLOGSharedFolderChangeMembersPolicyType; -@class DBTEAMLOGSharedFolderCreateType; -@class DBTEAMLOGSharedFolderDeclineInvitationType; -@class DBTEAMLOGSharedFolderMountType; -@class DBTEAMLOGSharedFolderNestType; -@class DBTEAMLOGSharedFolderTransferOwnershipType; -@class DBTEAMLOGSharedFolderUnmountType; -@class DBTEAMLOGSharedLinkAddExpiryType; -@class DBTEAMLOGSharedLinkChangeExpiryType; -@class DBTEAMLOGSharedLinkChangeVisibilityType; -@class DBTEAMLOGSharedLinkCopyType; -@class DBTEAMLOGSharedLinkCreateType; -@class DBTEAMLOGSharedLinkDisableType; -@class DBTEAMLOGSharedLinkDownloadType; -@class DBTEAMLOGSharedLinkRemoveExpiryType; -@class DBTEAMLOGSharedLinkSettingsAddExpirationType; -@class DBTEAMLOGSharedLinkSettingsAddPasswordType; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType; -@class DBTEAMLOGSharedLinkSettingsChangeAudienceType; -@class DBTEAMLOGSharedLinkSettingsChangeExpirationType; -@class DBTEAMLOGSharedLinkSettingsChangePasswordType; -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationType; -@class DBTEAMLOGSharedLinkSettingsRemovePasswordType; -@class DBTEAMLOGSharedLinkShareType; -@class DBTEAMLOGSharedLinkViewType; -@class DBTEAMLOGSharedNoteOpenedType; -@class DBTEAMLOGSharingChangeFolderJoinPolicyType; -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType; -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType; -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType; -@class DBTEAMLOGSharingChangeLinkPolicyType; -@class DBTEAMLOGSharingChangeMemberPolicyType; -@class DBTEAMLOGShmodelDisableDownloadsType; -@class DBTEAMLOGShmodelEnableDownloadsType; -@class DBTEAMLOGShmodelGroupShareType; -@class DBTEAMLOGShowcaseAccessGrantedType; -@class DBTEAMLOGShowcaseAddMemberType; -@class DBTEAMLOGShowcaseArchivedType; -@class DBTEAMLOGShowcaseChangeDownloadPolicyType; -@class DBTEAMLOGShowcaseChangeEnabledPolicyType; -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyType; -@class DBTEAMLOGShowcaseCreatedType; -@class DBTEAMLOGShowcaseDeleteCommentType; -@class DBTEAMLOGShowcaseEditCommentType; -@class DBTEAMLOGShowcaseEditedType; -@class DBTEAMLOGShowcaseFileAddedType; -@class DBTEAMLOGShowcaseFileDownloadType; -@class DBTEAMLOGShowcaseFileRemovedType; -@class DBTEAMLOGShowcaseFileViewType; -@class DBTEAMLOGShowcasePermanentlyDeletedType; -@class DBTEAMLOGShowcasePostCommentType; -@class DBTEAMLOGShowcaseRemoveMemberType; -@class DBTEAMLOGShowcaseRenamedType; -@class DBTEAMLOGShowcaseRequestAccessType; -@class DBTEAMLOGShowcaseResolveCommentType; -@class DBTEAMLOGShowcaseRestoredType; -@class DBTEAMLOGShowcaseTrashedDeprecatedType; -@class DBTEAMLOGShowcaseTrashedType; -@class DBTEAMLOGShowcaseUnresolveCommentType; -@class DBTEAMLOGShowcaseUntrashedDeprecatedType; -@class DBTEAMLOGShowcaseUntrashedType; -@class DBTEAMLOGShowcaseViewType; -@class DBTEAMLOGSignInAsSessionEndType; -@class DBTEAMLOGSignInAsSessionStartType; -@class DBTEAMLOGSmartSyncChangePolicyType; -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType; -@class DBTEAMLOGSmartSyncNotOptOutType; -@class DBTEAMLOGSmartSyncOptOutType; -@class DBTEAMLOGSmarterSmartSyncPolicyChangedType; -@class DBTEAMLOGSsoAddCertType; -@class DBTEAMLOGSsoAddLoginUrlType; -@class DBTEAMLOGSsoAddLogoutUrlType; -@class DBTEAMLOGSsoChangeCertType; -@class DBTEAMLOGSsoChangeLoginUrlType; -@class DBTEAMLOGSsoChangeLogoutUrlType; -@class DBTEAMLOGSsoChangePolicyType; -@class DBTEAMLOGSsoChangeSamlIdentityModeType; -@class DBTEAMLOGSsoErrorType; -@class DBTEAMLOGSsoRemoveCertType; -@class DBTEAMLOGSsoRemoveLoginUrlType; -@class DBTEAMLOGSsoRemoveLogoutUrlType; -@class DBTEAMLOGStartedEnterpriseAdminSessionType; -@class DBTEAMLOGTeamActivityCreateReportFailType; -@class DBTEAMLOGTeamActivityCreateReportType; -@class DBTEAMLOGTeamBrandingPolicyChangedType; -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType; -@class DBTEAMLOGTeamEncryptionKeyCreateKeyType; -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyType; -@class DBTEAMLOGTeamEncryptionKeyDisableKeyType; -@class DBTEAMLOGTeamEncryptionKeyEnableKeyType; -@class DBTEAMLOGTeamEncryptionKeyRotateKeyType; -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType; -@class DBTEAMLOGTeamExtensionsPolicyChangedType; -@class DBTEAMLOGTeamFolderChangeStatusType; -@class DBTEAMLOGTeamFolderCreateType; -@class DBTEAMLOGTeamFolderDowngradeType; -@class DBTEAMLOGTeamFolderPermanentlyDeleteType; -@class DBTEAMLOGTeamFolderRenameType; -@class DBTEAMLOGTeamMergeFromType; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestAcceptedType; -@class DBTEAMLOGTeamMergeRequestAutoCanceledType; -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestCanceledType; -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestExpiredType; -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestReminderType; -@class DBTEAMLOGTeamMergeRequestRevokedType; -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeToType; -@class DBTEAMLOGTeamProfileAddBackgroundType; -@class DBTEAMLOGTeamProfileAddLogoType; -@class DBTEAMLOGTeamProfileChangeBackgroundType; -@class DBTEAMLOGTeamProfileChangeDefaultLanguageType; -@class DBTEAMLOGTeamProfileChangeLogoType; -@class DBTEAMLOGTeamProfileChangeNameType; -@class DBTEAMLOGTeamProfileRemoveBackgroundType; -@class DBTEAMLOGTeamProfileRemoveLogoType; -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedType; -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedType; -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedType; -@class DBTEAMLOGTfaAddBackupPhoneType; -@class DBTEAMLOGTfaAddExceptionType; -@class DBTEAMLOGTfaAddSecurityKeyType; -@class DBTEAMLOGTfaChangeBackupPhoneType; -@class DBTEAMLOGTfaChangePolicyType; -@class DBTEAMLOGTfaChangeStatusType; -@class DBTEAMLOGTfaRemoveBackupPhoneType; -@class DBTEAMLOGTfaRemoveExceptionType; -@class DBTEAMLOGTfaRemoveSecurityKeyType; -@class DBTEAMLOGTfaResetType; -@class DBTEAMLOGTwoAccountChangePolicyType; -@class DBTEAMLOGUndoNamingConventionType; -@class DBTEAMLOGUndoOrganizeFolderWithTidyType; -@class DBTEAMLOGUserTagsAddedType; -@class DBTEAMLOGUserTagsRemovedType; -@class DBTEAMLOGViewerInfoPolicyChangedType; -@class DBTEAMLOGWatermarkingPolicyChangedType; -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitType; -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyType; -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventType` union. -/// -/// The type of the event with description. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventTypeTag) { - /// (admin_alerting) Changed an alert state - DBTEAMLOGEventTypeAdminAlertingAlertStateChanged, - - /// (admin_alerting) Changed an alert setting - DBTEAMLOGEventTypeAdminAlertingChangedAlertConfig, - - /// (admin_alerting) Triggered security alert - DBTEAMLOGEventTypeAdminAlertingTriggeredAlert, - - /// (admin_alerting) Completed ransomware restore process - DBTEAMLOGEventTypeRansomwareRestoreProcessCompleted, - - /// (admin_alerting) Started ransomware restore process - DBTEAMLOGEventTypeRansomwareRestoreProcessStarted, - - /// (apps) Failed to connect app for member - DBTEAMLOGEventTypeAppBlockedByPermissions, - - /// (apps) Linked app for team - DBTEAMLOGEventTypeAppLinkTeam, - - /// (apps) Linked app for member - DBTEAMLOGEventTypeAppLinkUser, - - /// (apps) Unlinked app for team - DBTEAMLOGEventTypeAppUnlinkTeam, - - /// (apps) Unlinked app for member - DBTEAMLOGEventTypeAppUnlinkUser, - - /// (apps) Connected integration for member - DBTEAMLOGEventTypeIntegrationConnected, - - /// (apps) Disconnected integration for member - DBTEAMLOGEventTypeIntegrationDisconnected, - - /// (comments) Added file comment - DBTEAMLOGEventTypeFileAddComment, - - /// (comments) Subscribed to or unsubscribed from comment notifications for - /// file - DBTEAMLOGEventTypeFileChangeCommentSubscription, - - /// (comments) Deleted file comment - DBTEAMLOGEventTypeFileDeleteComment, - - /// (comments) Edited file comment - DBTEAMLOGEventTypeFileEditComment, - - /// (comments) Liked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeFileLikeComment, - - /// (comments) Resolved file comment - DBTEAMLOGEventTypeFileResolveComment, - - /// (comments) Unliked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeFileUnlikeComment, - - /// (comments) Unresolved file comment - DBTEAMLOGEventTypeFileUnresolveComment, - - /// (data_governance) Added folders to policy - DBTEAMLOGEventTypeGovernancePolicyAddFolders, - - /// (data_governance) Couldn't add a folder to a policy - DBTEAMLOGEventTypeGovernancePolicyAddFolderFailed, - - /// (data_governance) Content disposed - DBTEAMLOGEventTypeGovernancePolicyContentDisposed, - - /// (data_governance) Activated a new policy - DBTEAMLOGEventTypeGovernancePolicyCreate, - - /// (data_governance) Deleted a policy - DBTEAMLOGEventTypeGovernancePolicyDelete, - - /// (data_governance) Edited policy - DBTEAMLOGEventTypeGovernancePolicyEditDetails, - - /// (data_governance) Changed policy duration - DBTEAMLOGEventTypeGovernancePolicyEditDuration, - - /// (data_governance) Created a policy download - DBTEAMLOGEventTypeGovernancePolicyExportCreated, - - /// (data_governance) Removed a policy download - DBTEAMLOGEventTypeGovernancePolicyExportRemoved, - - /// (data_governance) Removed folders from policy - DBTEAMLOGEventTypeGovernancePolicyRemoveFolders, - - /// (data_governance) Created a summary report for a policy - DBTEAMLOGEventTypeGovernancePolicyReportCreated, - - /// (data_governance) Downloaded content from a policy - DBTEAMLOGEventTypeGovernancePolicyZipPartDownloaded, - - /// (data_governance) Activated a hold - DBTEAMLOGEventTypeLegalHoldsActivateAHold, - - /// (data_governance) Added members to a hold - DBTEAMLOGEventTypeLegalHoldsAddMembers, - - /// (data_governance) Edited details for a hold - DBTEAMLOGEventTypeLegalHoldsChangeHoldDetails, - - /// (data_governance) Renamed a hold - DBTEAMLOGEventTypeLegalHoldsChangeHoldName, - - /// (data_governance) Exported hold - DBTEAMLOGEventTypeLegalHoldsExportAHold, - - /// (data_governance) Canceled export for a hold - DBTEAMLOGEventTypeLegalHoldsExportCancelled, - - /// (data_governance) Downloaded export for a hold - DBTEAMLOGEventTypeLegalHoldsExportDownloaded, - - /// (data_governance) Removed export for a hold - DBTEAMLOGEventTypeLegalHoldsExportRemoved, - - /// (data_governance) Released a hold - DBTEAMLOGEventTypeLegalHoldsReleaseAHold, - - /// (data_governance) Removed members from a hold - DBTEAMLOGEventTypeLegalHoldsRemoveMembers, - - /// (data_governance) Created a summary report for a hold - DBTEAMLOGEventTypeLegalHoldsReportAHold, - - /// (devices) Changed IP address associated with active desktop session - DBTEAMLOGEventTypeDeviceChangeIpDesktop, - - /// (devices) Changed IP address associated with active mobile session - DBTEAMLOGEventTypeDeviceChangeIpMobile, - - /// (devices) Changed IP address associated with active web session - DBTEAMLOGEventTypeDeviceChangeIpWeb, - - /// (devices) Failed to delete all files from unlinked device - DBTEAMLOGEventTypeDeviceDeleteOnUnlinkFail, - - /// (devices) Deleted all files from unlinked device - DBTEAMLOGEventTypeDeviceDeleteOnUnlinkSuccess, - - /// (devices) Failed to link device - DBTEAMLOGEventTypeDeviceLinkFail, - - /// (devices) Linked device - DBTEAMLOGEventTypeDeviceLinkSuccess, - - /// (devices) Disabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeDeviceManagementDisabled, - - /// (devices) Enabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeDeviceManagementEnabled, - - /// (devices) Enabled/disabled backup for computer - DBTEAMLOGEventTypeDeviceSyncBackupStatusChanged, - - /// (devices) Disconnected device - DBTEAMLOGEventTypeDeviceUnlink, - - /// (devices) Exported passwords - DBTEAMLOGEventTypeDropboxPasswordsExported, - - /// (devices) Enrolled new Dropbox Passwords device - DBTEAMLOGEventTypeDropboxPasswordsNewDeviceEnrolled, - - /// (devices) Refreshed auth token used for setting up EMM - DBTEAMLOGEventTypeEmmRefreshAuthToken, - - /// (devices) Checked external drive backup eligibility status - DBTEAMLOGEventTypeExternalDriveBackupEligibilityStatusChecked, - - /// (devices) Modified external drive backup - DBTEAMLOGEventTypeExternalDriveBackupStatusChanged, - - /// (domains) Granted/revoked option to enable account capture on team - /// domains - DBTEAMLOGEventTypeAccountCaptureChangeAvailability, - - /// (domains) Account-captured user migrated account to team - DBTEAMLOGEventTypeAccountCaptureMigrateAccount, - - /// (domains) Sent account capture email to all unmanaged members - DBTEAMLOGEventTypeAccountCaptureNotificationEmailsSent, - - /// (domains) Account-captured user changed account email to personal email - DBTEAMLOGEventTypeAccountCaptureRelinquishAccount, - - /// (domains) Disabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeDisabledDomainInvites, - - /// (domains) Approved user's request to join team - DBTEAMLOGEventTypeDomainInvitesApproveRequestToJoinTeam, - - /// (domains) Declined user's request to join team - DBTEAMLOGEventTypeDomainInvitesDeclineRequestToJoinTeam, - - /// (domains) Sent domain invites to existing domain accounts (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeDomainInvitesEmailExistingUsers, - - /// (domains) Requested to join team - DBTEAMLOGEventTypeDomainInvitesRequestToJoinTeam, - - /// (domains) Disabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeDomainInvitesSetInviteNewUserPrefToNo, - - /// (domains) Enabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeDomainInvitesSetInviteNewUserPrefToYes, - - /// (domains) Failed to verify team domain - DBTEAMLOGEventTypeDomainVerificationAddDomainFail, - - /// (domains) Verified team domain - DBTEAMLOGEventTypeDomainVerificationAddDomainSuccess, - - /// (domains) Removed domain from list of verified team domains - DBTEAMLOGEventTypeDomainVerificationRemoveDomain, - - /// (domains) Enabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeEnabledDomainInvites, - - /// (encryption) Canceled team encryption key deletion - DBTEAMLOGEventTypeTeamEncryptionKeyCancelKeyDeletion, - - /// (encryption) Created team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyCreateKey, - - /// (encryption) Deleted team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyDeleteKey, - - /// (encryption) Disabled team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyDisableKey, - - /// (encryption) Enabled team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyEnableKey, - - /// (encryption) Rotated team encryption key (deprecated, no longer logged) - DBTEAMLOGEventTypeTeamEncryptionKeyRotateKey, - - /// (encryption) Scheduled encryption key deletion - DBTEAMLOGEventTypeTeamEncryptionKeyScheduleKeyDeletion, - - /// (file_operations) Applied naming convention - DBTEAMLOGEventTypeApplyNamingConvention, - - /// (file_operations) Created folders (deprecated, no longer logged) - DBTEAMLOGEventTypeCreateFolder, - - /// (file_operations) Added files and/or folders - DBTEAMLOGEventTypeFileAdd, - - /// (file_operations) Added files and/or folders from automation - DBTEAMLOGEventTypeFileAddFromAutomation, - - /// (file_operations) Copied files and/or folders - DBTEAMLOGEventTypeFileCopy, - - /// (file_operations) Deleted files and/or folders - DBTEAMLOGEventTypeFileDelete, - - /// (file_operations) Downloaded files and/or folders - DBTEAMLOGEventTypeFileDownload, - - /// (file_operations) Edited files - DBTEAMLOGEventTypeFileEdit, - - /// (file_operations) Created copy reference to file/folder - DBTEAMLOGEventTypeFileGetCopyReference, - - /// (file_operations) Locked/unlocked editing for a file - DBTEAMLOGEventTypeFileLockingLockStatusChanged, - - /// (file_operations) Moved files and/or folders - DBTEAMLOGEventTypeFileMove, - - /// (file_operations) Permanently deleted files and/or folders - DBTEAMLOGEventTypeFilePermanentlyDelete, - - /// (file_operations) Previewed files and/or folders - DBTEAMLOGEventTypeFilePreview, - - /// (file_operations) Renamed files and/or folders - DBTEAMLOGEventTypeFileRename, - - /// (file_operations) Restored deleted files and/or folders - DBTEAMLOGEventTypeFileRestore, - - /// (file_operations) Reverted files to previous version - DBTEAMLOGEventTypeFileRevert, - - /// (file_operations) Rolled back file actions - DBTEAMLOGEventTypeFileRollbackChanges, - - /// (file_operations) Saved file/folder using copy reference - DBTEAMLOGEventTypeFileSaveCopyReference, - - /// (file_operations) Updated folder overview - DBTEAMLOGEventTypeFolderOverviewDescriptionChanged, - - /// (file_operations) Pinned item to folder overview - DBTEAMLOGEventTypeFolderOverviewItemPinned, - - /// (file_operations) Unpinned item from folder overview - DBTEAMLOGEventTypeFolderOverviewItemUnpinned, - - /// (file_operations) Added a label - DBTEAMLOGEventTypeObjectLabelAdded, - - /// (file_operations) Removed a label - DBTEAMLOGEventTypeObjectLabelRemoved, - - /// (file_operations) Updated a label's value - DBTEAMLOGEventTypeObjectLabelUpdatedValue, - - /// (file_operations) Organized a folder with multi-file organize - DBTEAMLOGEventTypeOrganizeFolderWithTidy, - - /// (file_operations) Deleted files in Replay - DBTEAMLOGEventTypeReplayFileDelete, - - /// (file_operations) Rewound a folder - DBTEAMLOGEventTypeRewindFolder, - - /// (file_operations) Reverted naming convention - DBTEAMLOGEventTypeUndoNamingConvention, - - /// (file_operations) Removed multi-file organize - DBTEAMLOGEventTypeUndoOrganizeFolderWithTidy, - - /// (file_operations) Tagged a file - DBTEAMLOGEventTypeUserTagsAdded, - - /// (file_operations) Removed tags - DBTEAMLOGEventTypeUserTagsRemoved, - - /// (file_requests) Received files via Email to Dropbox - DBTEAMLOGEventTypeEmailIngestReceiveFile, - - /// (file_requests) Changed file request - DBTEAMLOGEventTypeFileRequestChange, - - /// (file_requests) Closed file request - DBTEAMLOGEventTypeFileRequestClose, - - /// (file_requests) Created file request - DBTEAMLOGEventTypeFileRequestCreate, - - /// (file_requests) Delete file request - DBTEAMLOGEventTypeFileRequestDelete, - - /// (file_requests) Received files for file request - DBTEAMLOGEventTypeFileRequestReceiveFile, - - /// (groups) Added external ID for group - DBTEAMLOGEventTypeGroupAddExternalId, - - /// (groups) Added team members to group - DBTEAMLOGEventTypeGroupAddMember, - - /// (groups) Changed external ID for group - DBTEAMLOGEventTypeGroupChangeExternalId, - - /// (groups) Changed group management type - DBTEAMLOGEventTypeGroupChangeManagementType, - - /// (groups) Changed manager permissions of group member - DBTEAMLOGEventTypeGroupChangeMemberRole, - - /// (groups) Created group - DBTEAMLOGEventTypeGroupCreate, - - /// (groups) Deleted group - DBTEAMLOGEventTypeGroupDelete, - - /// (groups) Updated group (deprecated, no longer logged) - DBTEAMLOGEventTypeGroupDescriptionUpdated, - - /// (groups) Updated group join policy (deprecated, no longer logged) - DBTEAMLOGEventTypeGroupJoinPolicyUpdated, - - /// (groups) Moved group (deprecated, no longer logged) - DBTEAMLOGEventTypeGroupMoved, - - /// (groups) Removed external ID for group - DBTEAMLOGEventTypeGroupRemoveExternalId, - - /// (groups) Removed team members from group - DBTEAMLOGEventTypeGroupRemoveMember, - - /// (groups) Renamed group - DBTEAMLOGEventTypeGroupRename, - - /// (logins) Unlocked/locked account after failed sign in attempts - DBTEAMLOGEventTypeAccountLockOrUnlocked, - - /// (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeEmmError, - - /// (logins) Started trusted team admin session - DBTEAMLOGEventTypeGuestAdminSignedInViaTrustedTeams, - - /// (logins) Ended trusted team admin session - DBTEAMLOGEventTypeGuestAdminSignedOutViaTrustedTeams, - - /// (logins) Failed to sign in - DBTEAMLOGEventTypeLoginFail, - - /// (logins) Signed in - DBTEAMLOGEventTypeLoginSuccess, - - /// (logins) Signed out - DBTEAMLOGEventTypeLogout, - - /// (logins) Ended reseller support session - DBTEAMLOGEventTypeResellerSupportSessionEnd, - - /// (logins) Started reseller support session - DBTEAMLOGEventTypeResellerSupportSessionStart, - - /// (logins) Ended admin sign-in-as session - DBTEAMLOGEventTypeSignInAsSessionEnd, - - /// (logins) Started admin sign-in-as session - DBTEAMLOGEventTypeSignInAsSessionStart, - - /// (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeSsoError, - - /// (members) Invited members to activate Backup - DBTEAMLOGEventTypeBackupAdminInvitationSent, - - /// (members) Opened Backup invite - DBTEAMLOGEventTypeBackupInvitationOpened, - - /// (members) Created team invite link - DBTEAMLOGEventTypeCreateTeamInviteLink, - - /// (members) Deleted team invite link - DBTEAMLOGEventTypeDeleteTeamInviteLink, - - /// (members) Added an external ID for team member - DBTEAMLOGEventTypeMemberAddExternalId, - - /// (members) Added team member name - DBTEAMLOGEventTypeMemberAddName, - - /// (members) Changed team member admin role - DBTEAMLOGEventTypeMemberChangeAdminRole, - - /// (members) Changed team member email - DBTEAMLOGEventTypeMemberChangeEmail, - - /// (members) Changed the external ID for team member - DBTEAMLOGEventTypeMemberChangeExternalId, - - /// (members) Changed membership type (limited/full) of member (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeMemberChangeMembershipType, - - /// (members) Changed team member name - DBTEAMLOGEventTypeMemberChangeName, - - /// (members) Changed team member reseller role - DBTEAMLOGEventTypeMemberChangeResellerRole, - - /// (members) Changed member status (invited, joined, suspended, etc.) - DBTEAMLOGEventTypeMemberChangeStatus, - - /// (members) Cleared manually added contacts - DBTEAMLOGEventTypeMemberDeleteManualContacts, - - /// (members) Deleted team member profile photo - DBTEAMLOGEventTypeMemberDeleteProfilePhoto, - - /// (members) Permanently deleted contents of deleted team member account - DBTEAMLOGEventTypeMemberPermanentlyDeleteAccountContents, - - /// (members) Removed the external ID for team member - DBTEAMLOGEventTypeMemberRemoveExternalId, - - /// (members) Set team member profile photo - DBTEAMLOGEventTypeMemberSetProfilePhoto, - - /// (members) Set custom member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsAddCustomQuota, - - /// (members) Changed custom member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsChangeCustomQuota, - - /// (members) Changed space limit status - DBTEAMLOGEventTypeMemberSpaceLimitsChangeStatus, - - /// (members) Removed custom member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsRemoveCustomQuota, - - /// (members) Suggested person to add to team - DBTEAMLOGEventTypeMemberSuggest, - - /// (members) Transferred contents of deleted member account to another - /// member - DBTEAMLOGEventTypeMemberTransferAccountContents, - - /// (members) Added pending secondary email - DBTEAMLOGEventTypePendingSecondaryEmailAdded, - - /// (members) Deleted secondary email - DBTEAMLOGEventTypeSecondaryEmailDeleted, - - /// (members) Verified secondary email - DBTEAMLOGEventTypeSecondaryEmailVerified, - - /// (members) Secondary mails policy changed - DBTEAMLOGEventTypeSecondaryMailsPolicyChanged, - - /// (paper) Added Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderAddPage, - - /// (paper) Added Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderAddSection, - - /// (paper) Removed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRemovePage, - - /// (paper) Removed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRemoveSection, - - /// (paper) Renamed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRenamePage, - - /// (paper) Renamed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRenameSection, - - /// (paper) Reordered Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderReorderPage, - - /// (paper) Reordered Binder section (deprecated, replaced by 'Edited - /// files') - DBTEAMLOGEventTypeBinderReorderSection, - - /// (paper) Added users and/or groups to Paper doc/folder - DBTEAMLOGEventTypePaperContentAddMember, - - /// (paper) Added Paper doc/folder to folder - DBTEAMLOGEventTypePaperContentAddToFolder, - - /// (paper) Archived Paper doc/folder - DBTEAMLOGEventTypePaperContentArchive, - - /// (paper) Created Paper doc/folder - DBTEAMLOGEventTypePaperContentCreate, - - /// (paper) Permanently deleted Paper doc/folder - DBTEAMLOGEventTypePaperContentPermanentlyDelete, - - /// (paper) Removed Paper doc/folder from folder - DBTEAMLOGEventTypePaperContentRemoveFromFolder, - - /// (paper) Removed users and/or groups from Paper doc/folder - DBTEAMLOGEventTypePaperContentRemoveMember, - - /// (paper) Renamed Paper doc/folder - DBTEAMLOGEventTypePaperContentRename, - - /// (paper) Restored archived Paper doc/folder - DBTEAMLOGEventTypePaperContentRestore, - - /// (paper) Added Paper doc comment - DBTEAMLOGEventTypePaperDocAddComment, - - /// (paper) Changed member permissions for Paper doc - DBTEAMLOGEventTypePaperDocChangeMemberRole, - - /// (paper) Changed sharing setting for Paper doc - DBTEAMLOGEventTypePaperDocChangeSharingPolicy, - - /// (paper) Followed/unfollowed Paper doc - DBTEAMLOGEventTypePaperDocChangeSubscription, - - /// (paper) Archived Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypePaperDocDeleted, - - /// (paper) Deleted Paper doc comment - DBTEAMLOGEventTypePaperDocDeleteComment, - - /// (paper) Downloaded Paper doc in specific format - DBTEAMLOGEventTypePaperDocDownload, - - /// (paper) Edited Paper doc - DBTEAMLOGEventTypePaperDocEdit, - - /// (paper) Edited Paper doc comment - DBTEAMLOGEventTypePaperDocEditComment, - - /// (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed - /// Paper doc') - DBTEAMLOGEventTypePaperDocFollowed, - - /// (paper) Mentioned user in Paper doc - DBTEAMLOGEventTypePaperDocMention, - - /// (paper) Transferred ownership of Paper doc - DBTEAMLOGEventTypePaperDocOwnershipChanged, - - /// (paper) Requested access to Paper doc - DBTEAMLOGEventTypePaperDocRequestAccess, - - /// (paper) Resolved Paper doc comment - DBTEAMLOGEventTypePaperDocResolveComment, - - /// (paper) Restored Paper doc to previous version - DBTEAMLOGEventTypePaperDocRevert, - - /// (paper) Shared Paper doc via Slack - DBTEAMLOGEventTypePaperDocSlackShare, - - /// (paper) Shared Paper doc with users and/or groups (deprecated, no longer - /// logged) - DBTEAMLOGEventTypePaperDocTeamInvite, - - /// (paper) Deleted Paper doc - DBTEAMLOGEventTypePaperDocTrashed, - - /// (paper) Unresolved Paper doc comment - DBTEAMLOGEventTypePaperDocUnresolveComment, - - /// (paper) Restored Paper doc - DBTEAMLOGEventTypePaperDocUntrashed, - - /// (paper) Viewed Paper doc - DBTEAMLOGEventTypePaperDocView, - - /// (paper) Changed Paper external sharing setting to anyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypePaperExternalViewAllow, - - /// (paper) Changed Paper external sharing setting to default team - /// (deprecated, no longer logged) - DBTEAMLOGEventTypePaperExternalViewDefaultTeam, - - /// (paper) Changed Paper external sharing setting to team-only (deprecated, - /// no longer logged) - DBTEAMLOGEventTypePaperExternalViewForbid, - - /// (paper) Followed/unfollowed Paper folder - DBTEAMLOGEventTypePaperFolderChangeSubscription, - - /// (paper) Archived Paper folder (deprecated, no longer logged) - DBTEAMLOGEventTypePaperFolderDeleted, - - /// (paper) Followed Paper folder (deprecated, replaced by - /// 'Followed/unfollowed Paper folder') - DBTEAMLOGEventTypePaperFolderFollowed, - - /// (paper) Shared Paper folder with users and/or groups (deprecated, no - /// longer logged) - DBTEAMLOGEventTypePaperFolderTeamInvite, - - /// (paper) Changed permissions for published doc - DBTEAMLOGEventTypePaperPublishedLinkChangePermission, - - /// (paper) Published doc - DBTEAMLOGEventTypePaperPublishedLinkCreate, - - /// (paper) Unpublished doc - DBTEAMLOGEventTypePaperPublishedLinkDisabled, - - /// (paper) Viewed published doc - DBTEAMLOGEventTypePaperPublishedLinkView, - - /// (passwords) Changed password - DBTEAMLOGEventTypePasswordChange, - - /// (passwords) Reset password - DBTEAMLOGEventTypePasswordReset, - - /// (passwords) Reset all team member passwords - DBTEAMLOGEventTypePasswordResetAll, - - /// (reports) Created Classification report - DBTEAMLOGEventTypeClassificationCreateReport, - - /// (reports) Couldn't create Classification report - DBTEAMLOGEventTypeClassificationCreateReportFail, - - /// (reports) Created EMM-excluded users report - DBTEAMLOGEventTypeEmmCreateExceptionsReport, - - /// (reports) Created EMM mobile app usage report - DBTEAMLOGEventTypeEmmCreateUsageReport, - - /// (reports) Created member data report - DBTEAMLOGEventTypeExportMembersReport, - - /// (reports) Failed to create members data report - DBTEAMLOGEventTypeExportMembersReportFail, - - /// (reports) Created External sharing report - DBTEAMLOGEventTypeExternalSharingCreateReport, - - /// (reports) Couldn't create External sharing report - DBTEAMLOGEventTypeExternalSharingReportFailed, - - /// (reports) Report created: Links created with no expiration - DBTEAMLOGEventTypeNoExpirationLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created with no expiration - DBTEAMLOGEventTypeNoExpirationLinkGenReportFailed, - - /// (reports) Report created: Links created without passwords - DBTEAMLOGEventTypeNoPasswordLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created without passwords - DBTEAMLOGEventTypeNoPasswordLinkGenReportFailed, - - /// (reports) Report created: Views of links without passwords - DBTEAMLOGEventTypeNoPasswordLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of links without passwords - DBTEAMLOGEventTypeNoPasswordLinkViewReportFailed, - - /// (reports) Report created: Views of old links - DBTEAMLOGEventTypeOutdatedLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of old links - DBTEAMLOGEventTypeOutdatedLinkViewReportFailed, - - /// (reports) Exported all team Paper docs - DBTEAMLOGEventTypePaperAdminExportStart, - - /// (reports) Created ransomware report - DBTEAMLOGEventTypeRansomwareAlertCreateReport, - - /// (reports) Couldn't generate ransomware report - DBTEAMLOGEventTypeRansomwareAlertCreateReportFailed, - - /// (reports) Created Smart Sync non-admin devices report - DBTEAMLOGEventTypeSmartSyncCreateAdminPrivilegeReport, - - /// (reports) Created team activity report - DBTEAMLOGEventTypeTeamActivityCreateReport, - - /// (reports) Couldn't generate team activity report - DBTEAMLOGEventTypeTeamActivityCreateReportFail, - - /// (sharing) Shared album - DBTEAMLOGEventTypeCollectionShare, - - /// (sharing) Transfer files added - DBTEAMLOGEventTypeFileTransfersFileAdd, - - /// (sharing) Deleted transfer - DBTEAMLOGEventTypeFileTransfersTransferDelete, - - /// (sharing) Transfer downloaded - DBTEAMLOGEventTypeFileTransfersTransferDownload, - - /// (sharing) Sent transfer - DBTEAMLOGEventTypeFileTransfersTransferSend, - - /// (sharing) Viewed transfer - DBTEAMLOGEventTypeFileTransfersTransferView, - - /// (sharing) Changed Paper doc to invite-only (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeNoteAclInviteOnly, - - /// (sharing) Changed Paper doc to link-accessible (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeNoteAclLink, - - /// (sharing) Changed Paper doc to link-accessible for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeNoteAclTeamLink, - - /// (sharing) Shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeNoteShared, - - /// (sharing) Shared received Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeNoteShareReceive, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeOpenNoteShared, - - /// (sharing) Created shared link in Replay - DBTEAMLOGEventTypeReplayFileSharedLinkCreated, - - /// (sharing) Modified shared link in Replay - DBTEAMLOGEventTypeReplayFileSharedLinkModified, - - /// (sharing) Added member to Replay Project - DBTEAMLOGEventTypeReplayProjectTeamAdd, - - /// (sharing) Removed member from Replay Project - DBTEAMLOGEventTypeReplayProjectTeamDelete, - - /// (sharing) Added team to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfAddGroup, - - /// (sharing) Allowed non-collaborators to view links to files in shared - /// folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfAllowNonMembersToViewSharedLinks, - - /// (sharing) Set team members to see warning before sharing folders outside - /// team (deprecated, no longer logged) - DBTEAMLOGEventTypeSfExternalInviteWarn, - - /// (sharing) Invited Facebook users to shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeSfFbInvite, - - /// (sharing) Changed Facebook user's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfFbInviteChangeRole, - - /// (sharing) Uninvited Facebook user from shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfFbUninvite, - - /// (sharing) Invited group to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfInviteGroup, - - /// (sharing) Granted access to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfTeamGrantAccess, - - /// (sharing) Invited team members to shared folder (deprecated, replaced by - /// 'Invited user to Dropbox and added them to shared file/folder') - DBTEAMLOGEventTypeSfTeamInvite, - - /// (sharing) Changed team member's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfTeamInviteChangeRole, - - /// (sharing) Joined team member's shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeSfTeamJoin, - - /// (sharing) Joined team member's shared folder from link (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfTeamJoinFromOobLink, - - /// (sharing) Unshared folder with team member (deprecated, replaced by - /// 'Removed invitee from shared file/folder before invite was accepted') - DBTEAMLOGEventTypeSfTeamUninvite, - - /// (sharing) Invited user to Dropbox and added them to shared file/folder - DBTEAMLOGEventTypeSharedContentAddInvitees, - - /// (sharing) Added expiration date to link for shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedContentAddLinkExpiry, - - /// (sharing) Added password to link for shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentAddLinkPassword, - - /// (sharing) Added users and/or groups to shared file/folder - DBTEAMLOGEventTypeSharedContentAddMember, - - /// (sharing) Changed whether members can download shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedContentChangeDownloadsPolicy, - - /// (sharing) Changed access type of invitee to shared file/folder before - /// invite was accepted - DBTEAMLOGEventTypeSharedContentChangeInviteeRole, - - /// (sharing) Changed link audience of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentChangeLinkAudience, - - /// (sharing) Changed link expiration of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentChangeLinkExpiry, - - /// (sharing) Changed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentChangeLinkPassword, - - /// (sharing) Changed access type of shared file/folder member - DBTEAMLOGEventTypeSharedContentChangeMemberRole, - - /// (sharing) Changed whether members can see who viewed shared file/folder - DBTEAMLOGEventTypeSharedContentChangeViewerInfoPolicy, - - /// (sharing) Acquired membership of shared file/folder by accepting invite - DBTEAMLOGEventTypeSharedContentClaimInvitation, - - /// (sharing) Copied shared file/folder to own Dropbox - DBTEAMLOGEventTypeSharedContentCopy, - - /// (sharing) Downloaded shared file/folder - DBTEAMLOGEventTypeSharedContentDownload, - - /// (sharing) Left shared file/folder - DBTEAMLOGEventTypeSharedContentRelinquishMembership, - - /// (sharing) Removed invitee from shared file/folder before invite was - /// accepted - DBTEAMLOGEventTypeSharedContentRemoveInvitees, - - /// (sharing) Removed link expiration date of shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedContentRemoveLinkExpiry, - - /// (sharing) Removed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentRemoveLinkPassword, - - /// (sharing) Removed user/group from shared file/folder - DBTEAMLOGEventTypeSharedContentRemoveMember, - - /// (sharing) Requested access to shared file/folder - DBTEAMLOGEventTypeSharedContentRequestAccess, - - /// (sharing) Restored shared file/folder invitees - DBTEAMLOGEventTypeSharedContentRestoreInvitees, - - /// (sharing) Restored users and/or groups to membership of shared - /// file/folder - DBTEAMLOGEventTypeSharedContentRestoreMember, - - /// (sharing) Unshared file/folder by clearing membership - DBTEAMLOGEventTypeSharedContentUnshare, - - /// (sharing) Previewed shared file/folder - DBTEAMLOGEventTypeSharedContentView, - - /// (sharing) Changed who can access shared folder via link - DBTEAMLOGEventTypeSharedFolderChangeLinkPolicy, - - /// (sharing) Changed whether shared folder inherits members from parent - /// folder - DBTEAMLOGEventTypeSharedFolderChangeMembersInheritancePolicy, - - /// (sharing) Changed who can add/remove members of shared folder - DBTEAMLOGEventTypeSharedFolderChangeMembersManagementPolicy, - - /// (sharing) Changed who can become member of shared folder - DBTEAMLOGEventTypeSharedFolderChangeMembersPolicy, - - /// (sharing) Created shared folder - DBTEAMLOGEventTypeSharedFolderCreate, - - /// (sharing) Declined team member's invite to shared folder - DBTEAMLOGEventTypeSharedFolderDeclineInvitation, - - /// (sharing) Added shared folder to own Dropbox - DBTEAMLOGEventTypeSharedFolderMount, - - /// (sharing) Changed parent of shared folder - DBTEAMLOGEventTypeSharedFolderNest, - - /// (sharing) Transferred ownership of shared folder to another member - DBTEAMLOGEventTypeSharedFolderTransferOwnership, - - /// (sharing) Deleted shared folder from Dropbox - DBTEAMLOGEventTypeSharedFolderUnmount, - - /// (sharing) Added shared link expiration date - DBTEAMLOGEventTypeSharedLinkAddExpiry, - - /// (sharing) Changed shared link expiration date - DBTEAMLOGEventTypeSharedLinkChangeExpiry, - - /// (sharing) Changed visibility of shared link - DBTEAMLOGEventTypeSharedLinkChangeVisibility, - - /// (sharing) Added file/folder to Dropbox from shared link - DBTEAMLOGEventTypeSharedLinkCopy, - - /// (sharing) Created shared link - DBTEAMLOGEventTypeSharedLinkCreate, - - /// (sharing) Removed shared link - DBTEAMLOGEventTypeSharedLinkDisable, - - /// (sharing) Downloaded file/folder from shared link - DBTEAMLOGEventTypeSharedLinkDownload, - - /// (sharing) Removed shared link expiration date - DBTEAMLOGEventTypeSharedLinkRemoveExpiry, - - /// (sharing) Added an expiration date to the shared link - DBTEAMLOGEventTypeSharedLinkSettingsAddExpiration, - - /// (sharing) Added a password to the shared link - DBTEAMLOGEventTypeSharedLinkSettingsAddPassword, - - /// (sharing) Disabled downloads - DBTEAMLOGEventTypeSharedLinkSettingsAllowDownloadDisabled, - - /// (sharing) Enabled downloads - DBTEAMLOGEventTypeSharedLinkSettingsAllowDownloadEnabled, - - /// (sharing) Changed the audience of the shared link - DBTEAMLOGEventTypeSharedLinkSettingsChangeAudience, - - /// (sharing) Changed the expiration date of the shared link - DBTEAMLOGEventTypeSharedLinkSettingsChangeExpiration, - - /// (sharing) Changed the password of the shared link - DBTEAMLOGEventTypeSharedLinkSettingsChangePassword, - - /// (sharing) Removed the expiration date from the shared link - DBTEAMLOGEventTypeSharedLinkSettingsRemoveExpiration, - - /// (sharing) Removed the password from the shared link - DBTEAMLOGEventTypeSharedLinkSettingsRemovePassword, - - /// (sharing) Added members as audience of shared link - DBTEAMLOGEventTypeSharedLinkShare, - - /// (sharing) Opened shared link - DBTEAMLOGEventTypeSharedLinkView, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedNoteOpened, - - /// (sharing) Disabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeShmodelDisableDownloads, - - /// (sharing) Enabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeShmodelEnableDownloads, - - /// (sharing) Shared link with group (deprecated, no longer logged) - DBTEAMLOGEventTypeShmodelGroupShare, - - /// (showcase) Granted access to showcase - DBTEAMLOGEventTypeShowcaseAccessGranted, - - /// (showcase) Added member to showcase - DBTEAMLOGEventTypeShowcaseAddMember, - - /// (showcase) Archived showcase - DBTEAMLOGEventTypeShowcaseArchived, - - /// (showcase) Created showcase - DBTEAMLOGEventTypeShowcaseCreated, - - /// (showcase) Deleted showcase comment - DBTEAMLOGEventTypeShowcaseDeleteComment, - - /// (showcase) Edited showcase - DBTEAMLOGEventTypeShowcaseEdited, - - /// (showcase) Edited showcase comment - DBTEAMLOGEventTypeShowcaseEditComment, - - /// (showcase) Added file to showcase - DBTEAMLOGEventTypeShowcaseFileAdded, - - /// (showcase) Downloaded file from showcase - DBTEAMLOGEventTypeShowcaseFileDownload, - - /// (showcase) Removed file from showcase - DBTEAMLOGEventTypeShowcaseFileRemoved, - - /// (showcase) Viewed file in showcase - DBTEAMLOGEventTypeShowcaseFileView, - - /// (showcase) Permanently deleted showcase - DBTEAMLOGEventTypeShowcasePermanentlyDeleted, - - /// (showcase) Added showcase comment - DBTEAMLOGEventTypeShowcasePostComment, - - /// (showcase) Removed member from showcase - DBTEAMLOGEventTypeShowcaseRemoveMember, - - /// (showcase) Renamed showcase - DBTEAMLOGEventTypeShowcaseRenamed, - - /// (showcase) Requested access to showcase - DBTEAMLOGEventTypeShowcaseRequestAccess, - - /// (showcase) Resolved showcase comment - DBTEAMLOGEventTypeShowcaseResolveComment, - - /// (showcase) Unarchived showcase - DBTEAMLOGEventTypeShowcaseRestored, - - /// (showcase) Deleted showcase - DBTEAMLOGEventTypeShowcaseTrashed, - - /// (showcase) Deleted showcase (old version) (deprecated, replaced by - /// 'Deleted showcase') - DBTEAMLOGEventTypeShowcaseTrashedDeprecated, - - /// (showcase) Unresolved showcase comment - DBTEAMLOGEventTypeShowcaseUnresolveComment, - - /// (showcase) Restored showcase - DBTEAMLOGEventTypeShowcaseUntrashed, - - /// (showcase) Restored showcase (old version) (deprecated, replaced by - /// 'Restored showcase') - DBTEAMLOGEventTypeShowcaseUntrashedDeprecated, - - /// (showcase) Viewed showcase - DBTEAMLOGEventTypeShowcaseView, - - /// (sso) Added X.509 certificate for SSO - DBTEAMLOGEventTypeSsoAddCert, - - /// (sso) Added sign-in URL for SSO - DBTEAMLOGEventTypeSsoAddLoginUrl, - - /// (sso) Added sign-out URL for SSO - DBTEAMLOGEventTypeSsoAddLogoutUrl, - - /// (sso) Changed X.509 certificate for SSO - DBTEAMLOGEventTypeSsoChangeCert, - - /// (sso) Changed sign-in URL for SSO - DBTEAMLOGEventTypeSsoChangeLoginUrl, - - /// (sso) Changed sign-out URL for SSO - DBTEAMLOGEventTypeSsoChangeLogoutUrl, - - /// (sso) Changed SAML identity mode for SSO - DBTEAMLOGEventTypeSsoChangeSamlIdentityMode, - - /// (sso) Removed X.509 certificate for SSO - DBTEAMLOGEventTypeSsoRemoveCert, - - /// (sso) Removed sign-in URL for SSO - DBTEAMLOGEventTypeSsoRemoveLoginUrl, - - /// (sso) Removed sign-out URL for SSO - DBTEAMLOGEventTypeSsoRemoveLogoutUrl, - - /// (team_folders) Changed archival status of team folder - DBTEAMLOGEventTypeTeamFolderChangeStatus, - - /// (team_folders) Created team folder in active status - DBTEAMLOGEventTypeTeamFolderCreate, - - /// (team_folders) Downgraded team folder to regular shared folder - DBTEAMLOGEventTypeTeamFolderDowngrade, - - /// (team_folders) Permanently deleted archived team folder - DBTEAMLOGEventTypeTeamFolderPermanentlyDelete, - - /// (team_folders) Renamed active/archived team folder - DBTEAMLOGEventTypeTeamFolderRename, - - /// (team_folders) Changed sync default - DBTEAMLOGEventTypeTeamSelectiveSyncSettingsChanged, - - /// (team_policies) Changed account capture setting on team domain - DBTEAMLOGEventTypeAccountCaptureChangePolicy, - - /// (team_policies) Changed admin reminder settings for requests to join the - /// team - DBTEAMLOGEventTypeAdminEmailRemindersChanged, - - /// (team_policies) Disabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeAllowDownloadDisabled, - - /// (team_policies) Enabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeAllowDownloadEnabled, - - /// (team_policies) Changed app permissions - DBTEAMLOGEventTypeAppPermissionsChanged, - - /// (team_policies) Changed camera uploads setting for team - DBTEAMLOGEventTypeCameraUploadsPolicyChanged, - - /// (team_policies) Changed Capture transcription policy for team - DBTEAMLOGEventTypeCaptureTranscriptPolicyChanged, - - /// (team_policies) Changed classification policy for team - DBTEAMLOGEventTypeClassificationChangePolicy, - - /// (team_policies) Changed computer backup policy for team - DBTEAMLOGEventTypeComputerBackupPolicyChanged, - - /// (team_policies) Changed content management setting - DBTEAMLOGEventTypeContentAdministrationPolicyChanged, - - /// (team_policies) Set restrictions on data center locations where team - /// data resides - DBTEAMLOGEventTypeDataPlacementRestrictionChangePolicy, - - /// (team_policies) Completed restrictions on data center locations where - /// team data resides - DBTEAMLOGEventTypeDataPlacementRestrictionSatisfyPolicy, - - /// (team_policies) Added members to device approvals exception list - DBTEAMLOGEventTypeDeviceApprovalsAddException, - - /// (team_policies) Set/removed limit on number of computers member can link - /// to team Dropbox account - DBTEAMLOGEventTypeDeviceApprovalsChangeDesktopPolicy, - - /// (team_policies) Set/removed limit on number of mobile devices member can - /// link to team Dropbox account - DBTEAMLOGEventTypeDeviceApprovalsChangeMobilePolicy, - - /// (team_policies) Changed device approvals setting when member is over - /// limit - DBTEAMLOGEventTypeDeviceApprovalsChangeOverageAction, - - /// (team_policies) Changed device approvals setting when member unlinks - /// approved device - DBTEAMLOGEventTypeDeviceApprovalsChangeUnlinkAction, - - /// (team_policies) Removed members from device approvals exception list - DBTEAMLOGEventTypeDeviceApprovalsRemoveException, - - /// (team_policies) Added members to directory restrictions list - DBTEAMLOGEventTypeDirectoryRestrictionsAddMembers, - - /// (team_policies) Removed members from directory restrictions list - DBTEAMLOGEventTypeDirectoryRestrictionsRemoveMembers, - - /// (team_policies) Changed Dropbox Passwords policy for team - DBTEAMLOGEventTypeDropboxPasswordsPolicyChanged, - - /// (team_policies) Changed email to Dropbox policy for team - DBTEAMLOGEventTypeEmailIngestPolicyChanged, - - /// (team_policies) Added members to EMM exception list - DBTEAMLOGEventTypeEmmAddException, - - /// (team_policies) Enabled/disabled enterprise mobility management for - /// members - DBTEAMLOGEventTypeEmmChangePolicy, - - /// (team_policies) Removed members from EMM exception list - DBTEAMLOGEventTypeEmmRemoveException, - - /// (team_policies) Accepted/opted out of extended version history - DBTEAMLOGEventTypeExtendedVersionHistoryChangePolicy, - - /// (team_policies) Changed external drive backup policy for team - DBTEAMLOGEventTypeExternalDriveBackupPolicyChanged, - - /// (team_policies) Enabled/disabled commenting on team files - DBTEAMLOGEventTypeFileCommentsChangePolicy, - - /// (team_policies) Changed file locking policy for team - DBTEAMLOGEventTypeFileLockingPolicyChanged, - - /// (team_policies) Changed File Provider Migration policy for team - DBTEAMLOGEventTypeFileProviderMigrationPolicyChanged, - - /// (team_policies) Enabled/disabled file requests - DBTEAMLOGEventTypeFileRequestsChangePolicy, - - /// (team_policies) Enabled file request emails for everyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeFileRequestsEmailsEnabled, - - /// (team_policies) Enabled file request emails for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeFileRequestsEmailsRestrictedToTeamOnly, - - /// (team_policies) Changed file transfers policy for team - DBTEAMLOGEventTypeFileTransfersPolicyChanged, - - /// (team_policies) Changed folder link restrictions policy for team - DBTEAMLOGEventTypeFolderLinkRestrictionPolicyChanged, - - /// (team_policies) Enabled/disabled Google single sign-on for team - DBTEAMLOGEventTypeGoogleSsoChangePolicy, - - /// (team_policies) Changed who can create groups - DBTEAMLOGEventTypeGroupUserManagementChangePolicy, - - /// (team_policies) Changed integration policy for team - DBTEAMLOGEventTypeIntegrationPolicyChanged, - - /// (team_policies) Changed invite accept email policy for team - DBTEAMLOGEventTypeInviteAcceptanceEmailPolicyChanged, - - /// (team_policies) Changed whether users can find team when not invited - DBTEAMLOGEventTypeMemberRequestsChangePolicy, - - /// (team_policies) Changed member send invite policy for team - DBTEAMLOGEventTypeMemberSendInvitePolicyChanged, - - /// (team_policies) Added members to member space limit exception list - DBTEAMLOGEventTypeMemberSpaceLimitsAddException, - - /// (team_policies) Changed member space limit type for team - DBTEAMLOGEventTypeMemberSpaceLimitsChangeCapsTypePolicy, - - /// (team_policies) Changed team default member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsChangePolicy, - - /// (team_policies) Removed members from member space limit exception list - DBTEAMLOGEventTypeMemberSpaceLimitsRemoveException, - - /// (team_policies) Enabled/disabled option for team members to suggest - /// people to add to team - DBTEAMLOGEventTypeMemberSuggestionsChangePolicy, - - /// (team_policies) Enabled/disabled Microsoft Office add-in - DBTEAMLOGEventTypeMicrosoftOfficeAddinChangePolicy, - - /// (team_policies) Enabled/disabled network control - DBTEAMLOGEventTypeNetworkControlChangePolicy, - - /// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed - /// to all members or to specific members - DBTEAMLOGEventTypePaperChangeDeploymentPolicy, - - /// (team_policies) Changed whether non-members can view Paper docs with - /// link (deprecated, no longer logged) - DBTEAMLOGEventTypePaperChangeMemberLinkPolicy, - - /// (team_policies) Changed whether members can share Paper docs outside - /// team, and if docs are accessible only by team members or anyone by - /// default - DBTEAMLOGEventTypePaperChangeMemberPolicy, - - /// (team_policies) Enabled/disabled Dropbox Paper for team - DBTEAMLOGEventTypePaperChangePolicy, - - /// (team_policies) Changed Paper Default Folder Policy setting for team - DBTEAMLOGEventTypePaperDefaultFolderPolicyChanged, - - /// (team_policies) Enabled/disabled Paper Desktop for team - DBTEAMLOGEventTypePaperDesktopPolicyChanged, - - /// (team_policies) Added users to Paper-enabled users list - DBTEAMLOGEventTypePaperEnabledUsersGroupAddition, - - /// (team_policies) Removed users from Paper-enabled users list - DBTEAMLOGEventTypePaperEnabledUsersGroupRemoval, - - /// (team_policies) Changed team password strength requirements - DBTEAMLOGEventTypePasswordStrengthRequirementsChangePolicy, - - /// (team_policies) Enabled/disabled ability of team members to permanently - /// delete content - DBTEAMLOGEventTypePermanentDeleteChangePolicy, - - /// (team_policies) Enabled/disabled reseller support - DBTEAMLOGEventTypeResellerSupportChangePolicy, - - /// (team_policies) Changed Rewind policy for team - DBTEAMLOGEventTypeRewindPolicyChanged, - - /// (team_policies) Changed send for signature policy for team - DBTEAMLOGEventTypeSendForSignaturePolicyChanged, - - /// (team_policies) Changed whether team members can join shared folders - /// owned outside team - DBTEAMLOGEventTypeSharingChangeFolderJoinPolicy, - - /// (team_policies) Changed the allow remove or change expiration policy for - /// the links shared outside of the team - DBTEAMLOGEventTypeSharingChangeLinkAllowChangeExpirationPolicy, - - /// (team_policies) Changed the default expiration for the links shared - /// outside of the team - DBTEAMLOGEventTypeSharingChangeLinkDefaultExpirationPolicy, - - /// (team_policies) Changed the password requirement for the links shared - /// outside of the team - DBTEAMLOGEventTypeSharingChangeLinkEnforcePasswordPolicy, - - /// (team_policies) Changed whether members can share links outside team, - /// and if links are accessible only by team members or anyone by default - DBTEAMLOGEventTypeSharingChangeLinkPolicy, - - /// (team_policies) Changed whether members can share files/folders outside - /// team - DBTEAMLOGEventTypeSharingChangeMemberPolicy, - - /// (team_policies) Enabled/disabled downloading files from Dropbox Showcase - /// for team - DBTEAMLOGEventTypeShowcaseChangeDownloadPolicy, - - /// (team_policies) Enabled/disabled Dropbox Showcase for team - DBTEAMLOGEventTypeShowcaseChangeEnabledPolicy, - - /// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for - /// team - DBTEAMLOGEventTypeShowcaseChangeExternalSharingPolicy, - - /// (team_policies) Changed automatic Smart Sync setting for team - DBTEAMLOGEventTypeSmarterSmartSyncPolicyChanged, - - /// (team_policies) Changed default Smart Sync setting for team members - DBTEAMLOGEventTypeSmartSyncChangePolicy, - - /// (team_policies) Opted team into Smart Sync - DBTEAMLOGEventTypeSmartSyncNotOptOut, - - /// (team_policies) Opted team out of Smart Sync - DBTEAMLOGEventTypeSmartSyncOptOut, - - /// (team_policies) Changed single sign-on setting for team - DBTEAMLOGEventTypeSsoChangePolicy, - - /// (team_policies) Changed team branding policy for team - DBTEAMLOGEventTypeTeamBrandingPolicyChanged, - - /// (team_policies) Changed App Integrations setting for team - DBTEAMLOGEventTypeTeamExtensionsPolicyChanged, - - /// (team_policies) Enabled/disabled Team Selective Sync for team - DBTEAMLOGEventTypeTeamSelectiveSyncPolicyChanged, - - /// (team_policies) Edited the approved list for sharing externally - DBTEAMLOGEventTypeTeamSharingWhitelistSubjectsChanged, - - /// (team_policies) Added members to two factor authentication exception - /// list - DBTEAMLOGEventTypeTfaAddException, - - /// (team_policies) Changed two-step verification setting for team - DBTEAMLOGEventTypeTfaChangePolicy, - - /// (team_policies) Removed members from two factor authentication exception - /// list - DBTEAMLOGEventTypeTfaRemoveException, - - /// (team_policies) Enabled/disabled option for members to link personal - /// Dropbox account and team account to same computer - DBTEAMLOGEventTypeTwoAccountChangePolicy, - - /// (team_policies) Changed team policy for viewer info - DBTEAMLOGEventTypeViewerInfoPolicyChanged, - - /// (team_policies) Changed watermarking policy for team - DBTEAMLOGEventTypeWatermarkingPolicyChanged, - - /// (team_policies) Changed limit on active sessions per member - DBTEAMLOGEventTypeWebSessionsChangeActiveSessionLimit, - - /// (team_policies) Changed how long members can stay signed in to - /// Dropbox.com - DBTEAMLOGEventTypeWebSessionsChangeFixedLengthPolicy, - - /// (team_policies) Changed how long team members can be idle while signed - /// in to Dropbox.com - DBTEAMLOGEventTypeWebSessionsChangeIdleLengthPolicy, - - /// (team_profile) Requested data residency migration for team data - DBTEAMLOGEventTypeDataResidencyMigrationRequestSuccessful, - - /// (team_profile) Request for data residency migration for team data has - /// failed - DBTEAMLOGEventTypeDataResidencyMigrationRequestUnsuccessful, - - /// (team_profile) Merged another team into this team - DBTEAMLOGEventTypeTeamMergeFrom, - - /// (team_profile) Merged this team into another team - DBTEAMLOGEventTypeTeamMergeTo, - - /// (team_profile) Added team background to display on shared link headers - DBTEAMLOGEventTypeTeamProfileAddBackground, - - /// (team_profile) Added team logo to display on shared link headers - DBTEAMLOGEventTypeTeamProfileAddLogo, - - /// (team_profile) Changed team background displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileChangeBackground, - - /// (team_profile) Changed default language for team - DBTEAMLOGEventTypeTeamProfileChangeDefaultLanguage, - - /// (team_profile) Changed team logo displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileChangeLogo, - - /// (team_profile) Changed team name - DBTEAMLOGEventTypeTeamProfileChangeName, - - /// (team_profile) Removed team background displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileRemoveBackground, - - /// (team_profile) Removed team logo displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileRemoveLogo, - - /// (tfa) Added backup phone for two-step verification - DBTEAMLOGEventTypeTfaAddBackupPhone, - - /// (tfa) Added security key for two-step verification - DBTEAMLOGEventTypeTfaAddSecurityKey, - - /// (tfa) Changed backup phone for two-step verification - DBTEAMLOGEventTypeTfaChangeBackupPhone, - - /// (tfa) Enabled/disabled/changed two-step verification setting - DBTEAMLOGEventTypeTfaChangeStatus, - - /// (tfa) Removed backup phone for two-step verification - DBTEAMLOGEventTypeTfaRemoveBackupPhone, - - /// (tfa) Removed security key for two-step verification - DBTEAMLOGEventTypeTfaRemoveSecurityKey, - - /// (tfa) Reset two-step verification for team member - DBTEAMLOGEventTypeTfaReset, - - /// (trusted_teams) Changed enterprise admin role - DBTEAMLOGEventTypeChangedEnterpriseAdminRole, - - /// (trusted_teams) Changed enterprise-connected team status - DBTEAMLOGEventTypeChangedEnterpriseConnectedTeamStatus, - - /// (trusted_teams) Ended enterprise admin session - DBTEAMLOGEventTypeEndedEnterpriseAdminSession, - - /// (trusted_teams) Ended enterprise admin session (deprecated, replaced by - /// 'Ended enterprise admin session') - DBTEAMLOGEventTypeEndedEnterpriseAdminSessionDeprecated, - - /// (trusted_teams) Changed who can update a setting - DBTEAMLOGEventTypeEnterpriseSettingsLocking, - - /// (trusted_teams) Changed guest team admin status - DBTEAMLOGEventTypeGuestAdminChangeStatus, - - /// (trusted_teams) Started enterprise admin session - DBTEAMLOGEventTypeStartedEnterpriseAdminSession, - - /// (trusted_teams) Accepted a team merge request - DBTEAMLOGEventTypeTeamMergeRequestAccepted, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestAcceptedShownToPrimaryTeam, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestAcceptedShownToSecondaryTeam, - - /// (trusted_teams) Automatically canceled team merge request - DBTEAMLOGEventTypeTeamMergeRequestAutoCanceled, - - /// (trusted_teams) Canceled a team merge request - DBTEAMLOGEventTypeTeamMergeRequestCanceled, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestCanceledShownToPrimaryTeam, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestCanceledShownToSecondaryTeam, - - /// (trusted_teams) Team merge request expired - DBTEAMLOGEventTypeTeamMergeRequestExpired, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeTeamMergeRequestExpiredShownToPrimaryTeam, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeTeamMergeRequestExpiredShownToSecondaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeTeamMergeRequestRejectedShownToPrimaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeTeamMergeRequestRejectedShownToSecondaryTeam, - - /// (trusted_teams) Sent a team merge request reminder - DBTEAMLOGEventTypeTeamMergeRequestReminder, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeTeamMergeRequestReminderShownToPrimaryTeam, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeTeamMergeRequestReminderShownToSecondaryTeam, - - /// (trusted_teams) Canceled the team merge - DBTEAMLOGEventTypeTeamMergeRequestRevoked, - - /// (trusted_teams) Requested to merge their Dropbox team into yours - DBTEAMLOGEventTypeTeamMergeRequestSentShownToPrimaryTeam, - - /// (trusted_teams) Requested to merge your team into another Dropbox team - DBTEAMLOGEventTypeTeamMergeRequestSentShownToSecondaryTeam, - - /// (no description). - DBTEAMLOGEventTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventTypeTag tag; - -/// (admin_alerting) Changed an alert state @note Ensure the -/// `isAdminAlertingAlertStateChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertStateChangedType *adminAlertingAlertStateChanged; - -/// (admin_alerting) Changed an alert setting @note Ensure the -/// `isAdminAlertingChangedAlertConfig` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingChangedAlertConfigType *adminAlertingChangedAlertConfig; - -/// (admin_alerting) Triggered security alert @note Ensure the -/// `isAdminAlertingTriggeredAlert` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingTriggeredAlertType *adminAlertingTriggeredAlert; - -/// (admin_alerting) Completed ransomware restore process @note Ensure the -/// `isRansomwareRestoreProcessCompleted` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareRestoreProcessCompletedType *ransomwareRestoreProcessCompleted; - -/// (admin_alerting) Started ransomware restore process @note Ensure the -/// `isRansomwareRestoreProcessStarted` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareRestoreProcessStartedType *ransomwareRestoreProcessStarted; - -/// (apps) Failed to connect app for member @note Ensure the -/// `isAppBlockedByPermissions` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppBlockedByPermissionsType *appBlockedByPermissions; - -/// (apps) Linked app for team @note Ensure the `isAppLinkTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkTeamType *appLinkTeam; - -/// (apps) Linked app for member @note Ensure the `isAppLinkUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkUserType *appLinkUser; - -/// (apps) Unlinked app for team @note Ensure the `isAppUnlinkTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkTeamType *appUnlinkTeam; - -/// (apps) Unlinked app for member @note Ensure the `isAppUnlinkUser` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkUserType *appUnlinkUser; - -/// (apps) Connected integration for member @note Ensure the -/// `isIntegrationConnected` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationConnectedType *integrationConnected; - -/// (apps) Disconnected integration for member @note Ensure the -/// `isIntegrationDisconnected` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationDisconnectedType *integrationDisconnected; - -/// (comments) Added file comment @note Ensure the `isFileAddComment` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddCommentType *fileAddComment; - -/// (comments) Subscribed to or unsubscribed from comment notifications for file -/// @note Ensure the `isFileChangeCommentSubscription` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileChangeCommentSubscriptionType *fileChangeCommentSubscription; - -/// (comments) Deleted file comment @note Ensure the `isFileDeleteComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteCommentType *fileDeleteComment; - -/// (comments) Edited file comment @note Ensure the `isFileEditComment` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditCommentType *fileEditComment; - -/// (comments) Liked file comment (deprecated, no longer logged) @note Ensure -/// the `isFileLikeComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLikeCommentType *fileLikeComment; - -/// (comments) Resolved file comment @note Ensure the `isFileResolveComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileResolveCommentType *fileResolveComment; - -/// (comments) Unliked file comment (deprecated, no longer logged) @note Ensure -/// the `isFileUnlikeComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnlikeCommentType *fileUnlikeComment; - -/// (comments) Unresolved file comment @note Ensure the `isFileUnresolveComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnresolveCommentType *fileUnresolveComment; - -/// (data_governance) Added folders to policy @note Ensure the -/// `isGovernancePolicyAddFolders` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFoldersType *governancePolicyAddFolders; - -/// (data_governance) Couldn't add a folder to a policy @note Ensure the -/// `isGovernancePolicyAddFolderFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFolderFailedType *governancePolicyAddFolderFailed; - -/// (data_governance) Content disposed @note Ensure the -/// `isGovernancePolicyContentDisposed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyContentDisposedType *governancePolicyContentDisposed; - -/// (data_governance) Activated a new policy @note Ensure the -/// `isGovernancePolicyCreate` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyCreateType *governancePolicyCreate; - -/// (data_governance) Deleted a policy @note Ensure the -/// `isGovernancePolicyDelete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyDeleteType *governancePolicyDelete; - -/// (data_governance) Edited policy @note Ensure the -/// `isGovernancePolicyEditDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDetailsType *governancePolicyEditDetails; - -/// (data_governance) Changed policy duration @note Ensure the -/// `isGovernancePolicyEditDuration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDurationType *governancePolicyEditDuration; - -/// (data_governance) Created a policy download @note Ensure the -/// `isGovernancePolicyExportCreated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportCreatedType *governancePolicyExportCreated; - -/// (data_governance) Removed a policy download @note Ensure the -/// `isGovernancePolicyExportRemoved` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportRemovedType *governancePolicyExportRemoved; - -/// (data_governance) Removed folders from policy @note Ensure the -/// `isGovernancePolicyRemoveFolders` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyRemoveFoldersType *governancePolicyRemoveFolders; - -/// (data_governance) Created a summary report for a policy @note Ensure the -/// `isGovernancePolicyReportCreated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyReportCreatedType *governancePolicyReportCreated; - -/// (data_governance) Downloaded content from a policy @note Ensure the -/// `isGovernancePolicyZipPartDownloaded` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyZipPartDownloadedType *governancePolicyZipPartDownloaded; - -/// (data_governance) Activated a hold @note Ensure the -/// `isLegalHoldsActivateAHold` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsActivateAHoldType *legalHoldsActivateAHold; - -/// (data_governance) Added members to a hold @note Ensure the -/// `isLegalHoldsAddMembers` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsAddMembersType *legalHoldsAddMembers; - -/// (data_governance) Edited details for a hold @note Ensure the -/// `isLegalHoldsChangeHoldDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldDetailsType *legalHoldsChangeHoldDetails; - -/// (data_governance) Renamed a hold @note Ensure the -/// `isLegalHoldsChangeHoldName` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldNameType *legalHoldsChangeHoldName; - -/// (data_governance) Exported hold @note Ensure the `isLegalHoldsExportAHold` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportAHoldType *legalHoldsExportAHold; - -/// (data_governance) Canceled export for a hold @note Ensure the -/// `isLegalHoldsExportCancelled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportCancelledType *legalHoldsExportCancelled; - -/// (data_governance) Downloaded export for a hold @note Ensure the -/// `isLegalHoldsExportDownloaded` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportDownloadedType *legalHoldsExportDownloaded; - -/// (data_governance) Removed export for a hold @note Ensure the -/// `isLegalHoldsExportRemoved` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportRemovedType *legalHoldsExportRemoved; - -/// (data_governance) Released a hold @note Ensure the -/// `isLegalHoldsReleaseAHold` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReleaseAHoldType *legalHoldsReleaseAHold; - -/// (data_governance) Removed members from a hold @note Ensure the -/// `isLegalHoldsRemoveMembers` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsRemoveMembersType *legalHoldsRemoveMembers; - -/// (data_governance) Created a summary report for a hold @note Ensure the -/// `isLegalHoldsReportAHold` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReportAHoldType *legalHoldsReportAHold; - -/// (devices) Changed IP address associated with active desktop session @note -/// Ensure the `isDeviceChangeIpDesktop` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpDesktopType *deviceChangeIpDesktop; - -/// (devices) Changed IP address associated with active mobile session @note -/// Ensure the `isDeviceChangeIpMobile` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpMobileType *deviceChangeIpMobile; - -/// (devices) Changed IP address associated with active web session @note Ensure -/// the `isDeviceChangeIpWeb` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpWebType *deviceChangeIpWeb; - -/// (devices) Failed to delete all files from unlinked device @note Ensure the -/// `isDeviceDeleteOnUnlinkFail` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkFailType *deviceDeleteOnUnlinkFail; - -/// (devices) Deleted all files from unlinked device @note Ensure the -/// `isDeviceDeleteOnUnlinkSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *deviceDeleteOnUnlinkSuccess; - -/// (devices) Failed to link device @note Ensure the `isDeviceLinkFail` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkFailType *deviceLinkFail; - -/// (devices) Linked device @note Ensure the `isDeviceLinkSuccess` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkSuccessType *deviceLinkSuccess; - -/// (devices) Disabled device management (deprecated, no longer logged) @note -/// Ensure the `isDeviceManagementDisabled` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementDisabledType *deviceManagementDisabled; - -/// (devices) Enabled device management (deprecated, no longer logged) @note -/// Ensure the `isDeviceManagementEnabled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementEnabledType *deviceManagementEnabled; - -/// (devices) Enabled/disabled backup for computer @note Ensure the -/// `isDeviceSyncBackupStatusChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceSyncBackupStatusChangedType *deviceSyncBackupStatusChanged; - -/// (devices) Disconnected device @note Ensure the `isDeviceUnlink` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceUnlinkType *deviceUnlink; - -/// (devices) Exported passwords @note Ensure the `isDropboxPasswordsExported` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsExportedType *dropboxPasswordsExported; - -/// (devices) Enrolled new Dropbox Passwords device @note Ensure the -/// `isDropboxPasswordsNewDeviceEnrolled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *dropboxPasswordsNewDeviceEnrolled; - -/// (devices) Refreshed auth token used for setting up EMM @note Ensure the -/// `isEmmRefreshAuthToken` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRefreshAuthTokenType *emmRefreshAuthToken; - -/// (devices) Checked external drive backup eligibility status @note Ensure the -/// `isExternalDriveBackupEligibilityStatusChecked` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *externalDriveBackupEligibilityStatusChecked; - -/// (devices) Modified external drive backup @note Ensure the -/// `isExternalDriveBackupStatusChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatusChangedType *externalDriveBackupStatusChanged; - -/// (domains) Granted/revoked option to enable account capture on team domains -/// @note Ensure the `isAccountCaptureChangeAvailability` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureChangeAvailabilityType *accountCaptureChangeAvailability; - -/// (domains) Account-captured user migrated account to team @note Ensure the -/// `isAccountCaptureMigrateAccount` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureMigrateAccountType *accountCaptureMigrateAccount; - -/// (domains) Sent account capture email to all unmanaged members @note Ensure -/// the `isAccountCaptureNotificationEmailsSent` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureNotificationEmailsSentType *accountCaptureNotificationEmailsSent; - -/// (domains) Account-captured user changed account email to personal email -/// @note Ensure the `isAccountCaptureRelinquishAccount` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureRelinquishAccountType *accountCaptureRelinquishAccount; - -/// (domains) Disabled domain invites (deprecated, no longer logged) @note -/// Ensure the `isDisabledDomainInvites` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDisabledDomainInvitesType *disabledDomainInvites; - -/// (domains) Approved user's request to join team @note Ensure the -/// `isDomainInvitesApproveRequestToJoinTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *domainInvitesApproveRequestToJoinTeam; - -/// (domains) Declined user's request to join team @note Ensure the -/// `isDomainInvitesDeclineRequestToJoinTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *domainInvitesDeclineRequestToJoinTeam; - -/// (domains) Sent domain invites to existing domain accounts (deprecated, no -/// longer logged) @note Ensure the `isDomainInvitesEmailExistingUsers` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesEmailExistingUsersType *domainInvitesEmailExistingUsers; - -/// (domains) Requested to join team @note Ensure the -/// `isDomainInvitesRequestToJoinTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesRequestToJoinTeamType *domainInvitesRequestToJoinTeam; - -/// (domains) Disabled "Automatically invite new users" (deprecated, no longer -/// logged) @note Ensure the `isDomainInvitesSetInviteNewUserPrefToNo` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *domainInvitesSetInviteNewUserPrefToNo; - -/// (domains) Enabled "Automatically invite new users" (deprecated, no longer -/// logged) @note Ensure the `isDomainInvitesSetInviteNewUserPrefToYes` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *domainInvitesSetInviteNewUserPrefToYes; - -/// (domains) Failed to verify team domain @note Ensure the -/// `isDomainVerificationAddDomainFail` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationAddDomainFailType *domainVerificationAddDomainFail; - -/// (domains) Verified team domain @note Ensure the -/// `isDomainVerificationAddDomainSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationAddDomainSuccessType *domainVerificationAddDomainSuccess; - -/// (domains) Removed domain from list of verified team domains @note Ensure the -/// `isDomainVerificationRemoveDomain` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationRemoveDomainType *domainVerificationRemoveDomain; - -/// (domains) Enabled domain invites (deprecated, no longer logged) @note Ensure -/// the `isEnabledDomainInvites` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEnabledDomainInvitesType *enabledDomainInvites; - -/// (encryption) Canceled team encryption key deletion @note Ensure the -/// `isTeamEncryptionKeyCancelKeyDeletion` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *teamEncryptionKeyCancelKeyDeletion; - -/// (encryption) Created team encryption key @note Ensure the -/// `isTeamEncryptionKeyCreateKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyCreateKeyType *teamEncryptionKeyCreateKey; - -/// (encryption) Deleted team encryption key @note Ensure the -/// `isTeamEncryptionKeyDeleteKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDeleteKeyType *teamEncryptionKeyDeleteKey; - -/// (encryption) Disabled team encryption key @note Ensure the -/// `isTeamEncryptionKeyDisableKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDisableKeyType *teamEncryptionKeyDisableKey; - -/// (encryption) Enabled team encryption key @note Ensure the -/// `isTeamEncryptionKeyEnableKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyEnableKeyType *teamEncryptionKeyEnableKey; - -/// (encryption) Rotated team encryption key (deprecated, no longer logged) -/// @note Ensure the `isTeamEncryptionKeyRotateKey` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyRotateKeyType *teamEncryptionKeyRotateKey; - -/// (encryption) Scheduled encryption key deletion @note Ensure the -/// `isTeamEncryptionKeyScheduleKeyDeletion` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *teamEncryptionKeyScheduleKeyDeletion; - -/// (file_operations) Applied naming convention @note Ensure the -/// `isApplyNamingConvention` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGApplyNamingConventionType *applyNamingConvention; - -/// (file_operations) Created folders (deprecated, no longer logged) @note -/// Ensure the `isCreateFolder` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCreateFolderType *createFolder; - -/// (file_operations) Added files and/or folders @note Ensure the `isFileAdd` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddType *fileAdd; - -/// (file_operations) Added files and/or folders from automation @note Ensure -/// the `isFileAddFromAutomation` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddFromAutomationType *fileAddFromAutomation; - -/// (file_operations) Copied files and/or folders @note Ensure the `isFileCopy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileCopyType *fileCopy; - -/// (file_operations) Deleted files and/or folders @note Ensure the -/// `isFileDelete` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteType *fileDelete; - -/// (file_operations) Downloaded files and/or folders @note Ensure the -/// `isFileDownload` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDownloadType *fileDownload; - -/// (file_operations) Edited files @note Ensure the `isFileEdit` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditType *fileEdit; - -/// (file_operations) Created copy reference to file/folder @note Ensure the -/// `isFileGetCopyReference` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileGetCopyReferenceType *fileGetCopyReference; - -/// (file_operations) Locked/unlocked editing for a file @note Ensure the -/// `isFileLockingLockStatusChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingLockStatusChangedType *fileLockingLockStatusChanged; - -/// (file_operations) Moved files and/or folders @note Ensure the `isFileMove` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileMoveType *fileMove; - -/// (file_operations) Permanently deleted files and/or folders @note Ensure the -/// `isFilePermanentlyDelete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePermanentlyDeleteType *filePermanentlyDelete; - -/// (file_operations) Previewed files and/or folders @note Ensure the -/// `isFilePreview` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePreviewType *filePreview; - -/// (file_operations) Renamed files and/or folders @note Ensure the -/// `isFileRename` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRenameType *fileRename; - -/// (file_operations) Restored deleted files and/or folders @note Ensure the -/// `isFileRestore` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRestoreType *fileRestore; - -/// (file_operations) Reverted files to previous version @note Ensure the -/// `isFileRevert` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRevertType *fileRevert; - -/// (file_operations) Rolled back file actions @note Ensure the -/// `isFileRollbackChanges` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRollbackChangesType *fileRollbackChanges; - -/// (file_operations) Saved file/folder using copy reference @note Ensure the -/// `isFileSaveCopyReference` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileSaveCopyReferenceType *fileSaveCopyReference; - -/// (file_operations) Updated folder overview @note Ensure the -/// `isFolderOverviewDescriptionChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewDescriptionChangedType *folderOverviewDescriptionChanged; - -/// (file_operations) Pinned item to folder overview @note Ensure the -/// `isFolderOverviewItemPinned` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemPinnedType *folderOverviewItemPinned; - -/// (file_operations) Unpinned item from folder overview @note Ensure the -/// `isFolderOverviewItemUnpinned` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemUnpinnedType *folderOverviewItemUnpinned; - -/// (file_operations) Added a label @note Ensure the `isObjectLabelAdded` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelAddedType *objectLabelAdded; - -/// (file_operations) Removed a label @note Ensure the `isObjectLabelRemoved` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelRemovedType *objectLabelRemoved; - -/// (file_operations) Updated a label's value @note Ensure the -/// `isObjectLabelUpdatedValue` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelUpdatedValueType *objectLabelUpdatedValue; - -/// (file_operations) Organized a folder with multi-file organize @note Ensure -/// the `isOrganizeFolderWithTidy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizeFolderWithTidyType *organizeFolderWithTidy; - -/// (file_operations) Deleted files in Replay @note Ensure the -/// `isReplayFileDelete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileDeleteType *replayFileDelete; - -/// (file_operations) Rewound a folder @note Ensure the `isRewindFolder` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindFolderType *rewindFolder; - -/// (file_operations) Reverted naming convention @note Ensure the -/// `isUndoNamingConvention` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUndoNamingConventionType *undoNamingConvention; - -/// (file_operations) Removed multi-file organize @note Ensure the -/// `isUndoOrganizeFolderWithTidy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUndoOrganizeFolderWithTidyType *undoOrganizeFolderWithTidy; - -/// (file_operations) Tagged a file @note Ensure the `isUserTagsAdded` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsAddedType *userTagsAdded; - -/// (file_operations) Removed tags @note Ensure the `isUserTagsRemoved` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsRemovedType *userTagsRemoved; - -/// (file_requests) Received files via Email to Dropbox @note Ensure the -/// `isEmailIngestReceiveFile` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestReceiveFileType *emailIngestReceiveFile; - -/// (file_requests) Changed file request @note Ensure the `isFileRequestChange` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestChangeType *fileRequestChange; - -/// (file_requests) Closed file request @note Ensure the `isFileRequestClose` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCloseType *fileRequestClose; - -/// (file_requests) Created file request @note Ensure the `isFileRequestCreate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCreateType *fileRequestCreate; - -/// (file_requests) Delete file request @note Ensure the `isFileRequestDelete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestDeleteType *fileRequestDelete; - -/// (file_requests) Received files for file request @note Ensure the -/// `isFileRequestReceiveFile` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestReceiveFileType *fileRequestReceiveFile; - -/// (groups) Added external ID for group @note Ensure the `isGroupAddExternalId` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddExternalIdType *groupAddExternalId; - -/// (groups) Added team members to group @note Ensure the `isGroupAddMember` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddMemberType *groupAddMember; - -/// (groups) Changed external ID for group @note Ensure the -/// `isGroupChangeExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeExternalIdType *groupChangeExternalId; - -/// (groups) Changed group management type @note Ensure the -/// `isGroupChangeManagementType` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeManagementTypeType *groupChangeManagementType; - -/// (groups) Changed manager permissions of group member @note Ensure the -/// `isGroupChangeMemberRole` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeMemberRoleType *groupChangeMemberRole; - -/// (groups) Created group @note Ensure the `isGroupCreate` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupCreateType *groupCreate; - -/// (groups) Deleted group @note Ensure the `isGroupDelete` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDeleteType *groupDelete; - -/// (groups) Updated group (deprecated, no longer logged) @note Ensure the -/// `isGroupDescriptionUpdated` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDescriptionUpdatedType *groupDescriptionUpdated; - -/// (groups) Updated group join policy (deprecated, no longer logged) @note -/// Ensure the `isGroupJoinPolicyUpdated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupJoinPolicyUpdatedType *groupJoinPolicyUpdated; - -/// (groups) Moved group (deprecated, no longer logged) @note Ensure the -/// `isGroupMoved` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupMovedType *groupMoved; - -/// (groups) Removed external ID for group @note Ensure the -/// `isGroupRemoveExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveExternalIdType *groupRemoveExternalId; - -/// (groups) Removed team members from group @note Ensure the -/// `isGroupRemoveMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveMemberType *groupRemoveMember; - -/// (groups) Renamed group @note Ensure the `isGroupRename` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRenameType *groupRename; - -/// (logins) Unlocked/locked account after failed sign in attempts @note Ensure -/// the `isAccountLockOrUnlocked` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountLockOrUnlockedType *accountLockOrUnlocked; - -/// (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to sign -/// in') @note Ensure the `isEmmError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmErrorType *emmError; - -/// (logins) Started trusted team admin session @note Ensure the -/// `isGuestAdminSignedInViaTrustedTeams` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *guestAdminSignedInViaTrustedTeams; - -/// (logins) Ended trusted team admin session @note Ensure the -/// `isGuestAdminSignedOutViaTrustedTeams` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *guestAdminSignedOutViaTrustedTeams; - -/// (logins) Failed to sign in @note Ensure the `isLoginFail` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginFailType *loginFail; - -/// (logins) Signed in @note Ensure the `isLoginSuccess` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginSuccessType *loginSuccess; - -/// (logins) Signed out @note Ensure the `isLogout` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLogoutType *logout; - -/// (logins) Ended reseller support session @note Ensure the -/// `isResellerSupportSessionEnd` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionEndType *resellerSupportSessionEnd; - -/// (logins) Started reseller support session @note Ensure the -/// `isResellerSupportSessionStart` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionStartType *resellerSupportSessionStart; - -/// (logins) Ended admin sign-in-as session @note Ensure the -/// `isSignInAsSessionEnd` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionEndType *signInAsSessionEnd; - -/// (logins) Started admin sign-in-as session @note Ensure the -/// `isSignInAsSessionStart` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionStartType *signInAsSessionStart; - -/// (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to sign -/// in') @note Ensure the `isSsoError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoErrorType *ssoError; - -/// (members) Invited members to activate Backup @note Ensure the -/// `isBackupAdminInvitationSent` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBackupAdminInvitationSentType *backupAdminInvitationSent; - -/// (members) Opened Backup invite @note Ensure the `isBackupInvitationOpened` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGBackupInvitationOpenedType *backupInvitationOpened; - -/// (members) Created team invite link @note Ensure the `isCreateTeamInviteLink` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGCreateTeamInviteLinkType *createTeamInviteLink; - -/// (members) Deleted team invite link @note Ensure the `isDeleteTeamInviteLink` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeleteTeamInviteLinkType *deleteTeamInviteLink; - -/// (members) Added an external ID for team member @note Ensure the -/// `isMemberAddExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddExternalIdType *memberAddExternalId; - -/// (members) Added team member name @note Ensure the `isMemberAddName` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddNameType *memberAddName; - -/// (members) Changed team member admin role @note Ensure the -/// `isMemberChangeAdminRole` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeAdminRoleType *memberChangeAdminRole; - -/// (members) Changed team member email @note Ensure the `isMemberChangeEmail` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeEmailType *memberChangeEmail; - -/// (members) Changed the external ID for team member @note Ensure the -/// `isMemberChangeExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeExternalIdType *memberChangeExternalId; - -/// (members) Changed membership type (limited/full) of member (deprecated, no -/// longer logged) @note Ensure the `isMemberChangeMembershipType` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeMembershipTypeType *memberChangeMembershipType; - -/// (members) Changed team member name @note Ensure the `isMemberChangeName` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeNameType *memberChangeName; - -/// (members) Changed team member reseller role @note Ensure the -/// `isMemberChangeResellerRole` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeResellerRoleType *memberChangeResellerRole; - -/// (members) Changed member status (invited, joined, suspended, etc.) @note -/// Ensure the `isMemberChangeStatus` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeStatusType *memberChangeStatus; - -/// (members) Cleared manually added contacts @note Ensure the -/// `isMemberDeleteManualContacts` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteManualContactsType *memberDeleteManualContacts; - -/// (members) Deleted team member profile photo @note Ensure the -/// `isMemberDeleteProfilePhoto` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteProfilePhotoType *memberDeleteProfilePhoto; - -/// (members) Permanently deleted contents of deleted team member account @note -/// Ensure the `isMemberPermanentlyDeleteAccountContents` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *memberPermanentlyDeleteAccountContents; - -/// (members) Removed the external ID for team member @note Ensure the -/// `isMemberRemoveExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveExternalIdType *memberRemoveExternalId; - -/// (members) Set team member profile photo @note Ensure the -/// `isMemberSetProfilePhoto` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSetProfilePhotoType *memberSetProfilePhoto; - -/// (members) Set custom member space limit @note Ensure the -/// `isMemberSpaceLimitsAddCustomQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *memberSpaceLimitsAddCustomQuota; - -/// (members) Changed custom member space limit @note Ensure the -/// `isMemberSpaceLimitsChangeCustomQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *memberSpaceLimitsChangeCustomQuota; - -/// (members) Changed space limit status @note Ensure the -/// `isMemberSpaceLimitsChangeStatus` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangeStatusType *memberSpaceLimitsChangeStatus; - -/// (members) Removed custom member space limit @note Ensure the -/// `isMemberSpaceLimitsRemoveCustomQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *memberSpaceLimitsRemoveCustomQuota; - -/// (members) Suggested person to add to team @note Ensure the `isMemberSuggest` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestType *memberSuggest; - -/// (members) Transferred contents of deleted member account to another member -/// @note Ensure the `isMemberTransferAccountContents` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberTransferAccountContentsType *memberTransferAccountContents; - -/// (members) Added pending secondary email @note Ensure the -/// `isPendingSecondaryEmailAdded` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPendingSecondaryEmailAddedType *pendingSecondaryEmailAdded; - -/// (members) Deleted secondary email @note Ensure the `isSecondaryEmailDeleted` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailDeletedType *secondaryEmailDeleted; - -/// (members) Verified secondary email @note Ensure the -/// `isSecondaryEmailVerified` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailVerifiedType *secondaryEmailVerified; - -/// (members) Secondary mails policy changed @note Ensure the -/// `isSecondaryMailsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicyChangedType *secondaryMailsPolicyChanged; - -/// (paper) Added Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderAddPage` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddPageType *binderAddPage; - -/// (paper) Added Binder section (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderAddSection` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddSectionType *binderAddSection; - -/// (paper) Removed Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderRemovePage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemovePageType *binderRemovePage; - -/// (paper) Removed Binder section (deprecated, replaced by 'Edited files') -/// @note Ensure the `isBinderRemoveSection` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemoveSectionType *binderRemoveSection; - -/// (paper) Renamed Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderRenamePage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenamePageType *binderRenamePage; - -/// (paper) Renamed Binder section (deprecated, replaced by 'Edited files') -/// @note Ensure the `isBinderRenameSection` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenameSectionType *binderRenameSection; - -/// (paper) Reordered Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderReorderPage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderPageType *binderReorderPage; - -/// (paper) Reordered Binder section (deprecated, replaced by 'Edited files') -/// @note Ensure the `isBinderReorderSection` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderSectionType *binderReorderSection; - -/// (paper) Added users and/or groups to Paper doc/folder @note Ensure the -/// `isPaperContentAddMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddMemberType *paperContentAddMember; - -/// (paper) Added Paper doc/folder to folder @note Ensure the -/// `isPaperContentAddToFolder` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddToFolderType *paperContentAddToFolder; - -/// (paper) Archived Paper doc/folder @note Ensure the `isPaperContentArchive` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentArchiveType *paperContentArchive; - -/// (paper) Created Paper doc/folder @note Ensure the `isPaperContentCreate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentCreateType *paperContentCreate; - -/// (paper) Permanently deleted Paper doc/folder @note Ensure the -/// `isPaperContentPermanentlyDelete` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentPermanentlyDeleteType *paperContentPermanentlyDelete; - -/// (paper) Removed Paper doc/folder from folder @note Ensure the -/// `isPaperContentRemoveFromFolder` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveFromFolderType *paperContentRemoveFromFolder; - -/// (paper) Removed users and/or groups from Paper doc/folder @note Ensure the -/// `isPaperContentRemoveMember` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveMemberType *paperContentRemoveMember; - -/// (paper) Renamed Paper doc/folder @note Ensure the `isPaperContentRename` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRenameType *paperContentRename; - -/// (paper) Restored archived Paper doc/folder @note Ensure the -/// `isPaperContentRestore` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRestoreType *paperContentRestore; - -/// (paper) Added Paper doc comment @note Ensure the `isPaperDocAddComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocAddCommentType *paperDocAddComment; - -/// (paper) Changed member permissions for Paper doc @note Ensure the -/// `isPaperDocChangeMemberRole` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeMemberRoleType *paperDocChangeMemberRole; - -/// (paper) Changed sharing setting for Paper doc @note Ensure the -/// `isPaperDocChangeSharingPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSharingPolicyType *paperDocChangeSharingPolicy; - -/// (paper) Followed/unfollowed Paper doc @note Ensure the -/// `isPaperDocChangeSubscription` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSubscriptionType *paperDocChangeSubscription; - -/// (paper) Archived Paper doc (deprecated, no longer logged) @note Ensure the -/// `isPaperDocDeleted` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeletedType *paperDocDeleted; - -/// (paper) Deleted Paper doc comment @note Ensure the `isPaperDocDeleteComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeleteCommentType *paperDocDeleteComment; - -/// (paper) Downloaded Paper doc in specific format @note Ensure the -/// `isPaperDocDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDownloadType *paperDocDownload; - -/// (paper) Edited Paper doc @note Ensure the `isPaperDocEdit` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditType *paperDocEdit; - -/// (paper) Edited Paper doc comment @note Ensure the `isPaperDocEditComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditCommentType *paperDocEditComment; - -/// (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed -/// Paper doc') @note Ensure the `isPaperDocFollowed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocFollowedType *paperDocFollowed; - -/// (paper) Mentioned user in Paper doc @note Ensure the `isPaperDocMention` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocMentionType *paperDocMention; - -/// (paper) Transferred ownership of Paper doc @note Ensure the -/// `isPaperDocOwnershipChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocOwnershipChangedType *paperDocOwnershipChanged; - -/// (paper) Requested access to Paper doc @note Ensure the -/// `isPaperDocRequestAccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRequestAccessType *paperDocRequestAccess; - -/// (paper) Resolved Paper doc comment @note Ensure the -/// `isPaperDocResolveComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocResolveCommentType *paperDocResolveComment; - -/// (paper) Restored Paper doc to previous version @note Ensure the -/// `isPaperDocRevert` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRevertType *paperDocRevert; - -/// (paper) Shared Paper doc via Slack @note Ensure the `isPaperDocSlackShare` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocSlackShareType *paperDocSlackShare; - -/// (paper) Shared Paper doc with users and/or groups (deprecated, no longer -/// logged) @note Ensure the `isPaperDocTeamInvite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTeamInviteType *paperDocTeamInvite; - -/// (paper) Deleted Paper doc @note Ensure the `isPaperDocTrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTrashedType *paperDocTrashed; - -/// (paper) Unresolved Paper doc comment @note Ensure the -/// `isPaperDocUnresolveComment` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUnresolveCommentType *paperDocUnresolveComment; - -/// (paper) Restored Paper doc @note Ensure the `isPaperDocUntrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUntrashedType *paperDocUntrashed; - -/// (paper) Viewed Paper doc @note Ensure the `isPaperDocView` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocViewType *paperDocView; - -/// (paper) Changed Paper external sharing setting to anyone (deprecated, no -/// longer logged) @note Ensure the `isPaperExternalViewAllow` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewAllowType *paperExternalViewAllow; - -/// (paper) Changed Paper external sharing setting to default team (deprecated, -/// no longer logged) @note Ensure the `isPaperExternalViewDefaultTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewDefaultTeamType *paperExternalViewDefaultTeam; - -/// (paper) Changed Paper external sharing setting to team-only (deprecated, no -/// longer logged) @note Ensure the `isPaperExternalViewForbid` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewForbidType *paperExternalViewForbid; - -/// (paper) Followed/unfollowed Paper folder @note Ensure the -/// `isPaperFolderChangeSubscription` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderChangeSubscriptionType *paperFolderChangeSubscription; - -/// (paper) Archived Paper folder (deprecated, no longer logged) @note Ensure -/// the `isPaperFolderDeleted` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderDeletedType *paperFolderDeleted; - -/// (paper) Followed Paper folder (deprecated, replaced by 'Followed/unfollowed -/// Paper folder') @note Ensure the `isPaperFolderFollowed` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderFollowedType *paperFolderFollowed; - -/// (paper) Shared Paper folder with users and/or groups (deprecated, no longer -/// logged) @note Ensure the `isPaperFolderTeamInvite` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderTeamInviteType *paperFolderTeamInvite; - -/// (paper) Changed permissions for published doc @note Ensure the -/// `isPaperPublishedLinkChangePermission` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkChangePermissionType *paperPublishedLinkChangePermission; - -/// (paper) Published doc @note Ensure the `isPaperPublishedLinkCreate` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkCreateType *paperPublishedLinkCreate; - -/// (paper) Unpublished doc @note Ensure the `isPaperPublishedLinkDisabled` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkDisabledType *paperPublishedLinkDisabled; - -/// (paper) Viewed published doc @note Ensure the `isPaperPublishedLinkView` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkViewType *paperPublishedLinkView; - -/// (passwords) Changed password @note Ensure the `isPasswordChange` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordChangeType *passwordChange; - -/// (passwords) Reset password @note Ensure the `isPasswordReset` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetType *passwordReset; - -/// (passwords) Reset all team member passwords @note Ensure the -/// `isPasswordResetAll` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetAllType *passwordResetAll; - -/// (reports) Created Classification report @note Ensure the -/// `isClassificationCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportType *classificationCreateReport; - -/// (reports) Couldn't create Classification report @note Ensure the -/// `isClassificationCreateReportFail` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportFailType *classificationCreateReportFail; - -/// (reports) Created EMM-excluded users report @note Ensure the -/// `isEmmCreateExceptionsReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateExceptionsReportType *emmCreateExceptionsReport; - -/// (reports) Created EMM mobile app usage report @note Ensure the -/// `isEmmCreateUsageReport` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateUsageReportType *emmCreateUsageReport; - -/// (reports) Created member data report @note Ensure the -/// `isExportMembersReport` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportType *exportMembersReport; - -/// (reports) Failed to create members data report @note Ensure the -/// `isExportMembersReportFail` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportFailType *exportMembersReportFail; - -/// (reports) Created External sharing report @note Ensure the -/// `isExternalSharingCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingCreateReportType *externalSharingCreateReport; - -/// (reports) Couldn't create External sharing report @note Ensure the -/// `isExternalSharingReportFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingReportFailedType *externalSharingReportFailed; - -/// (reports) Report created: Links created with no expiration @note Ensure the -/// `isNoExpirationLinkGenCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenCreateReportType *noExpirationLinkGenCreateReport; - -/// (reports) Couldn't create report: Links created with no expiration @note -/// Ensure the `isNoExpirationLinkGenReportFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenReportFailedType *noExpirationLinkGenReportFailed; - -/// (reports) Report created: Links created without passwords @note Ensure the -/// `isNoPasswordLinkGenCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenCreateReportType *noPasswordLinkGenCreateReport; - -/// (reports) Couldn't create report: Links created without passwords @note -/// Ensure the `isNoPasswordLinkGenReportFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenReportFailedType *noPasswordLinkGenReportFailed; - -/// (reports) Report created: Views of links without passwords @note Ensure the -/// `isNoPasswordLinkViewCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewCreateReportType *noPasswordLinkViewCreateReport; - -/// (reports) Couldn't create report: Views of links without passwords @note -/// Ensure the `isNoPasswordLinkViewReportFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewReportFailedType *noPasswordLinkViewReportFailed; - -/// (reports) Report created: Views of old links @note Ensure the -/// `isOutdatedLinkViewCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewCreateReportType *outdatedLinkViewCreateReport; - -/// (reports) Couldn't create report: Views of old links @note Ensure the -/// `isOutdatedLinkViewReportFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewReportFailedType *outdatedLinkViewReportFailed; - -/// (reports) Exported all team Paper docs @note Ensure the -/// `isPaperAdminExportStart` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperAdminExportStartType *paperAdminExportStart; - -/// (reports) Created ransomware report @note Ensure the -/// `isRansomwareAlertCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareAlertCreateReportType *ransomwareAlertCreateReport; - -/// (reports) Couldn't generate ransomware report @note Ensure the -/// `isRansomwareAlertCreateReportFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareAlertCreateReportFailedType *ransomwareAlertCreateReportFailed; - -/// (reports) Created Smart Sync non-admin devices report @note Ensure the -/// `isSmartSyncCreateAdminPrivilegeReport` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *smartSyncCreateAdminPrivilegeReport; - -/// (reports) Created team activity report @note Ensure the -/// `isTeamActivityCreateReport` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportType *teamActivityCreateReport; - -/// (reports) Couldn't generate team activity report @note Ensure the -/// `isTeamActivityCreateReportFail` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportFailType *teamActivityCreateReportFail; - -/// (sharing) Shared album @note Ensure the `isCollectionShare` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCollectionShareType *collectionShare; - -/// (sharing) Transfer files added @note Ensure the `isFileTransfersFileAdd` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersFileAddType *fileTransfersFileAdd; - -/// (sharing) Deleted transfer @note Ensure the `isFileTransfersTransferDelete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDeleteType *fileTransfersTransferDelete; - -/// (sharing) Transfer downloaded @note Ensure the -/// `isFileTransfersTransferDownload` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDownloadType *fileTransfersTransferDownload; - -/// (sharing) Sent transfer @note Ensure the `isFileTransfersTransferSend` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferSendType *fileTransfersTransferSend; - -/// (sharing) Viewed transfer @note Ensure the `isFileTransfersTransferView` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferViewType *fileTransfersTransferView; - -/// (sharing) Changed Paper doc to invite-only (deprecated, no longer logged) -/// @note Ensure the `isNoteAclInviteOnly` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclInviteOnlyType *noteAclInviteOnly; - -/// (sharing) Changed Paper doc to link-accessible (deprecated, no longer -/// logged) @note Ensure the `isNoteAclLink` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclLinkType *noteAclLink; - -/// (sharing) Changed Paper doc to link-accessible for team (deprecated, no -/// longer logged) @note Ensure the `isNoteAclTeamLink` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclTeamLinkType *noteAclTeamLink; - -/// (sharing) Shared Paper doc (deprecated, no longer logged) @note Ensure the -/// `isNoteShared` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteSharedType *noteShared; - -/// (sharing) Shared received Paper doc (deprecated, no longer logged) @note -/// Ensure the `isNoteShareReceive` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteShareReceiveType *noteShareReceive; - -/// (sharing) Opened shared Paper doc (deprecated, no longer logged) @note -/// Ensure the `isOpenNoteShared` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOpenNoteSharedType *openNoteShared; - -/// (sharing) Created shared link in Replay @note Ensure the -/// `isReplayFileSharedLinkCreated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkCreatedType *replayFileSharedLinkCreated; - -/// (sharing) Modified shared link in Replay @note Ensure the -/// `isReplayFileSharedLinkModified` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkModifiedType *replayFileSharedLinkModified; - -/// (sharing) Added member to Replay Project @note Ensure the -/// `isReplayProjectTeamAdd` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamAddType *replayProjectTeamAdd; - -/// (sharing) Removed member from Replay Project @note Ensure the -/// `isReplayProjectTeamDelete` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamDeleteType *replayProjectTeamDelete; - -/// (sharing) Added team to shared folder (deprecated, no longer logged) @note -/// Ensure the `isSfAddGroup` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfAddGroupType *sfAddGroup; - -/// (sharing) Allowed non-collaborators to view links to files in shared folder -/// (deprecated, no longer logged) @note Ensure the -/// `isSfAllowNonMembersToViewSharedLinks` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *sfAllowNonMembersToViewSharedLinks; - -/// (sharing) Set team members to see warning before sharing folders outside -/// team (deprecated, no longer logged) @note Ensure the -/// `isSfExternalInviteWarn` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfExternalInviteWarnType *sfExternalInviteWarn; - -/// (sharing) Invited Facebook users to shared folder (deprecated, no longer -/// logged) @note Ensure the `isSfFbInvite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteType *sfFbInvite; - -/// (sharing) Changed Facebook user's role in shared folder (deprecated, no -/// longer logged) @note Ensure the `isSfFbInviteChangeRole` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteChangeRoleType *sfFbInviteChangeRole; - -/// (sharing) Uninvited Facebook user from shared folder (deprecated, no longer -/// logged) @note Ensure the `isSfFbUninvite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbUninviteType *sfFbUninvite; - -/// (sharing) Invited group to shared folder (deprecated, no longer logged) -/// @note Ensure the `isSfInviteGroup` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfInviteGroupType *sfInviteGroup; - -/// (sharing) Granted access to shared folder (deprecated, no longer logged) -/// @note Ensure the `isSfTeamGrantAccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamGrantAccessType *sfTeamGrantAccess; - -/// (sharing) Invited team members to shared folder (deprecated, replaced by -/// 'Invited user to Dropbox and added them to shared file/folder') @note Ensure -/// the `isSfTeamInvite` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteType *sfTeamInvite; - -/// (sharing) Changed team member's role in shared folder (deprecated, no longer -/// logged) @note Ensure the `isSfTeamInviteChangeRole` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteChangeRoleType *sfTeamInviteChangeRole; - -/// (sharing) Joined team member's shared folder (deprecated, no longer logged) -/// @note Ensure the `isSfTeamJoin` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinType *sfTeamJoin; - -/// (sharing) Joined team member's shared folder from link (deprecated, no -/// longer logged) @note Ensure the `isSfTeamJoinFromOobLink` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinFromOobLinkType *sfTeamJoinFromOobLink; - -/// (sharing) Unshared folder with team member (deprecated, replaced by 'Removed -/// invitee from shared file/folder before invite was accepted') @note Ensure -/// the `isSfTeamUninvite` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamUninviteType *sfTeamUninvite; - -/// (sharing) Invited user to Dropbox and added them to shared file/folder @note -/// Ensure the `isSharedContentAddInvitees` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddInviteesType *sharedContentAddInvitees; - -/// (sharing) Added expiration date to link for shared file/folder (deprecated, -/// no longer logged) @note Ensure the `isSharedContentAddLinkExpiry` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkExpiryType *sharedContentAddLinkExpiry; - -/// (sharing) Added password to link for shared file/folder (deprecated, no -/// longer logged) @note Ensure the `isSharedContentAddLinkPassword` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkPasswordType *sharedContentAddLinkPassword; - -/// (sharing) Added users and/or groups to shared file/folder @note Ensure the -/// `isSharedContentAddMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddMemberType *sharedContentAddMember; - -/// (sharing) Changed whether members can download shared file/folder -/// (deprecated, no longer logged) @note Ensure the -/// `isSharedContentChangeDownloadsPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeDownloadsPolicyType *sharedContentChangeDownloadsPolicy; - -/// (sharing) Changed access type of invitee to shared file/folder before invite -/// was accepted @note Ensure the `isSharedContentChangeInviteeRole` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeInviteeRoleType *sharedContentChangeInviteeRole; - -/// (sharing) Changed link audience of shared file/folder (deprecated, no longer -/// logged) @note Ensure the `isSharedContentChangeLinkAudience` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkAudienceType *sharedContentChangeLinkAudience; - -/// (sharing) Changed link expiration of shared file/folder (deprecated, no -/// longer logged) @note Ensure the `isSharedContentChangeLinkExpiry` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkExpiryType *sharedContentChangeLinkExpiry; - -/// (sharing) Changed link password of shared file/folder (deprecated, no longer -/// logged) @note Ensure the `isSharedContentChangeLinkPassword` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkPasswordType *sharedContentChangeLinkPassword; - -/// (sharing) Changed access type of shared file/folder member @note Ensure the -/// `isSharedContentChangeMemberRole` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeMemberRoleType *sharedContentChangeMemberRole; - -/// (sharing) Changed whether members can see who viewed shared file/folder -/// @note Ensure the `isSharedContentChangeViewerInfoPolicy` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeViewerInfoPolicyType *sharedContentChangeViewerInfoPolicy; - -/// (sharing) Acquired membership of shared file/folder by accepting invite -/// @note Ensure the `isSharedContentClaimInvitation` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentClaimInvitationType *sharedContentClaimInvitation; - -/// (sharing) Copied shared file/folder to own Dropbox @note Ensure the -/// `isSharedContentCopy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentCopyType *sharedContentCopy; - -/// (sharing) Downloaded shared file/folder @note Ensure the -/// `isSharedContentDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentDownloadType *sharedContentDownload; - -/// (sharing) Left shared file/folder @note Ensure the -/// `isSharedContentRelinquishMembership` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRelinquishMembershipType *sharedContentRelinquishMembership; - -/// (sharing) Removed invitee from shared file/folder before invite was accepted -/// @note Ensure the `isSharedContentRemoveInvitees` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveInviteesType *sharedContentRemoveInvitees; - -/// (sharing) Removed link expiration date of shared file/folder (deprecated, no -/// longer logged) @note Ensure the `isSharedContentRemoveLinkExpiry` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkExpiryType *sharedContentRemoveLinkExpiry; - -/// (sharing) Removed link password of shared file/folder (deprecated, no longer -/// logged) @note Ensure the `isSharedContentRemoveLinkPassword` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkPasswordType *sharedContentRemoveLinkPassword; - -/// (sharing) Removed user/group from shared file/folder @note Ensure the -/// `isSharedContentRemoveMember` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveMemberType *sharedContentRemoveMember; - -/// (sharing) Requested access to shared file/folder @note Ensure the -/// `isSharedContentRequestAccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRequestAccessType *sharedContentRequestAccess; - -/// (sharing) Restored shared file/folder invitees @note Ensure the -/// `isSharedContentRestoreInvitees` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreInviteesType *sharedContentRestoreInvitees; - -/// (sharing) Restored users and/or groups to membership of shared file/folder -/// @note Ensure the `isSharedContentRestoreMember` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreMemberType *sharedContentRestoreMember; - -/// (sharing) Unshared file/folder by clearing membership @note Ensure the -/// `isSharedContentUnshare` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentUnshareType *sharedContentUnshare; - -/// (sharing) Previewed shared file/folder @note Ensure the -/// `isSharedContentView` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentViewType *sharedContentView; - -/// (sharing) Changed who can access shared folder via link @note Ensure the -/// `isSharedFolderChangeLinkPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeLinkPolicyType *sharedFolderChangeLinkPolicy; - -/// (sharing) Changed whether shared folder inherits members from parent folder -/// @note Ensure the `isSharedFolderChangeMembersInheritancePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *sharedFolderChangeMembersInheritancePolicy; - -/// (sharing) Changed who can add/remove members of shared folder @note Ensure -/// the `isSharedFolderChangeMembersManagementPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *sharedFolderChangeMembersManagementPolicy; - -/// (sharing) Changed who can become member of shared folder @note Ensure the -/// `isSharedFolderChangeMembersPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeMembersPolicyType *sharedFolderChangeMembersPolicy; - -/// (sharing) Created shared folder @note Ensure the `isSharedFolderCreate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderCreateType *sharedFolderCreate; - -/// (sharing) Declined team member's invite to shared folder @note Ensure the -/// `isSharedFolderDeclineInvitation` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderDeclineInvitationType *sharedFolderDeclineInvitation; - -/// (sharing) Added shared folder to own Dropbox @note Ensure the -/// `isSharedFolderMount` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMountType *sharedFolderMount; - -/// (sharing) Changed parent of shared folder @note Ensure the -/// `isSharedFolderNest` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderNestType *sharedFolderNest; - -/// (sharing) Transferred ownership of shared folder to another member @note -/// Ensure the `isSharedFolderTransferOwnership` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderTransferOwnershipType *sharedFolderTransferOwnership; - -/// (sharing) Deleted shared folder from Dropbox @note Ensure the -/// `isSharedFolderUnmount` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderUnmountType *sharedFolderUnmount; - -/// (sharing) Added shared link expiration date @note Ensure the -/// `isSharedLinkAddExpiry` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkAddExpiryType *sharedLinkAddExpiry; - -/// (sharing) Changed shared link expiration date @note Ensure the -/// `isSharedLinkChangeExpiry` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeExpiryType *sharedLinkChangeExpiry; - -/// (sharing) Changed visibility of shared link @note Ensure the -/// `isSharedLinkChangeVisibility` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeVisibilityType *sharedLinkChangeVisibility; - -/// (sharing) Added file/folder to Dropbox from shared link @note Ensure the -/// `isSharedLinkCopy` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCopyType *sharedLinkCopy; - -/// (sharing) Created shared link @note Ensure the `isSharedLinkCreate` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCreateType *sharedLinkCreate; - -/// (sharing) Removed shared link @note Ensure the `isSharedLinkDisable` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDisableType *sharedLinkDisable; - -/// (sharing) Downloaded file/folder from shared link @note Ensure the -/// `isSharedLinkDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDownloadType *sharedLinkDownload; - -/// (sharing) Removed shared link expiration date @note Ensure the -/// `isSharedLinkRemoveExpiry` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkRemoveExpiryType *sharedLinkRemoveExpiry; - -/// (sharing) Added an expiration date to the shared link @note Ensure the -/// `isSharedLinkSettingsAddExpiration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddExpirationType *sharedLinkSettingsAddExpiration; - -/// (sharing) Added a password to the shared link @note Ensure the -/// `isSharedLinkSettingsAddPassword` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddPasswordType *sharedLinkSettingsAddPassword; - -/// (sharing) Disabled downloads @note Ensure the -/// `isSharedLinkSettingsAllowDownloadDisabled` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *sharedLinkSettingsAllowDownloadDisabled; - -/// (sharing) Enabled downloads @note Ensure the -/// `isSharedLinkSettingsAllowDownloadEnabled` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *sharedLinkSettingsAllowDownloadEnabled; - -/// (sharing) Changed the audience of the shared link @note Ensure the -/// `isSharedLinkSettingsChangeAudience` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsChangeAudienceType *sharedLinkSettingsChangeAudience; - -/// (sharing) Changed the expiration date of the shared link @note Ensure the -/// `isSharedLinkSettingsChangeExpiration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsChangeExpirationType *sharedLinkSettingsChangeExpiration; - -/// (sharing) Changed the password of the shared link @note Ensure the -/// `isSharedLinkSettingsChangePassword` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsChangePasswordType *sharedLinkSettingsChangePassword; - -/// (sharing) Removed the expiration date from the shared link @note Ensure the -/// `isSharedLinkSettingsRemoveExpiration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsRemoveExpirationType *sharedLinkSettingsRemoveExpiration; - -/// (sharing) Removed the password from the shared link @note Ensure the -/// `isSharedLinkSettingsRemovePassword` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsRemovePasswordType *sharedLinkSettingsRemovePassword; - -/// (sharing) Added members as audience of shared link @note Ensure the -/// `isSharedLinkShare` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkShareType *sharedLinkShare; - -/// (sharing) Opened shared link @note Ensure the `isSharedLinkView` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkViewType *sharedLinkView; - -/// (sharing) Opened shared Paper doc (deprecated, no longer logged) @note -/// Ensure the `isSharedNoteOpened` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedNoteOpenedType *sharedNoteOpened; - -/// (sharing) Disabled downloads for link (deprecated, no longer logged) @note -/// Ensure the `isShmodelDisableDownloads` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelDisableDownloadsType *shmodelDisableDownloads; - -/// (sharing) Enabled downloads for link (deprecated, no longer logged) @note -/// Ensure the `isShmodelEnableDownloads` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelEnableDownloadsType *shmodelEnableDownloads; - -/// (sharing) Shared link with group (deprecated, no longer logged) @note Ensure -/// the `isShmodelGroupShare` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelGroupShareType *shmodelGroupShare; - -/// (showcase) Granted access to showcase @note Ensure the -/// `isShowcaseAccessGranted` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAccessGrantedType *showcaseAccessGranted; - -/// (showcase) Added member to showcase @note Ensure the `isShowcaseAddMember` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAddMemberType *showcaseAddMember; - -/// (showcase) Archived showcase @note Ensure the `isShowcaseArchived` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseArchivedType *showcaseArchived; - -/// (showcase) Created showcase @note Ensure the `isShowcaseCreated` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseCreatedType *showcaseCreated; - -/// (showcase) Deleted showcase comment @note Ensure the -/// `isShowcaseDeleteComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDeleteCommentType *showcaseDeleteComment; - -/// (showcase) Edited showcase @note Ensure the `isShowcaseEdited` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditedType *showcaseEdited; - -/// (showcase) Edited showcase comment @note Ensure the `isShowcaseEditComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditCommentType *showcaseEditComment; - -/// (showcase) Added file to showcase @note Ensure the `isShowcaseFileAdded` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileAddedType *showcaseFileAdded; - -/// (showcase) Downloaded file from showcase @note Ensure the -/// `isShowcaseFileDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileDownloadType *showcaseFileDownload; - -/// (showcase) Removed file from showcase @note Ensure the -/// `isShowcaseFileRemoved` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileRemovedType *showcaseFileRemoved; - -/// (showcase) Viewed file in showcase @note Ensure the `isShowcaseFileView` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileViewType *showcaseFileView; - -/// (showcase) Permanently deleted showcase @note Ensure the -/// `isShowcasePermanentlyDeleted` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePermanentlyDeletedType *showcasePermanentlyDeleted; - -/// (showcase) Added showcase comment @note Ensure the `isShowcasePostComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePostCommentType *showcasePostComment; - -/// (showcase) Removed member from showcase @note Ensure the -/// `isShowcaseRemoveMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRemoveMemberType *showcaseRemoveMember; - -/// (showcase) Renamed showcase @note Ensure the `isShowcaseRenamed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRenamedType *showcaseRenamed; - -/// (showcase) Requested access to showcase @note Ensure the -/// `isShowcaseRequestAccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRequestAccessType *showcaseRequestAccess; - -/// (showcase) Resolved showcase comment @note Ensure the -/// `isShowcaseResolveComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseResolveCommentType *showcaseResolveComment; - -/// (showcase) Unarchived showcase @note Ensure the `isShowcaseRestored` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRestoredType *showcaseRestored; - -/// (showcase) Deleted showcase @note Ensure the `isShowcaseTrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedType *showcaseTrashed; - -/// (showcase) Deleted showcase (old version) (deprecated, replaced by 'Deleted -/// showcase') @note Ensure the `isShowcaseTrashedDeprecated` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedDeprecatedType *showcaseTrashedDeprecated; - -/// (showcase) Unresolved showcase comment @note Ensure the -/// `isShowcaseUnresolveComment` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUnresolveCommentType *showcaseUnresolveComment; - -/// (showcase) Restored showcase @note Ensure the `isShowcaseUntrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedType *showcaseUntrashed; - -/// (showcase) Restored showcase (old version) (deprecated, replaced by -/// 'Restored showcase') @note Ensure the `isShowcaseUntrashedDeprecated` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedDeprecatedType *showcaseUntrashedDeprecated; - -/// (showcase) Viewed showcase @note Ensure the `isShowcaseView` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseViewType *showcaseView; - -/// (sso) Added X.509 certificate for SSO @note Ensure the `isSsoAddCert` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddCertType *ssoAddCert; - -/// (sso) Added sign-in URL for SSO @note Ensure the `isSsoAddLoginUrl` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLoginUrlType *ssoAddLoginUrl; - -/// (sso) Added sign-out URL for SSO @note Ensure the `isSsoAddLogoutUrl` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLogoutUrlType *ssoAddLogoutUrl; - -/// (sso) Changed X.509 certificate for SSO @note Ensure the `isSsoChangeCert` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeCertType *ssoChangeCert; - -/// (sso) Changed sign-in URL for SSO @note Ensure the `isSsoChangeLoginUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLoginUrlType *ssoChangeLoginUrl; - -/// (sso) Changed sign-out URL for SSO @note Ensure the `isSsoChangeLogoutUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLogoutUrlType *ssoChangeLogoutUrl; - -/// (sso) Changed SAML identity mode for SSO @note Ensure the -/// `isSsoChangeSamlIdentityMode` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeSamlIdentityModeType *ssoChangeSamlIdentityMode; - -/// (sso) Removed X.509 certificate for SSO @note Ensure the `isSsoRemoveCert` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveCertType *ssoRemoveCert; - -/// (sso) Removed sign-in URL for SSO @note Ensure the `isSsoRemoveLoginUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLoginUrlType *ssoRemoveLoginUrl; - -/// (sso) Removed sign-out URL for SSO @note Ensure the `isSsoRemoveLogoutUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLogoutUrlType *ssoRemoveLogoutUrl; - -/// (team_folders) Changed archival status of team folder @note Ensure the -/// `isTeamFolderChangeStatus` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderChangeStatusType *teamFolderChangeStatus; - -/// (team_folders) Created team folder in active status @note Ensure the -/// `isTeamFolderCreate` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderCreateType *teamFolderCreate; - -/// (team_folders) Downgraded team folder to regular shared folder @note Ensure -/// the `isTeamFolderDowngrade` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderDowngradeType *teamFolderDowngrade; - -/// (team_folders) Permanently deleted archived team folder @note Ensure the -/// `isTeamFolderPermanentlyDelete` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderPermanentlyDeleteType *teamFolderPermanentlyDelete; - -/// (team_folders) Renamed active/archived team folder @note Ensure the -/// `isTeamFolderRename` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderRenameType *teamFolderRename; - -/// (team_folders) Changed sync default @note Ensure the -/// `isTeamSelectiveSyncSettingsChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncSettingsChangedType *teamSelectiveSyncSettingsChanged; - -/// (team_policies) Changed account capture setting on team domain @note Ensure -/// the `isAccountCaptureChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureChangePolicyType *accountCaptureChangePolicy; - -/// (team_policies) Changed admin reminder settings for requests to join the -/// team @note Ensure the `isAdminEmailRemindersChanged` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersChangedType *adminEmailRemindersChanged; - -/// (team_policies) Disabled downloads (deprecated, no longer logged) @note -/// Ensure the `isAllowDownloadDisabled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadDisabledType *allowDownloadDisabled; - -/// (team_policies) Enabled downloads (deprecated, no longer logged) @note -/// Ensure the `isAllowDownloadEnabled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadEnabledType *allowDownloadEnabled; - -/// (team_policies) Changed app permissions @note Ensure the -/// `isAppPermissionsChanged` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppPermissionsChangedType *appPermissionsChanged; - -/// (team_policies) Changed camera uploads setting for team @note Ensure the -/// `isCameraUploadsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicyChangedType *cameraUploadsPolicyChanged; - -/// (team_policies) Changed Capture transcription policy for team @note Ensure -/// the `isCaptureTranscriptPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicyChangedType *captureTranscriptPolicyChanged; - -/// (team_policies) Changed classification policy for team @note Ensure the -/// `isClassificationChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationChangePolicyType *classificationChangePolicy; - -/// (team_policies) Changed computer backup policy for team @note Ensure the -/// `isComputerBackupPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicyChangedType *computerBackupPolicyChanged; - -/// (team_policies) Changed content management setting @note Ensure the -/// `isContentAdministrationPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGContentAdministrationPolicyChangedType *contentAdministrationPolicyChanged; - -/// (team_policies) Set restrictions on data center locations where team data -/// resides @note Ensure the `isDataPlacementRestrictionChangePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDataPlacementRestrictionChangePolicyType *dataPlacementRestrictionChangePolicy; - -/// (team_policies) Completed restrictions on data center locations where team -/// data resides @note Ensure the `isDataPlacementRestrictionSatisfyPolicy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) - DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *dataPlacementRestrictionSatisfyPolicy; - -/// (team_policies) Added members to device approvals exception list @note -/// Ensure the `isDeviceApprovalsAddException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsAddExceptionType *deviceApprovalsAddException; - -/// (team_policies) Set/removed limit on number of computers member can link to -/// team Dropbox account @note Ensure the `isDeviceApprovalsChangeDesktopPolicy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *deviceApprovalsChangeDesktopPolicy; - -/// (team_policies) Set/removed limit on number of mobile devices member can -/// link to team Dropbox account @note Ensure the -/// `isDeviceApprovalsChangeMobilePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *deviceApprovalsChangeMobilePolicy; - -/// (team_policies) Changed device approvals setting when member is over limit -/// @note Ensure the `isDeviceApprovalsChangeOverageAction` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeOverageActionType *deviceApprovalsChangeOverageAction; - -/// (team_policies) Changed device approvals setting when member unlinks -/// approved device @note Ensure the `isDeviceApprovalsChangeUnlinkAction` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *deviceApprovalsChangeUnlinkAction; - -/// (team_policies) Removed members from device approvals exception list @note -/// Ensure the `isDeviceApprovalsRemoveException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsRemoveExceptionType *deviceApprovalsRemoveException; - -/// (team_policies) Added members to directory restrictions list @note Ensure -/// the `isDirectoryRestrictionsAddMembers` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDirectoryRestrictionsAddMembersType *directoryRestrictionsAddMembers; - -/// (team_policies) Removed members from directory restrictions list @note -/// Ensure the `isDirectoryRestrictionsRemoveMembers` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDirectoryRestrictionsRemoveMembersType *directoryRestrictionsRemoveMembers; - -/// (team_policies) Changed Dropbox Passwords policy for team @note Ensure the -/// `isDropboxPasswordsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicyChangedType *dropboxPasswordsPolicyChanged; - -/// (team_policies) Changed email to Dropbox policy for team @note Ensure the -/// `isEmailIngestPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicyChangedType *emailIngestPolicyChanged; - -/// (team_policies) Added members to EMM exception list @note Ensure the -/// `isEmmAddException` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmAddExceptionType *emmAddException; - -/// (team_policies) Enabled/disabled enterprise mobility management for members -/// @note Ensure the `isEmmChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmChangePolicyType *emmChangePolicy; - -/// (team_policies) Removed members from EMM exception list @note Ensure the -/// `isEmmRemoveException` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRemoveExceptionType *emmRemoveException; - -/// (team_policies) Accepted/opted out of extended version history @note Ensure -/// the `isExtendedVersionHistoryChangePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExtendedVersionHistoryChangePolicyType *extendedVersionHistoryChangePolicy; - -/// (team_policies) Changed external drive backup policy for team @note Ensure -/// the `isExternalDriveBackupPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicyChangedType *externalDriveBackupPolicyChanged; - -/// (team_policies) Enabled/disabled commenting on team files @note Ensure the -/// `isFileCommentsChangePolicy` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsChangePolicyType *fileCommentsChangePolicy; - -/// (team_policies) Changed file locking policy for team @note Ensure the -/// `isFileLockingPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingPolicyChangedType *fileLockingPolicyChanged; - -/// (team_policies) Changed File Provider Migration policy for team @note Ensure -/// the `isFileProviderMigrationPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileProviderMigrationPolicyChangedType *fileProviderMigrationPolicyChanged; - -/// (team_policies) Enabled/disabled file requests @note Ensure the -/// `isFileRequestsChangePolicy` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsChangePolicyType *fileRequestsChangePolicy; - -/// (team_policies) Enabled file request emails for everyone (deprecated, no -/// longer logged) @note Ensure the `isFileRequestsEmailsEnabled` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsEmailsEnabledType *fileRequestsEmailsEnabled; - -/// (team_policies) Enabled file request emails for team (deprecated, no longer -/// logged) @note Ensure the `isFileRequestsEmailsRestrictedToTeamOnly` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *fileRequestsEmailsRestrictedToTeamOnly; - -/// (team_policies) Changed file transfers policy for team @note Ensure the -/// `isFileTransfersPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicyChangedType *fileTransfersPolicyChanged; - -/// (team_policies) Changed folder link restrictions policy for team @note -/// Ensure the `isFolderLinkRestrictionPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicyChangedType *folderLinkRestrictionPolicyChanged; - -/// (team_policies) Enabled/disabled Google single sign-on for team @note Ensure -/// the `isGoogleSsoChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoChangePolicyType *googleSsoChangePolicy; - -/// (team_policies) Changed who can create groups @note Ensure the -/// `isGroupUserManagementChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupUserManagementChangePolicyType *groupUserManagementChangePolicy; - -/// (team_policies) Changed integration policy for team @note Ensure the -/// `isIntegrationPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicyChangedType *integrationPolicyChanged; - -/// (team_policies) Changed invite accept email policy for team @note Ensure the -/// `isInviteAcceptanceEmailPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *inviteAcceptanceEmailPolicyChanged; - -/// (team_policies) Changed whether users can find team when not invited @note -/// Ensure the `isMemberRequestsChangePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsChangePolicyType *memberRequestsChangePolicy; - -/// (team_policies) Changed member send invite policy for team @note Ensure the -/// `isMemberSendInvitePolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicyChangedType *memberSendInvitePolicyChanged; - -/// (team_policies) Added members to member space limit exception list @note -/// Ensure the `isMemberSpaceLimitsAddException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddExceptionType *memberSpaceLimitsAddException; - -/// (team_policies) Changed member space limit type for team @note Ensure the -/// `isMemberSpaceLimitsChangeCapsTypePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *memberSpaceLimitsChangeCapsTypePolicy; - -/// (team_policies) Changed team default member space limit @note Ensure the -/// `isMemberSpaceLimitsChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangePolicyType *memberSpaceLimitsChangePolicy; - -/// (team_policies) Removed members from member space limit exception list @note -/// Ensure the `isMemberSpaceLimitsRemoveException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *memberSpaceLimitsRemoveException; - -/// (team_policies) Enabled/disabled option for team members to suggest people -/// to add to team @note Ensure the `isMemberSuggestionsChangePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsChangePolicyType *memberSuggestionsChangePolicy; - -/// (team_policies) Enabled/disabled Microsoft Office add-in @note Ensure the -/// `isMicrosoftOfficeAddinChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *microsoftOfficeAddinChangePolicy; - -/// (team_policies) Enabled/disabled network control @note Ensure the -/// `isNetworkControlChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlChangePolicyType *networkControlChangePolicy; - -/// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to -/// all members or to specific members @note Ensure the -/// `isPaperChangeDeploymentPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeDeploymentPolicyType *paperChangeDeploymentPolicy; - -/// (team_policies) Changed whether non-members can view Paper docs with link -/// (deprecated, no longer logged) @note Ensure the -/// `isPaperChangeMemberLinkPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberLinkPolicyType *paperChangeMemberLinkPolicy; - -/// (team_policies) Changed whether members can share Paper docs outside team, -/// and if docs are accessible only by team members or anyone by default @note -/// Ensure the `isPaperChangeMemberPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberPolicyType *paperChangeMemberPolicy; - -/// (team_policies) Enabled/disabled Dropbox Paper for team @note Ensure the -/// `isPaperChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangePolicyType *paperChangePolicy; - -/// (team_policies) Changed Paper Default Folder Policy setting for team @note -/// Ensure the `isPaperDefaultFolderPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicyChangedType *paperDefaultFolderPolicyChanged; - -/// (team_policies) Enabled/disabled Paper Desktop for team @note Ensure the -/// `isPaperDesktopPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicyChangedType *paperDesktopPolicyChanged; - -/// (team_policies) Added users to Paper-enabled users list @note Ensure the -/// `isPaperEnabledUsersGroupAddition` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupAdditionType *paperEnabledUsersGroupAddition; - -/// (team_policies) Removed users from Paper-enabled users list @note Ensure the -/// `isPaperEnabledUsersGroupRemoval` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupRemovalType *paperEnabledUsersGroupRemoval; - -/// (team_policies) Changed team password strength requirements @note Ensure the -/// `isPasswordStrengthRequirementsChangePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *passwordStrengthRequirementsChangePolicy; - -/// (team_policies) Enabled/disabled ability of team members to permanently -/// delete content @note Ensure the `isPermanentDeleteChangePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPermanentDeleteChangePolicyType *permanentDeleteChangePolicy; - -/// (team_policies) Enabled/disabled reseller support @note Ensure the -/// `isResellerSupportChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportChangePolicyType *resellerSupportChangePolicy; - -/// (team_policies) Changed Rewind policy for team @note Ensure the -/// `isRewindPolicyChanged` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicyChangedType *rewindPolicyChanged; - -/// (team_policies) Changed send for signature policy for team @note Ensure the -/// `isSendForSignaturePolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicyChangedType *sendForSignaturePolicyChanged; - -/// (team_policies) Changed whether team members can join shared folders owned -/// outside team @note Ensure the `isSharingChangeFolderJoinPolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeFolderJoinPolicyType *sharingChangeFolderJoinPolicy; - -/// (team_policies) Changed the allow remove or change expiration policy for the -/// links shared outside of the team @note Ensure the -/// `isSharingChangeLinkAllowChangeExpirationPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *sharingChangeLinkAllowChangeExpirationPolicy; - -/// (team_policies) Changed the default expiration for the links shared outside -/// of the team @note Ensure the `isSharingChangeLinkDefaultExpirationPolicy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *sharingChangeLinkDefaultExpirationPolicy; - -/// (team_policies) Changed the password requirement for the links shared -/// outside of the team @note Ensure the -/// `isSharingChangeLinkEnforcePasswordPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *sharingChangeLinkEnforcePasswordPolicy; - -/// (team_policies) Changed whether members can share links outside team, and if -/// links are accessible only by team members or anyone by default @note Ensure -/// the `isSharingChangeLinkPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeLinkPolicyType *sharingChangeLinkPolicy; - -/// (team_policies) Changed whether members can share files/folders outside team -/// @note Ensure the `isSharingChangeMemberPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeMemberPolicyType *sharingChangeMemberPolicy; - -/// (team_policies) Enabled/disabled downloading files from Dropbox Showcase for -/// team @note Ensure the `isShowcaseChangeDownloadPolicy` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeDownloadPolicyType *showcaseChangeDownloadPolicy; - -/// (team_policies) Enabled/disabled Dropbox Showcase for team @note Ensure the -/// `isShowcaseChangeEnabledPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeEnabledPolicyType *showcaseChangeEnabledPolicy; - -/// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for -/// team @note Ensure the `isShowcaseChangeExternalSharingPolicy` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeExternalSharingPolicyType *showcaseChangeExternalSharingPolicy; - -/// (team_policies) Changed automatic Smart Sync setting for team @note Ensure -/// the `isSmarterSmartSyncPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmarterSmartSyncPolicyChangedType *smarterSmartSyncPolicyChanged; - -/// (team_policies) Changed default Smart Sync setting for team members @note -/// Ensure the `isSmartSyncChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncChangePolicyType *smartSyncChangePolicy; - -/// (team_policies) Opted team into Smart Sync @note Ensure the -/// `isSmartSyncNotOptOut` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncNotOptOutType *smartSyncNotOptOut; - -/// (team_policies) Opted team out of Smart Sync @note Ensure the -/// `isSmartSyncOptOut` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutType *smartSyncOptOut; - -/// (team_policies) Changed single sign-on setting for team @note Ensure the -/// `isSsoChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangePolicyType *ssoChangePolicy; - -/// (team_policies) Changed team branding policy for team @note Ensure the -/// `isTeamBrandingPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicyChangedType *teamBrandingPolicyChanged; - -/// (team_policies) Changed App Integrations setting for team @note Ensure the -/// `isTeamExtensionsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicyChangedType *teamExtensionsPolicyChanged; - -/// (team_policies) Enabled/disabled Team Selective Sync for team @note Ensure -/// the `isTeamSelectiveSyncPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicyChangedType *teamSelectiveSyncPolicyChanged; - -/// (team_policies) Edited the approved list for sharing externally @note Ensure -/// the `isTeamSharingWhitelistSubjectsChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *teamSharingWhitelistSubjectsChanged; - -/// (team_policies) Added members to two factor authentication exception list -/// @note Ensure the `isTfaAddException` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddExceptionType *tfaAddException; - -/// (team_policies) Changed two-step verification setting for team @note Ensure -/// the `isTfaChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangePolicyType *tfaChangePolicy; - -/// (team_policies) Removed members from two factor authentication exception -/// list @note Ensure the `isTfaRemoveException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveExceptionType *tfaRemoveException; - -/// (team_policies) Enabled/disabled option for members to link personal Dropbox -/// account and team account to same computer @note Ensure the -/// `isTwoAccountChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountChangePolicyType *twoAccountChangePolicy; - -/// (team_policies) Changed team policy for viewer info @note Ensure the -/// `isViewerInfoPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGViewerInfoPolicyChangedType *viewerInfoPolicyChanged; - -/// (team_policies) Changed watermarking policy for team @note Ensure the -/// `isWatermarkingPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicyChangedType *watermarkingPolicyChanged; - -/// (team_policies) Changed limit on active sessions per member @note Ensure the -/// `isWebSessionsChangeActiveSessionLimit` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsChangeActiveSessionLimitType *webSessionsChangeActiveSessionLimit; - -/// (team_policies) Changed how long members can stay signed in to Dropbox.com -/// @note Ensure the `isWebSessionsChangeFixedLengthPolicy` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *webSessionsChangeFixedLengthPolicy; - -/// (team_policies) Changed how long team members can be idle while signed in to -/// Dropbox.com @note Ensure the `isWebSessionsChangeIdleLengthPolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *webSessionsChangeIdleLengthPolicy; - -/// (team_profile) Requested data residency migration for team data @note Ensure -/// the `isDataResidencyMigrationRequestSuccessful` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *dataResidencyMigrationRequestSuccessful; - -/// (team_profile) Request for data residency migration for team data has failed -/// @note Ensure the `isDataResidencyMigrationRequestUnsuccessful` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *dataResidencyMigrationRequestUnsuccessful; - -/// (team_profile) Merged another team into this team @note Ensure the -/// `isTeamMergeFrom` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeFromType *teamMergeFrom; - -/// (team_profile) Merged this team into another team @note Ensure the -/// `isTeamMergeTo` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeToType *teamMergeTo; - -/// (team_profile) Added team background to display on shared link headers @note -/// Ensure the `isTeamProfileAddBackground` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddBackgroundType *teamProfileAddBackground; - -/// (team_profile) Added team logo to display on shared link headers @note -/// Ensure the `isTeamProfileAddLogo` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddLogoType *teamProfileAddLogo; - -/// (team_profile) Changed team background displayed on shared link headers -/// @note Ensure the `isTeamProfileChangeBackground` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeBackgroundType *teamProfileChangeBackground; - -/// (team_profile) Changed default language for team @note Ensure the -/// `isTeamProfileChangeDefaultLanguage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeDefaultLanguageType *teamProfileChangeDefaultLanguage; - -/// (team_profile) Changed team logo displayed on shared link headers @note -/// Ensure the `isTeamProfileChangeLogo` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeLogoType *teamProfileChangeLogo; - -/// (team_profile) Changed team name @note Ensure the `isTeamProfileChangeName` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeNameType *teamProfileChangeName; - -/// (team_profile) Removed team background displayed on shared link headers -/// @note Ensure the `isTeamProfileRemoveBackground` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveBackgroundType *teamProfileRemoveBackground; - -/// (team_profile) Removed team logo displayed on shared link headers @note -/// Ensure the `isTeamProfileRemoveLogo` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveLogoType *teamProfileRemoveLogo; - -/// (tfa) Added backup phone for two-step verification @note Ensure the -/// `isTfaAddBackupPhone` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddBackupPhoneType *tfaAddBackupPhone; - -/// (tfa) Added security key for two-step verification @note Ensure the -/// `isTfaAddSecurityKey` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddSecurityKeyType *tfaAddSecurityKey; - -/// (tfa) Changed backup phone for two-step verification @note Ensure the -/// `isTfaChangeBackupPhone` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeBackupPhoneType *tfaChangeBackupPhone; - -/// (tfa) Enabled/disabled/changed two-step verification setting @note Ensure -/// the `isTfaChangeStatus` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeStatusType *tfaChangeStatus; - -/// (tfa) Removed backup phone for two-step verification @note Ensure the -/// `isTfaRemoveBackupPhone` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveBackupPhoneType *tfaRemoveBackupPhone; - -/// (tfa) Removed security key for two-step verification @note Ensure the -/// `isTfaRemoveSecurityKey` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveSecurityKeyType *tfaRemoveSecurityKey; - -/// (tfa) Reset two-step verification for team member @note Ensure the -/// `isTfaReset` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaResetType *tfaReset; - -/// (trusted_teams) Changed enterprise admin role @note Ensure the -/// `isChangedEnterpriseAdminRole` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGChangedEnterpriseAdminRoleType *changedEnterpriseAdminRole; - -/// (trusted_teams) Changed enterprise-connected team status @note Ensure the -/// `isChangedEnterpriseConnectedTeamStatus` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *changedEnterpriseConnectedTeamStatus; - -/// (trusted_teams) Ended enterprise admin session @note Ensure the -/// `isEndedEnterpriseAdminSession` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEndedEnterpriseAdminSessionType *endedEnterpriseAdminSession; - -/// (trusted_teams) Ended enterprise admin session (deprecated, replaced by -/// 'Ended enterprise admin session') @note Ensure the -/// `isEndedEnterpriseAdminSessionDeprecated` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *endedEnterpriseAdminSessionDeprecated; - -/// (trusted_teams) Changed who can update a setting @note Ensure the -/// `isEnterpriseSettingsLocking` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEnterpriseSettingsLockingType *enterpriseSettingsLocking; - -/// (trusted_teams) Changed guest team admin status @note Ensure the -/// `isGuestAdminChangeStatus` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminChangeStatusType *guestAdminChangeStatus; - -/// (trusted_teams) Started enterprise admin session @note Ensure the -/// `isStartedEnterpriseAdminSession` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGStartedEnterpriseAdminSessionType *startedEnterpriseAdminSession; - -/// (trusted_teams) Accepted a team merge request @note Ensure the -/// `isTeamMergeRequestAccepted` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedType *teamMergeRequestAccepted; - -/// (trusted_teams) Accepted a team merge request (deprecated, replaced by -/// 'Accepted a team merge request') @note Ensure the -/// `isTeamMergeRequestAcceptedShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *teamMergeRequestAcceptedShownToPrimaryTeam; - -/// (trusted_teams) Accepted a team merge request (deprecated, replaced by -/// 'Accepted a team merge request') @note Ensure the -/// `isTeamMergeRequestAcceptedShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *teamMergeRequestAcceptedShownToSecondaryTeam; - -/// (trusted_teams) Automatically canceled team merge request @note Ensure the -/// `isTeamMergeRequestAutoCanceled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAutoCanceledType *teamMergeRequestAutoCanceled; - -/// (trusted_teams) Canceled a team merge request @note Ensure the -/// `isTeamMergeRequestCanceled` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledType *teamMergeRequestCanceled; - -/// (trusted_teams) Canceled a team merge request (deprecated, replaced by -/// 'Canceled a team merge request') @note Ensure the -/// `isTeamMergeRequestCanceledShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *teamMergeRequestCanceledShownToPrimaryTeam; - -/// (trusted_teams) Canceled a team merge request (deprecated, replaced by -/// 'Canceled a team merge request') @note Ensure the -/// `isTeamMergeRequestCanceledShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *teamMergeRequestCanceledShownToSecondaryTeam; - -/// (trusted_teams) Team merge request expired @note Ensure the -/// `isTeamMergeRequestExpired` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredType *teamMergeRequestExpired; - -/// (trusted_teams) Team merge request expired (deprecated, replaced by 'Team -/// merge request expired') @note Ensure the -/// `isTeamMergeRequestExpiredShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *teamMergeRequestExpiredShownToPrimaryTeam; - -/// (trusted_teams) Team merge request expired (deprecated, replaced by 'Team -/// merge request expired') @note Ensure the -/// `isTeamMergeRequestExpiredShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *teamMergeRequestExpiredShownToSecondaryTeam; - -/// (trusted_teams) Rejected a team merge request (deprecated, no longer logged) -/// @note Ensure the `isTeamMergeRequestRejectedShownToPrimaryTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *teamMergeRequestRejectedShownToPrimaryTeam; - -/// (trusted_teams) Rejected a team merge request (deprecated, no longer logged) -/// @note Ensure the `isTeamMergeRequestRejectedShownToSecondaryTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *teamMergeRequestRejectedShownToSecondaryTeam; - -/// (trusted_teams) Sent a team merge request reminder @note Ensure the -/// `isTeamMergeRequestReminder` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderType *teamMergeRequestReminder; - -/// (trusted_teams) Sent a team merge request reminder (deprecated, replaced by -/// 'Sent a team merge request reminder') @note Ensure the -/// `isTeamMergeRequestReminderShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *teamMergeRequestReminderShownToPrimaryTeam; - -/// (trusted_teams) Sent a team merge request reminder (deprecated, replaced by -/// 'Sent a team merge request reminder') @note Ensure the -/// `isTeamMergeRequestReminderShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *teamMergeRequestReminderShownToSecondaryTeam; - -/// (trusted_teams) Canceled the team merge @note Ensure the -/// `isTeamMergeRequestRevoked` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestRevokedType *teamMergeRequestRevoked; - -/// (trusted_teams) Requested to merge their Dropbox team into yours @note -/// Ensure the `isTeamMergeRequestSentShownToPrimaryTeam` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *teamMergeRequestSentShownToPrimaryTeam; - -/// (trusted_teams) Requested to merge your team into another Dropbox team @note -/// Ensure the `isTeamMergeRequestSentShownToSecondaryTeam` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *teamMergeRequestSentShownToSecondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "admin_alerting_alert_state_changed". -/// -/// Description of the "admin_alerting_alert_state_changed" tag state: -/// (admin_alerting) Changed an alert state -/// -/// @param adminAlertingAlertStateChanged (admin_alerting) Changed an alert -/// state -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingAlertStateChanged: - (DBTEAMLOGAdminAlertingAlertStateChangedType *)adminAlertingAlertStateChanged; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_changed_alert_config". -/// -/// Description of the "admin_alerting_changed_alert_config" tag state: -/// (admin_alerting) Changed an alert setting -/// -/// @param adminAlertingChangedAlertConfig (admin_alerting) Changed an alert -/// setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingChangedAlertConfig: - (DBTEAMLOGAdminAlertingChangedAlertConfigType *)adminAlertingChangedAlertConfig; - -/// -/// Initializes union class with tag state of "admin_alerting_triggered_alert". -/// -/// Description of the "admin_alerting_triggered_alert" tag state: -/// (admin_alerting) Triggered security alert -/// -/// @param adminAlertingTriggeredAlert (admin_alerting) Triggered security alert -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingTriggeredAlert: - (DBTEAMLOGAdminAlertingTriggeredAlertType *)adminAlertingTriggeredAlert; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_completed". -/// -/// Description of the "ransomware_restore_process_completed" tag state: -/// (admin_alerting) Completed ransomware restore process -/// -/// @param ransomwareRestoreProcessCompleted (admin_alerting) Completed -/// ransomware restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessCompleted: - (DBTEAMLOGRansomwareRestoreProcessCompletedType *)ransomwareRestoreProcessCompleted; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_started". -/// -/// Description of the "ransomware_restore_process_started" tag state: -/// (admin_alerting) Started ransomware restore process -/// -/// @param ransomwareRestoreProcessStarted (admin_alerting) Started ransomware -/// restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessStarted: - (DBTEAMLOGRansomwareRestoreProcessStartedType *)ransomwareRestoreProcessStarted; - -/// -/// Initializes union class with tag state of "app_blocked_by_permissions". -/// -/// Description of the "app_blocked_by_permissions" tag state: (apps) Failed to -/// connect app for member -/// -/// @param appBlockedByPermissions (apps) Failed to connect app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppBlockedByPermissions:(DBTEAMLOGAppBlockedByPermissionsType *)appBlockedByPermissions; - -/// -/// Initializes union class with tag state of "app_link_team". -/// -/// Description of the "app_link_team" tag state: (apps) Linked app for team -/// -/// @param appLinkTeam (apps) Linked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkTeam:(DBTEAMLOGAppLinkTeamType *)appLinkTeam; - -/// -/// Initializes union class with tag state of "app_link_user". -/// -/// Description of the "app_link_user" tag state: (apps) Linked app for member -/// -/// @param appLinkUser (apps) Linked app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkUser:(DBTEAMLOGAppLinkUserType *)appLinkUser; - -/// -/// Initializes union class with tag state of "app_unlink_team". -/// -/// Description of the "app_unlink_team" tag state: (apps) Unlinked app for team -/// -/// @param appUnlinkTeam (apps) Unlinked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkTeam:(DBTEAMLOGAppUnlinkTeamType *)appUnlinkTeam; - -/// -/// Initializes union class with tag state of "app_unlink_user". -/// -/// Description of the "app_unlink_user" tag state: (apps) Unlinked app for -/// member -/// -/// @param appUnlinkUser (apps) Unlinked app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkUser:(DBTEAMLOGAppUnlinkUserType *)appUnlinkUser; - -/// -/// Initializes union class with tag state of "integration_connected". -/// -/// Description of the "integration_connected" tag state: (apps) Connected -/// integration for member -/// -/// @param integrationConnected (apps) Connected integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationConnected:(DBTEAMLOGIntegrationConnectedType *)integrationConnected; - -/// -/// Initializes union class with tag state of "integration_disconnected". -/// -/// Description of the "integration_disconnected" tag state: (apps) Disconnected -/// integration for member -/// -/// @param integrationDisconnected (apps) Disconnected integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationDisconnected:(DBTEAMLOGIntegrationDisconnectedType *)integrationDisconnected; - -/// -/// Initializes union class with tag state of "file_add_comment". -/// -/// Description of the "file_add_comment" tag state: (comments) Added file -/// comment -/// -/// @param fileAddComment (comments) Added file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddComment:(DBTEAMLOGFileAddCommentType *)fileAddComment; - -/// -/// Initializes union class with tag state of -/// "file_change_comment_subscription". -/// -/// Description of the "file_change_comment_subscription" tag state: (comments) -/// Subscribed to or unsubscribed from comment notifications for file -/// -/// @param fileChangeCommentSubscription (comments) Subscribed to or -/// unsubscribed from comment notifications for file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileChangeCommentSubscription: - (DBTEAMLOGFileChangeCommentSubscriptionType *)fileChangeCommentSubscription; - -/// -/// Initializes union class with tag state of "file_delete_comment". -/// -/// Description of the "file_delete_comment" tag state: (comments) Deleted file -/// comment -/// -/// @param fileDeleteComment (comments) Deleted file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteComment:(DBTEAMLOGFileDeleteCommentType *)fileDeleteComment; - -/// -/// Initializes union class with tag state of "file_edit_comment". -/// -/// Description of the "file_edit_comment" tag state: (comments) Edited file -/// comment -/// -/// @param fileEditComment (comments) Edited file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditComment:(DBTEAMLOGFileEditCommentType *)fileEditComment; - -/// -/// Initializes union class with tag state of "file_like_comment". -/// -/// Description of the "file_like_comment" tag state: (comments) Liked file -/// comment (deprecated, no longer logged) -/// -/// @param fileLikeComment (comments) Liked file comment (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLikeComment:(DBTEAMLOGFileLikeCommentType *)fileLikeComment; - -/// -/// Initializes union class with tag state of "file_resolve_comment". -/// -/// Description of the "file_resolve_comment" tag state: (comments) Resolved -/// file comment -/// -/// @param fileResolveComment (comments) Resolved file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileResolveComment:(DBTEAMLOGFileResolveCommentType *)fileResolveComment; - -/// -/// Initializes union class with tag state of "file_unlike_comment". -/// -/// Description of the "file_unlike_comment" tag state: (comments) Unliked file -/// comment (deprecated, no longer logged) -/// -/// @param fileUnlikeComment (comments) Unliked file comment (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnlikeComment:(DBTEAMLOGFileUnlikeCommentType *)fileUnlikeComment; - -/// -/// Initializes union class with tag state of "file_unresolve_comment". -/// -/// Description of the "file_unresolve_comment" tag state: (comments) Unresolved -/// file comment -/// -/// @param fileUnresolveComment (comments) Unresolved file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnresolveComment:(DBTEAMLOGFileUnresolveCommentType *)fileUnresolveComment; - -/// -/// Initializes union class with tag state of "governance_policy_add_folders". -/// -/// Description of the "governance_policy_add_folders" tag state: -/// (data_governance) Added folders to policy -/// -/// @param governancePolicyAddFolders (data_governance) Added folders to policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolders: - (DBTEAMLOGGovernancePolicyAddFoldersType *)governancePolicyAddFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folder_failed". -/// -/// Description of the "governance_policy_add_folder_failed" tag state: -/// (data_governance) Couldn't add a folder to a policy -/// -/// @param governancePolicyAddFolderFailed (data_governance) Couldn't add a -/// folder to a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolderFailed: - (DBTEAMLOGGovernancePolicyAddFolderFailedType *)governancePolicyAddFolderFailed; - -/// -/// Initializes union class with tag state of -/// "governance_policy_content_disposed". -/// -/// Description of the "governance_policy_content_disposed" tag state: -/// (data_governance) Content disposed -/// -/// @param governancePolicyContentDisposed (data_governance) Content disposed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyContentDisposed: - (DBTEAMLOGGovernancePolicyContentDisposedType *)governancePolicyContentDisposed; - -/// -/// Initializes union class with tag state of "governance_policy_create". -/// -/// Description of the "governance_policy_create" tag state: (data_governance) -/// Activated a new policy -/// -/// @param governancePolicyCreate (data_governance) Activated a new policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyCreate:(DBTEAMLOGGovernancePolicyCreateType *)governancePolicyCreate; - -/// -/// Initializes union class with tag state of "governance_policy_delete". -/// -/// Description of the "governance_policy_delete" tag state: (data_governance) -/// Deleted a policy -/// -/// @param governancePolicyDelete (data_governance) Deleted a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyDelete:(DBTEAMLOGGovernancePolicyDeleteType *)governancePolicyDelete; - -/// -/// Initializes union class with tag state of "governance_policy_edit_details". -/// -/// Description of the "governance_policy_edit_details" tag state: -/// (data_governance) Edited policy -/// -/// @param governancePolicyEditDetails (data_governance) Edited policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDetails: - (DBTEAMLOGGovernancePolicyEditDetailsType *)governancePolicyEditDetails; - -/// -/// Initializes union class with tag state of "governance_policy_edit_duration". -/// -/// Description of the "governance_policy_edit_duration" tag state: -/// (data_governance) Changed policy duration -/// -/// @param governancePolicyEditDuration (data_governance) Changed policy -/// duration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDuration: - (DBTEAMLOGGovernancePolicyEditDurationType *)governancePolicyEditDuration; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_created". -/// -/// Description of the "governance_policy_export_created" tag state: -/// (data_governance) Created a policy download -/// -/// @param governancePolicyExportCreated (data_governance) Created a policy -/// download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportCreated: - (DBTEAMLOGGovernancePolicyExportCreatedType *)governancePolicyExportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_removed". -/// -/// Description of the "governance_policy_export_removed" tag state: -/// (data_governance) Removed a policy download -/// -/// @param governancePolicyExportRemoved (data_governance) Removed a policy -/// download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportRemoved: - (DBTEAMLOGGovernancePolicyExportRemovedType *)governancePolicyExportRemoved; - -/// -/// Initializes union class with tag state of -/// "governance_policy_remove_folders". -/// -/// Description of the "governance_policy_remove_folders" tag state: -/// (data_governance) Removed folders from policy -/// -/// @param governancePolicyRemoveFolders (data_governance) Removed folders from -/// policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyRemoveFolders: - (DBTEAMLOGGovernancePolicyRemoveFoldersType *)governancePolicyRemoveFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_report_created". -/// -/// Description of the "governance_policy_report_created" tag state: -/// (data_governance) Created a summary report for a policy -/// -/// @param governancePolicyReportCreated (data_governance) Created a summary -/// report for a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyReportCreated: - (DBTEAMLOGGovernancePolicyReportCreatedType *)governancePolicyReportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_zip_part_downloaded". -/// -/// Description of the "governance_policy_zip_part_downloaded" tag state: -/// (data_governance) Downloaded content from a policy -/// -/// @param governancePolicyZipPartDownloaded (data_governance) Downloaded -/// content from a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyZipPartDownloaded: - (DBTEAMLOGGovernancePolicyZipPartDownloadedType *)governancePolicyZipPartDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_activate_a_hold". -/// -/// Description of the "legal_holds_activate_a_hold" tag state: -/// (data_governance) Activated a hold -/// -/// @param legalHoldsActivateAHold (data_governance) Activated a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsActivateAHold:(DBTEAMLOGLegalHoldsActivateAHoldType *)legalHoldsActivateAHold; - -/// -/// Initializes union class with tag state of "legal_holds_add_members". -/// -/// Description of the "legal_holds_add_members" tag state: (data_governance) -/// Added members to a hold -/// -/// @param legalHoldsAddMembers (data_governance) Added members to a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsAddMembers:(DBTEAMLOGLegalHoldsAddMembersType *)legalHoldsAddMembers; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_details". -/// -/// Description of the "legal_holds_change_hold_details" tag state: -/// (data_governance) Edited details for a hold -/// -/// @param legalHoldsChangeHoldDetails (data_governance) Edited details for a -/// hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldDetails: - (DBTEAMLOGLegalHoldsChangeHoldDetailsType *)legalHoldsChangeHoldDetails; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_name". -/// -/// Description of the "legal_holds_change_hold_name" tag state: -/// (data_governance) Renamed a hold -/// -/// @param legalHoldsChangeHoldName (data_governance) Renamed a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldName:(DBTEAMLOGLegalHoldsChangeHoldNameType *)legalHoldsChangeHoldName; - -/// -/// Initializes union class with tag state of "legal_holds_export_a_hold". -/// -/// Description of the "legal_holds_export_a_hold" tag state: (data_governance) -/// Exported hold -/// -/// @param legalHoldsExportAHold (data_governance) Exported hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportAHold:(DBTEAMLOGLegalHoldsExportAHoldType *)legalHoldsExportAHold; - -/// -/// Initializes union class with tag state of "legal_holds_export_cancelled". -/// -/// Description of the "legal_holds_export_cancelled" tag state: -/// (data_governance) Canceled export for a hold -/// -/// @param legalHoldsExportCancelled (data_governance) Canceled export for a -/// hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportCancelled:(DBTEAMLOGLegalHoldsExportCancelledType *)legalHoldsExportCancelled; - -/// -/// Initializes union class with tag state of "legal_holds_export_downloaded". -/// -/// Description of the "legal_holds_export_downloaded" tag state: -/// (data_governance) Downloaded export for a hold -/// -/// @param legalHoldsExportDownloaded (data_governance) Downloaded export for a -/// hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportDownloaded: - (DBTEAMLOGLegalHoldsExportDownloadedType *)legalHoldsExportDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_export_removed". -/// -/// Description of the "legal_holds_export_removed" tag state: (data_governance) -/// Removed export for a hold -/// -/// @param legalHoldsExportRemoved (data_governance) Removed export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportRemoved:(DBTEAMLOGLegalHoldsExportRemovedType *)legalHoldsExportRemoved; - -/// -/// Initializes union class with tag state of "legal_holds_release_a_hold". -/// -/// Description of the "legal_holds_release_a_hold" tag state: (data_governance) -/// Released a hold -/// -/// @param legalHoldsReleaseAHold (data_governance) Released a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReleaseAHold:(DBTEAMLOGLegalHoldsReleaseAHoldType *)legalHoldsReleaseAHold; - -/// -/// Initializes union class with tag state of "legal_holds_remove_members". -/// -/// Description of the "legal_holds_remove_members" tag state: (data_governance) -/// Removed members from a hold -/// -/// @param legalHoldsRemoveMembers (data_governance) Removed members from a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsRemoveMembers:(DBTEAMLOGLegalHoldsRemoveMembersType *)legalHoldsRemoveMembers; - -/// -/// Initializes union class with tag state of "legal_holds_report_a_hold". -/// -/// Description of the "legal_holds_report_a_hold" tag state: (data_governance) -/// Created a summary report for a hold -/// -/// @param legalHoldsReportAHold (data_governance) Created a summary report for -/// a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReportAHold:(DBTEAMLOGLegalHoldsReportAHoldType *)legalHoldsReportAHold; - -/// -/// Initializes union class with tag state of "device_change_ip_desktop". -/// -/// Description of the "device_change_ip_desktop" tag state: (devices) Changed -/// IP address associated with active desktop session -/// -/// @param deviceChangeIpDesktop (devices) Changed IP address associated with -/// active desktop session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpDesktop:(DBTEAMLOGDeviceChangeIpDesktopType *)deviceChangeIpDesktop; - -/// -/// Initializes union class with tag state of "device_change_ip_mobile". -/// -/// Description of the "device_change_ip_mobile" tag state: (devices) Changed IP -/// address associated with active mobile session -/// -/// @param deviceChangeIpMobile (devices) Changed IP address associated with -/// active mobile session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpMobile:(DBTEAMLOGDeviceChangeIpMobileType *)deviceChangeIpMobile; - -/// -/// Initializes union class with tag state of "device_change_ip_web". -/// -/// Description of the "device_change_ip_web" tag state: (devices) Changed IP -/// address associated with active web session -/// -/// @param deviceChangeIpWeb (devices) Changed IP address associated with active -/// web session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpWeb:(DBTEAMLOGDeviceChangeIpWebType *)deviceChangeIpWeb; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_fail". -/// -/// Description of the "device_delete_on_unlink_fail" tag state: (devices) -/// Failed to delete all files from unlinked device -/// -/// @param deviceDeleteOnUnlinkFail (devices) Failed to delete all files from -/// unlinked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkFail:(DBTEAMLOGDeviceDeleteOnUnlinkFailType *)deviceDeleteOnUnlinkFail; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_success". -/// -/// Description of the "device_delete_on_unlink_success" tag state: (devices) -/// Deleted all files from unlinked device -/// -/// @param deviceDeleteOnUnlinkSuccess (devices) Deleted all files from unlinked -/// device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkSuccess: - (DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *)deviceDeleteOnUnlinkSuccess; - -/// -/// Initializes union class with tag state of "device_link_fail". -/// -/// Description of the "device_link_fail" tag state: (devices) Failed to link -/// device -/// -/// @param deviceLinkFail (devices) Failed to link device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkFail:(DBTEAMLOGDeviceLinkFailType *)deviceLinkFail; - -/// -/// Initializes union class with tag state of "device_link_success". -/// -/// Description of the "device_link_success" tag state: (devices) Linked device -/// -/// @param deviceLinkSuccess (devices) Linked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkSuccess:(DBTEAMLOGDeviceLinkSuccessType *)deviceLinkSuccess; - -/// -/// Initializes union class with tag state of "device_management_disabled". -/// -/// Description of the "device_management_disabled" tag state: (devices) -/// Disabled device management (deprecated, no longer logged) -/// -/// @param deviceManagementDisabled (devices) Disabled device management -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementDisabled:(DBTEAMLOGDeviceManagementDisabledType *)deviceManagementDisabled; - -/// -/// Initializes union class with tag state of "device_management_enabled". -/// -/// Description of the "device_management_enabled" tag state: (devices) Enabled -/// device management (deprecated, no longer logged) -/// -/// @param deviceManagementEnabled (devices) Enabled device management -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementEnabled:(DBTEAMLOGDeviceManagementEnabledType *)deviceManagementEnabled; - -/// -/// Initializes union class with tag state of -/// "device_sync_backup_status_changed". -/// -/// Description of the "device_sync_backup_status_changed" tag state: (devices) -/// Enabled/disabled backup for computer -/// -/// @param deviceSyncBackupStatusChanged (devices) Enabled/disabled backup for -/// computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSyncBackupStatusChanged: - (DBTEAMLOGDeviceSyncBackupStatusChangedType *)deviceSyncBackupStatusChanged; - -/// -/// Initializes union class with tag state of "device_unlink". -/// -/// Description of the "device_unlink" tag state: (devices) Disconnected device -/// -/// @param deviceUnlink (devices) Disconnected device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceUnlink:(DBTEAMLOGDeviceUnlinkType *)deviceUnlink; - -/// -/// Initializes union class with tag state of "dropbox_passwords_exported". -/// -/// Description of the "dropbox_passwords_exported" tag state: (devices) -/// Exported passwords -/// -/// @param dropboxPasswordsExported (devices) Exported passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsExported:(DBTEAMLOGDropboxPasswordsExportedType *)dropboxPasswordsExported; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_new_device_enrolled". -/// -/// Description of the "dropbox_passwords_new_device_enrolled" tag state: -/// (devices) Enrolled new Dropbox Passwords device -/// -/// @param dropboxPasswordsNewDeviceEnrolled (devices) Enrolled new Dropbox -/// Passwords device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsNewDeviceEnrolled: - (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *)dropboxPasswordsNewDeviceEnrolled; - -/// -/// Initializes union class with tag state of "emm_refresh_auth_token". -/// -/// Description of the "emm_refresh_auth_token" tag state: (devices) Refreshed -/// auth token used for setting up EMM -/// -/// @param emmRefreshAuthToken (devices) Refreshed auth token used for setting -/// up EMM -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRefreshAuthToken:(DBTEAMLOGEmmRefreshAuthTokenType *)emmRefreshAuthToken; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_eligibility_status_checked". -/// -/// Description of the "external_drive_backup_eligibility_status_checked" tag -/// state: (devices) Checked external drive backup eligibility status -/// -/// @param externalDriveBackupEligibilityStatusChecked (devices) Checked -/// external drive backup eligibility status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupEligibilityStatusChecked: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *)externalDriveBackupEligibilityStatusChecked; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_status_changed". -/// -/// Description of the "external_drive_backup_status_changed" tag state: -/// (devices) Modified external drive backup -/// -/// @param externalDriveBackupStatusChanged (devices) Modified external drive -/// backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupStatusChanged: - (DBTEAMLOGExternalDriveBackupStatusChangedType *)externalDriveBackupStatusChanged; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_availability". -/// -/// Description of the "account_capture_change_availability" tag state: -/// (domains) Granted/revoked option to enable account capture on team domains -/// -/// @param accountCaptureChangeAvailability (domains) Granted/revoked option to -/// enable account capture on team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangeAvailability: - (DBTEAMLOGAccountCaptureChangeAvailabilityType *)accountCaptureChangeAvailability; - -/// -/// Initializes union class with tag state of "account_capture_migrate_account". -/// -/// Description of the "account_capture_migrate_account" tag state: (domains) -/// Account-captured user migrated account to team -/// -/// @param accountCaptureMigrateAccount (domains) Account-captured user migrated -/// account to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureMigrateAccount: - (DBTEAMLOGAccountCaptureMigrateAccountType *)accountCaptureMigrateAccount; - -/// -/// Initializes union class with tag state of -/// "account_capture_notification_emails_sent". -/// -/// Description of the "account_capture_notification_emails_sent" tag state: -/// (domains) Sent account capture email to all unmanaged members -/// -/// @param accountCaptureNotificationEmailsSent (domains) Sent account capture -/// email to all unmanaged members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureNotificationEmailsSent: - (DBTEAMLOGAccountCaptureNotificationEmailsSentType *)accountCaptureNotificationEmailsSent; - -/// -/// Initializes union class with tag state of -/// "account_capture_relinquish_account". -/// -/// Description of the "account_capture_relinquish_account" tag state: (domains) -/// Account-captured user changed account email to personal email -/// -/// @param accountCaptureRelinquishAccount (domains) Account-captured user -/// changed account email to personal email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureRelinquishAccount: - (DBTEAMLOGAccountCaptureRelinquishAccountType *)accountCaptureRelinquishAccount; - -/// -/// Initializes union class with tag state of "disabled_domain_invites". -/// -/// Description of the "disabled_domain_invites" tag state: (domains) Disabled -/// domain invites (deprecated, no longer logged) -/// -/// @param disabledDomainInvites (domains) Disabled domain invites (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledDomainInvites:(DBTEAMLOGDisabledDomainInvitesType *)disabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "domain_invites_approve_request_to_join_team". -/// -/// Description of the "domain_invites_approve_request_to_join_team" tag state: -/// (domains) Approved user's request to join team -/// -/// @param domainInvitesApproveRequestToJoinTeam (domains) Approved user's -/// request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesApproveRequestToJoinTeam: - (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *)domainInvitesApproveRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_decline_request_to_join_team". -/// -/// Description of the "domain_invites_decline_request_to_join_team" tag state: -/// (domains) Declined user's request to join team -/// -/// @param domainInvitesDeclineRequestToJoinTeam (domains) Declined user's -/// request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesDeclineRequestToJoinTeam: - (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *)domainInvitesDeclineRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_email_existing_users". -/// -/// Description of the "domain_invites_email_existing_users" tag state: -/// (domains) Sent domain invites to existing domain accounts (deprecated, no -/// longer logged) -/// -/// @param domainInvitesEmailExistingUsers (domains) Sent domain invites to -/// existing domain accounts (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesEmailExistingUsers: - (DBTEAMLOGDomainInvitesEmailExistingUsersType *)domainInvitesEmailExistingUsers; - -/// -/// Initializes union class with tag state of -/// "domain_invites_request_to_join_team". -/// -/// Description of the "domain_invites_request_to_join_team" tag state: -/// (domains) Requested to join team -/// -/// @param domainInvitesRequestToJoinTeam (domains) Requested to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesRequestToJoinTeam: - (DBTEAMLOGDomainInvitesRequestToJoinTeamType *)domainInvitesRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_no" tag -/// state: (domains) Disabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @param domainInvitesSetInviteNewUserPrefToNo (domains) Disabled -/// "Automatically invite new users" (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToNo: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *)domainInvitesSetInviteNewUserPrefToNo; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_yes" tag -/// state: (domains) Enabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @param domainInvitesSetInviteNewUserPrefToYes (domains) Enabled -/// "Automatically invite new users" (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToYes: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *)domainInvitesSetInviteNewUserPrefToYes; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_fail". -/// -/// Description of the "domain_verification_add_domain_fail" tag state: -/// (domains) Failed to verify team domain -/// -/// @param domainVerificationAddDomainFail (domains) Failed to verify team -/// domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainFail: - (DBTEAMLOGDomainVerificationAddDomainFailType *)domainVerificationAddDomainFail; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_success". -/// -/// Description of the "domain_verification_add_domain_success" tag state: -/// (domains) Verified team domain -/// -/// @param domainVerificationAddDomainSuccess (domains) Verified team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainSuccess: - (DBTEAMLOGDomainVerificationAddDomainSuccessType *)domainVerificationAddDomainSuccess; - -/// -/// Initializes union class with tag state of -/// "domain_verification_remove_domain". -/// -/// Description of the "domain_verification_remove_domain" tag state: (domains) -/// Removed domain from list of verified team domains -/// -/// @param domainVerificationRemoveDomain (domains) Removed domain from list of -/// verified team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationRemoveDomain: - (DBTEAMLOGDomainVerificationRemoveDomainType *)domainVerificationRemoveDomain; - -/// -/// Initializes union class with tag state of "enabled_domain_invites". -/// -/// Description of the "enabled_domain_invites" tag state: (domains) Enabled -/// domain invites (deprecated, no longer logged) -/// -/// @param enabledDomainInvites (domains) Enabled domain invites (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabledDomainInvites:(DBTEAMLOGEnabledDomainInvitesType *)enabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_cancel_key_deletion". -/// -/// Description of the "team_encryption_key_cancel_key_deletion" tag state: -/// (encryption) Canceled team encryption key deletion -/// -/// @param teamEncryptionKeyCancelKeyDeletion (encryption) Canceled team -/// encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCancelKeyDeletion: - (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *)teamEncryptionKeyCancelKeyDeletion; - -/// -/// Initializes union class with tag state of "team_encryption_key_create_key". -/// -/// Description of the "team_encryption_key_create_key" tag state: (encryption) -/// Created team encryption key -/// -/// @param teamEncryptionKeyCreateKey (encryption) Created team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCreateKey: - (DBTEAMLOGTeamEncryptionKeyCreateKeyType *)teamEncryptionKeyCreateKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_delete_key". -/// -/// Description of the "team_encryption_key_delete_key" tag state: (encryption) -/// Deleted team encryption key -/// -/// @param teamEncryptionKeyDeleteKey (encryption) Deleted team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDeleteKey: - (DBTEAMLOGTeamEncryptionKeyDeleteKeyType *)teamEncryptionKeyDeleteKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_disable_key". -/// -/// Description of the "team_encryption_key_disable_key" tag state: (encryption) -/// Disabled team encryption key -/// -/// @param teamEncryptionKeyDisableKey (encryption) Disabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDisableKey: - (DBTEAMLOGTeamEncryptionKeyDisableKeyType *)teamEncryptionKeyDisableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_enable_key". -/// -/// Description of the "team_encryption_key_enable_key" tag state: (encryption) -/// Enabled team encryption key -/// -/// @param teamEncryptionKeyEnableKey (encryption) Enabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyEnableKey: - (DBTEAMLOGTeamEncryptionKeyEnableKeyType *)teamEncryptionKeyEnableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_rotate_key". -/// -/// Description of the "team_encryption_key_rotate_key" tag state: (encryption) -/// Rotated team encryption key (deprecated, no longer logged) -/// -/// @param teamEncryptionKeyRotateKey (encryption) Rotated team encryption key -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyRotateKey: - (DBTEAMLOGTeamEncryptionKeyRotateKeyType *)teamEncryptionKeyRotateKey; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_schedule_key_deletion". -/// -/// Description of the "team_encryption_key_schedule_key_deletion" tag state: -/// (encryption) Scheduled encryption key deletion -/// -/// @param teamEncryptionKeyScheduleKeyDeletion (encryption) Scheduled -/// encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyScheduleKeyDeletion: - (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *)teamEncryptionKeyScheduleKeyDeletion; - -/// -/// Initializes union class with tag state of "apply_naming_convention". -/// -/// Description of the "apply_naming_convention" tag state: (file_operations) -/// Applied naming convention -/// -/// @param applyNamingConvention (file_operations) Applied naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApplyNamingConvention:(DBTEAMLOGApplyNamingConventionType *)applyNamingConvention; - -/// -/// Initializes union class with tag state of "create_folder". -/// -/// Description of the "create_folder" tag state: (file_operations) Created -/// folders (deprecated, no longer logged) -/// -/// @param createFolder (file_operations) Created folders (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateFolder:(DBTEAMLOGCreateFolderType *)createFolder; - -/// -/// Initializes union class with tag state of "file_add". -/// -/// Description of the "file_add" tag state: (file_operations) Added files -/// and/or folders -/// -/// @param fileAdd (file_operations) Added files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAdd:(DBTEAMLOGFileAddType *)fileAdd; - -/// -/// Initializes union class with tag state of "file_add_from_automation". -/// -/// Description of the "file_add_from_automation" tag state: (file_operations) -/// Added files and/or folders from automation -/// -/// @param fileAddFromAutomation (file_operations) Added files and/or folders -/// from automation -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddFromAutomation:(DBTEAMLOGFileAddFromAutomationType *)fileAddFromAutomation; - -/// -/// Initializes union class with tag state of "file_copy". -/// -/// Description of the "file_copy" tag state: (file_operations) Copied files -/// and/or folders -/// -/// @param fileCopy (file_operations) Copied files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCopy:(DBTEAMLOGFileCopyType *)fileCopy; - -/// -/// Initializes union class with tag state of "file_delete". -/// -/// Description of the "file_delete" tag state: (file_operations) Deleted files -/// and/or folders -/// -/// @param fileDelete (file_operations) Deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDelete:(DBTEAMLOGFileDeleteType *)fileDelete; - -/// -/// Initializes union class with tag state of "file_download". -/// -/// Description of the "file_download" tag state: (file_operations) Downloaded -/// files and/or folders -/// -/// @param fileDownload (file_operations) Downloaded files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDownload:(DBTEAMLOGFileDownloadType *)fileDownload; - -/// -/// Initializes union class with tag state of "file_edit". -/// -/// Description of the "file_edit" tag state: (file_operations) Edited files -/// -/// @param fileEdit (file_operations) Edited files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEdit:(DBTEAMLOGFileEditType *)fileEdit; - -/// -/// Initializes union class with tag state of "file_get_copy_reference". -/// -/// Description of the "file_get_copy_reference" tag state: (file_operations) -/// Created copy reference to file/folder -/// -/// @param fileGetCopyReference (file_operations) Created copy reference to -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileGetCopyReference:(DBTEAMLOGFileGetCopyReferenceType *)fileGetCopyReference; - -/// -/// Initializes union class with tag state of -/// "file_locking_lock_status_changed". -/// -/// Description of the "file_locking_lock_status_changed" tag state: -/// (file_operations) Locked/unlocked editing for a file -/// -/// @param fileLockingLockStatusChanged (file_operations) Locked/unlocked -/// editing for a file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingLockStatusChanged: - (DBTEAMLOGFileLockingLockStatusChangedType *)fileLockingLockStatusChanged; - -/// -/// Initializes union class with tag state of "file_move". -/// -/// Description of the "file_move" tag state: (file_operations) Moved files -/// and/or folders -/// -/// @param fileMove (file_operations) Moved files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMove:(DBTEAMLOGFileMoveType *)fileMove; - -/// -/// Initializes union class with tag state of "file_permanently_delete". -/// -/// Description of the "file_permanently_delete" tag state: (file_operations) -/// Permanently deleted files and/or folders -/// -/// @param filePermanentlyDelete (file_operations) Permanently deleted files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePermanentlyDelete:(DBTEAMLOGFilePermanentlyDeleteType *)filePermanentlyDelete; - -/// -/// Initializes union class with tag state of "file_preview". -/// -/// Description of the "file_preview" tag state: (file_operations) Previewed -/// files and/or folders -/// -/// @param filePreview (file_operations) Previewed files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePreview:(DBTEAMLOGFilePreviewType *)filePreview; - -/// -/// Initializes union class with tag state of "file_rename". -/// -/// Description of the "file_rename" tag state: (file_operations) Renamed files -/// and/or folders -/// -/// @param fileRename (file_operations) Renamed files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRename:(DBTEAMLOGFileRenameType *)fileRename; - -/// -/// Initializes union class with tag state of "file_restore". -/// -/// Description of the "file_restore" tag state: (file_operations) Restored -/// deleted files and/or folders -/// -/// @param fileRestore (file_operations) Restored deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRestore:(DBTEAMLOGFileRestoreType *)fileRestore; - -/// -/// Initializes union class with tag state of "file_revert". -/// -/// Description of the "file_revert" tag state: (file_operations) Reverted files -/// to previous version -/// -/// @param fileRevert (file_operations) Reverted files to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRevert:(DBTEAMLOGFileRevertType *)fileRevert; - -/// -/// Initializes union class with tag state of "file_rollback_changes". -/// -/// Description of the "file_rollback_changes" tag state: (file_operations) -/// Rolled back file actions -/// -/// @param fileRollbackChanges (file_operations) Rolled back file actions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRollbackChanges:(DBTEAMLOGFileRollbackChangesType *)fileRollbackChanges; - -/// -/// Initializes union class with tag state of "file_save_copy_reference". -/// -/// Description of the "file_save_copy_reference" tag state: (file_operations) -/// Saved file/folder using copy reference -/// -/// @param fileSaveCopyReference (file_operations) Saved file/folder using copy -/// reference -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSaveCopyReference:(DBTEAMLOGFileSaveCopyReferenceType *)fileSaveCopyReference; - -/// -/// Initializes union class with tag state of -/// "folder_overview_description_changed". -/// -/// Description of the "folder_overview_description_changed" tag state: -/// (file_operations) Updated folder overview -/// -/// @param folderOverviewDescriptionChanged (file_operations) Updated folder -/// overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewDescriptionChanged: - (DBTEAMLOGFolderOverviewDescriptionChangedType *)folderOverviewDescriptionChanged; - -/// -/// Initializes union class with tag state of "folder_overview_item_pinned". -/// -/// Description of the "folder_overview_item_pinned" tag state: -/// (file_operations) Pinned item to folder overview -/// -/// @param folderOverviewItemPinned (file_operations) Pinned item to folder -/// overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemPinned:(DBTEAMLOGFolderOverviewItemPinnedType *)folderOverviewItemPinned; - -/// -/// Initializes union class with tag state of "folder_overview_item_unpinned". -/// -/// Description of the "folder_overview_item_unpinned" tag state: -/// (file_operations) Unpinned item from folder overview -/// -/// @param folderOverviewItemUnpinned (file_operations) Unpinned item from -/// folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemUnpinned: - (DBTEAMLOGFolderOverviewItemUnpinnedType *)folderOverviewItemUnpinned; - -/// -/// Initializes union class with tag state of "object_label_added". -/// -/// Description of the "object_label_added" tag state: (file_operations) Added a -/// label -/// -/// @param objectLabelAdded (file_operations) Added a label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelAdded:(DBTEAMLOGObjectLabelAddedType *)objectLabelAdded; - -/// -/// Initializes union class with tag state of "object_label_removed". -/// -/// Description of the "object_label_removed" tag state: (file_operations) -/// Removed a label -/// -/// @param objectLabelRemoved (file_operations) Removed a label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelRemoved:(DBTEAMLOGObjectLabelRemovedType *)objectLabelRemoved; - -/// -/// Initializes union class with tag state of "object_label_updated_value". -/// -/// Description of the "object_label_updated_value" tag state: (file_operations) -/// Updated a label's value -/// -/// @param objectLabelUpdatedValue (file_operations) Updated a label's value -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelUpdatedValue:(DBTEAMLOGObjectLabelUpdatedValueType *)objectLabelUpdatedValue; - -/// -/// Initializes union class with tag state of "organize_folder_with_tidy". -/// -/// Description of the "organize_folder_with_tidy" tag state: (file_operations) -/// Organized a folder with multi-file organize -/// -/// @param organizeFolderWithTidy (file_operations) Organized a folder with -/// multi-file organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizeFolderWithTidy:(DBTEAMLOGOrganizeFolderWithTidyType *)organizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "replay_file_delete". -/// -/// Description of the "replay_file_delete" tag state: (file_operations) Deleted -/// files in Replay -/// -/// @param replayFileDelete (file_operations) Deleted files in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileDelete:(DBTEAMLOGReplayFileDeleteType *)replayFileDelete; - -/// -/// Initializes union class with tag state of "rewind_folder". -/// -/// Description of the "rewind_folder" tag state: (file_operations) Rewound a -/// folder -/// -/// @param rewindFolder (file_operations) Rewound a folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolder:(DBTEAMLOGRewindFolderType *)rewindFolder; - -/// -/// Initializes union class with tag state of "undo_naming_convention". -/// -/// Description of the "undo_naming_convention" tag state: (file_operations) -/// Reverted naming convention -/// -/// @param undoNamingConvention (file_operations) Reverted naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoNamingConvention:(DBTEAMLOGUndoNamingConventionType *)undoNamingConvention; - -/// -/// Initializes union class with tag state of "undo_organize_folder_with_tidy". -/// -/// Description of the "undo_organize_folder_with_tidy" tag state: -/// (file_operations) Removed multi-file organize -/// -/// @param undoOrganizeFolderWithTidy (file_operations) Removed multi-file -/// organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoOrganizeFolderWithTidy: - (DBTEAMLOGUndoOrganizeFolderWithTidyType *)undoOrganizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "user_tags_added". -/// -/// Description of the "user_tags_added" tag state: (file_operations) Tagged a -/// file -/// -/// @param userTagsAdded (file_operations) Tagged a file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsAdded:(DBTEAMLOGUserTagsAddedType *)userTagsAdded; - -/// -/// Initializes union class with tag state of "user_tags_removed". -/// -/// Description of the "user_tags_removed" tag state: (file_operations) Removed -/// tags -/// -/// @param userTagsRemoved (file_operations) Removed tags -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsRemoved:(DBTEAMLOGUserTagsRemovedType *)userTagsRemoved; - -/// -/// Initializes union class with tag state of "email_ingest_receive_file". -/// -/// Description of the "email_ingest_receive_file" tag state: (file_requests) -/// Received files via Email to Dropbox -/// -/// @param emailIngestReceiveFile (file_requests) Received files via Email to -/// Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestReceiveFile:(DBTEAMLOGEmailIngestReceiveFileType *)emailIngestReceiveFile; - -/// -/// Initializes union class with tag state of "file_request_change". -/// -/// Description of the "file_request_change" tag state: (file_requests) Changed -/// file request -/// -/// @param fileRequestChange (file_requests) Changed file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestChange:(DBTEAMLOGFileRequestChangeType *)fileRequestChange; - -/// -/// Initializes union class with tag state of "file_request_close". -/// -/// Description of the "file_request_close" tag state: (file_requests) Closed -/// file request -/// -/// @param fileRequestClose (file_requests) Closed file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestClose:(DBTEAMLOGFileRequestCloseType *)fileRequestClose; - -/// -/// Initializes union class with tag state of "file_request_create". -/// -/// Description of the "file_request_create" tag state: (file_requests) Created -/// file request -/// -/// @param fileRequestCreate (file_requests) Created file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCreate:(DBTEAMLOGFileRequestCreateType *)fileRequestCreate; - -/// -/// Initializes union class with tag state of "file_request_delete". -/// -/// Description of the "file_request_delete" tag state: (file_requests) Delete -/// file request -/// -/// @param fileRequestDelete (file_requests) Delete file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestDelete:(DBTEAMLOGFileRequestDeleteType *)fileRequestDelete; - -/// -/// Initializes union class with tag state of "file_request_receive_file". -/// -/// Description of the "file_request_receive_file" tag state: (file_requests) -/// Received files for file request -/// -/// @param fileRequestReceiveFile (file_requests) Received files for file -/// request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestReceiveFile:(DBTEAMLOGFileRequestReceiveFileType *)fileRequestReceiveFile; - -/// -/// Initializes union class with tag state of "group_add_external_id". -/// -/// Description of the "group_add_external_id" tag state: (groups) Added -/// external ID for group -/// -/// @param groupAddExternalId (groups) Added external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddExternalId:(DBTEAMLOGGroupAddExternalIdType *)groupAddExternalId; - -/// -/// Initializes union class with tag state of "group_add_member". -/// -/// Description of the "group_add_member" tag state: (groups) Added team members -/// to group -/// -/// @param groupAddMember (groups) Added team members to group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddMember:(DBTEAMLOGGroupAddMemberType *)groupAddMember; - -/// -/// Initializes union class with tag state of "group_change_external_id". -/// -/// Description of the "group_change_external_id" tag state: (groups) Changed -/// external ID for group -/// -/// @param groupChangeExternalId (groups) Changed external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeExternalId:(DBTEAMLOGGroupChangeExternalIdType *)groupChangeExternalId; - -/// -/// Initializes union class with tag state of "group_change_management_type". -/// -/// Description of the "group_change_management_type" tag state: (groups) -/// Changed group management type -/// -/// @param groupChangeManagementType (groups) Changed group management type -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeManagementType:(DBTEAMLOGGroupChangeManagementTypeType *)groupChangeManagementType; - -/// -/// Initializes union class with tag state of "group_change_member_role". -/// -/// Description of the "group_change_member_role" tag state: (groups) Changed -/// manager permissions of group member -/// -/// @param groupChangeMemberRole (groups) Changed manager permissions of group -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeMemberRole:(DBTEAMLOGGroupChangeMemberRoleType *)groupChangeMemberRole; - -/// -/// Initializes union class with tag state of "group_create". -/// -/// Description of the "group_create" tag state: (groups) Created group -/// -/// @param groupCreate (groups) Created group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupCreate:(DBTEAMLOGGroupCreateType *)groupCreate; - -/// -/// Initializes union class with tag state of "group_delete". -/// -/// Description of the "group_delete" tag state: (groups) Deleted group -/// -/// @param groupDelete (groups) Deleted group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDelete:(DBTEAMLOGGroupDeleteType *)groupDelete; - -/// -/// Initializes union class with tag state of "group_description_updated". -/// -/// Description of the "group_description_updated" tag state: (groups) Updated -/// group (deprecated, no longer logged) -/// -/// @param groupDescriptionUpdated (groups) Updated group (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDescriptionUpdated:(DBTEAMLOGGroupDescriptionUpdatedType *)groupDescriptionUpdated; - -/// -/// Initializes union class with tag state of "group_join_policy_updated". -/// -/// Description of the "group_join_policy_updated" tag state: (groups) Updated -/// group join policy (deprecated, no longer logged) -/// -/// @param groupJoinPolicyUpdated (groups) Updated group join policy -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupJoinPolicyUpdated:(DBTEAMLOGGroupJoinPolicyUpdatedType *)groupJoinPolicyUpdated; - -/// -/// Initializes union class with tag state of "group_moved". -/// -/// Description of the "group_moved" tag state: (groups) Moved group -/// (deprecated, no longer logged) -/// -/// @param groupMoved (groups) Moved group (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupMoved:(DBTEAMLOGGroupMovedType *)groupMoved; - -/// -/// Initializes union class with tag state of "group_remove_external_id". -/// -/// Description of the "group_remove_external_id" tag state: (groups) Removed -/// external ID for group -/// -/// @param groupRemoveExternalId (groups) Removed external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveExternalId:(DBTEAMLOGGroupRemoveExternalIdType *)groupRemoveExternalId; - -/// -/// Initializes union class with tag state of "group_remove_member". -/// -/// Description of the "group_remove_member" tag state: (groups) Removed team -/// members from group -/// -/// @param groupRemoveMember (groups) Removed team members from group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveMember:(DBTEAMLOGGroupRemoveMemberType *)groupRemoveMember; - -/// -/// Initializes union class with tag state of "group_rename". -/// -/// Description of the "group_rename" tag state: (groups) Renamed group -/// -/// @param groupRename (groups) Renamed group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRename:(DBTEAMLOGGroupRenameType *)groupRename; - -/// -/// Initializes union class with tag state of "account_lock_or_unlocked". -/// -/// Description of the "account_lock_or_unlocked" tag state: (logins) -/// Unlocked/locked account after failed sign in attempts -/// -/// @param accountLockOrUnlocked (logins) Unlocked/locked account after failed -/// sign in attempts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountLockOrUnlocked:(DBTEAMLOGAccountLockOrUnlockedType *)accountLockOrUnlocked; - -/// -/// Initializes union class with tag state of "emm_error". -/// -/// Description of the "emm_error" tag state: (logins) Failed to sign in via EMM -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @param emmError (logins) Failed to sign in via EMM (deprecated, replaced by -/// 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmError:(DBTEAMLOGEmmErrorType *)emmError; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_in_via_trusted_teams" tag state: -/// (logins) Started trusted team admin session -/// -/// @param guestAdminSignedInViaTrustedTeams (logins) Started trusted team admin -/// session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedInViaTrustedTeams: - (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *)guestAdminSignedInViaTrustedTeams; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_out_via_trusted_teams" tag state: -/// (logins) Ended trusted team admin session -/// -/// @param guestAdminSignedOutViaTrustedTeams (logins) Ended trusted team admin -/// session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedOutViaTrustedTeams: - (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *)guestAdminSignedOutViaTrustedTeams; - -/// -/// Initializes union class with tag state of "login_fail". -/// -/// Description of the "login_fail" tag state: (logins) Failed to sign in -/// -/// @param loginFail (logins) Failed to sign in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginFail:(DBTEAMLOGLoginFailType *)loginFail; - -/// -/// Initializes union class with tag state of "login_success". -/// -/// Description of the "login_success" tag state: (logins) Signed in -/// -/// @param loginSuccess (logins) Signed in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginSuccess:(DBTEAMLOGLoginSuccessType *)loginSuccess; - -/// -/// Initializes union class with tag state of "logout". -/// -/// Description of the "logout" tag state: (logins) Signed out -/// -/// @param logout (logins) Signed out -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogout:(DBTEAMLOGLogoutType *)logout; - -/// -/// Initializes union class with tag state of "reseller_support_session_end". -/// -/// Description of the "reseller_support_session_end" tag state: (logins) Ended -/// reseller support session -/// -/// @param resellerSupportSessionEnd (logins) Ended reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionEnd:(DBTEAMLOGResellerSupportSessionEndType *)resellerSupportSessionEnd; - -/// -/// Initializes union class with tag state of "reseller_support_session_start". -/// -/// Description of the "reseller_support_session_start" tag state: (logins) -/// Started reseller support session -/// -/// @param resellerSupportSessionStart (logins) Started reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionStart: - (DBTEAMLOGResellerSupportSessionStartType *)resellerSupportSessionStart; - -/// -/// Initializes union class with tag state of "sign_in_as_session_end". -/// -/// Description of the "sign_in_as_session_end" tag state: (logins) Ended admin -/// sign-in-as session -/// -/// @param signInAsSessionEnd (logins) Ended admin sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionEnd:(DBTEAMLOGSignInAsSessionEndType *)signInAsSessionEnd; - -/// -/// Initializes union class with tag state of "sign_in_as_session_start". -/// -/// Description of the "sign_in_as_session_start" tag state: (logins) Started -/// admin sign-in-as session -/// -/// @param signInAsSessionStart (logins) Started admin sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionStart:(DBTEAMLOGSignInAsSessionStartType *)signInAsSessionStart; - -/// -/// Initializes union class with tag state of "sso_error". -/// -/// Description of the "sso_error" tag state: (logins) Failed to sign in via SSO -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @param ssoError (logins) Failed to sign in via SSO (deprecated, replaced by -/// 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoError:(DBTEAMLOGSsoErrorType *)ssoError; - -/// -/// Initializes union class with tag state of "backup_admin_invitation_sent". -/// -/// Description of the "backup_admin_invitation_sent" tag state: (members) -/// Invited members to activate Backup -/// -/// @param backupAdminInvitationSent (members) Invited members to activate -/// Backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupAdminInvitationSent:(DBTEAMLOGBackupAdminInvitationSentType *)backupAdminInvitationSent; - -/// -/// Initializes union class with tag state of "backup_invitation_opened". -/// -/// Description of the "backup_invitation_opened" tag state: (members) Opened -/// Backup invite -/// -/// @param backupInvitationOpened (members) Opened Backup invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupInvitationOpened:(DBTEAMLOGBackupInvitationOpenedType *)backupInvitationOpened; - -/// -/// Initializes union class with tag state of "create_team_invite_link". -/// -/// Description of the "create_team_invite_link" tag state: (members) Created -/// team invite link -/// -/// @param createTeamInviteLink (members) Created team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateTeamInviteLink:(DBTEAMLOGCreateTeamInviteLinkType *)createTeamInviteLink; - -/// -/// Initializes union class with tag state of "delete_team_invite_link". -/// -/// Description of the "delete_team_invite_link" tag state: (members) Deleted -/// team invite link -/// -/// @param deleteTeamInviteLink (members) Deleted team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteTeamInviteLink:(DBTEAMLOGDeleteTeamInviteLinkType *)deleteTeamInviteLink; - -/// -/// Initializes union class with tag state of "member_add_external_id". -/// -/// Description of the "member_add_external_id" tag state: (members) Added an -/// external ID for team member -/// -/// @param memberAddExternalId (members) Added an external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddExternalId:(DBTEAMLOGMemberAddExternalIdType *)memberAddExternalId; - -/// -/// Initializes union class with tag state of "member_add_name". -/// -/// Description of the "member_add_name" tag state: (members) Added team member -/// name -/// -/// @param memberAddName (members) Added team member name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddName:(DBTEAMLOGMemberAddNameType *)memberAddName; - -/// -/// Initializes union class with tag state of "member_change_admin_role". -/// -/// Description of the "member_change_admin_role" tag state: (members) Changed -/// team member admin role -/// -/// @param memberChangeAdminRole (members) Changed team member admin role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeAdminRole:(DBTEAMLOGMemberChangeAdminRoleType *)memberChangeAdminRole; - -/// -/// Initializes union class with tag state of "member_change_email". -/// -/// Description of the "member_change_email" tag state: (members) Changed team -/// member email -/// -/// @param memberChangeEmail (members) Changed team member email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeEmail:(DBTEAMLOGMemberChangeEmailType *)memberChangeEmail; - -/// -/// Initializes union class with tag state of "member_change_external_id". -/// -/// Description of the "member_change_external_id" tag state: (members) Changed -/// the external ID for team member -/// -/// @param memberChangeExternalId (members) Changed the external ID for team -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeExternalId:(DBTEAMLOGMemberChangeExternalIdType *)memberChangeExternalId; - -/// -/// Initializes union class with tag state of "member_change_membership_type". -/// -/// Description of the "member_change_membership_type" tag state: (members) -/// Changed membership type (limited/full) of member (deprecated, no longer -/// logged) -/// -/// @param memberChangeMembershipType (members) Changed membership type -/// (limited/full) of member (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeMembershipType: - (DBTEAMLOGMemberChangeMembershipTypeType *)memberChangeMembershipType; - -/// -/// Initializes union class with tag state of "member_change_name". -/// -/// Description of the "member_change_name" tag state: (members) Changed team -/// member name -/// -/// @param memberChangeName (members) Changed team member name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeName:(DBTEAMLOGMemberChangeNameType *)memberChangeName; - -/// -/// Initializes union class with tag state of "member_change_reseller_role". -/// -/// Description of the "member_change_reseller_role" tag state: (members) -/// Changed team member reseller role -/// -/// @param memberChangeResellerRole (members) Changed team member reseller role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeResellerRole:(DBTEAMLOGMemberChangeResellerRoleType *)memberChangeResellerRole; - -/// -/// Initializes union class with tag state of "member_change_status". -/// -/// Description of the "member_change_status" tag state: (members) Changed -/// member status (invited, joined, suspended, etc.) -/// -/// @param memberChangeStatus (members) Changed member status (invited, joined, -/// suspended, etc.) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeStatus:(DBTEAMLOGMemberChangeStatusType *)memberChangeStatus; - -/// -/// Initializes union class with tag state of "member_delete_manual_contacts". -/// -/// Description of the "member_delete_manual_contacts" tag state: (members) -/// Cleared manually added contacts -/// -/// @param memberDeleteManualContacts (members) Cleared manually added contacts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteManualContacts: - (DBTEAMLOGMemberDeleteManualContactsType *)memberDeleteManualContacts; - -/// -/// Initializes union class with tag state of "member_delete_profile_photo". -/// -/// Description of the "member_delete_profile_photo" tag state: (members) -/// Deleted team member profile photo -/// -/// @param memberDeleteProfilePhoto (members) Deleted team member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteProfilePhoto:(DBTEAMLOGMemberDeleteProfilePhotoType *)memberDeleteProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_permanently_delete_account_contents". -/// -/// Description of the "member_permanently_delete_account_contents" tag state: -/// (members) Permanently deleted contents of deleted team member account -/// -/// @param memberPermanentlyDeleteAccountContents (members) Permanently deleted -/// contents of deleted team member account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberPermanentlyDeleteAccountContents: - (DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *)memberPermanentlyDeleteAccountContents; - -/// -/// Initializes union class with tag state of "member_remove_external_id". -/// -/// Description of the "member_remove_external_id" tag state: (members) Removed -/// the external ID for team member -/// -/// @param memberRemoveExternalId (members) Removed the external ID for team -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRemoveExternalId:(DBTEAMLOGMemberRemoveExternalIdType *)memberRemoveExternalId; - -/// -/// Initializes union class with tag state of "member_set_profile_photo". -/// -/// Description of the "member_set_profile_photo" tag state: (members) Set team -/// member profile photo -/// -/// @param memberSetProfilePhoto (members) Set team member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSetProfilePhoto:(DBTEAMLOGMemberSetProfilePhotoType *)memberSetProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_custom_quota". -/// -/// Description of the "member_space_limits_add_custom_quota" tag state: -/// (members) Set custom member space limit -/// -/// @param memberSpaceLimitsAddCustomQuota (members) Set custom member space -/// limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddCustomQuota: - (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *)memberSpaceLimitsAddCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_custom_quota". -/// -/// Description of the "member_space_limits_change_custom_quota" tag state: -/// (members) Changed custom member space limit -/// -/// @param memberSpaceLimitsChangeCustomQuota (members) Changed custom member -/// space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCustomQuota: - (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *)memberSpaceLimitsChangeCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_status". -/// -/// Description of the "member_space_limits_change_status" tag state: (members) -/// Changed space limit status -/// -/// @param memberSpaceLimitsChangeStatus (members) Changed space limit status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeStatus: - (DBTEAMLOGMemberSpaceLimitsChangeStatusType *)memberSpaceLimitsChangeStatus; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_custom_quota". -/// -/// Description of the "member_space_limits_remove_custom_quota" tag state: -/// (members) Removed custom member space limit -/// -/// @param memberSpaceLimitsRemoveCustomQuota (members) Removed custom member -/// space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveCustomQuota: - (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *)memberSpaceLimitsRemoveCustomQuota; - -/// -/// Initializes union class with tag state of "member_suggest". -/// -/// Description of the "member_suggest" tag state: (members) Suggested person to -/// add to team -/// -/// @param memberSuggest (members) Suggested person to add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggest:(DBTEAMLOGMemberSuggestType *)memberSuggest; - -/// -/// Initializes union class with tag state of -/// "member_transfer_account_contents". -/// -/// Description of the "member_transfer_account_contents" tag state: (members) -/// Transferred contents of deleted member account to another member -/// -/// @param memberTransferAccountContents (members) Transferred contents of -/// deleted member account to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberTransferAccountContents: - (DBTEAMLOGMemberTransferAccountContentsType *)memberTransferAccountContents; - -/// -/// Initializes union class with tag state of "pending_secondary_email_added". -/// -/// Description of the "pending_secondary_email_added" tag state: (members) -/// Added pending secondary email -/// -/// @param pendingSecondaryEmailAdded (members) Added pending secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPendingSecondaryEmailAdded: - (DBTEAMLOGPendingSecondaryEmailAddedType *)pendingSecondaryEmailAdded; - -/// -/// Initializes union class with tag state of "secondary_email_deleted". -/// -/// Description of the "secondary_email_deleted" tag state: (members) Deleted -/// secondary email -/// -/// @param secondaryEmailDeleted (members) Deleted secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailDeleted:(DBTEAMLOGSecondaryEmailDeletedType *)secondaryEmailDeleted; - -/// -/// Initializes union class with tag state of "secondary_email_verified". -/// -/// Description of the "secondary_email_verified" tag state: (members) Verified -/// secondary email -/// -/// @param secondaryEmailVerified (members) Verified secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailVerified:(DBTEAMLOGSecondaryEmailVerifiedType *)secondaryEmailVerified; - -/// -/// Initializes union class with tag state of "secondary_mails_policy_changed". -/// -/// Description of the "secondary_mails_policy_changed" tag state: (members) -/// Secondary mails policy changed -/// -/// @param secondaryMailsPolicyChanged (members) Secondary mails policy changed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryMailsPolicyChanged: - (DBTEAMLOGSecondaryMailsPolicyChangedType *)secondaryMailsPolicyChanged; - -/// -/// Initializes union class with tag state of "binder_add_page". -/// -/// Description of the "binder_add_page" tag state: (paper) Added Binder page -/// (deprecated, replaced by 'Edited files') -/// -/// @param binderAddPage (paper) Added Binder page (deprecated, replaced by -/// 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddPage:(DBTEAMLOGBinderAddPageType *)binderAddPage; - -/// -/// Initializes union class with tag state of "binder_add_section". -/// -/// Description of the "binder_add_section" tag state: (paper) Added Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @param binderAddSection (paper) Added Binder section (deprecated, replaced -/// by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddSection:(DBTEAMLOGBinderAddSectionType *)binderAddSection; - -/// -/// Initializes union class with tag state of "binder_remove_page". -/// -/// Description of the "binder_remove_page" tag state: (paper) Removed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @param binderRemovePage (paper) Removed Binder page (deprecated, replaced by -/// 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemovePage:(DBTEAMLOGBinderRemovePageType *)binderRemovePage; - -/// -/// Initializes union class with tag state of "binder_remove_section". -/// -/// Description of the "binder_remove_section" tag state: (paper) Removed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @param binderRemoveSection (paper) Removed Binder section (deprecated, -/// replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemoveSection:(DBTEAMLOGBinderRemoveSectionType *)binderRemoveSection; - -/// -/// Initializes union class with tag state of "binder_rename_page". -/// -/// Description of the "binder_rename_page" tag state: (paper) Renamed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @param binderRenamePage (paper) Renamed Binder page (deprecated, replaced by -/// 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenamePage:(DBTEAMLOGBinderRenamePageType *)binderRenamePage; - -/// -/// Initializes union class with tag state of "binder_rename_section". -/// -/// Description of the "binder_rename_section" tag state: (paper) Renamed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @param binderRenameSection (paper) Renamed Binder section (deprecated, -/// replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenameSection:(DBTEAMLOGBinderRenameSectionType *)binderRenameSection; - -/// -/// Initializes union class with tag state of "binder_reorder_page". -/// -/// Description of the "binder_reorder_page" tag state: (paper) Reordered Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @param binderReorderPage (paper) Reordered Binder page (deprecated, replaced -/// by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderPage:(DBTEAMLOGBinderReorderPageType *)binderReorderPage; - -/// -/// Initializes union class with tag state of "binder_reorder_section". -/// -/// Description of the "binder_reorder_section" tag state: (paper) Reordered -/// Binder section (deprecated, replaced by 'Edited files') -/// -/// @param binderReorderSection (paper) Reordered Binder section (deprecated, -/// replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderSection:(DBTEAMLOGBinderReorderSectionType *)binderReorderSection; - -/// -/// Initializes union class with tag state of "paper_content_add_member". -/// -/// Description of the "paper_content_add_member" tag state: (paper) Added users -/// and/or groups to Paper doc/folder -/// -/// @param paperContentAddMember (paper) Added users and/or groups to Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddMember:(DBTEAMLOGPaperContentAddMemberType *)paperContentAddMember; - -/// -/// Initializes union class with tag state of "paper_content_add_to_folder". -/// -/// Description of the "paper_content_add_to_folder" tag state: (paper) Added -/// Paper doc/folder to folder -/// -/// @param paperContentAddToFolder (paper) Added Paper doc/folder to folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddToFolder:(DBTEAMLOGPaperContentAddToFolderType *)paperContentAddToFolder; - -/// -/// Initializes union class with tag state of "paper_content_archive". -/// -/// Description of the "paper_content_archive" tag state: (paper) Archived Paper -/// doc/folder -/// -/// @param paperContentArchive (paper) Archived Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentArchive:(DBTEAMLOGPaperContentArchiveType *)paperContentArchive; - -/// -/// Initializes union class with tag state of "paper_content_create". -/// -/// Description of the "paper_content_create" tag state: (paper) Created Paper -/// doc/folder -/// -/// @param paperContentCreate (paper) Created Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentCreate:(DBTEAMLOGPaperContentCreateType *)paperContentCreate; - -/// -/// Initializes union class with tag state of -/// "paper_content_permanently_delete". -/// -/// Description of the "paper_content_permanently_delete" tag state: (paper) -/// Permanently deleted Paper doc/folder -/// -/// @param paperContentPermanentlyDelete (paper) Permanently deleted Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentPermanentlyDelete: - (DBTEAMLOGPaperContentPermanentlyDeleteType *)paperContentPermanentlyDelete; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_from_folder". -/// -/// Description of the "paper_content_remove_from_folder" tag state: (paper) -/// Removed Paper doc/folder from folder -/// -/// @param paperContentRemoveFromFolder (paper) Removed Paper doc/folder from -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveFromFolder: - (DBTEAMLOGPaperContentRemoveFromFolderType *)paperContentRemoveFromFolder; - -/// -/// Initializes union class with tag state of "paper_content_remove_member". -/// -/// Description of the "paper_content_remove_member" tag state: (paper) Removed -/// users and/or groups from Paper doc/folder -/// -/// @param paperContentRemoveMember (paper) Removed users and/or groups from -/// Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveMember:(DBTEAMLOGPaperContentRemoveMemberType *)paperContentRemoveMember; - -/// -/// Initializes union class with tag state of "paper_content_rename". -/// -/// Description of the "paper_content_rename" tag state: (paper) Renamed Paper -/// doc/folder -/// -/// @param paperContentRename (paper) Renamed Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRename:(DBTEAMLOGPaperContentRenameType *)paperContentRename; - -/// -/// Initializes union class with tag state of "paper_content_restore". -/// -/// Description of the "paper_content_restore" tag state: (paper) Restored -/// archived Paper doc/folder -/// -/// @param paperContentRestore (paper) Restored archived Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRestore:(DBTEAMLOGPaperContentRestoreType *)paperContentRestore; - -/// -/// Initializes union class with tag state of "paper_doc_add_comment". -/// -/// Description of the "paper_doc_add_comment" tag state: (paper) Added Paper -/// doc comment -/// -/// @param paperDocAddComment (paper) Added Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocAddComment:(DBTEAMLOGPaperDocAddCommentType *)paperDocAddComment; - -/// -/// Initializes union class with tag state of "paper_doc_change_member_role". -/// -/// Description of the "paper_doc_change_member_role" tag state: (paper) Changed -/// member permissions for Paper doc -/// -/// @param paperDocChangeMemberRole (paper) Changed member permissions for Paper -/// doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeMemberRole:(DBTEAMLOGPaperDocChangeMemberRoleType *)paperDocChangeMemberRole; - -/// -/// Initializes union class with tag state of "paper_doc_change_sharing_policy". -/// -/// Description of the "paper_doc_change_sharing_policy" tag state: (paper) -/// Changed sharing setting for Paper doc -/// -/// @param paperDocChangeSharingPolicy (paper) Changed sharing setting for Paper -/// doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSharingPolicy: - (DBTEAMLOGPaperDocChangeSharingPolicyType *)paperDocChangeSharingPolicy; - -/// -/// Initializes union class with tag state of "paper_doc_change_subscription". -/// -/// Description of the "paper_doc_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper doc -/// -/// @param paperDocChangeSubscription (paper) Followed/unfollowed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSubscription: - (DBTEAMLOGPaperDocChangeSubscriptionType *)paperDocChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_doc_deleted". -/// -/// Description of the "paper_doc_deleted" tag state: (paper) Archived Paper doc -/// (deprecated, no longer logged) -/// -/// @param paperDocDeleted (paper) Archived Paper doc (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleted:(DBTEAMLOGPaperDocDeletedType *)paperDocDeleted; - -/// -/// Initializes union class with tag state of "paper_doc_delete_comment". -/// -/// Description of the "paper_doc_delete_comment" tag state: (paper) Deleted -/// Paper doc comment -/// -/// @param paperDocDeleteComment (paper) Deleted Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleteComment:(DBTEAMLOGPaperDocDeleteCommentType *)paperDocDeleteComment; - -/// -/// Initializes union class with tag state of "paper_doc_download". -/// -/// Description of the "paper_doc_download" tag state: (paper) Downloaded Paper -/// doc in specific format -/// -/// @param paperDocDownload (paper) Downloaded Paper doc in specific format -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDownload:(DBTEAMLOGPaperDocDownloadType *)paperDocDownload; - -/// -/// Initializes union class with tag state of "paper_doc_edit". -/// -/// Description of the "paper_doc_edit" tag state: (paper) Edited Paper doc -/// -/// @param paperDocEdit (paper) Edited Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEdit:(DBTEAMLOGPaperDocEditType *)paperDocEdit; - -/// -/// Initializes union class with tag state of "paper_doc_edit_comment". -/// -/// Description of the "paper_doc_edit_comment" tag state: (paper) Edited Paper -/// doc comment -/// -/// @param paperDocEditComment (paper) Edited Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditComment:(DBTEAMLOGPaperDocEditCommentType *)paperDocEditComment; - -/// -/// Initializes union class with tag state of "paper_doc_followed". -/// -/// Description of the "paper_doc_followed" tag state: (paper) Followed Paper -/// doc (deprecated, replaced by 'Followed/unfollowed Paper doc') -/// -/// @param paperDocFollowed (paper) Followed Paper doc (deprecated, replaced by -/// 'Followed/unfollowed Paper doc') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocFollowed:(DBTEAMLOGPaperDocFollowedType *)paperDocFollowed; - -/// -/// Initializes union class with tag state of "paper_doc_mention". -/// -/// Description of the "paper_doc_mention" tag state: (paper) Mentioned user in -/// Paper doc -/// -/// @param paperDocMention (paper) Mentioned user in Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocMention:(DBTEAMLOGPaperDocMentionType *)paperDocMention; - -/// -/// Initializes union class with tag state of "paper_doc_ownership_changed". -/// -/// Description of the "paper_doc_ownership_changed" tag state: (paper) -/// Transferred ownership of Paper doc -/// -/// @param paperDocOwnershipChanged (paper) Transferred ownership of Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocOwnershipChanged:(DBTEAMLOGPaperDocOwnershipChangedType *)paperDocOwnershipChanged; - -/// -/// Initializes union class with tag state of "paper_doc_request_access". -/// -/// Description of the "paper_doc_request_access" tag state: (paper) Requested -/// access to Paper doc -/// -/// @param paperDocRequestAccess (paper) Requested access to Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRequestAccess:(DBTEAMLOGPaperDocRequestAccessType *)paperDocRequestAccess; - -/// -/// Initializes union class with tag state of "paper_doc_resolve_comment". -/// -/// Description of the "paper_doc_resolve_comment" tag state: (paper) Resolved -/// Paper doc comment -/// -/// @param paperDocResolveComment (paper) Resolved Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocResolveComment:(DBTEAMLOGPaperDocResolveCommentType *)paperDocResolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_revert". -/// -/// Description of the "paper_doc_revert" tag state: (paper) Restored Paper doc -/// to previous version -/// -/// @param paperDocRevert (paper) Restored Paper doc to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRevert:(DBTEAMLOGPaperDocRevertType *)paperDocRevert; - -/// -/// Initializes union class with tag state of "paper_doc_slack_share". -/// -/// Description of the "paper_doc_slack_share" tag state: (paper) Shared Paper -/// doc via Slack -/// -/// @param paperDocSlackShare (paper) Shared Paper doc via Slack -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocSlackShare:(DBTEAMLOGPaperDocSlackShareType *)paperDocSlackShare; - -/// -/// Initializes union class with tag state of "paper_doc_team_invite". -/// -/// Description of the "paper_doc_team_invite" tag state: (paper) Shared Paper -/// doc with users and/or groups (deprecated, no longer logged) -/// -/// @param paperDocTeamInvite (paper) Shared Paper doc with users and/or groups -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTeamInvite:(DBTEAMLOGPaperDocTeamInviteType *)paperDocTeamInvite; - -/// -/// Initializes union class with tag state of "paper_doc_trashed". -/// -/// Description of the "paper_doc_trashed" tag state: (paper) Deleted Paper doc -/// -/// @param paperDocTrashed (paper) Deleted Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTrashed:(DBTEAMLOGPaperDocTrashedType *)paperDocTrashed; - -/// -/// Initializes union class with tag state of "paper_doc_unresolve_comment". -/// -/// Description of the "paper_doc_unresolve_comment" tag state: (paper) -/// Unresolved Paper doc comment -/// -/// @param paperDocUnresolveComment (paper) Unresolved Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUnresolveComment:(DBTEAMLOGPaperDocUnresolveCommentType *)paperDocUnresolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_untrashed". -/// -/// Description of the "paper_doc_untrashed" tag state: (paper) Restored Paper -/// doc -/// -/// @param paperDocUntrashed (paper) Restored Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUntrashed:(DBTEAMLOGPaperDocUntrashedType *)paperDocUntrashed; - -/// -/// Initializes union class with tag state of "paper_doc_view". -/// -/// Description of the "paper_doc_view" tag state: (paper) Viewed Paper doc -/// -/// @param paperDocView (paper) Viewed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocView:(DBTEAMLOGPaperDocViewType *)paperDocView; - -/// -/// Initializes union class with tag state of "paper_external_view_allow". -/// -/// Description of the "paper_external_view_allow" tag state: (paper) Changed -/// Paper external sharing setting to anyone (deprecated, no longer logged) -/// -/// @param paperExternalViewAllow (paper) Changed Paper external sharing setting -/// to anyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewAllow:(DBTEAMLOGPaperExternalViewAllowType *)paperExternalViewAllow; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_default_team". -/// -/// Description of the "paper_external_view_default_team" tag state: (paper) -/// Changed Paper external sharing setting to default team (deprecated, no -/// longer logged) -/// -/// @param paperExternalViewDefaultTeam (paper) Changed Paper external sharing -/// setting to default team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewDefaultTeam: - (DBTEAMLOGPaperExternalViewDefaultTeamType *)paperExternalViewDefaultTeam; - -/// -/// Initializes union class with tag state of "paper_external_view_forbid". -/// -/// Description of the "paper_external_view_forbid" tag state: (paper) Changed -/// Paper external sharing setting to team-only (deprecated, no longer logged) -/// -/// @param paperExternalViewForbid (paper) Changed Paper external sharing -/// setting to team-only (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewForbid:(DBTEAMLOGPaperExternalViewForbidType *)paperExternalViewForbid; - -/// -/// Initializes union class with tag state of -/// "paper_folder_change_subscription". -/// -/// Description of the "paper_folder_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper folder -/// -/// @param paperFolderChangeSubscription (paper) Followed/unfollowed Paper -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderChangeSubscription: - (DBTEAMLOGPaperFolderChangeSubscriptionType *)paperFolderChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_folder_deleted". -/// -/// Description of the "paper_folder_deleted" tag state: (paper) Archived Paper -/// folder (deprecated, no longer logged) -/// -/// @param paperFolderDeleted (paper) Archived Paper folder (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderDeleted:(DBTEAMLOGPaperFolderDeletedType *)paperFolderDeleted; - -/// -/// Initializes union class with tag state of "paper_folder_followed". -/// -/// Description of the "paper_folder_followed" tag state: (paper) Followed Paper -/// folder (deprecated, replaced by 'Followed/unfollowed Paper folder') -/// -/// @param paperFolderFollowed (paper) Followed Paper folder (deprecated, -/// replaced by 'Followed/unfollowed Paper folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderFollowed:(DBTEAMLOGPaperFolderFollowedType *)paperFolderFollowed; - -/// -/// Initializes union class with tag state of "paper_folder_team_invite". -/// -/// Description of the "paper_folder_team_invite" tag state: (paper) Shared -/// Paper folder with users and/or groups (deprecated, no longer logged) -/// -/// @param paperFolderTeamInvite (paper) Shared Paper folder with users and/or -/// groups (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderTeamInvite:(DBTEAMLOGPaperFolderTeamInviteType *)paperFolderTeamInvite; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_change_permission". -/// -/// Description of the "paper_published_link_change_permission" tag state: -/// (paper) Changed permissions for published doc -/// -/// @param paperPublishedLinkChangePermission (paper) Changed permissions for -/// published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkChangePermission: - (DBTEAMLOGPaperPublishedLinkChangePermissionType *)paperPublishedLinkChangePermission; - -/// -/// Initializes union class with tag state of "paper_published_link_create". -/// -/// Description of the "paper_published_link_create" tag state: (paper) -/// Published doc -/// -/// @param paperPublishedLinkCreate (paper) Published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkCreate:(DBTEAMLOGPaperPublishedLinkCreateType *)paperPublishedLinkCreate; - -/// -/// Initializes union class with tag state of "paper_published_link_disabled". -/// -/// Description of the "paper_published_link_disabled" tag state: (paper) -/// Unpublished doc -/// -/// @param paperPublishedLinkDisabled (paper) Unpublished doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkDisabled: - (DBTEAMLOGPaperPublishedLinkDisabledType *)paperPublishedLinkDisabled; - -/// -/// Initializes union class with tag state of "paper_published_link_view". -/// -/// Description of the "paper_published_link_view" tag state: (paper) Viewed -/// published doc -/// -/// @param paperPublishedLinkView (paper) Viewed published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkView:(DBTEAMLOGPaperPublishedLinkViewType *)paperPublishedLinkView; - -/// -/// Initializes union class with tag state of "password_change". -/// -/// Description of the "password_change" tag state: (passwords) Changed password -/// -/// @param passwordChange (passwords) Changed password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordChange:(DBTEAMLOGPasswordChangeType *)passwordChange; - -/// -/// Initializes union class with tag state of "password_reset". -/// -/// Description of the "password_reset" tag state: (passwords) Reset password -/// -/// @param passwordReset (passwords) Reset password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordReset:(DBTEAMLOGPasswordResetType *)passwordReset; - -/// -/// Initializes union class with tag state of "password_reset_all". -/// -/// Description of the "password_reset_all" tag state: (passwords) Reset all -/// team member passwords -/// -/// @param passwordResetAll (passwords) Reset all team member passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetAll:(DBTEAMLOGPasswordResetAllType *)passwordResetAll; - -/// -/// Initializes union class with tag state of "classification_create_report". -/// -/// Description of the "classification_create_report" tag state: (reports) -/// Created Classification report -/// -/// @param classificationCreateReport (reports) Created Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReport: - (DBTEAMLOGClassificationCreateReportType *)classificationCreateReport; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_fail". -/// -/// Description of the "classification_create_report_fail" tag state: (reports) -/// Couldn't create Classification report -/// -/// @param classificationCreateReportFail (reports) Couldn't create -/// Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportFail: - (DBTEAMLOGClassificationCreateReportFailType *)classificationCreateReportFail; - -/// -/// Initializes union class with tag state of "emm_create_exceptions_report". -/// -/// Description of the "emm_create_exceptions_report" tag state: (reports) -/// Created EMM-excluded users report -/// -/// @param emmCreateExceptionsReport (reports) Created EMM-excluded users report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateExceptionsReport:(DBTEAMLOGEmmCreateExceptionsReportType *)emmCreateExceptionsReport; - -/// -/// Initializes union class with tag state of "emm_create_usage_report". -/// -/// Description of the "emm_create_usage_report" tag state: (reports) Created -/// EMM mobile app usage report -/// -/// @param emmCreateUsageReport (reports) Created EMM mobile app usage report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateUsageReport:(DBTEAMLOGEmmCreateUsageReportType *)emmCreateUsageReport; - -/// -/// Initializes union class with tag state of "export_members_report". -/// -/// Description of the "export_members_report" tag state: (reports) Created -/// member data report -/// -/// @param exportMembersReport (reports) Created member data report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReport:(DBTEAMLOGExportMembersReportType *)exportMembersReport; - -/// -/// Initializes union class with tag state of "export_members_report_fail". -/// -/// Description of the "export_members_report_fail" tag state: (reports) Failed -/// to create members data report -/// -/// @param exportMembersReportFail (reports) Failed to create members data -/// report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportFail:(DBTEAMLOGExportMembersReportFailType *)exportMembersReportFail; - -/// -/// Initializes union class with tag state of "external_sharing_create_report". -/// -/// Description of the "external_sharing_create_report" tag state: (reports) -/// Created External sharing report -/// -/// @param externalSharingCreateReport (reports) Created External sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingCreateReport: - (DBTEAMLOGExternalSharingCreateReportType *)externalSharingCreateReport; - -/// -/// Initializes union class with tag state of "external_sharing_report_failed". -/// -/// Description of the "external_sharing_report_failed" tag state: (reports) -/// Couldn't create External sharing report -/// -/// @param externalSharingReportFailed (reports) Couldn't create External -/// sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingReportFailed: - (DBTEAMLOGExternalSharingReportFailedType *)externalSharingReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_create_report". -/// -/// Description of the "no_expiration_link_gen_create_report" tag state: -/// (reports) Report created: Links created with no expiration -/// -/// @param noExpirationLinkGenCreateReport (reports) Report created: Links -/// created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenCreateReport: - (DBTEAMLOGNoExpirationLinkGenCreateReportType *)noExpirationLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_report_failed". -/// -/// Description of the "no_expiration_link_gen_report_failed" tag state: -/// (reports) Couldn't create report: Links created with no expiration -/// -/// @param noExpirationLinkGenReportFailed (reports) Couldn't create report: -/// Links created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenReportFailed: - (DBTEAMLOGNoExpirationLinkGenReportFailedType *)noExpirationLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_create_report". -/// -/// Description of the "no_password_link_gen_create_report" tag state: (reports) -/// Report created: Links created without passwords -/// -/// @param noPasswordLinkGenCreateReport (reports) Report created: Links created -/// without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenCreateReport: - (DBTEAMLOGNoPasswordLinkGenCreateReportType *)noPasswordLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_report_failed". -/// -/// Description of the "no_password_link_gen_report_failed" tag state: (reports) -/// Couldn't create report: Links created without passwords -/// -/// @param noPasswordLinkGenReportFailed (reports) Couldn't create report: Links -/// created without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenReportFailed: - (DBTEAMLOGNoPasswordLinkGenReportFailedType *)noPasswordLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_create_report". -/// -/// Description of the "no_password_link_view_create_report" tag state: -/// (reports) Report created: Views of links without passwords -/// -/// @param noPasswordLinkViewCreateReport (reports) Report created: Views of -/// links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewCreateReport: - (DBTEAMLOGNoPasswordLinkViewCreateReportType *)noPasswordLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_report_failed". -/// -/// Description of the "no_password_link_view_report_failed" tag state: -/// (reports) Couldn't create report: Views of links without passwords -/// -/// @param noPasswordLinkViewReportFailed (reports) Couldn't create report: -/// Views of links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewReportFailed: - (DBTEAMLOGNoPasswordLinkViewReportFailedType *)noPasswordLinkViewReportFailed; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_create_report". -/// -/// Description of the "outdated_link_view_create_report" tag state: (reports) -/// Report created: Views of old links -/// -/// @param outdatedLinkViewCreateReport (reports) Report created: Views of old -/// links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewCreateReport: - (DBTEAMLOGOutdatedLinkViewCreateReportType *)outdatedLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_report_failed". -/// -/// Description of the "outdated_link_view_report_failed" tag state: (reports) -/// Couldn't create report: Views of old links -/// -/// @param outdatedLinkViewReportFailed (reports) Couldn't create report: Views -/// of old links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewReportFailed: - (DBTEAMLOGOutdatedLinkViewReportFailedType *)outdatedLinkViewReportFailed; - -/// -/// Initializes union class with tag state of "paper_admin_export_start". -/// -/// Description of the "paper_admin_export_start" tag state: (reports) Exported -/// all team Paper docs -/// -/// @param paperAdminExportStart (reports) Exported all team Paper docs -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAdminExportStart:(DBTEAMLOGPaperAdminExportStartType *)paperAdminExportStart; - -/// -/// Initializes union class with tag state of "ransomware_alert_create_report". -/// -/// Description of the "ransomware_alert_create_report" tag state: (reports) -/// Created ransomware report -/// -/// @param ransomwareAlertCreateReport (reports) Created ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReport: - (DBTEAMLOGRansomwareAlertCreateReportType *)ransomwareAlertCreateReport; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_failed". -/// -/// Description of the "ransomware_alert_create_report_failed" tag state: -/// (reports) Couldn't generate ransomware report -/// -/// @param ransomwareAlertCreateReportFailed (reports) Couldn't generate -/// ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportFailed: - (DBTEAMLOGRansomwareAlertCreateReportFailedType *)ransomwareAlertCreateReportFailed; - -/// -/// Initializes union class with tag state of -/// "smart_sync_create_admin_privilege_report". -/// -/// Description of the "smart_sync_create_admin_privilege_report" tag state: -/// (reports) Created Smart Sync non-admin devices report -/// -/// @param smartSyncCreateAdminPrivilegeReport (reports) Created Smart Sync -/// non-admin devices report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncCreateAdminPrivilegeReport: - (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *)smartSyncCreateAdminPrivilegeReport; - -/// -/// Initializes union class with tag state of "team_activity_create_report". -/// -/// Description of the "team_activity_create_report" tag state: (reports) -/// Created team activity report -/// -/// @param teamActivityCreateReport (reports) Created team activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReport:(DBTEAMLOGTeamActivityCreateReportType *)teamActivityCreateReport; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_fail". -/// -/// Description of the "team_activity_create_report_fail" tag state: (reports) -/// Couldn't generate team activity report -/// -/// @param teamActivityCreateReportFail (reports) Couldn't generate team -/// activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportFail: - (DBTEAMLOGTeamActivityCreateReportFailType *)teamActivityCreateReportFail; - -/// -/// Initializes union class with tag state of "collection_share". -/// -/// Description of the "collection_share" tag state: (sharing) Shared album -/// -/// @param collectionShare (sharing) Shared album -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCollectionShare:(DBTEAMLOGCollectionShareType *)collectionShare; - -/// -/// Initializes union class with tag state of "file_transfers_file_add". -/// -/// Description of the "file_transfers_file_add" tag state: (sharing) Transfer -/// files added -/// -/// @param fileTransfersFileAdd (sharing) Transfer files added -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersFileAdd:(DBTEAMLOGFileTransfersFileAddType *)fileTransfersFileAdd; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_delete". -/// -/// Description of the "file_transfers_transfer_delete" tag state: (sharing) -/// Deleted transfer -/// -/// @param fileTransfersTransferDelete (sharing) Deleted transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDelete: - (DBTEAMLOGFileTransfersTransferDeleteType *)fileTransfersTransferDelete; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_download". -/// -/// Description of the "file_transfers_transfer_download" tag state: (sharing) -/// Transfer downloaded -/// -/// @param fileTransfersTransferDownload (sharing) Transfer downloaded -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDownload: - (DBTEAMLOGFileTransfersTransferDownloadType *)fileTransfersTransferDownload; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_send". -/// -/// Description of the "file_transfers_transfer_send" tag state: (sharing) Sent -/// transfer -/// -/// @param fileTransfersTransferSend (sharing) Sent transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferSend:(DBTEAMLOGFileTransfersTransferSendType *)fileTransfersTransferSend; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_view". -/// -/// Description of the "file_transfers_transfer_view" tag state: (sharing) -/// Viewed transfer -/// -/// @param fileTransfersTransferView (sharing) Viewed transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferView:(DBTEAMLOGFileTransfersTransferViewType *)fileTransfersTransferView; - -/// -/// Initializes union class with tag state of "note_acl_invite_only". -/// -/// Description of the "note_acl_invite_only" tag state: (sharing) Changed Paper -/// doc to invite-only (deprecated, no longer logged) -/// -/// @param noteAclInviteOnly (sharing) Changed Paper doc to invite-only -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclInviteOnly:(DBTEAMLOGNoteAclInviteOnlyType *)noteAclInviteOnly; - -/// -/// Initializes union class with tag state of "note_acl_link". -/// -/// Description of the "note_acl_link" tag state: (sharing) Changed Paper doc to -/// link-accessible (deprecated, no longer logged) -/// -/// @param noteAclLink (sharing) Changed Paper doc to link-accessible -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclLink:(DBTEAMLOGNoteAclLinkType *)noteAclLink; - -/// -/// Initializes union class with tag state of "note_acl_team_link". -/// -/// Description of the "note_acl_team_link" tag state: (sharing) Changed Paper -/// doc to link-accessible for team (deprecated, no longer logged) -/// -/// @param noteAclTeamLink (sharing) Changed Paper doc to link-accessible for -/// team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclTeamLink:(DBTEAMLOGNoteAclTeamLinkType *)noteAclTeamLink; - -/// -/// Initializes union class with tag state of "note_shared". -/// -/// Description of the "note_shared" tag state: (sharing) Shared Paper doc -/// (deprecated, no longer logged) -/// -/// @param noteShared (sharing) Shared Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShared:(DBTEAMLOGNoteSharedType *)noteShared; - -/// -/// Initializes union class with tag state of "note_share_receive". -/// -/// Description of the "note_share_receive" tag state: (sharing) Shared received -/// Paper doc (deprecated, no longer logged) -/// -/// @param noteShareReceive (sharing) Shared received Paper doc (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShareReceive:(DBTEAMLOGNoteShareReceiveType *)noteShareReceive; - -/// -/// Initializes union class with tag state of "open_note_shared". -/// -/// Description of the "open_note_shared" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @param openNoteShared (sharing) Opened shared Paper doc (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenNoteShared:(DBTEAMLOGOpenNoteSharedType *)openNoteShared; - -/// -/// Initializes union class with tag state of "replay_file_shared_link_created". -/// -/// Description of the "replay_file_shared_link_created" tag state: (sharing) -/// Created shared link in Replay -/// -/// @param replayFileSharedLinkCreated (sharing) Created shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkCreated: - (DBTEAMLOGReplayFileSharedLinkCreatedType *)replayFileSharedLinkCreated; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_modified". -/// -/// Description of the "replay_file_shared_link_modified" tag state: (sharing) -/// Modified shared link in Replay -/// -/// @param replayFileSharedLinkModified (sharing) Modified shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkModified: - (DBTEAMLOGReplayFileSharedLinkModifiedType *)replayFileSharedLinkModified; - -/// -/// Initializes union class with tag state of "replay_project_team_add". -/// -/// Description of the "replay_project_team_add" tag state: (sharing) Added -/// member to Replay Project -/// -/// @param replayProjectTeamAdd (sharing) Added member to Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamAdd:(DBTEAMLOGReplayProjectTeamAddType *)replayProjectTeamAdd; - -/// -/// Initializes union class with tag state of "replay_project_team_delete". -/// -/// Description of the "replay_project_team_delete" tag state: (sharing) Removed -/// member from Replay Project -/// -/// @param replayProjectTeamDelete (sharing) Removed member from Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamDelete:(DBTEAMLOGReplayProjectTeamDeleteType *)replayProjectTeamDelete; - -/// -/// Initializes union class with tag state of "sf_add_group". -/// -/// Description of the "sf_add_group" tag state: (sharing) Added team to shared -/// folder (deprecated, no longer logged) -/// -/// @param sfAddGroup (sharing) Added team to shared folder (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAddGroup:(DBTEAMLOGSfAddGroupType *)sfAddGroup; - -/// -/// Initializes union class with tag state of -/// "sf_allow_non_members_to_view_shared_links". -/// -/// Description of the "sf_allow_non_members_to_view_shared_links" tag state: -/// (sharing) Allowed non-collaborators to view links to files in shared folder -/// (deprecated, no longer logged) -/// -/// @param sfAllowNonMembersToViewSharedLinks (sharing) Allowed -/// non-collaborators to view links to files in shared folder (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAllowNonMembersToViewSharedLinks: - (DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *)sfAllowNonMembersToViewSharedLinks; - -/// -/// Initializes union class with tag state of "sf_external_invite_warn". -/// -/// Description of the "sf_external_invite_warn" tag state: (sharing) Set team -/// members to see warning before sharing folders outside team (deprecated, no -/// longer logged) -/// -/// @param sfExternalInviteWarn (sharing) Set team members to see warning before -/// sharing folders outside team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfExternalInviteWarn:(DBTEAMLOGSfExternalInviteWarnType *)sfExternalInviteWarn; - -/// -/// Initializes union class with tag state of "sf_fb_invite". -/// -/// Description of the "sf_fb_invite" tag state: (sharing) Invited Facebook -/// users to shared folder (deprecated, no longer logged) -/// -/// @param sfFbInvite (sharing) Invited Facebook users to shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInvite:(DBTEAMLOGSfFbInviteType *)sfFbInvite; - -/// -/// Initializes union class with tag state of "sf_fb_invite_change_role". -/// -/// Description of the "sf_fb_invite_change_role" tag state: (sharing) Changed -/// Facebook user's role in shared folder (deprecated, no longer logged) -/// -/// @param sfFbInviteChangeRole (sharing) Changed Facebook user's role in shared -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteChangeRole:(DBTEAMLOGSfFbInviteChangeRoleType *)sfFbInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_fb_uninvite". -/// -/// Description of the "sf_fb_uninvite" tag state: (sharing) Uninvited Facebook -/// user from shared folder (deprecated, no longer logged) -/// -/// @param sfFbUninvite (sharing) Uninvited Facebook user from shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbUninvite:(DBTEAMLOGSfFbUninviteType *)sfFbUninvite; - -/// -/// Initializes union class with tag state of "sf_invite_group". -/// -/// Description of the "sf_invite_group" tag state: (sharing) Invited group to -/// shared folder (deprecated, no longer logged) -/// -/// @param sfInviteGroup (sharing) Invited group to shared folder (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfInviteGroup:(DBTEAMLOGSfInviteGroupType *)sfInviteGroup; - -/// -/// Initializes union class with tag state of "sf_team_grant_access". -/// -/// Description of the "sf_team_grant_access" tag state: (sharing) Granted -/// access to shared folder (deprecated, no longer logged) -/// -/// @param sfTeamGrantAccess (sharing) Granted access to shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamGrantAccess:(DBTEAMLOGSfTeamGrantAccessType *)sfTeamGrantAccess; - -/// -/// Initializes union class with tag state of "sf_team_invite". -/// -/// Description of the "sf_team_invite" tag state: (sharing) Invited team -/// members to shared folder (deprecated, replaced by 'Invited user to Dropbox -/// and added them to shared file/folder') -/// -/// @param sfTeamInvite (sharing) Invited team members to shared folder -/// (deprecated, replaced by 'Invited user to Dropbox and added them to shared -/// file/folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInvite:(DBTEAMLOGSfTeamInviteType *)sfTeamInvite; - -/// -/// Initializes union class with tag state of "sf_team_invite_change_role". -/// -/// Description of the "sf_team_invite_change_role" tag state: (sharing) Changed -/// team member's role in shared folder (deprecated, no longer logged) -/// -/// @param sfTeamInviteChangeRole (sharing) Changed team member's role in shared -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteChangeRole:(DBTEAMLOGSfTeamInviteChangeRoleType *)sfTeamInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_team_join". -/// -/// Description of the "sf_team_join" tag state: (sharing) Joined team member's -/// shared folder (deprecated, no longer logged) -/// -/// @param sfTeamJoin (sharing) Joined team member's shared folder (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoin:(DBTEAMLOGSfTeamJoinType *)sfTeamJoin; - -/// -/// Initializes union class with tag state of "sf_team_join_from_oob_link". -/// -/// Description of the "sf_team_join_from_oob_link" tag state: (sharing) Joined -/// team member's shared folder from link (deprecated, no longer logged) -/// -/// @param sfTeamJoinFromOobLink (sharing) Joined team member's shared folder -/// from link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinFromOobLink:(DBTEAMLOGSfTeamJoinFromOobLinkType *)sfTeamJoinFromOobLink; - -/// -/// Initializes union class with tag state of "sf_team_uninvite". -/// -/// Description of the "sf_team_uninvite" tag state: (sharing) Unshared folder -/// with team member (deprecated, replaced by 'Removed invitee from shared -/// file/folder before invite was accepted') -/// -/// @param sfTeamUninvite (sharing) Unshared folder with team member -/// (deprecated, replaced by 'Removed invitee from shared file/folder before -/// invite was accepted') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamUninvite:(DBTEAMLOGSfTeamUninviteType *)sfTeamUninvite; - -/// -/// Initializes union class with tag state of "shared_content_add_invitees". -/// -/// Description of the "shared_content_add_invitees" tag state: (sharing) -/// Invited user to Dropbox and added them to shared file/folder -/// -/// @param sharedContentAddInvitees (sharing) Invited user to Dropbox and added -/// them to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddInvitees:(DBTEAMLOGSharedContentAddInviteesType *)sharedContentAddInvitees; - -/// -/// Initializes union class with tag state of "shared_content_add_link_expiry". -/// -/// Description of the "shared_content_add_link_expiry" tag state: (sharing) -/// Added expiration date to link for shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentAddLinkExpiry (sharing) Added expiration date to link -/// for shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkExpiry: - (DBTEAMLOGSharedContentAddLinkExpiryType *)sharedContentAddLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_password". -/// -/// Description of the "shared_content_add_link_password" tag state: (sharing) -/// Added password to link for shared file/folder (deprecated, no longer logged) -/// -/// @param sharedContentAddLinkPassword (sharing) Added password to link for -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkPassword: - (DBTEAMLOGSharedContentAddLinkPasswordType *)sharedContentAddLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_add_member". -/// -/// Description of the "shared_content_add_member" tag state: (sharing) Added -/// users and/or groups to shared file/folder -/// -/// @param sharedContentAddMember (sharing) Added users and/or groups to shared -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddMember:(DBTEAMLOGSharedContentAddMemberType *)sharedContentAddMember; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_downloads_policy". -/// -/// Description of the "shared_content_change_downloads_policy" tag state: -/// (sharing) Changed whether members can download shared file/folder -/// (deprecated, no longer logged) -/// -/// @param sharedContentChangeDownloadsPolicy (sharing) Changed whether members -/// can download shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeDownloadsPolicy: - (DBTEAMLOGSharedContentChangeDownloadsPolicyType *)sharedContentChangeDownloadsPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_invitee_role". -/// -/// Description of the "shared_content_change_invitee_role" tag state: (sharing) -/// Changed access type of invitee to shared file/folder before invite was -/// accepted -/// -/// @param sharedContentChangeInviteeRole (sharing) Changed access type of -/// invitee to shared file/folder before invite was accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeInviteeRole: - (DBTEAMLOGSharedContentChangeInviteeRoleType *)sharedContentChangeInviteeRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_audience". -/// -/// Description of the "shared_content_change_link_audience" tag state: -/// (sharing) Changed link audience of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentChangeLinkAudience (sharing) Changed link audience of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkAudience: - (DBTEAMLOGSharedContentChangeLinkAudienceType *)sharedContentChangeLinkAudience; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_expiry". -/// -/// Description of the "shared_content_change_link_expiry" tag state: (sharing) -/// Changed link expiration of shared file/folder (deprecated, no longer logged) -/// -/// @param sharedContentChangeLinkExpiry (sharing) Changed link expiration of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkExpiry: - (DBTEAMLOGSharedContentChangeLinkExpiryType *)sharedContentChangeLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_password". -/// -/// Description of the "shared_content_change_link_password" tag state: -/// (sharing) Changed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentChangeLinkPassword (sharing) Changed link password of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkPassword: - (DBTEAMLOGSharedContentChangeLinkPasswordType *)sharedContentChangeLinkPassword; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_member_role". -/// -/// Description of the "shared_content_change_member_role" tag state: (sharing) -/// Changed access type of shared file/folder member -/// -/// @param sharedContentChangeMemberRole (sharing) Changed access type of shared -/// file/folder member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeMemberRole: - (DBTEAMLOGSharedContentChangeMemberRoleType *)sharedContentChangeMemberRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_viewer_info_policy". -/// -/// Description of the "shared_content_change_viewer_info_policy" tag state: -/// (sharing) Changed whether members can see who viewed shared file/folder -/// -/// @param sharedContentChangeViewerInfoPolicy (sharing) Changed whether members -/// can see who viewed shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeViewerInfoPolicy: - (DBTEAMLOGSharedContentChangeViewerInfoPolicyType *)sharedContentChangeViewerInfoPolicy; - -/// -/// Initializes union class with tag state of "shared_content_claim_invitation". -/// -/// Description of the "shared_content_claim_invitation" tag state: (sharing) -/// Acquired membership of shared file/folder by accepting invite -/// -/// @param sharedContentClaimInvitation (sharing) Acquired membership of shared -/// file/folder by accepting invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentClaimInvitation: - (DBTEAMLOGSharedContentClaimInvitationType *)sharedContentClaimInvitation; - -/// -/// Initializes union class with tag state of "shared_content_copy". -/// -/// Description of the "shared_content_copy" tag state: (sharing) Copied shared -/// file/folder to own Dropbox -/// -/// @param sharedContentCopy (sharing) Copied shared file/folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentCopy:(DBTEAMLOGSharedContentCopyType *)sharedContentCopy; - -/// -/// Initializes union class with tag state of "shared_content_download". -/// -/// Description of the "shared_content_download" tag state: (sharing) Downloaded -/// shared file/folder -/// -/// @param sharedContentDownload (sharing) Downloaded shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentDownload:(DBTEAMLOGSharedContentDownloadType *)sharedContentDownload; - -/// -/// Initializes union class with tag state of -/// "shared_content_relinquish_membership". -/// -/// Description of the "shared_content_relinquish_membership" tag state: -/// (sharing) Left shared file/folder -/// -/// @param sharedContentRelinquishMembership (sharing) Left shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRelinquishMembership: - (DBTEAMLOGSharedContentRelinquishMembershipType *)sharedContentRelinquishMembership; - -/// -/// Initializes union class with tag state of "shared_content_remove_invitees". -/// -/// Description of the "shared_content_remove_invitees" tag state: (sharing) -/// Removed invitee from shared file/folder before invite was accepted -/// -/// @param sharedContentRemoveInvitees (sharing) Removed invitee from shared -/// file/folder before invite was accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveInvitees: - (DBTEAMLOGSharedContentRemoveInviteesType *)sharedContentRemoveInvitees; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_expiry". -/// -/// Description of the "shared_content_remove_link_expiry" tag state: (sharing) -/// Removed link expiration date of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentRemoveLinkExpiry (sharing) Removed link expiration date -/// of shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkExpiry: - (DBTEAMLOGSharedContentRemoveLinkExpiryType *)sharedContentRemoveLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_password". -/// -/// Description of the "shared_content_remove_link_password" tag state: -/// (sharing) Removed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentRemoveLinkPassword (sharing) Removed link password of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkPassword: - (DBTEAMLOGSharedContentRemoveLinkPasswordType *)sharedContentRemoveLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_remove_member". -/// -/// Description of the "shared_content_remove_member" tag state: (sharing) -/// Removed user/group from shared file/folder -/// -/// @param sharedContentRemoveMember (sharing) Removed user/group from shared -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveMember:(DBTEAMLOGSharedContentRemoveMemberType *)sharedContentRemoveMember; - -/// -/// Initializes union class with tag state of "shared_content_request_access". -/// -/// Description of the "shared_content_request_access" tag state: (sharing) -/// Requested access to shared file/folder -/// -/// @param sharedContentRequestAccess (sharing) Requested access to shared -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRequestAccess: - (DBTEAMLOGSharedContentRequestAccessType *)sharedContentRequestAccess; - -/// -/// Initializes union class with tag state of "shared_content_restore_invitees". -/// -/// Description of the "shared_content_restore_invitees" tag state: (sharing) -/// Restored shared file/folder invitees -/// -/// @param sharedContentRestoreInvitees (sharing) Restored shared file/folder -/// invitees -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreInvitees: - (DBTEAMLOGSharedContentRestoreInviteesType *)sharedContentRestoreInvitees; - -/// -/// Initializes union class with tag state of "shared_content_restore_member". -/// -/// Description of the "shared_content_restore_member" tag state: (sharing) -/// Restored users and/or groups to membership of shared file/folder -/// -/// @param sharedContentRestoreMember (sharing) Restored users and/or groups to -/// membership of shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreMember: - (DBTEAMLOGSharedContentRestoreMemberType *)sharedContentRestoreMember; - -/// -/// Initializes union class with tag state of "shared_content_unshare". -/// -/// Description of the "shared_content_unshare" tag state: (sharing) Unshared -/// file/folder by clearing membership -/// -/// @param sharedContentUnshare (sharing) Unshared file/folder by clearing -/// membership -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentUnshare:(DBTEAMLOGSharedContentUnshareType *)sharedContentUnshare; - -/// -/// Initializes union class with tag state of "shared_content_view". -/// -/// Description of the "shared_content_view" tag state: (sharing) Previewed -/// shared file/folder -/// -/// @param sharedContentView (sharing) Previewed shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentView:(DBTEAMLOGSharedContentViewType *)sharedContentView; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_link_policy". -/// -/// Description of the "shared_folder_change_link_policy" tag state: (sharing) -/// Changed who can access shared folder via link -/// -/// @param sharedFolderChangeLinkPolicy (sharing) Changed who can access shared -/// folder via link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeLinkPolicy: - (DBTEAMLOGSharedFolderChangeLinkPolicyType *)sharedFolderChangeLinkPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_inheritance_policy". -/// -/// Description of the "shared_folder_change_members_inheritance_policy" tag -/// state: (sharing) Changed whether shared folder inherits members from parent -/// folder -/// -/// @param sharedFolderChangeMembersInheritancePolicy (sharing) Changed whether -/// shared folder inherits members from parent folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersInheritancePolicy: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *)sharedFolderChangeMembersInheritancePolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_management_policy". -/// -/// Description of the "shared_folder_change_members_management_policy" tag -/// state: (sharing) Changed who can add/remove members of shared folder -/// -/// @param sharedFolderChangeMembersManagementPolicy (sharing) Changed who can -/// add/remove members of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersManagementPolicy: - (DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *)sharedFolderChangeMembersManagementPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_policy". -/// -/// Description of the "shared_folder_change_members_policy" tag state: -/// (sharing) Changed who can become member of shared folder -/// -/// @param sharedFolderChangeMembersPolicy (sharing) Changed who can become -/// member of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersPolicy: - (DBTEAMLOGSharedFolderChangeMembersPolicyType *)sharedFolderChangeMembersPolicy; - -/// -/// Initializes union class with tag state of "shared_folder_create". -/// -/// Description of the "shared_folder_create" tag state: (sharing) Created -/// shared folder -/// -/// @param sharedFolderCreate (sharing) Created shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderCreate:(DBTEAMLOGSharedFolderCreateType *)sharedFolderCreate; - -/// -/// Initializes union class with tag state of -/// "shared_folder_decline_invitation". -/// -/// Description of the "shared_folder_decline_invitation" tag state: (sharing) -/// Declined team member's invite to shared folder -/// -/// @param sharedFolderDeclineInvitation (sharing) Declined team member's invite -/// to shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderDeclineInvitation: - (DBTEAMLOGSharedFolderDeclineInvitationType *)sharedFolderDeclineInvitation; - -/// -/// Initializes union class with tag state of "shared_folder_mount". -/// -/// Description of the "shared_folder_mount" tag state: (sharing) Added shared -/// folder to own Dropbox -/// -/// @param sharedFolderMount (sharing) Added shared folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMount:(DBTEAMLOGSharedFolderMountType *)sharedFolderMount; - -/// -/// Initializes union class with tag state of "shared_folder_nest". -/// -/// Description of the "shared_folder_nest" tag state: (sharing) Changed parent -/// of shared folder -/// -/// @param sharedFolderNest (sharing) Changed parent of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderNest:(DBTEAMLOGSharedFolderNestType *)sharedFolderNest; - -/// -/// Initializes union class with tag state of -/// "shared_folder_transfer_ownership". -/// -/// Description of the "shared_folder_transfer_ownership" tag state: (sharing) -/// Transferred ownership of shared folder to another member -/// -/// @param sharedFolderTransferOwnership (sharing) Transferred ownership of -/// shared folder to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderTransferOwnership: - (DBTEAMLOGSharedFolderTransferOwnershipType *)sharedFolderTransferOwnership; - -/// -/// Initializes union class with tag state of "shared_folder_unmount". -/// -/// Description of the "shared_folder_unmount" tag state: (sharing) Deleted -/// shared folder from Dropbox -/// -/// @param sharedFolderUnmount (sharing) Deleted shared folder from Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderUnmount:(DBTEAMLOGSharedFolderUnmountType *)sharedFolderUnmount; - -/// -/// Initializes union class with tag state of "shared_link_add_expiry". -/// -/// Description of the "shared_link_add_expiry" tag state: (sharing) Added -/// shared link expiration date -/// -/// @param sharedLinkAddExpiry (sharing) Added shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAddExpiry:(DBTEAMLOGSharedLinkAddExpiryType *)sharedLinkAddExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_expiry". -/// -/// Description of the "shared_link_change_expiry" tag state: (sharing) Changed -/// shared link expiration date -/// -/// @param sharedLinkChangeExpiry (sharing) Changed shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeExpiry:(DBTEAMLOGSharedLinkChangeExpiryType *)sharedLinkChangeExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_visibility". -/// -/// Description of the "shared_link_change_visibility" tag state: (sharing) -/// Changed visibility of shared link -/// -/// @param sharedLinkChangeVisibility (sharing) Changed visibility of shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeVisibility: - (DBTEAMLOGSharedLinkChangeVisibilityType *)sharedLinkChangeVisibility; - -/// -/// Initializes union class with tag state of "shared_link_copy". -/// -/// Description of the "shared_link_copy" tag state: (sharing) Added file/folder -/// to Dropbox from shared link -/// -/// @param sharedLinkCopy (sharing) Added file/folder to Dropbox from shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCopy:(DBTEAMLOGSharedLinkCopyType *)sharedLinkCopy; - -/// -/// Initializes union class with tag state of "shared_link_create". -/// -/// Description of the "shared_link_create" tag state: (sharing) Created shared -/// link -/// -/// @param sharedLinkCreate (sharing) Created shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCreate:(DBTEAMLOGSharedLinkCreateType *)sharedLinkCreate; - -/// -/// Initializes union class with tag state of "shared_link_disable". -/// -/// Description of the "shared_link_disable" tag state: (sharing) Removed shared -/// link -/// -/// @param sharedLinkDisable (sharing) Removed shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDisable:(DBTEAMLOGSharedLinkDisableType *)sharedLinkDisable; - -/// -/// Initializes union class with tag state of "shared_link_download". -/// -/// Description of the "shared_link_download" tag state: (sharing) Downloaded -/// file/folder from shared link -/// -/// @param sharedLinkDownload (sharing) Downloaded file/folder from shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDownload:(DBTEAMLOGSharedLinkDownloadType *)sharedLinkDownload; - -/// -/// Initializes union class with tag state of "shared_link_remove_expiry". -/// -/// Description of the "shared_link_remove_expiry" tag state: (sharing) Removed -/// shared link expiration date -/// -/// @param sharedLinkRemoveExpiry (sharing) Removed shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkRemoveExpiry:(DBTEAMLOGSharedLinkRemoveExpiryType *)sharedLinkRemoveExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_expiration". -/// -/// Description of the "shared_link_settings_add_expiration" tag state: -/// (sharing) Added an expiration date to the shared link -/// -/// @param sharedLinkSettingsAddExpiration (sharing) Added an expiration date to -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddExpiration: - (DBTEAMLOGSharedLinkSettingsAddExpirationType *)sharedLinkSettingsAddExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_password". -/// -/// Description of the "shared_link_settings_add_password" tag state: (sharing) -/// Added a password to the shared link -/// -/// @param sharedLinkSettingsAddPassword (sharing) Added a password to the -/// shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddPassword: - (DBTEAMLOGSharedLinkSettingsAddPasswordType *)sharedLinkSettingsAddPassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_disabled". -/// -/// Description of the "shared_link_settings_allow_download_disabled" tag state: -/// (sharing) Disabled downloads -/// -/// @param sharedLinkSettingsAllowDownloadDisabled (sharing) Disabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadDisabled: - (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *)sharedLinkSettingsAllowDownloadDisabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_enabled". -/// -/// Description of the "shared_link_settings_allow_download_enabled" tag state: -/// (sharing) Enabled downloads -/// -/// @param sharedLinkSettingsAllowDownloadEnabled (sharing) Enabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadEnabled: - (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *)sharedLinkSettingsAllowDownloadEnabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_audience". -/// -/// Description of the "shared_link_settings_change_audience" tag state: -/// (sharing) Changed the audience of the shared link -/// -/// @param sharedLinkSettingsChangeAudience (sharing) Changed the audience of -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeAudience: - (DBTEAMLOGSharedLinkSettingsChangeAudienceType *)sharedLinkSettingsChangeAudience; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_expiration". -/// -/// Description of the "shared_link_settings_change_expiration" tag state: -/// (sharing) Changed the expiration date of the shared link -/// -/// @param sharedLinkSettingsChangeExpiration (sharing) Changed the expiration -/// date of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeExpiration: - (DBTEAMLOGSharedLinkSettingsChangeExpirationType *)sharedLinkSettingsChangeExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_password". -/// -/// Description of the "shared_link_settings_change_password" tag state: -/// (sharing) Changed the password of the shared link -/// -/// @param sharedLinkSettingsChangePassword (sharing) Changed the password of -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangePassword: - (DBTEAMLOGSharedLinkSettingsChangePasswordType *)sharedLinkSettingsChangePassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_expiration". -/// -/// Description of the "shared_link_settings_remove_expiration" tag state: -/// (sharing) Removed the expiration date from the shared link -/// -/// @param sharedLinkSettingsRemoveExpiration (sharing) Removed the expiration -/// date from the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemoveExpiration: - (DBTEAMLOGSharedLinkSettingsRemoveExpirationType *)sharedLinkSettingsRemoveExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_password". -/// -/// Description of the "shared_link_settings_remove_password" tag state: -/// (sharing) Removed the password from the shared link -/// -/// @param sharedLinkSettingsRemovePassword (sharing) Removed the password from -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemovePassword: - (DBTEAMLOGSharedLinkSettingsRemovePasswordType *)sharedLinkSettingsRemovePassword; - -/// -/// Initializes union class with tag state of "shared_link_share". -/// -/// Description of the "shared_link_share" tag state: (sharing) Added members as -/// audience of shared link -/// -/// @param sharedLinkShare (sharing) Added members as audience of shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkShare:(DBTEAMLOGSharedLinkShareType *)sharedLinkShare; - -/// -/// Initializes union class with tag state of "shared_link_view". -/// -/// Description of the "shared_link_view" tag state: (sharing) Opened shared -/// link -/// -/// @param sharedLinkView (sharing) Opened shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkView:(DBTEAMLOGSharedLinkViewType *)sharedLinkView; - -/// -/// Initializes union class with tag state of "shared_note_opened". -/// -/// Description of the "shared_note_opened" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @param sharedNoteOpened (sharing) Opened shared Paper doc (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedNoteOpened:(DBTEAMLOGSharedNoteOpenedType *)sharedNoteOpened; - -/// -/// Initializes union class with tag state of "shmodel_disable_downloads". -/// -/// Description of the "shmodel_disable_downloads" tag state: (sharing) Disabled -/// downloads for link (deprecated, no longer logged) -/// -/// @param shmodelDisableDownloads (sharing) Disabled downloads for link -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelDisableDownloads:(DBTEAMLOGShmodelDisableDownloadsType *)shmodelDisableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_enable_downloads". -/// -/// Description of the "shmodel_enable_downloads" tag state: (sharing) Enabled -/// downloads for link (deprecated, no longer logged) -/// -/// @param shmodelEnableDownloads (sharing) Enabled downloads for link -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelEnableDownloads:(DBTEAMLOGShmodelEnableDownloadsType *)shmodelEnableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_group_share". -/// -/// Description of the "shmodel_group_share" tag state: (sharing) Shared link -/// with group (deprecated, no longer logged) -/// -/// @param shmodelGroupShare (sharing) Shared link with group (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelGroupShare:(DBTEAMLOGShmodelGroupShareType *)shmodelGroupShare; - -/// -/// Initializes union class with tag state of "showcase_access_granted". -/// -/// Description of the "showcase_access_granted" tag state: (showcase) Granted -/// access to showcase -/// -/// @param showcaseAccessGranted (showcase) Granted access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAccessGranted:(DBTEAMLOGShowcaseAccessGrantedType *)showcaseAccessGranted; - -/// -/// Initializes union class with tag state of "showcase_add_member". -/// -/// Description of the "showcase_add_member" tag state: (showcase) Added member -/// to showcase -/// -/// @param showcaseAddMember (showcase) Added member to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAddMember:(DBTEAMLOGShowcaseAddMemberType *)showcaseAddMember; - -/// -/// Initializes union class with tag state of "showcase_archived". -/// -/// Description of the "showcase_archived" tag state: (showcase) Archived -/// showcase -/// -/// @param showcaseArchived (showcase) Archived showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseArchived:(DBTEAMLOGShowcaseArchivedType *)showcaseArchived; - -/// -/// Initializes union class with tag state of "showcase_created". -/// -/// Description of the "showcase_created" tag state: (showcase) Created showcase -/// -/// @param showcaseCreated (showcase) Created showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseCreated:(DBTEAMLOGShowcaseCreatedType *)showcaseCreated; - -/// -/// Initializes union class with tag state of "showcase_delete_comment". -/// -/// Description of the "showcase_delete_comment" tag state: (showcase) Deleted -/// showcase comment -/// -/// @param showcaseDeleteComment (showcase) Deleted showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDeleteComment:(DBTEAMLOGShowcaseDeleteCommentType *)showcaseDeleteComment; - -/// -/// Initializes union class with tag state of "showcase_edited". -/// -/// Description of the "showcase_edited" tag state: (showcase) Edited showcase -/// -/// @param showcaseEdited (showcase) Edited showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEdited:(DBTEAMLOGShowcaseEditedType *)showcaseEdited; - -/// -/// Initializes union class with tag state of "showcase_edit_comment". -/// -/// Description of the "showcase_edit_comment" tag state: (showcase) Edited -/// showcase comment -/// -/// @param showcaseEditComment (showcase) Edited showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditComment:(DBTEAMLOGShowcaseEditCommentType *)showcaseEditComment; - -/// -/// Initializes union class with tag state of "showcase_file_added". -/// -/// Description of the "showcase_file_added" tag state: (showcase) Added file to -/// showcase -/// -/// @param showcaseFileAdded (showcase) Added file to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileAdded:(DBTEAMLOGShowcaseFileAddedType *)showcaseFileAdded; - -/// -/// Initializes union class with tag state of "showcase_file_download". -/// -/// Description of the "showcase_file_download" tag state: (showcase) Downloaded -/// file from showcase -/// -/// @param showcaseFileDownload (showcase) Downloaded file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileDownload:(DBTEAMLOGShowcaseFileDownloadType *)showcaseFileDownload; - -/// -/// Initializes union class with tag state of "showcase_file_removed". -/// -/// Description of the "showcase_file_removed" tag state: (showcase) Removed -/// file from showcase -/// -/// @param showcaseFileRemoved (showcase) Removed file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileRemoved:(DBTEAMLOGShowcaseFileRemovedType *)showcaseFileRemoved; - -/// -/// Initializes union class with tag state of "showcase_file_view". -/// -/// Description of the "showcase_file_view" tag state: (showcase) Viewed file in -/// showcase -/// -/// @param showcaseFileView (showcase) Viewed file in showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileView:(DBTEAMLOGShowcaseFileViewType *)showcaseFileView; - -/// -/// Initializes union class with tag state of "showcase_permanently_deleted". -/// -/// Description of the "showcase_permanently_deleted" tag state: (showcase) -/// Permanently deleted showcase -/// -/// @param showcasePermanentlyDeleted (showcase) Permanently deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePermanentlyDeleted: - (DBTEAMLOGShowcasePermanentlyDeletedType *)showcasePermanentlyDeleted; - -/// -/// Initializes union class with tag state of "showcase_post_comment". -/// -/// Description of the "showcase_post_comment" tag state: (showcase) Added -/// showcase comment -/// -/// @param showcasePostComment (showcase) Added showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePostComment:(DBTEAMLOGShowcasePostCommentType *)showcasePostComment; - -/// -/// Initializes union class with tag state of "showcase_remove_member". -/// -/// Description of the "showcase_remove_member" tag state: (showcase) Removed -/// member from showcase -/// -/// @param showcaseRemoveMember (showcase) Removed member from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRemoveMember:(DBTEAMLOGShowcaseRemoveMemberType *)showcaseRemoveMember; - -/// -/// Initializes union class with tag state of "showcase_renamed". -/// -/// Description of the "showcase_renamed" tag state: (showcase) Renamed showcase -/// -/// @param showcaseRenamed (showcase) Renamed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRenamed:(DBTEAMLOGShowcaseRenamedType *)showcaseRenamed; - -/// -/// Initializes union class with tag state of "showcase_request_access". -/// -/// Description of the "showcase_request_access" tag state: (showcase) Requested -/// access to showcase -/// -/// @param showcaseRequestAccess (showcase) Requested access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRequestAccess:(DBTEAMLOGShowcaseRequestAccessType *)showcaseRequestAccess; - -/// -/// Initializes union class with tag state of "showcase_resolve_comment". -/// -/// Description of the "showcase_resolve_comment" tag state: (showcase) Resolved -/// showcase comment -/// -/// @param showcaseResolveComment (showcase) Resolved showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseResolveComment:(DBTEAMLOGShowcaseResolveCommentType *)showcaseResolveComment; - -/// -/// Initializes union class with tag state of "showcase_restored". -/// -/// Description of the "showcase_restored" tag state: (showcase) Unarchived -/// showcase -/// -/// @param showcaseRestored (showcase) Unarchived showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRestored:(DBTEAMLOGShowcaseRestoredType *)showcaseRestored; - -/// -/// Initializes union class with tag state of "showcase_trashed". -/// -/// Description of the "showcase_trashed" tag state: (showcase) Deleted showcase -/// -/// @param showcaseTrashed (showcase) Deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashed:(DBTEAMLOGShowcaseTrashedType *)showcaseTrashed; - -/// -/// Initializes union class with tag state of "showcase_trashed_deprecated". -/// -/// Description of the "showcase_trashed_deprecated" tag state: (showcase) -/// Deleted showcase (old version) (deprecated, replaced by 'Deleted showcase') -/// -/// @param showcaseTrashedDeprecated (showcase) Deleted showcase (old version) -/// (deprecated, replaced by 'Deleted showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDeprecated:(DBTEAMLOGShowcaseTrashedDeprecatedType *)showcaseTrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_unresolve_comment". -/// -/// Description of the "showcase_unresolve_comment" tag state: (showcase) -/// Unresolved showcase comment -/// -/// @param showcaseUnresolveComment (showcase) Unresolved showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUnresolveComment:(DBTEAMLOGShowcaseUnresolveCommentType *)showcaseUnresolveComment; - -/// -/// Initializes union class with tag state of "showcase_untrashed". -/// -/// Description of the "showcase_untrashed" tag state: (showcase) Restored -/// showcase -/// -/// @param showcaseUntrashed (showcase) Restored showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashed:(DBTEAMLOGShowcaseUntrashedType *)showcaseUntrashed; - -/// -/// Initializes union class with tag state of "showcase_untrashed_deprecated". -/// -/// Description of the "showcase_untrashed_deprecated" tag state: (showcase) -/// Restored showcase (old version) (deprecated, replaced by 'Restored -/// showcase') -/// -/// @param showcaseUntrashedDeprecated (showcase) Restored showcase (old -/// version) (deprecated, replaced by 'Restored showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDeprecated: - (DBTEAMLOGShowcaseUntrashedDeprecatedType *)showcaseUntrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_view". -/// -/// Description of the "showcase_view" tag state: (showcase) Viewed showcase -/// -/// @param showcaseView (showcase) Viewed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseView:(DBTEAMLOGShowcaseViewType *)showcaseView; - -/// -/// Initializes union class with tag state of "sso_add_cert". -/// -/// Description of the "sso_add_cert" tag state: (sso) Added X.509 certificate -/// for SSO -/// -/// @param ssoAddCert (sso) Added X.509 certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddCert:(DBTEAMLOGSsoAddCertType *)ssoAddCert; - -/// -/// Initializes union class with tag state of "sso_add_login_url". -/// -/// Description of the "sso_add_login_url" tag state: (sso) Added sign-in URL -/// for SSO -/// -/// @param ssoAddLoginUrl (sso) Added sign-in URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLoginUrl:(DBTEAMLOGSsoAddLoginUrlType *)ssoAddLoginUrl; - -/// -/// Initializes union class with tag state of "sso_add_logout_url". -/// -/// Description of the "sso_add_logout_url" tag state: (sso) Added sign-out URL -/// for SSO -/// -/// @param ssoAddLogoutUrl (sso) Added sign-out URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLogoutUrl:(DBTEAMLOGSsoAddLogoutUrlType *)ssoAddLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_cert". -/// -/// Description of the "sso_change_cert" tag state: (sso) Changed X.509 -/// certificate for SSO -/// -/// @param ssoChangeCert (sso) Changed X.509 certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeCert:(DBTEAMLOGSsoChangeCertType *)ssoChangeCert; - -/// -/// Initializes union class with tag state of "sso_change_login_url". -/// -/// Description of the "sso_change_login_url" tag state: (sso) Changed sign-in -/// URL for SSO -/// -/// @param ssoChangeLoginUrl (sso) Changed sign-in URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLoginUrl:(DBTEAMLOGSsoChangeLoginUrlType *)ssoChangeLoginUrl; - -/// -/// Initializes union class with tag state of "sso_change_logout_url". -/// -/// Description of the "sso_change_logout_url" tag state: (sso) Changed sign-out -/// URL for SSO -/// -/// @param ssoChangeLogoutUrl (sso) Changed sign-out URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLogoutUrl:(DBTEAMLOGSsoChangeLogoutUrlType *)ssoChangeLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_saml_identity_mode". -/// -/// Description of the "sso_change_saml_identity_mode" tag state: (sso) Changed -/// SAML identity mode for SSO -/// -/// @param ssoChangeSamlIdentityMode (sso) Changed SAML identity mode for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeSamlIdentityMode:(DBTEAMLOGSsoChangeSamlIdentityModeType *)ssoChangeSamlIdentityMode; - -/// -/// Initializes union class with tag state of "sso_remove_cert". -/// -/// Description of the "sso_remove_cert" tag state: (sso) Removed X.509 -/// certificate for SSO -/// -/// @param ssoRemoveCert (sso) Removed X.509 certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveCert:(DBTEAMLOGSsoRemoveCertType *)ssoRemoveCert; - -/// -/// Initializes union class with tag state of "sso_remove_login_url". -/// -/// Description of the "sso_remove_login_url" tag state: (sso) Removed sign-in -/// URL for SSO -/// -/// @param ssoRemoveLoginUrl (sso) Removed sign-in URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLoginUrl:(DBTEAMLOGSsoRemoveLoginUrlType *)ssoRemoveLoginUrl; - -/// -/// Initializes union class with tag state of "sso_remove_logout_url". -/// -/// Description of the "sso_remove_logout_url" tag state: (sso) Removed sign-out -/// URL for SSO -/// -/// @param ssoRemoveLogoutUrl (sso) Removed sign-out URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLogoutUrl:(DBTEAMLOGSsoRemoveLogoutUrlType *)ssoRemoveLogoutUrl; - -/// -/// Initializes union class with tag state of "team_folder_change_status". -/// -/// Description of the "team_folder_change_status" tag state: (team_folders) -/// Changed archival status of team folder -/// -/// @param teamFolderChangeStatus (team_folders) Changed archival status of team -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderChangeStatus:(DBTEAMLOGTeamFolderChangeStatusType *)teamFolderChangeStatus; - -/// -/// Initializes union class with tag state of "team_folder_create". -/// -/// Description of the "team_folder_create" tag state: (team_folders) Created -/// team folder in active status -/// -/// @param teamFolderCreate (team_folders) Created team folder in active status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderCreate:(DBTEAMLOGTeamFolderCreateType *)teamFolderCreate; - -/// -/// Initializes union class with tag state of "team_folder_downgrade". -/// -/// Description of the "team_folder_downgrade" tag state: (team_folders) -/// Downgraded team folder to regular shared folder -/// -/// @param teamFolderDowngrade (team_folders) Downgraded team folder to regular -/// shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderDowngrade:(DBTEAMLOGTeamFolderDowngradeType *)teamFolderDowngrade; - -/// -/// Initializes union class with tag state of "team_folder_permanently_delete". -/// -/// Description of the "team_folder_permanently_delete" tag state: -/// (team_folders) Permanently deleted archived team folder -/// -/// @param teamFolderPermanentlyDelete (team_folders) Permanently deleted -/// archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderPermanentlyDelete: - (DBTEAMLOGTeamFolderPermanentlyDeleteType *)teamFolderPermanentlyDelete; - -/// -/// Initializes union class with tag state of "team_folder_rename". -/// -/// Description of the "team_folder_rename" tag state: (team_folders) Renamed -/// active/archived team folder -/// -/// @param teamFolderRename (team_folders) Renamed active/archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderRename:(DBTEAMLOGTeamFolderRenameType *)teamFolderRename; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_settings_changed". -/// -/// Description of the "team_selective_sync_settings_changed" tag state: -/// (team_folders) Changed sync default -/// -/// @param teamSelectiveSyncSettingsChanged (team_folders) Changed sync default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncSettingsChanged: - (DBTEAMLOGTeamSelectiveSyncSettingsChangedType *)teamSelectiveSyncSettingsChanged; - -/// -/// Initializes union class with tag state of "account_capture_change_policy". -/// -/// Description of the "account_capture_change_policy" tag state: -/// (team_policies) Changed account capture setting on team domain -/// -/// @param accountCaptureChangePolicy (team_policies) Changed account capture -/// setting on team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangePolicy: - (DBTEAMLOGAccountCaptureChangePolicyType *)accountCaptureChangePolicy; - -/// -/// Initializes union class with tag state of "admin_email_reminders_changed". -/// -/// Description of the "admin_email_reminders_changed" tag state: -/// (team_policies) Changed admin reminder settings for requests to join the -/// team -/// -/// @param adminEmailRemindersChanged (team_policies) Changed admin reminder -/// settings for requests to join the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminEmailRemindersChanged: - (DBTEAMLOGAdminEmailRemindersChangedType *)adminEmailRemindersChanged; - -/// -/// Initializes union class with tag state of "allow_download_disabled". -/// -/// Description of the "allow_download_disabled" tag state: (team_policies) -/// Disabled downloads (deprecated, no longer logged) -/// -/// @param allowDownloadDisabled (team_policies) Disabled downloads (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadDisabled:(DBTEAMLOGAllowDownloadDisabledType *)allowDownloadDisabled; - -/// -/// Initializes union class with tag state of "allow_download_enabled". -/// -/// Description of the "allow_download_enabled" tag state: (team_policies) -/// Enabled downloads (deprecated, no longer logged) -/// -/// @param allowDownloadEnabled (team_policies) Enabled downloads (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadEnabled:(DBTEAMLOGAllowDownloadEnabledType *)allowDownloadEnabled; - -/// -/// Initializes union class with tag state of "app_permissions_changed". -/// -/// Description of the "app_permissions_changed" tag state: (team_policies) -/// Changed app permissions -/// -/// @param appPermissionsChanged (team_policies) Changed app permissions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppPermissionsChanged:(DBTEAMLOGAppPermissionsChangedType *)appPermissionsChanged; - -/// -/// Initializes union class with tag state of "camera_uploads_policy_changed". -/// -/// Description of the "camera_uploads_policy_changed" tag state: -/// (team_policies) Changed camera uploads setting for team -/// -/// @param cameraUploadsPolicyChanged (team_policies) Changed camera uploads -/// setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCameraUploadsPolicyChanged: - (DBTEAMLOGCameraUploadsPolicyChangedType *)cameraUploadsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "capture_transcript_policy_changed". -/// -/// Description of the "capture_transcript_policy_changed" tag state: -/// (team_policies) Changed Capture transcription policy for team -/// -/// @param captureTranscriptPolicyChanged (team_policies) Changed Capture -/// transcription policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCaptureTranscriptPolicyChanged: - (DBTEAMLOGCaptureTranscriptPolicyChangedType *)captureTranscriptPolicyChanged; - -/// -/// Initializes union class with tag state of "classification_change_policy". -/// -/// Description of the "classification_change_policy" tag state: (team_policies) -/// Changed classification policy for team -/// -/// @param classificationChangePolicy (team_policies) Changed classification -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationChangePolicy: - (DBTEAMLOGClassificationChangePolicyType *)classificationChangePolicy; - -/// -/// Initializes union class with tag state of "computer_backup_policy_changed". -/// -/// Description of the "computer_backup_policy_changed" tag state: -/// (team_policies) Changed computer backup policy for team -/// -/// @param computerBackupPolicyChanged (team_policies) Changed computer backup -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComputerBackupPolicyChanged: - (DBTEAMLOGComputerBackupPolicyChangedType *)computerBackupPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "content_administration_policy_changed". -/// -/// Description of the "content_administration_policy_changed" tag state: -/// (team_policies) Changed content management setting -/// -/// @param contentAdministrationPolicyChanged (team_policies) Changed content -/// management setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdministrationPolicyChanged: - (DBTEAMLOGContentAdministrationPolicyChangedType *)contentAdministrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_change_policy". -/// -/// Description of the "data_placement_restriction_change_policy" tag state: -/// (team_policies) Set restrictions on data center locations where team data -/// resides -/// -/// @param dataPlacementRestrictionChangePolicy (team_policies) Set restrictions -/// on data center locations where team data resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionChangePolicy: - (DBTEAMLOGDataPlacementRestrictionChangePolicyType *)dataPlacementRestrictionChangePolicy; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_satisfy_policy". -/// -/// Description of the "data_placement_restriction_satisfy_policy" tag state: -/// (team_policies) Completed restrictions on data center locations where team -/// data resides -/// -/// @param dataPlacementRestrictionSatisfyPolicy (team_policies) Completed -/// restrictions on data center locations where team data resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionSatisfyPolicy: - (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *)dataPlacementRestrictionSatisfyPolicy; - -/// -/// Initializes union class with tag state of "device_approvals_add_exception". -/// -/// Description of the "device_approvals_add_exception" tag state: -/// (team_policies) Added members to device approvals exception list -/// -/// @param deviceApprovalsAddException (team_policies) Added members to device -/// approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsAddException: - (DBTEAMLOGDeviceApprovalsAddExceptionType *)deviceApprovalsAddException; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_desktop_policy". -/// -/// Description of the "device_approvals_change_desktop_policy" tag state: -/// (team_policies) Set/removed limit on number of computers member can link to -/// team Dropbox account -/// -/// @param deviceApprovalsChangeDesktopPolicy (team_policies) Set/removed limit -/// on number of computers member can link to team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeDesktopPolicy: - (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *)deviceApprovalsChangeDesktopPolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_mobile_policy". -/// -/// Description of the "device_approvals_change_mobile_policy" tag state: -/// (team_policies) Set/removed limit on number of mobile devices member can -/// link to team Dropbox account -/// -/// @param deviceApprovalsChangeMobilePolicy (team_policies) Set/removed limit -/// on number of mobile devices member can link to team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeMobilePolicy: - (DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *)deviceApprovalsChangeMobilePolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_overage_action". -/// -/// Description of the "device_approvals_change_overage_action" tag state: -/// (team_policies) Changed device approvals setting when member is over limit -/// -/// @param deviceApprovalsChangeOverageAction (team_policies) Changed device -/// approvals setting when member is over limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeOverageAction: - (DBTEAMLOGDeviceApprovalsChangeOverageActionType *)deviceApprovalsChangeOverageAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_unlink_action". -/// -/// Description of the "device_approvals_change_unlink_action" tag state: -/// (team_policies) Changed device approvals setting when member unlinks -/// approved device -/// -/// @param deviceApprovalsChangeUnlinkAction (team_policies) Changed device -/// approvals setting when member unlinks approved device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeUnlinkAction: - (DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *)deviceApprovalsChangeUnlinkAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_remove_exception". -/// -/// Description of the "device_approvals_remove_exception" tag state: -/// (team_policies) Removed members from device approvals exception list -/// -/// @param deviceApprovalsRemoveException (team_policies) Removed members from -/// device approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsRemoveException: - (DBTEAMLOGDeviceApprovalsRemoveExceptionType *)deviceApprovalsRemoveException; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_add_members". -/// -/// Description of the "directory_restrictions_add_members" tag state: -/// (team_policies) Added members to directory restrictions list -/// -/// @param directoryRestrictionsAddMembers (team_policies) Added members to -/// directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsAddMembers: - (DBTEAMLOGDirectoryRestrictionsAddMembersType *)directoryRestrictionsAddMembers; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_remove_members". -/// -/// Description of the "directory_restrictions_remove_members" tag state: -/// (team_policies) Removed members from directory restrictions list -/// -/// @param directoryRestrictionsRemoveMembers (team_policies) Removed members -/// from directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsRemoveMembers: - (DBTEAMLOGDirectoryRestrictionsRemoveMembersType *)directoryRestrictionsRemoveMembers; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_policy_changed". -/// -/// Description of the "dropbox_passwords_policy_changed" tag state: -/// (team_policies) Changed Dropbox Passwords policy for team -/// -/// @param dropboxPasswordsPolicyChanged (team_policies) Changed Dropbox -/// Passwords policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsPolicyChanged: - (DBTEAMLOGDropboxPasswordsPolicyChangedType *)dropboxPasswordsPolicyChanged; - -/// -/// Initializes union class with tag state of "email_ingest_policy_changed". -/// -/// Description of the "email_ingest_policy_changed" tag state: (team_policies) -/// Changed email to Dropbox policy for team -/// -/// @param emailIngestPolicyChanged (team_policies) Changed email to Dropbox -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestPolicyChanged:(DBTEAMLOGEmailIngestPolicyChangedType *)emailIngestPolicyChanged; - -/// -/// Initializes union class with tag state of "emm_add_exception". -/// -/// Description of the "emm_add_exception" tag state: (team_policies) Added -/// members to EMM exception list -/// -/// @param emmAddException (team_policies) Added members to EMM exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmAddException:(DBTEAMLOGEmmAddExceptionType *)emmAddException; - -/// -/// Initializes union class with tag state of "emm_change_policy". -/// -/// Description of the "emm_change_policy" tag state: (team_policies) -/// Enabled/disabled enterprise mobility management for members -/// -/// @param emmChangePolicy (team_policies) Enabled/disabled enterprise mobility -/// management for members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmChangePolicy:(DBTEAMLOGEmmChangePolicyType *)emmChangePolicy; - -/// -/// Initializes union class with tag state of "emm_remove_exception". -/// -/// Description of the "emm_remove_exception" tag state: (team_policies) Removed -/// members from EMM exception list -/// -/// @param emmRemoveException (team_policies) Removed members from EMM exception -/// list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRemoveException:(DBTEAMLOGEmmRemoveExceptionType *)emmRemoveException; - -/// -/// Initializes union class with tag state of -/// "extended_version_history_change_policy". -/// -/// Description of the "extended_version_history_change_policy" tag state: -/// (team_policies) Accepted/opted out of extended version history -/// -/// @param extendedVersionHistoryChangePolicy (team_policies) Accepted/opted out -/// of extended version history -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtendedVersionHistoryChangePolicy: - (DBTEAMLOGExtendedVersionHistoryChangePolicyType *)extendedVersionHistoryChangePolicy; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_policy_changed". -/// -/// Description of the "external_drive_backup_policy_changed" tag state: -/// (team_policies) Changed external drive backup policy for team -/// -/// @param externalDriveBackupPolicyChanged (team_policies) Changed external -/// drive backup policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupPolicyChanged: - (DBTEAMLOGExternalDriveBackupPolicyChangedType *)externalDriveBackupPolicyChanged; - -/// -/// Initializes union class with tag state of "file_comments_change_policy". -/// -/// Description of the "file_comments_change_policy" tag state: (team_policies) -/// Enabled/disabled commenting on team files -/// -/// @param fileCommentsChangePolicy (team_policies) Enabled/disabled commenting -/// on team files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommentsChangePolicy:(DBTEAMLOGFileCommentsChangePolicyType *)fileCommentsChangePolicy; - -/// -/// Initializes union class with tag state of "file_locking_policy_changed". -/// -/// Description of the "file_locking_policy_changed" tag state: (team_policies) -/// Changed file locking policy for team -/// -/// @param fileLockingPolicyChanged (team_policies) Changed file locking policy -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingPolicyChanged:(DBTEAMLOGFileLockingPolicyChangedType *)fileLockingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "file_provider_migration_policy_changed". -/// -/// Description of the "file_provider_migration_policy_changed" tag state: -/// (team_policies) Changed File Provider Migration policy for team -/// -/// @param fileProviderMigrationPolicyChanged (team_policies) Changed File -/// Provider Migration policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileProviderMigrationPolicyChanged: - (DBTEAMLOGFileProviderMigrationPolicyChangedType *)fileProviderMigrationPolicyChanged; - -/// -/// Initializes union class with tag state of "file_requests_change_policy". -/// -/// Description of the "file_requests_change_policy" tag state: (team_policies) -/// Enabled/disabled file requests -/// -/// @param fileRequestsChangePolicy (team_policies) Enabled/disabled file -/// requests -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsChangePolicy:(DBTEAMLOGFileRequestsChangePolicyType *)fileRequestsChangePolicy; - -/// -/// Initializes union class with tag state of "file_requests_emails_enabled". -/// -/// Description of the "file_requests_emails_enabled" tag state: (team_policies) -/// Enabled file request emails for everyone (deprecated, no longer logged) -/// -/// @param fileRequestsEmailsEnabled (team_policies) Enabled file request emails -/// for everyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsEnabled:(DBTEAMLOGFileRequestsEmailsEnabledType *)fileRequestsEmailsEnabled; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_restricted_to_team_only". -/// -/// Description of the "file_requests_emails_restricted_to_team_only" tag state: -/// (team_policies) Enabled file request emails for team (deprecated, no longer -/// logged) -/// -/// @param fileRequestsEmailsRestrictedToTeamOnly (team_policies) Enabled file -/// request emails for team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsRestrictedToTeamOnly: - (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *)fileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Initializes union class with tag state of "file_transfers_policy_changed". -/// -/// Description of the "file_transfers_policy_changed" tag state: -/// (team_policies) Changed file transfers policy for team -/// -/// @param fileTransfersPolicyChanged (team_policies) Changed file transfers -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersPolicyChanged: - (DBTEAMLOGFileTransfersPolicyChangedType *)fileTransfersPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "folder_link_restriction_policy_changed". -/// -/// Description of the "folder_link_restriction_policy_changed" tag state: -/// (team_policies) Changed folder link restrictions policy for team -/// -/// @param folderLinkRestrictionPolicyChanged (team_policies) Changed folder -/// link restrictions policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderLinkRestrictionPolicyChanged: - (DBTEAMLOGFolderLinkRestrictionPolicyChangedType *)folderLinkRestrictionPolicyChanged; - -/// -/// Initializes union class with tag state of "google_sso_change_policy". -/// -/// Description of the "google_sso_change_policy" tag state: (team_policies) -/// Enabled/disabled Google single sign-on for team -/// -/// @param googleSsoChangePolicy (team_policies) Enabled/disabled Google single -/// sign-on for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleSsoChangePolicy:(DBTEAMLOGGoogleSsoChangePolicyType *)googleSsoChangePolicy; - -/// -/// Initializes union class with tag state of -/// "group_user_management_change_policy". -/// -/// Description of the "group_user_management_change_policy" tag state: -/// (team_policies) Changed who can create groups -/// -/// @param groupUserManagementChangePolicy (team_policies) Changed who can -/// create groups -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupUserManagementChangePolicy: - (DBTEAMLOGGroupUserManagementChangePolicyType *)groupUserManagementChangePolicy; - -/// -/// Initializes union class with tag state of "integration_policy_changed". -/// -/// Description of the "integration_policy_changed" tag state: (team_policies) -/// Changed integration policy for team -/// -/// @param integrationPolicyChanged (team_policies) Changed integration policy -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationPolicyChanged:(DBTEAMLOGIntegrationPolicyChangedType *)integrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "invite_acceptance_email_policy_changed". -/// -/// Description of the "invite_acceptance_email_policy_changed" tag state: -/// (team_policies) Changed invite accept email policy for team -/// -/// @param inviteAcceptanceEmailPolicyChanged (team_policies) Changed invite -/// accept email policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteAcceptanceEmailPolicyChanged: - (DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *)inviteAcceptanceEmailPolicyChanged; - -/// -/// Initializes union class with tag state of "member_requests_change_policy". -/// -/// Description of the "member_requests_change_policy" tag state: -/// (team_policies) Changed whether users can find team when not invited -/// -/// @param memberRequestsChangePolicy (team_policies) Changed whether users can -/// find team when not invited -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRequestsChangePolicy: - (DBTEAMLOGMemberRequestsChangePolicyType *)memberRequestsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_send_invite_policy_changed". -/// -/// Description of the "member_send_invite_policy_changed" tag state: -/// (team_policies) Changed member send invite policy for team -/// -/// @param memberSendInvitePolicyChanged (team_policies) Changed member send -/// invite policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSendInvitePolicyChanged: - (DBTEAMLOGMemberSendInvitePolicyChangedType *)memberSendInvitePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_exception". -/// -/// Description of the "member_space_limits_add_exception" tag state: -/// (team_policies) Added members to member space limit exception list -/// -/// @param memberSpaceLimitsAddException (team_policies) Added members to member -/// space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddException: - (DBTEAMLOGMemberSpaceLimitsAddExceptionType *)memberSpaceLimitsAddException; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_caps_type_policy". -/// -/// Description of the "member_space_limits_change_caps_type_policy" tag state: -/// (team_policies) Changed member space limit type for team -/// -/// @param memberSpaceLimitsChangeCapsTypePolicy (team_policies) Changed member -/// space limit type for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCapsTypePolicy: - (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *)memberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_policy". -/// -/// Description of the "member_space_limits_change_policy" tag state: -/// (team_policies) Changed team default member space limit -/// -/// @param memberSpaceLimitsChangePolicy (team_policies) Changed team default -/// member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangePolicy: - (DBTEAMLOGMemberSpaceLimitsChangePolicyType *)memberSpaceLimitsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_exception". -/// -/// Description of the "member_space_limits_remove_exception" tag state: -/// (team_policies) Removed members from member space limit exception list -/// -/// @param memberSpaceLimitsRemoveException (team_policies) Removed members from -/// member space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveException: - (DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *)memberSpaceLimitsRemoveException; - -/// -/// Initializes union class with tag state of -/// "member_suggestions_change_policy". -/// -/// Description of the "member_suggestions_change_policy" tag state: -/// (team_policies) Enabled/disabled option for team members to suggest people -/// to add to team -/// -/// @param memberSuggestionsChangePolicy (team_policies) Enabled/disabled option -/// for team members to suggest people to add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestionsChangePolicy: - (DBTEAMLOGMemberSuggestionsChangePolicyType *)memberSuggestionsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "microsoft_office_addin_change_policy". -/// -/// Description of the "microsoft_office_addin_change_policy" tag state: -/// (team_policies) Enabled/disabled Microsoft Office add-in -/// -/// @param microsoftOfficeAddinChangePolicy (team_policies) Enabled/disabled -/// Microsoft Office add-in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMicrosoftOfficeAddinChangePolicy: - (DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *)microsoftOfficeAddinChangePolicy; - -/// -/// Initializes union class with tag state of "network_control_change_policy". -/// -/// Description of the "network_control_change_policy" tag state: -/// (team_policies) Enabled/disabled network control -/// -/// @param networkControlChangePolicy (team_policies) Enabled/disabled network -/// control -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNetworkControlChangePolicy: - (DBTEAMLOGNetworkControlChangePolicyType *)networkControlChangePolicy; - -/// -/// Initializes union class with tag state of "paper_change_deployment_policy". -/// -/// Description of the "paper_change_deployment_policy" tag state: -/// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to -/// all members or to specific members -/// -/// @param paperChangeDeploymentPolicy (team_policies) Changed whether Dropbox -/// Paper, when enabled, is deployed to all members or to specific members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeDeploymentPolicy: - (DBTEAMLOGPaperChangeDeploymentPolicyType *)paperChangeDeploymentPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_link_policy". -/// -/// Description of the "paper_change_member_link_policy" tag state: -/// (team_policies) Changed whether non-members can view Paper docs with link -/// (deprecated, no longer logged) -/// -/// @param paperChangeMemberLinkPolicy (team_policies) Changed whether -/// non-members can view Paper docs with link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberLinkPolicy: - (DBTEAMLOGPaperChangeMemberLinkPolicyType *)paperChangeMemberLinkPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_policy". -/// -/// Description of the "paper_change_member_policy" tag state: (team_policies) -/// Changed whether members can share Paper docs outside team, and if docs are -/// accessible only by team members or anyone by default -/// -/// @param paperChangeMemberPolicy (team_policies) Changed whether members can -/// share Paper docs outside team, and if docs are accessible only by team -/// members or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberPolicy:(DBTEAMLOGPaperChangeMemberPolicyType *)paperChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "paper_change_policy". -/// -/// Description of the "paper_change_policy" tag state: (team_policies) -/// Enabled/disabled Dropbox Paper for team -/// -/// @param paperChangePolicy (team_policies) Enabled/disabled Dropbox Paper for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangePolicy:(DBTEAMLOGPaperChangePolicyType *)paperChangePolicy; - -/// -/// Initializes union class with tag state of -/// "paper_default_folder_policy_changed". -/// -/// Description of the "paper_default_folder_policy_changed" tag state: -/// (team_policies) Changed Paper Default Folder Policy setting for team -/// -/// @param paperDefaultFolderPolicyChanged (team_policies) Changed Paper Default -/// Folder Policy setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDefaultFolderPolicyChanged: - (DBTEAMLOGPaperDefaultFolderPolicyChangedType *)paperDefaultFolderPolicyChanged; - -/// -/// Initializes union class with tag state of "paper_desktop_policy_changed". -/// -/// Description of the "paper_desktop_policy_changed" tag state: (team_policies) -/// Enabled/disabled Paper Desktop for team -/// -/// @param paperDesktopPolicyChanged (team_policies) Enabled/disabled Paper -/// Desktop for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDesktopPolicyChanged:(DBTEAMLOGPaperDesktopPolicyChangedType *)paperDesktopPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_addition". -/// -/// Description of the "paper_enabled_users_group_addition" tag state: -/// (team_policies) Added users to Paper-enabled users list -/// -/// @param paperEnabledUsersGroupAddition (team_policies) Added users to -/// Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupAddition: - (DBTEAMLOGPaperEnabledUsersGroupAdditionType *)paperEnabledUsersGroupAddition; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_removal". -/// -/// Description of the "paper_enabled_users_group_removal" tag state: -/// (team_policies) Removed users from Paper-enabled users list -/// -/// @param paperEnabledUsersGroupRemoval (team_policies) Removed users from -/// Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupRemoval: - (DBTEAMLOGPaperEnabledUsersGroupRemovalType *)paperEnabledUsersGroupRemoval; - -/// -/// Initializes union class with tag state of -/// "password_strength_requirements_change_policy". -/// -/// Description of the "password_strength_requirements_change_policy" tag state: -/// (team_policies) Changed team password strength requirements -/// -/// @param passwordStrengthRequirementsChangePolicy (team_policies) Changed team -/// password strength requirements -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordStrengthRequirementsChangePolicy: - (DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *)passwordStrengthRequirementsChangePolicy; - -/// -/// Initializes union class with tag state of "permanent_delete_change_policy". -/// -/// Description of the "permanent_delete_change_policy" tag state: -/// (team_policies) Enabled/disabled ability of team members to permanently -/// delete content -/// -/// @param permanentDeleteChangePolicy (team_policies) Enabled/disabled ability -/// of team members to permanently delete content -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermanentDeleteChangePolicy: - (DBTEAMLOGPermanentDeleteChangePolicyType *)permanentDeleteChangePolicy; - -/// -/// Initializes union class with tag state of "reseller_support_change_policy". -/// -/// Description of the "reseller_support_change_policy" tag state: -/// (team_policies) Enabled/disabled reseller support -/// -/// @param resellerSupportChangePolicy (team_policies) Enabled/disabled reseller -/// support -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportChangePolicy: - (DBTEAMLOGResellerSupportChangePolicyType *)resellerSupportChangePolicy; - -/// -/// Initializes union class with tag state of "rewind_policy_changed". -/// -/// Description of the "rewind_policy_changed" tag state: (team_policies) -/// Changed Rewind policy for team -/// -/// @param rewindPolicyChanged (team_policies) Changed Rewind policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindPolicyChanged:(DBTEAMLOGRewindPolicyChangedType *)rewindPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "send_for_signature_policy_changed". -/// -/// Description of the "send_for_signature_policy_changed" tag state: -/// (team_policies) Changed send for signature policy for team -/// -/// @param sendForSignaturePolicyChanged (team_policies) Changed send for -/// signature policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSendForSignaturePolicyChanged: - (DBTEAMLOGSendForSignaturePolicyChangedType *)sendForSignaturePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "sharing_change_folder_join_policy". -/// -/// Description of the "sharing_change_folder_join_policy" tag state: -/// (team_policies) Changed whether team members can join shared folders owned -/// outside team -/// -/// @param sharingChangeFolderJoinPolicy (team_policies) Changed whether team -/// members can join shared folders owned outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeFolderJoinPolicy: - (DBTEAMLOGSharingChangeFolderJoinPolicyType *)sharingChangeFolderJoinPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// Description of the "sharing_change_link_allow_change_expiration_policy" tag -/// state: (team_policies) Changed the allow remove or change expiration policy -/// for the links shared outside of the team -/// -/// @param sharingChangeLinkAllowChangeExpirationPolicy (team_policies) Changed -/// the allow remove or change expiration policy for the links shared outside of -/// the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkAllowChangeExpirationPolicy: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *)sharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_default_expiration_policy". -/// -/// Description of the "sharing_change_link_default_expiration_policy" tag -/// state: (team_policies) Changed the default expiration for the links shared -/// outside of the team -/// -/// @param sharingChangeLinkDefaultExpirationPolicy (team_policies) Changed the -/// default expiration for the links shared outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkDefaultExpirationPolicy: - (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *)sharingChangeLinkDefaultExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_enforce_password_policy". -/// -/// Description of the "sharing_change_link_enforce_password_policy" tag state: -/// (team_policies) Changed the password requirement for the links shared -/// outside of the team -/// -/// @param sharingChangeLinkEnforcePasswordPolicy (team_policies) Changed the -/// password requirement for the links shared outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkEnforcePasswordPolicy: - (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *)sharingChangeLinkEnforcePasswordPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_link_policy". -/// -/// Description of the "sharing_change_link_policy" tag state: (team_policies) -/// Changed whether members can share links outside team, and if links are -/// accessible only by team members or anyone by default -/// -/// @param sharingChangeLinkPolicy (team_policies) Changed whether members can -/// share links outside team, and if links are accessible only by team members -/// or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkPolicy:(DBTEAMLOGSharingChangeLinkPolicyType *)sharingChangeLinkPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_member_policy". -/// -/// Description of the "sharing_change_member_policy" tag state: (team_policies) -/// Changed whether members can share files/folders outside team -/// -/// @param sharingChangeMemberPolicy (team_policies) Changed whether members can -/// share files/folders outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeMemberPolicy:(DBTEAMLOGSharingChangeMemberPolicyType *)sharingChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_download_policy". -/// -/// Description of the "showcase_change_download_policy" tag state: -/// (team_policies) Enabled/disabled downloading files from Dropbox Showcase for -/// team -/// -/// @param showcaseChangeDownloadPolicy (team_policies) Enabled/disabled -/// downloading files from Dropbox Showcase for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeDownloadPolicy: - (DBTEAMLOGShowcaseChangeDownloadPolicyType *)showcaseChangeDownloadPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_enabled_policy". -/// -/// Description of the "showcase_change_enabled_policy" tag state: -/// (team_policies) Enabled/disabled Dropbox Showcase for team -/// -/// @param showcaseChangeEnabledPolicy (team_policies) Enabled/disabled Dropbox -/// Showcase for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeEnabledPolicy: - (DBTEAMLOGShowcaseChangeEnabledPolicyType *)showcaseChangeEnabledPolicy; - -/// -/// Initializes union class with tag state of -/// "showcase_change_external_sharing_policy". -/// -/// Description of the "showcase_change_external_sharing_policy" tag state: -/// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for -/// team -/// -/// @param showcaseChangeExternalSharingPolicy (team_policies) Enabled/disabled -/// sharing Dropbox Showcase externally for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeExternalSharingPolicy: - (DBTEAMLOGShowcaseChangeExternalSharingPolicyType *)showcaseChangeExternalSharingPolicy; - -/// -/// Initializes union class with tag state of -/// "smarter_smart_sync_policy_changed". -/// -/// Description of the "smarter_smart_sync_policy_changed" tag state: -/// (team_policies) Changed automatic Smart Sync setting for team -/// -/// @param smarterSmartSyncPolicyChanged (team_policies) Changed automatic Smart -/// Sync setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmarterSmartSyncPolicyChanged: - (DBTEAMLOGSmarterSmartSyncPolicyChangedType *)smarterSmartSyncPolicyChanged; - -/// -/// Initializes union class with tag state of "smart_sync_change_policy". -/// -/// Description of the "smart_sync_change_policy" tag state: (team_policies) -/// Changed default Smart Sync setting for team members -/// -/// @param smartSyncChangePolicy (team_policies) Changed default Smart Sync -/// setting for team members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncChangePolicy:(DBTEAMLOGSmartSyncChangePolicyType *)smartSyncChangePolicy; - -/// -/// Initializes union class with tag state of "smart_sync_not_opt_out". -/// -/// Description of the "smart_sync_not_opt_out" tag state: (team_policies) Opted -/// team into Smart Sync -/// -/// @param smartSyncNotOptOut (team_policies) Opted team into Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncNotOptOut:(DBTEAMLOGSmartSyncNotOptOutType *)smartSyncNotOptOut; - -/// -/// Initializes union class with tag state of "smart_sync_opt_out". -/// -/// Description of the "smart_sync_opt_out" tag state: (team_policies) Opted -/// team out of Smart Sync -/// -/// @param smartSyncOptOut (team_policies) Opted team out of Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncOptOut:(DBTEAMLOGSmartSyncOptOutType *)smartSyncOptOut; - -/// -/// Initializes union class with tag state of "sso_change_policy". -/// -/// Description of the "sso_change_policy" tag state: (team_policies) Changed -/// single sign-on setting for team -/// -/// @param ssoChangePolicy (team_policies) Changed single sign-on setting for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangePolicy:(DBTEAMLOGSsoChangePolicyType *)ssoChangePolicy; - -/// -/// Initializes union class with tag state of "team_branding_policy_changed". -/// -/// Description of the "team_branding_policy_changed" tag state: (team_policies) -/// Changed team branding policy for team -/// -/// @param teamBrandingPolicyChanged (team_policies) Changed team branding -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamBrandingPolicyChanged:(DBTEAMLOGTeamBrandingPolicyChangedType *)teamBrandingPolicyChanged; - -/// -/// Initializes union class with tag state of "team_extensions_policy_changed". -/// -/// Description of the "team_extensions_policy_changed" tag state: -/// (team_policies) Changed App Integrations setting for team -/// -/// @param teamExtensionsPolicyChanged (team_policies) Changed App Integrations -/// setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExtensionsPolicyChanged: - (DBTEAMLOGTeamExtensionsPolicyChangedType *)teamExtensionsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_policy_changed". -/// -/// Description of the "team_selective_sync_policy_changed" tag state: -/// (team_policies) Enabled/disabled Team Selective Sync for team -/// -/// @param teamSelectiveSyncPolicyChanged (team_policies) Enabled/disabled Team -/// Selective Sync for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncPolicyChanged: - (DBTEAMLOGTeamSelectiveSyncPolicyChangedType *)teamSelectiveSyncPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_sharing_whitelist_subjects_changed". -/// -/// Description of the "team_sharing_whitelist_subjects_changed" tag state: -/// (team_policies) Edited the approved list for sharing externally -/// -/// @param teamSharingWhitelistSubjectsChanged (team_policies) Edited the -/// approved list for sharing externally -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharingWhitelistSubjectsChanged: - (DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *)teamSharingWhitelistSubjectsChanged; - -/// -/// Initializes union class with tag state of "tfa_add_exception". -/// -/// Description of the "tfa_add_exception" tag state: (team_policies) Added -/// members to two factor authentication exception list -/// -/// @param tfaAddException (team_policies) Added members to two factor -/// authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddException:(DBTEAMLOGTfaAddExceptionType *)tfaAddException; - -/// -/// Initializes union class with tag state of "tfa_change_policy". -/// -/// Description of the "tfa_change_policy" tag state: (team_policies) Changed -/// two-step verification setting for team -/// -/// @param tfaChangePolicy (team_policies) Changed two-step verification setting -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangePolicy:(DBTEAMLOGTfaChangePolicyType *)tfaChangePolicy; - -/// -/// Initializes union class with tag state of "tfa_remove_exception". -/// -/// Description of the "tfa_remove_exception" tag state: (team_policies) Removed -/// members from two factor authentication exception list -/// -/// @param tfaRemoveException (team_policies) Removed members from two factor -/// authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveException:(DBTEAMLOGTfaRemoveExceptionType *)tfaRemoveException; - -/// -/// Initializes union class with tag state of "two_account_change_policy". -/// -/// Description of the "two_account_change_policy" tag state: (team_policies) -/// Enabled/disabled option for members to link personal Dropbox account and -/// team account to same computer -/// -/// @param twoAccountChangePolicy (team_policies) Enabled/disabled option for -/// members to link personal Dropbox account and team account to same computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoAccountChangePolicy:(DBTEAMLOGTwoAccountChangePolicyType *)twoAccountChangePolicy; - -/// -/// Initializes union class with tag state of "viewer_info_policy_changed". -/// -/// Description of the "viewer_info_policy_changed" tag state: (team_policies) -/// Changed team policy for viewer info -/// -/// @param viewerInfoPolicyChanged (team_policies) Changed team policy for -/// viewer info -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerInfoPolicyChanged:(DBTEAMLOGViewerInfoPolicyChangedType *)viewerInfoPolicyChanged; - -/// -/// Initializes union class with tag state of "watermarking_policy_changed". -/// -/// Description of the "watermarking_policy_changed" tag state: (team_policies) -/// Changed watermarking policy for team -/// -/// @param watermarkingPolicyChanged (team_policies) Changed watermarking policy -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWatermarkingPolicyChanged:(DBTEAMLOGWatermarkingPolicyChangedType *)watermarkingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_active_session_limit". -/// -/// Description of the "web_sessions_change_active_session_limit" tag state: -/// (team_policies) Changed limit on active sessions per member -/// -/// @param webSessionsChangeActiveSessionLimit (team_policies) Changed limit on -/// active sessions per member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeActiveSessionLimit: - (DBTEAMLOGWebSessionsChangeActiveSessionLimitType *)webSessionsChangeActiveSessionLimit; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_fixed_length_policy". -/// -/// Description of the "web_sessions_change_fixed_length_policy" tag state: -/// (team_policies) Changed how long members can stay signed in to Dropbox.com -/// -/// @param webSessionsChangeFixedLengthPolicy (team_policies) Changed how long -/// members can stay signed in to Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeFixedLengthPolicy: - (DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *)webSessionsChangeFixedLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_idle_length_policy". -/// -/// Description of the "web_sessions_change_idle_length_policy" tag state: -/// (team_policies) Changed how long team members can be idle while signed in to -/// Dropbox.com -/// -/// @param webSessionsChangeIdleLengthPolicy (team_policies) Changed how long -/// team members can be idle while signed in to Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeIdleLengthPolicy: - (DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *)webSessionsChangeIdleLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_successful". -/// -/// Description of the "data_residency_migration_request_successful" tag state: -/// (team_profile) Requested data residency migration for team data -/// -/// @param dataResidencyMigrationRequestSuccessful (team_profile) Requested data -/// residency migration for team data -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestSuccessful: - (DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *)dataResidencyMigrationRequestSuccessful; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_unsuccessful". -/// -/// Description of the "data_residency_migration_request_unsuccessful" tag -/// state: (team_profile) Request for data residency migration for team data has -/// failed -/// -/// @param dataResidencyMigrationRequestUnsuccessful (team_profile) Request for -/// data residency migration for team data has failed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestUnsuccessful: - (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *)dataResidencyMigrationRequestUnsuccessful; - -/// -/// Initializes union class with tag state of "team_merge_from". -/// -/// Description of the "team_merge_from" tag state: (team_profile) Merged -/// another team into this team -/// -/// @param teamMergeFrom (team_profile) Merged another team into this team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeFrom:(DBTEAMLOGTeamMergeFromType *)teamMergeFrom; - -/// -/// Initializes union class with tag state of "team_merge_to". -/// -/// Description of the "team_merge_to" tag state: (team_profile) Merged this -/// team into another team -/// -/// @param teamMergeTo (team_profile) Merged this team into another team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeTo:(DBTEAMLOGTeamMergeToType *)teamMergeTo; - -/// -/// Initializes union class with tag state of "team_profile_add_background". -/// -/// Description of the "team_profile_add_background" tag state: (team_profile) -/// Added team background to display on shared link headers -/// -/// @param teamProfileAddBackground (team_profile) Added team background to -/// display on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddBackground:(DBTEAMLOGTeamProfileAddBackgroundType *)teamProfileAddBackground; - -/// -/// Initializes union class with tag state of "team_profile_add_logo". -/// -/// Description of the "team_profile_add_logo" tag state: (team_profile) Added -/// team logo to display on shared link headers -/// -/// @param teamProfileAddLogo (team_profile) Added team logo to display on -/// shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddLogo:(DBTEAMLOGTeamProfileAddLogoType *)teamProfileAddLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_background". -/// -/// Description of the "team_profile_change_background" tag state: -/// (team_profile) Changed team background displayed on shared link headers -/// -/// @param teamProfileChangeBackground (team_profile) Changed team background -/// displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeBackground: - (DBTEAMLOGTeamProfileChangeBackgroundType *)teamProfileChangeBackground; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_default_language". -/// -/// Description of the "team_profile_change_default_language" tag state: -/// (team_profile) Changed default language for team -/// -/// @param teamProfileChangeDefaultLanguage (team_profile) Changed default -/// language for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeDefaultLanguage: - (DBTEAMLOGTeamProfileChangeDefaultLanguageType *)teamProfileChangeDefaultLanguage; - -/// -/// Initializes union class with tag state of "team_profile_change_logo". -/// -/// Description of the "team_profile_change_logo" tag state: (team_profile) -/// Changed team logo displayed on shared link headers -/// -/// @param teamProfileChangeLogo (team_profile) Changed team logo displayed on -/// shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeLogo:(DBTEAMLOGTeamProfileChangeLogoType *)teamProfileChangeLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_name". -/// -/// Description of the "team_profile_change_name" tag state: (team_profile) -/// Changed team name -/// -/// @param teamProfileChangeName (team_profile) Changed team name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeName:(DBTEAMLOGTeamProfileChangeNameType *)teamProfileChangeName; - -/// -/// Initializes union class with tag state of "team_profile_remove_background". -/// -/// Description of the "team_profile_remove_background" tag state: -/// (team_profile) Removed team background displayed on shared link headers -/// -/// @param teamProfileRemoveBackground (team_profile) Removed team background -/// displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveBackground: - (DBTEAMLOGTeamProfileRemoveBackgroundType *)teamProfileRemoveBackground; - -/// -/// Initializes union class with tag state of "team_profile_remove_logo". -/// -/// Description of the "team_profile_remove_logo" tag state: (team_profile) -/// Removed team logo displayed on shared link headers -/// -/// @param teamProfileRemoveLogo (team_profile) Removed team logo displayed on -/// shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveLogo:(DBTEAMLOGTeamProfileRemoveLogoType *)teamProfileRemoveLogo; - -/// -/// Initializes union class with tag state of "tfa_add_backup_phone". -/// -/// Description of the "tfa_add_backup_phone" tag state: (tfa) Added backup -/// phone for two-step verification -/// -/// @param tfaAddBackupPhone (tfa) Added backup phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddBackupPhone:(DBTEAMLOGTfaAddBackupPhoneType *)tfaAddBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_add_security_key". -/// -/// Description of the "tfa_add_security_key" tag state: (tfa) Added security -/// key for two-step verification -/// -/// @param tfaAddSecurityKey (tfa) Added security key for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddSecurityKey:(DBTEAMLOGTfaAddSecurityKeyType *)tfaAddSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_change_backup_phone". -/// -/// Description of the "tfa_change_backup_phone" tag state: (tfa) Changed backup -/// phone for two-step verification -/// -/// @param tfaChangeBackupPhone (tfa) Changed backup phone for two-step -/// verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeBackupPhone:(DBTEAMLOGTfaChangeBackupPhoneType *)tfaChangeBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_change_status". -/// -/// Description of the "tfa_change_status" tag state: (tfa) -/// Enabled/disabled/changed two-step verification setting -/// -/// @param tfaChangeStatus (tfa) Enabled/disabled/changed two-step verification -/// setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeStatus:(DBTEAMLOGTfaChangeStatusType *)tfaChangeStatus; - -/// -/// Initializes union class with tag state of "tfa_remove_backup_phone". -/// -/// Description of the "tfa_remove_backup_phone" tag state: (tfa) Removed backup -/// phone for two-step verification -/// -/// @param tfaRemoveBackupPhone (tfa) Removed backup phone for two-step -/// verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveBackupPhone:(DBTEAMLOGTfaRemoveBackupPhoneType *)tfaRemoveBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_remove_security_key". -/// -/// Description of the "tfa_remove_security_key" tag state: (tfa) Removed -/// security key for two-step verification -/// -/// @param tfaRemoveSecurityKey (tfa) Removed security key for two-step -/// verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveSecurityKey:(DBTEAMLOGTfaRemoveSecurityKeyType *)tfaRemoveSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_reset". -/// -/// Description of the "tfa_reset" tag state: (tfa) Reset two-step verification -/// for team member -/// -/// @param tfaReset (tfa) Reset two-step verification for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaReset:(DBTEAMLOGTfaResetType *)tfaReset; - -/// -/// Initializes union class with tag state of "changed_enterprise_admin_role". -/// -/// Description of the "changed_enterprise_admin_role" tag state: -/// (trusted_teams) Changed enterprise admin role -/// -/// @param changedEnterpriseAdminRole (trusted_teams) Changed enterprise admin -/// role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseAdminRole: - (DBTEAMLOGChangedEnterpriseAdminRoleType *)changedEnterpriseAdminRole; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_connected_team_status". -/// -/// Description of the "changed_enterprise_connected_team_status" tag state: -/// (trusted_teams) Changed enterprise-connected team status -/// -/// @param changedEnterpriseConnectedTeamStatus (trusted_teams) Changed -/// enterprise-connected team status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseConnectedTeamStatus: - (DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *)changedEnterpriseConnectedTeamStatus; - -/// -/// Initializes union class with tag state of "ended_enterprise_admin_session". -/// -/// Description of the "ended_enterprise_admin_session" tag state: -/// (trusted_teams) Ended enterprise admin session -/// -/// @param endedEnterpriseAdminSession (trusted_teams) Ended enterprise admin -/// session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSession: - (DBTEAMLOGEndedEnterpriseAdminSessionType *)endedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_deprecated". -/// -/// Description of the "ended_enterprise_admin_session_deprecated" tag state: -/// (trusted_teams) Ended enterprise admin session (deprecated, replaced by -/// 'Ended enterprise admin session') -/// -/// @param endedEnterpriseAdminSessionDeprecated (trusted_teams) Ended -/// enterprise admin session (deprecated, replaced by 'Ended enterprise admin -/// session') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDeprecated: - (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *)endedEnterpriseAdminSessionDeprecated; - -/// -/// Initializes union class with tag state of "enterprise_settings_locking". -/// -/// Description of the "enterprise_settings_locking" tag state: (trusted_teams) -/// Changed who can update a setting -/// -/// @param enterpriseSettingsLocking (trusted_teams) Changed who can update a -/// setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseSettingsLocking:(DBTEAMLOGEnterpriseSettingsLockingType *)enterpriseSettingsLocking; - -/// -/// Initializes union class with tag state of "guest_admin_change_status". -/// -/// Description of the "guest_admin_change_status" tag state: (trusted_teams) -/// Changed guest team admin status -/// -/// @param guestAdminChangeStatus (trusted_teams) Changed guest team admin -/// status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminChangeStatus:(DBTEAMLOGGuestAdminChangeStatusType *)guestAdminChangeStatus; - -/// -/// Initializes union class with tag state of -/// "started_enterprise_admin_session". -/// -/// Description of the "started_enterprise_admin_session" tag state: -/// (trusted_teams) Started enterprise admin session -/// -/// @param startedEnterpriseAdminSession (trusted_teams) Started enterprise -/// admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartedEnterpriseAdminSession: - (DBTEAMLOGStartedEnterpriseAdminSessionType *)startedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of "team_merge_request_accepted". -/// -/// Description of the "team_merge_request_accepted" tag state: (trusted_teams) -/// Accepted a team merge request -/// -/// @param teamMergeRequestAccepted (trusted_teams) Accepted a team merge -/// request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAccepted:(DBTEAMLOGTeamMergeRequestAcceptedType *)teamMergeRequestAccepted; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_primary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @param teamMergeRequestAcceptedShownToPrimaryTeam (trusted_teams) Accepted a -/// team merge request (deprecated, replaced by 'Accepted a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *)teamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_secondary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @param teamMergeRequestAcceptedShownToSecondaryTeam (trusted_teams) Accepted -/// a team merge request (deprecated, replaced by 'Accepted a team merge -/// request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *)teamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_auto_canceled". -/// -/// Description of the "team_merge_request_auto_canceled" tag state: -/// (trusted_teams) Automatically canceled team merge request -/// -/// @param teamMergeRequestAutoCanceled (trusted_teams) Automatically canceled -/// team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAutoCanceled: - (DBTEAMLOGTeamMergeRequestAutoCanceledType *)teamMergeRequestAutoCanceled; - -/// -/// Initializes union class with tag state of "team_merge_request_canceled". -/// -/// Description of the "team_merge_request_canceled" tag state: (trusted_teams) -/// Canceled a team merge request -/// -/// @param teamMergeRequestCanceled (trusted_teams) Canceled a team merge -/// request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceled:(DBTEAMLOGTeamMergeRequestCanceledType *)teamMergeRequestCanceled; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_primary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @param teamMergeRequestCanceledShownToPrimaryTeam (trusted_teams) Canceled a -/// team merge request (deprecated, replaced by 'Canceled a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *)teamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_secondary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @param teamMergeRequestCanceledShownToSecondaryTeam (trusted_teams) Canceled -/// a team merge request (deprecated, replaced by 'Canceled a team merge -/// request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *)teamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_expired". -/// -/// Description of the "team_merge_request_expired" tag state: (trusted_teams) -/// Team merge request expired -/// -/// @param teamMergeRequestExpired (trusted_teams) Team merge request expired -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpired:(DBTEAMLOGTeamMergeRequestExpiredType *)teamMergeRequestExpired; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_primary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @param teamMergeRequestExpiredShownToPrimaryTeam (trusted_teams) Team merge -/// request expired (deprecated, replaced by 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *)teamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_secondary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @param teamMergeRequestExpiredShownToSecondaryTeam (trusted_teams) Team -/// merge request expired (deprecated, replaced by 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *)teamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_primary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @param teamMergeRequestRejectedShownToPrimaryTeam (trusted_teams) Rejected a -/// team merge request (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *)teamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_secondary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @param teamMergeRequestRejectedShownToSecondaryTeam (trusted_teams) Rejected -/// a team merge request (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *)teamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_reminder". -/// -/// Description of the "team_merge_request_reminder" tag state: (trusted_teams) -/// Sent a team merge request reminder -/// -/// @param teamMergeRequestReminder (trusted_teams) Sent a team merge request -/// reminder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminder:(DBTEAMLOGTeamMergeRequestReminderType *)teamMergeRequestReminder; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_primary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @param teamMergeRequestReminderShownToPrimaryTeam (trusted_teams) Sent a -/// team merge request reminder (deprecated, replaced by 'Sent a team merge -/// request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *)teamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_secondary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @param teamMergeRequestReminderShownToSecondaryTeam (trusted_teams) Sent a -/// team merge request reminder (deprecated, replaced by 'Sent a team merge -/// request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *)teamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_revoked". -/// -/// Description of the "team_merge_request_revoked" tag state: (trusted_teams) -/// Canceled the team merge -/// -/// @param teamMergeRequestRevoked (trusted_teams) Canceled the team merge -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRevoked:(DBTEAMLOGTeamMergeRequestRevokedType *)teamMergeRequestRevoked; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_primary_team" tag -/// state: (trusted_teams) Requested to merge their Dropbox team into yours -/// -/// @param teamMergeRequestSentShownToPrimaryTeam (trusted_teams) Requested to -/// merge their Dropbox team into yours -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *)teamMergeRequestSentShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_secondary_team" tag -/// state: (trusted_teams) Requested to merge your team into another Dropbox -/// team -/// -/// @param teamMergeRequestSentShownToSecondaryTeam (trusted_teams) Requested to -/// merge your team into another Dropbox team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *)teamMergeRequestSentShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingAlertStateChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -- (BOOL)isAdminAlertingAlertStateChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingChangedAlertConfig` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -- (BOOL)isAdminAlertingChangedAlertConfig; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingTriggeredAlert` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -- (BOOL)isAdminAlertingTriggeredAlert; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessCompleted` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -- (BOOL)isRansomwareRestoreProcessCompleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessStarted` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -- (BOOL)isRansomwareRestoreProcessStarted; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appBlockedByPermissions` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -- (BOOL)isAppBlockedByPermissions; - -/// -/// Retrieves whether the union's current tag state has value "app_link_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_link_team". -/// -- (BOOL)isAppLinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_link_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_link_user". -/// -- (BOOL)isAppLinkUser; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_unlink_team". -/// -- (BOOL)isAppUnlinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_unlink_user". -/// -- (BOOL)isAppUnlinkUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_connected". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationConnected` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_connected". -/// -- (BOOL)isIntegrationConnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_disconnected". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationDisconnected` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_disconnected". -/// -- (BOOL)isIntegrationDisconnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_add_comment". -/// -- (BOOL)isFileAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileChangeCommentSubscription` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -- (BOOL)isFileChangeCommentSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDeleteComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_delete_comment". -/// -- (BOOL)isFileDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEditComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_edit_comment". -/// -- (BOOL)isFileEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_like_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLikeComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_like_comment". -/// -- (BOOL)isFileLikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_resolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileResolveComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_resolve_comment". -/// -- (BOOL)isFileResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unlike_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnlikeComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unlike_comment". -/// -- (BOOL)isFileUnlikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unresolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnresolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unresolve_comment". -/// -- (BOOL)isFileUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFolders` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -- (BOOL)isGovernancePolicyAddFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFolderFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -- (BOOL)isGovernancePolicyAddFolderFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyContentDisposed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -- (BOOL)isGovernancePolicyContentDisposed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyCreate` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_create". -/// -- (BOOL)isGovernancePolicyCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyDelete` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_delete". -/// -- (BOOL)isGovernancePolicyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -- (BOOL)isGovernancePolicyEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDuration` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -- (BOOL)isGovernancePolicyEditDuration; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportCreated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_created". -/// -- (BOOL)isGovernancePolicyExportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportRemoved` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -- (BOOL)isGovernancePolicyExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyRemoveFolders` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -- (BOOL)isGovernancePolicyRemoveFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_report_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyReportCreated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_report_created". -/// -- (BOOL)isGovernancePolicyReportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyZipPartDownloaded` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -- (BOOL)isGovernancePolicyZipPartDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsActivateAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -- (BOOL)isLegalHoldsActivateAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_add_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsAddMembers` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_add_members". -/// -- (BOOL)isLegalHoldsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -- (BOOL)isLegalHoldsChangeHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldName` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -- (BOOL)isLegalHoldsChangeHoldName; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -- (BOOL)isLegalHoldsExportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportCancelled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -- (BOOL)isLegalHoldsExportCancelled; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportDownloaded` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -- (BOOL)isLegalHoldsExportDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportRemoved` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -- (BOOL)isLegalHoldsExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReleaseAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -- (BOOL)isLegalHoldsReleaseAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsRemoveMembers` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -- (BOOL)isLegalHoldsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReportAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -- (BOOL)isLegalHoldsReportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpDesktop` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -- (BOOL)isDeviceChangeIpDesktop; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpMobile` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -- (BOOL)isDeviceChangeIpMobile; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_web". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpWeb` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_web". -/// -- (BOOL)isDeviceChangeIpWeb; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkFail` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -- (BOOL)isDeviceDeleteOnUnlinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkSuccess` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -- (BOOL)isDeviceDeleteOnUnlinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkFail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "device_link_fail". -/// -- (BOOL)isDeviceLinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkSuccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_link_success". -/// -- (BOOL)isDeviceLinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_disabled". -/// -- (BOOL)isDeviceManagementDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementEnabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_enabled". -/// -- (BOOL)isDeviceManagementEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceSyncBackupStatusChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -- (BOOL)isDeviceSyncBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "device_unlink". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceUnlink` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "device_unlink". -/// -- (BOOL)isDeviceUnlink; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsExported` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -- (BOOL)isDropboxPasswordsExported; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsNewDeviceEnrolled` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -- (BOOL)isDropboxPasswordsNewDeviceEnrolled; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRefreshAuthToken` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -- (BOOL)isEmmRefreshAuthToken; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupEligibilityStatusChecked` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -- (BOOL)isExternalDriveBackupEligibilityStatusChecked; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupStatusChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -- (BOOL)isExternalDriveBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_availability". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangeAvailability` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_availability". -/// -- (BOOL)isAccountCaptureChangeAvailability; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureMigrateAccount` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -- (BOOL)isAccountCaptureMigrateAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureNotificationEmailsSent` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -- (BOOL)isAccountCaptureNotificationEmailsSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureRelinquishAccount` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -- (BOOL)isAccountCaptureRelinquishAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_domain_invites". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `disabledDomainInvites` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "disabled_domain_invites". -/// -- (BOOL)isDisabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesApproveRequestToJoinTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -- (BOOL)isDomainInvitesApproveRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesDeclineRequestToJoinTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -- (BOOL)isDomainInvitesDeclineRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesEmailExistingUsers` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -- (BOOL)isDomainInvitesEmailExistingUsers; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesRequestToJoinTeam` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -- (BOOL)isDomainInvitesRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToNo` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToNo; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToYes` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToYes; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainFail` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -- (BOOL)isDomainVerificationAddDomainFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainSuccess` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -- (BOOL)isDomainVerificationAddDomainSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationRemoveDomain` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -- (BOOL)isDomainVerificationRemoveDomain; - -/// -/// Retrieves whether the union's current tag state has value -/// "enabled_domain_invites". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabledDomainInvites` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "enabled_domain_invites". -/// -- (BOOL)isEnabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCancelKeyDeletion` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyCancelKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCreateKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -- (BOOL)isTeamEncryptionKeyCreateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDeleteKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -- (BOOL)isTeamEncryptionKeyDeleteKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDisableKey` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -- (BOOL)isTeamEncryptionKeyDisableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyEnableKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -- (BOOL)isTeamEncryptionKeyEnableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyRotateKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -- (BOOL)isTeamEncryptionKeyRotateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyScheduleKeyDeletion` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyScheduleKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "apply_naming_convention". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `applyNamingConvention` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "apply_naming_convention". -/// -- (BOOL)isApplyNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value "create_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createFolder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "create_folder". -/// -- (BOOL)isCreateFolder; - -/// -/// Retrieves whether the union's current tag state has value "file_add". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAdd` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_add". -/// -- (BOOL)isFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_from_automation". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddFromAutomation` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_add_from_automation". -/// -- (BOOL)isFileAddFromAutomation; - -/// -/// Retrieves whether the union's current tag state has value "file_copy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCopy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_copy". -/// -- (BOOL)isFileCopy; - -/// -/// Retrieves whether the union's current tag state has value "file_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_delete". -/// -- (BOOL)isFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDownload` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_download". -/// -- (BOOL)isFileDownload; - -/// -/// Retrieves whether the union's current tag state has value "file_edit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEdit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_edit". -/// -- (BOOL)isFileEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_get_copy_reference". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileGetCopyReference` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_get_copy_reference". -/// -- (BOOL)isFileGetCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingLockStatusChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -- (BOOL)isFileLockingLockStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "file_move". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileMove` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_move". -/// -- (BOOL)isFileMove; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_permanently_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePermanentlyDelete` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_permanently_delete". -/// -- (BOOL)isFilePermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_preview". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePreview` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_preview". -/// -- (BOOL)isFilePreview; - -/// -/// Retrieves whether the union's current tag state has value "file_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_rename". -/// -- (BOOL)isFileRename; - -/// -/// Retrieves whether the union's current tag state has value "file_restore". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRestore` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_restore". -/// -- (BOOL)isFileRestore; - -/// -/// Retrieves whether the union's current tag state has value "file_revert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRevert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_revert". -/// -- (BOOL)isFileRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rollback_changes". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRollbackChanges` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_rollback_changes". -/// -- (BOOL)isFileRollbackChanges; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_save_copy_reference". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileSaveCopyReference` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_save_copy_reference". -/// -- (BOOL)isFileSaveCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewDescriptionChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -- (BOOL)isFolderOverviewDescriptionChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemPinned` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -- (BOOL)isFolderOverviewItemPinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemUnpinned` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -- (BOOL)isFolderOverviewItemUnpinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelAdded` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_added". -/// -- (BOOL)isObjectLabelAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelRemoved` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_removed". -/// -- (BOOL)isObjectLabelRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_updated_value". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelUpdatedValue` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_updated_value". -/// -- (BOOL)isObjectLabelUpdatedValue; - -/// -/// Retrieves whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizeFolderWithTidy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -- (BOOL)isOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_delete". -/// -- (BOOL)isReplayFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "rewind_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindFolder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "rewind_folder". -/// -- (BOOL)isRewindFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_naming_convention". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoNamingConvention` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_naming_convention". -/// -- (BOOL)isUndoNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoOrganizeFolderWithTidy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -- (BOOL)isUndoOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value "user_tags_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsAdded` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_tags_added". -/// -- (BOOL)isUserTagsAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsRemoved` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_tags_removed". -/// -- (BOOL)isUserTagsRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestReceiveFile` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -- (BOOL)isEmailIngestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_change". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestChange` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_change". -/// -- (BOOL)isFileRequestChange; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_close". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestClose` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_close". -/// -- (BOOL)isFileRequestClose; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_create". -/// -- (BOOL)isFileRequestCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_delete". -/// -- (BOOL)isFileRequestDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_receive_file". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestReceiveFile` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_receive_file". -/// -- (BOOL)isFileRequestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddExternalId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_add_external_id". -/// -- (BOOL)isGroupAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_add_member". -/// -- (BOOL)isGroupAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_external_id". -/// -- (BOOL)isGroupChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_management_type". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeManagementType` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_management_type". -/// -- (BOOL)isGroupChangeManagementType; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_member_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeMemberRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_member_role". -/// -- (BOOL)isGroupChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value "group_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_create". -/// -- (BOOL)isGroupCreate; - -/// -/// Retrieves whether the union's current tag state has value "group_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_delete". -/// -- (BOOL)isGroupDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_description_updated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDescriptionUpdated` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_description_updated". -/// -- (BOOL)isGroupDescriptionUpdated; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_join_policy_updated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupJoinPolicyUpdated` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_join_policy_updated". -/// -- (BOOL)isGroupJoinPolicyUpdated; - -/// -/// Retrieves whether the union's current tag state has value "group_moved". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupMoved` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_moved". -/// -- (BOOL)isGroupMoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_external_id". -/// -- (BOOL)isGroupRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_member". -/// -- (BOOL)isGroupRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value "group_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_rename". -/// -- (BOOL)isGroupRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountLockOrUnlocked` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -- (BOOL)isAccountLockOrUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "emm_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_error". -/// -- (BOOL)isEmmError; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedInViaTrustedTeams` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedInViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedOutViaTrustedTeams` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedOutViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value "login_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginFail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "login_fail". -/// -- (BOOL)isLoginFail; - -/// -/// Retrieves whether the union's current tag state has value "login_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginSuccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "login_success". -/// -- (BOOL)isLoginSuccess; - -/// -/// Retrieves whether the union's current tag state has value "logout". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `logout` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "logout". -/// -- (BOOL)isLogout; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_end". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionEnd` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_end". -/// -- (BOOL)isResellerSupportSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_start". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionStart` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_start". -/// -- (BOOL)isResellerSupportSessionStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionEnd` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -- (BOOL)isSignInAsSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionStart` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -- (BOOL)isSignInAsSessionStart; - -/// -/// Retrieves whether the union's current tag state has value "sso_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_error". -/// -- (BOOL)isSsoError; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupAdminInvitationSent` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -- (BOOL)isBackupAdminInvitationSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_invitation_opened". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupInvitationOpened` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_invitation_opened". -/// -- (BOOL)isBackupInvitationOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_team_invite_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createTeamInviteLink` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "create_team_invite_link". -/// -- (BOOL)isCreateTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_team_invite_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deleteTeamInviteLink` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "delete_team_invite_link". -/// -- (BOOL)isDeleteTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_add_external_id". -/// -- (BOOL)isMemberAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value "member_add_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_add_name". -/// -- (BOOL)isMemberAddName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_admin_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeAdminRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_admin_role". -/// -- (BOOL)isMemberChangeAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeEmail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_email". -/// -- (BOOL)isMemberChangeEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_external_id". -/// -- (BOOL)isMemberChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_membership_type". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeMembershipType` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_membership_type". -/// -- (BOOL)isMemberChangeMembershipType; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_name". -/// -- (BOOL)isMemberChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_reseller_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeResellerRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_reseller_role". -/// -- (BOOL)isMemberChangeResellerRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeStatus` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_status". -/// -- (BOOL)isMemberChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteManualContacts` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -- (BOOL)isMemberDeleteManualContacts; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteProfilePhoto` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -- (BOOL)isMemberDeleteProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberPermanentlyDeleteAccountContents` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -- (BOOL)isMemberPermanentlyDeleteAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_remove_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRemoveExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_remove_external_id". -/// -- (BOOL)isMemberRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_set_profile_photo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSetProfilePhoto` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_set_profile_photo". -/// -- (BOOL)isMemberSetProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddCustomQuota` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsAddCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCustomQuota` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsChangeCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeStatus` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -- (BOOL)isMemberSpaceLimitsChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveCustomQuota` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsRemoveCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value "member_suggest". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggest` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_suggest". -/// -- (BOOL)isMemberSuggest; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberTransferAccountContents` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -- (BOOL)isMemberTransferAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pendingSecondaryEmailAdded` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -- (BOOL)isPendingSecondaryEmailAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailDeleted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_deleted". -/// -- (BOOL)isSecondaryEmailDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_verified". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailVerified` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_verified". -/// -- (BOOL)isSecondaryEmailVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryMailsPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -- (BOOL)isSecondaryMailsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value "binder_add_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddPage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "binder_add_page". -/// -- (BOOL)isBinderAddPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddSection` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_add_section". -/// -- (BOOL)isBinderAddSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemovePage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_page". -/// -- (BOOL)isBinderRemovePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemoveSection` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_section". -/// -- (BOOL)isBinderRemoveSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenamePage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_page". -/// -- (BOOL)isBinderRenamePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenameSection` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_section". -/// -- (BOOL)isBinderRenameSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderPage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_page". -/// -- (BOOL)isBinderReorderPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderSection` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_section". -/// -- (BOOL)isBinderReorderSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_member". -/// -- (BOOL)isPaperContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddToFolder` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -- (BOOL)isPaperContentAddToFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_archive". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentArchive` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_archive". -/// -- (BOOL)isPaperContentArchive; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_create". -/// -- (BOOL)isPaperContentCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentPermanentlyDelete` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -- (BOOL)isPaperContentPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveFromFolder` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -- (BOOL)isPaperContentRemoveFromFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_member". -/// -- (BOOL)isPaperContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_rename". -/// -- (BOOL)isPaperContentRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_restore". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRestore` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_restore". -/// -- (BOOL)isPaperContentRestore; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocAddComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -- (BOOL)isPaperDocAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeMemberRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -- (BOOL)isPaperDocChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSharingPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -- (BOOL)isPaperDocChangeSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSubscription` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -- (BOOL)isPaperDocChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeleted` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_deleted". -/// -- (BOOL)isPaperDocDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeleteComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -- (BOOL)isPaperDocDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDownload` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_download". -/// -- (BOOL)isPaperDocDownload; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_edit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEdit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_edit". -/// -- (BOOL)isPaperDocEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEditComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -- (BOOL)isPaperDocEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_followed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocFollowed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_followed". -/// -- (BOOL)isPaperDocFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_mention". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocMention` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_mention". -/// -- (BOOL)isPaperDocMention; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocOwnershipChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -- (BOOL)isPaperDocOwnershipChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_request_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRequestAccess` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_request_access". -/// -- (BOOL)isPaperDocRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocResolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -- (BOOL)isPaperDocResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_revert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRevert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_revert". -/// -- (BOOL)isPaperDocRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocSlackShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -- (BOOL)isPaperDocSlackShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTeamInvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -- (BOOL)isPaperDocTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_trashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_trashed". -/// -- (BOOL)isPaperDocTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUnresolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -- (BOOL)isPaperDocUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUntrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -- (BOOL)isPaperDocUntrashed; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_view". -/// -- (BOOL)isPaperDocView; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_allow". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewAllow` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_allow". -/// -- (BOOL)isPaperExternalViewAllow; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewDefaultTeam` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -- (BOOL)isPaperExternalViewDefaultTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewForbid` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -- (BOOL)isPaperExternalViewForbid; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderChangeSubscription` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -- (BOOL)isPaperFolderChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderDeleted` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_deleted". -/// -- (BOOL)isPaperFolderDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_followed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderFollowed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_followed". -/// -- (BOOL)isPaperFolderFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderTeamInvite` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -- (BOOL)isPaperFolderTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkChangePermission` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -- (BOOL)isPaperPublishedLinkChangePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkCreate` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_create". -/// -- (BOOL)isPaperPublishedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -- (BOOL)isPaperPublishedLinkDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkView` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_view". -/// -- (BOOL)isPaperPublishedLinkView; - -/// -/// Retrieves whether the union's current tag state has value "password_change". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordChange` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "password_change". -/// -- (BOOL)isPasswordChange; - -/// -/// Retrieves whether the union's current tag state has value "password_reset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordReset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "password_reset". -/// -- (BOOL)isPasswordReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_all". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordResetAll` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_reset_all". -/// -- (BOOL)isPasswordResetAll; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report". -/// -- (BOOL)isClassificationCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReportFail` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_fail". -/// -- (BOOL)isClassificationCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateExceptionsReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -- (BOOL)isEmmCreateExceptionsReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_usage_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateUsageReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_usage_report". -/// -- (BOOL)isEmmCreateUsageReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report". -/// -- (BOOL)isExportMembersReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReportFail` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_fail". -/// -- (BOOL)isExportMembersReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_create_report". -/// -- (BOOL)isExternalSharingCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingReportFailed` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -- (BOOL)isExternalSharingReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenCreateReport` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -- (BOOL)isNoExpirationLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenReportFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -- (BOOL)isNoExpirationLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -- (BOOL)isNoPasswordLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenReportFailed` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -- (BOOL)isNoPasswordLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewCreateReport` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -- (BOOL)isNoPasswordLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewReportFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -- (BOOL)isNoPasswordLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -- (BOOL)isOutdatedLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewReportFailed` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -- (BOOL)isOutdatedLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_admin_export_start". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAdminExportStart` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_admin_export_start". -/// -- (BOOL)isPaperAdminExportStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -- (BOOL)isRansomwareAlertCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReportFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -- (BOOL)isRansomwareAlertCreateReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncCreateAdminPrivilegeReport` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -- (BOOL)isSmartSyncCreateAdminPrivilegeReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report". -/// -- (BOOL)isTeamActivityCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReportFail` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -- (BOOL)isTeamActivityCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "collection_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `collectionShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "collection_share". -/// -- (BOOL)isCollectionShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_file_add". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersFileAdd` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_file_add". -/// -- (BOOL)isFileTransfersFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDelete` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -- (BOOL)isFileTransfersTransferDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDownload` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -- (BOOL)isFileTransfersTransferDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferSend` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -- (BOOL)isFileTransfersTransferSend; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferView` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -- (BOOL)isFileTransfersTransferView; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_invite_only". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclInviteOnly` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_invite_only". -/// -- (BOOL)isNoteAclInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "note_acl_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclLink` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "note_acl_link". -/// -- (BOOL)isNoteAclLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_team_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclTeamLink` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_team_link". -/// -- (BOOL)isNoteAclTeamLink; - -/// -/// Retrieves whether the union's current tag state has value "note_shared". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteShared` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "note_shared". -/// -- (BOOL)isNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_share_receive". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteShareReceive` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_share_receive". -/// -- (BOOL)isNoteShareReceive; - -/// -/// Retrieves whether the union's current tag state has value -/// "open_note_shared". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `openNoteShared` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "open_note_shared". -/// -- (BOOL)isOpenNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkCreated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -- (BOOL)isReplayFileSharedLinkCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkModified` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -- (BOOL)isReplayFileSharedLinkModified; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_add". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamAdd` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_add". -/// -- (BOOL)isReplayProjectTeamAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamDelete` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_delete". -/// -- (BOOL)isReplayProjectTeamDelete; - -/// -/// Retrieves whether the union's current tag state has value "sf_add_group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAddGroup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_add_group". -/// -- (BOOL)isSfAddGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAllowNonMembersToViewSharedLinks` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -- (BOOL)isSfAllowNonMembersToViewSharedLinks; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfExternalInviteWarn` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -- (BOOL)isSfExternalInviteWarn; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_fb_invite". -/// -- (BOOL)isSfFbInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInviteChangeRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -- (BOOL)isSfFbInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_uninvite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbUninvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_fb_uninvite". -/// -- (BOOL)isSfFbUninvite; - -/// -/// Retrieves whether the union's current tag state has value "sf_invite_group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfInviteGroup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_invite_group". -/// -- (BOOL)isSfInviteGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_grant_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamGrantAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_grant_access". -/// -- (BOOL)isSfTeamGrantAccess; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_team_invite". -/// -- (BOOL)isSfTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInviteChangeRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -- (BOOL)isSfTeamInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_join". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoin` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_team_join". -/// -- (BOOL)isSfTeamJoin; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoinFromOobLink` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -- (BOOL)isSfTeamJoinFromOobLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_uninvite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamUninvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_team_uninvite". -/// -- (BOOL)isSfTeamUninvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddInvitees` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -- (BOOL)isSharedContentAddInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -- (BOOL)isSharedContentAddLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkPassword` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -- (BOOL)isSharedContentAddLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_member". -/// -- (BOOL)isSharedContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeDownloadsPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -- (BOOL)isSharedContentChangeDownloadsPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeInviteeRole` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -- (BOOL)isSharedContentChangeInviteeRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkAudience` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -- (BOOL)isSharedContentChangeLinkAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkExpiry` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -- (BOOL)isSharedContentChangeLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkPassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -- (BOOL)isSharedContentChangeLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeMemberRole` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -- (BOOL)isSharedContentChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeViewerInfoPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -- (BOOL)isSharedContentChangeViewerInfoPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentClaimInvitation` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -- (BOOL)isSharedContentClaimInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_copy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentCopy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_copy". -/// -- (BOOL)isSharedContentCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentDownload` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_download". -/// -- (BOOL)isSharedContentDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRelinquishMembership` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -- (BOOL)isSharedContentRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveInvitees` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -- (BOOL)isSharedContentRemoveInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkExpiry` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -- (BOOL)isSharedContentRemoveLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkPassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -- (BOOL)isSharedContentRemoveLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_member". -/// -- (BOOL)isSharedContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_request_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRequestAccess` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_request_access". -/// -- (BOOL)isSharedContentRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreInvitees` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -- (BOOL)isSharedContentRestoreInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_member". -/// -- (BOOL)isSharedContentRestoreMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_unshare". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentUnshare` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_unshare". -/// -- (BOOL)isSharedContentUnshare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_view". -/// -- (BOOL)isSharedContentView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeLinkPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -- (BOOL)isSharedFolderChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersInheritancePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -- (BOOL)isSharedFolderChangeMembersInheritancePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersManagementPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -- (BOOL)isSharedFolderChangeMembersManagementPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -- (BOOL)isSharedFolderChangeMembersPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_create". -/// -- (BOOL)isSharedFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderDeclineInvitation` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -- (BOOL)isSharedFolderDeclineInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_mount". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderMount` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_mount". -/// -- (BOOL)isSharedFolderMount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_nest". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderNest` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_nest". -/// -- (BOOL)isSharedFolderNest; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderTransferOwnership` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -- (BOOL)isSharedFolderTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_unmount". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderUnmount` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_unmount". -/// -- (BOOL)isSharedFolderUnmount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkAddExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -- (BOOL)isSharedLinkAddExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -- (BOOL)isSharedLinkChangeExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeVisibility` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -- (BOOL)isSharedLinkChangeVisibility; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_copy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCopy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "shared_link_copy". -/// -- (BOOL)isSharedLinkCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_create". -/// -- (BOOL)isSharedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_disable". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDisable` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_disable". -/// -- (BOOL)isSharedLinkDisable; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDownload` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_download". -/// -- (BOOL)isSharedLinkDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkRemoveExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -- (BOOL)isSharedLinkRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddExpiration` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -- (BOOL)isSharedLinkSettingsAddExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddPassword` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -- (BOOL)isSharedLinkSettingsAddPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadDisabled` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadEnabled` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeAudience` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -- (BOOL)isSharedLinkSettingsChangeAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeExpiration` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -- (BOOL)isSharedLinkSettingsChangeExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangePassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -- (BOOL)isSharedLinkSettingsChangePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemoveExpiration` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -- (BOOL)isSharedLinkSettingsRemoveExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemovePassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -- (BOOL)isSharedLinkSettingsRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "shared_link_share". -/// -- (BOOL)isSharedLinkShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "shared_link_view". -/// -- (BOOL)isSharedLinkView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_note_opened". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedNoteOpened` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_note_opened". -/// -- (BOOL)isSharedNoteOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelDisableDownloads` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -- (BOOL)isShmodelDisableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelEnableDownloads` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -- (BOOL)isShmodelEnableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_group_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelGroupShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_group_share". -/// -- (BOOL)isShmodelGroupShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_access_granted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAccessGranted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_access_granted". -/// -- (BOOL)isShowcaseAccessGranted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAddMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_add_member". -/// -- (BOOL)isShowcaseAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_archived". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseArchived` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_archived". -/// -- (BOOL)isShowcaseArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseCreated` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_created". -/// -- (BOOL)isShowcaseCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_delete_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseDeleteComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_delete_comment". -/// -- (BOOL)isShowcaseDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value "showcase_edited". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEdited` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_edited". -/// -- (BOOL)isShowcaseEdited; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edit_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEditComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_edit_comment". -/// -- (BOOL)isShowcaseEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileAdded` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_added". -/// -- (BOOL)isShowcaseFileAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileDownload` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_download". -/// -- (BOOL)isShowcaseFileDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileRemoved` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_removed". -/// -- (BOOL)isShowcaseFileRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_view". -/// -- (BOOL)isShowcaseFileView; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePermanentlyDeleted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -- (BOOL)isShowcasePermanentlyDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_post_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePostComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_post_comment". -/// -- (BOOL)isShowcasePostComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRemoveMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_remove_member". -/// -- (BOOL)isShowcaseRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_renamed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRenamed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_renamed". -/// -- (BOOL)isShowcaseRenamed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_request_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRequestAccess` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_request_access". -/// -- (BOOL)isShowcaseRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseResolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -- (BOOL)isShowcaseResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_restored". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRestored` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_restored". -/// -- (BOOL)isShowcaseRestored; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_trashed". -/// -- (BOOL)isShowcaseTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashedDeprecated` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -- (BOOL)isShowcaseTrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUnresolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -- (BOOL)isShowcaseUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed". -/// -- (BOOL)isShowcaseUntrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashedDeprecated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -- (BOOL)isShowcaseUntrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value "showcase_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_view". -/// -- (BOOL)isShowcaseView; - -/// -/// Retrieves whether the union's current tag state has value "sso_add_cert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddCert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_add_cert". -/// -- (BOOL)isSsoAddCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_login_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLoginUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_add_login_url". -/// -- (BOOL)isSsoAddLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_logout_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLogoutUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_logout_url". -/// -- (BOOL)isSsoAddLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value "sso_change_cert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeCert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_change_cert". -/// -- (BOOL)isSsoChangeCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_login_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLoginUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_login_url". -/// -- (BOOL)isSsoChangeLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_logout_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLogoutUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_logout_url". -/// -- (BOOL)isSsoChangeLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeSamlIdentityMode` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -- (BOOL)isSsoChangeSamlIdentityMode; - -/// -/// Retrieves whether the union's current tag state has value "sso_remove_cert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveCert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_remove_cert". -/// -- (BOOL)isSsoRemoveCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_login_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLoginUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_login_url". -/// -- (BOOL)isSsoRemoveLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLogoutUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -- (BOOL)isSsoRemoveLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderChangeStatus` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_change_status". -/// -- (BOOL)isTeamFolderChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_create". -/// -- (BOOL)isTeamFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_downgrade". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderDowngrade` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_downgrade". -/// -- (BOOL)isTeamFolderDowngrade; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderPermanentlyDelete` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -- (BOOL)isTeamFolderPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_rename". -/// -- (BOOL)isTeamFolderRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncSettingsChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -- (BOOL)isTeamSelectiveSyncSettingsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_policy". -/// -- (BOOL)isAccountCaptureChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminEmailRemindersChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -- (BOOL)isAdminEmailRemindersChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_disabled". -/// -- (BOOL)isAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadEnabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_enabled". -/// -- (BOOL)isAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_permissions_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appPermissionsChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_permissions_changed". -/// -- (BOOL)isAppPermissionsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cameraUploadsPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -- (BOOL)isCameraUploadsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `captureTranscriptPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -- (BOOL)isCaptureTranscriptPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_change_policy". -/// -- (BOOL)isClassificationChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `computerBackupPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -- (BOOL)isComputerBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contentAdministrationPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -- (BOOL)isContentAdministrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionChangePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -- (BOOL)isDataPlacementRestrictionChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionSatisfyPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -- (BOOL)isDataPlacementRestrictionSatisfyPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsAddException` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -- (BOOL)isDeviceApprovalsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeDesktopPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -- (BOOL)isDeviceApprovalsChangeDesktopPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeMobilePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -- (BOOL)isDeviceApprovalsChangeMobilePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeOverageAction` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -- (BOOL)isDeviceApprovalsChangeOverageAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeUnlinkAction` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -- (BOOL)isDeviceApprovalsChangeUnlinkAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsRemoveException` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -- (BOOL)isDeviceApprovalsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsAddMembers` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -- (BOOL)isDirectoryRestrictionsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsRemoveMembers` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -- (BOOL)isDirectoryRestrictionsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -- (BOOL)isDropboxPasswordsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -- (BOOL)isEmailIngestPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmAddException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_add_exception". -/// -- (BOOL)isEmmAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_change_policy". -/// -- (BOOL)isEmmChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRemoveException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_remove_exception". -/// -- (BOOL)isEmmRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `extendedVersionHistoryChangePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -- (BOOL)isExtendedVersionHistoryChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -- (BOOL)isExternalDriveBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_comments_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCommentsChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_comments_change_policy". -/// -- (BOOL)isFileCommentsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -- (BOOL)isFileLockingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileProviderMigrationPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -- (BOOL)isFileProviderMigrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_change_policy". -/// -- (BOOL)isFileRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsEnabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -- (BOOL)isFileRequestsEmailsEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsRestrictedToTeamOnly` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -- (BOOL)isFileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -- (BOOL)isFileTransfersPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderLinkRestrictionPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -- (BOOL)isFolderLinkRestrictionPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "google_sso_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `googleSsoChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "google_sso_change_policy". -/// -- (BOOL)isGoogleSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupUserManagementChangePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -- (BOOL)isGroupUserManagementChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_policy_changed". -/// -- (BOOL)isIntegrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `inviteAcceptanceEmailPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -- (BOOL)isInviteAcceptanceEmailPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_requests_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRequestsChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_requests_change_policy". -/// -- (BOOL)isMemberRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSendInvitePolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -- (BOOL)isMemberSendInvitePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddException` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -- (BOOL)isMemberSpaceLimitsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCapsTypePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -- (BOOL)isMemberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -- (BOOL)isMemberSpaceLimitsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveException` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -- (BOOL)isMemberSpaceLimitsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggestionsChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -- (BOOL)isMemberSuggestionsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `microsoftOfficeAddinChangePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -- (BOOL)isMicrosoftOfficeAddinChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "network_control_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `networkControlChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "network_control_change_policy". -/// -- (BOOL)isNetworkControlChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeDeploymentPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -- (BOOL)isPaperChangeDeploymentPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberLinkPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -- (BOOL)isPaperChangeMemberLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberPolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_policy". -/// -- (BOOL)isPaperChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_policy". -/// -- (BOOL)isPaperChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDefaultFolderPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -- (BOOL)isPaperDefaultFolderPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDesktopPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -- (BOOL)isPaperDesktopPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupAddition` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -- (BOOL)isPaperEnabledUsersGroupAddition; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupRemoval` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -- (BOOL)isPaperEnabledUsersGroupRemoval; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordStrengthRequirementsChangePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -- (BOOL)isPasswordStrengthRequirementsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `permanentDeleteChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -- (BOOL)isPermanentDeleteChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -- (BOOL)isResellerSupportChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "rewind_policy_changed". -/// -- (BOOL)isRewindPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sendForSignaturePolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -- (BOOL)isSendForSignaturePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeFolderJoinPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -- (BOOL)isSharingChangeFolderJoinPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkAllowChangeExpirationPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -- (BOOL)isSharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkDefaultExpirationPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -- (BOOL)isSharingChangeLinkDefaultExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkEnforcePasswordPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -- (BOOL)isSharingChangeLinkEnforcePasswordPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkPolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -- (BOOL)isSharingChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeMemberPolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -- (BOOL)isSharingChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeDownloadPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -- (BOOL)isShowcaseChangeDownloadPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeEnabledPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -- (BOOL)isShowcaseChangeEnabledPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeExternalSharingPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -- (BOOL)isShowcaseChangeExternalSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smarterSmartSyncPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -- (BOOL)isSmarterSmartSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -- (BOOL)isSmartSyncChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncNotOptOut` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -- (BOOL)isSmartSyncNotOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncOptOut` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -- (BOOL)isSmartSyncOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_change_policy". -/// -- (BOOL)isSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamBrandingPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -- (BOOL)isTeamBrandingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamExtensionsPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -- (BOOL)isTeamExtensionsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -- (BOOL)isTeamSelectiveSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharingWhitelistSubjectsChanged` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -- (BOOL)isTeamSharingWhitelistSubjectsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_add_exception". -/// -- (BOOL)isTfaAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_change_policy". -/// -- (BOOL)isTfaChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_exception". -/// -- (BOOL)isTfaRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_account_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `twoAccountChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "two_account_change_policy". -/// -- (BOOL)isTwoAccountChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `viewerInfoPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -- (BOOL)isViewerInfoPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `watermarkingPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -- (BOOL)isWatermarkingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeActiveSessionLimit` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -- (BOOL)isWebSessionsChangeActiveSessionLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeFixedLengthPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -- (BOOL)isWebSessionsChangeFixedLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeIdleLengthPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -- (BOOL)isWebSessionsChangeIdleLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestSuccessful` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -- (BOOL)isDataResidencyMigrationRequestSuccessful; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestUnsuccessful` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -- (BOOL)isDataResidencyMigrationRequestUnsuccessful; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_from". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeFrom` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_merge_from". -/// -- (BOOL)isTeamMergeFrom; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_to". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeTo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_merge_to". -/// -- (BOOL)isTeamMergeTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_background". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddBackground` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_background". -/// -- (BOOL)isTeamProfileAddBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_logo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddLogo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_logo". -/// -- (BOOL)isTeamProfileAddLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_background". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeBackground` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_background". -/// -- (BOOL)isTeamProfileChangeBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeDefaultLanguage` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -- (BOOL)isTeamProfileChangeDefaultLanguage; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_logo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeLogo` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_logo". -/// -- (BOOL)isTeamProfileChangeLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeName` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_name". -/// -- (BOOL)isTeamProfileChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_background". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveBackground` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_background". -/// -- (BOOL)isTeamProfileRemoveBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveLogo` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -- (BOOL)isTeamProfileRemoveLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddBackupPhone` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -- (BOOL)isTfaAddBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_security_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddSecurityKey` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_security_key". -/// -- (BOOL)isTfaAddSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeBackupPhone` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -- (BOOL)isTfaChangeBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeStatus` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_change_status". -/// -- (BOOL)isTfaChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveBackupPhone` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -- (BOOL)isTfaRemoveBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveSecurityKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -- (BOOL)isTfaRemoveSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value "tfa_reset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaReset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_reset". -/// -- (BOOL)isTfaReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseAdminRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -- (BOOL)isChangedEnterpriseAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseConnectedTeamStatus` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -- (BOOL)isChangedEnterpriseConnectedTeamStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSession` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -- (BOOL)isEndedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSessionDeprecated` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -- (BOOL)isEndedEnterpriseAdminSessionDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enterpriseSettingsLocking` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -- (BOOL)isEnterpriseSettingsLocking; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminChangeStatus` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_change_status". -/// -- (BOOL)isGuestAdminChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `startedEnterpriseAdminSession` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -- (BOOL)isStartedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAccepted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -- (BOOL)isTeamMergeRequestAccepted; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAutoCanceled` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -- (BOOL)isTeamMergeRequestAutoCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -- (BOOL)isTeamMergeRequestCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpired` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired". -/// -- (BOOL)isTeamMergeRequestExpired; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminder` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -- (BOOL)isTeamMergeRequestReminder; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRevoked` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -- (BOOL)isTeamMergeRequestRevoked; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventType` union. -/// -@interface DBTEAMLOGEventTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventType *)instance; - -/// -/// Deserializes `DBTEAMLOGEventType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventType` object. -/// -+ (DBTEAMLOGEventType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventTypeArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventTypeArg.h deleted file mode 100644 index 118352de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGEventTypeArg.h +++ /dev/null @@ -1,11299 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEventTypeArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventTypeArg` union. -/// -/// The type of the event. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventTypeArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventTypeArgTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventTypeArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventTypeArgTag) { - /// (admin_alerting) Changed an alert state - DBTEAMLOGEventTypeArgAdminAlertingAlertStateChanged, - - /// (admin_alerting) Changed an alert setting - DBTEAMLOGEventTypeArgAdminAlertingChangedAlertConfig, - - /// (admin_alerting) Triggered security alert - DBTEAMLOGEventTypeArgAdminAlertingTriggeredAlert, - - /// (admin_alerting) Completed ransomware restore process - DBTEAMLOGEventTypeArgRansomwareRestoreProcessCompleted, - - /// (admin_alerting) Started ransomware restore process - DBTEAMLOGEventTypeArgRansomwareRestoreProcessStarted, - - /// (apps) Failed to connect app for member - DBTEAMLOGEventTypeArgAppBlockedByPermissions, - - /// (apps) Linked app for team - DBTEAMLOGEventTypeArgAppLinkTeam, - - /// (apps) Linked app for member - DBTEAMLOGEventTypeArgAppLinkUser, - - /// (apps) Unlinked app for team - DBTEAMLOGEventTypeArgAppUnlinkTeam, - - /// (apps) Unlinked app for member - DBTEAMLOGEventTypeArgAppUnlinkUser, - - /// (apps) Connected integration for member - DBTEAMLOGEventTypeArgIntegrationConnected, - - /// (apps) Disconnected integration for member - DBTEAMLOGEventTypeArgIntegrationDisconnected, - - /// (comments) Added file comment - DBTEAMLOGEventTypeArgFileAddComment, - - /// (comments) Subscribed to or unsubscribed from comment notifications for - /// file - DBTEAMLOGEventTypeArgFileChangeCommentSubscription, - - /// (comments) Deleted file comment - DBTEAMLOGEventTypeArgFileDeleteComment, - - /// (comments) Edited file comment - DBTEAMLOGEventTypeArgFileEditComment, - - /// (comments) Liked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeArgFileLikeComment, - - /// (comments) Resolved file comment - DBTEAMLOGEventTypeArgFileResolveComment, - - /// (comments) Unliked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeArgFileUnlikeComment, - - /// (comments) Unresolved file comment - DBTEAMLOGEventTypeArgFileUnresolveComment, - - /// (data_governance) Added folders to policy - DBTEAMLOGEventTypeArgGovernancePolicyAddFolders, - - /// (data_governance) Couldn't add a folder to a policy - DBTEAMLOGEventTypeArgGovernancePolicyAddFolderFailed, - - /// (data_governance) Content disposed - DBTEAMLOGEventTypeArgGovernancePolicyContentDisposed, - - /// (data_governance) Activated a new policy - DBTEAMLOGEventTypeArgGovernancePolicyCreate, - - /// (data_governance) Deleted a policy - DBTEAMLOGEventTypeArgGovernancePolicyDelete, - - /// (data_governance) Edited policy - DBTEAMLOGEventTypeArgGovernancePolicyEditDetails, - - /// (data_governance) Changed policy duration - DBTEAMLOGEventTypeArgGovernancePolicyEditDuration, - - /// (data_governance) Created a policy download - DBTEAMLOGEventTypeArgGovernancePolicyExportCreated, - - /// (data_governance) Removed a policy download - DBTEAMLOGEventTypeArgGovernancePolicyExportRemoved, - - /// (data_governance) Removed folders from policy - DBTEAMLOGEventTypeArgGovernancePolicyRemoveFolders, - - /// (data_governance) Created a summary report for a policy - DBTEAMLOGEventTypeArgGovernancePolicyReportCreated, - - /// (data_governance) Downloaded content from a policy - DBTEAMLOGEventTypeArgGovernancePolicyZipPartDownloaded, - - /// (data_governance) Activated a hold - DBTEAMLOGEventTypeArgLegalHoldsActivateAHold, - - /// (data_governance) Added members to a hold - DBTEAMLOGEventTypeArgLegalHoldsAddMembers, - - /// (data_governance) Edited details for a hold - DBTEAMLOGEventTypeArgLegalHoldsChangeHoldDetails, - - /// (data_governance) Renamed a hold - DBTEAMLOGEventTypeArgLegalHoldsChangeHoldName, - - /// (data_governance) Exported hold - DBTEAMLOGEventTypeArgLegalHoldsExportAHold, - - /// (data_governance) Canceled export for a hold - DBTEAMLOGEventTypeArgLegalHoldsExportCancelled, - - /// (data_governance) Downloaded export for a hold - DBTEAMLOGEventTypeArgLegalHoldsExportDownloaded, - - /// (data_governance) Removed export for a hold - DBTEAMLOGEventTypeArgLegalHoldsExportRemoved, - - /// (data_governance) Released a hold - DBTEAMLOGEventTypeArgLegalHoldsReleaseAHold, - - /// (data_governance) Removed members from a hold - DBTEAMLOGEventTypeArgLegalHoldsRemoveMembers, - - /// (data_governance) Created a summary report for a hold - DBTEAMLOGEventTypeArgLegalHoldsReportAHold, - - /// (devices) Changed IP address associated with active desktop session - DBTEAMLOGEventTypeArgDeviceChangeIpDesktop, - - /// (devices) Changed IP address associated with active mobile session - DBTEAMLOGEventTypeArgDeviceChangeIpMobile, - - /// (devices) Changed IP address associated with active web session - DBTEAMLOGEventTypeArgDeviceChangeIpWeb, - - /// (devices) Failed to delete all files from unlinked device - DBTEAMLOGEventTypeArgDeviceDeleteOnUnlinkFail, - - /// (devices) Deleted all files from unlinked device - DBTEAMLOGEventTypeArgDeviceDeleteOnUnlinkSuccess, - - /// (devices) Failed to link device - DBTEAMLOGEventTypeArgDeviceLinkFail, - - /// (devices) Linked device - DBTEAMLOGEventTypeArgDeviceLinkSuccess, - - /// (devices) Disabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeArgDeviceManagementDisabled, - - /// (devices) Enabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeArgDeviceManagementEnabled, - - /// (devices) Enabled/disabled backup for computer - DBTEAMLOGEventTypeArgDeviceSyncBackupStatusChanged, - - /// (devices) Disconnected device - DBTEAMLOGEventTypeArgDeviceUnlink, - - /// (devices) Exported passwords - DBTEAMLOGEventTypeArgDropboxPasswordsExported, - - /// (devices) Enrolled new Dropbox Passwords device - DBTEAMLOGEventTypeArgDropboxPasswordsNewDeviceEnrolled, - - /// (devices) Refreshed auth token used for setting up EMM - DBTEAMLOGEventTypeArgEmmRefreshAuthToken, - - /// (devices) Checked external drive backup eligibility status - DBTEAMLOGEventTypeArgExternalDriveBackupEligibilityStatusChecked, - - /// (devices) Modified external drive backup - DBTEAMLOGEventTypeArgExternalDriveBackupStatusChanged, - - /// (domains) Granted/revoked option to enable account capture on team - /// domains - DBTEAMLOGEventTypeArgAccountCaptureChangeAvailability, - - /// (domains) Account-captured user migrated account to team - DBTEAMLOGEventTypeArgAccountCaptureMigrateAccount, - - /// (domains) Sent account capture email to all unmanaged members - DBTEAMLOGEventTypeArgAccountCaptureNotificationEmailsSent, - - /// (domains) Account-captured user changed account email to personal email - DBTEAMLOGEventTypeArgAccountCaptureRelinquishAccount, - - /// (domains) Disabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeArgDisabledDomainInvites, - - /// (domains) Approved user's request to join team - DBTEAMLOGEventTypeArgDomainInvitesApproveRequestToJoinTeam, - - /// (domains) Declined user's request to join team - DBTEAMLOGEventTypeArgDomainInvitesDeclineRequestToJoinTeam, - - /// (domains) Sent domain invites to existing domain accounts (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeArgDomainInvitesEmailExistingUsers, - - /// (domains) Requested to join team - DBTEAMLOGEventTypeArgDomainInvitesRequestToJoinTeam, - - /// (domains) Disabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgDomainInvitesSetInviteNewUserPrefToNo, - - /// (domains) Enabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgDomainInvitesSetInviteNewUserPrefToYes, - - /// (domains) Failed to verify team domain - DBTEAMLOGEventTypeArgDomainVerificationAddDomainFail, - - /// (domains) Verified team domain - DBTEAMLOGEventTypeArgDomainVerificationAddDomainSuccess, - - /// (domains) Removed domain from list of verified team domains - DBTEAMLOGEventTypeArgDomainVerificationRemoveDomain, - - /// (domains) Enabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeArgEnabledDomainInvites, - - /// (encryption) Canceled team encryption key deletion - DBTEAMLOGEventTypeArgTeamEncryptionKeyCancelKeyDeletion, - - /// (encryption) Created team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyCreateKey, - - /// (encryption) Deleted team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyDeleteKey, - - /// (encryption) Disabled team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyDisableKey, - - /// (encryption) Enabled team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyEnableKey, - - /// (encryption) Rotated team encryption key (deprecated, no longer logged) - DBTEAMLOGEventTypeArgTeamEncryptionKeyRotateKey, - - /// (encryption) Scheduled encryption key deletion - DBTEAMLOGEventTypeArgTeamEncryptionKeyScheduleKeyDeletion, - - /// (file_operations) Applied naming convention - DBTEAMLOGEventTypeArgApplyNamingConvention, - - /// (file_operations) Created folders (deprecated, no longer logged) - DBTEAMLOGEventTypeArgCreateFolder, - - /// (file_operations) Added files and/or folders - DBTEAMLOGEventTypeArgFileAdd, - - /// (file_operations) Added files and/or folders from automation - DBTEAMLOGEventTypeArgFileAddFromAutomation, - - /// (file_operations) Copied files and/or folders - DBTEAMLOGEventTypeArgFileCopy, - - /// (file_operations) Deleted files and/or folders - DBTEAMLOGEventTypeArgFileDelete, - - /// (file_operations) Downloaded files and/or folders - DBTEAMLOGEventTypeArgFileDownload, - - /// (file_operations) Edited files - DBTEAMLOGEventTypeArgFileEdit, - - /// (file_operations) Created copy reference to file/folder - DBTEAMLOGEventTypeArgFileGetCopyReference, - - /// (file_operations) Locked/unlocked editing for a file - DBTEAMLOGEventTypeArgFileLockingLockStatusChanged, - - /// (file_operations) Moved files and/or folders - DBTEAMLOGEventTypeArgFileMove, - - /// (file_operations) Permanently deleted files and/or folders - DBTEAMLOGEventTypeArgFilePermanentlyDelete, - - /// (file_operations) Previewed files and/or folders - DBTEAMLOGEventTypeArgFilePreview, - - /// (file_operations) Renamed files and/or folders - DBTEAMLOGEventTypeArgFileRename, - - /// (file_operations) Restored deleted files and/or folders - DBTEAMLOGEventTypeArgFileRestore, - - /// (file_operations) Reverted files to previous version - DBTEAMLOGEventTypeArgFileRevert, - - /// (file_operations) Rolled back file actions - DBTEAMLOGEventTypeArgFileRollbackChanges, - - /// (file_operations) Saved file/folder using copy reference - DBTEAMLOGEventTypeArgFileSaveCopyReference, - - /// (file_operations) Updated folder overview - DBTEAMLOGEventTypeArgFolderOverviewDescriptionChanged, - - /// (file_operations) Pinned item to folder overview - DBTEAMLOGEventTypeArgFolderOverviewItemPinned, - - /// (file_operations) Unpinned item from folder overview - DBTEAMLOGEventTypeArgFolderOverviewItemUnpinned, - - /// (file_operations) Added a label - DBTEAMLOGEventTypeArgObjectLabelAdded, - - /// (file_operations) Removed a label - DBTEAMLOGEventTypeArgObjectLabelRemoved, - - /// (file_operations) Updated a label's value - DBTEAMLOGEventTypeArgObjectLabelUpdatedValue, - - /// (file_operations) Organized a folder with multi-file organize - DBTEAMLOGEventTypeArgOrganizeFolderWithTidy, - - /// (file_operations) Deleted files in Replay - DBTEAMLOGEventTypeArgReplayFileDelete, - - /// (file_operations) Rewound a folder - DBTEAMLOGEventTypeArgRewindFolder, - - /// (file_operations) Reverted naming convention - DBTEAMLOGEventTypeArgUndoNamingConvention, - - /// (file_operations) Removed multi-file organize - DBTEAMLOGEventTypeArgUndoOrganizeFolderWithTidy, - - /// (file_operations) Tagged a file - DBTEAMLOGEventTypeArgUserTagsAdded, - - /// (file_operations) Removed tags - DBTEAMLOGEventTypeArgUserTagsRemoved, - - /// (file_requests) Received files via Email to Dropbox - DBTEAMLOGEventTypeArgEmailIngestReceiveFile, - - /// (file_requests) Changed file request - DBTEAMLOGEventTypeArgFileRequestChange, - - /// (file_requests) Closed file request - DBTEAMLOGEventTypeArgFileRequestClose, - - /// (file_requests) Created file request - DBTEAMLOGEventTypeArgFileRequestCreate, - - /// (file_requests) Delete file request - DBTEAMLOGEventTypeArgFileRequestDelete, - - /// (file_requests) Received files for file request - DBTEAMLOGEventTypeArgFileRequestReceiveFile, - - /// (groups) Added external ID for group - DBTEAMLOGEventTypeArgGroupAddExternalId, - - /// (groups) Added team members to group - DBTEAMLOGEventTypeArgGroupAddMember, - - /// (groups) Changed external ID for group - DBTEAMLOGEventTypeArgGroupChangeExternalId, - - /// (groups) Changed group management type - DBTEAMLOGEventTypeArgGroupChangeManagementType, - - /// (groups) Changed manager permissions of group member - DBTEAMLOGEventTypeArgGroupChangeMemberRole, - - /// (groups) Created group - DBTEAMLOGEventTypeArgGroupCreate, - - /// (groups) Deleted group - DBTEAMLOGEventTypeArgGroupDelete, - - /// (groups) Updated group (deprecated, no longer logged) - DBTEAMLOGEventTypeArgGroupDescriptionUpdated, - - /// (groups) Updated group join policy (deprecated, no longer logged) - DBTEAMLOGEventTypeArgGroupJoinPolicyUpdated, - - /// (groups) Moved group (deprecated, no longer logged) - DBTEAMLOGEventTypeArgGroupMoved, - - /// (groups) Removed external ID for group - DBTEAMLOGEventTypeArgGroupRemoveExternalId, - - /// (groups) Removed team members from group - DBTEAMLOGEventTypeArgGroupRemoveMember, - - /// (groups) Renamed group - DBTEAMLOGEventTypeArgGroupRename, - - /// (logins) Unlocked/locked account after failed sign in attempts - DBTEAMLOGEventTypeArgAccountLockOrUnlocked, - - /// (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeArgEmmError, - - /// (logins) Started trusted team admin session - DBTEAMLOGEventTypeArgGuestAdminSignedInViaTrustedTeams, - - /// (logins) Ended trusted team admin session - DBTEAMLOGEventTypeArgGuestAdminSignedOutViaTrustedTeams, - - /// (logins) Failed to sign in - DBTEAMLOGEventTypeArgLoginFail, - - /// (logins) Signed in - DBTEAMLOGEventTypeArgLoginSuccess, - - /// (logins) Signed out - DBTEAMLOGEventTypeArgLogout, - - /// (logins) Ended reseller support session - DBTEAMLOGEventTypeArgResellerSupportSessionEnd, - - /// (logins) Started reseller support session - DBTEAMLOGEventTypeArgResellerSupportSessionStart, - - /// (logins) Ended admin sign-in-as session - DBTEAMLOGEventTypeArgSignInAsSessionEnd, - - /// (logins) Started admin sign-in-as session - DBTEAMLOGEventTypeArgSignInAsSessionStart, - - /// (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeArgSsoError, - - /// (members) Invited members to activate Backup - DBTEAMLOGEventTypeArgBackupAdminInvitationSent, - - /// (members) Opened Backup invite - DBTEAMLOGEventTypeArgBackupInvitationOpened, - - /// (members) Created team invite link - DBTEAMLOGEventTypeArgCreateTeamInviteLink, - - /// (members) Deleted team invite link - DBTEAMLOGEventTypeArgDeleteTeamInviteLink, - - /// (members) Added an external ID for team member - DBTEAMLOGEventTypeArgMemberAddExternalId, - - /// (members) Added team member name - DBTEAMLOGEventTypeArgMemberAddName, - - /// (members) Changed team member admin role - DBTEAMLOGEventTypeArgMemberChangeAdminRole, - - /// (members) Changed team member email - DBTEAMLOGEventTypeArgMemberChangeEmail, - - /// (members) Changed the external ID for team member - DBTEAMLOGEventTypeArgMemberChangeExternalId, - - /// (members) Changed membership type (limited/full) of member (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeArgMemberChangeMembershipType, - - /// (members) Changed team member name - DBTEAMLOGEventTypeArgMemberChangeName, - - /// (members) Changed team member reseller role - DBTEAMLOGEventTypeArgMemberChangeResellerRole, - - /// (members) Changed member status (invited, joined, suspended, etc.) - DBTEAMLOGEventTypeArgMemberChangeStatus, - - /// (members) Cleared manually added contacts - DBTEAMLOGEventTypeArgMemberDeleteManualContacts, - - /// (members) Deleted team member profile photo - DBTEAMLOGEventTypeArgMemberDeleteProfilePhoto, - - /// (members) Permanently deleted contents of deleted team member account - DBTEAMLOGEventTypeArgMemberPermanentlyDeleteAccountContents, - - /// (members) Removed the external ID for team member - DBTEAMLOGEventTypeArgMemberRemoveExternalId, - - /// (members) Set team member profile photo - DBTEAMLOGEventTypeArgMemberSetProfilePhoto, - - /// (members) Set custom member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsAddCustomQuota, - - /// (members) Changed custom member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangeCustomQuota, - - /// (members) Changed space limit status - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangeStatus, - - /// (members) Removed custom member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsRemoveCustomQuota, - - /// (members) Suggested person to add to team - DBTEAMLOGEventTypeArgMemberSuggest, - - /// (members) Transferred contents of deleted member account to another - /// member - DBTEAMLOGEventTypeArgMemberTransferAccountContents, - - /// (members) Added pending secondary email - DBTEAMLOGEventTypeArgPendingSecondaryEmailAdded, - - /// (members) Deleted secondary email - DBTEAMLOGEventTypeArgSecondaryEmailDeleted, - - /// (members) Verified secondary email - DBTEAMLOGEventTypeArgSecondaryEmailVerified, - - /// (members) Secondary mails policy changed - DBTEAMLOGEventTypeArgSecondaryMailsPolicyChanged, - - /// (paper) Added Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderAddPage, - - /// (paper) Added Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderAddSection, - - /// (paper) Removed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRemovePage, - - /// (paper) Removed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRemoveSection, - - /// (paper) Renamed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRenamePage, - - /// (paper) Renamed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRenameSection, - - /// (paper) Reordered Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderReorderPage, - - /// (paper) Reordered Binder section (deprecated, replaced by 'Edited - /// files') - DBTEAMLOGEventTypeArgBinderReorderSection, - - /// (paper) Added users and/or groups to Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentAddMember, - - /// (paper) Added Paper doc/folder to folder - DBTEAMLOGEventTypeArgPaperContentAddToFolder, - - /// (paper) Archived Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentArchive, - - /// (paper) Created Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentCreate, - - /// (paper) Permanently deleted Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentPermanentlyDelete, - - /// (paper) Removed Paper doc/folder from folder - DBTEAMLOGEventTypeArgPaperContentRemoveFromFolder, - - /// (paper) Removed users and/or groups from Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentRemoveMember, - - /// (paper) Renamed Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentRename, - - /// (paper) Restored archived Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentRestore, - - /// (paper) Added Paper doc comment - DBTEAMLOGEventTypeArgPaperDocAddComment, - - /// (paper) Changed member permissions for Paper doc - DBTEAMLOGEventTypeArgPaperDocChangeMemberRole, - - /// (paper) Changed sharing setting for Paper doc - DBTEAMLOGEventTypeArgPaperDocChangeSharingPolicy, - - /// (paper) Followed/unfollowed Paper doc - DBTEAMLOGEventTypeArgPaperDocChangeSubscription, - - /// (paper) Archived Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperDocDeleted, - - /// (paper) Deleted Paper doc comment - DBTEAMLOGEventTypeArgPaperDocDeleteComment, - - /// (paper) Downloaded Paper doc in specific format - DBTEAMLOGEventTypeArgPaperDocDownload, - - /// (paper) Edited Paper doc - DBTEAMLOGEventTypeArgPaperDocEdit, - - /// (paper) Edited Paper doc comment - DBTEAMLOGEventTypeArgPaperDocEditComment, - - /// (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed - /// Paper doc') - DBTEAMLOGEventTypeArgPaperDocFollowed, - - /// (paper) Mentioned user in Paper doc - DBTEAMLOGEventTypeArgPaperDocMention, - - /// (paper) Transferred ownership of Paper doc - DBTEAMLOGEventTypeArgPaperDocOwnershipChanged, - - /// (paper) Requested access to Paper doc - DBTEAMLOGEventTypeArgPaperDocRequestAccess, - - /// (paper) Resolved Paper doc comment - DBTEAMLOGEventTypeArgPaperDocResolveComment, - - /// (paper) Restored Paper doc to previous version - DBTEAMLOGEventTypeArgPaperDocRevert, - - /// (paper) Shared Paper doc via Slack - DBTEAMLOGEventTypeArgPaperDocSlackShare, - - /// (paper) Shared Paper doc with users and/or groups (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgPaperDocTeamInvite, - - /// (paper) Deleted Paper doc - DBTEAMLOGEventTypeArgPaperDocTrashed, - - /// (paper) Unresolved Paper doc comment - DBTEAMLOGEventTypeArgPaperDocUnresolveComment, - - /// (paper) Restored Paper doc - DBTEAMLOGEventTypeArgPaperDocUntrashed, - - /// (paper) Viewed Paper doc - DBTEAMLOGEventTypeArgPaperDocView, - - /// (paper) Changed Paper external sharing setting to anyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgPaperExternalViewAllow, - - /// (paper) Changed Paper external sharing setting to default team - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperExternalViewDefaultTeam, - - /// (paper) Changed Paper external sharing setting to team-only (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeArgPaperExternalViewForbid, - - /// (paper) Followed/unfollowed Paper folder - DBTEAMLOGEventTypeArgPaperFolderChangeSubscription, - - /// (paper) Archived Paper folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperFolderDeleted, - - /// (paper) Followed Paper folder (deprecated, replaced by - /// 'Followed/unfollowed Paper folder') - DBTEAMLOGEventTypeArgPaperFolderFollowed, - - /// (paper) Shared Paper folder with users and/or groups (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgPaperFolderTeamInvite, - - /// (paper) Changed permissions for published doc - DBTEAMLOGEventTypeArgPaperPublishedLinkChangePermission, - - /// (paper) Published doc - DBTEAMLOGEventTypeArgPaperPublishedLinkCreate, - - /// (paper) Unpublished doc - DBTEAMLOGEventTypeArgPaperPublishedLinkDisabled, - - /// (paper) Viewed published doc - DBTEAMLOGEventTypeArgPaperPublishedLinkView, - - /// (passwords) Changed password - DBTEAMLOGEventTypeArgPasswordChange, - - /// (passwords) Reset password - DBTEAMLOGEventTypeArgPasswordReset, - - /// (passwords) Reset all team member passwords - DBTEAMLOGEventTypeArgPasswordResetAll, - - /// (reports) Created Classification report - DBTEAMLOGEventTypeArgClassificationCreateReport, - - /// (reports) Couldn't create Classification report - DBTEAMLOGEventTypeArgClassificationCreateReportFail, - - /// (reports) Created EMM-excluded users report - DBTEAMLOGEventTypeArgEmmCreateExceptionsReport, - - /// (reports) Created EMM mobile app usage report - DBTEAMLOGEventTypeArgEmmCreateUsageReport, - - /// (reports) Created member data report - DBTEAMLOGEventTypeArgExportMembersReport, - - /// (reports) Failed to create members data report - DBTEAMLOGEventTypeArgExportMembersReportFail, - - /// (reports) Created External sharing report - DBTEAMLOGEventTypeArgExternalSharingCreateReport, - - /// (reports) Couldn't create External sharing report - DBTEAMLOGEventTypeArgExternalSharingReportFailed, - - /// (reports) Report created: Links created with no expiration - DBTEAMLOGEventTypeArgNoExpirationLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created with no expiration - DBTEAMLOGEventTypeArgNoExpirationLinkGenReportFailed, - - /// (reports) Report created: Links created without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkGenReportFailed, - - /// (reports) Report created: Views of links without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of links without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkViewReportFailed, - - /// (reports) Report created: Views of old links - DBTEAMLOGEventTypeArgOutdatedLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of old links - DBTEAMLOGEventTypeArgOutdatedLinkViewReportFailed, - - /// (reports) Exported all team Paper docs - DBTEAMLOGEventTypeArgPaperAdminExportStart, - - /// (reports) Created ransomware report - DBTEAMLOGEventTypeArgRansomwareAlertCreateReport, - - /// (reports) Couldn't generate ransomware report - DBTEAMLOGEventTypeArgRansomwareAlertCreateReportFailed, - - /// (reports) Created Smart Sync non-admin devices report - DBTEAMLOGEventTypeArgSmartSyncCreateAdminPrivilegeReport, - - /// (reports) Created team activity report - DBTEAMLOGEventTypeArgTeamActivityCreateReport, - - /// (reports) Couldn't generate team activity report - DBTEAMLOGEventTypeArgTeamActivityCreateReportFail, - - /// (sharing) Shared album - DBTEAMLOGEventTypeArgCollectionShare, - - /// (sharing) Transfer files added - DBTEAMLOGEventTypeArgFileTransfersFileAdd, - - /// (sharing) Deleted transfer - DBTEAMLOGEventTypeArgFileTransfersTransferDelete, - - /// (sharing) Transfer downloaded - DBTEAMLOGEventTypeArgFileTransfersTransferDownload, - - /// (sharing) Sent transfer - DBTEAMLOGEventTypeArgFileTransfersTransferSend, - - /// (sharing) Viewed transfer - DBTEAMLOGEventTypeArgFileTransfersTransferView, - - /// (sharing) Changed Paper doc to invite-only (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgNoteAclInviteOnly, - - /// (sharing) Changed Paper doc to link-accessible (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgNoteAclLink, - - /// (sharing) Changed Paper doc to link-accessible for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgNoteAclTeamLink, - - /// (sharing) Shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgNoteShared, - - /// (sharing) Shared received Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgNoteShareReceive, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgOpenNoteShared, - - /// (sharing) Created shared link in Replay - DBTEAMLOGEventTypeArgReplayFileSharedLinkCreated, - - /// (sharing) Modified shared link in Replay - DBTEAMLOGEventTypeArgReplayFileSharedLinkModified, - - /// (sharing) Added member to Replay Project - DBTEAMLOGEventTypeArgReplayProjectTeamAdd, - - /// (sharing) Removed member from Replay Project - DBTEAMLOGEventTypeArgReplayProjectTeamDelete, - - /// (sharing) Added team to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfAddGroup, - - /// (sharing) Allowed non-collaborators to view links to files in shared - /// folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfAllowNonMembersToViewSharedLinks, - - /// (sharing) Set team members to see warning before sharing folders outside - /// team (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfExternalInviteWarn, - - /// (sharing) Invited Facebook users to shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgSfFbInvite, - - /// (sharing) Changed Facebook user's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfFbInviteChangeRole, - - /// (sharing) Uninvited Facebook user from shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfFbUninvite, - - /// (sharing) Invited group to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfInviteGroup, - - /// (sharing) Granted access to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfTeamGrantAccess, - - /// (sharing) Invited team members to shared folder (deprecated, replaced by - /// 'Invited user to Dropbox and added them to shared file/folder') - DBTEAMLOGEventTypeArgSfTeamInvite, - - /// (sharing) Changed team member's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfTeamInviteChangeRole, - - /// (sharing) Joined team member's shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgSfTeamJoin, - - /// (sharing) Joined team member's shared folder from link (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfTeamJoinFromOobLink, - - /// (sharing) Unshared folder with team member (deprecated, replaced by - /// 'Removed invitee from shared file/folder before invite was accepted') - DBTEAMLOGEventTypeArgSfTeamUninvite, - - /// (sharing) Invited user to Dropbox and added them to shared file/folder - DBTEAMLOGEventTypeArgSharedContentAddInvitees, - - /// (sharing) Added expiration date to link for shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedContentAddLinkExpiry, - - /// (sharing) Added password to link for shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentAddLinkPassword, - - /// (sharing) Added users and/or groups to shared file/folder - DBTEAMLOGEventTypeArgSharedContentAddMember, - - /// (sharing) Changed whether members can download shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeDownloadsPolicy, - - /// (sharing) Changed access type of invitee to shared file/folder before - /// invite was accepted - DBTEAMLOGEventTypeArgSharedContentChangeInviteeRole, - - /// (sharing) Changed link audience of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeLinkAudience, - - /// (sharing) Changed link expiration of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeLinkExpiry, - - /// (sharing) Changed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeLinkPassword, - - /// (sharing) Changed access type of shared file/folder member - DBTEAMLOGEventTypeArgSharedContentChangeMemberRole, - - /// (sharing) Changed whether members can see who viewed shared file/folder - DBTEAMLOGEventTypeArgSharedContentChangeViewerInfoPolicy, - - /// (sharing) Acquired membership of shared file/folder by accepting invite - DBTEAMLOGEventTypeArgSharedContentClaimInvitation, - - /// (sharing) Copied shared file/folder to own Dropbox - DBTEAMLOGEventTypeArgSharedContentCopy, - - /// (sharing) Downloaded shared file/folder - DBTEAMLOGEventTypeArgSharedContentDownload, - - /// (sharing) Left shared file/folder - DBTEAMLOGEventTypeArgSharedContentRelinquishMembership, - - /// (sharing) Removed invitee from shared file/folder before invite was - /// accepted - DBTEAMLOGEventTypeArgSharedContentRemoveInvitees, - - /// (sharing) Removed link expiration date of shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedContentRemoveLinkExpiry, - - /// (sharing) Removed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentRemoveLinkPassword, - - /// (sharing) Removed user/group from shared file/folder - DBTEAMLOGEventTypeArgSharedContentRemoveMember, - - /// (sharing) Requested access to shared file/folder - DBTEAMLOGEventTypeArgSharedContentRequestAccess, - - /// (sharing) Restored shared file/folder invitees - DBTEAMLOGEventTypeArgSharedContentRestoreInvitees, - - /// (sharing) Restored users and/or groups to membership of shared - /// file/folder - DBTEAMLOGEventTypeArgSharedContentRestoreMember, - - /// (sharing) Unshared file/folder by clearing membership - DBTEAMLOGEventTypeArgSharedContentUnshare, - - /// (sharing) Previewed shared file/folder - DBTEAMLOGEventTypeArgSharedContentView, - - /// (sharing) Changed who can access shared folder via link - DBTEAMLOGEventTypeArgSharedFolderChangeLinkPolicy, - - /// (sharing) Changed whether shared folder inherits members from parent - /// folder - DBTEAMLOGEventTypeArgSharedFolderChangeMembersInheritancePolicy, - - /// (sharing) Changed who can add/remove members of shared folder - DBTEAMLOGEventTypeArgSharedFolderChangeMembersManagementPolicy, - - /// (sharing) Changed who can become member of shared folder - DBTEAMLOGEventTypeArgSharedFolderChangeMembersPolicy, - - /// (sharing) Created shared folder - DBTEAMLOGEventTypeArgSharedFolderCreate, - - /// (sharing) Declined team member's invite to shared folder - DBTEAMLOGEventTypeArgSharedFolderDeclineInvitation, - - /// (sharing) Added shared folder to own Dropbox - DBTEAMLOGEventTypeArgSharedFolderMount, - - /// (sharing) Changed parent of shared folder - DBTEAMLOGEventTypeArgSharedFolderNest, - - /// (sharing) Transferred ownership of shared folder to another member - DBTEAMLOGEventTypeArgSharedFolderTransferOwnership, - - /// (sharing) Deleted shared folder from Dropbox - DBTEAMLOGEventTypeArgSharedFolderUnmount, - - /// (sharing) Added shared link expiration date - DBTEAMLOGEventTypeArgSharedLinkAddExpiry, - - /// (sharing) Changed shared link expiration date - DBTEAMLOGEventTypeArgSharedLinkChangeExpiry, - - /// (sharing) Changed visibility of shared link - DBTEAMLOGEventTypeArgSharedLinkChangeVisibility, - - /// (sharing) Added file/folder to Dropbox from shared link - DBTEAMLOGEventTypeArgSharedLinkCopy, - - /// (sharing) Created shared link - DBTEAMLOGEventTypeArgSharedLinkCreate, - - /// (sharing) Removed shared link - DBTEAMLOGEventTypeArgSharedLinkDisable, - - /// (sharing) Downloaded file/folder from shared link - DBTEAMLOGEventTypeArgSharedLinkDownload, - - /// (sharing) Removed shared link expiration date - DBTEAMLOGEventTypeArgSharedLinkRemoveExpiry, - - /// (sharing) Added an expiration date to the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsAddExpiration, - - /// (sharing) Added a password to the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsAddPassword, - - /// (sharing) Disabled downloads - DBTEAMLOGEventTypeArgSharedLinkSettingsAllowDownloadDisabled, - - /// (sharing) Enabled downloads - DBTEAMLOGEventTypeArgSharedLinkSettingsAllowDownloadEnabled, - - /// (sharing) Changed the audience of the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsChangeAudience, - - /// (sharing) Changed the expiration date of the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsChangeExpiration, - - /// (sharing) Changed the password of the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsChangePassword, - - /// (sharing) Removed the expiration date from the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsRemoveExpiration, - - /// (sharing) Removed the password from the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsRemovePassword, - - /// (sharing) Added members as audience of shared link - DBTEAMLOGEventTypeArgSharedLinkShare, - - /// (sharing) Opened shared link - DBTEAMLOGEventTypeArgSharedLinkView, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedNoteOpened, - - /// (sharing) Disabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeArgShmodelDisableDownloads, - - /// (sharing) Enabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeArgShmodelEnableDownloads, - - /// (sharing) Shared link with group (deprecated, no longer logged) - DBTEAMLOGEventTypeArgShmodelGroupShare, - - /// (showcase) Granted access to showcase - DBTEAMLOGEventTypeArgShowcaseAccessGranted, - - /// (showcase) Added member to showcase - DBTEAMLOGEventTypeArgShowcaseAddMember, - - /// (showcase) Archived showcase - DBTEAMLOGEventTypeArgShowcaseArchived, - - /// (showcase) Created showcase - DBTEAMLOGEventTypeArgShowcaseCreated, - - /// (showcase) Deleted showcase comment - DBTEAMLOGEventTypeArgShowcaseDeleteComment, - - /// (showcase) Edited showcase - DBTEAMLOGEventTypeArgShowcaseEdited, - - /// (showcase) Edited showcase comment - DBTEAMLOGEventTypeArgShowcaseEditComment, - - /// (showcase) Added file to showcase - DBTEAMLOGEventTypeArgShowcaseFileAdded, - - /// (showcase) Downloaded file from showcase - DBTEAMLOGEventTypeArgShowcaseFileDownload, - - /// (showcase) Removed file from showcase - DBTEAMLOGEventTypeArgShowcaseFileRemoved, - - /// (showcase) Viewed file in showcase - DBTEAMLOGEventTypeArgShowcaseFileView, - - /// (showcase) Permanently deleted showcase - DBTEAMLOGEventTypeArgShowcasePermanentlyDeleted, - - /// (showcase) Added showcase comment - DBTEAMLOGEventTypeArgShowcasePostComment, - - /// (showcase) Removed member from showcase - DBTEAMLOGEventTypeArgShowcaseRemoveMember, - - /// (showcase) Renamed showcase - DBTEAMLOGEventTypeArgShowcaseRenamed, - - /// (showcase) Requested access to showcase - DBTEAMLOGEventTypeArgShowcaseRequestAccess, - - /// (showcase) Resolved showcase comment - DBTEAMLOGEventTypeArgShowcaseResolveComment, - - /// (showcase) Unarchived showcase - DBTEAMLOGEventTypeArgShowcaseRestored, - - /// (showcase) Deleted showcase - DBTEAMLOGEventTypeArgShowcaseTrashed, - - /// (showcase) Deleted showcase (old version) (deprecated, replaced by - /// 'Deleted showcase') - DBTEAMLOGEventTypeArgShowcaseTrashedDeprecated, - - /// (showcase) Unresolved showcase comment - DBTEAMLOGEventTypeArgShowcaseUnresolveComment, - - /// (showcase) Restored showcase - DBTEAMLOGEventTypeArgShowcaseUntrashed, - - /// (showcase) Restored showcase (old version) (deprecated, replaced by - /// 'Restored showcase') - DBTEAMLOGEventTypeArgShowcaseUntrashedDeprecated, - - /// (showcase) Viewed showcase - DBTEAMLOGEventTypeArgShowcaseView, - - /// (sso) Added X.509 certificate for SSO - DBTEAMLOGEventTypeArgSsoAddCert, - - /// (sso) Added sign-in URL for SSO - DBTEAMLOGEventTypeArgSsoAddLoginUrl, - - /// (sso) Added sign-out URL for SSO - DBTEAMLOGEventTypeArgSsoAddLogoutUrl, - - /// (sso) Changed X.509 certificate for SSO - DBTEAMLOGEventTypeArgSsoChangeCert, - - /// (sso) Changed sign-in URL for SSO - DBTEAMLOGEventTypeArgSsoChangeLoginUrl, - - /// (sso) Changed sign-out URL for SSO - DBTEAMLOGEventTypeArgSsoChangeLogoutUrl, - - /// (sso) Changed SAML identity mode for SSO - DBTEAMLOGEventTypeArgSsoChangeSamlIdentityMode, - - /// (sso) Removed X.509 certificate for SSO - DBTEAMLOGEventTypeArgSsoRemoveCert, - - /// (sso) Removed sign-in URL for SSO - DBTEAMLOGEventTypeArgSsoRemoveLoginUrl, - - /// (sso) Removed sign-out URL for SSO - DBTEAMLOGEventTypeArgSsoRemoveLogoutUrl, - - /// (team_folders) Changed archival status of team folder - DBTEAMLOGEventTypeArgTeamFolderChangeStatus, - - /// (team_folders) Created team folder in active status - DBTEAMLOGEventTypeArgTeamFolderCreate, - - /// (team_folders) Downgraded team folder to regular shared folder - DBTEAMLOGEventTypeArgTeamFolderDowngrade, - - /// (team_folders) Permanently deleted archived team folder - DBTEAMLOGEventTypeArgTeamFolderPermanentlyDelete, - - /// (team_folders) Renamed active/archived team folder - DBTEAMLOGEventTypeArgTeamFolderRename, - - /// (team_folders) Changed sync default - DBTEAMLOGEventTypeArgTeamSelectiveSyncSettingsChanged, - - /// (team_policies) Changed account capture setting on team domain - DBTEAMLOGEventTypeArgAccountCaptureChangePolicy, - - /// (team_policies) Changed admin reminder settings for requests to join the - /// team - DBTEAMLOGEventTypeArgAdminEmailRemindersChanged, - - /// (team_policies) Disabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeArgAllowDownloadDisabled, - - /// (team_policies) Enabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeArgAllowDownloadEnabled, - - /// (team_policies) Changed app permissions - DBTEAMLOGEventTypeArgAppPermissionsChanged, - - /// (team_policies) Changed camera uploads setting for team - DBTEAMLOGEventTypeArgCameraUploadsPolicyChanged, - - /// (team_policies) Changed Capture transcription policy for team - DBTEAMLOGEventTypeArgCaptureTranscriptPolicyChanged, - - /// (team_policies) Changed classification policy for team - DBTEAMLOGEventTypeArgClassificationChangePolicy, - - /// (team_policies) Changed computer backup policy for team - DBTEAMLOGEventTypeArgComputerBackupPolicyChanged, - - /// (team_policies) Changed content management setting - DBTEAMLOGEventTypeArgContentAdministrationPolicyChanged, - - /// (team_policies) Set restrictions on data center locations where team - /// data resides - DBTEAMLOGEventTypeArgDataPlacementRestrictionChangePolicy, - - /// (team_policies) Completed restrictions on data center locations where - /// team data resides - DBTEAMLOGEventTypeArgDataPlacementRestrictionSatisfyPolicy, - - /// (team_policies) Added members to device approvals exception list - DBTEAMLOGEventTypeArgDeviceApprovalsAddException, - - /// (team_policies) Set/removed limit on number of computers member can link - /// to team Dropbox account - DBTEAMLOGEventTypeArgDeviceApprovalsChangeDesktopPolicy, - - /// (team_policies) Set/removed limit on number of mobile devices member can - /// link to team Dropbox account - DBTEAMLOGEventTypeArgDeviceApprovalsChangeMobilePolicy, - - /// (team_policies) Changed device approvals setting when member is over - /// limit - DBTEAMLOGEventTypeArgDeviceApprovalsChangeOverageAction, - - /// (team_policies) Changed device approvals setting when member unlinks - /// approved device - DBTEAMLOGEventTypeArgDeviceApprovalsChangeUnlinkAction, - - /// (team_policies) Removed members from device approvals exception list - DBTEAMLOGEventTypeArgDeviceApprovalsRemoveException, - - /// (team_policies) Added members to directory restrictions list - DBTEAMLOGEventTypeArgDirectoryRestrictionsAddMembers, - - /// (team_policies) Removed members from directory restrictions list - DBTEAMLOGEventTypeArgDirectoryRestrictionsRemoveMembers, - - /// (team_policies) Changed Dropbox Passwords policy for team - DBTEAMLOGEventTypeArgDropboxPasswordsPolicyChanged, - - /// (team_policies) Changed email to Dropbox policy for team - DBTEAMLOGEventTypeArgEmailIngestPolicyChanged, - - /// (team_policies) Added members to EMM exception list - DBTEAMLOGEventTypeArgEmmAddException, - - /// (team_policies) Enabled/disabled enterprise mobility management for - /// members - DBTEAMLOGEventTypeArgEmmChangePolicy, - - /// (team_policies) Removed members from EMM exception list - DBTEAMLOGEventTypeArgEmmRemoveException, - - /// (team_policies) Accepted/opted out of extended version history - DBTEAMLOGEventTypeArgExtendedVersionHistoryChangePolicy, - - /// (team_policies) Changed external drive backup policy for team - DBTEAMLOGEventTypeArgExternalDriveBackupPolicyChanged, - - /// (team_policies) Enabled/disabled commenting on team files - DBTEAMLOGEventTypeArgFileCommentsChangePolicy, - - /// (team_policies) Changed file locking policy for team - DBTEAMLOGEventTypeArgFileLockingPolicyChanged, - - /// (team_policies) Changed File Provider Migration policy for team - DBTEAMLOGEventTypeArgFileProviderMigrationPolicyChanged, - - /// (team_policies) Enabled/disabled file requests - DBTEAMLOGEventTypeArgFileRequestsChangePolicy, - - /// (team_policies) Enabled file request emails for everyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgFileRequestsEmailsEnabled, - - /// (team_policies) Enabled file request emails for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgFileRequestsEmailsRestrictedToTeamOnly, - - /// (team_policies) Changed file transfers policy for team - DBTEAMLOGEventTypeArgFileTransfersPolicyChanged, - - /// (team_policies) Changed folder link restrictions policy for team - DBTEAMLOGEventTypeArgFolderLinkRestrictionPolicyChanged, - - /// (team_policies) Enabled/disabled Google single sign-on for team - DBTEAMLOGEventTypeArgGoogleSsoChangePolicy, - - /// (team_policies) Changed who can create groups - DBTEAMLOGEventTypeArgGroupUserManagementChangePolicy, - - /// (team_policies) Changed integration policy for team - DBTEAMLOGEventTypeArgIntegrationPolicyChanged, - - /// (team_policies) Changed invite accept email policy for team - DBTEAMLOGEventTypeArgInviteAcceptanceEmailPolicyChanged, - - /// (team_policies) Changed whether users can find team when not invited - DBTEAMLOGEventTypeArgMemberRequestsChangePolicy, - - /// (team_policies) Changed member send invite policy for team - DBTEAMLOGEventTypeArgMemberSendInvitePolicyChanged, - - /// (team_policies) Added members to member space limit exception list - DBTEAMLOGEventTypeArgMemberSpaceLimitsAddException, - - /// (team_policies) Changed member space limit type for team - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangeCapsTypePolicy, - - /// (team_policies) Changed team default member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangePolicy, - - /// (team_policies) Removed members from member space limit exception list - DBTEAMLOGEventTypeArgMemberSpaceLimitsRemoveException, - - /// (team_policies) Enabled/disabled option for team members to suggest - /// people to add to team - DBTEAMLOGEventTypeArgMemberSuggestionsChangePolicy, - - /// (team_policies) Enabled/disabled Microsoft Office add-in - DBTEAMLOGEventTypeArgMicrosoftOfficeAddinChangePolicy, - - /// (team_policies) Enabled/disabled network control - DBTEAMLOGEventTypeArgNetworkControlChangePolicy, - - /// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed - /// to all members or to specific members - DBTEAMLOGEventTypeArgPaperChangeDeploymentPolicy, - - /// (team_policies) Changed whether non-members can view Paper docs with - /// link (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperChangeMemberLinkPolicy, - - /// (team_policies) Changed whether members can share Paper docs outside - /// team, and if docs are accessible only by team members or anyone by - /// default - DBTEAMLOGEventTypeArgPaperChangeMemberPolicy, - - /// (team_policies) Enabled/disabled Dropbox Paper for team - DBTEAMLOGEventTypeArgPaperChangePolicy, - - /// (team_policies) Changed Paper Default Folder Policy setting for team - DBTEAMLOGEventTypeArgPaperDefaultFolderPolicyChanged, - - /// (team_policies) Enabled/disabled Paper Desktop for team - DBTEAMLOGEventTypeArgPaperDesktopPolicyChanged, - - /// (team_policies) Added users to Paper-enabled users list - DBTEAMLOGEventTypeArgPaperEnabledUsersGroupAddition, - - /// (team_policies) Removed users from Paper-enabled users list - DBTEAMLOGEventTypeArgPaperEnabledUsersGroupRemoval, - - /// (team_policies) Changed team password strength requirements - DBTEAMLOGEventTypeArgPasswordStrengthRequirementsChangePolicy, - - /// (team_policies) Enabled/disabled ability of team members to permanently - /// delete content - DBTEAMLOGEventTypeArgPermanentDeleteChangePolicy, - - /// (team_policies) Enabled/disabled reseller support - DBTEAMLOGEventTypeArgResellerSupportChangePolicy, - - /// (team_policies) Changed Rewind policy for team - DBTEAMLOGEventTypeArgRewindPolicyChanged, - - /// (team_policies) Changed send for signature policy for team - DBTEAMLOGEventTypeArgSendForSignaturePolicyChanged, - - /// (team_policies) Changed whether team members can join shared folders - /// owned outside team - DBTEAMLOGEventTypeArgSharingChangeFolderJoinPolicy, - - /// (team_policies) Changed the allow remove or change expiration policy for - /// the links shared outside of the team - DBTEAMLOGEventTypeArgSharingChangeLinkAllowChangeExpirationPolicy, - - /// (team_policies) Changed the default expiration for the links shared - /// outside of the team - DBTEAMLOGEventTypeArgSharingChangeLinkDefaultExpirationPolicy, - - /// (team_policies) Changed the password requirement for the links shared - /// outside of the team - DBTEAMLOGEventTypeArgSharingChangeLinkEnforcePasswordPolicy, - - /// (team_policies) Changed whether members can share links outside team, - /// and if links are accessible only by team members or anyone by default - DBTEAMLOGEventTypeArgSharingChangeLinkPolicy, - - /// (team_policies) Changed whether members can share files/folders outside - /// team - DBTEAMLOGEventTypeArgSharingChangeMemberPolicy, - - /// (team_policies) Enabled/disabled downloading files from Dropbox Showcase - /// for team - DBTEAMLOGEventTypeArgShowcaseChangeDownloadPolicy, - - /// (team_policies) Enabled/disabled Dropbox Showcase for team - DBTEAMLOGEventTypeArgShowcaseChangeEnabledPolicy, - - /// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for - /// team - DBTEAMLOGEventTypeArgShowcaseChangeExternalSharingPolicy, - - /// (team_policies) Changed automatic Smart Sync setting for team - DBTEAMLOGEventTypeArgSmarterSmartSyncPolicyChanged, - - /// (team_policies) Changed default Smart Sync setting for team members - DBTEAMLOGEventTypeArgSmartSyncChangePolicy, - - /// (team_policies) Opted team into Smart Sync - DBTEAMLOGEventTypeArgSmartSyncNotOptOut, - - /// (team_policies) Opted team out of Smart Sync - DBTEAMLOGEventTypeArgSmartSyncOptOut, - - /// (team_policies) Changed single sign-on setting for team - DBTEAMLOGEventTypeArgSsoChangePolicy, - - /// (team_policies) Changed team branding policy for team - DBTEAMLOGEventTypeArgTeamBrandingPolicyChanged, - - /// (team_policies) Changed App Integrations setting for team - DBTEAMLOGEventTypeArgTeamExtensionsPolicyChanged, - - /// (team_policies) Enabled/disabled Team Selective Sync for team - DBTEAMLOGEventTypeArgTeamSelectiveSyncPolicyChanged, - - /// (team_policies) Edited the approved list for sharing externally - DBTEAMLOGEventTypeArgTeamSharingWhitelistSubjectsChanged, - - /// (team_policies) Added members to two factor authentication exception - /// list - DBTEAMLOGEventTypeArgTfaAddException, - - /// (team_policies) Changed two-step verification setting for team - DBTEAMLOGEventTypeArgTfaChangePolicy, - - /// (team_policies) Removed members from two factor authentication exception - /// list - DBTEAMLOGEventTypeArgTfaRemoveException, - - /// (team_policies) Enabled/disabled option for members to link personal - /// Dropbox account and team account to same computer - DBTEAMLOGEventTypeArgTwoAccountChangePolicy, - - /// (team_policies) Changed team policy for viewer info - DBTEAMLOGEventTypeArgViewerInfoPolicyChanged, - - /// (team_policies) Changed watermarking policy for team - DBTEAMLOGEventTypeArgWatermarkingPolicyChanged, - - /// (team_policies) Changed limit on active sessions per member - DBTEAMLOGEventTypeArgWebSessionsChangeActiveSessionLimit, - - /// (team_policies) Changed how long members can stay signed in to - /// Dropbox.com - DBTEAMLOGEventTypeArgWebSessionsChangeFixedLengthPolicy, - - /// (team_policies) Changed how long team members can be idle while signed - /// in to Dropbox.com - DBTEAMLOGEventTypeArgWebSessionsChangeIdleLengthPolicy, - - /// (team_profile) Requested data residency migration for team data - DBTEAMLOGEventTypeArgDataResidencyMigrationRequestSuccessful, - - /// (team_profile) Request for data residency migration for team data has - /// failed - DBTEAMLOGEventTypeArgDataResidencyMigrationRequestUnsuccessful, - - /// (team_profile) Merged another team into this team - DBTEAMLOGEventTypeArgTeamMergeFrom, - - /// (team_profile) Merged this team into another team - DBTEAMLOGEventTypeArgTeamMergeTo, - - /// (team_profile) Added team background to display on shared link headers - DBTEAMLOGEventTypeArgTeamProfileAddBackground, - - /// (team_profile) Added team logo to display on shared link headers - DBTEAMLOGEventTypeArgTeamProfileAddLogo, - - /// (team_profile) Changed team background displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileChangeBackground, - - /// (team_profile) Changed default language for team - DBTEAMLOGEventTypeArgTeamProfileChangeDefaultLanguage, - - /// (team_profile) Changed team logo displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileChangeLogo, - - /// (team_profile) Changed team name - DBTEAMLOGEventTypeArgTeamProfileChangeName, - - /// (team_profile) Removed team background displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileRemoveBackground, - - /// (team_profile) Removed team logo displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileRemoveLogo, - - /// (tfa) Added backup phone for two-step verification - DBTEAMLOGEventTypeArgTfaAddBackupPhone, - - /// (tfa) Added security key for two-step verification - DBTEAMLOGEventTypeArgTfaAddSecurityKey, - - /// (tfa) Changed backup phone for two-step verification - DBTEAMLOGEventTypeArgTfaChangeBackupPhone, - - /// (tfa) Enabled/disabled/changed two-step verification setting - DBTEAMLOGEventTypeArgTfaChangeStatus, - - /// (tfa) Removed backup phone for two-step verification - DBTEAMLOGEventTypeArgTfaRemoveBackupPhone, - - /// (tfa) Removed security key for two-step verification - DBTEAMLOGEventTypeArgTfaRemoveSecurityKey, - - /// (tfa) Reset two-step verification for team member - DBTEAMLOGEventTypeArgTfaReset, - - /// (trusted_teams) Changed enterprise admin role - DBTEAMLOGEventTypeArgChangedEnterpriseAdminRole, - - /// (trusted_teams) Changed enterprise-connected team status - DBTEAMLOGEventTypeArgChangedEnterpriseConnectedTeamStatus, - - /// (trusted_teams) Ended enterprise admin session - DBTEAMLOGEventTypeArgEndedEnterpriseAdminSession, - - /// (trusted_teams) Ended enterprise admin session (deprecated, replaced by - /// 'Ended enterprise admin session') - DBTEAMLOGEventTypeArgEndedEnterpriseAdminSessionDeprecated, - - /// (trusted_teams) Changed who can update a setting - DBTEAMLOGEventTypeArgEnterpriseSettingsLocking, - - /// (trusted_teams) Changed guest team admin status - DBTEAMLOGEventTypeArgGuestAdminChangeStatus, - - /// (trusted_teams) Started enterprise admin session - DBTEAMLOGEventTypeArgStartedEnterpriseAdminSession, - - /// (trusted_teams) Accepted a team merge request - DBTEAMLOGEventTypeArgTeamMergeRequestAccepted, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestAcceptedShownToPrimaryTeam, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestAcceptedShownToSecondaryTeam, - - /// (trusted_teams) Automatically canceled team merge request - DBTEAMLOGEventTypeArgTeamMergeRequestAutoCanceled, - - /// (trusted_teams) Canceled a team merge request - DBTEAMLOGEventTypeArgTeamMergeRequestCanceled, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestCanceledShownToPrimaryTeam, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestCanceledShownToSecondaryTeam, - - /// (trusted_teams) Team merge request expired - DBTEAMLOGEventTypeArgTeamMergeRequestExpired, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeArgTeamMergeRequestExpiredShownToPrimaryTeam, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeArgTeamMergeRequestExpiredShownToSecondaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgTeamMergeRequestRejectedShownToPrimaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgTeamMergeRequestRejectedShownToSecondaryTeam, - - /// (trusted_teams) Sent a team merge request reminder - DBTEAMLOGEventTypeArgTeamMergeRequestReminder, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeArgTeamMergeRequestReminderShownToPrimaryTeam, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeArgTeamMergeRequestReminderShownToSecondaryTeam, - - /// (trusted_teams) Canceled the team merge - DBTEAMLOGEventTypeArgTeamMergeRequestRevoked, - - /// (trusted_teams) Requested to merge their Dropbox team into yours - DBTEAMLOGEventTypeArgTeamMergeRequestSentShownToPrimaryTeam, - - /// (trusted_teams) Requested to merge your team into another Dropbox team - DBTEAMLOGEventTypeArgTeamMergeRequestSentShownToSecondaryTeam, - - /// (no description). - DBTEAMLOGEventTypeArgOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventTypeArgTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "admin_alerting_alert_state_changed". -/// -/// Description of the "admin_alerting_alert_state_changed" tag state: -/// (admin_alerting) Changed an alert state -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingAlertStateChanged; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_changed_alert_config". -/// -/// Description of the "admin_alerting_changed_alert_config" tag state: -/// (admin_alerting) Changed an alert setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingChangedAlertConfig; - -/// -/// Initializes union class with tag state of "admin_alerting_triggered_alert". -/// -/// Description of the "admin_alerting_triggered_alert" tag state: -/// (admin_alerting) Triggered security alert -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingTriggeredAlert; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_completed". -/// -/// Description of the "ransomware_restore_process_completed" tag state: -/// (admin_alerting) Completed ransomware restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessCompleted; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_started". -/// -/// Description of the "ransomware_restore_process_started" tag state: -/// (admin_alerting) Started ransomware restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessStarted; - -/// -/// Initializes union class with tag state of "app_blocked_by_permissions". -/// -/// Description of the "app_blocked_by_permissions" tag state: (apps) Failed to -/// connect app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppBlockedByPermissions; - -/// -/// Initializes union class with tag state of "app_link_team". -/// -/// Description of the "app_link_team" tag state: (apps) Linked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkTeam; - -/// -/// Initializes union class with tag state of "app_link_user". -/// -/// Description of the "app_link_user" tag state: (apps) Linked app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkUser; - -/// -/// Initializes union class with tag state of "app_unlink_team". -/// -/// Description of the "app_unlink_team" tag state: (apps) Unlinked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkTeam; - -/// -/// Initializes union class with tag state of "app_unlink_user". -/// -/// Description of the "app_unlink_user" tag state: (apps) Unlinked app for -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkUser; - -/// -/// Initializes union class with tag state of "integration_connected". -/// -/// Description of the "integration_connected" tag state: (apps) Connected -/// integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationConnected; - -/// -/// Initializes union class with tag state of "integration_disconnected". -/// -/// Description of the "integration_disconnected" tag state: (apps) Disconnected -/// integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationDisconnected; - -/// -/// Initializes union class with tag state of "file_add_comment". -/// -/// Description of the "file_add_comment" tag state: (comments) Added file -/// comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddComment; - -/// -/// Initializes union class with tag state of -/// "file_change_comment_subscription". -/// -/// Description of the "file_change_comment_subscription" tag state: (comments) -/// Subscribed to or unsubscribed from comment notifications for file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileChangeCommentSubscription; - -/// -/// Initializes union class with tag state of "file_delete_comment". -/// -/// Description of the "file_delete_comment" tag state: (comments) Deleted file -/// comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteComment; - -/// -/// Initializes union class with tag state of "file_edit_comment". -/// -/// Description of the "file_edit_comment" tag state: (comments) Edited file -/// comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditComment; - -/// -/// Initializes union class with tag state of "file_like_comment". -/// -/// Description of the "file_like_comment" tag state: (comments) Liked file -/// comment (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLikeComment; - -/// -/// Initializes union class with tag state of "file_resolve_comment". -/// -/// Description of the "file_resolve_comment" tag state: (comments) Resolved -/// file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileResolveComment; - -/// -/// Initializes union class with tag state of "file_unlike_comment". -/// -/// Description of the "file_unlike_comment" tag state: (comments) Unliked file -/// comment (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnlikeComment; - -/// -/// Initializes union class with tag state of "file_unresolve_comment". -/// -/// Description of the "file_unresolve_comment" tag state: (comments) Unresolved -/// file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnresolveComment; - -/// -/// Initializes union class with tag state of "governance_policy_add_folders". -/// -/// Description of the "governance_policy_add_folders" tag state: -/// (data_governance) Added folders to policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folder_failed". -/// -/// Description of the "governance_policy_add_folder_failed" tag state: -/// (data_governance) Couldn't add a folder to a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolderFailed; - -/// -/// Initializes union class with tag state of -/// "governance_policy_content_disposed". -/// -/// Description of the "governance_policy_content_disposed" tag state: -/// (data_governance) Content disposed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyContentDisposed; - -/// -/// Initializes union class with tag state of "governance_policy_create". -/// -/// Description of the "governance_policy_create" tag state: (data_governance) -/// Activated a new policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyCreate; - -/// -/// Initializes union class with tag state of "governance_policy_delete". -/// -/// Description of the "governance_policy_delete" tag state: (data_governance) -/// Deleted a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyDelete; - -/// -/// Initializes union class with tag state of "governance_policy_edit_details". -/// -/// Description of the "governance_policy_edit_details" tag state: -/// (data_governance) Edited policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDetails; - -/// -/// Initializes union class with tag state of "governance_policy_edit_duration". -/// -/// Description of the "governance_policy_edit_duration" tag state: -/// (data_governance) Changed policy duration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDuration; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_created". -/// -/// Description of the "governance_policy_export_created" tag state: -/// (data_governance) Created a policy download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_removed". -/// -/// Description of the "governance_policy_export_removed" tag state: -/// (data_governance) Removed a policy download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportRemoved; - -/// -/// Initializes union class with tag state of -/// "governance_policy_remove_folders". -/// -/// Description of the "governance_policy_remove_folders" tag state: -/// (data_governance) Removed folders from policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyRemoveFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_report_created". -/// -/// Description of the "governance_policy_report_created" tag state: -/// (data_governance) Created a summary report for a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyReportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_zip_part_downloaded". -/// -/// Description of the "governance_policy_zip_part_downloaded" tag state: -/// (data_governance) Downloaded content from a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyZipPartDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_activate_a_hold". -/// -/// Description of the "legal_holds_activate_a_hold" tag state: -/// (data_governance) Activated a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsActivateAHold; - -/// -/// Initializes union class with tag state of "legal_holds_add_members". -/// -/// Description of the "legal_holds_add_members" tag state: (data_governance) -/// Added members to a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsAddMembers; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_details". -/// -/// Description of the "legal_holds_change_hold_details" tag state: -/// (data_governance) Edited details for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldDetails; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_name". -/// -/// Description of the "legal_holds_change_hold_name" tag state: -/// (data_governance) Renamed a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldName; - -/// -/// Initializes union class with tag state of "legal_holds_export_a_hold". -/// -/// Description of the "legal_holds_export_a_hold" tag state: (data_governance) -/// Exported hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportAHold; - -/// -/// Initializes union class with tag state of "legal_holds_export_cancelled". -/// -/// Description of the "legal_holds_export_cancelled" tag state: -/// (data_governance) Canceled export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportCancelled; - -/// -/// Initializes union class with tag state of "legal_holds_export_downloaded". -/// -/// Description of the "legal_holds_export_downloaded" tag state: -/// (data_governance) Downloaded export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_export_removed". -/// -/// Description of the "legal_holds_export_removed" tag state: (data_governance) -/// Removed export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportRemoved; - -/// -/// Initializes union class with tag state of "legal_holds_release_a_hold". -/// -/// Description of the "legal_holds_release_a_hold" tag state: (data_governance) -/// Released a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReleaseAHold; - -/// -/// Initializes union class with tag state of "legal_holds_remove_members". -/// -/// Description of the "legal_holds_remove_members" tag state: (data_governance) -/// Removed members from a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsRemoveMembers; - -/// -/// Initializes union class with tag state of "legal_holds_report_a_hold". -/// -/// Description of the "legal_holds_report_a_hold" tag state: (data_governance) -/// Created a summary report for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReportAHold; - -/// -/// Initializes union class with tag state of "device_change_ip_desktop". -/// -/// Description of the "device_change_ip_desktop" tag state: (devices) Changed -/// IP address associated with active desktop session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpDesktop; - -/// -/// Initializes union class with tag state of "device_change_ip_mobile". -/// -/// Description of the "device_change_ip_mobile" tag state: (devices) Changed IP -/// address associated with active mobile session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpMobile; - -/// -/// Initializes union class with tag state of "device_change_ip_web". -/// -/// Description of the "device_change_ip_web" tag state: (devices) Changed IP -/// address associated with active web session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpWeb; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_fail". -/// -/// Description of the "device_delete_on_unlink_fail" tag state: (devices) -/// Failed to delete all files from unlinked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkFail; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_success". -/// -/// Description of the "device_delete_on_unlink_success" tag state: (devices) -/// Deleted all files from unlinked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkSuccess; - -/// -/// Initializes union class with tag state of "device_link_fail". -/// -/// Description of the "device_link_fail" tag state: (devices) Failed to link -/// device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkFail; - -/// -/// Initializes union class with tag state of "device_link_success". -/// -/// Description of the "device_link_success" tag state: (devices) Linked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkSuccess; - -/// -/// Initializes union class with tag state of "device_management_disabled". -/// -/// Description of the "device_management_disabled" tag state: (devices) -/// Disabled device management (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementDisabled; - -/// -/// Initializes union class with tag state of "device_management_enabled". -/// -/// Description of the "device_management_enabled" tag state: (devices) Enabled -/// device management (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementEnabled; - -/// -/// Initializes union class with tag state of -/// "device_sync_backup_status_changed". -/// -/// Description of the "device_sync_backup_status_changed" tag state: (devices) -/// Enabled/disabled backup for computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSyncBackupStatusChanged; - -/// -/// Initializes union class with tag state of "device_unlink". -/// -/// Description of the "device_unlink" tag state: (devices) Disconnected device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceUnlink; - -/// -/// Initializes union class with tag state of "dropbox_passwords_exported". -/// -/// Description of the "dropbox_passwords_exported" tag state: (devices) -/// Exported passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsExported; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_new_device_enrolled". -/// -/// Description of the "dropbox_passwords_new_device_enrolled" tag state: -/// (devices) Enrolled new Dropbox Passwords device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsNewDeviceEnrolled; - -/// -/// Initializes union class with tag state of "emm_refresh_auth_token". -/// -/// Description of the "emm_refresh_auth_token" tag state: (devices) Refreshed -/// auth token used for setting up EMM -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRefreshAuthToken; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_eligibility_status_checked". -/// -/// Description of the "external_drive_backup_eligibility_status_checked" tag -/// state: (devices) Checked external drive backup eligibility status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupEligibilityStatusChecked; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_status_changed". -/// -/// Description of the "external_drive_backup_status_changed" tag state: -/// (devices) Modified external drive backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupStatusChanged; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_availability". -/// -/// Description of the "account_capture_change_availability" tag state: -/// (domains) Granted/revoked option to enable account capture on team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangeAvailability; - -/// -/// Initializes union class with tag state of "account_capture_migrate_account". -/// -/// Description of the "account_capture_migrate_account" tag state: (domains) -/// Account-captured user migrated account to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureMigrateAccount; - -/// -/// Initializes union class with tag state of -/// "account_capture_notification_emails_sent". -/// -/// Description of the "account_capture_notification_emails_sent" tag state: -/// (domains) Sent account capture email to all unmanaged members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureNotificationEmailsSent; - -/// -/// Initializes union class with tag state of -/// "account_capture_relinquish_account". -/// -/// Description of the "account_capture_relinquish_account" tag state: (domains) -/// Account-captured user changed account email to personal email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureRelinquishAccount; - -/// -/// Initializes union class with tag state of "disabled_domain_invites". -/// -/// Description of the "disabled_domain_invites" tag state: (domains) Disabled -/// domain invites (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "domain_invites_approve_request_to_join_team". -/// -/// Description of the "domain_invites_approve_request_to_join_team" tag state: -/// (domains) Approved user's request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesApproveRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_decline_request_to_join_team". -/// -/// Description of the "domain_invites_decline_request_to_join_team" tag state: -/// (domains) Declined user's request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesDeclineRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_email_existing_users". -/// -/// Description of the "domain_invites_email_existing_users" tag state: -/// (domains) Sent domain invites to existing domain accounts (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesEmailExistingUsers; - -/// -/// Initializes union class with tag state of -/// "domain_invites_request_to_join_team". -/// -/// Description of the "domain_invites_request_to_join_team" tag state: -/// (domains) Requested to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_no" tag -/// state: (domains) Disabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToNo; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_yes" tag -/// state: (domains) Enabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToYes; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_fail". -/// -/// Description of the "domain_verification_add_domain_fail" tag state: -/// (domains) Failed to verify team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainFail; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_success". -/// -/// Description of the "domain_verification_add_domain_success" tag state: -/// (domains) Verified team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainSuccess; - -/// -/// Initializes union class with tag state of -/// "domain_verification_remove_domain". -/// -/// Description of the "domain_verification_remove_domain" tag state: (domains) -/// Removed domain from list of verified team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationRemoveDomain; - -/// -/// Initializes union class with tag state of "enabled_domain_invites". -/// -/// Description of the "enabled_domain_invites" tag state: (domains) Enabled -/// domain invites (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_cancel_key_deletion". -/// -/// Description of the "team_encryption_key_cancel_key_deletion" tag state: -/// (encryption) Canceled team encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCancelKeyDeletion; - -/// -/// Initializes union class with tag state of "team_encryption_key_create_key". -/// -/// Description of the "team_encryption_key_create_key" tag state: (encryption) -/// Created team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCreateKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_delete_key". -/// -/// Description of the "team_encryption_key_delete_key" tag state: (encryption) -/// Deleted team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDeleteKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_disable_key". -/// -/// Description of the "team_encryption_key_disable_key" tag state: (encryption) -/// Disabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDisableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_enable_key". -/// -/// Description of the "team_encryption_key_enable_key" tag state: (encryption) -/// Enabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyEnableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_rotate_key". -/// -/// Description of the "team_encryption_key_rotate_key" tag state: (encryption) -/// Rotated team encryption key (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyRotateKey; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_schedule_key_deletion". -/// -/// Description of the "team_encryption_key_schedule_key_deletion" tag state: -/// (encryption) Scheduled encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyScheduleKeyDeletion; - -/// -/// Initializes union class with tag state of "apply_naming_convention". -/// -/// Description of the "apply_naming_convention" tag state: (file_operations) -/// Applied naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApplyNamingConvention; - -/// -/// Initializes union class with tag state of "create_folder". -/// -/// Description of the "create_folder" tag state: (file_operations) Created -/// folders (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateFolder; - -/// -/// Initializes union class with tag state of "file_add". -/// -/// Description of the "file_add" tag state: (file_operations) Added files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAdd; - -/// -/// Initializes union class with tag state of "file_add_from_automation". -/// -/// Description of the "file_add_from_automation" tag state: (file_operations) -/// Added files and/or folders from automation -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddFromAutomation; - -/// -/// Initializes union class with tag state of "file_copy". -/// -/// Description of the "file_copy" tag state: (file_operations) Copied files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCopy; - -/// -/// Initializes union class with tag state of "file_delete". -/// -/// Description of the "file_delete" tag state: (file_operations) Deleted files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDelete; - -/// -/// Initializes union class with tag state of "file_download". -/// -/// Description of the "file_download" tag state: (file_operations) Downloaded -/// files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDownload; - -/// -/// Initializes union class with tag state of "file_edit". -/// -/// Description of the "file_edit" tag state: (file_operations) Edited files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEdit; - -/// -/// Initializes union class with tag state of "file_get_copy_reference". -/// -/// Description of the "file_get_copy_reference" tag state: (file_operations) -/// Created copy reference to file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileGetCopyReference; - -/// -/// Initializes union class with tag state of -/// "file_locking_lock_status_changed". -/// -/// Description of the "file_locking_lock_status_changed" tag state: -/// (file_operations) Locked/unlocked editing for a file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingLockStatusChanged; - -/// -/// Initializes union class with tag state of "file_move". -/// -/// Description of the "file_move" tag state: (file_operations) Moved files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMove; - -/// -/// Initializes union class with tag state of "file_permanently_delete". -/// -/// Description of the "file_permanently_delete" tag state: (file_operations) -/// Permanently deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePermanentlyDelete; - -/// -/// Initializes union class with tag state of "file_preview". -/// -/// Description of the "file_preview" tag state: (file_operations) Previewed -/// files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePreview; - -/// -/// Initializes union class with tag state of "file_rename". -/// -/// Description of the "file_rename" tag state: (file_operations) Renamed files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRename; - -/// -/// Initializes union class with tag state of "file_restore". -/// -/// Description of the "file_restore" tag state: (file_operations) Restored -/// deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRestore; - -/// -/// Initializes union class with tag state of "file_revert". -/// -/// Description of the "file_revert" tag state: (file_operations) Reverted files -/// to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRevert; - -/// -/// Initializes union class with tag state of "file_rollback_changes". -/// -/// Description of the "file_rollback_changes" tag state: (file_operations) -/// Rolled back file actions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRollbackChanges; - -/// -/// Initializes union class with tag state of "file_save_copy_reference". -/// -/// Description of the "file_save_copy_reference" tag state: (file_operations) -/// Saved file/folder using copy reference -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSaveCopyReference; - -/// -/// Initializes union class with tag state of -/// "folder_overview_description_changed". -/// -/// Description of the "folder_overview_description_changed" tag state: -/// (file_operations) Updated folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewDescriptionChanged; - -/// -/// Initializes union class with tag state of "folder_overview_item_pinned". -/// -/// Description of the "folder_overview_item_pinned" tag state: -/// (file_operations) Pinned item to folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemPinned; - -/// -/// Initializes union class with tag state of "folder_overview_item_unpinned". -/// -/// Description of the "folder_overview_item_unpinned" tag state: -/// (file_operations) Unpinned item from folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemUnpinned; - -/// -/// Initializes union class with tag state of "object_label_added". -/// -/// Description of the "object_label_added" tag state: (file_operations) Added a -/// label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelAdded; - -/// -/// Initializes union class with tag state of "object_label_removed". -/// -/// Description of the "object_label_removed" tag state: (file_operations) -/// Removed a label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelRemoved; - -/// -/// Initializes union class with tag state of "object_label_updated_value". -/// -/// Description of the "object_label_updated_value" tag state: (file_operations) -/// Updated a label's value -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelUpdatedValue; - -/// -/// Initializes union class with tag state of "organize_folder_with_tidy". -/// -/// Description of the "organize_folder_with_tidy" tag state: (file_operations) -/// Organized a folder with multi-file organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "replay_file_delete". -/// -/// Description of the "replay_file_delete" tag state: (file_operations) Deleted -/// files in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileDelete; - -/// -/// Initializes union class with tag state of "rewind_folder". -/// -/// Description of the "rewind_folder" tag state: (file_operations) Rewound a -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolder; - -/// -/// Initializes union class with tag state of "undo_naming_convention". -/// -/// Description of the "undo_naming_convention" tag state: (file_operations) -/// Reverted naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoNamingConvention; - -/// -/// Initializes union class with tag state of "undo_organize_folder_with_tidy". -/// -/// Description of the "undo_organize_folder_with_tidy" tag state: -/// (file_operations) Removed multi-file organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoOrganizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "user_tags_added". -/// -/// Description of the "user_tags_added" tag state: (file_operations) Tagged a -/// file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsAdded; - -/// -/// Initializes union class with tag state of "user_tags_removed". -/// -/// Description of the "user_tags_removed" tag state: (file_operations) Removed -/// tags -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsRemoved; - -/// -/// Initializes union class with tag state of "email_ingest_receive_file". -/// -/// Description of the "email_ingest_receive_file" tag state: (file_requests) -/// Received files via Email to Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestReceiveFile; - -/// -/// Initializes union class with tag state of "file_request_change". -/// -/// Description of the "file_request_change" tag state: (file_requests) Changed -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestChange; - -/// -/// Initializes union class with tag state of "file_request_close". -/// -/// Description of the "file_request_close" tag state: (file_requests) Closed -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestClose; - -/// -/// Initializes union class with tag state of "file_request_create". -/// -/// Description of the "file_request_create" tag state: (file_requests) Created -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCreate; - -/// -/// Initializes union class with tag state of "file_request_delete". -/// -/// Description of the "file_request_delete" tag state: (file_requests) Delete -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestDelete; - -/// -/// Initializes union class with tag state of "file_request_receive_file". -/// -/// Description of the "file_request_receive_file" tag state: (file_requests) -/// Received files for file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestReceiveFile; - -/// -/// Initializes union class with tag state of "group_add_external_id". -/// -/// Description of the "group_add_external_id" tag state: (groups) Added -/// external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddExternalId; - -/// -/// Initializes union class with tag state of "group_add_member". -/// -/// Description of the "group_add_member" tag state: (groups) Added team members -/// to group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddMember; - -/// -/// Initializes union class with tag state of "group_change_external_id". -/// -/// Description of the "group_change_external_id" tag state: (groups) Changed -/// external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeExternalId; - -/// -/// Initializes union class with tag state of "group_change_management_type". -/// -/// Description of the "group_change_management_type" tag state: (groups) -/// Changed group management type -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeManagementType; - -/// -/// Initializes union class with tag state of "group_change_member_role". -/// -/// Description of the "group_change_member_role" tag state: (groups) Changed -/// manager permissions of group member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeMemberRole; - -/// -/// Initializes union class with tag state of "group_create". -/// -/// Description of the "group_create" tag state: (groups) Created group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupCreate; - -/// -/// Initializes union class with tag state of "group_delete". -/// -/// Description of the "group_delete" tag state: (groups) Deleted group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDelete; - -/// -/// Initializes union class with tag state of "group_description_updated". -/// -/// Description of the "group_description_updated" tag state: (groups) Updated -/// group (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDescriptionUpdated; - -/// -/// Initializes union class with tag state of "group_join_policy_updated". -/// -/// Description of the "group_join_policy_updated" tag state: (groups) Updated -/// group join policy (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupJoinPolicyUpdated; - -/// -/// Initializes union class with tag state of "group_moved". -/// -/// Description of the "group_moved" tag state: (groups) Moved group -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupMoved; - -/// -/// Initializes union class with tag state of "group_remove_external_id". -/// -/// Description of the "group_remove_external_id" tag state: (groups) Removed -/// external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveExternalId; - -/// -/// Initializes union class with tag state of "group_remove_member". -/// -/// Description of the "group_remove_member" tag state: (groups) Removed team -/// members from group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveMember; - -/// -/// Initializes union class with tag state of "group_rename". -/// -/// Description of the "group_rename" tag state: (groups) Renamed group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRename; - -/// -/// Initializes union class with tag state of "account_lock_or_unlocked". -/// -/// Description of the "account_lock_or_unlocked" tag state: (logins) -/// Unlocked/locked account after failed sign in attempts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountLockOrUnlocked; - -/// -/// Initializes union class with tag state of "emm_error". -/// -/// Description of the "emm_error" tag state: (logins) Failed to sign in via EMM -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmError; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_in_via_trusted_teams" tag state: -/// (logins) Started trusted team admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedInViaTrustedTeams; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_out_via_trusted_teams" tag state: -/// (logins) Ended trusted team admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedOutViaTrustedTeams; - -/// -/// Initializes union class with tag state of "login_fail". -/// -/// Description of the "login_fail" tag state: (logins) Failed to sign in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginFail; - -/// -/// Initializes union class with tag state of "login_success". -/// -/// Description of the "login_success" tag state: (logins) Signed in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginSuccess; - -/// -/// Initializes union class with tag state of "logout". -/// -/// Description of the "logout" tag state: (logins) Signed out -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogout; - -/// -/// Initializes union class with tag state of "reseller_support_session_end". -/// -/// Description of the "reseller_support_session_end" tag state: (logins) Ended -/// reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionEnd; - -/// -/// Initializes union class with tag state of "reseller_support_session_start". -/// -/// Description of the "reseller_support_session_start" tag state: (logins) -/// Started reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionStart; - -/// -/// Initializes union class with tag state of "sign_in_as_session_end". -/// -/// Description of the "sign_in_as_session_end" tag state: (logins) Ended admin -/// sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionEnd; - -/// -/// Initializes union class with tag state of "sign_in_as_session_start". -/// -/// Description of the "sign_in_as_session_start" tag state: (logins) Started -/// admin sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionStart; - -/// -/// Initializes union class with tag state of "sso_error". -/// -/// Description of the "sso_error" tag state: (logins) Failed to sign in via SSO -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoError; - -/// -/// Initializes union class with tag state of "backup_admin_invitation_sent". -/// -/// Description of the "backup_admin_invitation_sent" tag state: (members) -/// Invited members to activate Backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupAdminInvitationSent; - -/// -/// Initializes union class with tag state of "backup_invitation_opened". -/// -/// Description of the "backup_invitation_opened" tag state: (members) Opened -/// Backup invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupInvitationOpened; - -/// -/// Initializes union class with tag state of "create_team_invite_link". -/// -/// Description of the "create_team_invite_link" tag state: (members) Created -/// team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateTeamInviteLink; - -/// -/// Initializes union class with tag state of "delete_team_invite_link". -/// -/// Description of the "delete_team_invite_link" tag state: (members) Deleted -/// team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteTeamInviteLink; - -/// -/// Initializes union class with tag state of "member_add_external_id". -/// -/// Description of the "member_add_external_id" tag state: (members) Added an -/// external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddExternalId; - -/// -/// Initializes union class with tag state of "member_add_name". -/// -/// Description of the "member_add_name" tag state: (members) Added team member -/// name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddName; - -/// -/// Initializes union class with tag state of "member_change_admin_role". -/// -/// Description of the "member_change_admin_role" tag state: (members) Changed -/// team member admin role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeAdminRole; - -/// -/// Initializes union class with tag state of "member_change_email". -/// -/// Description of the "member_change_email" tag state: (members) Changed team -/// member email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeEmail; - -/// -/// Initializes union class with tag state of "member_change_external_id". -/// -/// Description of the "member_change_external_id" tag state: (members) Changed -/// the external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeExternalId; - -/// -/// Initializes union class with tag state of "member_change_membership_type". -/// -/// Description of the "member_change_membership_type" tag state: (members) -/// Changed membership type (limited/full) of member (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeMembershipType; - -/// -/// Initializes union class with tag state of "member_change_name". -/// -/// Description of the "member_change_name" tag state: (members) Changed team -/// member name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeName; - -/// -/// Initializes union class with tag state of "member_change_reseller_role". -/// -/// Description of the "member_change_reseller_role" tag state: (members) -/// Changed team member reseller role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeResellerRole; - -/// -/// Initializes union class with tag state of "member_change_status". -/// -/// Description of the "member_change_status" tag state: (members) Changed -/// member status (invited, joined, suspended, etc.) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeStatus; - -/// -/// Initializes union class with tag state of "member_delete_manual_contacts". -/// -/// Description of the "member_delete_manual_contacts" tag state: (members) -/// Cleared manually added contacts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteManualContacts; - -/// -/// Initializes union class with tag state of "member_delete_profile_photo". -/// -/// Description of the "member_delete_profile_photo" tag state: (members) -/// Deleted team member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_permanently_delete_account_contents". -/// -/// Description of the "member_permanently_delete_account_contents" tag state: -/// (members) Permanently deleted contents of deleted team member account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberPermanentlyDeleteAccountContents; - -/// -/// Initializes union class with tag state of "member_remove_external_id". -/// -/// Description of the "member_remove_external_id" tag state: (members) Removed -/// the external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRemoveExternalId; - -/// -/// Initializes union class with tag state of "member_set_profile_photo". -/// -/// Description of the "member_set_profile_photo" tag state: (members) Set team -/// member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSetProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_custom_quota". -/// -/// Description of the "member_space_limits_add_custom_quota" tag state: -/// (members) Set custom member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_custom_quota". -/// -/// Description of the "member_space_limits_change_custom_quota" tag state: -/// (members) Changed custom member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_status". -/// -/// Description of the "member_space_limits_change_status" tag state: (members) -/// Changed space limit status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeStatus; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_custom_quota". -/// -/// Description of the "member_space_limits_remove_custom_quota" tag state: -/// (members) Removed custom member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveCustomQuota; - -/// -/// Initializes union class with tag state of "member_suggest". -/// -/// Description of the "member_suggest" tag state: (members) Suggested person to -/// add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggest; - -/// -/// Initializes union class with tag state of -/// "member_transfer_account_contents". -/// -/// Description of the "member_transfer_account_contents" tag state: (members) -/// Transferred contents of deleted member account to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberTransferAccountContents; - -/// -/// Initializes union class with tag state of "pending_secondary_email_added". -/// -/// Description of the "pending_secondary_email_added" tag state: (members) -/// Added pending secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPendingSecondaryEmailAdded; - -/// -/// Initializes union class with tag state of "secondary_email_deleted". -/// -/// Description of the "secondary_email_deleted" tag state: (members) Deleted -/// secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailDeleted; - -/// -/// Initializes union class with tag state of "secondary_email_verified". -/// -/// Description of the "secondary_email_verified" tag state: (members) Verified -/// secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailVerified; - -/// -/// Initializes union class with tag state of "secondary_mails_policy_changed". -/// -/// Description of the "secondary_mails_policy_changed" tag state: (members) -/// Secondary mails policy changed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryMailsPolicyChanged; - -/// -/// Initializes union class with tag state of "binder_add_page". -/// -/// Description of the "binder_add_page" tag state: (paper) Added Binder page -/// (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddPage; - -/// -/// Initializes union class with tag state of "binder_add_section". -/// -/// Description of the "binder_add_section" tag state: (paper) Added Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddSection; - -/// -/// Initializes union class with tag state of "binder_remove_page". -/// -/// Description of the "binder_remove_page" tag state: (paper) Removed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemovePage; - -/// -/// Initializes union class with tag state of "binder_remove_section". -/// -/// Description of the "binder_remove_section" tag state: (paper) Removed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemoveSection; - -/// -/// Initializes union class with tag state of "binder_rename_page". -/// -/// Description of the "binder_rename_page" tag state: (paper) Renamed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenamePage; - -/// -/// Initializes union class with tag state of "binder_rename_section". -/// -/// Description of the "binder_rename_section" tag state: (paper) Renamed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenameSection; - -/// -/// Initializes union class with tag state of "binder_reorder_page". -/// -/// Description of the "binder_reorder_page" tag state: (paper) Reordered Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderPage; - -/// -/// Initializes union class with tag state of "binder_reorder_section". -/// -/// Description of the "binder_reorder_section" tag state: (paper) Reordered -/// Binder section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderSection; - -/// -/// Initializes union class with tag state of "paper_content_add_member". -/// -/// Description of the "paper_content_add_member" tag state: (paper) Added users -/// and/or groups to Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddMember; - -/// -/// Initializes union class with tag state of "paper_content_add_to_folder". -/// -/// Description of the "paper_content_add_to_folder" tag state: (paper) Added -/// Paper doc/folder to folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddToFolder; - -/// -/// Initializes union class with tag state of "paper_content_archive". -/// -/// Description of the "paper_content_archive" tag state: (paper) Archived Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentArchive; - -/// -/// Initializes union class with tag state of "paper_content_create". -/// -/// Description of the "paper_content_create" tag state: (paper) Created Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentCreate; - -/// -/// Initializes union class with tag state of -/// "paper_content_permanently_delete". -/// -/// Description of the "paper_content_permanently_delete" tag state: (paper) -/// Permanently deleted Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentPermanentlyDelete; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_from_folder". -/// -/// Description of the "paper_content_remove_from_folder" tag state: (paper) -/// Removed Paper doc/folder from folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveFromFolder; - -/// -/// Initializes union class with tag state of "paper_content_remove_member". -/// -/// Description of the "paper_content_remove_member" tag state: (paper) Removed -/// users and/or groups from Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveMember; - -/// -/// Initializes union class with tag state of "paper_content_rename". -/// -/// Description of the "paper_content_rename" tag state: (paper) Renamed Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRename; - -/// -/// Initializes union class with tag state of "paper_content_restore". -/// -/// Description of the "paper_content_restore" tag state: (paper) Restored -/// archived Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRestore; - -/// -/// Initializes union class with tag state of "paper_doc_add_comment". -/// -/// Description of the "paper_doc_add_comment" tag state: (paper) Added Paper -/// doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocAddComment; - -/// -/// Initializes union class with tag state of "paper_doc_change_member_role". -/// -/// Description of the "paper_doc_change_member_role" tag state: (paper) Changed -/// member permissions for Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeMemberRole; - -/// -/// Initializes union class with tag state of "paper_doc_change_sharing_policy". -/// -/// Description of the "paper_doc_change_sharing_policy" tag state: (paper) -/// Changed sharing setting for Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSharingPolicy; - -/// -/// Initializes union class with tag state of "paper_doc_change_subscription". -/// -/// Description of the "paper_doc_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_doc_deleted". -/// -/// Description of the "paper_doc_deleted" tag state: (paper) Archived Paper doc -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleted; - -/// -/// Initializes union class with tag state of "paper_doc_delete_comment". -/// -/// Description of the "paper_doc_delete_comment" tag state: (paper) Deleted -/// Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleteComment; - -/// -/// Initializes union class with tag state of "paper_doc_download". -/// -/// Description of the "paper_doc_download" tag state: (paper) Downloaded Paper -/// doc in specific format -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDownload; - -/// -/// Initializes union class with tag state of "paper_doc_edit". -/// -/// Description of the "paper_doc_edit" tag state: (paper) Edited Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEdit; - -/// -/// Initializes union class with tag state of "paper_doc_edit_comment". -/// -/// Description of the "paper_doc_edit_comment" tag state: (paper) Edited Paper -/// doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditComment; - -/// -/// Initializes union class with tag state of "paper_doc_followed". -/// -/// Description of the "paper_doc_followed" tag state: (paper) Followed Paper -/// doc (deprecated, replaced by 'Followed/unfollowed Paper doc') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocFollowed; - -/// -/// Initializes union class with tag state of "paper_doc_mention". -/// -/// Description of the "paper_doc_mention" tag state: (paper) Mentioned user in -/// Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocMention; - -/// -/// Initializes union class with tag state of "paper_doc_ownership_changed". -/// -/// Description of the "paper_doc_ownership_changed" tag state: (paper) -/// Transferred ownership of Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocOwnershipChanged; - -/// -/// Initializes union class with tag state of "paper_doc_request_access". -/// -/// Description of the "paper_doc_request_access" tag state: (paper) Requested -/// access to Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRequestAccess; - -/// -/// Initializes union class with tag state of "paper_doc_resolve_comment". -/// -/// Description of the "paper_doc_resolve_comment" tag state: (paper) Resolved -/// Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocResolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_revert". -/// -/// Description of the "paper_doc_revert" tag state: (paper) Restored Paper doc -/// to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRevert; - -/// -/// Initializes union class with tag state of "paper_doc_slack_share". -/// -/// Description of the "paper_doc_slack_share" tag state: (paper) Shared Paper -/// doc via Slack -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocSlackShare; - -/// -/// Initializes union class with tag state of "paper_doc_team_invite". -/// -/// Description of the "paper_doc_team_invite" tag state: (paper) Shared Paper -/// doc with users and/or groups (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTeamInvite; - -/// -/// Initializes union class with tag state of "paper_doc_trashed". -/// -/// Description of the "paper_doc_trashed" tag state: (paper) Deleted Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTrashed; - -/// -/// Initializes union class with tag state of "paper_doc_unresolve_comment". -/// -/// Description of the "paper_doc_unresolve_comment" tag state: (paper) -/// Unresolved Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUnresolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_untrashed". -/// -/// Description of the "paper_doc_untrashed" tag state: (paper) Restored Paper -/// doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUntrashed; - -/// -/// Initializes union class with tag state of "paper_doc_view". -/// -/// Description of the "paper_doc_view" tag state: (paper) Viewed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocView; - -/// -/// Initializes union class with tag state of "paper_external_view_allow". -/// -/// Description of the "paper_external_view_allow" tag state: (paper) Changed -/// Paper external sharing setting to anyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewAllow; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_default_team". -/// -/// Description of the "paper_external_view_default_team" tag state: (paper) -/// Changed Paper external sharing setting to default team (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewDefaultTeam; - -/// -/// Initializes union class with tag state of "paper_external_view_forbid". -/// -/// Description of the "paper_external_view_forbid" tag state: (paper) Changed -/// Paper external sharing setting to team-only (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewForbid; - -/// -/// Initializes union class with tag state of -/// "paper_folder_change_subscription". -/// -/// Description of the "paper_folder_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_folder_deleted". -/// -/// Description of the "paper_folder_deleted" tag state: (paper) Archived Paper -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderDeleted; - -/// -/// Initializes union class with tag state of "paper_folder_followed". -/// -/// Description of the "paper_folder_followed" tag state: (paper) Followed Paper -/// folder (deprecated, replaced by 'Followed/unfollowed Paper folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderFollowed; - -/// -/// Initializes union class with tag state of "paper_folder_team_invite". -/// -/// Description of the "paper_folder_team_invite" tag state: (paper) Shared -/// Paper folder with users and/or groups (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderTeamInvite; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_change_permission". -/// -/// Description of the "paper_published_link_change_permission" tag state: -/// (paper) Changed permissions for published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkChangePermission; - -/// -/// Initializes union class with tag state of "paper_published_link_create". -/// -/// Description of the "paper_published_link_create" tag state: (paper) -/// Published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkCreate; - -/// -/// Initializes union class with tag state of "paper_published_link_disabled". -/// -/// Description of the "paper_published_link_disabled" tag state: (paper) -/// Unpublished doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkDisabled; - -/// -/// Initializes union class with tag state of "paper_published_link_view". -/// -/// Description of the "paper_published_link_view" tag state: (paper) Viewed -/// published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkView; - -/// -/// Initializes union class with tag state of "password_change". -/// -/// Description of the "password_change" tag state: (passwords) Changed password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordChange; - -/// -/// Initializes union class with tag state of "password_reset". -/// -/// Description of the "password_reset" tag state: (passwords) Reset password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordReset; - -/// -/// Initializes union class with tag state of "password_reset_all". -/// -/// Description of the "password_reset_all" tag state: (passwords) Reset all -/// team member passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetAll; - -/// -/// Initializes union class with tag state of "classification_create_report". -/// -/// Description of the "classification_create_report" tag state: (reports) -/// Created Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReport; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_fail". -/// -/// Description of the "classification_create_report_fail" tag state: (reports) -/// Couldn't create Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportFail; - -/// -/// Initializes union class with tag state of "emm_create_exceptions_report". -/// -/// Description of the "emm_create_exceptions_report" tag state: (reports) -/// Created EMM-excluded users report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateExceptionsReport; - -/// -/// Initializes union class with tag state of "emm_create_usage_report". -/// -/// Description of the "emm_create_usage_report" tag state: (reports) Created -/// EMM mobile app usage report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateUsageReport; - -/// -/// Initializes union class with tag state of "export_members_report". -/// -/// Description of the "export_members_report" tag state: (reports) Created -/// member data report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReport; - -/// -/// Initializes union class with tag state of "export_members_report_fail". -/// -/// Description of the "export_members_report_fail" tag state: (reports) Failed -/// to create members data report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportFail; - -/// -/// Initializes union class with tag state of "external_sharing_create_report". -/// -/// Description of the "external_sharing_create_report" tag state: (reports) -/// Created External sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingCreateReport; - -/// -/// Initializes union class with tag state of "external_sharing_report_failed". -/// -/// Description of the "external_sharing_report_failed" tag state: (reports) -/// Couldn't create External sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_create_report". -/// -/// Description of the "no_expiration_link_gen_create_report" tag state: -/// (reports) Report created: Links created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_report_failed". -/// -/// Description of the "no_expiration_link_gen_report_failed" tag state: -/// (reports) Couldn't create report: Links created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_create_report". -/// -/// Description of the "no_password_link_gen_create_report" tag state: (reports) -/// Report created: Links created without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_report_failed". -/// -/// Description of the "no_password_link_gen_report_failed" tag state: (reports) -/// Couldn't create report: Links created without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_create_report". -/// -/// Description of the "no_password_link_view_create_report" tag state: -/// (reports) Report created: Views of links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_report_failed". -/// -/// Description of the "no_password_link_view_report_failed" tag state: -/// (reports) Couldn't create report: Views of links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewReportFailed; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_create_report". -/// -/// Description of the "outdated_link_view_create_report" tag state: (reports) -/// Report created: Views of old links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_report_failed". -/// -/// Description of the "outdated_link_view_report_failed" tag state: (reports) -/// Couldn't create report: Views of old links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewReportFailed; - -/// -/// Initializes union class with tag state of "paper_admin_export_start". -/// -/// Description of the "paper_admin_export_start" tag state: (reports) Exported -/// all team Paper docs -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAdminExportStart; - -/// -/// Initializes union class with tag state of "ransomware_alert_create_report". -/// -/// Description of the "ransomware_alert_create_report" tag state: (reports) -/// Created ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReport; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_failed". -/// -/// Description of the "ransomware_alert_create_report_failed" tag state: -/// (reports) Couldn't generate ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportFailed; - -/// -/// Initializes union class with tag state of -/// "smart_sync_create_admin_privilege_report". -/// -/// Description of the "smart_sync_create_admin_privilege_report" tag state: -/// (reports) Created Smart Sync non-admin devices report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncCreateAdminPrivilegeReport; - -/// -/// Initializes union class with tag state of "team_activity_create_report". -/// -/// Description of the "team_activity_create_report" tag state: (reports) -/// Created team activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReport; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_fail". -/// -/// Description of the "team_activity_create_report_fail" tag state: (reports) -/// Couldn't generate team activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportFail; - -/// -/// Initializes union class with tag state of "collection_share". -/// -/// Description of the "collection_share" tag state: (sharing) Shared album -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCollectionShare; - -/// -/// Initializes union class with tag state of "file_transfers_file_add". -/// -/// Description of the "file_transfers_file_add" tag state: (sharing) Transfer -/// files added -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersFileAdd; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_delete". -/// -/// Description of the "file_transfers_transfer_delete" tag state: (sharing) -/// Deleted transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDelete; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_download". -/// -/// Description of the "file_transfers_transfer_download" tag state: (sharing) -/// Transfer downloaded -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDownload; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_send". -/// -/// Description of the "file_transfers_transfer_send" tag state: (sharing) Sent -/// transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferSend; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_view". -/// -/// Description of the "file_transfers_transfer_view" tag state: (sharing) -/// Viewed transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferView; - -/// -/// Initializes union class with tag state of "note_acl_invite_only". -/// -/// Description of the "note_acl_invite_only" tag state: (sharing) Changed Paper -/// doc to invite-only (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclInviteOnly; - -/// -/// Initializes union class with tag state of "note_acl_link". -/// -/// Description of the "note_acl_link" tag state: (sharing) Changed Paper doc to -/// link-accessible (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclLink; - -/// -/// Initializes union class with tag state of "note_acl_team_link". -/// -/// Description of the "note_acl_team_link" tag state: (sharing) Changed Paper -/// doc to link-accessible for team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclTeamLink; - -/// -/// Initializes union class with tag state of "note_shared". -/// -/// Description of the "note_shared" tag state: (sharing) Shared Paper doc -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShared; - -/// -/// Initializes union class with tag state of "note_share_receive". -/// -/// Description of the "note_share_receive" tag state: (sharing) Shared received -/// Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShareReceive; - -/// -/// Initializes union class with tag state of "open_note_shared". -/// -/// Description of the "open_note_shared" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenNoteShared; - -/// -/// Initializes union class with tag state of "replay_file_shared_link_created". -/// -/// Description of the "replay_file_shared_link_created" tag state: (sharing) -/// Created shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkCreated; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_modified". -/// -/// Description of the "replay_file_shared_link_modified" tag state: (sharing) -/// Modified shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkModified; - -/// -/// Initializes union class with tag state of "replay_project_team_add". -/// -/// Description of the "replay_project_team_add" tag state: (sharing) Added -/// member to Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamAdd; - -/// -/// Initializes union class with tag state of "replay_project_team_delete". -/// -/// Description of the "replay_project_team_delete" tag state: (sharing) Removed -/// member from Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamDelete; - -/// -/// Initializes union class with tag state of "sf_add_group". -/// -/// Description of the "sf_add_group" tag state: (sharing) Added team to shared -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAddGroup; - -/// -/// Initializes union class with tag state of -/// "sf_allow_non_members_to_view_shared_links". -/// -/// Description of the "sf_allow_non_members_to_view_shared_links" tag state: -/// (sharing) Allowed non-collaborators to view links to files in shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAllowNonMembersToViewSharedLinks; - -/// -/// Initializes union class with tag state of "sf_external_invite_warn". -/// -/// Description of the "sf_external_invite_warn" tag state: (sharing) Set team -/// members to see warning before sharing folders outside team (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfExternalInviteWarn; - -/// -/// Initializes union class with tag state of "sf_fb_invite". -/// -/// Description of the "sf_fb_invite" tag state: (sharing) Invited Facebook -/// users to shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInvite; - -/// -/// Initializes union class with tag state of "sf_fb_invite_change_role". -/// -/// Description of the "sf_fb_invite_change_role" tag state: (sharing) Changed -/// Facebook user's role in shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_fb_uninvite". -/// -/// Description of the "sf_fb_uninvite" tag state: (sharing) Uninvited Facebook -/// user from shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbUninvite; - -/// -/// Initializes union class with tag state of "sf_invite_group". -/// -/// Description of the "sf_invite_group" tag state: (sharing) Invited group to -/// shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfInviteGroup; - -/// -/// Initializes union class with tag state of "sf_team_grant_access". -/// -/// Description of the "sf_team_grant_access" tag state: (sharing) Granted -/// access to shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamGrantAccess; - -/// -/// Initializes union class with tag state of "sf_team_invite". -/// -/// Description of the "sf_team_invite" tag state: (sharing) Invited team -/// members to shared folder (deprecated, replaced by 'Invited user to Dropbox -/// and added them to shared file/folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInvite; - -/// -/// Initializes union class with tag state of "sf_team_invite_change_role". -/// -/// Description of the "sf_team_invite_change_role" tag state: (sharing) Changed -/// team member's role in shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_team_join". -/// -/// Description of the "sf_team_join" tag state: (sharing) Joined team member's -/// shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoin; - -/// -/// Initializes union class with tag state of "sf_team_join_from_oob_link". -/// -/// Description of the "sf_team_join_from_oob_link" tag state: (sharing) Joined -/// team member's shared folder from link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinFromOobLink; - -/// -/// Initializes union class with tag state of "sf_team_uninvite". -/// -/// Description of the "sf_team_uninvite" tag state: (sharing) Unshared folder -/// with team member (deprecated, replaced by 'Removed invitee from shared -/// file/folder before invite was accepted') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamUninvite; - -/// -/// Initializes union class with tag state of "shared_content_add_invitees". -/// -/// Description of the "shared_content_add_invitees" tag state: (sharing) -/// Invited user to Dropbox and added them to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddInvitees; - -/// -/// Initializes union class with tag state of "shared_content_add_link_expiry". -/// -/// Description of the "shared_content_add_link_expiry" tag state: (sharing) -/// Added expiration date to link for shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_password". -/// -/// Description of the "shared_content_add_link_password" tag state: (sharing) -/// Added password to link for shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_add_member". -/// -/// Description of the "shared_content_add_member" tag state: (sharing) Added -/// users and/or groups to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddMember; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_downloads_policy". -/// -/// Description of the "shared_content_change_downloads_policy" tag state: -/// (sharing) Changed whether members can download shared file/folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeDownloadsPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_invitee_role". -/// -/// Description of the "shared_content_change_invitee_role" tag state: (sharing) -/// Changed access type of invitee to shared file/folder before invite was -/// accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeInviteeRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_audience". -/// -/// Description of the "shared_content_change_link_audience" tag state: -/// (sharing) Changed link audience of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkAudience; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_expiry". -/// -/// Description of the "shared_content_change_link_expiry" tag state: (sharing) -/// Changed link expiration of shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_password". -/// -/// Description of the "shared_content_change_link_password" tag state: -/// (sharing) Changed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkPassword; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_member_role". -/// -/// Description of the "shared_content_change_member_role" tag state: (sharing) -/// Changed access type of shared file/folder member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeMemberRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_viewer_info_policy". -/// -/// Description of the "shared_content_change_viewer_info_policy" tag state: -/// (sharing) Changed whether members can see who viewed shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeViewerInfoPolicy; - -/// -/// Initializes union class with tag state of "shared_content_claim_invitation". -/// -/// Description of the "shared_content_claim_invitation" tag state: (sharing) -/// Acquired membership of shared file/folder by accepting invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentClaimInvitation; - -/// -/// Initializes union class with tag state of "shared_content_copy". -/// -/// Description of the "shared_content_copy" tag state: (sharing) Copied shared -/// file/folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentCopy; - -/// -/// Initializes union class with tag state of "shared_content_download". -/// -/// Description of the "shared_content_download" tag state: (sharing) Downloaded -/// shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentDownload; - -/// -/// Initializes union class with tag state of -/// "shared_content_relinquish_membership". -/// -/// Description of the "shared_content_relinquish_membership" tag state: -/// (sharing) Left shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRelinquishMembership; - -/// -/// Initializes union class with tag state of "shared_content_remove_invitees". -/// -/// Description of the "shared_content_remove_invitees" tag state: (sharing) -/// Removed invitee from shared file/folder before invite was accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveInvitees; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_expiry". -/// -/// Description of the "shared_content_remove_link_expiry" tag state: (sharing) -/// Removed link expiration date of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_password". -/// -/// Description of the "shared_content_remove_link_password" tag state: -/// (sharing) Removed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_remove_member". -/// -/// Description of the "shared_content_remove_member" tag state: (sharing) -/// Removed user/group from shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveMember; - -/// -/// Initializes union class with tag state of "shared_content_request_access". -/// -/// Description of the "shared_content_request_access" tag state: (sharing) -/// Requested access to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRequestAccess; - -/// -/// Initializes union class with tag state of "shared_content_restore_invitees". -/// -/// Description of the "shared_content_restore_invitees" tag state: (sharing) -/// Restored shared file/folder invitees -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreInvitees; - -/// -/// Initializes union class with tag state of "shared_content_restore_member". -/// -/// Description of the "shared_content_restore_member" tag state: (sharing) -/// Restored users and/or groups to membership of shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreMember; - -/// -/// Initializes union class with tag state of "shared_content_unshare". -/// -/// Description of the "shared_content_unshare" tag state: (sharing) Unshared -/// file/folder by clearing membership -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentUnshare; - -/// -/// Initializes union class with tag state of "shared_content_view". -/// -/// Description of the "shared_content_view" tag state: (sharing) Previewed -/// shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentView; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_link_policy". -/// -/// Description of the "shared_folder_change_link_policy" tag state: (sharing) -/// Changed who can access shared folder via link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeLinkPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_inheritance_policy". -/// -/// Description of the "shared_folder_change_members_inheritance_policy" tag -/// state: (sharing) Changed whether shared folder inherits members from parent -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersInheritancePolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_management_policy". -/// -/// Description of the "shared_folder_change_members_management_policy" tag -/// state: (sharing) Changed who can add/remove members of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersManagementPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_policy". -/// -/// Description of the "shared_folder_change_members_policy" tag state: -/// (sharing) Changed who can become member of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersPolicy; - -/// -/// Initializes union class with tag state of "shared_folder_create". -/// -/// Description of the "shared_folder_create" tag state: (sharing) Created -/// shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderCreate; - -/// -/// Initializes union class with tag state of -/// "shared_folder_decline_invitation". -/// -/// Description of the "shared_folder_decline_invitation" tag state: (sharing) -/// Declined team member's invite to shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderDeclineInvitation; - -/// -/// Initializes union class with tag state of "shared_folder_mount". -/// -/// Description of the "shared_folder_mount" tag state: (sharing) Added shared -/// folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMount; - -/// -/// Initializes union class with tag state of "shared_folder_nest". -/// -/// Description of the "shared_folder_nest" tag state: (sharing) Changed parent -/// of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderNest; - -/// -/// Initializes union class with tag state of -/// "shared_folder_transfer_ownership". -/// -/// Description of the "shared_folder_transfer_ownership" tag state: (sharing) -/// Transferred ownership of shared folder to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderTransferOwnership; - -/// -/// Initializes union class with tag state of "shared_folder_unmount". -/// -/// Description of the "shared_folder_unmount" tag state: (sharing) Deleted -/// shared folder from Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderUnmount; - -/// -/// Initializes union class with tag state of "shared_link_add_expiry". -/// -/// Description of the "shared_link_add_expiry" tag state: (sharing) Added -/// shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAddExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_expiry". -/// -/// Description of the "shared_link_change_expiry" tag state: (sharing) Changed -/// shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_visibility". -/// -/// Description of the "shared_link_change_visibility" tag state: (sharing) -/// Changed visibility of shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeVisibility; - -/// -/// Initializes union class with tag state of "shared_link_copy". -/// -/// Description of the "shared_link_copy" tag state: (sharing) Added file/folder -/// to Dropbox from shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCopy; - -/// -/// Initializes union class with tag state of "shared_link_create". -/// -/// Description of the "shared_link_create" tag state: (sharing) Created shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCreate; - -/// -/// Initializes union class with tag state of "shared_link_disable". -/// -/// Description of the "shared_link_disable" tag state: (sharing) Removed shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDisable; - -/// -/// Initializes union class with tag state of "shared_link_download". -/// -/// Description of the "shared_link_download" tag state: (sharing) Downloaded -/// file/folder from shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDownload; - -/// -/// Initializes union class with tag state of "shared_link_remove_expiry". -/// -/// Description of the "shared_link_remove_expiry" tag state: (sharing) Removed -/// shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkRemoveExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_expiration". -/// -/// Description of the "shared_link_settings_add_expiration" tag state: -/// (sharing) Added an expiration date to the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_password". -/// -/// Description of the "shared_link_settings_add_password" tag state: (sharing) -/// Added a password to the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddPassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_disabled". -/// -/// Description of the "shared_link_settings_allow_download_disabled" tag state: -/// (sharing) Disabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadDisabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_enabled". -/// -/// Description of the "shared_link_settings_allow_download_enabled" tag state: -/// (sharing) Enabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadEnabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_audience". -/// -/// Description of the "shared_link_settings_change_audience" tag state: -/// (sharing) Changed the audience of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeAudience; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_expiration". -/// -/// Description of the "shared_link_settings_change_expiration" tag state: -/// (sharing) Changed the expiration date of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_password". -/// -/// Description of the "shared_link_settings_change_password" tag state: -/// (sharing) Changed the password of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangePassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_expiration". -/// -/// Description of the "shared_link_settings_remove_expiration" tag state: -/// (sharing) Removed the expiration date from the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemoveExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_password". -/// -/// Description of the "shared_link_settings_remove_password" tag state: -/// (sharing) Removed the password from the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemovePassword; - -/// -/// Initializes union class with tag state of "shared_link_share". -/// -/// Description of the "shared_link_share" tag state: (sharing) Added members as -/// audience of shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkShare; - -/// -/// Initializes union class with tag state of "shared_link_view". -/// -/// Description of the "shared_link_view" tag state: (sharing) Opened shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkView; - -/// -/// Initializes union class with tag state of "shared_note_opened". -/// -/// Description of the "shared_note_opened" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedNoteOpened; - -/// -/// Initializes union class with tag state of "shmodel_disable_downloads". -/// -/// Description of the "shmodel_disable_downloads" tag state: (sharing) Disabled -/// downloads for link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelDisableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_enable_downloads". -/// -/// Description of the "shmodel_enable_downloads" tag state: (sharing) Enabled -/// downloads for link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelEnableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_group_share". -/// -/// Description of the "shmodel_group_share" tag state: (sharing) Shared link -/// with group (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelGroupShare; - -/// -/// Initializes union class with tag state of "showcase_access_granted". -/// -/// Description of the "showcase_access_granted" tag state: (showcase) Granted -/// access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAccessGranted; - -/// -/// Initializes union class with tag state of "showcase_add_member". -/// -/// Description of the "showcase_add_member" tag state: (showcase) Added member -/// to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAddMember; - -/// -/// Initializes union class with tag state of "showcase_archived". -/// -/// Description of the "showcase_archived" tag state: (showcase) Archived -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseArchived; - -/// -/// Initializes union class with tag state of "showcase_created". -/// -/// Description of the "showcase_created" tag state: (showcase) Created showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseCreated; - -/// -/// Initializes union class with tag state of "showcase_delete_comment". -/// -/// Description of the "showcase_delete_comment" tag state: (showcase) Deleted -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDeleteComment; - -/// -/// Initializes union class with tag state of "showcase_edited". -/// -/// Description of the "showcase_edited" tag state: (showcase) Edited showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEdited; - -/// -/// Initializes union class with tag state of "showcase_edit_comment". -/// -/// Description of the "showcase_edit_comment" tag state: (showcase) Edited -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditComment; - -/// -/// Initializes union class with tag state of "showcase_file_added". -/// -/// Description of the "showcase_file_added" tag state: (showcase) Added file to -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileAdded; - -/// -/// Initializes union class with tag state of "showcase_file_download". -/// -/// Description of the "showcase_file_download" tag state: (showcase) Downloaded -/// file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileDownload; - -/// -/// Initializes union class with tag state of "showcase_file_removed". -/// -/// Description of the "showcase_file_removed" tag state: (showcase) Removed -/// file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileRemoved; - -/// -/// Initializes union class with tag state of "showcase_file_view". -/// -/// Description of the "showcase_file_view" tag state: (showcase) Viewed file in -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileView; - -/// -/// Initializes union class with tag state of "showcase_permanently_deleted". -/// -/// Description of the "showcase_permanently_deleted" tag state: (showcase) -/// Permanently deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePermanentlyDeleted; - -/// -/// Initializes union class with tag state of "showcase_post_comment". -/// -/// Description of the "showcase_post_comment" tag state: (showcase) Added -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePostComment; - -/// -/// Initializes union class with tag state of "showcase_remove_member". -/// -/// Description of the "showcase_remove_member" tag state: (showcase) Removed -/// member from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRemoveMember; - -/// -/// Initializes union class with tag state of "showcase_renamed". -/// -/// Description of the "showcase_renamed" tag state: (showcase) Renamed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRenamed; - -/// -/// Initializes union class with tag state of "showcase_request_access". -/// -/// Description of the "showcase_request_access" tag state: (showcase) Requested -/// access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRequestAccess; - -/// -/// Initializes union class with tag state of "showcase_resolve_comment". -/// -/// Description of the "showcase_resolve_comment" tag state: (showcase) Resolved -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseResolveComment; - -/// -/// Initializes union class with tag state of "showcase_restored". -/// -/// Description of the "showcase_restored" tag state: (showcase) Unarchived -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRestored; - -/// -/// Initializes union class with tag state of "showcase_trashed". -/// -/// Description of the "showcase_trashed" tag state: (showcase) Deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashed; - -/// -/// Initializes union class with tag state of "showcase_trashed_deprecated". -/// -/// Description of the "showcase_trashed_deprecated" tag state: (showcase) -/// Deleted showcase (old version) (deprecated, replaced by 'Deleted showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_unresolve_comment". -/// -/// Description of the "showcase_unresolve_comment" tag state: (showcase) -/// Unresolved showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUnresolveComment; - -/// -/// Initializes union class with tag state of "showcase_untrashed". -/// -/// Description of the "showcase_untrashed" tag state: (showcase) Restored -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashed; - -/// -/// Initializes union class with tag state of "showcase_untrashed_deprecated". -/// -/// Description of the "showcase_untrashed_deprecated" tag state: (showcase) -/// Restored showcase (old version) (deprecated, replaced by 'Restored -/// showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_view". -/// -/// Description of the "showcase_view" tag state: (showcase) Viewed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseView; - -/// -/// Initializes union class with tag state of "sso_add_cert". -/// -/// Description of the "sso_add_cert" tag state: (sso) Added X.509 certificate -/// for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddCert; - -/// -/// Initializes union class with tag state of "sso_add_login_url". -/// -/// Description of the "sso_add_login_url" tag state: (sso) Added sign-in URL -/// for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLoginUrl; - -/// -/// Initializes union class with tag state of "sso_add_logout_url". -/// -/// Description of the "sso_add_logout_url" tag state: (sso) Added sign-out URL -/// for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_cert". -/// -/// Description of the "sso_change_cert" tag state: (sso) Changed X.509 -/// certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeCert; - -/// -/// Initializes union class with tag state of "sso_change_login_url". -/// -/// Description of the "sso_change_login_url" tag state: (sso) Changed sign-in -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLoginUrl; - -/// -/// Initializes union class with tag state of "sso_change_logout_url". -/// -/// Description of the "sso_change_logout_url" tag state: (sso) Changed sign-out -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_saml_identity_mode". -/// -/// Description of the "sso_change_saml_identity_mode" tag state: (sso) Changed -/// SAML identity mode for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeSamlIdentityMode; - -/// -/// Initializes union class with tag state of "sso_remove_cert". -/// -/// Description of the "sso_remove_cert" tag state: (sso) Removed X.509 -/// certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveCert; - -/// -/// Initializes union class with tag state of "sso_remove_login_url". -/// -/// Description of the "sso_remove_login_url" tag state: (sso) Removed sign-in -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLoginUrl; - -/// -/// Initializes union class with tag state of "sso_remove_logout_url". -/// -/// Description of the "sso_remove_logout_url" tag state: (sso) Removed sign-out -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLogoutUrl; - -/// -/// Initializes union class with tag state of "team_folder_change_status". -/// -/// Description of the "team_folder_change_status" tag state: (team_folders) -/// Changed archival status of team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderChangeStatus; - -/// -/// Initializes union class with tag state of "team_folder_create". -/// -/// Description of the "team_folder_create" tag state: (team_folders) Created -/// team folder in active status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderCreate; - -/// -/// Initializes union class with tag state of "team_folder_downgrade". -/// -/// Description of the "team_folder_downgrade" tag state: (team_folders) -/// Downgraded team folder to regular shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderDowngrade; - -/// -/// Initializes union class with tag state of "team_folder_permanently_delete". -/// -/// Description of the "team_folder_permanently_delete" tag state: -/// (team_folders) Permanently deleted archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderPermanentlyDelete; - -/// -/// Initializes union class with tag state of "team_folder_rename". -/// -/// Description of the "team_folder_rename" tag state: (team_folders) Renamed -/// active/archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderRename; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_settings_changed". -/// -/// Description of the "team_selective_sync_settings_changed" tag state: -/// (team_folders) Changed sync default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncSettingsChanged; - -/// -/// Initializes union class with tag state of "account_capture_change_policy". -/// -/// Description of the "account_capture_change_policy" tag state: -/// (team_policies) Changed account capture setting on team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangePolicy; - -/// -/// Initializes union class with tag state of "admin_email_reminders_changed". -/// -/// Description of the "admin_email_reminders_changed" tag state: -/// (team_policies) Changed admin reminder settings for requests to join the -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminEmailRemindersChanged; - -/// -/// Initializes union class with tag state of "allow_download_disabled". -/// -/// Description of the "allow_download_disabled" tag state: (team_policies) -/// Disabled downloads (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadDisabled; - -/// -/// Initializes union class with tag state of "allow_download_enabled". -/// -/// Description of the "allow_download_enabled" tag state: (team_policies) -/// Enabled downloads (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadEnabled; - -/// -/// Initializes union class with tag state of "app_permissions_changed". -/// -/// Description of the "app_permissions_changed" tag state: (team_policies) -/// Changed app permissions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppPermissionsChanged; - -/// -/// Initializes union class with tag state of "camera_uploads_policy_changed". -/// -/// Description of the "camera_uploads_policy_changed" tag state: -/// (team_policies) Changed camera uploads setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCameraUploadsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "capture_transcript_policy_changed". -/// -/// Description of the "capture_transcript_policy_changed" tag state: -/// (team_policies) Changed Capture transcription policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCaptureTranscriptPolicyChanged; - -/// -/// Initializes union class with tag state of "classification_change_policy". -/// -/// Description of the "classification_change_policy" tag state: (team_policies) -/// Changed classification policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationChangePolicy; - -/// -/// Initializes union class with tag state of "computer_backup_policy_changed". -/// -/// Description of the "computer_backup_policy_changed" tag state: -/// (team_policies) Changed computer backup policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComputerBackupPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "content_administration_policy_changed". -/// -/// Description of the "content_administration_policy_changed" tag state: -/// (team_policies) Changed content management setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdministrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_change_policy". -/// -/// Description of the "data_placement_restriction_change_policy" tag state: -/// (team_policies) Set restrictions on data center locations where team data -/// resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionChangePolicy; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_satisfy_policy". -/// -/// Description of the "data_placement_restriction_satisfy_policy" tag state: -/// (team_policies) Completed restrictions on data center locations where team -/// data resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionSatisfyPolicy; - -/// -/// Initializes union class with tag state of "device_approvals_add_exception". -/// -/// Description of the "device_approvals_add_exception" tag state: -/// (team_policies) Added members to device approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsAddException; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_desktop_policy". -/// -/// Description of the "device_approvals_change_desktop_policy" tag state: -/// (team_policies) Set/removed limit on number of computers member can link to -/// team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeDesktopPolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_mobile_policy". -/// -/// Description of the "device_approvals_change_mobile_policy" tag state: -/// (team_policies) Set/removed limit on number of mobile devices member can -/// link to team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeMobilePolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_overage_action". -/// -/// Description of the "device_approvals_change_overage_action" tag state: -/// (team_policies) Changed device approvals setting when member is over limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeOverageAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_unlink_action". -/// -/// Description of the "device_approvals_change_unlink_action" tag state: -/// (team_policies) Changed device approvals setting when member unlinks -/// approved device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeUnlinkAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_remove_exception". -/// -/// Description of the "device_approvals_remove_exception" tag state: -/// (team_policies) Removed members from device approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsRemoveException; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_add_members". -/// -/// Description of the "directory_restrictions_add_members" tag state: -/// (team_policies) Added members to directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsAddMembers; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_remove_members". -/// -/// Description of the "directory_restrictions_remove_members" tag state: -/// (team_policies) Removed members from directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsRemoveMembers; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_policy_changed". -/// -/// Description of the "dropbox_passwords_policy_changed" tag state: -/// (team_policies) Changed Dropbox Passwords policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsPolicyChanged; - -/// -/// Initializes union class with tag state of "email_ingest_policy_changed". -/// -/// Description of the "email_ingest_policy_changed" tag state: (team_policies) -/// Changed email to Dropbox policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestPolicyChanged; - -/// -/// Initializes union class with tag state of "emm_add_exception". -/// -/// Description of the "emm_add_exception" tag state: (team_policies) Added -/// members to EMM exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmAddException; - -/// -/// Initializes union class with tag state of "emm_change_policy". -/// -/// Description of the "emm_change_policy" tag state: (team_policies) -/// Enabled/disabled enterprise mobility management for members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmChangePolicy; - -/// -/// Initializes union class with tag state of "emm_remove_exception". -/// -/// Description of the "emm_remove_exception" tag state: (team_policies) Removed -/// members from EMM exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRemoveException; - -/// -/// Initializes union class with tag state of -/// "extended_version_history_change_policy". -/// -/// Description of the "extended_version_history_change_policy" tag state: -/// (team_policies) Accepted/opted out of extended version history -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtendedVersionHistoryChangePolicy; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_policy_changed". -/// -/// Description of the "external_drive_backup_policy_changed" tag state: -/// (team_policies) Changed external drive backup policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupPolicyChanged; - -/// -/// Initializes union class with tag state of "file_comments_change_policy". -/// -/// Description of the "file_comments_change_policy" tag state: (team_policies) -/// Enabled/disabled commenting on team files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommentsChangePolicy; - -/// -/// Initializes union class with tag state of "file_locking_policy_changed". -/// -/// Description of the "file_locking_policy_changed" tag state: (team_policies) -/// Changed file locking policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "file_provider_migration_policy_changed". -/// -/// Description of the "file_provider_migration_policy_changed" tag state: -/// (team_policies) Changed File Provider Migration policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileProviderMigrationPolicyChanged; - -/// -/// Initializes union class with tag state of "file_requests_change_policy". -/// -/// Description of the "file_requests_change_policy" tag state: (team_policies) -/// Enabled/disabled file requests -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsChangePolicy; - -/// -/// Initializes union class with tag state of "file_requests_emails_enabled". -/// -/// Description of the "file_requests_emails_enabled" tag state: (team_policies) -/// Enabled file request emails for everyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsEnabled; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_restricted_to_team_only". -/// -/// Description of the "file_requests_emails_restricted_to_team_only" tag state: -/// (team_policies) Enabled file request emails for team (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Initializes union class with tag state of "file_transfers_policy_changed". -/// -/// Description of the "file_transfers_policy_changed" tag state: -/// (team_policies) Changed file transfers policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "folder_link_restriction_policy_changed". -/// -/// Description of the "folder_link_restriction_policy_changed" tag state: -/// (team_policies) Changed folder link restrictions policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderLinkRestrictionPolicyChanged; - -/// -/// Initializes union class with tag state of "google_sso_change_policy". -/// -/// Description of the "google_sso_change_policy" tag state: (team_policies) -/// Enabled/disabled Google single sign-on for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleSsoChangePolicy; - -/// -/// Initializes union class with tag state of -/// "group_user_management_change_policy". -/// -/// Description of the "group_user_management_change_policy" tag state: -/// (team_policies) Changed who can create groups -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupUserManagementChangePolicy; - -/// -/// Initializes union class with tag state of "integration_policy_changed". -/// -/// Description of the "integration_policy_changed" tag state: (team_policies) -/// Changed integration policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "invite_acceptance_email_policy_changed". -/// -/// Description of the "invite_acceptance_email_policy_changed" tag state: -/// (team_policies) Changed invite accept email policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteAcceptanceEmailPolicyChanged; - -/// -/// Initializes union class with tag state of "member_requests_change_policy". -/// -/// Description of the "member_requests_change_policy" tag state: -/// (team_policies) Changed whether users can find team when not invited -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRequestsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_send_invite_policy_changed". -/// -/// Description of the "member_send_invite_policy_changed" tag state: -/// (team_policies) Changed member send invite policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSendInvitePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_exception". -/// -/// Description of the "member_space_limits_add_exception" tag state: -/// (team_policies) Added members to member space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddException; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_caps_type_policy". -/// -/// Description of the "member_space_limits_change_caps_type_policy" tag state: -/// (team_policies) Changed member space limit type for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_policy". -/// -/// Description of the "member_space_limits_change_policy" tag state: -/// (team_policies) Changed team default member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_exception". -/// -/// Description of the "member_space_limits_remove_exception" tag state: -/// (team_policies) Removed members from member space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveException; - -/// -/// Initializes union class with tag state of -/// "member_suggestions_change_policy". -/// -/// Description of the "member_suggestions_change_policy" tag state: -/// (team_policies) Enabled/disabled option for team members to suggest people -/// to add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestionsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "microsoft_office_addin_change_policy". -/// -/// Description of the "microsoft_office_addin_change_policy" tag state: -/// (team_policies) Enabled/disabled Microsoft Office add-in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMicrosoftOfficeAddinChangePolicy; - -/// -/// Initializes union class with tag state of "network_control_change_policy". -/// -/// Description of the "network_control_change_policy" tag state: -/// (team_policies) Enabled/disabled network control -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNetworkControlChangePolicy; - -/// -/// Initializes union class with tag state of "paper_change_deployment_policy". -/// -/// Description of the "paper_change_deployment_policy" tag state: -/// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to -/// all members or to specific members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeDeploymentPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_link_policy". -/// -/// Description of the "paper_change_member_link_policy" tag state: -/// (team_policies) Changed whether non-members can view Paper docs with link -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberLinkPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_policy". -/// -/// Description of the "paper_change_member_policy" tag state: (team_policies) -/// Changed whether members can share Paper docs outside team, and if docs are -/// accessible only by team members or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "paper_change_policy". -/// -/// Description of the "paper_change_policy" tag state: (team_policies) -/// Enabled/disabled Dropbox Paper for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangePolicy; - -/// -/// Initializes union class with tag state of -/// "paper_default_folder_policy_changed". -/// -/// Description of the "paper_default_folder_policy_changed" tag state: -/// (team_policies) Changed Paper Default Folder Policy setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDefaultFolderPolicyChanged; - -/// -/// Initializes union class with tag state of "paper_desktop_policy_changed". -/// -/// Description of the "paper_desktop_policy_changed" tag state: (team_policies) -/// Enabled/disabled Paper Desktop for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDesktopPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_addition". -/// -/// Description of the "paper_enabled_users_group_addition" tag state: -/// (team_policies) Added users to Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupAddition; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_removal". -/// -/// Description of the "paper_enabled_users_group_removal" tag state: -/// (team_policies) Removed users from Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupRemoval; - -/// -/// Initializes union class with tag state of -/// "password_strength_requirements_change_policy". -/// -/// Description of the "password_strength_requirements_change_policy" tag state: -/// (team_policies) Changed team password strength requirements -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordStrengthRequirementsChangePolicy; - -/// -/// Initializes union class with tag state of "permanent_delete_change_policy". -/// -/// Description of the "permanent_delete_change_policy" tag state: -/// (team_policies) Enabled/disabled ability of team members to permanently -/// delete content -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermanentDeleteChangePolicy; - -/// -/// Initializes union class with tag state of "reseller_support_change_policy". -/// -/// Description of the "reseller_support_change_policy" tag state: -/// (team_policies) Enabled/disabled reseller support -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportChangePolicy; - -/// -/// Initializes union class with tag state of "rewind_policy_changed". -/// -/// Description of the "rewind_policy_changed" tag state: (team_policies) -/// Changed Rewind policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "send_for_signature_policy_changed". -/// -/// Description of the "send_for_signature_policy_changed" tag state: -/// (team_policies) Changed send for signature policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSendForSignaturePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "sharing_change_folder_join_policy". -/// -/// Description of the "sharing_change_folder_join_policy" tag state: -/// (team_policies) Changed whether team members can join shared folders owned -/// outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeFolderJoinPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// Description of the "sharing_change_link_allow_change_expiration_policy" tag -/// state: (team_policies) Changed the allow remove or change expiration policy -/// for the links shared outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_default_expiration_policy". -/// -/// Description of the "sharing_change_link_default_expiration_policy" tag -/// state: (team_policies) Changed the default expiration for the links shared -/// outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkDefaultExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_enforce_password_policy". -/// -/// Description of the "sharing_change_link_enforce_password_policy" tag state: -/// (team_policies) Changed the password requirement for the links shared -/// outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkEnforcePasswordPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_link_policy". -/// -/// Description of the "sharing_change_link_policy" tag state: (team_policies) -/// Changed whether members can share links outside team, and if links are -/// accessible only by team members or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_member_policy". -/// -/// Description of the "sharing_change_member_policy" tag state: (team_policies) -/// Changed whether members can share files/folders outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_download_policy". -/// -/// Description of the "showcase_change_download_policy" tag state: -/// (team_policies) Enabled/disabled downloading files from Dropbox Showcase for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeDownloadPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_enabled_policy". -/// -/// Description of the "showcase_change_enabled_policy" tag state: -/// (team_policies) Enabled/disabled Dropbox Showcase for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeEnabledPolicy; - -/// -/// Initializes union class with tag state of -/// "showcase_change_external_sharing_policy". -/// -/// Description of the "showcase_change_external_sharing_policy" tag state: -/// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeExternalSharingPolicy; - -/// -/// Initializes union class with tag state of -/// "smarter_smart_sync_policy_changed". -/// -/// Description of the "smarter_smart_sync_policy_changed" tag state: -/// (team_policies) Changed automatic Smart Sync setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmarterSmartSyncPolicyChanged; - -/// -/// Initializes union class with tag state of "smart_sync_change_policy". -/// -/// Description of the "smart_sync_change_policy" tag state: (team_policies) -/// Changed default Smart Sync setting for team members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncChangePolicy; - -/// -/// Initializes union class with tag state of "smart_sync_not_opt_out". -/// -/// Description of the "smart_sync_not_opt_out" tag state: (team_policies) Opted -/// team into Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncNotOptOut; - -/// -/// Initializes union class with tag state of "smart_sync_opt_out". -/// -/// Description of the "smart_sync_opt_out" tag state: (team_policies) Opted -/// team out of Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncOptOut; - -/// -/// Initializes union class with tag state of "sso_change_policy". -/// -/// Description of the "sso_change_policy" tag state: (team_policies) Changed -/// single sign-on setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangePolicy; - -/// -/// Initializes union class with tag state of "team_branding_policy_changed". -/// -/// Description of the "team_branding_policy_changed" tag state: (team_policies) -/// Changed team branding policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamBrandingPolicyChanged; - -/// -/// Initializes union class with tag state of "team_extensions_policy_changed". -/// -/// Description of the "team_extensions_policy_changed" tag state: -/// (team_policies) Changed App Integrations setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExtensionsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_policy_changed". -/// -/// Description of the "team_selective_sync_policy_changed" tag state: -/// (team_policies) Enabled/disabled Team Selective Sync for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_sharing_whitelist_subjects_changed". -/// -/// Description of the "team_sharing_whitelist_subjects_changed" tag state: -/// (team_policies) Edited the approved list for sharing externally -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharingWhitelistSubjectsChanged; - -/// -/// Initializes union class with tag state of "tfa_add_exception". -/// -/// Description of the "tfa_add_exception" tag state: (team_policies) Added -/// members to two factor authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddException; - -/// -/// Initializes union class with tag state of "tfa_change_policy". -/// -/// Description of the "tfa_change_policy" tag state: (team_policies) Changed -/// two-step verification setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangePolicy; - -/// -/// Initializes union class with tag state of "tfa_remove_exception". -/// -/// Description of the "tfa_remove_exception" tag state: (team_policies) Removed -/// members from two factor authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveException; - -/// -/// Initializes union class with tag state of "two_account_change_policy". -/// -/// Description of the "two_account_change_policy" tag state: (team_policies) -/// Enabled/disabled option for members to link personal Dropbox account and -/// team account to same computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoAccountChangePolicy; - -/// -/// Initializes union class with tag state of "viewer_info_policy_changed". -/// -/// Description of the "viewer_info_policy_changed" tag state: (team_policies) -/// Changed team policy for viewer info -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerInfoPolicyChanged; - -/// -/// Initializes union class with tag state of "watermarking_policy_changed". -/// -/// Description of the "watermarking_policy_changed" tag state: (team_policies) -/// Changed watermarking policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWatermarkingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_active_session_limit". -/// -/// Description of the "web_sessions_change_active_session_limit" tag state: -/// (team_policies) Changed limit on active sessions per member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeActiveSessionLimit; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_fixed_length_policy". -/// -/// Description of the "web_sessions_change_fixed_length_policy" tag state: -/// (team_policies) Changed how long members can stay signed in to Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeFixedLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_idle_length_policy". -/// -/// Description of the "web_sessions_change_idle_length_policy" tag state: -/// (team_policies) Changed how long team members can be idle while signed in to -/// Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeIdleLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_successful". -/// -/// Description of the "data_residency_migration_request_successful" tag state: -/// (team_profile) Requested data residency migration for team data -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestSuccessful; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_unsuccessful". -/// -/// Description of the "data_residency_migration_request_unsuccessful" tag -/// state: (team_profile) Request for data residency migration for team data has -/// failed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestUnsuccessful; - -/// -/// Initializes union class with tag state of "team_merge_from". -/// -/// Description of the "team_merge_from" tag state: (team_profile) Merged -/// another team into this team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeFrom; - -/// -/// Initializes union class with tag state of "team_merge_to". -/// -/// Description of the "team_merge_to" tag state: (team_profile) Merged this -/// team into another team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeTo; - -/// -/// Initializes union class with tag state of "team_profile_add_background". -/// -/// Description of the "team_profile_add_background" tag state: (team_profile) -/// Added team background to display on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddBackground; - -/// -/// Initializes union class with tag state of "team_profile_add_logo". -/// -/// Description of the "team_profile_add_logo" tag state: (team_profile) Added -/// team logo to display on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_background". -/// -/// Description of the "team_profile_change_background" tag state: -/// (team_profile) Changed team background displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeBackground; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_default_language". -/// -/// Description of the "team_profile_change_default_language" tag state: -/// (team_profile) Changed default language for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeDefaultLanguage; - -/// -/// Initializes union class with tag state of "team_profile_change_logo". -/// -/// Description of the "team_profile_change_logo" tag state: (team_profile) -/// Changed team logo displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_name". -/// -/// Description of the "team_profile_change_name" tag state: (team_profile) -/// Changed team name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeName; - -/// -/// Initializes union class with tag state of "team_profile_remove_background". -/// -/// Description of the "team_profile_remove_background" tag state: -/// (team_profile) Removed team background displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveBackground; - -/// -/// Initializes union class with tag state of "team_profile_remove_logo". -/// -/// Description of the "team_profile_remove_logo" tag state: (team_profile) -/// Removed team logo displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveLogo; - -/// -/// Initializes union class with tag state of "tfa_add_backup_phone". -/// -/// Description of the "tfa_add_backup_phone" tag state: (tfa) Added backup -/// phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_add_security_key". -/// -/// Description of the "tfa_add_security_key" tag state: (tfa) Added security -/// key for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_change_backup_phone". -/// -/// Description of the "tfa_change_backup_phone" tag state: (tfa) Changed backup -/// phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_change_status". -/// -/// Description of the "tfa_change_status" tag state: (tfa) -/// Enabled/disabled/changed two-step verification setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeStatus; - -/// -/// Initializes union class with tag state of "tfa_remove_backup_phone". -/// -/// Description of the "tfa_remove_backup_phone" tag state: (tfa) Removed backup -/// phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_remove_security_key". -/// -/// Description of the "tfa_remove_security_key" tag state: (tfa) Removed -/// security key for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_reset". -/// -/// Description of the "tfa_reset" tag state: (tfa) Reset two-step verification -/// for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaReset; - -/// -/// Initializes union class with tag state of "changed_enterprise_admin_role". -/// -/// Description of the "changed_enterprise_admin_role" tag state: -/// (trusted_teams) Changed enterprise admin role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseAdminRole; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_connected_team_status". -/// -/// Description of the "changed_enterprise_connected_team_status" tag state: -/// (trusted_teams) Changed enterprise-connected team status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseConnectedTeamStatus; - -/// -/// Initializes union class with tag state of "ended_enterprise_admin_session". -/// -/// Description of the "ended_enterprise_admin_session" tag state: -/// (trusted_teams) Ended enterprise admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_deprecated". -/// -/// Description of the "ended_enterprise_admin_session_deprecated" tag state: -/// (trusted_teams) Ended enterprise admin session (deprecated, replaced by -/// 'Ended enterprise admin session') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDeprecated; - -/// -/// Initializes union class with tag state of "enterprise_settings_locking". -/// -/// Description of the "enterprise_settings_locking" tag state: (trusted_teams) -/// Changed who can update a setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseSettingsLocking; - -/// -/// Initializes union class with tag state of "guest_admin_change_status". -/// -/// Description of the "guest_admin_change_status" tag state: (trusted_teams) -/// Changed guest team admin status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminChangeStatus; - -/// -/// Initializes union class with tag state of -/// "started_enterprise_admin_session". -/// -/// Description of the "started_enterprise_admin_session" tag state: -/// (trusted_teams) Started enterprise admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of "team_merge_request_accepted". -/// -/// Description of the "team_merge_request_accepted" tag state: (trusted_teams) -/// Accepted a team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAccepted; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_primary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_secondary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_auto_canceled". -/// -/// Description of the "team_merge_request_auto_canceled" tag state: -/// (trusted_teams) Automatically canceled team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAutoCanceled; - -/// -/// Initializes union class with tag state of "team_merge_request_canceled". -/// -/// Description of the "team_merge_request_canceled" tag state: (trusted_teams) -/// Canceled a team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceled; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_primary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_secondary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_expired". -/// -/// Description of the "team_merge_request_expired" tag state: (trusted_teams) -/// Team merge request expired -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpired; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_primary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_secondary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_primary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_secondary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_reminder". -/// -/// Description of the "team_merge_request_reminder" tag state: (trusted_teams) -/// Sent a team merge request reminder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminder; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_primary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_secondary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_revoked". -/// -/// Description of the "team_merge_request_revoked" tag state: (trusted_teams) -/// Canceled the team merge -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRevoked; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_primary_team" tag -/// state: (trusted_teams) Requested to merge their Dropbox team into yours -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_secondary_team" tag -/// state: (trusted_teams) Requested to merge your team into another Dropbox -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -- (BOOL)isAdminAlertingAlertStateChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -- (BOOL)isAdminAlertingChangedAlertConfig; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -- (BOOL)isAdminAlertingTriggeredAlert; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -- (BOOL)isRansomwareRestoreProcessCompleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -- (BOOL)isRansomwareRestoreProcessStarted; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -/// @return Whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -- (BOOL)isAppBlockedByPermissions; - -/// -/// Retrieves whether the union's current tag state has value "app_link_team". -/// -/// @return Whether the union's current tag state has value "app_link_team". -/// -- (BOOL)isAppLinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_link_user". -/// -/// @return Whether the union's current tag state has value "app_link_user". -/// -- (BOOL)isAppLinkUser; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_team". -/// -/// @return Whether the union's current tag state has value "app_unlink_team". -/// -- (BOOL)isAppUnlinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_user". -/// -/// @return Whether the union's current tag state has value "app_unlink_user". -/// -- (BOOL)isAppUnlinkUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_connected". -/// -/// @return Whether the union's current tag state has value -/// "integration_connected". -/// -- (BOOL)isIntegrationConnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_disconnected". -/// -/// @return Whether the union's current tag state has value -/// "integration_disconnected". -/// -- (BOOL)isIntegrationDisconnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_comment". -/// -/// @return Whether the union's current tag state has value "file_add_comment". -/// -- (BOOL)isFileAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -/// @return Whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -- (BOOL)isFileChangeCommentSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_delete_comment". -/// -- (BOOL)isFileDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_comment". -/// -/// @return Whether the union's current tag state has value "file_edit_comment". -/// -- (BOOL)isFileEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_like_comment". -/// -/// @return Whether the union's current tag state has value "file_like_comment". -/// -- (BOOL)isFileLikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_resolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_resolve_comment". -/// -- (BOOL)isFileResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unlike_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_unlike_comment". -/// -- (BOOL)isFileUnlikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unresolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_unresolve_comment". -/// -- (BOOL)isFileUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -- (BOOL)isGovernancePolicyAddFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -- (BOOL)isGovernancePolicyAddFolderFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -- (BOOL)isGovernancePolicyContentDisposed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_create". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_create". -/// -- (BOOL)isGovernancePolicyCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_delete". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_delete". -/// -- (BOOL)isGovernancePolicyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -- (BOOL)isGovernancePolicyEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -- (BOOL)isGovernancePolicyEditDuration; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_created". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_created". -/// -- (BOOL)isGovernancePolicyExportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -- (BOOL)isGovernancePolicyExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -- (BOOL)isGovernancePolicyRemoveFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_report_created". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_report_created". -/// -- (BOOL)isGovernancePolicyReportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -- (BOOL)isGovernancePolicyZipPartDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -- (BOOL)isLegalHoldsActivateAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_add_members". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_add_members". -/// -- (BOOL)isLegalHoldsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -- (BOOL)isLegalHoldsChangeHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -- (BOOL)isLegalHoldsChangeHoldName; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -- (BOOL)isLegalHoldsExportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -- (BOOL)isLegalHoldsExportCancelled; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -- (BOOL)isLegalHoldsExportDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -- (BOOL)isLegalHoldsExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -- (BOOL)isLegalHoldsReleaseAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -- (BOOL)isLegalHoldsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -- (BOOL)isLegalHoldsReportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -- (BOOL)isDeviceChangeIpDesktop; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -- (BOOL)isDeviceChangeIpMobile; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_web". -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_web". -/// -- (BOOL)isDeviceChangeIpWeb; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -- (BOOL)isDeviceDeleteOnUnlinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -- (BOOL)isDeviceDeleteOnUnlinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_fail". -/// -/// @return Whether the union's current tag state has value "device_link_fail". -/// -- (BOOL)isDeviceLinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_success". -/// -/// @return Whether the union's current tag state has value -/// "device_link_success". -/// -- (BOOL)isDeviceLinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_disabled". -/// -/// @return Whether the union's current tag state has value -/// "device_management_disabled". -/// -- (BOOL)isDeviceManagementDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_enabled". -/// -/// @return Whether the union's current tag state has value -/// "device_management_enabled". -/// -- (BOOL)isDeviceManagementEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -/// @return Whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -- (BOOL)isDeviceSyncBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "device_unlink". -/// -/// @return Whether the union's current tag state has value "device_unlink". -/// -- (BOOL)isDeviceUnlink; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -- (BOOL)isDropboxPasswordsExported; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -- (BOOL)isDropboxPasswordsNewDeviceEnrolled; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -/// @return Whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -- (BOOL)isEmmRefreshAuthToken; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -- (BOOL)isExternalDriveBackupEligibilityStatusChecked; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -- (BOOL)isExternalDriveBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_availability". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_availability". -/// -- (BOOL)isAccountCaptureChangeAvailability; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -- (BOOL)isAccountCaptureMigrateAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -- (BOOL)isAccountCaptureNotificationEmailsSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -- (BOOL)isAccountCaptureRelinquishAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_domain_invites". -/// -/// @return Whether the union's current tag state has value -/// "disabled_domain_invites". -/// -- (BOOL)isDisabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -- (BOOL)isDomainInvitesApproveRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -- (BOOL)isDomainInvitesDeclineRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -- (BOOL)isDomainInvitesEmailExistingUsers; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -- (BOOL)isDomainInvitesRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToNo; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToYes; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -- (BOOL)isDomainVerificationAddDomainFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -- (BOOL)isDomainVerificationAddDomainSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -- (BOOL)isDomainVerificationRemoveDomain; - -/// -/// Retrieves whether the union's current tag state has value -/// "enabled_domain_invites". -/// -/// @return Whether the union's current tag state has value -/// "enabled_domain_invites". -/// -- (BOOL)isEnabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyCancelKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -- (BOOL)isTeamEncryptionKeyCreateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -- (BOOL)isTeamEncryptionKeyDeleteKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -- (BOOL)isTeamEncryptionKeyDisableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -- (BOOL)isTeamEncryptionKeyEnableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -- (BOOL)isTeamEncryptionKeyRotateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyScheduleKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "apply_naming_convention". -/// -/// @return Whether the union's current tag state has value -/// "apply_naming_convention". -/// -- (BOOL)isApplyNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value "create_folder". -/// -/// @return Whether the union's current tag state has value "create_folder". -/// -- (BOOL)isCreateFolder; - -/// -/// Retrieves whether the union's current tag state has value "file_add". -/// -/// @return Whether the union's current tag state has value "file_add". -/// -- (BOOL)isFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_from_automation". -/// -/// @return Whether the union's current tag state has value -/// "file_add_from_automation". -/// -- (BOOL)isFileAddFromAutomation; - -/// -/// Retrieves whether the union's current tag state has value "file_copy". -/// -/// @return Whether the union's current tag state has value "file_copy". -/// -- (BOOL)isFileCopy; - -/// -/// Retrieves whether the union's current tag state has value "file_delete". -/// -/// @return Whether the union's current tag state has value "file_delete". -/// -- (BOOL)isFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_download". -/// -/// @return Whether the union's current tag state has value "file_download". -/// -- (BOOL)isFileDownload; - -/// -/// Retrieves whether the union's current tag state has value "file_edit". -/// -/// @return Whether the union's current tag state has value "file_edit". -/// -- (BOOL)isFileEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_get_copy_reference". -/// -/// @return Whether the union's current tag state has value -/// "file_get_copy_reference". -/// -- (BOOL)isFileGetCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -- (BOOL)isFileLockingLockStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "file_move". -/// -/// @return Whether the union's current tag state has value "file_move". -/// -- (BOOL)isFileMove; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "file_permanently_delete". -/// -- (BOOL)isFilePermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_preview". -/// -/// @return Whether the union's current tag state has value "file_preview". -/// -- (BOOL)isFilePreview; - -/// -/// Retrieves whether the union's current tag state has value "file_rename". -/// -/// @return Whether the union's current tag state has value "file_rename". -/// -- (BOOL)isFileRename; - -/// -/// Retrieves whether the union's current tag state has value "file_restore". -/// -/// @return Whether the union's current tag state has value "file_restore". -/// -- (BOOL)isFileRestore; - -/// -/// Retrieves whether the union's current tag state has value "file_revert". -/// -/// @return Whether the union's current tag state has value "file_revert". -/// -- (BOOL)isFileRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rollback_changes". -/// -/// @return Whether the union's current tag state has value -/// "file_rollback_changes". -/// -- (BOOL)isFileRollbackChanges; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_save_copy_reference". -/// -/// @return Whether the union's current tag state has value -/// "file_save_copy_reference". -/// -- (BOOL)isFileSaveCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -- (BOOL)isFolderOverviewDescriptionChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -- (BOOL)isFolderOverviewItemPinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -- (BOOL)isFolderOverviewItemUnpinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_added". -/// -/// @return Whether the union's current tag state has value -/// "object_label_added". -/// -- (BOOL)isObjectLabelAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_removed". -/// -/// @return Whether the union's current tag state has value -/// "object_label_removed". -/// -- (BOOL)isObjectLabelRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_updated_value". -/// -/// @return Whether the union's current tag state has value -/// "object_label_updated_value". -/// -- (BOOL)isObjectLabelUpdatedValue; - -/// -/// Retrieves whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -/// @return Whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -- (BOOL)isOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_delete". -/// -/// @return Whether the union's current tag state has value -/// "replay_file_delete". -/// -- (BOOL)isReplayFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "rewind_folder". -/// -/// @return Whether the union's current tag state has value "rewind_folder". -/// -- (BOOL)isRewindFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_naming_convention". -/// -/// @return Whether the union's current tag state has value -/// "undo_naming_convention". -/// -- (BOOL)isUndoNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -/// @return Whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -- (BOOL)isUndoOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value "user_tags_added". -/// -/// @return Whether the union's current tag state has value "user_tags_added". -/// -- (BOOL)isUserTagsAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_removed". -/// -/// @return Whether the union's current tag state has value "user_tags_removed". -/// -- (BOOL)isUserTagsRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -- (BOOL)isEmailIngestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_change". -/// -/// @return Whether the union's current tag state has value -/// "file_request_change". -/// -- (BOOL)isFileRequestChange; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_close". -/// -/// @return Whether the union's current tag state has value -/// "file_request_close". -/// -- (BOOL)isFileRequestClose; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_create". -/// -/// @return Whether the union's current tag state has value -/// "file_request_create". -/// -- (BOOL)isFileRequestCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_delete". -/// -/// @return Whether the union's current tag state has value -/// "file_request_delete". -/// -- (BOOL)isFileRequestDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_receive_file". -/// -/// @return Whether the union's current tag state has value -/// "file_request_receive_file". -/// -- (BOOL)isFileRequestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_external_id". -/// -/// @return Whether the union's current tag state has value -/// "group_add_external_id". -/// -- (BOOL)isGroupAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_member". -/// -/// @return Whether the union's current tag state has value "group_add_member". -/// -- (BOOL)isGroupAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_external_id". -/// -/// @return Whether the union's current tag state has value -/// "group_change_external_id". -/// -- (BOOL)isGroupChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_management_type". -/// -/// @return Whether the union's current tag state has value -/// "group_change_management_type". -/// -- (BOOL)isGroupChangeManagementType; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_member_role". -/// -/// @return Whether the union's current tag state has value -/// "group_change_member_role". -/// -- (BOOL)isGroupChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value "group_create". -/// -/// @return Whether the union's current tag state has value "group_create". -/// -- (BOOL)isGroupCreate; - -/// -/// Retrieves whether the union's current tag state has value "group_delete". -/// -/// @return Whether the union's current tag state has value "group_delete". -/// -- (BOOL)isGroupDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_description_updated". -/// -/// @return Whether the union's current tag state has value -/// "group_description_updated". -/// -- (BOOL)isGroupDescriptionUpdated; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_join_policy_updated". -/// -/// @return Whether the union's current tag state has value -/// "group_join_policy_updated". -/// -- (BOOL)isGroupJoinPolicyUpdated; - -/// -/// Retrieves whether the union's current tag state has value "group_moved". -/// -/// @return Whether the union's current tag state has value "group_moved". -/// -- (BOOL)isGroupMoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_external_id". -/// -/// @return Whether the union's current tag state has value -/// "group_remove_external_id". -/// -- (BOOL)isGroupRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "group_remove_member". -/// -- (BOOL)isGroupRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value "group_rename". -/// -/// @return Whether the union's current tag state has value "group_rename". -/// -- (BOOL)isGroupRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -/// @return Whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -- (BOOL)isAccountLockOrUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "emm_error". -/// -/// @return Whether the union's current tag state has value "emm_error". -/// -- (BOOL)isEmmError; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedInViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedOutViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value "login_fail". -/// -/// @return Whether the union's current tag state has value "login_fail". -/// -- (BOOL)isLoginFail; - -/// -/// Retrieves whether the union's current tag state has value "login_success". -/// -/// @return Whether the union's current tag state has value "login_success". -/// -- (BOOL)isLoginSuccess; - -/// -/// Retrieves whether the union's current tag state has value "logout". -/// -/// @return Whether the union's current tag state has value "logout". -/// -- (BOOL)isLogout; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_end". -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_end". -/// -- (BOOL)isResellerSupportSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_start". -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_start". -/// -- (BOOL)isResellerSupportSessionStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -- (BOOL)isSignInAsSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -- (BOOL)isSignInAsSessionStart; - -/// -/// Retrieves whether the union's current tag state has value "sso_error". -/// -/// @return Whether the union's current tag state has value "sso_error". -/// -- (BOOL)isSsoError; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -/// @return Whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -- (BOOL)isBackupAdminInvitationSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_invitation_opened". -/// -/// @return Whether the union's current tag state has value -/// "backup_invitation_opened". -/// -- (BOOL)isBackupInvitationOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_team_invite_link". -/// -/// @return Whether the union's current tag state has value -/// "create_team_invite_link". -/// -- (BOOL)isCreateTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_team_invite_link". -/// -/// @return Whether the union's current tag state has value -/// "delete_team_invite_link". -/// -- (BOOL)isDeleteTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_external_id". -/// -/// @return Whether the union's current tag state has value -/// "member_add_external_id". -/// -- (BOOL)isMemberAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value "member_add_name". -/// -/// @return Whether the union's current tag state has value "member_add_name". -/// -- (BOOL)isMemberAddName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_admin_role". -/// -/// @return Whether the union's current tag state has value -/// "member_change_admin_role". -/// -- (BOOL)isMemberChangeAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_email". -/// -/// @return Whether the union's current tag state has value -/// "member_change_email". -/// -- (BOOL)isMemberChangeEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_external_id". -/// -/// @return Whether the union's current tag state has value -/// "member_change_external_id". -/// -- (BOOL)isMemberChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_membership_type". -/// -/// @return Whether the union's current tag state has value -/// "member_change_membership_type". -/// -- (BOOL)isMemberChangeMembershipType; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_name". -/// -/// @return Whether the union's current tag state has value -/// "member_change_name". -/// -- (BOOL)isMemberChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_reseller_role". -/// -/// @return Whether the union's current tag state has value -/// "member_change_reseller_role". -/// -- (BOOL)isMemberChangeResellerRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_status". -/// -/// @return Whether the union's current tag state has value -/// "member_change_status". -/// -- (BOOL)isMemberChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -/// @return Whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -- (BOOL)isMemberDeleteManualContacts; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -/// @return Whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -- (BOOL)isMemberDeleteProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -/// @return Whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -- (BOOL)isMemberPermanentlyDeleteAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_remove_external_id". -/// -/// @return Whether the union's current tag state has value -/// "member_remove_external_id". -/// -- (BOOL)isMemberRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_set_profile_photo". -/// -/// @return Whether the union's current tag state has value -/// "member_set_profile_photo". -/// -- (BOOL)isMemberSetProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsAddCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsChangeCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -- (BOOL)isMemberSpaceLimitsChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsRemoveCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value "member_suggest". -/// -/// @return Whether the union's current tag state has value "member_suggest". -/// -- (BOOL)isMemberSuggest; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -/// @return Whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -- (BOOL)isMemberTransferAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -/// @return Whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -- (BOOL)isPendingSecondaryEmailAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_deleted". -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_deleted". -/// -- (BOOL)isSecondaryEmailDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_verified". -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_verified". -/// -- (BOOL)isSecondaryEmailVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -- (BOOL)isSecondaryMailsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value "binder_add_page". -/// -/// @return Whether the union's current tag state has value "binder_add_page". -/// -- (BOOL)isBinderAddPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_add_section". -/// -- (BOOL)isBinderAddSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_page". -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_page". -/// -- (BOOL)isBinderRemovePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_section". -/// -- (BOOL)isBinderRemoveSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_page". -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_page". -/// -- (BOOL)isBinderRenamePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_section". -/// -- (BOOL)isBinderRenameSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_page". -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_page". -/// -- (BOOL)isBinderReorderPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_section". -/// -- (BOOL)isBinderReorderSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_member". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_member". -/// -- (BOOL)isPaperContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -- (BOOL)isPaperContentAddToFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_archive". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_archive". -/// -- (BOOL)isPaperContentArchive; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_create". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_create". -/// -- (BOOL)isPaperContentCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -- (BOOL)isPaperContentPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -- (BOOL)isPaperContentRemoveFromFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_member". -/// -- (BOOL)isPaperContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_rename". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_rename". -/// -- (BOOL)isPaperContentRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_restore". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_restore". -/// -- (BOOL)isPaperContentRestore; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -- (BOOL)isPaperDocAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -- (BOOL)isPaperDocChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -- (BOOL)isPaperDocChangeSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -- (BOOL)isPaperDocChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_deleted". -/// -/// @return Whether the union's current tag state has value "paper_doc_deleted". -/// -- (BOOL)isPaperDocDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -- (BOOL)isPaperDocDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_download". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_download". -/// -- (BOOL)isPaperDocDownload; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_edit". -/// -/// @return Whether the union's current tag state has value "paper_doc_edit". -/// -- (BOOL)isPaperDocEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -- (BOOL)isPaperDocEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_followed". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_followed". -/// -- (BOOL)isPaperDocFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_mention". -/// -/// @return Whether the union's current tag state has value "paper_doc_mention". -/// -- (BOOL)isPaperDocMention; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -- (BOOL)isPaperDocOwnershipChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_request_access". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_request_access". -/// -- (BOOL)isPaperDocRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -- (BOOL)isPaperDocResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_revert". -/// -/// @return Whether the union's current tag state has value "paper_doc_revert". -/// -- (BOOL)isPaperDocRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -- (BOOL)isPaperDocSlackShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -- (BOOL)isPaperDocTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_trashed". -/// -/// @return Whether the union's current tag state has value "paper_doc_trashed". -/// -- (BOOL)isPaperDocTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -- (BOOL)isPaperDocUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -- (BOOL)isPaperDocUntrashed; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_view". -/// -/// @return Whether the union's current tag state has value "paper_doc_view". -/// -- (BOOL)isPaperDocView; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_allow". -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_allow". -/// -- (BOOL)isPaperExternalViewAllow; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -- (BOOL)isPaperExternalViewDefaultTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -- (BOOL)isPaperExternalViewForbid; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -- (BOOL)isPaperFolderChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_deleted". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_deleted". -/// -- (BOOL)isPaperFolderDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_followed". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_followed". -/// -- (BOOL)isPaperFolderFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -- (BOOL)isPaperFolderTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -- (BOOL)isPaperPublishedLinkChangePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_create". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_create". -/// -- (BOOL)isPaperPublishedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -- (BOOL)isPaperPublishedLinkDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_view". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_view". -/// -- (BOOL)isPaperPublishedLinkView; - -/// -/// Retrieves whether the union's current tag state has value "password_change". -/// -/// @return Whether the union's current tag state has value "password_change". -/// -- (BOOL)isPasswordChange; - -/// -/// Retrieves whether the union's current tag state has value "password_reset". -/// -/// @return Whether the union's current tag state has value "password_reset". -/// -- (BOOL)isPasswordReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_all". -/// -/// @return Whether the union's current tag state has value -/// "password_reset_all". -/// -- (BOOL)isPasswordResetAll; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report". -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report". -/// -- (BOOL)isClassificationCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_fail". -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_fail". -/// -- (BOOL)isClassificationCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -/// @return Whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -- (BOOL)isEmmCreateExceptionsReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_usage_report". -/// -/// @return Whether the union's current tag state has value -/// "emm_create_usage_report". -/// -- (BOOL)isEmmCreateUsageReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report". -/// -/// @return Whether the union's current tag state has value -/// "export_members_report". -/// -- (BOOL)isExportMembersReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_fail". -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_fail". -/// -- (BOOL)isExportMembersReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_create_report". -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_create_report". -/// -- (BOOL)isExternalSharingCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -- (BOOL)isExternalSharingReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -- (BOOL)isNoExpirationLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -- (BOOL)isNoExpirationLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -- (BOOL)isNoPasswordLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -- (BOOL)isNoPasswordLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -- (BOOL)isNoPasswordLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -- (BOOL)isNoPasswordLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -- (BOOL)isOutdatedLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -- (BOOL)isOutdatedLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_admin_export_start". -/// -/// @return Whether the union's current tag state has value -/// "paper_admin_export_start". -/// -- (BOOL)isPaperAdminExportStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -- (BOOL)isRansomwareAlertCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -- (BOOL)isRansomwareAlertCreateReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -- (BOOL)isSmartSyncCreateAdminPrivilegeReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report". -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report". -/// -- (BOOL)isTeamActivityCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -- (BOOL)isTeamActivityCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "collection_share". -/// -/// @return Whether the union's current tag state has value "collection_share". -/// -- (BOOL)isCollectionShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_file_add". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_file_add". -/// -- (BOOL)isFileTransfersFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -- (BOOL)isFileTransfersTransferDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -- (BOOL)isFileTransfersTransferDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -- (BOOL)isFileTransfersTransferSend; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -- (BOOL)isFileTransfersTransferView; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_invite_only". -/// -/// @return Whether the union's current tag state has value -/// "note_acl_invite_only". -/// -- (BOOL)isNoteAclInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "note_acl_link". -/// -/// @return Whether the union's current tag state has value "note_acl_link". -/// -- (BOOL)isNoteAclLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_team_link". -/// -/// @return Whether the union's current tag state has value -/// "note_acl_team_link". -/// -- (BOOL)isNoteAclTeamLink; - -/// -/// Retrieves whether the union's current tag state has value "note_shared". -/// -/// @return Whether the union's current tag state has value "note_shared". -/// -- (BOOL)isNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_share_receive". -/// -/// @return Whether the union's current tag state has value -/// "note_share_receive". -/// -- (BOOL)isNoteShareReceive; - -/// -/// Retrieves whether the union's current tag state has value -/// "open_note_shared". -/// -/// @return Whether the union's current tag state has value "open_note_shared". -/// -- (BOOL)isOpenNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -- (BOOL)isReplayFileSharedLinkCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -- (BOOL)isReplayFileSharedLinkModified; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_add". -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_add". -/// -- (BOOL)isReplayProjectTeamAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_delete". -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_delete". -/// -- (BOOL)isReplayProjectTeamDelete; - -/// -/// Retrieves whether the union's current tag state has value "sf_add_group". -/// -/// @return Whether the union's current tag state has value "sf_add_group". -/// -- (BOOL)isSfAddGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -/// @return Whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -- (BOOL)isSfAllowNonMembersToViewSharedLinks; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -/// @return Whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -- (BOOL)isSfExternalInviteWarn; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_invite". -/// -/// @return Whether the union's current tag state has value "sf_fb_invite". -/// -- (BOOL)isSfFbInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -- (BOOL)isSfFbInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_uninvite". -/// -/// @return Whether the union's current tag state has value "sf_fb_uninvite". -/// -- (BOOL)isSfFbUninvite; - -/// -/// Retrieves whether the union's current tag state has value "sf_invite_group". -/// -/// @return Whether the union's current tag state has value "sf_invite_group". -/// -- (BOOL)isSfInviteGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_grant_access". -/// -/// @return Whether the union's current tag state has value -/// "sf_team_grant_access". -/// -- (BOOL)isSfTeamGrantAccess; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_invite". -/// -/// @return Whether the union's current tag state has value "sf_team_invite". -/// -- (BOOL)isSfTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -- (BOOL)isSfTeamInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_join". -/// -/// @return Whether the union's current tag state has value "sf_team_join". -/// -- (BOOL)isSfTeamJoin; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -- (BOOL)isSfTeamJoinFromOobLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_uninvite". -/// -/// @return Whether the union's current tag state has value "sf_team_uninvite". -/// -- (BOOL)isSfTeamUninvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -- (BOOL)isSharedContentAddInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -- (BOOL)isSharedContentAddLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -- (BOOL)isSharedContentAddLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_member". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_member". -/// -- (BOOL)isSharedContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -- (BOOL)isSharedContentChangeDownloadsPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -- (BOOL)isSharedContentChangeInviteeRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -- (BOOL)isSharedContentChangeLinkAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -- (BOOL)isSharedContentChangeLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -- (BOOL)isSharedContentChangeLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -- (BOOL)isSharedContentChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -- (BOOL)isSharedContentChangeViewerInfoPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -- (BOOL)isSharedContentClaimInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_copy". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_copy". -/// -- (BOOL)isSharedContentCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_download". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_download". -/// -- (BOOL)isSharedContentDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -- (BOOL)isSharedContentRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -- (BOOL)isSharedContentRemoveInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -- (BOOL)isSharedContentRemoveLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -- (BOOL)isSharedContentRemoveLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_member". -/// -- (BOOL)isSharedContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_request_access". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_request_access". -/// -- (BOOL)isSharedContentRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -- (BOOL)isSharedContentRestoreInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_member". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_member". -/// -- (BOOL)isSharedContentRestoreMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_unshare". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_unshare". -/// -- (BOOL)isSharedContentUnshare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_view". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_view". -/// -- (BOOL)isSharedContentView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -- (BOOL)isSharedFolderChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -- (BOOL)isSharedFolderChangeMembersInheritancePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -- (BOOL)isSharedFolderChangeMembersManagementPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -- (BOOL)isSharedFolderChangeMembersPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_create". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_create". -/// -- (BOOL)isSharedFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -- (BOOL)isSharedFolderDeclineInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_mount". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_mount". -/// -- (BOOL)isSharedFolderMount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_nest". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_nest". -/// -- (BOOL)isSharedFolderNest; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -- (BOOL)isSharedFolderTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_unmount". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_unmount". -/// -- (BOOL)isSharedFolderUnmount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -- (BOOL)isSharedLinkAddExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -- (BOOL)isSharedLinkChangeExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -- (BOOL)isSharedLinkChangeVisibility; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_copy". -/// -/// @return Whether the union's current tag state has value "shared_link_copy". -/// -- (BOOL)isSharedLinkCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_create". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_create". -/// -- (BOOL)isSharedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_disable". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_disable". -/// -- (BOOL)isSharedLinkDisable; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_download". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_download". -/// -- (BOOL)isSharedLinkDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -- (BOOL)isSharedLinkRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -- (BOOL)isSharedLinkSettingsAddExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -- (BOOL)isSharedLinkSettingsAddPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -- (BOOL)isSharedLinkSettingsChangeAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -- (BOOL)isSharedLinkSettingsChangeExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -- (BOOL)isSharedLinkSettingsChangePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -- (BOOL)isSharedLinkSettingsRemoveExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -- (BOOL)isSharedLinkSettingsRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_share". -/// -/// @return Whether the union's current tag state has value "shared_link_share". -/// -- (BOOL)isSharedLinkShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_view". -/// -/// @return Whether the union's current tag state has value "shared_link_view". -/// -- (BOOL)isSharedLinkView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_note_opened". -/// -/// @return Whether the union's current tag state has value -/// "shared_note_opened". -/// -- (BOOL)isSharedNoteOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -/// @return Whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -- (BOOL)isShmodelDisableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -/// @return Whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -- (BOOL)isShmodelEnableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_group_share". -/// -/// @return Whether the union's current tag state has value -/// "shmodel_group_share". -/// -- (BOOL)isShmodelGroupShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_access_granted". -/// -/// @return Whether the union's current tag state has value -/// "showcase_access_granted". -/// -- (BOOL)isShowcaseAccessGranted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_add_member". -/// -/// @return Whether the union's current tag state has value -/// "showcase_add_member". -/// -- (BOOL)isShowcaseAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_archived". -/// -/// @return Whether the union's current tag state has value "showcase_archived". -/// -- (BOOL)isShowcaseArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_created". -/// -/// @return Whether the union's current tag state has value "showcase_created". -/// -- (BOOL)isShowcaseCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_delete_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_delete_comment". -/// -- (BOOL)isShowcaseDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value "showcase_edited". -/// -/// @return Whether the union's current tag state has value "showcase_edited". -/// -- (BOOL)isShowcaseEdited; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edit_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_edit_comment". -/// -- (BOOL)isShowcaseEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_added". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_added". -/// -- (BOOL)isShowcaseFileAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_download". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_download". -/// -- (BOOL)isShowcaseFileDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_removed". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_removed". -/// -- (BOOL)isShowcaseFileRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_view". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_view". -/// -- (BOOL)isShowcaseFileView; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -/// @return Whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -- (BOOL)isShowcasePermanentlyDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_post_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_post_comment". -/// -- (BOOL)isShowcasePostComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "showcase_remove_member". -/// -- (BOOL)isShowcaseRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_renamed". -/// -/// @return Whether the union's current tag state has value "showcase_renamed". -/// -- (BOOL)isShowcaseRenamed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_request_access". -/// -/// @return Whether the union's current tag state has value -/// "showcase_request_access". -/// -- (BOOL)isShowcaseRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -- (BOOL)isShowcaseResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_restored". -/// -/// @return Whether the union's current tag state has value "showcase_restored". -/// -- (BOOL)isShowcaseRestored; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed". -/// -/// @return Whether the union's current tag state has value "showcase_trashed". -/// -- (BOOL)isShowcaseTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -- (BOOL)isShowcaseTrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -- (BOOL)isShowcaseUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed". -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed". -/// -- (BOOL)isShowcaseUntrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -- (BOOL)isShowcaseUntrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value "showcase_view". -/// -/// @return Whether the union's current tag state has value "showcase_view". -/// -- (BOOL)isShowcaseView; - -/// -/// Retrieves whether the union's current tag state has value "sso_add_cert". -/// -/// @return Whether the union's current tag state has value "sso_add_cert". -/// -- (BOOL)isSsoAddCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_login_url". -/// -/// @return Whether the union's current tag state has value "sso_add_login_url". -/// -- (BOOL)isSsoAddLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_logout_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_add_logout_url". -/// -- (BOOL)isSsoAddLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value "sso_change_cert". -/// -/// @return Whether the union's current tag state has value "sso_change_cert". -/// -- (BOOL)isSsoChangeCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_login_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_change_login_url". -/// -- (BOOL)isSsoChangeLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_logout_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_change_logout_url". -/// -- (BOOL)isSsoChangeLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -/// @return Whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -- (BOOL)isSsoChangeSamlIdentityMode; - -/// -/// Retrieves whether the union's current tag state has value "sso_remove_cert". -/// -/// @return Whether the union's current tag state has value "sso_remove_cert". -/// -- (BOOL)isSsoRemoveCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_login_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_login_url". -/// -- (BOOL)isSsoRemoveLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -- (BOOL)isSsoRemoveLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_change_status". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_change_status". -/// -- (BOOL)isTeamFolderChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_create". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_create". -/// -- (BOOL)isTeamFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_downgrade". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_downgrade". -/// -- (BOOL)isTeamFolderDowngrade; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -- (BOOL)isTeamFolderPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_rename". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_rename". -/// -- (BOOL)isTeamFolderRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -- (BOOL)isTeamSelectiveSyncSettingsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_policy". -/// -- (BOOL)isAccountCaptureChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -/// @return Whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -- (BOOL)isAdminEmailRemindersChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_disabled". -/// -/// @return Whether the union's current tag state has value -/// "allow_download_disabled". -/// -- (BOOL)isAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_enabled". -/// -/// @return Whether the union's current tag state has value -/// "allow_download_enabled". -/// -- (BOOL)isAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_permissions_changed". -/// -/// @return Whether the union's current tag state has value -/// "app_permissions_changed". -/// -- (BOOL)isAppPermissionsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -- (BOOL)isCameraUploadsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -- (BOOL)isCaptureTranscriptPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "classification_change_policy". -/// -- (BOOL)isClassificationChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -- (BOOL)isComputerBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -- (BOOL)isContentAdministrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -- (BOOL)isDataPlacementRestrictionChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -- (BOOL)isDataPlacementRestrictionSatisfyPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -- (BOOL)isDeviceApprovalsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -- (BOOL)isDeviceApprovalsChangeDesktopPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -- (BOOL)isDeviceApprovalsChangeMobilePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -- (BOOL)isDeviceApprovalsChangeOverageAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -- (BOOL)isDeviceApprovalsChangeUnlinkAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -- (BOOL)isDeviceApprovalsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -- (BOOL)isDirectoryRestrictionsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -- (BOOL)isDirectoryRestrictionsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -- (BOOL)isDropboxPasswordsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -- (BOOL)isEmailIngestPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_add_exception". -/// -/// @return Whether the union's current tag state has value "emm_add_exception". -/// -- (BOOL)isEmmAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_change_policy". -/// -/// @return Whether the union's current tag state has value "emm_change_policy". -/// -- (BOOL)isEmmChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "emm_remove_exception". -/// -- (BOOL)isEmmRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -- (BOOL)isExtendedVersionHistoryChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -- (BOOL)isExternalDriveBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_comments_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "file_comments_change_policy". -/// -- (BOOL)isFileCommentsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -- (BOOL)isFileLockingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -- (BOOL)isFileProviderMigrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "file_requests_change_policy". -/// -- (BOOL)isFileRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -- (BOOL)isFileRequestsEmailsEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -- (BOOL)isFileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -- (BOOL)isFileTransfersPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -- (BOOL)isFolderLinkRestrictionPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "google_sso_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "google_sso_change_policy". -/// -- (BOOL)isGoogleSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -- (BOOL)isGroupUserManagementChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "integration_policy_changed". -/// -- (BOOL)isIntegrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -- (BOOL)isInviteAcceptanceEmailPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_requests_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_requests_change_policy". -/// -- (BOOL)isMemberRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -- (BOOL)isMemberSendInvitePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -- (BOOL)isMemberSpaceLimitsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -- (BOOL)isMemberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -- (BOOL)isMemberSpaceLimitsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -- (BOOL)isMemberSpaceLimitsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -- (BOOL)isMemberSuggestionsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -- (BOOL)isMicrosoftOfficeAddinChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "network_control_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "network_control_change_policy". -/// -- (BOOL)isNetworkControlChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -- (BOOL)isPaperChangeDeploymentPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -- (BOOL)isPaperChangeMemberLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_policy". -/// -- (BOOL)isPaperChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_policy". -/// -- (BOOL)isPaperChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -- (BOOL)isPaperDefaultFolderPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -- (BOOL)isPaperDesktopPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -- (BOOL)isPaperEnabledUsersGroupAddition; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -- (BOOL)isPaperEnabledUsersGroupRemoval; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -- (BOOL)isPasswordStrengthRequirementsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -- (BOOL)isPermanentDeleteChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -- (BOOL)isResellerSupportChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "rewind_policy_changed". -/// -- (BOOL)isRewindPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -- (BOOL)isSendForSignaturePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -- (BOOL)isSharingChangeFolderJoinPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -- (BOOL)isSharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -- (BOOL)isSharingChangeLinkDefaultExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -- (BOOL)isSharingChangeLinkEnforcePasswordPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -- (BOOL)isSharingChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -- (BOOL)isSharingChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -- (BOOL)isShowcaseChangeDownloadPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -- (BOOL)isShowcaseChangeEnabledPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -- (BOOL)isShowcaseChangeExternalSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -- (BOOL)isSmarterSmartSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -- (BOOL)isSmartSyncChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -- (BOOL)isSmartSyncNotOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -- (BOOL)isSmartSyncOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_policy". -/// -/// @return Whether the union's current tag state has value "sso_change_policy". -/// -- (BOOL)isSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -- (BOOL)isTeamBrandingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -- (BOOL)isTeamExtensionsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -- (BOOL)isTeamSelectiveSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -- (BOOL)isTeamSharingWhitelistSubjectsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_exception". -/// -/// @return Whether the union's current tag state has value "tfa_add_exception". -/// -- (BOOL)isTfaAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_policy". -/// -/// @return Whether the union's current tag state has value "tfa_change_policy". -/// -- (BOOL)isTfaChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_exception". -/// -- (BOOL)isTfaRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_account_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "two_account_change_policy". -/// -- (BOOL)isTwoAccountChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -- (BOOL)isViewerInfoPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -- (BOOL)isWatermarkingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -- (BOOL)isWebSessionsChangeActiveSessionLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -- (BOOL)isWebSessionsChangeFixedLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -- (BOOL)isWebSessionsChangeIdleLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -- (BOOL)isDataResidencyMigrationRequestSuccessful; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -- (BOOL)isDataResidencyMigrationRequestUnsuccessful; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_from". -/// -/// @return Whether the union's current tag state has value "team_merge_from". -/// -- (BOOL)isTeamMergeFrom; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_to". -/// -/// @return Whether the union's current tag state has value "team_merge_to". -/// -- (BOOL)isTeamMergeTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_background". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_background". -/// -- (BOOL)isTeamProfileAddBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_logo". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_logo". -/// -- (BOOL)isTeamProfileAddLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_background". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_background". -/// -- (BOOL)isTeamProfileChangeBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -- (BOOL)isTeamProfileChangeDefaultLanguage; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_logo". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_logo". -/// -- (BOOL)isTeamProfileChangeLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_name". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_name". -/// -- (BOOL)isTeamProfileChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_background". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_background". -/// -- (BOOL)isTeamProfileRemoveBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -- (BOOL)isTeamProfileRemoveLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -- (BOOL)isTfaAddBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_security_key". -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_security_key". -/// -- (BOOL)isTfaAddSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -- (BOOL)isTfaChangeBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_status". -/// -/// @return Whether the union's current tag state has value "tfa_change_status". -/// -- (BOOL)isTfaChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -- (BOOL)isTfaRemoveBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -- (BOOL)isTfaRemoveSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value "tfa_reset". -/// -/// @return Whether the union's current tag state has value "tfa_reset". -/// -- (BOOL)isTfaReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -- (BOOL)isChangedEnterpriseAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -- (BOOL)isChangedEnterpriseConnectedTeamStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -- (BOOL)isEndedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -- (BOOL)isEndedEnterpriseAdminSessionDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -/// @return Whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -- (BOOL)isEnterpriseSettingsLocking; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_change_status". -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_change_status". -/// -- (BOOL)isGuestAdminChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -/// @return Whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -- (BOOL)isStartedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -- (BOOL)isTeamMergeRequestAccepted; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -- (BOOL)isTeamMergeRequestAutoCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -- (BOOL)isTeamMergeRequestCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired". -/// -- (BOOL)isTeamMergeRequestExpired; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -- (BOOL)isTeamMergeRequestReminder; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -- (BOOL)isTeamMergeRequestRevoked; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventTypeArg` union. -/// -@interface DBTEAMLOGEventTypeArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventTypeArg` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventTypeArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventTypeArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventTypeArg *)instance; - -/// -/// Deserializes `DBTEAMLOGEventTypeArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventTypeArg` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventTypeArg` object. -/// -+ (DBTEAMLOGEventTypeArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportDetails.h deleted file mode 100644 index 408b8840..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportDetails` struct. -/// -/// Created member data report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportDetails` struct. -/// -@interface DBTEAMLOGExportMembersReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportDetails` -/// object. -/// -+ (DBTEAMLOGExportMembersReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportFailDetails.h deleted file mode 100644 index e893b6e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportFailDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportFailDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportFailDetails` struct. -/// -/// Failed to create members data report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportFailDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportFailDetails` struct. -/// -@interface DBTEAMLOGExportMembersReportFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportFailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportFailDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportFailDetails` -/// object. -/// -+ (DBTEAMLOGExportMembersReportFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportFailType.h deleted file mode 100644 index 228047e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportFailType` struct. -/// -@interface DBTEAMLOGExportMembersReportFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportFailType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportFailType` -/// object. -/// -+ (DBTEAMLOGExportMembersReportFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportType.h deleted file mode 100644 index cf1d7367..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExportMembersReportType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportType` struct. -/// -@interface DBTEAMLOGExportMembersReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportType` object. -/// -+ (DBTEAMLOGExportMembersReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h deleted file mode 100644 index 81a7abd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExtendedVersionHistoryChangePolicyDetails; -@class DBTEAMLOGExtendedVersionHistoryPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExtendedVersionHistoryChangePolicyDetails` struct. -/// -/// Accepted/opted out of extended version history. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New extended version history policy. -@property (nonatomic, readonly) DBTEAMLOGExtendedVersionHistoryPolicy *dNewValue; - -/// Previous extended version history policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGExtendedVersionHistoryPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New extended version history policy. -/// @param previousValue Previous extended version history policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGExtendedVersionHistoryPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGExtendedVersionHistoryPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New extended version history policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGExtendedVersionHistoryPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExtendedVersionHistoryChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` object. -/// -+ (DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyType.h deleted file mode 100644 index 584836ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExtendedVersionHistoryChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExtendedVersionHistoryChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExtendedVersionHistoryChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExtendedVersionHistoryChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExtendedVersionHistoryChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGExtendedVersionHistoryChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` object. -/// -+ (DBTEAMLOGExtendedVersionHistoryChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryPolicy.h deleted file mode 100644 index c05fdd23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExtendedVersionHistoryPolicy.h +++ /dev/null @@ -1,177 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExtendedVersionHistoryPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExtendedVersionHistoryPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExtendedVersionHistoryPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExtendedVersionHistoryPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExtendedVersionHistoryPolicyTag) { - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyExplicitlyLimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyExplicitlyUnlimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyImplicitlyLimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyImplicitlyUnlimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExtendedVersionHistoryPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "explicitly_limited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExplicitlyLimited; - -/// -/// Initializes union class with tag state of "explicitly_unlimited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExplicitlyUnlimited; - -/// -/// Initializes union class with tag state of "implicitly_limited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImplicitlyLimited; - -/// -/// Initializes union class with tag state of "implicitly_unlimited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImplicitlyUnlimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "explicitly_limited". -/// -/// @return Whether the union's current tag state has value -/// "explicitly_limited". -/// -- (BOOL)isExplicitlyLimited; - -/// -/// Retrieves whether the union's current tag state has value -/// "explicitly_unlimited". -/// -/// @return Whether the union's current tag state has value -/// "explicitly_unlimited". -/// -- (BOOL)isExplicitlyUnlimited; - -/// -/// Retrieves whether the union's current tag state has value -/// "implicitly_limited". -/// -/// @return Whether the union's current tag state has value -/// "implicitly_limited". -/// -- (BOOL)isImplicitlyLimited; - -/// -/// Retrieves whether the union's current tag state has value -/// "implicitly_unlimited". -/// -/// @return Whether the union's current tag state has value -/// "implicitly_unlimited". -/// -- (BOOL)isImplicitlyUnlimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// union. -/// -@interface DBTEAMLOGExtendedVersionHistoryPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExtendedVersionHistoryPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExtendedVersionHistoryPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGExtendedVersionHistoryPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// object. -/// -+ (DBTEAMLOGExtendedVersionHistoryPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatus.h deleted file mode 100644 index 7807fd8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatus.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupEligibilityStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupEligibilityStatus` union. -/// -/// External Drive Backup eligibility status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExternalDriveBackupEligibilityStatusTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExternalDriveBackupEligibilityStatusTag) { - /// (no description). - DBTEAMLOGExternalDriveBackupEligibilityStatusExceedLicenseCap, - - /// (no description). - DBTEAMLOGExternalDriveBackupEligibilityStatusSuccess, - - /// (no description). - DBTEAMLOGExternalDriveBackupEligibilityStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupEligibilityStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "exceed_license_cap". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExceedLicenseCap; - -/// -/// Initializes union class with tag state of "success". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "exceed_license_cap". -/// -/// @return Whether the union's current tag state has value -/// "exceed_license_cap". -/// -- (BOOL)isExceedLicenseCap; - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` union. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupEligibilityStatus` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupEligibilityStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupEligibilityStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` object. -/// -+ (DBTEAMLOGExternalDriveBackupEligibilityStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h deleted file mode 100644 index 14abded2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGExternalDriveBackupEligibilityStatus; -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupEligibilityStatusCheckedDetails` struct. -/// -/// Checked external drive backup eligibility status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSessionInfo; - -/// Current eligibility status of external drive backup. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupEligibilityStatus *status; - -/// Total number of valid external drive backup for all the team members. -@property (nonatomic, readonly) NSNumber *numberOfExternalDriveBackup; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param desktopDeviceSessionInfo Device's session logged information. -/// @param status Current eligibility status of external drive backup. -/// @param numberOfExternalDriveBackup Total number of valid external drive -/// backup for all the team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSessionInfo:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo - status:(DBTEAMLOGExternalDriveBackupEligibilityStatus *)status - numberOfExternalDriveBackup:(NSNumber *)numberOfExternalDriveBackup; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `ExternalDriveBackupEligibilityStatusCheckedDetails` struct. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` object. -/// -+ (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h deleted file mode 100644 index ddbc91a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupEligibilityStatusCheckedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `ExternalDriveBackupEligibilityStatusCheckedType` struct. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` object. -/// -+ (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicy.h deleted file mode 100644 index 31ace717..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicy.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicy` union. -/// -/// Policy for controlling team access to external drive backup feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExternalDriveBackupPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGExternalDriveBackupPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExternalDriveBackupPolicyTag) { - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyDefault_, - - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyDisabled, - - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyEnabled, - - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGExternalDriveBackupPolicy` union. -/// -@interface DBTEAMLOGExternalDriveBackupPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExternalDriveBackupPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalDriveBackupPolicy` object. -/// -+ (DBTEAMLOGExternalDriveBackupPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h deleted file mode 100644 index f037a122..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupPolicy; -@class DBTEAMLOGExternalDriveBackupPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicyChangedDetails` struct. -/// -/// Changed external drive backup policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New external drive backup policy. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicy *dNewValue; - -/// Previous external drive backup policy. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external drive backup policy. -/// @param previousValue Previous external drive backup policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGExternalDriveBackupPolicy *)dNewValue - previousValue:(DBTEAMLOGExternalDriveBackupPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` object. -/// -+ (DBTEAMLOGExternalDriveBackupPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedType.h deleted file mode 100644 index c9646088..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` object. -/// -+ (DBTEAMLOGExternalDriveBackupPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatus.h deleted file mode 100644 index cac85267..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatus.h +++ /dev/null @@ -1,204 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupStatus` union. -/// -/// External Drive Backup status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExternalDriveBackupStatusTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGExternalDriveBackupStatus` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExternalDriveBackupStatusTag) { - /// (no description). - DBTEAMLOGExternalDriveBackupStatusBroken, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusCreated, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusCreatedOrBroken, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusDeleted, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusEmpty, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusUnknown, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "broken". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBroken; - -/// -/// Initializes union class with tag state of "created". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated; - -/// -/// Initializes union class with tag state of "created_or_broken". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreatedOrBroken; - -/// -/// Initializes union class with tag state of "deleted". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleted; - -/// -/// Initializes union class with tag state of "empty". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmpty; - -/// -/// Initializes union class with tag state of "unknown". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknown; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "broken". -/// -/// @return Whether the union's current tag state has value "broken". -/// -- (BOOL)isBroken; - -/// -/// Retrieves whether the union's current tag state has value "created". -/// -/// @return Whether the union's current tag state has value "created". -/// -- (BOOL)isCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "created_or_broken". -/// -/// @return Whether the union's current tag state has value "created_or_broken". -/// -- (BOOL)isCreatedOrBroken; - -/// -/// Retrieves whether the union's current tag state has value "deleted". -/// -/// @return Whether the union's current tag state has value "deleted". -/// -- (BOOL)isDeleted; - -/// -/// Retrieves whether the union's current tag state has value "empty". -/// -/// @return Whether the union's current tag state has value "empty". -/// -- (BOOL)isEmpty; - -/// -/// Retrieves whether the union's current tag state has value "unknown". -/// -/// @return Whether the union's current tag state has value "unknown". -/// -- (BOOL)isUnknown; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGExternalDriveBackupStatus` union. -/// -@interface DBTEAMLOGExternalDriveBackupStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExternalDriveBackupStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalDriveBackupStatus` object. -/// -+ (DBTEAMLOGExternalDriveBackupStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatusChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatusChangedDetails.h deleted file mode 100644 index d69b665d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatusChangedDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGExternalDriveBackupStatus; -@class DBTEAMLOGExternalDriveBackupStatusChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupStatusChangedDetails` struct. -/// -/// Modified external drive backup. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSessionInfo; - -/// Previous status of this external drive backup. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatus *previousValue; - -/// Next status of this external drive backup. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param desktopDeviceSessionInfo Device's session logged information. -/// @param previousValue Previous status of this external drive backup. -/// @param dNewValue Next status of this external drive backup. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSessionInfo:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo - previousValue:(DBTEAMLOGExternalDriveBackupStatus *)previousValue - dNewValue:(DBTEAMLOGExternalDriveBackupStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupStatusChangedDetails` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupStatusChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupStatusChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupStatusChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` object. -/// -+ (DBTEAMLOGExternalDriveBackupStatusChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatusChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatusChangedType.h deleted file mode 100644 index c069df40..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalDriveBackupStatusChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupStatusChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupStatusChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupStatusChangedType` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupStatusChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupStatusChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupStatusChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` object. -/// -+ (DBTEAMLOGExternalDriveBackupStatusChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingCreateReportDetails.h deleted file mode 100644 index 5dfa63b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingCreateReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingCreateReportDetails` struct. -/// -/// Created External sharing report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingCreateReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingCreateReportDetails` struct. -/// -@interface DBTEAMLOGExternalSharingCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` object. -/// -+ (DBTEAMLOGExternalSharingCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingCreateReportType.h deleted file mode 100644 index 697f6270..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingCreateReportType` struct. -/// -@interface DBTEAMLOGExternalSharingCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalSharingCreateReportType` -/// object. -/// -+ (DBTEAMLOGExternalSharingCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingReportFailedDetails.h deleted file mode 100644 index 20809c2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingReportFailedDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingReportFailedDetails` struct. -/// -/// Couldn't create External sharing report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingReportFailedDetails` struct. -/// -@interface DBTEAMLOGExternalSharingReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` object. -/// -+ (DBTEAMLOGExternalSharingReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingReportFailedType.h deleted file mode 100644 index 35e497f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalSharingReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingReportFailedType` struct. -/// -@interface DBTEAMLOGExternalSharingReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalSharingReportFailedType` -/// object. -/// -+ (DBTEAMLOGExternalSharingReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalUserLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalUserLogInfo.h deleted file mode 100644 index 5264faae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGExternalUserLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalUserLogInfo; -@class DBTEAMLOGIdentifierType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalUserLogInfo` struct. -/// -/// A user without a Dropbox account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalUserLogInfo : NSObject - -#pragma mark - Instance fields - -/// An external user identifier. -@property (nonatomic, readonly, copy) NSString *userIdentifier; - -/// Identifier type. -@property (nonatomic, readonly) DBTEAMLOGIdentifierType *identifierType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userIdentifier An external user identifier. -/// @param identifierType Identifier type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserIdentifier:(NSString *)userIdentifier - identifierType:(DBTEAMLOGIdentifierType *)identifierType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalUserLogInfo` struct. -/// -@interface DBTEAMLOGExternalUserLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalUserLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExternalUserLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalUserLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalUserLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalUserLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalUserLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalUserLogInfo` object. -/// -+ (DBTEAMLOGExternalUserLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFailureDetailsLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFailureDetailsLogInfo.h deleted file mode 100644 index e95b76b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFailureDetailsLogInfo.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFailureDetailsLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FailureDetailsLogInfo` struct. -/// -/// Provides details about a failure -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFailureDetailsLogInfo : NSObject - -#pragma mark - Instance fields - -/// A user friendly explanation of the error. -@property (nonatomic, readonly, copy, nullable) NSString *userFriendlyMessage; - -/// A technical explanation of the error. This is relevant for some errors. -@property (nonatomic, readonly, copy, nullable) NSString *technicalErrorMessage; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userFriendlyMessage A user friendly explanation of the error. -/// @param technicalErrorMessage A technical explanation of the error. This is -/// relevant for some errors. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserFriendlyMessage:(nullable NSString *)userFriendlyMessage - technicalErrorMessage:(nullable NSString *)technicalErrorMessage; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FailureDetailsLogInfo` struct. -/// -@interface DBTEAMLOGFailureDetailsLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFailureDetailsLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFailureDetailsLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFailureDetailsLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFailureDetailsLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFailureDetailsLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFailureDetailsLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFailureDetailsLogInfo` object. -/// -+ (DBTEAMLOGFailureDetailsLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedAdminRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedAdminRole.h deleted file mode 100644 index 12f69f78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedAdminRole.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedAdminRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FedAdminRole` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFedAdminRole : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFedAdminRoleTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGFedAdminRole` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFedAdminRoleTag) { - /// (no description). - DBTEAMLOGFedAdminRoleEnterpriseAdmin, - - /// (no description). - DBTEAMLOGFedAdminRoleNotEnterpriseAdmin, - - /// (no description). - DBTEAMLOGFedAdminRoleOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFedAdminRoleTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enterprise_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseAdmin; - -/// -/// Initializes union class with tag state of "not_enterprise_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotEnterpriseAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_admin". -/// -/// @return Whether the union's current tag state has value "enterprise_admin". -/// -- (BOOL)isEnterpriseAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "not_enterprise_admin". -/// -/// @return Whether the union's current tag state has value -/// "not_enterprise_admin". -/// -- (BOOL)isNotEnterpriseAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFedAdminRole` union. -/// -@interface DBTEAMLOGFedAdminRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFedAdminRole` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFedAdminRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFedAdminRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFedAdminRole *)instance; - -/// -/// Deserializes `DBTEAMLOGFedAdminRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFedAdminRole` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFedAdminRole` object. -/// -+ (DBTEAMLOGFedAdminRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedExtraDetails.h deleted file mode 100644 index e00097c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedExtraDetails.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedExtraDetails; -@class DBTEAMLOGOrganizationDetails; -@class DBTEAMLOGTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FedExtraDetails` union. -/// -/// More details about the organization or team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFedExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFedExtraDetailsTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFedExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFedExtraDetailsTag) { - /// More details about the organization. - DBTEAMLOGFedExtraDetailsOrganization, - - /// More details about the team. - DBTEAMLOGFedExtraDetailsTeam, - - /// (no description). - DBTEAMLOGFedExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFedExtraDetailsTag tag; - -/// More details about the organization. @note Ensure the `isOrganization` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizationDetails *organization; - -/// More details about the team. @note Ensure the `isTeam` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamDetails *team; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "organization". -/// -/// Description of the "organization" tag state: More details about the -/// organization. -/// -/// @param organization More details about the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganization:(DBTEAMLOGOrganizationDetails *)organization; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: More details about the team. -/// -/// @param team More details about the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(DBTEAMLOGTeamDetails *)team; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "organization". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organization` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "organization". -/// -- (BOOL)isOrganization; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `team` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFedExtraDetails` union. -/// -@interface DBTEAMLOGFedExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFedExtraDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFedExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFedExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFedExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFedExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFedExtraDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFedExtraDetails` object. -/// -+ (DBTEAMLOGFedExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedHandshakeAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedHandshakeAction.h deleted file mode 100644 index 6ed09ad7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFedHandshakeAction.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedHandshakeAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FedHandshakeAction` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFedHandshakeAction : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFedHandshakeActionTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFedHandshakeAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFedHandshakeActionTag) { - /// (no description). - DBTEAMLOGFedHandshakeActionAcceptedInvite, - - /// (no description). - DBTEAMLOGFedHandshakeActionCanceledInvite, - - /// (no description). - DBTEAMLOGFedHandshakeActionInviteExpired, - - /// (no description). - DBTEAMLOGFedHandshakeActionInvited, - - /// (no description). - DBTEAMLOGFedHandshakeActionRejectedInvite, - - /// (no description). - DBTEAMLOGFedHandshakeActionRemovedTeam, - - /// (no description). - DBTEAMLOGFedHandshakeActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFedHandshakeActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "accepted_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAcceptedInvite; - -/// -/// Initializes union class with tag state of "canceled_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCanceledInvite; - -/// -/// Initializes union class with tag state of "invite_expired". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteExpired; - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "rejected_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRejectedInvite; - -/// -/// Initializes union class with tag state of "removed_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "accepted_invite". -/// -/// @return Whether the union's current tag state has value "accepted_invite". -/// -- (BOOL)isAcceptedInvite; - -/// -/// Retrieves whether the union's current tag state has value "canceled_invite". -/// -/// @return Whether the union's current tag state has value "canceled_invite". -/// -- (BOOL)isCanceledInvite; - -/// -/// Retrieves whether the union's current tag state has value "invite_expired". -/// -/// @return Whether the union's current tag state has value "invite_expired". -/// -- (BOOL)isInviteExpired; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "rejected_invite". -/// -/// @return Whether the union's current tag state has value "rejected_invite". -/// -- (BOOL)isRejectedInvite; - -/// -/// Retrieves whether the union's current tag state has value "removed_team". -/// -/// @return Whether the union's current tag state has value "removed_team". -/// -- (BOOL)isRemovedTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFedHandshakeAction` union. -/// -@interface DBTEAMLOGFedHandshakeActionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFedHandshakeAction` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFedHandshakeAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFedHandshakeAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFedHandshakeAction *)instance; - -/// -/// Deserializes `DBTEAMLOGFedHandshakeAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFedHandshakeAction` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFedHandshakeAction` object. -/// -+ (DBTEAMLOGFedHandshakeAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFederationStatusChangeAdditionalInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFederationStatusChangeAdditionalInfo.h deleted file mode 100644 index 1a83d56a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFederationStatusChangeAdditionalInfo.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGConnectedTeamName; -@class DBTEAMLOGFederationStatusChangeAdditionalInfo; -@class DBTEAMLOGNonTrustedTeamDetails; -@class DBTEAMLOGOrganizationName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FederationStatusChangeAdditionalInfo` union. -/// -/// Additional information about the organization or connected team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFederationStatusChangeAdditionalInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFederationStatusChangeAdditionalInfoTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFederationStatusChangeAdditionalInfoTag) { - /// The name of the team. - DBTEAMLOGFederationStatusChangeAdditionalInfoConnectedTeamName, - - /// The email to which the request was sent. - DBTEAMLOGFederationStatusChangeAdditionalInfoNonTrustedTeamDetails, - - /// The name of the organization. - DBTEAMLOGFederationStatusChangeAdditionalInfoOrganizationName, - - /// (no description). - DBTEAMLOGFederationStatusChangeAdditionalInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFederationStatusChangeAdditionalInfoTag tag; - -/// The name of the team. @note Ensure the `isConnectedTeamName` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGConnectedTeamName *connectedTeamName; - -/// The email to which the request was sent. @note Ensure the -/// `isNonTrustedTeamDetails` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNonTrustedTeamDetails *nonTrustedTeamDetails; - -/// The name of the organization. @note Ensure the `isOrganizationName` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizationName *organizationName; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "connected_team_name". -/// -/// Description of the "connected_team_name" tag state: The name of the team. -/// -/// @param connectedTeamName The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConnectedTeamName:(DBTEAMLOGConnectedTeamName *)connectedTeamName; - -/// -/// Initializes union class with tag state of "non_trusted_team_details". -/// -/// Description of the "non_trusted_team_details" tag state: The email to which -/// the request was sent. -/// -/// @param nonTrustedTeamDetails The email to which the request was sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNonTrustedTeamDetails:(DBTEAMLOGNonTrustedTeamDetails *)nonTrustedTeamDetails; - -/// -/// Initializes union class with tag state of "organization_name". -/// -/// Description of the "organization_name" tag state: The name of the -/// organization. -/// -/// @param organizationName The name of the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizationName:(DBTEAMLOGOrganizationName *)organizationName; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "connected_team_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `connectedTeamName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "connected_team_name". -/// -- (BOOL)isConnectedTeamName; - -/// -/// Retrieves whether the union's current tag state has value -/// "non_trusted_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `nonTrustedTeamDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "non_trusted_team_details". -/// -- (BOOL)isNonTrustedTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "organization_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizationName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "organization_name". -/// -- (BOOL)isOrganizationName; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` union. -/// -@interface DBTEAMLOGFederationStatusChangeAdditionalInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFederationStatusChangeAdditionalInfo` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFederationStatusChangeAdditionalInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFederationStatusChangeAdditionalInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` object. -/// -+ (DBTEAMLOGFederationStatusChangeAdditionalInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddCommentDetails.h deleted file mode 100644 index c9d7a074..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddCommentDetails` struct. -/// -/// Added file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddCommentDetails` struct. -/// -@interface DBTEAMLOGFileAddCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddCommentDetails` object. -/// -+ (DBTEAMLOGFileAddCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddCommentType.h deleted file mode 100644 index 623fedfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddCommentType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddCommentType` struct. -/// -@interface DBTEAMLOGFileAddCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddCommentType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddCommentType` object. -/// -+ (DBTEAMLOGFileAddCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddDetails.h deleted file mode 100644 index 6f6aa513..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddDetails` struct. -/// -/// Added files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddDetails` struct. -/// -@interface DBTEAMLOGFileAddDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddDetails` object. -/// -+ (DBTEAMLOGFileAddDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddFromAutomationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddFromAutomationDetails.h deleted file mode 100644 index 07da0438..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddFromAutomationDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddFromAutomationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddFromAutomationDetails` struct. -/// -/// Added files and/or folders from automation. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddFromAutomationDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddFromAutomationDetails` struct. -/// -@interface DBTEAMLOGFileAddFromAutomationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddFromAutomationDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddFromAutomationDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddFromAutomationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddFromAutomationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddFromAutomationDetails` -/// object. -/// -+ (DBTEAMLOGFileAddFromAutomationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddFromAutomationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddFromAutomationType.h deleted file mode 100644 index 9c71353a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddFromAutomationType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddFromAutomationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddFromAutomationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddFromAutomationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddFromAutomationType` struct. -/// -@interface DBTEAMLOGFileAddFromAutomationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddFromAutomationType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddFromAutomationType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddFromAutomationType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddFromAutomationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddFromAutomationType` object. -/// -+ (DBTEAMLOGFileAddFromAutomationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddType.h deleted file mode 100644 index 92cf465e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileAddType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddType` struct. -/// -@interface DBTEAMLOGFileAddTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddType` object. -/// -+ (DBTEAMLOGFileAddType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileChangeCommentSubscriptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileChangeCommentSubscriptionDetails.h deleted file mode 100644 index 273d21c5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileChangeCommentSubscriptionDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileChangeCommentSubscriptionDetails; -@class DBTEAMLOGFileCommentNotificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileChangeCommentSubscriptionDetails` struct. -/// -/// Subscribed to or unsubscribed from comment notifications for file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionDetails : NSObject - -#pragma mark - Instance fields - -/// New file comment subscription. -@property (nonatomic, readonly) DBTEAMLOGFileCommentNotificationPolicy *dNewValue; - -/// Previous file comment subscription. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileCommentNotificationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file comment subscription. -/// @param previousValue Previous file comment subscription. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentNotificationPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGFileCommentNotificationPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New file comment subscription. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentNotificationPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileChangeCommentSubscriptionDetails` -/// struct. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileChangeCommentSubscriptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileChangeCommentSubscriptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileChangeCommentSubscriptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` object. -/// -+ (DBTEAMLOGFileChangeCommentSubscriptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileChangeCommentSubscriptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileChangeCommentSubscriptionType.h deleted file mode 100644 index 3ca72c0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileChangeCommentSubscriptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileChangeCommentSubscriptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileChangeCommentSubscriptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileChangeCommentSubscriptionType` struct. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileChangeCommentSubscriptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileChangeCommentSubscriptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileChangeCommentSubscriptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileChangeCommentSubscriptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileChangeCommentSubscriptionType` -/// object. -/// -+ (DBTEAMLOGFileChangeCommentSubscriptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentNotificationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentNotificationPolicy.h deleted file mode 100644 index 93328f58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentNotificationPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentNotificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentNotificationPolicy` union. -/// -/// Enable or disable file comments notifications -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentNotificationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileCommentNotificationPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGFileCommentNotificationPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileCommentNotificationPolicyTag) { - /// (no description). - DBTEAMLOGFileCommentNotificationPolicyDisabled, - - /// (no description). - DBTEAMLOGFileCommentNotificationPolicyEnabled, - - /// (no description). - DBTEAMLOGFileCommentNotificationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileCommentNotificationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileCommentNotificationPolicy` -/// union. -/// -@interface DBTEAMLOGFileCommentNotificationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentNotificationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCommentNotificationPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentNotificationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentNotificationPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentNotificationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentNotificationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentNotificationPolicy` -/// object. -/// -+ (DBTEAMLOGFileCommentNotificationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsChangePolicyDetails.h deleted file mode 100644 index 675f6d38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentsChangePolicyDetails; -@class DBTEAMLOGFileCommentsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentsChangePolicyDetails` struct. -/// -/// Enabled/disabled commenting on team files. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New commenting on team files policy. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsPolicy *dNewValue; - -/// Previous commenting on team files policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileCommentsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New commenting on team files policy. -/// @param previousValue Previous commenting on team files policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGFileCommentsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New commenting on team files policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCommentsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGFileCommentsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileCommentsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentsChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGFileCommentsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsChangePolicyType.h deleted file mode 100644 index 39e95736..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCommentsChangePolicyType` struct. -/// -@interface DBTEAMLOGFileCommentsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentsChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCommentsChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGFileCommentsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsPolicy.h deleted file mode 100644 index 74705e1b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCommentsPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentsPolicy` union. -/// -/// File comments policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileCommentsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFileCommentsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileCommentsPolicyTag) { - /// (no description). - DBTEAMLOGFileCommentsPolicyDisabled, - - /// (no description). - DBTEAMLOGFileCommentsPolicyEnabled, - - /// (no description). - DBTEAMLOGFileCommentsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileCommentsPolicy` union. -/// -@interface DBTEAMLOGFileCommentsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCommentsPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentsPolicy` object. -/// -+ (DBTEAMLOGFileCommentsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCopyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCopyDetails.h deleted file mode 100644 index 2656983a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCopyDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCopyDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCopyDetails` struct. -/// -/// Copied files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCopyDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCopyDetails` struct. -/// -@interface DBTEAMLOGFileCopyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCopyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCopyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCopyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCopyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCopyDetails` object. -/// -+ (DBTEAMLOGFileCopyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCopyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCopyType.h deleted file mode 100644 index b2b105d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileCopyType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCopyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCopyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCopyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCopyType` struct. -/// -@interface DBTEAMLOGFileCopyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCopyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCopyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCopyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCopyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCopyType` object. -/// -+ (DBTEAMLOGFileCopyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteCommentDetails.h deleted file mode 100644 index 941060e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteCommentDetails` struct. -/// -/// Deleted file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteCommentDetails` struct. -/// -@interface DBTEAMLOGFileDeleteCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteCommentDetails` object. -/// -+ (DBTEAMLOGFileDeleteCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteCommentType.h deleted file mode 100644 index d1969b0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteCommentType` struct. -/// -@interface DBTEAMLOGFileDeleteCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteCommentType` object. -/// -+ (DBTEAMLOGFileDeleteCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteDetails.h deleted file mode 100644 index 3196f113..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteDetails` struct. -/// -/// Deleted files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteDetails` struct. -/// -@interface DBTEAMLOGFileDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteDetails` object. -/// -+ (DBTEAMLOGFileDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteType.h deleted file mode 100644 index ba21d007..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDeleteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteType` struct. -/// -@interface DBTEAMLOGFileDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteType` object. -/// -+ (DBTEAMLOGFileDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDownloadDetails.h deleted file mode 100644 index 5343cd5e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDownloadDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDownloadDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDownloadDetails` struct. -/// -/// Downloaded files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDownloadDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDownloadDetails` struct. -/// -@interface DBTEAMLOGFileDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDownloadDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDownloadDetails` object. -/// -+ (DBTEAMLOGFileDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDownloadType.h deleted file mode 100644 index 3d8d7bd1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileDownloadType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDownloadType` struct. -/// -@interface DBTEAMLOGFileDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDownloadType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDownloadType` object. -/// -+ (DBTEAMLOGFileDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditCommentDetails.h deleted file mode 100644 index c780666e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditCommentDetails` struct. -/// -/// Edited file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -/// Previous comment text. -@property (nonatomic, readonly, copy) NSString *previousCommentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousCommentText Previous comment text. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousCommentText:(NSString *)previousCommentText - commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param previousCommentText Previous comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousCommentText:(NSString *)previousCommentText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditCommentDetails` struct. -/// -@interface DBTEAMLOGFileEditCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditCommentDetails` object. -/// -+ (DBTEAMLOGFileEditCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditCommentType.h deleted file mode 100644 index 26d8978a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditCommentType` struct. -/// -@interface DBTEAMLOGFileEditCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditCommentType` object. -/// -+ (DBTEAMLOGFileEditCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditDetails.h deleted file mode 100644 index 6ac0a440..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditDetails` struct. -/// -/// Edited files. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditDetails` struct. -/// -@interface DBTEAMLOGFileEditDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditDetails` object. -/// -+ (DBTEAMLOGFileEditDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditType.h deleted file mode 100644 index a2452430..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileEditType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditType` struct. -/// -@interface DBTEAMLOGFileEditTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditType` object. -/// -+ (DBTEAMLOGFileEditType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileGetCopyReferenceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileGetCopyReferenceDetails.h deleted file mode 100644 index 9d611320..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileGetCopyReferenceDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileGetCopyReferenceDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileGetCopyReferenceDetails` struct. -/// -/// Created copy reference to file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileGetCopyReferenceDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileGetCopyReferenceDetails` struct. -/// -@interface DBTEAMLOGFileGetCopyReferenceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileGetCopyReferenceDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileGetCopyReferenceDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileGetCopyReferenceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileGetCopyReferenceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileGetCopyReferenceDetails` -/// object. -/// -+ (DBTEAMLOGFileGetCopyReferenceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileGetCopyReferenceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileGetCopyReferenceType.h deleted file mode 100644 index 4e89bc62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileGetCopyReferenceType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileGetCopyReferenceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileGetCopyReferenceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileGetCopyReferenceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileGetCopyReferenceType` struct. -/// -@interface DBTEAMLOGFileGetCopyReferenceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileGetCopyReferenceType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileGetCopyReferenceType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileGetCopyReferenceType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileGetCopyReferenceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileGetCopyReferenceType` object. -/// -+ (DBTEAMLOGFileGetCopyReferenceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLikeCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLikeCommentDetails.h deleted file mode 100644 index ce6388d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLikeCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLikeCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLikeCommentDetails` struct. -/// -/// Liked file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLikeCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLikeCommentDetails` struct. -/// -@interface DBTEAMLOGFileLikeCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLikeCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLikeCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLikeCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLikeCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLikeCommentDetails` object. -/// -+ (DBTEAMLOGFileLikeCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLikeCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLikeCommentType.h deleted file mode 100644 index bfe7eca3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLikeCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLikeCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLikeCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLikeCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLikeCommentType` struct. -/// -@interface DBTEAMLOGFileLikeCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLikeCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLikeCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLikeCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLikeCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLikeCommentType` object. -/// -+ (DBTEAMLOGFileLikeCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingLockStatusChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingLockStatusChangedDetails.h deleted file mode 100644 index 76619202..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingLockStatusChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingLockStatusChangedDetails; -@class DBTEAMLOGLockStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingLockStatusChangedDetails` struct. -/// -/// Locked/unlocked editing for a file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous lock status of the file. -@property (nonatomic, readonly) DBTEAMLOGLockStatus *previousValue; - -/// New lock status of the file. -@property (nonatomic, readonly) DBTEAMLOGLockStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous lock status of the file. -/// @param dNewValue New lock status of the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGLockStatus *)previousValue dNewValue:(DBTEAMLOGLockStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingLockStatusChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingLockStatusChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingLockStatusChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingLockStatusChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` object. -/// -+ (DBTEAMLOGFileLockingLockStatusChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingLockStatusChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingLockStatusChangedType.h deleted file mode 100644 index fc5657ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingLockStatusChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingLockStatusChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingLockStatusChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingLockStatusChangedType` struct. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingLockStatusChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileLockingLockStatusChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingLockStatusChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingLockStatusChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLockingLockStatusChangedType` -/// object. -/// -+ (DBTEAMLOGFileLockingLockStatusChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingPolicyChangedDetails.h deleted file mode 100644 index 075b3c8e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingPolicyChangedDetails; -@class DBTEAMPOLICIESFileLockingPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingPolicyChangedDetails` struct. -/// -/// Changed file locking policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New file locking policy. -@property (nonatomic, readonly) DBTEAMPOLICIESFileLockingPolicyState *dNewValue; - -/// Previous file locking policy. -@property (nonatomic, readonly) DBTEAMPOLICIESFileLockingPolicyState *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file locking policy. -/// @param previousValue Previous file locking policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESFileLockingPolicyState *)dNewValue - previousValue:(DBTEAMPOLICIESFileLockingPolicyState *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGFileLockingPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileLockingPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLockingPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGFileLockingPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingPolicyChangedType.h deleted file mode 100644 index dcffc838..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLockingPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingPolicyChangedType` struct. -/// -@interface DBTEAMLOGFileLockingPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLockingPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLockingPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGFileLockingPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLogInfo.h deleted file mode 100644 index ff4c7166..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileLogInfo.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGFileOrFolderLogInfo.h" - -@class DBTEAMLOGFileLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLogInfo` struct. -/// -/// File's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLogInfo : DBTEAMLOGFileOrFolderLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path relative to event context. -/// @param displayName Display name. -/// @param fileId Unique ID. -/// @param fileSize File or folder size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path - displayName:(nullable NSString *)displayName - fileId:(nullable NSString *)fileId - fileSize:(nullable NSNumber *)fileSize; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path relative to event context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLogInfo` struct. -/// -@interface DBTEAMLOGFileLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLogInfo` object. -/// -+ (DBTEAMLOGFileLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileMoveDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileMoveDetails.h deleted file mode 100644 index 0864b6bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileMoveDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileMoveDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMoveDetails` struct. -/// -/// Moved files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileMoveDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMoveDetails` struct. -/// -@interface DBTEAMLOGFileMoveDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileMoveDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileMoveDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileMoveDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileMoveDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileMoveDetails` object. -/// -+ (DBTEAMLOGFileMoveDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileMoveType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileMoveType.h deleted file mode 100644 index 99446c02..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileMoveType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileMoveType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMoveType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileMoveType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMoveType` struct. -/// -@interface DBTEAMLOGFileMoveTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileMoveType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileMoveType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileMoveType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileMoveType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileMoveType` object. -/// -+ (DBTEAMLOGFileMoveType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileOrFolderLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileOrFolderLogInfo.h deleted file mode 100644 index e40bd22b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileOrFolderLogInfo.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileOrFolderLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileOrFolderLogInfo` struct. -/// -/// Generic information relevant both for files and folders -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileOrFolderLogInfo : NSObject - -#pragma mark - Instance fields - -/// Path relative to event context. -@property (nonatomic, readonly) DBTEAMLOGPathLogInfo *path; - -/// Display name. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// Unique ID. -@property (nonatomic, readonly, copy, nullable) NSString *fileId; - -/// File or folder size in bytes. -@property (nonatomic, readonly, nullable) NSNumber *fileSize; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path relative to event context. -/// @param displayName Display name. -/// @param fileId Unique ID. -/// @param fileSize File or folder size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path - displayName:(nullable NSString *)displayName - fileId:(nullable NSString *)fileId - fileSize:(nullable NSNumber *)fileSize; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path relative to event context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileOrFolderLogInfo` struct. -/// -@interface DBTEAMLOGFileOrFolderLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileOrFolderLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileOrFolderLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileOrFolderLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileOrFolderLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFileOrFolderLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileOrFolderLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileOrFolderLogInfo` object. -/// -+ (DBTEAMLOGFileOrFolderLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePermanentlyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePermanentlyDeleteDetails.h deleted file mode 100644 index 3ec8eac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePermanentlyDeleteDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePermanentlyDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePermanentlyDeleteDetails` struct. -/// -/// Permanently deleted files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePermanentlyDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePermanentlyDeleteDetails` struct. -/// -@interface DBTEAMLOGFilePermanentlyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePermanentlyDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePermanentlyDeleteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePermanentlyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePermanentlyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePermanentlyDeleteDetails` -/// object. -/// -+ (DBTEAMLOGFilePermanentlyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePermanentlyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePermanentlyDeleteType.h deleted file mode 100644 index 7298bfa5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePermanentlyDeleteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePermanentlyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePermanentlyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePermanentlyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePermanentlyDeleteType` struct. -/// -@interface DBTEAMLOGFilePermanentlyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePermanentlyDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePermanentlyDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePermanentlyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePermanentlyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePermanentlyDeleteType` object. -/// -+ (DBTEAMLOGFilePermanentlyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePreviewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePreviewDetails.h deleted file mode 100644 index dc75b7d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePreviewDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePreviewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePreviewDetails` struct. -/// -/// Previewed files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePreviewDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePreviewDetails` struct. -/// -@interface DBTEAMLOGFilePreviewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePreviewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePreviewDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePreviewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePreviewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePreviewDetails` object. -/// -+ (DBTEAMLOGFilePreviewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePreviewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePreviewType.h deleted file mode 100644 index a54ec3c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFilePreviewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePreviewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePreviewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePreviewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePreviewType` struct. -/// -@interface DBTEAMLOGFilePreviewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePreviewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePreviewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePreviewType *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePreviewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePreviewType` object. -/// -+ (DBTEAMLOGFilePreviewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h deleted file mode 100644 index d5d2307d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileProviderMigrationPolicyChangedDetails; -@class DBTEAMPOLICIESFileProviderMigrationPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileProviderMigrationPolicyChangedDetails` struct. -/// -/// Changed File Provider Migration policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMPOLICIESFileProviderMigrationPolicyState *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMPOLICIESFileProviderMigrationPolicyState *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESFileProviderMigrationPolicyState *)dNewValue - previousValue:(DBTEAMPOLICIESFileProviderMigrationPolicyState *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileProviderMigrationPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileProviderMigrationPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` object. -/// -+ (DBTEAMLOGFileProviderMigrationPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedType.h deleted file mode 100644 index fba0b6dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileProviderMigrationPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileProviderMigrationPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileProviderMigrationPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileProviderMigrationPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileProviderMigrationPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileProviderMigrationPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` object. -/// -+ (DBTEAMLOGFileProviderMigrationPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRenameDetails.h deleted file mode 100644 index 13316a3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRenameDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRenameDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRenameDetails` struct. -/// -/// Renamed files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRenameDetails` struct. -/// -@interface DBTEAMLOGFileRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRenameDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRenameDetails` object. -/// -+ (DBTEAMLOGFileRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRenameType.h deleted file mode 100644 index 4ac7f81f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRenameType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRenameType` struct. -/// -@interface DBTEAMLOGFileRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRenameType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRenameType` object. -/// -+ (DBTEAMLOGFileRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestChangeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestChangeDetails.h deleted file mode 100644 index fcb858e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestChangeDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestChangeDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestChangeDetails` struct. -/// -/// Changed file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestChangeDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// Previous file request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *previousDetails; - -/// New file request details. -@property (nonatomic, readonly) DBTEAMLOGFileRequestDetails *dNewDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewDetails New file request details. -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param previousDetails Previous file request details. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewDetails:(DBTEAMLOGFileRequestDetails *)dNewDetails - fileRequestId:(nullable NSString *)fileRequestId - previousDetails:(nullable DBTEAMLOGFileRequestDetails *)previousDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewDetails New file request details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewDetails:(DBTEAMLOGFileRequestDetails *)dNewDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestChangeDetails` struct. -/// -@interface DBTEAMLOGFileRequestChangeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestChangeDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestChangeDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestChangeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestChangeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestChangeDetails` object. -/// -+ (DBTEAMLOGFileRequestChangeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestChangeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestChangeType.h deleted file mode 100644 index e83e5e59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestChangeType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestChangeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestChangeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestChangeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestChangeType` struct. -/// -@interface DBTEAMLOGFileRequestChangeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestChangeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestChangeType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestChangeType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestChangeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestChangeType` object. -/// -+ (DBTEAMLOGFileRequestChangeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCloseDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCloseDetails.h deleted file mode 100644 index 4dd7d132..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCloseDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCloseDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCloseDetails` struct. -/// -/// Closed file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCloseDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// Previous file request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *previousDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param previousDetails Previous file request details. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestId:(nullable NSString *)fileRequestId - previousDetails:(nullable DBTEAMLOGFileRequestDetails *)previousDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCloseDetails` struct. -/// -@interface DBTEAMLOGFileRequestCloseDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCloseDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCloseDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCloseDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCloseDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCloseDetails` object. -/// -+ (DBTEAMLOGFileRequestCloseDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCloseType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCloseType.h deleted file mode 100644 index c541fe5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCloseType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCloseType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCloseType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCloseType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCloseType` struct. -/// -@interface DBTEAMLOGFileRequestCloseTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCloseType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCloseType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCloseType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCloseType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCloseType` object. -/// -+ (DBTEAMLOGFileRequestCloseType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCreateDetails.h deleted file mode 100644 index 42c13e60..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCreateDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCreateDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCreateDetails` struct. -/// -/// Created file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCreateDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// File request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *requestDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param requestDetails File request details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestId:(nullable NSString *)fileRequestId - requestDetails:(nullable DBTEAMLOGFileRequestDetails *)requestDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCreateDetails` struct. -/// -@interface DBTEAMLOGFileRequestCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCreateDetails` object. -/// -+ (DBTEAMLOGFileRequestCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCreateType.h deleted file mode 100644 index 622289ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCreateType` struct. -/// -@interface DBTEAMLOGFileRequestCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCreateType` object. -/// -+ (DBTEAMLOGFileRequestCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeadline.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeadline.h deleted file mode 100644 index 747ff08f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeadline.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeadline` struct. -/// -/// File request deadline -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDeadline : NSObject - -#pragma mark - Instance fields - -/// The deadline for this file request. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) NSDate *deadline; - -/// If set, allow uploads after the deadline has passed. -@property (nonatomic, readonly, copy, nullable) NSString *allowLateUploads; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deadline The deadline for this file request. Might be missing due to -/// historical data gap. -/// @param allowLateUploads If set, allow uploads after the deadline has passed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeadline:(nullable NSDate *)deadline allowLateUploads:(nullable NSString *)allowLateUploads; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeadline` struct. -/// -@interface DBTEAMLOGFileRequestDeadlineSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDeadline` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDeadline` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeadline` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDeadline *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDeadline` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeadline` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDeadline` object. -/// -+ (DBTEAMLOGFileRequestDeadline *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeleteDetails.h deleted file mode 100644 index 5a8f7dfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeleteDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeleteDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeleteDetails` struct. -/// -/// Delete file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// Previous file request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *previousDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param previousDetails Previous file request details. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestId:(nullable NSString *)fileRequestId - previousDetails:(nullable DBTEAMLOGFileRequestDetails *)previousDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeleteDetails` struct. -/// -@interface DBTEAMLOGFileRequestDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDeleteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDeleteDetails` object. -/// -+ (DBTEAMLOGFileRequestDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeleteType.h deleted file mode 100644 index 547f4c7d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDeleteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeleteType` struct. -/// -@interface DBTEAMLOGFileRequestDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDeleteType` object. -/// -+ (DBTEAMLOGFileRequestDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDetails.h deleted file mode 100644 index ff02c510..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeadline; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDetails` struct. -/// -/// File request details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDetails : NSObject - -#pragma mark - Instance fields - -/// Asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *assetIndex; - -/// File request deadline. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDeadline *deadline; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param assetIndex Asset position in the Assets list. -/// @param deadline File request deadline. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAssetIndex:(NSNumber *)assetIndex deadline:(nullable DBTEAMLOGFileRequestDeadline *)deadline; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param assetIndex Asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAssetIndex:(NSNumber *)assetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDetails` struct. -/// -@interface DBTEAMLOGFileRequestDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDetails` object. -/// -+ (DBTEAMLOGFileRequestDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestReceiveFileDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestReceiveFileDetails.h deleted file mode 100644 index a324a417..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestReceiveFileDetails.h +++ /dev/null @@ -1,112 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDetails; -@class DBTEAMLOGFileRequestReceiveFileDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestReceiveFileDetails` struct. -/// -/// Received files for file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestReceiveFileDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// File request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *fileRequestDetails; - -/// Submitted file names. -@property (nonatomic, readonly) NSArray *submittedFileNames; - -/// The name as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *submitterName; - -/// The email as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *submitterEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param submittedFileNames Submitted file names. -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param fileRequestDetails File request details. Might be missing due to -/// historical data gap. -/// @param submitterName The name as provided by the submitter. -/// @param submitterEmail The email as provided by the submitter. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubmittedFileNames:(NSArray *)submittedFileNames - fileRequestId:(nullable NSString *)fileRequestId - fileRequestDetails:(nullable DBTEAMLOGFileRequestDetails *)fileRequestDetails - submitterName:(nullable NSString *)submitterName - submitterEmail:(nullable NSString *)submitterEmail; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param submittedFileNames Submitted file names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubmittedFileNames:(NSArray *)submittedFileNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestReceiveFileDetails` struct. -/// -@interface DBTEAMLOGFileRequestReceiveFileDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestReceiveFileDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestReceiveFileDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestReceiveFileDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestReceiveFileDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestReceiveFileDetails` -/// object. -/// -+ (DBTEAMLOGFileRequestReceiveFileDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestReceiveFileType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestReceiveFileType.h deleted file mode 100644 index 9cb0e662..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestReceiveFileType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestReceiveFileType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestReceiveFileType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestReceiveFileType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestReceiveFileType` struct. -/// -@interface DBTEAMLOGFileRequestReceiveFileTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestReceiveFileType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestReceiveFileType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestReceiveFileType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestReceiveFileType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestReceiveFileType` -/// object. -/// -+ (DBTEAMLOGFileRequestReceiveFileType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsChangePolicyDetails.h deleted file mode 100644 index b1659867..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsChangePolicyDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsChangePolicyDetails; -@class DBTEAMLOGFileRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsChangePolicyDetails` struct. -/// -/// Enabled/disabled file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New file requests policy. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsPolicy *dNewValue; - -/// Previous file requests policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file requests policy. -/// @param previousValue Previous file requests policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileRequestsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGFileRequestsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New file requests policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileRequestsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGFileRequestsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGFileRequestsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsChangePolicyType.h deleted file mode 100644 index ee2e90fb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsChangePolicyType` struct. -/// -@interface DBTEAMLOGFileRequestsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestsChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGFileRequestsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsEnabledDetails.h deleted file mode 100644 index 8e67a011..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsEnabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsEnabledDetails` struct. -/// -/// Enabled file request emails for everyone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsEmailsEnabledDetails` struct. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsEnabledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsEmailsEnabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsEnabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsEmailsEnabledDetails` -/// object. -/// -+ (DBTEAMLOGFileRequestsEmailsEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsEnabledType.h deleted file mode 100644 index a102fd78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsEnabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsEmailsEnabledType` struct. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsEnabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestsEmailsEnabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsEnabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsEmailsEnabledType` -/// object. -/// -+ (DBTEAMLOGFileRequestsEmailsEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h deleted file mode 100644 index 3a3c26d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsRestrictedToTeamOnlyDetails` struct. -/// -/// Enabled file request emails for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `FileRequestsEmailsRestrictedToTeamOnlyDetails` struct. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` object. -/// -+ (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h deleted file mode 100644 index f1b599d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsRestrictedToTeamOnlyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsEmailsRestrictedToTeamOnlyType` -/// struct. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` object. -/// -+ (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsPolicy.h deleted file mode 100644 index 67d779fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRequestsPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsPolicy` union. -/// -/// File requests policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileRequestsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFileRequestsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileRequestsPolicyTag) { - /// (no description). - DBTEAMLOGFileRequestsPolicyDisabled, - - /// (no description). - DBTEAMLOGFileRequestsPolicyEnabled, - - /// (no description). - DBTEAMLOGFileRequestsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileRequestsPolicy` union. -/// -@interface DBTEAMLOGFileRequestsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestsPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsPolicy` object. -/// -+ (DBTEAMLOGFileRequestsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileResolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileResolveCommentDetails.h deleted file mode 100644 index 057e7d67..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileResolveCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileResolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileResolveCommentDetails` struct. -/// -/// Resolved file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileResolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileResolveCommentDetails` struct. -/// -@interface DBTEAMLOGFileResolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileResolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileResolveCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileResolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileResolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileResolveCommentDetails` object. -/// -+ (DBTEAMLOGFileResolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileResolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileResolveCommentType.h deleted file mode 100644 index 6b642853..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileResolveCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileResolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileResolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileResolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileResolveCommentType` struct. -/// -@interface DBTEAMLOGFileResolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileResolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileResolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileResolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileResolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileResolveCommentType` object. -/// -+ (DBTEAMLOGFileResolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRestoreDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRestoreDetails.h deleted file mode 100644 index e1c2a90f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRestoreDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRestoreDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRestoreDetails` struct. -/// -/// Restored deleted files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRestoreDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRestoreDetails` struct. -/// -@interface DBTEAMLOGFileRestoreDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRestoreDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRestoreDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRestoreDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRestoreDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRestoreDetails` object. -/// -+ (DBTEAMLOGFileRestoreDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRestoreType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRestoreType.h deleted file mode 100644 index c3da21d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRestoreType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRestoreType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRestoreType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRestoreType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRestoreType` struct. -/// -@interface DBTEAMLOGFileRestoreTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRestoreType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRestoreType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRestoreType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRestoreType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRestoreType` object. -/// -+ (DBTEAMLOGFileRestoreType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRevertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRevertDetails.h deleted file mode 100644 index 1d0956ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRevertDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRevertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRevertDetails` struct. -/// -/// Reverted files to previous version. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRevertDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRevertDetails` struct. -/// -@interface DBTEAMLOGFileRevertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRevertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRevertDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRevertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRevertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRevertDetails` object. -/// -+ (DBTEAMLOGFileRevertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRevertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRevertType.h deleted file mode 100644 index 13d3c90b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRevertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRevertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRevertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRevertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRevertType` struct. -/// -@interface DBTEAMLOGFileRevertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRevertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRevertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRevertType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRevertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRevertType` object. -/// -+ (DBTEAMLOGFileRevertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRollbackChangesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRollbackChangesDetails.h deleted file mode 100644 index bd10524f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRollbackChangesDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRollbackChangesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRollbackChangesDetails` struct. -/// -/// Rolled back file actions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRollbackChangesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRollbackChangesDetails` struct. -/// -@interface DBTEAMLOGFileRollbackChangesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRollbackChangesDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRollbackChangesDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRollbackChangesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRollbackChangesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRollbackChangesDetails` -/// object. -/// -+ (DBTEAMLOGFileRollbackChangesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRollbackChangesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRollbackChangesType.h deleted file mode 100644 index 0015f663..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileRollbackChangesType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRollbackChangesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRollbackChangesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRollbackChangesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRollbackChangesType` struct. -/// -@interface DBTEAMLOGFileRollbackChangesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRollbackChangesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRollbackChangesType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRollbackChangesType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRollbackChangesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRollbackChangesType` object. -/// -+ (DBTEAMLOGFileRollbackChangesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileSaveCopyReferenceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileSaveCopyReferenceDetails.h deleted file mode 100644 index 092e8091..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileSaveCopyReferenceDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileSaveCopyReferenceDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileSaveCopyReferenceDetails` struct. -/// -/// Saved file/folder using copy reference. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileSaveCopyReferenceDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileSaveCopyReferenceDetails` struct. -/// -@interface DBTEAMLOGFileSaveCopyReferenceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileSaveCopyReferenceDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileSaveCopyReferenceDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileSaveCopyReferenceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileSaveCopyReferenceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileSaveCopyReferenceDetails` -/// object. -/// -+ (DBTEAMLOGFileSaveCopyReferenceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileSaveCopyReferenceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileSaveCopyReferenceType.h deleted file mode 100644 index 9e937693..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileSaveCopyReferenceType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileSaveCopyReferenceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileSaveCopyReferenceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileSaveCopyReferenceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileSaveCopyReferenceType` struct. -/// -@interface DBTEAMLOGFileSaveCopyReferenceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileSaveCopyReferenceType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileSaveCopyReferenceType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileSaveCopyReferenceType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileSaveCopyReferenceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileSaveCopyReferenceType` object. -/// -+ (DBTEAMLOGFileSaveCopyReferenceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersFileAddDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersFileAddDetails.h deleted file mode 100644 index 23395284..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersFileAddDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersFileAddDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersFileAddDetails` struct. -/// -/// Transfer files added. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersFileAddDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersFileAddDetails` struct. -/// -@interface DBTEAMLOGFileTransfersFileAddDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersFileAddDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersFileAddDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersFileAddDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersFileAddDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersFileAddDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersFileAddDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersFileAddType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersFileAddType.h deleted file mode 100644 index 2e0c86dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersFileAddType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersFileAddType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersFileAddType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersFileAddType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersFileAddType` struct. -/// -@interface DBTEAMLOGFileTransfersFileAddTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersFileAddType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersFileAddType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersFileAddType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersFileAddType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersFileAddType` object. -/// -+ (DBTEAMLOGFileTransfersFileAddType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicy.h deleted file mode 100644 index 5bf004be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersPolicy` union. -/// -/// File transfers policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileTransfersPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFileTransfersPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileTransfersPolicyTag) { - /// (no description). - DBTEAMLOGFileTransfersPolicyDisabled, - - /// (no description). - DBTEAMLOGFileTransfersPolicyEnabled, - - /// (no description). - DBTEAMLOGFileTransfersPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileTransfersPolicy` union. -/// -@interface DBTEAMLOGFileTransfersPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersPolicy` object. -/// -+ (DBTEAMLOGFileTransfersPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicyChangedDetails.h deleted file mode 100644 index 426f02ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersPolicy; -@class DBTEAMLOGFileTransfersPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersPolicyChangedDetails` struct. -/// -/// Changed file transfers policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New file transfers policy. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicy *dNewValue; - -/// Previous file transfers policy. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file transfers policy. -/// @param previousValue Previous file transfers policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileTransfersPolicy *)dNewValue - previousValue:(DBTEAMLOGFileTransfersPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicyChangedType.h deleted file mode 100644 index c19662fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersPolicyChangedType` struct. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGFileTransfersPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDeleteDetails.h deleted file mode 100644 index 1a40d560..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDeleteDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDeleteDetails` struct. -/// -/// Deleted transfer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDeleteDetails` struct. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDeleteDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` object. -/// -+ (DBTEAMLOGFileTransfersTransferDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDeleteType.h deleted file mode 100644 index c043a6a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDeleteType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDeleteType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferDeleteType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDownloadDetails.h deleted file mode 100644 index 2a1a9c18..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDownloadDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDownloadDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDownloadDetails` struct. -/// -/// Transfer downloaded. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDownloadDetails` -/// struct. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDownloadDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` object. -/// -+ (DBTEAMLOGFileTransfersTransferDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDownloadType.h deleted file mode 100644 index 2b0ea229..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferDownloadType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDownloadType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDownloadType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDownloadType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferDownloadType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferSendDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferSendDetails.h deleted file mode 100644 index 93b73c47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferSendDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferSendDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferSendDetails` struct. -/// -/// Sent transfer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferSendDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferSendDetails` struct. -/// -@interface DBTEAMLOGFileTransfersTransferSendDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferSendDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferSendDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferSendDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferSendDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferSendDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferSendDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferSendType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferSendType.h deleted file mode 100644 index 8ebbf496..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferSendType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferSendType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferSendType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferSendType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferSendType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferSendTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferSendType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersTransferSendType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferSendType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferSendType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferSendType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferSendType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferViewDetails.h deleted file mode 100644 index aadd41cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferViewDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferViewDetails` struct. -/// -/// Viewed transfer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferViewDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferViewDetails` struct. -/// -@interface DBTEAMLOGFileTransfersTransferViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferViewDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferViewDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferViewDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferViewType.h deleted file mode 100644 index 7c27c1b0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileTransfersTransferViewType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferViewType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersTransferViewType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferViewType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnlikeCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnlikeCommentDetails.h deleted file mode 100644 index b6dcf276..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnlikeCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnlikeCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnlikeCommentDetails` struct. -/// -/// Unliked file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnlikeCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnlikeCommentDetails` struct. -/// -@interface DBTEAMLOGFileUnlikeCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnlikeCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnlikeCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnlikeCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnlikeCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnlikeCommentDetails` object. -/// -+ (DBTEAMLOGFileUnlikeCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnlikeCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnlikeCommentType.h deleted file mode 100644 index c17fde52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnlikeCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnlikeCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnlikeCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnlikeCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnlikeCommentType` struct. -/// -@interface DBTEAMLOGFileUnlikeCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnlikeCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnlikeCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnlikeCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnlikeCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnlikeCommentType` object. -/// -+ (DBTEAMLOGFileUnlikeCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnresolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnresolveCommentDetails.h deleted file mode 100644 index 373f6e69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnresolveCommentDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnresolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnresolveCommentDetails` struct. -/// -/// Unresolved file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnresolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnresolveCommentDetails` struct. -/// -@interface DBTEAMLOGFileUnresolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnresolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnresolveCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnresolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnresolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnresolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGFileUnresolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnresolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnresolveCommentType.h deleted file mode 100644 index 8a72e174..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFileUnresolveCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnresolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnresolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnresolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnresolveCommentType` struct. -/// -@interface DBTEAMLOGFileUnresolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnresolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnresolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnresolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnresolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnresolveCommentType` object. -/// -+ (DBTEAMLOGFileUnresolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicy.h deleted file mode 100644 index 4eab5a45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLinkRestrictionPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkRestrictionPolicy` union. -/// -/// Policy for deciding whether applying link restrictions on all team owned -/// folders -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFolderLinkRestrictionPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFolderLinkRestrictionPolicyTag) { - /// (no description). - DBTEAMLOGFolderLinkRestrictionPolicyDisabled, - - /// (no description). - DBTEAMLOGFolderLinkRestrictionPolicyEnabled, - - /// (no description). - DBTEAMLOGFolderLinkRestrictionPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// union. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLinkRestrictionPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLinkRestrictionPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLinkRestrictionPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// object. -/// -+ (DBTEAMLOGFolderLinkRestrictionPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h deleted file mode 100644 index 6afa9fb8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLinkRestrictionPolicy; -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkRestrictionPolicyChangedDetails` struct. -/// -/// Changed folder link restrictions policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFolderLinkRestrictionPolicy *)dNewValue - previousValue:(DBTEAMLOGFolderLinkRestrictionPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLinkRestrictionPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` object. -/// -+ (DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h deleted file mode 100644 index 9a3c62e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkRestrictionPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLinkRestrictionPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLinkRestrictionPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` object. -/// -+ (DBTEAMLOGFolderLinkRestrictionPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLogInfo.h deleted file mode 100644 index 6293e3ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderLogInfo.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGFileOrFolderLogInfo.h" - -@class DBTEAMLOGFolderLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLogInfo` struct. -/// -/// Folder's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLogInfo : DBTEAMLOGFileOrFolderLogInfo - -#pragma mark - Instance fields - -/// Number of files within the folder. -@property (nonatomic, readonly, nullable) NSNumber *fileCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path relative to event context. -/// @param displayName Display name. -/// @param fileId Unique ID. -/// @param fileSize File or folder size in bytes. -/// @param fileCount Number of files within the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path - displayName:(nullable NSString *)displayName - fileId:(nullable NSString *)fileId - fileSize:(nullable NSNumber *)fileSize - fileCount:(nullable NSNumber *)fileCount; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path relative to event context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLogInfo` struct. -/// -@interface DBTEAMLOGFolderLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderLogInfo` object. -/// -+ (DBTEAMLOGFolderLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewDescriptionChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewDescriptionChangedDetails.h deleted file mode 100644 index 5e8a9e78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewDescriptionChangedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewDescriptionChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewDescriptionChangedDetails` struct. -/// -/// Updated folder overview. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Folder Overview location position in the Assets list. -@property (nonatomic, readonly) NSNumber *folderOverviewLocationAsset; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderOverviewLocationAsset Folder Overview location position in the -/// Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewLocationAsset:(NSNumber *)folderOverviewLocationAsset; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewDescriptionChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewDescriptionChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewDescriptionChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewDescriptionChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` object. -/// -+ (DBTEAMLOGFolderOverviewDescriptionChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewDescriptionChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewDescriptionChangedType.h deleted file mode 100644 index a27a7de0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewDescriptionChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewDescriptionChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewDescriptionChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewDescriptionChangedType` -/// struct. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewDescriptionChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewDescriptionChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewDescriptionChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` object. -/// -+ (DBTEAMLOGFolderOverviewDescriptionChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemPinnedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemPinnedDetails.h deleted file mode 100644 index c36150c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemPinnedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemPinnedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemPinnedDetails` struct. -/// -/// Pinned item to folder overview. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedDetails : NSObject - -#pragma mark - Instance fields - -/// Folder Overview location position in the Assets list. -@property (nonatomic, readonly) NSNumber *folderOverviewLocationAsset; - -/// Pinned items positions in the Assets list. -@property (nonatomic, readonly) NSArray *pinnedItemsAssetIndices; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderOverviewLocationAsset Folder Overview location position in the -/// Assets list. -/// @param pinnedItemsAssetIndices Pinned items positions in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewLocationAsset:(NSNumber *)folderOverviewLocationAsset - pinnedItemsAssetIndices:(NSArray *)pinnedItemsAssetIndices; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemPinnedDetails` struct. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemPinnedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewItemPinnedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemPinnedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemPinnedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemPinnedDetails` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemPinnedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemPinnedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemPinnedType.h deleted file mode 100644 index a1bb68b3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemPinnedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemPinnedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemPinnedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemPinnedType` struct. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemPinnedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderOverviewItemPinnedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemPinnedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemPinnedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemPinnedType` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemPinnedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemUnpinnedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemUnpinnedDetails.h deleted file mode 100644 index bc00d46b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemUnpinnedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemUnpinnedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemUnpinnedDetails` struct. -/// -/// Unpinned item from folder overview. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedDetails : NSObject - -#pragma mark - Instance fields - -/// Folder Overview location position in the Assets list. -@property (nonatomic, readonly) NSNumber *folderOverviewLocationAsset; - -/// Pinned items positions in the Assets list. -@property (nonatomic, readonly) NSArray *pinnedItemsAssetIndices; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderOverviewLocationAsset Folder Overview location position in the -/// Assets list. -/// @param pinnedItemsAssetIndices Pinned items positions in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewLocationAsset:(NSNumber *)folderOverviewLocationAsset - pinnedItemsAssetIndices:(NSArray *)pinnedItemsAssetIndices; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemUnpinnedDetails` struct. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemUnpinnedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemUnpinnedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemUnpinnedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemUnpinnedDetails` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemUnpinnedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemUnpinnedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemUnpinnedType.h deleted file mode 100644 index 8818e84a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGFolderOverviewItemUnpinnedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemUnpinnedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemUnpinnedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemUnpinnedType` struct. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemUnpinnedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderOverviewItemUnpinnedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemUnpinnedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemUnpinnedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemUnpinnedType` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemUnpinnedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGeoLocationLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGeoLocationLogInfo.h deleted file mode 100644 index 8500224f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGeoLocationLogInfo.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGeoLocationLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GeoLocationLogInfo` struct. -/// -/// Geographic location details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGeoLocationLogInfo : NSObject - -#pragma mark - Instance fields - -/// City name. -@property (nonatomic, readonly, copy, nullable) NSString *city; - -/// Region name. -@property (nonatomic, readonly, copy, nullable) NSString *region; - -/// Country code. -@property (nonatomic, readonly, copy, nullable) NSString *country; - -/// IP address. -@property (nonatomic, readonly, copy) NSString *ipAddress; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ipAddress IP address. -/// @param city City name. -/// @param region Region name. -/// @param country Country code. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(NSString *)ipAddress - city:(nullable NSString *)city - region:(nullable NSString *)region - country:(nullable NSString *)country; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param ipAddress IP address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(NSString *)ipAddress; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GeoLocationLogInfo` struct. -/// -@interface DBTEAMLOGGeoLocationLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGeoLocationLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGeoLocationLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGeoLocationLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGeoLocationLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGGeoLocationLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGeoLocationLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGeoLocationLogInfo` object. -/// -+ (DBTEAMLOGGeoLocationLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsArg.h deleted file mode 100644 index 89b70d9c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsArg.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONTimeRange; -@class DBTEAMLOGEventCategory; -@class DBTEAMLOGEventTypeArg; -@class DBTEAMLOGGetTeamEventsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsArg : NSObject - -#pragma mark - Instance fields - -/// The maximal number of results to return per call. Note that some calls may -/// not return limit number of events, and may even return no events, even with -/// `has_more` set to true. In this case, callers should fetch again using -/// `getEventsContinue`. -@property (nonatomic, readonly) NSNumber *limit; - -/// Filter the events by account ID. Return only events with this account_id as -/// either Actor, Context, or Participants. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -/// Filter by time range. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONTimeRange *time; - -/// Filter the returned events to a single category. Note that category -/// shouldn't be provided together with event_type. -@property (nonatomic, readonly, nullable) DBTEAMLOGEventCategory *category; - -/// Filter the returned events to a single event type. Note that event_type -/// shouldn't be provided together with category. -@property (nonatomic, readonly, nullable) DBTEAMLOGEventTypeArg *eventType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximal number of results to return per call. Note that -/// some calls may not return limit number of events, and may even return no -/// events, even with `has_more` set to true. In this case, callers should fetch -/// again using `getEventsContinue`. -/// @param accountId Filter the events by account ID. Return only events with -/// this account_id as either Actor, Context, or Participants. -/// @param time Filter by time range. -/// @param category Filter the returned events to a single category. Note that -/// category shouldn't be provided together with event_type. -/// @param eventType Filter the returned events to a single event type. Note -/// that event_type shouldn't be provided together with category. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit - accountId:(nullable NSString *)accountId - time:(nullable DBTEAMCOMMONTimeRange *)time - category:(nullable DBTEAMLOGEventCategory *)category - eventType:(nullable DBTEAMLOGEventTypeArg *)eventType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTeamEventsArg` struct. -/// -@interface DBTEAMLOGGetTeamEventsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsArg` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsArg *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsArg` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsArg` object. -/// -+ (DBTEAMLOGGetTeamEventsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsContinueArg.h deleted file mode 100644 index 2c228f09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of events. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of events. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTeamEventsContinueArg` struct. -/// -@interface DBTEAMLOGGetTeamEventsContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsContinueArg *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsContinueArg` object. -/// -+ (DBTEAMLOGGetTeamEventsContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsContinueError.h deleted file mode 100644 index 01726144..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsContinueError.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsContinueError` union. -/// -/// Errors that can be raised when calling `getEventsContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGetTeamEventsContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGGetTeamEventsContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGetTeamEventsContinueErrorTag) { - /// Bad cursor. - DBTEAMLOGGetTeamEventsContinueErrorBadCursor, - - /// Cursors are intended to be used quickly. Individual cursor values are - /// normally valid for days, but in rare cases may be reset sooner. Cursor - /// reset errors should be handled by fetching a new cursor from - /// `getEvents`. The associated value is the approximate timestamp of the - /// most recent event returned by the cursor. This should be used as a - /// resumption point when calling `getEvents` to obtain a new cursor. - DBTEAMLOGGetTeamEventsContinueErrorReset, - - /// (no description). - DBTEAMLOGGetTeamEventsContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGetTeamEventsContinueErrorTag tag; - -/// Cursors are intended to be used quickly. Individual cursor values are -/// normally valid for days, but in rare cases may be reset sooner. Cursor reset -/// errors should be handled by fetching a new cursor from `getEvents`. The -/// associated value is the approximate timestamp of the most recent event -/// returned by the cursor. This should be used as a resumption point when -/// calling `getEvents` to obtain a new cursor. @note Ensure the `isReset` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSDate *reset; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "bad_cursor". -/// -/// Description of the "bad_cursor" tag state: Bad cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadCursor; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Cursors are intended to be used -/// quickly. Individual cursor values are normally valid for days, but in rare -/// cases may be reset sooner. Cursor reset errors should be handled by fetching -/// a new cursor from `getEvents`. The associated value is the approximate -/// timestamp of the most recent event returned by the cursor. This should be -/// used as a resumption point when calling `getEvents` to obtain a new cursor. -/// -/// @param reset Cursors are intended to be used quickly. Individual cursor -/// values are normally valid for days, but in rare cases may be reset sooner. -/// Cursor reset errors should be handled by fetching a new cursor from -/// `getEvents`. The associated value is the approximate timestamp of the most -/// recent event returned by the cursor. This should be used as a resumption -/// point when calling `getEvents` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset:(NSDate *)reset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "bad_cursor". -/// -/// @return Whether the union's current tag state has value "bad_cursor". -/// -- (BOOL)isBadCursor; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `reset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGetTeamEventsContinueError` union. -/// -@interface DBTEAMLOGGetTeamEventsContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsContinueError *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsContinueError` -/// object. -/// -+ (DBTEAMLOGGetTeamEventsContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsError.h deleted file mode 100644 index 19958ecc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsError.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsError` union. -/// -/// Errors that can be raised when calling `getEvents`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGetTeamEventsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGGetTeamEventsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGetTeamEventsErrorTag) { - /// No user found matching the provided account_id. - DBTEAMLOGGetTeamEventsErrorAccountIdNotFound, - - /// Invalid time range. - DBTEAMLOGGetTeamEventsErrorInvalidTimeRange, - - /// Invalid filters. Do not specify both event_type and category parameters - /// for the same call. - DBTEAMLOGGetTeamEventsErrorInvalidFilters, - - /// (no description). - DBTEAMLOGGetTeamEventsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGetTeamEventsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "account_id_not_found". -/// -/// Description of the "account_id_not_found" tag state: No user found matching -/// the provided account_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountIdNotFound; - -/// -/// Initializes union class with tag state of "invalid_time_range". -/// -/// Description of the "invalid_time_range" tag state: Invalid time range. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidTimeRange; - -/// -/// Initializes union class with tag state of "invalid_filters". -/// -/// Description of the "invalid_filters" tag state: Invalid filters. Do not -/// specify both event_type and category parameters for the same call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFilters; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "account_id_not_found". -/// -/// @return Whether the union's current tag state has value -/// "account_id_not_found". -/// -- (BOOL)isAccountIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_time_range". -/// -/// @return Whether the union's current tag state has value -/// "invalid_time_range". -/// -- (BOOL)isInvalidTimeRange; - -/// -/// Retrieves whether the union's current tag state has value "invalid_filters". -/// -/// @return Whether the union's current tag state has value "invalid_filters". -/// -- (BOOL)isInvalidFilters; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGetTeamEventsError` union. -/// -@interface DBTEAMLOGGetTeamEventsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsError` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsError *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsError` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsError` object. -/// -+ (DBTEAMLOGGetTeamEventsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsResult.h deleted file mode 100644 index 5ba1b5d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGetTeamEventsResult.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsResult; -@class DBTEAMLOGTeamEvent; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsResult : NSObject - -#pragma mark - Instance fields - -/// List of events. Note that events are not guaranteed to be sorted by their -/// timestamp value. -@property (nonatomic, readonly) NSArray *events; - -/// Pass the cursor into `getEventsContinue` to obtain additional events. The -/// value of cursor may change for each response from `getEventsContinue`, -/// regardless of the value of hasMore; older cursor strings may expire. Thus, -/// callers should ensure that they update their cursor based on the latest -/// value of cursor after each call, and poll regularly if they wish to poll for -/// new events. Callers should handle reset exceptions for expired cursors. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there may be additional events that have not been returned yet. -/// An additional call to `getEventsContinue` can retrieve them. Note that -/// hasMore may be true, even if events is empty. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param events List of events. Note that events are not guaranteed to be -/// sorted by their timestamp value. -/// @param cursor Pass the cursor into `getEventsContinue` to obtain additional -/// events. The value of cursor may change for each response from -/// `getEventsContinue`, regardless of the value of hasMore; older cursor -/// strings may expire. Thus, callers should ensure that they update their -/// cursor based on the latest value of cursor after each call, and poll -/// regularly if they wish to poll for new events. Callers should handle reset -/// exceptions for expired cursors. -/// @param hasMore Is true if there may be additional events that have not been -/// returned yet. An additional call to `getEventsContinue` can retrieve them. -/// Note that hasMore may be true, even if events is empty. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEvents:(NSArray *)events - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTeamEventsResult` struct. -/// -@interface DBTEAMLOGGetTeamEventsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsResult` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsResult *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsResult` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsResult` object. -/// -+ (DBTEAMLOGGetTeamEventsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoChangePolicyDetails.h deleted file mode 100644 index 54986c32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGoogleSsoChangePolicyDetails; -@class DBTEAMLOGGoogleSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GoogleSsoChangePolicyDetails` struct. -/// -/// Enabled/disabled Google single sign-on for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Google single sign-on policy. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoPolicy *dNewValue; - -/// Previous Google single sign-on policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGGoogleSsoPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Google single sign-on policy. -/// @param previousValue Previous Google single sign-on policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGGoogleSsoPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGGoogleSsoPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Google single sign-on policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGGoogleSsoPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GoogleSsoChangePolicyDetails` struct. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGoogleSsoChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGoogleSsoChangePolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGoogleSsoChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGoogleSsoChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGoogleSsoChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGGoogleSsoChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoChangePolicyType.h deleted file mode 100644 index f0a343e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGoogleSsoChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GoogleSsoChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GoogleSsoChangePolicyType` struct. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGoogleSsoChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGoogleSsoChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGoogleSsoChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGGoogleSsoChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGoogleSsoChangePolicyType` object. -/// -+ (DBTEAMLOGGoogleSsoChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoPolicy.h deleted file mode 100644 index df706d13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGoogleSsoPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGoogleSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GoogleSsoPolicy` union. -/// -/// Google SSO policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGoogleSsoPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGoogleSsoPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGGoogleSsoPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGoogleSsoPolicyTag) { - /// (no description). - DBTEAMLOGGoogleSsoPolicyDisabled, - - /// (no description). - DBTEAMLOGGoogleSsoPolicyEnabled, - - /// (no description). - DBTEAMLOGGoogleSsoPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGoogleSsoPolicy` union. -/// -@interface DBTEAMLOGGoogleSsoPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGoogleSsoPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGoogleSsoPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGoogleSsoPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGGoogleSsoPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGoogleSsoPolicy` object. -/// -+ (DBTEAMLOGGoogleSsoPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h deleted file mode 100644 index 57539b77..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFolderFailedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFolderFailedDetails` struct. -/// -/// Couldn't add a folder to a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Folder. -@property (nonatomic, readonly, copy) NSString *folder; - -/// Reason. -@property (nonatomic, readonly, copy, nullable) NSString *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param folder Folder. -/// @param policyType Policy type. -/// @param reason Reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - folder:(NSString *)folder - policyType:(nullable DBTEAMLOGPolicyType *)policyType - reason:(nullable NSString *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param folder Folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - folder:(NSString *)folder; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFolderFailedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFolderFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyAddFolderFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedType.h deleted file mode 100644 index ed28ac5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFolderFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFolderFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFolderFailedType` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFolderFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFolderFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFolderFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` object. -/// -+ (DBTEAMLOGGovernancePolicyAddFolderFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFoldersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFoldersDetails.h deleted file mode 100644 index d251ddab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFoldersDetails.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFoldersDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFoldersDetails` struct. -/// -/// Added folders to policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Folders. -@property (nonatomic, readonly, nullable) NSArray *folders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// @param folders Folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType - folders:(nullable NSArray *)folders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFoldersDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFoldersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyAddFoldersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFoldersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFoldersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyAddFoldersDetails` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyAddFoldersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFoldersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFoldersType.h deleted file mode 100644 index 3f6be36e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyAddFoldersType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFoldersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFoldersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFoldersType` struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFoldersType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyAddFoldersType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFoldersType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFoldersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyAddFoldersType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyAddFoldersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyContentDisposedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyContentDisposedDetails.h deleted file mode 100644 index 2a930989..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyContentDisposedDetails.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDispositionActionType; -@class DBTEAMLOGGovernancePolicyContentDisposedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyContentDisposedDetails` struct. -/// -/// Content disposed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Disposition type. -@property (nonatomic, readonly) DBTEAMLOGDispositionActionType *dispositionType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param dispositionType Disposition type. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - dispositionType:(DBTEAMLOGDispositionActionType *)dispositionType - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param dispositionType Disposition type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - dispositionType:(DBTEAMLOGDispositionActionType *)dispositionType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyContentDisposedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyContentDisposedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyContentDisposedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyContentDisposedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyContentDisposedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyContentDisposedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyContentDisposedType.h deleted file mode 100644 index 40182bd7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyContentDisposedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyContentDisposedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyContentDisposedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyContentDisposedType` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyContentDisposedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyContentDisposedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyContentDisposedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` object. -/// -+ (DBTEAMLOGGovernancePolicyContentDisposedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyCreateDetails.h deleted file mode 100644 index 5a3be813..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyCreateDetails.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGGovernancePolicyCreateDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyCreateDetails` struct. -/// -/// Activated a new policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Duration in days. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *duration; - -/// Folders. -@property (nonatomic, readonly, nullable) NSArray *folders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param duration Duration in days. -/// @param policyType Policy type. -/// @param folders Folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - duration:(DBTEAMLOGDurationLogInfo *)duration - policyType:(nullable DBTEAMLOGPolicyType *)policyType - folders:(nullable NSArray *)folders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param duration Duration in days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - duration:(DBTEAMLOGDurationLogInfo *)duration; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyCreateDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyCreateDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyCreateDetails` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyCreateType.h deleted file mode 100644 index 8f4a0ff6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyCreateType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyCreateType` struct. -/// -@interface DBTEAMLOGGovernancePolicyCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyCreateType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyDeleteDetails.h deleted file mode 100644 index 9f862f5b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyDeleteDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyDeleteDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyDeleteDetails` struct. -/// -/// Deleted a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyDeleteDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyDeleteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyDeleteDetails` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyDeleteType.h deleted file mode 100644 index f530db73..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyDeleteType` struct. -/// -@interface DBTEAMLOGGovernancePolicyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyDeleteType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDetailsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDetailsDetails.h deleted file mode 100644 index aec35512..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDetailsDetails.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyEditDetailsDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDetailsDetails` struct. -/// -/// Edited policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Attribute. -@property (nonatomic, readonly, copy) NSString *attribute; - -/// From. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// To. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param attribute Attribute. -/// @param previousValue From. -/// @param dNewValue To. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - attribute:(NSString *)attribute - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param attribute Attribute. -/// @param previousValue From. -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - attribute:(NSString *)attribute - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDetailsDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDetailsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDetailsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDetailsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyEditDetailsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDetailsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDetailsType.h deleted file mode 100644 index deceae50..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDetailsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyEditDetailsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDetailsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDetailsType` struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDetailsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDetailsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDetailsType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDetailsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyEditDetailsType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyEditDetailsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDurationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDurationDetails.h deleted file mode 100644 index 8c711e45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDurationDetails.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGGovernancePolicyEditDurationDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDurationDetails` struct. -/// -/// Changed policy duration. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *previousValue; - -/// To. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param previousValue From. -/// @param dNewValue To. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - previousValue:(DBTEAMLOGDurationLogInfo *)previousValue - dNewValue:(DBTEAMLOGDurationLogInfo *)dNewValue - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param previousValue From. -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - previousValue:(DBTEAMLOGDurationLogInfo *)previousValue - dNewValue:(DBTEAMLOGDurationLogInfo *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDurationDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDurationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDurationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDurationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyEditDurationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDurationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDurationType.h deleted file mode 100644 index 892d4e2c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyEditDurationType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyEditDurationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDurationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDurationType` struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDurationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDurationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDurationType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDurationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyEditDurationType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyEditDurationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportCreatedDetails.h deleted file mode 100644 index a4a078f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportCreatedDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportCreatedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportCreatedDetails` struct. -/// -/// Created a policy download. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportCreatedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportCreatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyExportCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportCreatedType.h deleted file mode 100644 index 4e4df6b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportCreatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportCreatedType` struct. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportCreatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportCreatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyExportCreatedType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyExportCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportRemovedDetails.h deleted file mode 100644 index dcdbac9d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportRemovedDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportRemovedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportRemovedDetails` struct. -/// -/// Removed a policy download. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportRemovedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportRemovedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyExportRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportRemovedType.h deleted file mode 100644 index afd3dcf0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyExportRemovedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportRemovedType` struct. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportRemovedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportRemovedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyExportRemovedType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyExportRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h deleted file mode 100644 index fe85b233..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h +++ /dev/null @@ -1,112 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyRemoveFoldersDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyRemoveFoldersDetails` struct. -/// -/// Removed folders from policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Folders. -@property (nonatomic, readonly, nullable) NSArray *folders; - -/// Reason. -@property (nonatomic, readonly, copy, nullable) NSString *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// @param folders Folders. -/// @param reason Reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType - folders:(nullable NSArray *)folders - reason:(nullable NSString *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyRemoveFoldersDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyRemoveFoldersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyRemoveFoldersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersType.h deleted file mode 100644 index fbe2da8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyRemoveFoldersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyRemoveFoldersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyRemoveFoldersType` struct. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyRemoveFoldersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyRemoveFoldersType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyRemoveFoldersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyRemoveFoldersType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyRemoveFoldersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyReportCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyReportCreatedDetails.h deleted file mode 100644 index c4171f79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyReportCreatedDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyReportCreatedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyReportCreatedDetails` struct. -/// -/// Created a summary report for a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyReportCreatedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyReportCreatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyReportCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyReportCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyReportCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyReportCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyReportCreatedType.h deleted file mode 100644 index fd31df23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyReportCreatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyReportCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyReportCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyReportCreatedType` struct. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyReportCreatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyReportCreatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyReportCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyReportCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyReportCreatedType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyReportCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h deleted file mode 100644 index 1a0b504e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyZipPartDownloadedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyZipPartDownloadedDetails` struct. -/// -/// Downloaded content from a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -/// Part. -@property (nonatomic, readonly, copy, nullable) NSString *part; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// @param policyType Policy type. -/// @param part Part. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName - policyType:(nullable DBTEAMLOGPolicyType *)policyType - part:(nullable NSString *)part; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyZipPartDownloadedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedType.h deleted file mode 100644 index 7d6b0045..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyZipPartDownloadedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyZipPartDownloadedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyZipPartDownloadedType` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyZipPartDownloadedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyZipPartDownloadedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyZipPartDownloadedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` object. -/// -+ (DBTEAMLOGGovernancePolicyZipPartDownloadedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddExternalIdDetails.h deleted file mode 100644 index 2e14f58b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddExternalIdDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddExternalIdDetails` struct. -/// -/// Added external ID for group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddExternalIdDetails` struct. -/// -@interface DBTEAMLOGGroupAddExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddExternalIdDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddExternalIdDetails` object. -/// -+ (DBTEAMLOGGroupAddExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddExternalIdType.h deleted file mode 100644 index 85fa1bc5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddExternalIdType` struct. -/// -@interface DBTEAMLOGGroupAddExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddExternalIdType` object. -/// -+ (DBTEAMLOGGroupAddExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddMemberDetails.h deleted file mode 100644 index 67337f2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddMemberDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddMemberDetails` struct. -/// -/// Added team members to group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Is group owner. -@property (nonatomic, readonly) NSNumber *isGroupOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isGroupOwner Is group owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGroupOwner:(NSNumber *)isGroupOwner; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddMemberDetails` struct. -/// -@interface DBTEAMLOGGroupAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddMemberDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddMemberDetails` object. -/// -+ (DBTEAMLOGGroupAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddMemberType.h deleted file mode 100644 index 1ca0108c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupAddMemberType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddMemberType` struct. -/// -@interface DBTEAMLOGGroupAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddMemberType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddMemberType` object. -/// -+ (DBTEAMLOGGroupAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeExternalIdDetails.h deleted file mode 100644 index f07fcb95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeExternalIdDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeExternalIdDetails` struct. -/// -/// Changed external ID for group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeExternalIdDetails` struct. -/// -@interface DBTEAMLOGGroupChangeExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGGroupChangeExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeExternalIdType.h deleted file mode 100644 index 2be08fb3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeExternalIdType` struct. -/// -@interface DBTEAMLOGGroupChangeExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeExternalIdType` object. -/// -+ (DBTEAMLOGGroupChangeExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeManagementTypeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeManagementTypeDetails.h deleted file mode 100644 index e6812274..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeManagementTypeDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMLOGGroupChangeManagementTypeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeManagementTypeDetails` struct. -/// -/// Changed group management type. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeManagementTypeDetails : NSObject - -#pragma mark - Instance fields - -/// New group management type. -@property (nonatomic, readonly) DBTEAMCOMMONGroupManagementType *dNewValue; - -/// Previous group management type. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONGroupManagementType *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New group management type. -/// @param previousValue Previous group management type. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMCOMMONGroupManagementType *)dNewValue - previousValue:(nullable DBTEAMCOMMONGroupManagementType *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New group management type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMCOMMONGroupManagementType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeManagementTypeDetails` struct. -/// -@interface DBTEAMLOGGroupChangeManagementTypeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeManagementTypeDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGroupChangeManagementTypeDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeManagementTypeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeManagementTypeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeManagementTypeDetails` -/// object. -/// -+ (DBTEAMLOGGroupChangeManagementTypeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeManagementTypeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeManagementTypeType.h deleted file mode 100644 index db201d15..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeManagementTypeType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeManagementTypeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeManagementTypeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeManagementTypeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeManagementTypeType` struct. -/// -@interface DBTEAMLOGGroupChangeManagementTypeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeManagementTypeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeManagementTypeType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeManagementTypeType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeManagementTypeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeManagementTypeType` -/// object. -/// -+ (DBTEAMLOGGroupChangeManagementTypeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeMemberRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeMemberRoleDetails.h deleted file mode 100644 index f03770da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeMemberRoleDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeMemberRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeMemberRoleDetails` struct. -/// -/// Changed manager permissions of group member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeMemberRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Is group owner. -@property (nonatomic, readonly) NSNumber *isGroupOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isGroupOwner Is group owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGroupOwner:(NSNumber *)isGroupOwner; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeMemberRoleDetails` struct. -/// -@interface DBTEAMLOGGroupChangeMemberRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeMemberRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeMemberRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeMemberRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeMemberRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeMemberRoleDetails` -/// object. -/// -+ (DBTEAMLOGGroupChangeMemberRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeMemberRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeMemberRoleType.h deleted file mode 100644 index b863d224..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupChangeMemberRoleType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeMemberRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeMemberRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeMemberRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeMemberRoleType` struct. -/// -@interface DBTEAMLOGGroupChangeMemberRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeMemberRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeMemberRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeMemberRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeMemberRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeMemberRoleType` object. -/// -+ (DBTEAMLOGGroupChangeMemberRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupCreateDetails.h deleted file mode 100644 index 8cc43687..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupCreateDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupCreateDetails; -@class DBTEAMLOGGroupJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateDetails` struct. -/// -/// Created group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Is company managed group. -@property (nonatomic, readonly, nullable) NSNumber *isCompanyManaged; - -/// Group join policy. -@property (nonatomic, readonly, nullable) DBTEAMLOGGroupJoinPolicy *joinPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isCompanyManaged Is company managed group. -/// @param joinPolicy Group join policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsCompanyManaged:(nullable NSNumber *)isCompanyManaged - joinPolicy:(nullable DBTEAMLOGGroupJoinPolicy *)joinPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupCreateDetails` struct. -/// -@interface DBTEAMLOGGroupCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupCreateDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupCreateDetails` object. -/// -+ (DBTEAMLOGGroupCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupCreateType.h deleted file mode 100644 index 11714304..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupCreateType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupCreateType` struct. -/// -@interface DBTEAMLOGGroupCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupCreateType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupCreateType` object. -/// -+ (DBTEAMLOGGroupCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDeleteDetails.h deleted file mode 100644 index a836d269..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDeleteDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDeleteDetails` struct. -/// -/// Deleted group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Is company managed group. -@property (nonatomic, readonly, nullable) NSNumber *isCompanyManaged; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isCompanyManaged Is company managed group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsCompanyManaged:(nullable NSNumber *)isCompanyManaged; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDeleteDetails` struct. -/// -@interface DBTEAMLOGGroupDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDeleteDetails` object. -/// -+ (DBTEAMLOGGroupDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDeleteType.h deleted file mode 100644 index dc0dfe20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDeleteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDeleteType` struct. -/// -@interface DBTEAMLOGGroupDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDeleteType` object. -/// -+ (DBTEAMLOGGroupDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDescriptionUpdatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDescriptionUpdatedDetails.h deleted file mode 100644 index 6785a21a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDescriptionUpdatedDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDescriptionUpdatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDescriptionUpdatedDetails` struct. -/// -/// Updated group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDescriptionUpdatedDetails` struct. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDescriptionUpdatedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDescriptionUpdatedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDescriptionUpdatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDescriptionUpdatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDescriptionUpdatedDetails` -/// object. -/// -+ (DBTEAMLOGGroupDescriptionUpdatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDescriptionUpdatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDescriptionUpdatedType.h deleted file mode 100644 index 23ee2b55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupDescriptionUpdatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDescriptionUpdatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDescriptionUpdatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDescriptionUpdatedType` struct. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDescriptionUpdatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDescriptionUpdatedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDescriptionUpdatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDescriptionUpdatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDescriptionUpdatedType` -/// object. -/// -+ (DBTEAMLOGGroupDescriptionUpdatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicy.h deleted file mode 100644 index 042e5508..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicy.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupJoinPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupJoinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGroupJoinPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGGroupJoinPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGroupJoinPolicyTag) { - /// (no description). - DBTEAMLOGGroupJoinPolicyOpen, - - /// (no description). - DBTEAMLOGGroupJoinPolicyRequestToJoin, - - /// (no description). - DBTEAMLOGGroupJoinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGroupJoinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "open". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpen; - -/// -/// Initializes union class with tag state of "request_to_join". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestToJoin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "open". -/// -/// @return Whether the union's current tag state has value "open". -/// -- (BOOL)isOpen; - -/// -/// Retrieves whether the union's current tag state has value "request_to_join". -/// -/// @return Whether the union's current tag state has value "request_to_join". -/// -- (BOOL)isRequestToJoin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGroupJoinPolicy` union. -/// -@interface DBTEAMLOGGroupJoinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupJoinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupJoinPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupJoinPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupJoinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupJoinPolicy` object. -/// -+ (DBTEAMLOGGroupJoinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicyUpdatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicyUpdatedDetails.h deleted file mode 100644 index 1a1ed5dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicyUpdatedDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupJoinPolicy; -@class DBTEAMLOGGroupJoinPolicyUpdatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupJoinPolicyUpdatedDetails` struct. -/// -/// Updated group join policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedDetails : NSObject - -#pragma mark - Instance fields - -/// Is company managed group. -@property (nonatomic, readonly, nullable) NSNumber *isCompanyManaged; - -/// Group join policy. -@property (nonatomic, readonly, nullable) DBTEAMLOGGroupJoinPolicy *joinPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isCompanyManaged Is company managed group. -/// @param joinPolicy Group join policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsCompanyManaged:(nullable NSNumber *)isCompanyManaged - joinPolicy:(nullable DBTEAMLOGGroupJoinPolicy *)joinPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupJoinPolicyUpdatedDetails` struct. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupJoinPolicyUpdatedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupJoinPolicyUpdatedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupJoinPolicyUpdatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupJoinPolicyUpdatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupJoinPolicyUpdatedDetails` -/// object. -/// -+ (DBTEAMLOGGroupJoinPolicyUpdatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicyUpdatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicyUpdatedType.h deleted file mode 100644 index f36d9098..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupJoinPolicyUpdatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupJoinPolicyUpdatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupJoinPolicyUpdatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupJoinPolicyUpdatedType` struct. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupJoinPolicyUpdatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupJoinPolicyUpdatedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupJoinPolicyUpdatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupJoinPolicyUpdatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupJoinPolicyUpdatedType` -/// object. -/// -+ (DBTEAMLOGGroupJoinPolicyUpdatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupLogInfo.h deleted file mode 100644 index 7380fcda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupLogInfo.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupLogInfo` struct. -/// -/// Group's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupLogInfo : NSObject - -#pragma mark - Instance fields - -/// The unique id of this group. -@property (nonatomic, readonly, copy, nullable) NSString *groupId; - -/// The name of this group. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// External group ID. -@property (nonatomic, readonly, copy, nullable) NSString *externalId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param displayName The name of this group. -/// @param groupId The unique id of this group. -/// @param externalId External group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisplayName:(NSString *)displayName - groupId:(nullable NSString *)groupId - externalId:(nullable NSString *)externalId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param displayName The name of this group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisplayName:(NSString *)displayName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupLogInfo` struct. -/// -@interface DBTEAMLOGGroupLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupLogInfo` object. -/// -+ (DBTEAMLOGGroupLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupMovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupMovedDetails.h deleted file mode 100644 index 2ea03738..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupMovedDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupMovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMovedDetails` struct. -/// -/// Moved group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupMovedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMovedDetails` struct. -/// -@interface DBTEAMLOGGroupMovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupMovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupMovedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupMovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupMovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupMovedDetails` object. -/// -+ (DBTEAMLOGGroupMovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupMovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupMovedType.h deleted file mode 100644 index c62d9d70..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupMovedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupMovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupMovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMovedType` struct. -/// -@interface DBTEAMLOGGroupMovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupMovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupMovedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupMovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupMovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupMovedType` object. -/// -+ (DBTEAMLOGGroupMovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveExternalIdDetails.h deleted file mode 100644 index f588f038..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveExternalIdDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveExternalIdDetails` struct. -/// -/// Removed external ID for group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveExternalIdDetails` struct. -/// -@interface DBTEAMLOGGroupRemoveExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGGroupRemoveExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveExternalIdType.h deleted file mode 100644 index bc5214ed..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveExternalIdType` struct. -/// -@interface DBTEAMLOGGroupRemoveExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveExternalIdType` object. -/// -+ (DBTEAMLOGGroupRemoveExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveMemberDetails.h deleted file mode 100644 index b5430810..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveMemberDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveMemberDetails` struct. -/// -/// Removed team members from group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGGroupRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveMemberDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveMemberDetails` object. -/// -+ (DBTEAMLOGGroupRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveMemberType.h deleted file mode 100644 index c5431f5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRemoveMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveMemberType` struct. -/// -@interface DBTEAMLOGGroupRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveMemberType` object. -/// -+ (DBTEAMLOGGroupRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRenameDetails.h deleted file mode 100644 index 2965dc03..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRenameDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRenameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRenameDetails` struct. -/// -/// Renamed group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Previous display name. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New display name. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous display name. -/// @param dNewValue New display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRenameDetails` struct. -/// -@interface DBTEAMLOGGroupRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRenameDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRenameDetails` object. -/// -+ (DBTEAMLOGGroupRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRenameType.h deleted file mode 100644 index 1bef8ceb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupRenameType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRenameType` struct. -/// -@interface DBTEAMLOGGroupRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRenameType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRenameType` object. -/// -+ (DBTEAMLOGGroupRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupUserManagementChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupUserManagementChangePolicyDetails.h deleted file mode 100644 index cf0578d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupUserManagementChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupUserManagementChangePolicyDetails; -@class DBTEAMPOLICIESGroupCreation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUserManagementChangePolicyDetails` struct. -/// -/// Changed who can create groups. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New group users management policy. -@property (nonatomic, readonly) DBTEAMPOLICIESGroupCreation *dNewValue; - -/// Previous group users management policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESGroupCreation *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New group users management policy. -/// @param previousValue Previous group users management policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESGroupCreation *)dNewValue - previousValue:(nullable DBTEAMPOLICIESGroupCreation *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New group users management policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESGroupCreation *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupUserManagementChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupUserManagementChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupUserManagementChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupUserManagementChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` object. -/// -+ (DBTEAMLOGGroupUserManagementChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupUserManagementChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupUserManagementChangePolicyType.h deleted file mode 100644 index 8f1e48d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGroupUserManagementChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupUserManagementChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUserManagementChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupUserManagementChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupUserManagementChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupUserManagementChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupUserManagementChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` object. -/// -+ (DBTEAMLOGGroupUserManagementChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminChangeStatusDetails.h deleted file mode 100644 index 0ae3550f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminChangeStatusDetails.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminChangeStatusDetails; -@class DBTEAMLOGTrustedTeamsRequestAction; -@class DBTEAMLOGTrustedTeamsRequestState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminChangeStatusDetails` struct. -/// -/// Changed guest team admin status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// True for guest, false for host. -@property (nonatomic, readonly) NSNumber *isGuest; - -/// The name of the guest team. -@property (nonatomic, readonly, copy, nullable) NSString *guestTeamName; - -/// The name of the host team. -@property (nonatomic, readonly, copy, nullable) NSString *hostTeamName; - -/// Previous request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *previousValue; - -/// New request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *dNewValue; - -/// Action details. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestAction *actionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isGuest True for guest, false for host. -/// @param previousValue Previous request state. -/// @param dNewValue New request state. -/// @param actionDetails Action details. -/// @param guestTeamName The name of the guest team. -/// @param hostTeamName The name of the host team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGuest:(NSNumber *)isGuest - previousValue:(DBTEAMLOGTrustedTeamsRequestState *)previousValue - dNewValue:(DBTEAMLOGTrustedTeamsRequestState *)dNewValue - actionDetails:(DBTEAMLOGTrustedTeamsRequestAction *)actionDetails - guestTeamName:(nullable NSString *)guestTeamName - hostTeamName:(nullable NSString *)hostTeamName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param isGuest True for guest, false for host. -/// @param previousValue Previous request state. -/// @param dNewValue New request state. -/// @param actionDetails Action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGuest:(NSNumber *)isGuest - previousValue:(DBTEAMLOGTrustedTeamsRequestState *)previousValue - dNewValue:(DBTEAMLOGTrustedTeamsRequestState *)dNewValue - actionDetails:(DBTEAMLOGTrustedTeamsRequestAction *)actionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminChangeStatusDetails` struct. -/// -@interface DBTEAMLOGGuestAdminChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGuestAdminChangeStatusDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGuestAdminChangeStatusDetails` -/// object. -/// -+ (DBTEAMLOGGuestAdminChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminChangeStatusType.h deleted file mode 100644 index 180a2706..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminChangeStatusType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminChangeStatusType` struct. -/// -@interface DBTEAMLOGGuestAdminChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGuestAdminChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGuestAdminChangeStatusType` -/// object. -/// -+ (DBTEAMLOGGuestAdminChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h deleted file mode 100644 index 5cbeef0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedInViaTrustedTeamsDetails` struct. -/// -/// Started trusted team admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails : NSObject - -#pragma mark - Instance fields - -/// Host team name. -@property (nonatomic, readonly, copy, nullable) NSString *teamName; - -/// Trusted team name. -@property (nonatomic, readonly, copy, nullable) NSString *trustedTeamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName Host team name. -/// @param trustedTeamName Trusted team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(nullable NSString *)teamName trustedTeamName:(nullable NSString *)trustedTeamName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedInViaTrustedTeamsDetails` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` object. -/// -+ (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h deleted file mode 100644 index fdb2ef80..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedInViaTrustedTeamsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedInViaTrustedTeamsType` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` object. -/// -+ (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h deleted file mode 100644 index fa379ae1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedOutViaTrustedTeamsDetails` struct. -/// -/// Ended trusted team admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails : NSObject - -#pragma mark - Instance fields - -/// Host team name. -@property (nonatomic, readonly, copy, nullable) NSString *teamName; - -/// Trusted team name. -@property (nonatomic, readonly, copy, nullable) NSString *trustedTeamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName Host team name. -/// @param trustedTeamName Trusted team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(nullable NSString *)teamName trustedTeamName:(nullable NSString *)trustedTeamName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedOutViaTrustedTeamsDetails` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` object. -/// -+ (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h deleted file mode 100644 index 8560a890..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedOutViaTrustedTeamsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedOutViaTrustedTeamsType` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` object. -/// -+ (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIdentifierType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIdentifierType.h deleted file mode 100644 index 14a73a6d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIdentifierType.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIdentifierType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IdentifierType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIdentifierType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGIdentifierTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGIdentifierType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGIdentifierTypeTag) { - /// (no description). - DBTEAMLOGIdentifierTypeEmail, - - /// (no description). - DBTEAMLOGIdentifierTypeFacebookProfileName, - - /// (no description). - DBTEAMLOGIdentifierTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGIdentifierTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail; - -/// -/// Initializes union class with tag state of "facebook_profile_name". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFacebookProfileName; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "facebook_profile_name". -/// -/// @return Whether the union's current tag state has value -/// "facebook_profile_name". -/// -- (BOOL)isFacebookProfileName; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGIdentifierType` union. -/// -@interface DBTEAMLOGIdentifierTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIdentifierType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIdentifierType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIdentifierType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIdentifierType *)instance; - -/// -/// Deserializes `DBTEAMLOGIdentifierType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIdentifierType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIdentifierType` object. -/// -+ (DBTEAMLOGIdentifierType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationConnectedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationConnectedDetails.h deleted file mode 100644 index 980a307f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationConnectedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationConnectedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationConnectedDetails` struct. -/// -/// Connected integration for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationConnectedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the third-party integration. -@property (nonatomic, readonly, copy) NSString *integrationName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param integrationName Name of the third-party integration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationName:(NSString *)integrationName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationConnectedDetails` struct. -/// -@interface DBTEAMLOGIntegrationConnectedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationConnectedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationConnectedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationConnectedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationConnectedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationConnectedDetails` -/// object. -/// -+ (DBTEAMLOGIntegrationConnectedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationConnectedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationConnectedType.h deleted file mode 100644 index 185db920..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationConnectedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationConnectedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationConnectedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationConnectedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationConnectedType` struct. -/// -@interface DBTEAMLOGIntegrationConnectedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationConnectedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationConnectedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationConnectedType *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationConnectedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationConnectedType` object. -/// -+ (DBTEAMLOGIntegrationConnectedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationDisconnectedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationDisconnectedDetails.h deleted file mode 100644 index 214dd162..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationDisconnectedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationDisconnectedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationDisconnectedDetails` struct. -/// -/// Disconnected integration for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationDisconnectedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the third-party integration. -@property (nonatomic, readonly, copy) NSString *integrationName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param integrationName Name of the third-party integration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationName:(NSString *)integrationName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationDisconnectedDetails` struct. -/// -@interface DBTEAMLOGIntegrationDisconnectedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationDisconnectedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationDisconnectedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationDisconnectedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationDisconnectedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationDisconnectedDetails` -/// object. -/// -+ (DBTEAMLOGIntegrationDisconnectedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationDisconnectedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationDisconnectedType.h deleted file mode 100644 index af7c99b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationDisconnectedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationDisconnectedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationDisconnectedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationDisconnectedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationDisconnectedType` struct. -/// -@interface DBTEAMLOGIntegrationDisconnectedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationDisconnectedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationDisconnectedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationDisconnectedType *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationDisconnectedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationDisconnectedType` -/// object. -/// -+ (DBTEAMLOGIntegrationDisconnectedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicy.h deleted file mode 100644 index 11c6a35c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationPolicy` union. -/// -/// Policy for controlling whether a service integration is enabled for the -/// team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGIntegrationPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGIntegrationPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGIntegrationPolicyTag) { - /// (no description). - DBTEAMLOGIntegrationPolicyDisabled, - - /// (no description). - DBTEAMLOGIntegrationPolicyEnabled, - - /// (no description). - DBTEAMLOGIntegrationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGIntegrationPolicy` union. -/// -@interface DBTEAMLOGIntegrationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationPolicy` object. -/// -+ (DBTEAMLOGIntegrationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicyChangedDetails.h deleted file mode 100644 index 1efc05d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicyChangedDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationPolicy; -@class DBTEAMLOGIntegrationPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationPolicyChangedDetails` struct. -/// -/// Changed integration policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the third-party integration. -@property (nonatomic, readonly, copy) NSString *integrationName; - -/// New integration policy. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicy *dNewValue; - -/// Previous integration policy. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param integrationName Name of the third-party integration. -/// @param dNewValue New integration policy. -/// @param previousValue Previous integration policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationName:(NSString *)integrationName - dNewValue:(DBTEAMLOGIntegrationPolicy *)dNewValue - previousValue:(DBTEAMLOGIntegrationPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGIntegrationPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGIntegrationPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGIntegrationPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicyChangedType.h deleted file mode 100644 index 3a3c59e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGIntegrationPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationPolicyChangedType` struct. -/// -@interface DBTEAMLOGIntegrationPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGIntegrationPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicy.h deleted file mode 100644 index 066a8534..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteAcceptanceEmailPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteAcceptanceEmailPolicy` union. -/// -/// Policy for deciding whether team admins receive email when an invitation to -/// join the team is accepted -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGInviteAcceptanceEmailPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGInviteAcceptanceEmailPolicyTag) { - /// (no description). - DBTEAMLOGInviteAcceptanceEmailPolicyDisabled, - - /// (no description). - DBTEAMLOGInviteAcceptanceEmailPolicyEnabled, - - /// (no description). - DBTEAMLOGInviteAcceptanceEmailPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// union. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteAcceptanceEmailPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteAcceptanceEmailPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteAcceptanceEmailPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// object. -/// -+ (DBTEAMLOGInviteAcceptanceEmailPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h deleted file mode 100644 index cd32f814..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteAcceptanceEmailPolicy; -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteAcceptanceEmailPolicyChangedDetails` struct. -/// -/// Changed invite accept email policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGInviteAcceptanceEmailPolicy *)dNewValue - previousValue:(DBTEAMLOGInviteAcceptanceEmailPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteAcceptanceEmailPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` object. -/// -+ (DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h deleted file mode 100644 index 1079fb57..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteAcceptanceEmailPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteAcceptanceEmailPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` object. -/// -+ (DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteMethod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteMethod.h deleted file mode 100644 index 46c20d81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGInviteMethod.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteMethod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteMethod : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGInviteMethodTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGInviteMethod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGInviteMethodTag) { - /// (no description). - DBTEAMLOGInviteMethodAutoApprove, - - /// (no description). - DBTEAMLOGInviteMethodInviteLink, - - /// (no description). - DBTEAMLOGInviteMethodMemberInvite, - - /// (no description). - DBTEAMLOGInviteMethodMovedFromAnotherTeam, - - /// (no description). - DBTEAMLOGInviteMethodOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGInviteMethodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "auto_approve". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutoApprove; - -/// -/// Initializes union class with tag state of "invite_link". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteLink; - -/// -/// Initializes union class with tag state of "member_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInvite; - -/// -/// Initializes union class with tag state of "moved_from_another_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMovedFromAnotherTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "auto_approve". -/// -/// @return Whether the union's current tag state has value "auto_approve". -/// -- (BOOL)isAutoApprove; - -/// -/// Retrieves whether the union's current tag state has value "invite_link". -/// -/// @return Whether the union's current tag state has value "invite_link". -/// -- (BOOL)isInviteLink; - -/// -/// Retrieves whether the union's current tag state has value "member_invite". -/// -/// @return Whether the union's current tag state has value "member_invite". -/// -- (BOOL)isMemberInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "moved_from_another_team". -/// -/// @return Whether the union's current tag state has value -/// "moved_from_another_team". -/// -- (BOOL)isMovedFromAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGInviteMethod` union. -/// -@interface DBTEAMLOGInviteMethodSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteMethod` instances. -/// -/// @param instance An instance of the `DBTEAMLOGInviteMethod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteMethod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteMethod *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteMethod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteMethod` API object. -/// -/// @return An instantiation of the `DBTEAMLOGInviteMethod` object. -/// -+ (DBTEAMLOGInviteMethod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGJoinTeamDetails.h deleted file mode 100644 index 20713114..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGJoinTeamDetails.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLogInfo; -@class DBTEAMLOGJoinTeamDetails; -@class DBTEAMLOGLinkedDeviceLogInfo; -@class DBTEAMLOGUserLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `JoinTeamDetails` struct. -/// -/// Additional information relevant when a new member joins the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Linked applications. (Deprecated) Please use has_linked_apps boolean field -/// instead. -@property (nonatomic, readonly) NSArray *linkedApps; - -/// Linked devices. (Deprecated) Please use has_linked_devices boolean field -/// instead. -@property (nonatomic, readonly) NSArray *linkedDevices; - -/// Linked shared folders. (Deprecated) Please use has_linked_shared_folders -/// boolean field instead. -@property (nonatomic, readonly) NSArray *linkedSharedFolders; - -/// (Deprecated) True if the linked_apps list was truncated to the maximum -/// supported length (50). -@property (nonatomic, readonly, nullable) NSNumber *wasLinkedAppsTruncated; - -/// (Deprecated) True if the linked_devices list was truncated to the maximum -/// supported length (50). -@property (nonatomic, readonly, nullable) NSNumber *wasLinkedDevicesTruncated; - -/// (Deprecated) True if the linked_shared_folders list was truncated to the -/// maximum supported length (50). -@property (nonatomic, readonly, nullable) NSNumber *wasLinkedSharedFoldersTruncated; - -/// True if the user had linked apps at event time. -@property (nonatomic, readonly, nullable) NSNumber *hasLinkedApps; - -/// True if the user had linked apps at event time. -@property (nonatomic, readonly, nullable) NSNumber *hasLinkedDevices; - -/// True if the user had linked shared folders at event time. -@property (nonatomic, readonly, nullable) NSNumber *hasLinkedSharedFolders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkedApps Linked applications. (Deprecated) Please use -/// has_linked_apps boolean field instead. -/// @param linkedDevices Linked devices. (Deprecated) Please use -/// has_linked_devices boolean field instead. -/// @param linkedSharedFolders Linked shared folders. (Deprecated) Please use -/// has_linked_shared_folders boolean field instead. -/// @param wasLinkedAppsTruncated (Deprecated) True if the linked_apps list was -/// truncated to the maximum supported length (50). -/// @param wasLinkedDevicesTruncated (Deprecated) True if the linked_devices -/// list was truncated to the maximum supported length (50). -/// @param wasLinkedSharedFoldersTruncated (Deprecated) True if the -/// linked_shared_folders list was truncated to the maximum supported length -/// (50). -/// @param hasLinkedApps True if the user had linked apps at event time. -/// @param hasLinkedDevices True if the user had linked apps at event time. -/// @param hasLinkedSharedFolders True if the user had linked shared folders at -/// event time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkedApps:(NSArray *)linkedApps - linkedDevices:(NSArray *)linkedDevices - linkedSharedFolders:(NSArray *)linkedSharedFolders - wasLinkedAppsTruncated:(nullable NSNumber *)wasLinkedAppsTruncated - wasLinkedDevicesTruncated:(nullable NSNumber *)wasLinkedDevicesTruncated - wasLinkedSharedFoldersTruncated:(nullable NSNumber *)wasLinkedSharedFoldersTruncated - hasLinkedApps:(nullable NSNumber *)hasLinkedApps - hasLinkedDevices:(nullable NSNumber *)hasLinkedDevices - hasLinkedSharedFolders:(nullable NSNumber *)hasLinkedSharedFolders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param linkedApps Linked applications. (Deprecated) Please use -/// has_linked_apps boolean field instead. -/// @param linkedDevices Linked devices. (Deprecated) Please use -/// has_linked_devices boolean field instead. -/// @param linkedSharedFolders Linked shared folders. (Deprecated) Please use -/// has_linked_shared_folders boolean field instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkedApps:(NSArray *)linkedApps - linkedDevices:(NSArray *)linkedDevices - linkedSharedFolders:(NSArray *)linkedSharedFolders; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `JoinTeamDetails` struct. -/// -@interface DBTEAMLOGJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGJoinTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGJoinTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGJoinTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGJoinTeamDetails` object. -/// -+ (DBTEAMLOGJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLabelType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLabelType.h deleted file mode 100644 index db75537f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLabelType.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LabelType` union. -/// -/// Label type -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLabelType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLabelTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGLabelType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLabelTypeTag) { - /// (no description). - DBTEAMLOGLabelTypePersonalInformation, - - /// (no description). - DBTEAMLOGLabelTypeTestOnly, - - /// (no description). - DBTEAMLOGLabelTypeUserDefinedTag, - - /// (no description). - DBTEAMLOGLabelTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLabelTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "personal_information". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersonalInformation; - -/// -/// Initializes union class with tag state of "test_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTestOnly; - -/// -/// Initializes union class with tag state of "user_defined_tag". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDefinedTag; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "personal_information". -/// -/// @return Whether the union's current tag state has value -/// "personal_information". -/// -- (BOOL)isPersonalInformation; - -/// -/// Retrieves whether the union's current tag state has value "test_only". -/// -/// @return Whether the union's current tag state has value "test_only". -/// -- (BOOL)isTestOnly; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_defined_tag". -/// -/// @return Whether the union's current tag state has value "user_defined_tag". -/// -- (BOOL)isUserDefinedTag; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLabelType` union. -/// -@interface DBTEAMLOGLabelTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLabelType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLabelType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLabelType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLabelType *)instance; - -/// -/// Deserializes `DBTEAMLOGLabelType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLabelType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLabelType` object. -/// -+ (DBTEAMLOGLabelType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegacyDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegacyDeviceSessionLogInfo.h deleted file mode 100644 index b2932482..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegacyDeviceSessionLogInfo.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMLOGLegacyDeviceSessionLogInfo; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegacyDeviceSessionLogInfo` struct. -/// -/// Information on sessions, in legacy format -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegacyDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// Is device managed by emm. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged; - -/// Information on the hosting platform. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *platform; - -/// The mac address of the last activity from this session. Might be missing due -/// to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *macAddress; - -/// The hosting OS version. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *osVersion; - -/// Information on the hosting device type. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, copy, nullable) NSString *deviceType; - -/// The Dropbox client version. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// Alternative unique device session id, instead of session id field. Might be -/// missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *legacyUniqId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// @param isEmmManaged Is device managed by emm. Might be missing due to -/// historical data gap. -/// @param platform Information on the hosting platform. Might be missing due to -/// historical data gap. -/// @param macAddress The mac address of the last activity from this session. -/// Might be missing due to historical data gap. -/// @param osVersion The hosting OS version. Might be missing due to historical -/// data gap. -/// @param deviceType Information on the hosting device type. Might be missing -/// due to historical data gap. -/// @param clientVersion The Dropbox client version. Might be missing due to -/// historical data gap. -/// @param legacyUniqId Alternative unique device session id, instead of session -/// id field. Might be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName - isEmmManaged:(nullable NSNumber *)isEmmManaged - platform:(nullable NSString *)platform - macAddress:(nullable NSString *)macAddress - osVersion:(nullable NSString *)osVersion - deviceType:(nullable NSString *)deviceType - clientVersion:(nullable NSString *)clientVersion - legacyUniqId:(nullable NSString *)legacyUniqId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegacyDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGLegacyDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegacyDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegacyDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegacyDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegacyDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGLegacyDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegacyDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegacyDeviceSessionLogInfo` -/// object. -/// -+ (DBTEAMLOGLegacyDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsActivateAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsActivateAHoldDetails.h deleted file mode 100644 index 48652aab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsActivateAHoldDetails.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsActivateAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsActivateAHoldDetails` struct. -/// -/// Activated a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Hold start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Hold end date. -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param startDate Hold start date. -/// @param endDate Hold end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - startDate:(NSDate *)startDate - endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param startDate Hold start date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name startDate:(NSDate *)startDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsActivateAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsActivateAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsActivateAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsActivateAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsActivateAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsActivateAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsActivateAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsActivateAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsActivateAHoldType.h deleted file mode 100644 index f662fac8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsActivateAHoldType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsActivateAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsActivateAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsActivateAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsActivateAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsActivateAHoldType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsActivateAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsActivateAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsActivateAHoldType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsActivateAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsAddMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsAddMembersDetails.h deleted file mode 100644 index 862414c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsAddMembersDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsAddMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsAddMembersDetails` struct. -/// -/// Added members to a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsAddMembersDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsAddMembersDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsAddMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsAddMembersDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsAddMembersDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsAddMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsAddMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsAddMembersDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsAddMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsAddMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsAddMembersType.h deleted file mode 100644 index 60043106..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsAddMembersType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsAddMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsAddMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsAddMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsAddMembersType` struct. -/// -@interface DBTEAMLOGLegalHoldsAddMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsAddMembersType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsAddMembersType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsAddMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsAddMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsAddMembersType` object. -/// -+ (DBTEAMLOGLegalHoldsAddMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h deleted file mode 100644 index 5b9338d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldDetailsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldDetailsDetails` struct. -/// -/// Edited details for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Previous details. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New details. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param previousValue Previous details. -/// @param dNewValue New details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldDetailsDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsType.h deleted file mode 100644 index c2d7d4ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldDetailsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldDetailsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldDetailsType` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldDetailsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldDetailsType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldDetailsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsChangeHoldDetailsType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldDetailsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldNameDetails.h deleted file mode 100644 index 86142fd1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldNameDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldNameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldNameDetails` struct. -/// -/// Renamed a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Previous Name. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New Name. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param previousValue Previous Name. -/// @param dNewValue New Name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldNameDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldNameDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsChangeHoldNameDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldNameType.h deleted file mode 100644 index f2748fa9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsChangeHoldNameType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldNameType` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsChangeHoldNameType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsChangeHoldNameType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportAHoldDetails.h deleted file mode 100644 index a46b13f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportAHoldDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportAHoldDetails` struct. -/// -/// Exported hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy, nullable) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - exportName:(nullable NSString *)exportName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportAHoldType.h deleted file mode 100644 index c427ccd6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportAHoldType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportAHoldType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportAHoldType` object. -/// -+ (DBTEAMLOGLegalHoldsExportAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportCancelledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportCancelledDetails.h deleted file mode 100644 index d7552fd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportCancelledDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportCancelledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportCancelledDetails` struct. -/// -/// Canceled export for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportCancelledDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportCancelledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsExportCancelledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportCancelledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportCancelledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportCancelledDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportCancelledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportCancelledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportCancelledType.h deleted file mode 100644 index 69207642..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportCancelledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportCancelledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportCancelledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportCancelledType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportCancelledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportCancelledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportCancelledType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportCancelledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportCancelledType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportCancelledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportDownloadedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportDownloadedDetails.h deleted file mode 100644 index 05bf8b02..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportDownloadedDetails.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportDownloadedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportDownloadedDetails` struct. -/// -/// Downloaded export for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -/// Part. -@property (nonatomic, readonly, copy, nullable) NSString *part; - -/// Filename. -@property (nonatomic, readonly, copy, nullable) NSString *fileName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// @param part Part. -/// @param fileName Filename. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - exportName:(NSString *)exportName - part:(nullable NSString *)part - fileName:(nullable NSString *)fileName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportDownloadedDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportDownloadedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsExportDownloadedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportDownloadedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportDownloadedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportDownloadedDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportDownloadedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportDownloadedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportDownloadedType.h deleted file mode 100644 index c9fbc323..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportDownloadedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportDownloadedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportDownloadedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportDownloadedType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportDownloadedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportDownloadedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportDownloadedType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportDownloadedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportDownloadedType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportDownloadedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportRemovedDetails.h deleted file mode 100644 index 6e255f31..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportRemovedDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportRemovedDetails` struct. -/// -/// Removed export for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportRemovedDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportRemovedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportRemovedDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportRemovedType.h deleted file mode 100644 index 15297b15..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsExportRemovedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportRemovedType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportRemovedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportRemovedType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReleaseAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReleaseAHoldDetails.h deleted file mode 100644 index f2bf4b86..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReleaseAHoldDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReleaseAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReleaseAHoldDetails` struct. -/// -/// Released a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReleaseAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReleaseAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReleaseAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReleaseAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReleaseAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReleaseAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsReleaseAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReleaseAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReleaseAHoldType.h deleted file mode 100644 index fb236904..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReleaseAHoldType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReleaseAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReleaseAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReleaseAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReleaseAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReleaseAHoldType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReleaseAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReleaseAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReleaseAHoldType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsReleaseAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsRemoveMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsRemoveMembersDetails.h deleted file mode 100644 index 030c6073..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsRemoveMembersDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsRemoveMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsRemoveMembersDetails` struct. -/// -/// Removed members from a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsRemoveMembersDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsRemoveMembersDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsRemoveMembersDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsRemoveMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsRemoveMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsRemoveMembersDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsRemoveMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsRemoveMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsRemoveMembersType.h deleted file mode 100644 index 1ce84084..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsRemoveMembersType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsRemoveMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsRemoveMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsRemoveMembersType` struct. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsRemoveMembersType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsRemoveMembersType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsRemoveMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsRemoveMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsRemoveMembersType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsRemoveMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReportAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReportAHoldDetails.h deleted file mode 100644 index efb65246..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReportAHoldDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReportAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReportAHoldDetails` struct. -/// -/// Created a summary report for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReportAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReportAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReportAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReportAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReportAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReportAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsReportAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReportAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReportAHoldType.h deleted file mode 100644 index f88b4b16..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLegalHoldsReportAHoldType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReportAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReportAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReportAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReportAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReportAHoldType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReportAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReportAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReportAHoldType` object. -/// -+ (DBTEAMLOGLegalHoldsReportAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLinkedDeviceLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLinkedDeviceLogInfo.h deleted file mode 100644 index fd024bf9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLinkedDeviceLogInfo.h +++ /dev/null @@ -1,234 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGLegacyDeviceSessionLogInfo; -@class DBTEAMLOGLinkedDeviceLogInfo; -@class DBTEAMLOGMobileDeviceSessionLogInfo; -@class DBTEAMLOGWebDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkedDeviceLogInfo` union. -/// -/// The device sessions that user is linked to. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLinkedDeviceLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLinkedDeviceLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGLinkedDeviceLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLinkedDeviceLogInfoTag) { - /// desktop device session's details. - DBTEAMLOGLinkedDeviceLogInfoDesktopDeviceSession, - - /// legacy device session's details. - DBTEAMLOGLinkedDeviceLogInfoLegacyDeviceSession, - - /// mobile device session's details. - DBTEAMLOGLinkedDeviceLogInfoMobileDeviceSession, - - /// web device session's details. - DBTEAMLOGLinkedDeviceLogInfoWebDeviceSession, - - /// (no description). - DBTEAMLOGLinkedDeviceLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLinkedDeviceLogInfoTag tag; - -/// desktop device session's details. @note Ensure the `isDesktopDeviceSession` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSession; - -/// legacy device session's details. @note Ensure the `isLegacyDeviceSession` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegacyDeviceSessionLogInfo *legacyDeviceSession; - -/// mobile device session's details. @note Ensure the `isMobileDeviceSession` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMobileDeviceSessionLogInfo *mobileDeviceSession; - -/// web device session's details. @note Ensure the `isWebDeviceSession` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebDeviceSessionLogInfo *webDeviceSession; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "desktop_device_session". -/// -/// Description of the "desktop_device_session" tag state: desktop device -/// session's details. -/// -/// @param desktopDeviceSession desktop device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSession:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSession; - -/// -/// Initializes union class with tag state of "legacy_device_session". -/// -/// Description of the "legacy_device_session" tag state: legacy device -/// session's details. -/// -/// @param legacyDeviceSession legacy device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegacyDeviceSession:(DBTEAMLOGLegacyDeviceSessionLogInfo *)legacyDeviceSession; - -/// -/// Initializes union class with tag state of "mobile_device_session". -/// -/// Description of the "mobile_device_session" tag state: mobile device -/// session's details. -/// -/// @param mobileDeviceSession mobile device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileDeviceSession:(DBTEAMLOGMobileDeviceSessionLogInfo *)mobileDeviceSession; - -/// -/// Initializes union class with tag state of "web_device_session". -/// -/// Description of the "web_device_session" tag state: web device session's -/// details. -/// -/// @param webDeviceSession web device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebDeviceSession:(DBTEAMLOGWebDeviceSessionLogInfo *)webDeviceSession; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "desktop_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `desktopDeviceSession` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "desktop_device_session". -/// -- (BOOL)isDesktopDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "legacy_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legacyDeviceSession` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legacy_device_session". -/// -- (BOOL)isLegacyDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "mobile_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `mobileDeviceSession` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "mobile_device_session". -/// -- (BOOL)isMobileDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webDeviceSession` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_device_session". -/// -- (BOOL)isWebDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLinkedDeviceLogInfo` union. -/// -@interface DBTEAMLOGLinkedDeviceLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLinkedDeviceLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLinkedDeviceLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLinkedDeviceLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLinkedDeviceLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGLinkedDeviceLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLinkedDeviceLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLinkedDeviceLogInfo` object. -/// -+ (DBTEAMLOGLinkedDeviceLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLockStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLockStatus.h deleted file mode 100644 index 0ec0b2f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLockStatus.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLockStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockStatus` union. -/// -/// File lock status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLockStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLockStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGLockStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLockStatusTag) { - /// (no description). - DBTEAMLOGLockStatusLocked, - - /// (no description). - DBTEAMLOGLockStatusUnlocked, - - /// (no description). - DBTEAMLOGLockStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLockStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "locked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocked; - -/// -/// Initializes union class with tag state of "unlocked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlocked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "locked". -/// -/// @return Whether the union's current tag state has value "locked". -/// -- (BOOL)isLocked; - -/// -/// Retrieves whether the union's current tag state has value "unlocked". -/// -/// @return Whether the union's current tag state has value "unlocked". -/// -- (BOOL)isUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLockStatus` union. -/// -@interface DBTEAMLOGLockStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLockStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLockStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLockStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLockStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGLockStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLockStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLockStatus` object. -/// -+ (DBTEAMLOGLockStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginFailDetails.h deleted file mode 100644 index a67b2b62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginFailDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFailureDetailsLogInfo; -@class DBTEAMLOGLoginFailDetails; -@class DBTEAMLOGLoginMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginFailDetails` struct. -/// -/// Failed to sign in. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginFailDetails : NSObject - -#pragma mark - Instance fields - -/// Tells if the login device is EMM managed. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged; - -/// Login method. -@property (nonatomic, readonly) DBTEAMLOGLoginMethod *loginMethod; - -/// Error details. -@property (nonatomic, readonly) DBTEAMLOGFailureDetailsLogInfo *errorDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param loginMethod Login method. -/// @param errorDetails Error details. -/// @param isEmmManaged Tells if the login device is EMM managed. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod - errorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails - isEmmManaged:(nullable NSNumber *)isEmmManaged; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param loginMethod Login method. -/// @param errorDetails Error details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod - errorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginFailDetails` struct. -/// -@interface DBTEAMLOGLoginFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginFailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginFailDetails` object. -/// -+ (DBTEAMLOGLoginFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginFailType.h deleted file mode 100644 index 2f5ef3da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginFailType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginFailType` struct. -/// -@interface DBTEAMLOGLoginFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginFailType` object. -/// -+ (DBTEAMLOGLoginFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginMethod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginMethod.h deleted file mode 100644 index dafbb545..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginMethod.h +++ /dev/null @@ -1,254 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginMethod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginMethod : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLoginMethodTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGLoginMethod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLoginMethodTag) { - /// (no description). - DBTEAMLOGLoginMethodAppleOauth, - - /// (no description). - DBTEAMLOGLoginMethodFirstPartyTokenExchange, - - /// (no description). - DBTEAMLOGLoginMethodGoogleOauth, - - /// (no description). - DBTEAMLOGLoginMethodLenovoOauth, - - /// (no description). - DBTEAMLOGLoginMethodPassword, - - /// (no description). - DBTEAMLOGLoginMethodQrCode, - - /// (no description). - DBTEAMLOGLoginMethodSaml, - - /// (no description). - DBTEAMLOGLoginMethodTwoFactorAuthentication, - - /// (no description). - DBTEAMLOGLoginMethodWebSession, - - /// (no description). - DBTEAMLOGLoginMethodOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLoginMethodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "apple_oauth". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppleOauth; - -/// -/// Initializes union class with tag state of "first_party_token_exchange". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFirstPartyTokenExchange; - -/// -/// Initializes union class with tag state of "google_oauth". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleOauth; - -/// -/// Initializes union class with tag state of "lenovo_oauth". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLenovoOauth; - -/// -/// Initializes union class with tag state of "password". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "qr_code". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQrCode; - -/// -/// Initializes union class with tag state of "saml". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSaml; - -/// -/// Initializes union class with tag state of "two_factor_authentication". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoFactorAuthentication; - -/// -/// Initializes union class with tag state of "web_session". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSession; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "apple_oauth". -/// -/// @return Whether the union's current tag state has value "apple_oauth". -/// -- (BOOL)isAppleOauth; - -/// -/// Retrieves whether the union's current tag state has value -/// "first_party_token_exchange". -/// -/// @return Whether the union's current tag state has value -/// "first_party_token_exchange". -/// -- (BOOL)isFirstPartyTokenExchange; - -/// -/// Retrieves whether the union's current tag state has value "google_oauth". -/// -/// @return Whether the union's current tag state has value "google_oauth". -/// -- (BOOL)isGoogleOauth; - -/// -/// Retrieves whether the union's current tag state has value "lenovo_oauth". -/// -/// @return Whether the union's current tag state has value "lenovo_oauth". -/// -- (BOOL)isLenovoOauth; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value "qr_code". -/// -/// @return Whether the union's current tag state has value "qr_code". -/// -- (BOOL)isQrCode; - -/// -/// Retrieves whether the union's current tag state has value "saml". -/// -/// @return Whether the union's current tag state has value "saml". -/// -- (BOOL)isSaml; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_factor_authentication". -/// -/// @return Whether the union's current tag state has value -/// "two_factor_authentication". -/// -- (BOOL)isTwoFactorAuthentication; - -/// -/// Retrieves whether the union's current tag state has value "web_session". -/// -/// @return Whether the union's current tag state has value "web_session". -/// -- (BOOL)isWebSession; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLoginMethod` union. -/// -@interface DBTEAMLOGLoginMethodSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginMethod` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginMethod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginMethod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginMethod *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginMethod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginMethod` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginMethod` object. -/// -+ (DBTEAMLOGLoginMethod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginSuccessDetails.h deleted file mode 100644 index 4cc0b5df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginSuccessDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginMethod; -@class DBTEAMLOGLoginSuccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginSuccessDetails` struct. -/// -/// Signed in. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Tells if the login device is EMM managed. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged; - -/// Login method. -@property (nonatomic, readonly) DBTEAMLOGLoginMethod *loginMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param loginMethod Login method. -/// @param isEmmManaged Tells if the login device is EMM managed. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod isEmmManaged:(nullable NSNumber *)isEmmManaged; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param loginMethod Login method. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginSuccessDetails` struct. -/// -@interface DBTEAMLOGLoginSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginSuccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginSuccessDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginSuccessDetails` object. -/// -+ (DBTEAMLOGLoginSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginSuccessType.h deleted file mode 100644 index ddda6bd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLoginSuccessType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginSuccessType` struct. -/// -@interface DBTEAMLOGLoginSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginSuccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginSuccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginSuccessType` object. -/// -+ (DBTEAMLOGLoginSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLogoutDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLogoutDetails.h deleted file mode 100644 index 12ff2e1f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLogoutDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLogoutDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LogoutDetails` struct. -/// -/// Signed out. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLogoutDetails : NSObject - -#pragma mark - Instance fields - -/// Login session id. -@property (nonatomic, readonly, copy, nullable) NSString *loginId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param loginId Login session id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginId:(nullable NSString *)loginId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LogoutDetails` struct. -/// -@interface DBTEAMLOGLogoutDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLogoutDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLogoutDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLogoutDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLogoutDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLogoutDetails` object. -/// -+ (DBTEAMLOGLogoutDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLogoutType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLogoutType.h deleted file mode 100644 index 3f8b11cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGLogoutType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLogoutType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LogoutType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLogoutType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LogoutType` struct. -/// -@interface DBTEAMLOGLogoutTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLogoutType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLogoutType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLogoutType *)instance; - -/// -/// Deserializes `DBTEAMLOGLogoutType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLogoutType` object. -/// -+ (DBTEAMLOGLogoutType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddExternalIdDetails.h deleted file mode 100644 index 59b20422..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddExternalIdDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddExternalIdDetails` struct. -/// -/// Added an external ID for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddExternalIdDetails` struct. -/// -@interface DBTEAMLOGMemberAddExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddExternalIdDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGMemberAddExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddExternalIdType.h deleted file mode 100644 index 22b0e1ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddExternalIdType` struct. -/// -@interface DBTEAMLOGMemberAddExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddExternalIdType` object. -/// -+ (DBTEAMLOGMemberAddExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddNameDetails.h deleted file mode 100644 index b55a04fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddNameDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddNameDetails; -@class DBTEAMLOGUserNameLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddNameDetails` struct. -/// -/// Added team member name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddNameDetails : NSObject - -#pragma mark - Instance fields - -/// New user's name. -@property (nonatomic, readonly) DBTEAMLOGUserNameLogInfo *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New user's name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGUserNameLogInfo *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddNameDetails` struct. -/// -@interface DBTEAMLOGMemberAddNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddNameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddNameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddNameDetails` object. -/// -+ (DBTEAMLOGMemberAddNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddNameType.h deleted file mode 100644 index 82fc7b72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberAddNameType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddNameType` struct. -/// -@interface DBTEAMLOGMemberAddNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddNameType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddNameType` object. -/// -+ (DBTEAMLOGMemberAddNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeAdminRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeAdminRoleDetails.h deleted file mode 100644 index abc04a88..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeAdminRoleDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminRole; -@class DBTEAMLOGMemberChangeAdminRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeAdminRoleDetails` struct. -/// -/// Changed team member admin role. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeAdminRoleDetails : NSObject - -#pragma mark - Instance fields - -/// New admin role. This field is relevant when the admin role is changed or -/// whenthe user role changes from no admin rights to with admin rights. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminRole *dNewValue; - -/// Previous admin role. This field is relevant when the admin role is changed -/// or when the admin role is removed. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminRole *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New admin role. This field is relevant when the admin role -/// is changed or whenthe user role changes from no admin rights to with admin -/// rights. -/// @param previousValue Previous admin role. This field is relevant when the -/// admin role is changed or when the admin role is removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGAdminRole *)dNewValue - previousValue:(nullable DBTEAMLOGAdminRole *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeAdminRoleDetails` struct. -/// -@interface DBTEAMLOGMemberChangeAdminRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeAdminRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeAdminRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeAdminRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeAdminRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeAdminRoleDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeAdminRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeAdminRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeAdminRoleType.h deleted file mode 100644 index d7679a4b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeAdminRoleType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeAdminRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeAdminRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeAdminRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeAdminRoleType` struct. -/// -@interface DBTEAMLOGMemberChangeAdminRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeAdminRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeAdminRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeAdminRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeAdminRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeAdminRoleType` object. -/// -+ (DBTEAMLOGMemberChangeAdminRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeEmailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeEmailDetails.h deleted file mode 100644 index 388a8ee0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeEmailDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeEmailDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeEmailDetails` struct. -/// -/// Changed team member email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeEmailDetails : NSObject - -#pragma mark - Instance fields - -/// New email. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Previous email. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New email. -/// @param previousValue Previous email. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(nullable NSString *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeEmailDetails` struct. -/// -@interface DBTEAMLOGMemberChangeEmailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeEmailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeEmailDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeEmailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeEmailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeEmailDetails` object. -/// -+ (DBTEAMLOGMemberChangeEmailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeEmailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeEmailType.h deleted file mode 100644 index 300ff8c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeEmailType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeEmailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeEmailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeEmailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeEmailType` struct. -/// -@interface DBTEAMLOGMemberChangeEmailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeEmailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeEmailType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeEmailType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeEmailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeEmailType` object. -/// -+ (DBTEAMLOGMemberChangeEmailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeExternalIdDetails.h deleted file mode 100644 index 34e4d81f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeExternalIdDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeExternalIdDetails` struct. -/// -/// Changed the external ID for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeExternalIdDetails` struct. -/// -@interface DBTEAMLOGMemberChangeExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeExternalIdType.h deleted file mode 100644 index 65a91a13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeExternalIdType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeExternalIdType` struct. -/// -@interface DBTEAMLOGMemberChangeExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeExternalIdType` -/// object. -/// -+ (DBTEAMLOGMemberChangeExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeMembershipTypeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeMembershipTypeDetails.h deleted file mode 100644 index c50e0078..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeMembershipTypeDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeMembershipTypeDetails; -@class DBTEAMLOGTeamMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeMembershipTypeDetails` struct. -/// -/// Changed membership type (limited/full) of member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeDetails : NSObject - -#pragma mark - Instance fields - -/// Previous membership type. -@property (nonatomic, readonly) DBTEAMLOGTeamMembershipType *prevValue; - -/// New membership type. -@property (nonatomic, readonly) DBTEAMLOGTeamMembershipType *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param prevValue Previous membership type. -/// @param dNewValue New membership type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrevValue:(DBTEAMLOGTeamMembershipType *)prevValue - dNewValue:(DBTEAMLOGTeamMembershipType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeMembershipTypeDetails` struct. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeMembershipTypeDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberChangeMembershipTypeDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeMembershipTypeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeMembershipTypeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeMembershipTypeDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeMembershipTypeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeMembershipTypeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeMembershipTypeType.h deleted file mode 100644 index 89c38e55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeMembershipTypeType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeMembershipTypeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeMembershipTypeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeMembershipTypeType` struct. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeMembershipTypeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeMembershipTypeType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeMembershipTypeType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeMembershipTypeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeMembershipTypeType` -/// object. -/// -+ (DBTEAMLOGMemberChangeMembershipTypeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeNameDetails.h deleted file mode 100644 index ab4a1f14..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeNameDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeNameDetails; -@class DBTEAMLOGUserNameLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeNameDetails` struct. -/// -/// Changed team member name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeNameDetails : NSObject - -#pragma mark - Instance fields - -/// New user's name. -@property (nonatomic, readonly) DBTEAMLOGUserNameLogInfo *dNewValue; - -/// Previous user's name. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserNameLogInfo *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New user's name. -/// @param previousValue Previous user's name. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGUserNameLogInfo *)dNewValue - previousValue:(nullable DBTEAMLOGUserNameLogInfo *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New user's name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGUserNameLogInfo *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeNameDetails` struct. -/// -@interface DBTEAMLOGMemberChangeNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeNameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeNameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeNameDetails` object. -/// -+ (DBTEAMLOGMemberChangeNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeNameType.h deleted file mode 100644 index c20f441e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeNameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeNameType` struct. -/// -@interface DBTEAMLOGMemberChangeNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeNameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeNameType` object. -/// -+ (DBTEAMLOGMemberChangeNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeResellerRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeResellerRoleDetails.h deleted file mode 100644 index 94e46dd3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeResellerRoleDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeResellerRoleDetails; -@class DBTEAMLOGResellerRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeResellerRoleDetails` struct. -/// -/// Changed team member reseller role. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeResellerRoleDetails : NSObject - -#pragma mark - Instance fields - -/// New reseller role. This field is relevant when the reseller role is changed. -@property (nonatomic, readonly) DBTEAMLOGResellerRole *dNewValue; - -/// Previous reseller role. This field is relevant when the reseller role is -/// changed or when the reseller role is removed. -@property (nonatomic, readonly) DBTEAMLOGResellerRole *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New reseller role. This field is relevant when the reseller -/// role is changed. -/// @param previousValue Previous reseller role. This field is relevant when the -/// reseller role is changed or when the reseller role is removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGResellerRole *)dNewValue - previousValue:(DBTEAMLOGResellerRole *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeResellerRoleDetails` struct. -/// -@interface DBTEAMLOGMemberChangeResellerRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeResellerRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberChangeResellerRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeResellerRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeResellerRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeResellerRoleDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeResellerRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeResellerRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeResellerRoleType.h deleted file mode 100644 index 16b8ec6e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeResellerRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeResellerRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeResellerRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeResellerRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeResellerRoleType` struct. -/// -@interface DBTEAMLOGMemberChangeResellerRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeResellerRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeResellerRoleType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeResellerRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeResellerRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeResellerRoleType` -/// object. -/// -+ (DBTEAMLOGMemberChangeResellerRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeStatusDetails.h deleted file mode 100644 index dd24e527..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeStatusDetails.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActionDetails; -@class DBTEAMLOGMemberChangeStatusDetails; -@class DBTEAMLOGMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeStatusDetails` struct. -/// -/// Changed member status (invited, joined, suspended, etc.). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// Previous member status. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMemberStatus *previousValue; - -/// New member status. -@property (nonatomic, readonly) DBTEAMLOGMemberStatus *dNewValue; - -/// Additional information indicating the action taken that caused status -/// change. -@property (nonatomic, readonly, nullable) DBTEAMLOGActionDetails *action; - -/// The user's new team name. This field is relevant when the user is -/// transferred off the team. -@property (nonatomic, readonly, copy, nullable) NSString *dNewTeam; - -/// The user's previous team name. This field is relevant when the user is -/// transferred onto the team. -@property (nonatomic, readonly, copy, nullable) NSString *previousTeam; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New member status. -/// @param previousValue Previous member status. Might be missing due to -/// historical data gap. -/// @param action Additional information indicating the action taken that caused -/// status change. -/// @param dNewTeam The user's new team name. This field is relevant when the -/// user is transferred off the team. -/// @param previousTeam The user's previous team name. This field is relevant -/// when the user is transferred onto the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberStatus *)dNewValue - previousValue:(nullable DBTEAMLOGMemberStatus *)previousValue - action:(nullable DBTEAMLOGActionDetails *)action - dNewTeam:(nullable NSString *)dNewTeam - previousTeam:(nullable NSString *)previousTeam; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New member status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeStatusDetails` struct. -/// -@interface DBTEAMLOGMemberChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeStatusDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeStatusDetails` object. -/// -+ (DBTEAMLOGMemberChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeStatusType.h deleted file mode 100644 index 7b315a6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberChangeStatusType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeStatusType` struct. -/// -@interface DBTEAMLOGMemberChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeStatusType` object. -/// -+ (DBTEAMLOGMemberChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteManualContactsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteManualContactsDetails.h deleted file mode 100644 index 2598fc0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteManualContactsDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteManualContactsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteManualContactsDetails` struct. -/// -/// Cleared manually added contacts. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteManualContactsDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteManualContactsDetails` struct. -/// -@interface DBTEAMLOGMemberDeleteManualContactsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteManualContactsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberDeleteManualContactsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteManualContactsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteManualContactsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteManualContactsDetails` -/// object. -/// -+ (DBTEAMLOGMemberDeleteManualContactsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteManualContactsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteManualContactsType.h deleted file mode 100644 index 7fde19a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteManualContactsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteManualContactsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteManualContactsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteManualContactsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteManualContactsType` struct. -/// -@interface DBTEAMLOGMemberDeleteManualContactsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteManualContactsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberDeleteManualContactsType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteManualContactsType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteManualContactsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteManualContactsType` -/// object. -/// -+ (DBTEAMLOGMemberDeleteManualContactsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteProfilePhotoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteProfilePhotoDetails.h deleted file mode 100644 index c90fff6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteProfilePhotoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteProfilePhotoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteProfilePhotoDetails` struct. -/// -/// Deleted team member profile photo. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteProfilePhotoDetails` struct. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteProfilePhotoDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberDeleteProfilePhotoDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteProfilePhotoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteProfilePhotoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteProfilePhotoDetails` -/// object. -/// -+ (DBTEAMLOGMemberDeleteProfilePhotoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteProfilePhotoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteProfilePhotoType.h deleted file mode 100644 index e455e064..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberDeleteProfilePhotoType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteProfilePhotoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteProfilePhotoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteProfilePhotoType` struct. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteProfilePhotoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberDeleteProfilePhotoType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteProfilePhotoType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteProfilePhotoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteProfilePhotoType` -/// object. -/// -+ (DBTEAMLOGMemberDeleteProfilePhotoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h deleted file mode 100644 index e48defbc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPermanentlyDeleteAccountContentsDetails` struct. -/// -/// Permanently deleted contents of deleted team member account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `MemberPermanentlyDeleteAccountContentsDetails` struct. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` object. -/// -+ (DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h deleted file mode 100644 index 8e677512..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPermanentlyDeleteAccountContentsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberPermanentlyDeleteAccountContentsType` -/// struct. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` object. -/// -+ (DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveActionType.h deleted file mode 100644 index 7edd982a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveActionType.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRemoveActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRemoveActionType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRemoveActionType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberRemoveActionTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGMemberRemoveActionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberRemoveActionTypeTag) { - /// (no description). - DBTEAMLOGMemberRemoveActionTypeDelete_, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeLeave, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeOffboard, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeOffboardAndRetainTeamFolders, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveActionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDelete_; - -/// -/// Initializes union class with tag state of "leave". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLeave; - -/// -/// Initializes union class with tag state of "offboard". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOffboard; - -/// -/// Initializes union class with tag state of -/// "offboard_and_retain_team_folders". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOffboardAndRetainTeamFolders; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "delete". -/// -/// @return Whether the union's current tag state has value "delete". -/// -- (BOOL)isDelete_; - -/// -/// Retrieves whether the union's current tag state has value "leave". -/// -/// @return Whether the union's current tag state has value "leave". -/// -- (BOOL)isLeave; - -/// -/// Retrieves whether the union's current tag state has value "offboard". -/// -/// @return Whether the union's current tag state has value "offboard". -/// -- (BOOL)isOffboard; - -/// -/// Retrieves whether the union's current tag state has value -/// "offboard_and_retain_team_folders". -/// -/// @return Whether the union's current tag state has value -/// "offboard_and_retain_team_folders". -/// -- (BOOL)isOffboardAndRetainTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberRemoveActionType` union. -/// -@interface DBTEAMLOGMemberRemoveActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRemoveActionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRemoveActionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRemoveActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRemoveActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveActionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRemoveActionType` object. -/// -+ (DBTEAMLOGMemberRemoveActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveExternalIdDetails.h deleted file mode 100644 index f7d78b7b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveExternalIdDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRemoveExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRemoveExternalIdDetails` struct. -/// -/// Removed the external ID for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRemoveExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRemoveExternalIdDetails` struct. -/// -@interface DBTEAMLOGMemberRemoveExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRemoveExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRemoveExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRemoveExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRemoveExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRemoveExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGMemberRemoveExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveExternalIdType.h deleted file mode 100644 index 6b48824a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRemoveExternalIdType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRemoveExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRemoveExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRemoveExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRemoveExternalIdType` struct. -/// -@interface DBTEAMLOGMemberRemoveExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRemoveExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRemoveExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRemoveExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRemoveExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRemoveExternalIdType` -/// object. -/// -+ (DBTEAMLOGMemberRemoveExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsChangePolicyDetails.h deleted file mode 100644 index d6ac8296..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRequestsChangePolicyDetails; -@class DBTEAMLOGMemberRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRequestsChangePolicyDetails` struct. -/// -/// Changed whether users can find team when not invited. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New member change requests policy. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsPolicy *dNewValue; - -/// Previous member change requests policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMemberRequestsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New member change requests policy. -/// @param previousValue Previous member change requests policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberRequestsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGMemberRequestsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New member change requests policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberRequestsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRequestsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRequestsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberRequestsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRequestsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRequestsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRequestsChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGMemberRequestsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsChangePolicyType.h deleted file mode 100644 index 7cfdfa47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRequestsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRequestsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRequestsChangePolicyType` struct. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRequestsChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRequestsChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRequestsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRequestsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRequestsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGMemberRequestsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsPolicy.h deleted file mode 100644 index 0f049a45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberRequestsPolicy.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRequestsPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRequestsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberRequestsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGMemberRequestsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberRequestsPolicyTag) { - /// (no description). - DBTEAMLOGMemberRequestsPolicyAutoAccept, - - /// (no description). - DBTEAMLOGMemberRequestsPolicyDisabled, - - /// (no description). - DBTEAMLOGMemberRequestsPolicyRequireApproval, - - /// (no description). - DBTEAMLOGMemberRequestsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "auto_accept". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutoAccept; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "require_approval". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequireApproval; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "auto_accept". -/// -/// @return Whether the union's current tag state has value "auto_accept". -/// -- (BOOL)isAutoAccept; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "require_approval". -/// -/// @return Whether the union's current tag state has value "require_approval". -/// -- (BOOL)isRequireApproval; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberRequestsPolicy` union. -/// -@interface DBTEAMLOGMemberRequestsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRequestsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRequestsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRequestsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRequestsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRequestsPolicy` object. -/// -+ (DBTEAMLOGMemberRequestsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicy.h deleted file mode 100644 index 5ab0fc58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicy.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSendInvitePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSendInvitePolicy` union. -/// -/// Policy for controlling whether team members can send team invites -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSendInvitePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberSendInvitePolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGMemberSendInvitePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberSendInvitePolicyTag) { - /// (no description). - DBTEAMLOGMemberSendInvitePolicyDisabled, - - /// (no description). - DBTEAMLOGMemberSendInvitePolicyEveryone, - - /// (no description). - DBTEAMLOGMemberSendInvitePolicySpecificMembers, - - /// (no description). - DBTEAMLOGMemberSendInvitePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "everyone". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryone; - -/// -/// Initializes union class with tag state of "specific_members". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSpecificMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "everyone". -/// -/// @return Whether the union's current tag state has value "everyone". -/// -- (BOOL)isEveryone; - -/// -/// Retrieves whether the union's current tag state has value -/// "specific_members". -/// -/// @return Whether the union's current tag state has value "specific_members". -/// -- (BOOL)isSpecificMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberSendInvitePolicy` union. -/// -@interface DBTEAMLOGMemberSendInvitePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSendInvitePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSendInvitePolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSendInvitePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSendInvitePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSendInvitePolicy` object. -/// -+ (DBTEAMLOGMemberSendInvitePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicyChangedDetails.h deleted file mode 100644 index eff970f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSendInvitePolicy; -@class DBTEAMLOGMemberSendInvitePolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSendInvitePolicyChangedDetails` struct. -/// -/// Changed member send invite policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New team member send invite policy. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicy *dNewValue; - -/// Previous team member send invite policy. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team member send invite policy. -/// @param previousValue Previous team member send invite policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberSendInvitePolicy *)dNewValue - previousValue:(DBTEAMLOGMemberSendInvitePolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSendInvitePolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSendInvitePolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSendInvitePolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSendInvitePolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` object. -/// -+ (DBTEAMLOGMemberSendInvitePolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicyChangedType.h deleted file mode 100644 index 525a3a86..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSendInvitePolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSendInvitePolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSendInvitePolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSendInvitePolicyChangedType` struct. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSendInvitePolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSendInvitePolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSendInvitePolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSendInvitePolicyChangedType` -/// object. -/// -+ (DBTEAMLOGMemberSendInvitePolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSetProfilePhotoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSetProfilePhotoDetails.h deleted file mode 100644 index 6033db40..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSetProfilePhotoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSetProfilePhotoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSetProfilePhotoDetails` struct. -/// -/// Set team member profile photo. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSetProfilePhotoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSetProfilePhotoDetails` struct. -/// -@interface DBTEAMLOGMemberSetProfilePhotoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSetProfilePhotoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSetProfilePhotoDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSetProfilePhotoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSetProfilePhotoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSetProfilePhotoDetails` -/// object. -/// -+ (DBTEAMLOGMemberSetProfilePhotoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSetProfilePhotoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSetProfilePhotoType.h deleted file mode 100644 index 13ad4812..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSetProfilePhotoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSetProfilePhotoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSetProfilePhotoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSetProfilePhotoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSetProfilePhotoType` struct. -/// -@interface DBTEAMLOGMemberSetProfilePhotoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSetProfilePhotoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSetProfilePhotoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSetProfilePhotoType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSetProfilePhotoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSetProfilePhotoType` object. -/// -+ (DBTEAMLOGMemberSetProfilePhotoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h deleted file mode 100644 index 8da07bfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddCustomQuotaDetails` struct. -/// -/// Set custom member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails : NSObject - -#pragma mark - Instance fields - -/// New custom quota value in bytes. -@property (nonatomic, readonly) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New custom quota value in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSNumber *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddCustomQuotaDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h deleted file mode 100644 index 38c3e80d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddCustomQuotaType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddCustomQuotaType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h deleted file mode 100644 index 3ee051b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddExceptionDetails` struct. -/// -/// Added members to member space limit exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddExceptionDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionType.h deleted file mode 100644 index 89b7922a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddExceptionType` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSpaceLimitsAddExceptionType` -/// object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h deleted file mode 100644 index 17d683c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails; -@class DBTEAMLOGSpaceCapsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCapsTypePolicyDetails` struct. -/// -/// Changed member space limit type for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous space limit type. -@property (nonatomic, readonly) DBTEAMLOGSpaceCapsType *previousValue; - -/// New space limit type. -@property (nonatomic, readonly) DBTEAMLOGSpaceCapsType *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous space limit type. -/// @param dNewValue New space limit type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSpaceCapsType *)previousValue - dNewValue:(DBTEAMLOGSpaceCapsType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `MemberSpaceLimitsChangeCapsTypePolicyDetails` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h deleted file mode 100644 index 5015577b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCapsTypePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeCapsTypePolicyType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h deleted file mode 100644 index a05c02a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCustomQuotaDetails` struct. -/// -/// Changed custom member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails : NSObject - -#pragma mark - Instance fields - -/// Previous custom quota value in bytes. -@property (nonatomic, readonly) NSNumber *previousValue; - -/// New custom quota value in bytes. -@property (nonatomic, readonly) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous custom quota value in bytes. -/// @param dNewValue New custom quota value in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSNumber *)previousValue dNewValue:(NSNumber *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeCustomQuotaDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h deleted file mode 100644 index ce739600..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCustomQuotaType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeCustomQuotaType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h deleted file mode 100644 index 4ca8d621..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangePolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangePolicyDetails` struct. -/// -/// Changed team default member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous team default limit value in bytes. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSNumber *previousValue; - -/// New team default limit value in bytes. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous team default limit value in bytes. Might be -/// missing due to historical data gap. -/// @param dNewValue New team default limit value in bytes. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSNumber *)previousValue dNewValue:(nullable NSNumber *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyType.h deleted file mode 100644 index 25cd297b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangePolicyType` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSpaceLimitsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h deleted file mode 100644 index 429746d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeStatusDetails; -@class DBTEAMLOGSpaceLimitsStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeStatusDetails` struct. -/// -/// Changed space limit status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// Previous storage quota status. -@property (nonatomic, readonly) DBTEAMLOGSpaceLimitsStatus *previousValue; - -/// New storage quota status. -@property (nonatomic, readonly) DBTEAMLOGSpaceLimitsStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous storage quota status. -/// @param dNewValue New storage quota status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSpaceLimitsStatus *)previousValue - dNewValue:(DBTEAMLOGSpaceLimitsStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeStatusDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusType.h deleted file mode 100644 index fce60205..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeStatusType` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeStatusType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSpaceLimitsChangeStatusType` -/// object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h deleted file mode 100644 index 0e1e91fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveCustomQuotaDetails` struct. -/// -/// Removed custom member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveCustomQuotaDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h deleted file mode 100644 index 0da71698..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveCustomQuotaType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveCustomQuotaType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h deleted file mode 100644 index eae2dc96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveExceptionDetails` struct. -/// -/// Removed members from member space limit exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveExceptionDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h deleted file mode 100644 index b8fe0eff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveExceptionType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberStatus.h deleted file mode 100644 index fd3e8a85..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberStatus.h +++ /dev/null @@ -1,201 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGMemberStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberStatusTag) { - /// (no description). - DBTEAMLOGMemberStatusActive, - - /// (no description). - DBTEAMLOGMemberStatusInvited, - - /// (no description). - DBTEAMLOGMemberStatusMovedToAnotherTeam, - - /// (no description). - DBTEAMLOGMemberStatusNotJoined, - - /// (no description). - DBTEAMLOGMemberStatusRemoved, - - /// (no description). - DBTEAMLOGMemberStatusSuspended, - - /// (no description). - DBTEAMLOGMemberStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "moved_to_another_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMovedToAnotherTeam; - -/// -/// Initializes union class with tag state of "not_joined". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotJoined; - -/// -/// Initializes union class with tag state of "removed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoved; - -/// -/// Initializes union class with tag state of "suspended". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspended; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value -/// "moved_to_another_team". -/// -/// @return Whether the union's current tag state has value -/// "moved_to_another_team". -/// -- (BOOL)isMovedToAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value "not_joined". -/// -/// @return Whether the union's current tag state has value "not_joined". -/// -- (BOOL)isNotJoined; - -/// -/// Retrieves whether the union's current tag state has value "removed". -/// -/// @return Whether the union's current tag state has value "removed". -/// -- (BOOL)isRemoved; - -/// -/// Retrieves whether the union's current tag state has value "suspended". -/// -/// @return Whether the union's current tag state has value "suspended". -/// -- (BOOL)isSuspended; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberStatus` union. -/// -@interface DBTEAMLOGMemberStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberStatus` object. -/// -+ (DBTEAMLOGMemberStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestDetails.h deleted file mode 100644 index 2fff8103..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestDetails` struct. -/// -/// Suggested person to add to team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestDetails : NSObject - -#pragma mark - Instance fields - -/// suggested users emails. -@property (nonatomic, readonly) NSArray *suggestedMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param suggestedMembers suggested users emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuggestedMembers:(NSArray *)suggestedMembers; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestDetails` struct. -/// -@interface DBTEAMLOGMemberSuggestDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSuggestDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestDetails` object. -/// -+ (DBTEAMLOGMemberSuggestDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestType.h deleted file mode 100644 index 2c516c24..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestType` struct. -/// -@interface DBTEAMLOGMemberSuggestTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSuggestType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestType` object. -/// -+ (DBTEAMLOGMemberSuggestType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsChangePolicyDetails.h deleted file mode 100644 index f145e7a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestionsChangePolicyDetails; -@class DBTEAMLOGMemberSuggestionsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestionsChangePolicyDetails` struct. -/// -/// Enabled/disabled option for team members to suggest people to add to team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New team member suggestions policy. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsPolicy *dNewValue; - -/// Previous team member suggestions policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMemberSuggestionsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team member suggestions policy. -/// @param previousValue Previous team member suggestions policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberSuggestionsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGMemberSuggestionsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New team member suggestions policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberSuggestionsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestionsChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestionsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestionsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestionsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` object. -/// -+ (DBTEAMLOGMemberSuggestionsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsChangePolicyType.h deleted file mode 100644 index 309ff10d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestionsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestionsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestionsChangePolicyType` struct. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestionsChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestionsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestionsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestionsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGMemberSuggestionsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsPolicy.h deleted file mode 100644 index 535cca41..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberSuggestionsPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestionsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestionsPolicy` union. -/// -/// Member suggestions policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestionsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberSuggestionsPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGMemberSuggestionsPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberSuggestionsPolicyTag) { - /// (no description). - DBTEAMLOGMemberSuggestionsPolicyDisabled, - - /// (no description). - DBTEAMLOGMemberSuggestionsPolicyEnabled, - - /// (no description). - DBTEAMLOGMemberSuggestionsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberSuggestionsPolicy` union. -/// -@interface DBTEAMLOGMemberSuggestionsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestionsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSuggestionsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestionsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestionsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestionsPolicy` object. -/// -+ (DBTEAMLOGMemberSuggestionsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferAccountContentsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferAccountContentsDetails.h deleted file mode 100644 index 6848f8de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferAccountContentsDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberTransferAccountContentsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberTransferAccountContentsDetails` struct. -/// -/// Transferred contents of deleted member account to another member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberTransferAccountContentsDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberTransferAccountContentsDetails` -/// struct. -/// -@interface DBTEAMLOGMemberTransferAccountContentsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberTransferAccountContentsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberTransferAccountContentsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberTransferAccountContentsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` object. -/// -+ (DBTEAMLOGMemberTransferAccountContentsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferAccountContentsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferAccountContentsType.h deleted file mode 100644 index 05384b53..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferAccountContentsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberTransferAccountContentsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberTransferAccountContentsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberTransferAccountContentsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberTransferAccountContentsType` struct. -/// -@interface DBTEAMLOGMemberTransferAccountContentsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberTransferAccountContentsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberTransferAccountContentsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberTransferAccountContentsType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberTransferAccountContentsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberTransferAccountContentsType` -/// object. -/// -+ (DBTEAMLOGMemberTransferAccountContentsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferredInternalFields.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferredInternalFields.h deleted file mode 100644 index 898f5ce8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMemberTransferredInternalFields.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberTransferredInternalFields; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberTransferredInternalFields` struct. -/// -/// Internal only - fields for target team computations -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberTransferredInternalFields : NSObject - -#pragma mark - Instance fields - -/// Internal only - team user was moved from. -@property (nonatomic, readonly, copy) NSString *sourceTeamId; - -/// Internal only - team user was moved to. -@property (nonatomic, readonly, copy) NSString *targetTeamId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sourceTeamId Internal only - team user was moved from. -/// @param targetTeamId Internal only - team user was moved to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSourceTeamId:(NSString *)sourceTeamId targetTeamId:(NSString *)targetTeamId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberTransferredInternalFields` struct. -/// -@interface DBTEAMLOGMemberTransferredInternalFieldsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberTransferredInternalFields` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberTransferredInternalFields` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferredInternalFields` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberTransferredInternalFields *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberTransferredInternalFields` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferredInternalFields` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberTransferredInternalFields` -/// object. -/// -+ (DBTEAMLOGMemberTransferredInternalFields *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h deleted file mode 100644 index 941753a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails; -@class DBTEAMLOGMicrosoftOfficeAddinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MicrosoftOfficeAddinChangePolicyDetails` struct. -/// -/// Enabled/disabled Microsoft Office add-in. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Microsoft Office addin policy. -@property (nonatomic, readonly) DBTEAMLOGMicrosoftOfficeAddinPolicy *dNewValue; - -/// Previous Microsoft Office addin policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMicrosoftOfficeAddinPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Microsoft Office addin policy. -/// @param previousValue Previous Microsoft Office addin policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMicrosoftOfficeAddinPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGMicrosoftOfficeAddinPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Microsoft Office addin policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMicrosoftOfficeAddinPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MicrosoftOfficeAddinChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` object. -/// -+ (DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h deleted file mode 100644 index e397bb53..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MicrosoftOfficeAddinChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MicrosoftOfficeAddinChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` object. -/// -+ (DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinPolicy.h deleted file mode 100644 index 2e221f9b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMicrosoftOfficeAddinPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMicrosoftOfficeAddinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MicrosoftOfficeAddinPolicy` union. -/// -/// Microsoft Office addin policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMicrosoftOfficeAddinPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGMicrosoftOfficeAddinPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMicrosoftOfficeAddinPolicyTag) { - /// (no description). - DBTEAMLOGMicrosoftOfficeAddinPolicyDisabled, - - /// (no description). - DBTEAMLOGMicrosoftOfficeAddinPolicyEnabled, - - /// (no description). - DBTEAMLOGMicrosoftOfficeAddinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMicrosoftOfficeAddinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMicrosoftOfficeAddinPolicy` union. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMicrosoftOfficeAddinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMicrosoftOfficeAddinPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMicrosoftOfficeAddinPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMicrosoftOfficeAddinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMicrosoftOfficeAddinPolicy` -/// object. -/// -+ (DBTEAMLOGMicrosoftOfficeAddinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMissingDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMissingDetails.h deleted file mode 100644 index 072c2164..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMissingDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMissingDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MissingDetails` struct. -/// -/// An indication that an error occurred while retrieving the event. Some -/// attributes of the event may be omitted as a result. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMissingDetails : NSObject - -#pragma mark - Instance fields - -/// All the data that could be retrieved and converted from the source event. -@property (nonatomic, readonly, copy, nullable) NSString *sourceEventFields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sourceEventFields All the data that could be retrieved and converted -/// from the source event. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSourceEventFields:(nullable NSString *)sourceEventFields; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MissingDetails` struct. -/// -@interface DBTEAMLOGMissingDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMissingDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMissingDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMissingDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMissingDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMissingDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMissingDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMissingDetails` object. -/// -+ (DBTEAMLOGMissingDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMobileDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMobileDeviceSessionLogInfo.h deleted file mode 100644 index 1194b91d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMobileDeviceSessionLogInfo.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMLOGMobileDeviceSessionLogInfo; -@class DBTEAMLOGMobileSessionLogInfo; -@class DBTEAMMobileClientPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileDeviceSessionLogInfo` struct. -/// -/// Information about linked Dropbox mobile client sessions -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMobileDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Mobile session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGMobileSessionLogInfo *sessionInfo; - -/// The device name. -@property (nonatomic, readonly, copy) NSString *deviceName; - -/// The mobile application type. -@property (nonatomic, readonly) DBTEAMMobileClientPlatform *clientType; - -/// The Dropbox client version. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// The hosting OS version. -@property (nonatomic, readonly, copy, nullable) NSString *osVersion; - -/// last carrier used by the device. -@property (nonatomic, readonly, copy, nullable) NSString *lastCarrier; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Mobile session unique id. -/// @param clientVersion The Dropbox client version. -/// @param osVersion The hosting OS version. -/// @param lastCarrier last carrier used by the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceName:(NSString *)deviceName - clientType:(DBTEAMMobileClientPlatform *)clientType - ipAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGMobileSessionLogInfo *)sessionInfo - clientVersion:(nullable NSString *)clientVersion - osVersion:(nullable NSString *)osVersion - lastCarrier:(nullable NSString *)lastCarrier; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceName:(NSString *)deviceName clientType:(DBTEAMMobileClientPlatform *)clientType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MobileDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGMobileDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMobileDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMobileDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMobileDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGMobileDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMobileDeviceSessionLogInfo` -/// object. -/// -+ (DBTEAMLOGMobileDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMobileSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMobileSessionLogInfo.h deleted file mode 100644 index c11f61c5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGMobileSessionLogInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGSessionLogInfo.h" - -@class DBTEAMLOGMobileSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileSessionLogInfo` struct. -/// -/// Mobile session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMobileSessionLogInfo : DBTEAMLOGSessionLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MobileSessionLogInfo` struct. -/// -@interface DBTEAMLOGMobileSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMobileSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMobileSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMobileSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGMobileSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMobileSessionLogInfo` object. -/// -+ (DBTEAMLOGMobileSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNamespaceRelativePathLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNamespaceRelativePathLogInfo.h deleted file mode 100644 index 4c560082..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNamespaceRelativePathLogInfo.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNamespaceRelativePathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NamespaceRelativePathLogInfo` struct. -/// -/// Namespace relative path details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNamespaceRelativePathLogInfo : NSObject - -#pragma mark - Instance fields - -/// Namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *nsId; - -/// A path relative to the specified namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *relativePath; - -/// True if the namespace is shared. -@property (nonatomic, readonly, nullable) NSNumber *isSharedNamespace; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param nsId Namespace ID. -/// @param relativePath A path relative to the specified namespace ID. -/// @param isSharedNamespace True if the namespace is shared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNsId:(nullable NSString *)nsId - relativePath:(nullable NSString *)relativePath - isSharedNamespace:(nullable NSNumber *)isSharedNamespace; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NamespaceRelativePathLogInfo` struct. -/// -@interface DBTEAMLOGNamespaceRelativePathLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNamespaceRelativePathLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNamespaceRelativePathLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNamespaceRelativePathLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNamespaceRelativePathLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGNamespaceRelativePathLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNamespaceRelativePathLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNamespaceRelativePathLogInfo` -/// object. -/// -+ (DBTEAMLOGNamespaceRelativePathLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlChangePolicyDetails.h deleted file mode 100644 index f964bdb6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNetworkControlChangePolicyDetails; -@class DBTEAMLOGNetworkControlPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NetworkControlChangePolicyDetails` struct. -/// -/// Enabled/disabled network control. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNetworkControlChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New network control policy. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlPolicy *dNewValue; - -/// Previous network control policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGNetworkControlPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New network control policy. -/// @param previousValue Previous network control policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGNetworkControlPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGNetworkControlPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New network control policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGNetworkControlPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NetworkControlChangePolicyDetails` struct. -/// -@interface DBTEAMLOGNetworkControlChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNetworkControlChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNetworkControlChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNetworkControlChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNetworkControlChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNetworkControlChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGNetworkControlChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlChangePolicyType.h deleted file mode 100644 index 78eff52c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNetworkControlChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NetworkControlChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNetworkControlChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NetworkControlChangePolicyType` struct. -/// -@interface DBTEAMLOGNetworkControlChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNetworkControlChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNetworkControlChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNetworkControlChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGNetworkControlChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNetworkControlChangePolicyType` -/// object. -/// -+ (DBTEAMLOGNetworkControlChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlPolicy.h deleted file mode 100644 index 3134d002..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNetworkControlPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNetworkControlPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NetworkControlPolicy` union. -/// -/// Network control policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNetworkControlPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGNetworkControlPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGNetworkControlPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGNetworkControlPolicyTag) { - /// (no description). - DBTEAMLOGNetworkControlPolicyDisabled, - - /// (no description). - DBTEAMLOGNetworkControlPolicyEnabled, - - /// (no description). - DBTEAMLOGNetworkControlPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGNetworkControlPolicy` union. -/// -@interface DBTEAMLOGNetworkControlPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNetworkControlPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNetworkControlPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNetworkControlPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGNetworkControlPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNetworkControlPolicy` object. -/// -+ (DBTEAMLOGNetworkControlPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h deleted file mode 100644 index 2387ff0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenCreateReportDetails` struct. -/// -/// Report created: Links created with no expiration. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportType.h deleted file mode 100644 index c041a0bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenCreateReportType` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h deleted file mode 100644 index d1a61ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenReportFailedDetails` struct. -/// -/// Couldn't create report: Links created with no expiration. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedType.h deleted file mode 100644 index 8b5f15cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenReportFailedType` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h deleted file mode 100644 index b14b9d7e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenCreateReportDetails` struct. -/// -/// Report created: Links created without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkGenCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportType.h deleted file mode 100644 index aa02dfde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenCreateReportType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoPasswordLinkGenCreateReportType` -/// object. -/// -+ (DBTEAMLOGNoPasswordLinkGenCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h deleted file mode 100644 index e98c2a3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenReportFailedDetails` struct. -/// -/// Couldn't create report: Links created without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkGenReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedType.h deleted file mode 100644 index 66cb7581..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenReportFailedType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoPasswordLinkGenReportFailedType` -/// object. -/// -+ (DBTEAMLOGNoPasswordLinkGenReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h deleted file mode 100644 index 837957cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewCreateReportDetails` struct. -/// -/// Report created: Views of links without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportType.h deleted file mode 100644 index 2a5e2885..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewCreateReportType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h deleted file mode 100644 index 5cd854a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewReportFailedDetails` struct. -/// -/// Couldn't create report: Views of links without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedType.h deleted file mode 100644 index 93bfc85e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewReportFailedType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNonTeamMemberLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNonTeamMemberLogInfo.h deleted file mode 100644 index 2363b88e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNonTeamMemberLogInfo.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGUserLogInfo.h" - -@class DBTEAMLOGNonTeamMemberLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NonTeamMemberLogInfo` struct. -/// -/// Non team member's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNonTeamMemberLogInfo : DBTEAMLOGUserLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NonTeamMemberLogInfo` struct. -/// -@interface DBTEAMLOGNonTeamMemberLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNonTeamMemberLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNonTeamMemberLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTeamMemberLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNonTeamMemberLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGNonTeamMemberLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTeamMemberLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNonTeamMemberLogInfo` object. -/// -+ (DBTEAMLOGNonTeamMemberLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNonTrustedTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNonTrustedTeamDetails.h deleted file mode 100644 index 58ec2bb0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNonTrustedTeamDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNonTrustedTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NonTrustedTeamDetails` struct. -/// -/// The email to which the request was sent -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNonTrustedTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email to which the request was sent. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The email to which the request was sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NonTrustedTeamDetails` struct. -/// -@interface DBTEAMLOGNonTrustedTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNonTrustedTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNonTrustedTeamDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTrustedTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNonTrustedTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNonTrustedTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTrustedTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNonTrustedTeamDetails` object. -/// -+ (DBTEAMLOGNonTrustedTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclInviteOnlyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclInviteOnlyDetails.h deleted file mode 100644 index f63f660c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclInviteOnlyDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclInviteOnlyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclInviteOnlyDetails` struct. -/// -/// Changed Paper doc to invite-only. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclInviteOnlyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclInviteOnlyDetails` struct. -/// -@interface DBTEAMLOGNoteAclInviteOnlyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclInviteOnlyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclInviteOnlyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclInviteOnlyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclInviteOnlyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclInviteOnlyDetails` object. -/// -+ (DBTEAMLOGNoteAclInviteOnlyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclInviteOnlyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclInviteOnlyType.h deleted file mode 100644 index 5fcd8f52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclInviteOnlyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclInviteOnlyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclInviteOnlyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclInviteOnlyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclInviteOnlyType` struct. -/// -@interface DBTEAMLOGNoteAclInviteOnlyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclInviteOnlyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclInviteOnlyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclInviteOnlyType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclInviteOnlyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclInviteOnlyType` object. -/// -+ (DBTEAMLOGNoteAclInviteOnlyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclLinkDetails.h deleted file mode 100644 index d9c4d1b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclLinkDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclLinkDetails` struct. -/// -/// Changed Paper doc to link-accessible. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclLinkDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclLinkDetails` struct. -/// -@interface DBTEAMLOGNoteAclLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclLinkDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclLinkDetails` object. -/// -+ (DBTEAMLOGNoteAclLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclLinkType.h deleted file mode 100644 index 018ea114..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclLinkType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclLinkType` struct. -/// -@interface DBTEAMLOGNoteAclLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclLinkType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclLinkType` object. -/// -+ (DBTEAMLOGNoteAclLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclTeamLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclTeamLinkDetails.h deleted file mode 100644 index fbc13a65..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclTeamLinkDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclTeamLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclTeamLinkDetails` struct. -/// -/// Changed Paper doc to link-accessible for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclTeamLinkDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclTeamLinkDetails` struct. -/// -@interface DBTEAMLOGNoteAclTeamLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclTeamLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclTeamLinkDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclTeamLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclTeamLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclTeamLinkDetails` object. -/// -+ (DBTEAMLOGNoteAclTeamLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclTeamLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclTeamLinkType.h deleted file mode 100644 index 8a9dd10a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteAclTeamLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclTeamLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclTeamLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclTeamLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclTeamLinkType` struct. -/// -@interface DBTEAMLOGNoteAclTeamLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclTeamLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclTeamLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclTeamLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclTeamLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclTeamLinkType` object. -/// -+ (DBTEAMLOGNoteAclTeamLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteShareReceiveDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteShareReceiveDetails.h deleted file mode 100644 index 293cab96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteShareReceiveDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteShareReceiveDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteShareReceiveDetails` struct. -/// -/// Shared received Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteShareReceiveDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteShareReceiveDetails` struct. -/// -@interface DBTEAMLOGNoteShareReceiveDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteShareReceiveDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteShareReceiveDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteShareReceiveDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteShareReceiveDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteShareReceiveDetails` object. -/// -+ (DBTEAMLOGNoteShareReceiveDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteShareReceiveType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteShareReceiveType.h deleted file mode 100644 index 6cefd5f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteShareReceiveType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteShareReceiveType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteShareReceiveType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteShareReceiveType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteShareReceiveType` struct. -/// -@interface DBTEAMLOGNoteShareReceiveTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteShareReceiveType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteShareReceiveType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteShareReceiveType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteShareReceiveType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteShareReceiveType` object. -/// -+ (DBTEAMLOGNoteShareReceiveType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteSharedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteSharedDetails.h deleted file mode 100644 index ea05fafb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteSharedDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteSharedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteSharedDetails` struct. -/// -/// Shared Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteSharedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteSharedDetails` struct. -/// -@interface DBTEAMLOGNoteSharedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteSharedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteSharedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteSharedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteSharedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteSharedDetails` object. -/// -+ (DBTEAMLOGNoteSharedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteSharedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteSharedType.h deleted file mode 100644 index c5718524..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGNoteSharedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteSharedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteSharedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteSharedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteSharedType` struct. -/// -@interface DBTEAMLOGNoteSharedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteSharedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteSharedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteSharedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteSharedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteSharedType` object. -/// -+ (DBTEAMLOGNoteSharedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelAddedDetails.h deleted file mode 100644 index b963cb0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelAddedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; -@class DBTEAMLOGObjectLabelAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelAddedDetails` struct. -/// -/// Added a label. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelAddedDetails : NSObject - -#pragma mark - Instance fields - -/// Labels mark a file or folder. -@property (nonatomic, readonly) DBTEAMLOGLabelType *labelType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param labelType Labels mark a file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLabelType:(DBTEAMLOGLabelType *)labelType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelAddedDetails` struct. -/// -@interface DBTEAMLOGObjectLabelAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelAddedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelAddedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelAddedDetails` object. -/// -+ (DBTEAMLOGObjectLabelAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelAddedType.h deleted file mode 100644 index 17a52095..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelAddedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGObjectLabelAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelAddedType` struct. -/// -@interface DBTEAMLOGObjectLabelAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelAddedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelAddedType` object. -/// -+ (DBTEAMLOGObjectLabelAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelRemovedDetails.h deleted file mode 100644 index 82f7c474..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelRemovedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; -@class DBTEAMLOGObjectLabelRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelRemovedDetails` struct. -/// -/// Removed a label. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Labels mark a file or folder. -@property (nonatomic, readonly) DBTEAMLOGLabelType *labelType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param labelType Labels mark a file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLabelType:(DBTEAMLOGLabelType *)labelType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelRemovedDetails` struct. -/// -@interface DBTEAMLOGObjectLabelRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelRemovedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelRemovedDetails` object. -/// -+ (DBTEAMLOGObjectLabelRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelRemovedType.h deleted file mode 100644 index b5048737..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelRemovedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGObjectLabelRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelRemovedType` struct. -/// -@interface DBTEAMLOGObjectLabelRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelRemovedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelRemovedType` object. -/// -+ (DBTEAMLOGObjectLabelRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelUpdatedValueDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelUpdatedValueDetails.h deleted file mode 100644 index 933016e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelUpdatedValueDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; -@class DBTEAMLOGObjectLabelUpdatedValueDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelUpdatedValueDetails` struct. -/// -/// Updated a label's value. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueDetails : NSObject - -#pragma mark - Instance fields - -/// Labels mark a file or folder. -@property (nonatomic, readonly) DBTEAMLOGLabelType *labelType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param labelType Labels mark a file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLabelType:(DBTEAMLOGLabelType *)labelType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelUpdatedValueDetails` struct. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelUpdatedValueDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelUpdatedValueDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelUpdatedValueDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelUpdatedValueDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelUpdatedValueDetails` -/// object. -/// -+ (DBTEAMLOGObjectLabelUpdatedValueDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelUpdatedValueType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelUpdatedValueType.h deleted file mode 100644 index 814bb2b1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGObjectLabelUpdatedValueType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGObjectLabelUpdatedValueType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelUpdatedValueType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelUpdatedValueType` struct. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelUpdatedValueType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelUpdatedValueType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelUpdatedValueType *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelUpdatedValueType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelUpdatedValueType` -/// object. -/// -+ (DBTEAMLOGObjectLabelUpdatedValueType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOpenNoteSharedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOpenNoteSharedDetails.h deleted file mode 100644 index 5c11c80b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOpenNoteSharedDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOpenNoteSharedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OpenNoteSharedDetails` struct. -/// -/// Opened shared Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOpenNoteSharedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OpenNoteSharedDetails` struct. -/// -@interface DBTEAMLOGOpenNoteSharedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOpenNoteSharedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOpenNoteSharedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOpenNoteSharedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOpenNoteSharedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOpenNoteSharedDetails` object. -/// -+ (DBTEAMLOGOpenNoteSharedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOpenNoteSharedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOpenNoteSharedType.h deleted file mode 100644 index 9e050442..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOpenNoteSharedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOpenNoteSharedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OpenNoteSharedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOpenNoteSharedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OpenNoteSharedType` struct. -/// -@interface DBTEAMLOGOpenNoteSharedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOpenNoteSharedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOpenNoteSharedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOpenNoteSharedType *)instance; - -/// -/// Deserializes `DBTEAMLOGOpenNoteSharedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOpenNoteSharedType` object. -/// -+ (DBTEAMLOGOpenNoteSharedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizationDetails.h deleted file mode 100644 index 7e82eed5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizationDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizationDetails` struct. -/// -/// More details about the organization. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizationDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the organization. -@property (nonatomic, readonly, copy) NSString *organization; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param organization The name of the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganization:(NSString *)organization; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizationDetails` struct. -/// -@interface DBTEAMLOGOrganizationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizationDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizationDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizationDetails` object. -/// -+ (DBTEAMLOGOrganizationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizationName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizationName.h deleted file mode 100644 index 224ca1a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizationName.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizationName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizationName` struct. -/// -/// The name of the organization -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizationName : NSObject - -#pragma mark - Instance fields - -/// The name of the organization. -@property (nonatomic, readonly, copy) NSString *organization; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param organization The name of the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganization:(NSString *)organization; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizationName` struct. -/// -@interface DBTEAMLOGOrganizationNameSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizationName` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizationName` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationName` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizationName *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizationName` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationName` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizationName` object. -/// -+ (DBTEAMLOGOrganizationName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizeFolderWithTidyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizeFolderWithTidyDetails.h deleted file mode 100644 index 44a26163..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizeFolderWithTidyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizeFolderWithTidyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizeFolderWithTidyDetails` struct. -/// -/// Organized a folder with multi-file organize. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizeFolderWithTidyDetails` struct. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizeFolderWithTidyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizeFolderWithTidyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizeFolderWithTidyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizeFolderWithTidyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizeFolderWithTidyDetails` -/// object. -/// -+ (DBTEAMLOGOrganizeFolderWithTidyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizeFolderWithTidyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizeFolderWithTidyType.h deleted file mode 100644 index 22184388..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOrganizeFolderWithTidyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizeFolderWithTidyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizeFolderWithTidyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizeFolderWithTidyType` struct. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizeFolderWithTidyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizeFolderWithTidyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizeFolderWithTidyType *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizeFolderWithTidyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizeFolderWithTidyType` -/// object. -/// -+ (DBTEAMLOGOrganizeFolderWithTidyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOriginLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOriginLogInfo.h deleted file mode 100644 index 41430324..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOriginLogInfo.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccessMethodLogInfo; -@class DBTEAMLOGGeoLocationLogInfo; -@class DBTEAMLOGOriginLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OriginLogInfo` struct. -/// -/// The origin from which the actor performed the action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOriginLogInfo : NSObject - -#pragma mark - Instance fields - -/// Geographic location details. -@property (nonatomic, readonly, nullable) DBTEAMLOGGeoLocationLogInfo *geoLocation; - -/// The method that was used to perform the action. -@property (nonatomic, readonly) DBTEAMLOGAccessMethodLogInfo *accessMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessMethod The method that was used to perform the action. -/// @param geoLocation Geographic location details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessMethod:(DBTEAMLOGAccessMethodLogInfo *)accessMethod - geoLocation:(nullable DBTEAMLOGGeoLocationLogInfo *)geoLocation; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessMethod The method that was used to perform the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessMethod:(DBTEAMLOGAccessMethodLogInfo *)accessMethod; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OriginLogInfo` struct. -/// -@interface DBTEAMLOGOriginLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOriginLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOriginLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOriginLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOriginLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGOriginLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOriginLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOriginLogInfo` object. -/// -+ (DBTEAMLOGOriginLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewCreateReportDetails.h deleted file mode 100644 index 697e42b3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewCreateReportDetails` struct. -/// -/// Report created: Views of old links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` object. -/// -+ (DBTEAMLOGOutdatedLinkViewCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewCreateReportType.h deleted file mode 100644 index e89fe3ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewCreateReportType` struct. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOutdatedLinkViewCreateReportType` -/// object. -/// -+ (DBTEAMLOGOutdatedLinkViewCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewReportFailedDetails.h deleted file mode 100644 index e436b810..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewReportFailedDetails` struct. -/// -/// Couldn't create report: Views of old links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` object. -/// -+ (DBTEAMLOGOutdatedLinkViewReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewReportFailedType.h deleted file mode 100644 index 66a538d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGOutdatedLinkViewReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewReportFailedType` struct. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOutdatedLinkViewReportFailedType` -/// object. -/// -+ (DBTEAMLOGOutdatedLinkViewReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAccessType.h deleted file mode 100644 index aa99c753..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAccessType.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAccessType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperAccessType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperAccessTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperAccessType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperAccessTypeTag) { - /// (no description). - DBTEAMLOGPaperAccessTypeCommenter, - - /// (no description). - DBTEAMLOGPaperAccessTypeEditor, - - /// (no description). - DBTEAMLOGPaperAccessTypeViewer, - - /// (no description). - DBTEAMLOGPaperAccessTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperAccessTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "commenter". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommenter; - -/// -/// Initializes union class with tag state of "editor". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "viewer". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "commenter". -/// -/// @return Whether the union's current tag state has value "commenter". -/// -- (BOOL)isCommenter; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperAccessType` union. -/// -@interface DBTEAMLOGPaperAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperAccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperAccessType` object. -/// -+ (DBTEAMLOGPaperAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAdminExportStartDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAdminExportStartDetails.h deleted file mode 100644 index 57ff42e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAdminExportStartDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAdminExportStartDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAdminExportStartDetails` struct. -/// -/// Exported all team Paper docs. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperAdminExportStartDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperAdminExportStartDetails` struct. -/// -@interface DBTEAMLOGPaperAdminExportStartDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperAdminExportStartDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperAdminExportStartDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperAdminExportStartDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperAdminExportStartDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperAdminExportStartDetails` -/// object. -/// -+ (DBTEAMLOGPaperAdminExportStartDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAdminExportStartType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAdminExportStartType.h deleted file mode 100644 index 3aec1677..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperAdminExportStartType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAdminExportStartType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAdminExportStartType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperAdminExportStartType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperAdminExportStartType` struct. -/// -@interface DBTEAMLOGPaperAdminExportStartTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperAdminExportStartType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperAdminExportStartType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperAdminExportStartType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperAdminExportStartType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperAdminExportStartType` object. -/// -+ (DBTEAMLOGPaperAdminExportStartType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeDeploymentPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeDeploymentPolicyDetails.h deleted file mode 100644 index d20d334f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeDeploymentPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeDeploymentPolicyDetails; -@class DBTEAMPOLICIESPaperDeploymentPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeDeploymentPolicyDetails` struct. -/// -/// Changed whether Dropbox Paper, when enabled, is deployed to all members or -/// to specific members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Paper deployment policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDeploymentPolicy *dNewValue; - -/// Previous Dropbox Paper deployment policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESPaperDeploymentPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Paper deployment policy. -/// @param previousValue Previous Dropbox Paper deployment policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperDeploymentPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESPaperDeploymentPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Dropbox Paper deployment policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperDeploymentPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeDeploymentPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeDeploymentPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeDeploymentPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeDeploymentPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` object. -/// -+ (DBTEAMLOGPaperChangeDeploymentPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeDeploymentPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeDeploymentPolicyType.h deleted file mode 100644 index 6f3422a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeDeploymentPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeDeploymentPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeDeploymentPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeDeploymentPolicyType` struct. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeDeploymentPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeDeploymentPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeDeploymentPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeDeploymentPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperChangeDeploymentPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h deleted file mode 100644 index d3f177a0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberLinkPolicyDetails; -@class DBTEAMLOGPaperMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberLinkPolicyDetails` struct. -/// -/// Changed whether non-members can view Paper docs with link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New paper external link accessibility policy. -@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New paper external link accessibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberLinkPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberLinkPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` object. -/// -+ (DBTEAMLOGPaperChangeMemberLinkPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyType.h deleted file mode 100644 index 14135013..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberLinkPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberLinkPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberLinkPolicyType` struct. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberLinkPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberLinkPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberLinkPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeMemberLinkPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperChangeMemberLinkPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberPolicyDetails.h deleted file mode 100644 index 2de058e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberPolicyDetails; -@class DBTEAMLOGPaperMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberPolicyDetails` struct. -/// -/// Changed whether members can share Paper docs outside team, and if docs are -/// accessible only by team members or anyone by default. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New paper external accessibility policy. -@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicy *dNewValue; - -/// Previous paper external accessibility policy. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGPaperMemberPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New paper external accessibility policy. -/// @param previousValue Previous paper external accessibility policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperMemberPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGPaperMemberPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New paper external accessibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberPolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangeMemberPolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeMemberPolicyDetails` -/// object. -/// -+ (DBTEAMLOGPaperChangeMemberPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberPolicyType.h deleted file mode 100644 index 1dd4b3ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangeMemberPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberPolicyType` struct. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangeMemberPolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeMemberPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperChangeMemberPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangePolicyDetails.h deleted file mode 100644 index 46811c4e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangePolicyDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangePolicyDetails; -@class DBTEAMPOLICIESPaperEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangePolicyDetails` struct. -/// -/// Enabled/disabled Dropbox Paper for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Paper policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperEnabledPolicy *dNewValue; - -/// Previous Dropbox Paper policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESPaperEnabledPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Paper policy. -/// @param previousValue Previous Dropbox Paper policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperEnabledPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESPaperEnabledPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Dropbox Paper policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperEnabledPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangePolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangePolicyDetails` object. -/// -+ (DBTEAMLOGPaperChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangePolicyType.h deleted file mode 100644 index 8d4334d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangePolicyType` struct. -/// -@interface DBTEAMLOGPaperChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangePolicyType` object. -/// -+ (DBTEAMLOGPaperChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddMemberDetails.h deleted file mode 100644 index 758d17bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddMemberDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddMemberDetails` struct. -/// -/// Added users and/or groups to Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddMemberDetails` struct. -/// -@interface DBTEAMLOGPaperContentAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddMemberDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddMemberDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddMemberType.h deleted file mode 100644 index b7cbdf69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddMemberType` struct. -/// -@interface DBTEAMLOGPaperContentAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddMemberType` object. -/// -+ (DBTEAMLOGPaperContentAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddToFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddToFolderDetails.h deleted file mode 100644 index 0ae410d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddToFolderDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddToFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddToFolderDetails` struct. -/// -/// Added Paper doc/folder to folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddToFolderDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Parent asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *parentAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param parentAssetIndex Parent asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - targetAssetIndex:(NSNumber *)targetAssetIndex - parentAssetIndex:(NSNumber *)parentAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddToFolderDetails` struct. -/// -@interface DBTEAMLOGPaperContentAddToFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddToFolderDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddToFolderDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddToFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddToFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddToFolderDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentAddToFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddToFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddToFolderType.h deleted file mode 100644 index b7bb580b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentAddToFolderType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddToFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddToFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddToFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddToFolderType` struct. -/// -@interface DBTEAMLOGPaperContentAddToFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddToFolderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddToFolderType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddToFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddToFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddToFolderType` -/// object. -/// -+ (DBTEAMLOGPaperContentAddToFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentArchiveDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentArchiveDetails.h deleted file mode 100644 index 249a588a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentArchiveDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentArchiveDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentArchiveDetails` struct. -/// -/// Archived Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentArchiveDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentArchiveDetails` struct. -/// -@interface DBTEAMLOGPaperContentArchiveDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentArchiveDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentArchiveDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentArchiveDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentArchiveDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentArchiveDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentArchiveDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentArchiveType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentArchiveType.h deleted file mode 100644 index 3d76c809..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentArchiveType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentArchiveType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentArchiveType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentArchiveType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentArchiveType` struct. -/// -@interface DBTEAMLOGPaperContentArchiveTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentArchiveType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentArchiveType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentArchiveType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentArchiveType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentArchiveType` object. -/// -+ (DBTEAMLOGPaperContentArchiveType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentCreateDetails.h deleted file mode 100644 index 1df74225..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentCreateDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentCreateDetails` struct. -/// -/// Created Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentCreateDetails` struct. -/// -@interface DBTEAMLOGPaperContentCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentCreateDetails` object. -/// -+ (DBTEAMLOGPaperContentCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentCreateType.h deleted file mode 100644 index f5e8192e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentCreateType` struct. -/// -@interface DBTEAMLOGPaperContentCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentCreateType` object. -/// -+ (DBTEAMLOGPaperContentCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentPermanentlyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentPermanentlyDeleteDetails.h deleted file mode 100644 index 6d65348d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentPermanentlyDeleteDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentPermanentlyDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentPermanentlyDeleteDetails` struct. -/// -/// Permanently deleted Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentPermanentlyDeleteDetails` -/// struct. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentPermanentlyDeleteDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentPermanentlyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentPermanentlyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` object. -/// -+ (DBTEAMLOGPaperContentPermanentlyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentPermanentlyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentPermanentlyDeleteType.h deleted file mode 100644 index 0b815d68..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentPermanentlyDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentPermanentlyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentPermanentlyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentPermanentlyDeleteType` struct. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentPermanentlyDeleteType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentPermanentlyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentPermanentlyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentPermanentlyDeleteType` -/// object. -/// -+ (DBTEAMLOGPaperContentPermanentlyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveFromFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveFromFolderDetails.h deleted file mode 100644 index a20e399e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveFromFolderDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveFromFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveFromFolderDetails` struct. -/// -/// Removed Paper doc/folder from folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Target asset position in the Assets list. -@property (nonatomic, readonly, nullable) NSNumber *targetAssetIndex; - -/// Parent asset position in the Assets list. -@property (nonatomic, readonly, nullable) NSNumber *parentAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param parentAssetIndex Parent asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - targetAssetIndex:(nullable NSNumber *)targetAssetIndex - parentAssetIndex:(nullable NSNumber *)parentAssetIndex; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveFromFolderDetails` -/// struct. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveFromFolderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveFromFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveFromFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` object. -/// -+ (DBTEAMLOGPaperContentRemoveFromFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveFromFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveFromFolderType.h deleted file mode 100644 index f2f50f66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveFromFolderType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveFromFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveFromFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveFromFolderType` struct. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveFromFolderType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentRemoveFromFolderType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveFromFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveFromFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRemoveFromFolderType` -/// object. -/// -+ (DBTEAMLOGPaperContentRemoveFromFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveMemberDetails.h deleted file mode 100644 index 9539c349..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveMemberDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveMemberDetails` struct. -/// -/// Removed users and/or groups from Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGPaperContentRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveMemberDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentRemoveMemberDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRemoveMemberDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveMemberType.h deleted file mode 100644 index 7f9f5b10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRemoveMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveMemberType` struct. -/// -@interface DBTEAMLOGPaperContentRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRemoveMemberType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRemoveMemberType` -/// object. -/// -+ (DBTEAMLOGPaperContentRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRenameDetails.h deleted file mode 100644 index a5b32f1d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRenameDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRenameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRenameDetails` struct. -/// -/// Renamed Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRenameDetails` struct. -/// -@interface DBTEAMLOGPaperContentRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRenameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRenameDetails` object. -/// -+ (DBTEAMLOGPaperContentRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRenameType.h deleted file mode 100644 index 03618ae8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRenameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRenameType` struct. -/// -@interface DBTEAMLOGPaperContentRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRenameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRenameType` object. -/// -+ (DBTEAMLOGPaperContentRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRestoreDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRestoreDetails.h deleted file mode 100644 index 242be778..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRestoreDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRestoreDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRestoreDetails` struct. -/// -/// Restored archived Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRestoreDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRestoreDetails` struct. -/// -@interface DBTEAMLOGPaperContentRestoreDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRestoreDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRestoreDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRestoreDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRestoreDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRestoreDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentRestoreDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRestoreType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRestoreType.h deleted file mode 100644 index d7898eb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperContentRestoreType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRestoreType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRestoreType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRestoreType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRestoreType` struct. -/// -@interface DBTEAMLOGPaperContentRestoreTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRestoreType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRestoreType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRestoreType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRestoreType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRestoreType` object. -/// -+ (DBTEAMLOGPaperContentRestoreType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicy.h deleted file mode 100644 index e3468456..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDefaultFolderPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicy` union. -/// -/// Policy to set default access for newly created Paper folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperDefaultFolderPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGPaperDefaultFolderPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperDefaultFolderPolicyTag) { - /// (no description). - DBTEAMLOGPaperDefaultFolderPolicyEveryoneInTeam, - - /// (no description). - DBTEAMLOGPaperDefaultFolderPolicyInviteOnly, - - /// (no description). - DBTEAMLOGPaperDefaultFolderPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "everyone_in_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryoneInTeam; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "everyone_in_team". -/// -/// @return Whether the union's current tag state has value "everyone_in_team". -/// -- (BOOL)isEveryoneInTeam; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperDefaultFolderPolicy` union. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDefaultFolderPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDefaultFolderPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDefaultFolderPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDefaultFolderPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDefaultFolderPolicy` object. -/// -+ (DBTEAMLOGPaperDefaultFolderPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h deleted file mode 100644 index e8e687a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDefaultFolderPolicy; -@class DBTEAMLOGPaperDefaultFolderPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicyChangedDetails` struct. -/// -/// Changed Paper Default Folder Policy setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Paper Default Folder Policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicy *dNewValue; - -/// Previous Paper Default Folder Policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Paper Default Folder Policy. -/// @param previousValue Previous Paper Default Folder Policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperDefaultFolderPolicy *)dNewValue - previousValue:(DBTEAMLOGPaperDefaultFolderPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDefaultFolderPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` object. -/// -+ (DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedType.h deleted file mode 100644 index 77706571..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDefaultFolderPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDefaultFolderPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDefaultFolderPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDefaultFolderPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDefaultFolderPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` object. -/// -+ (DBTEAMLOGPaperDefaultFolderPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicy.h deleted file mode 100644 index 59540595..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDesktopPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicy` union. -/// -/// Policy for controlling if team members can use Paper Desktop -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDesktopPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperDesktopPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperDesktopPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperDesktopPolicyTag) { - /// (no description). - DBTEAMLOGPaperDesktopPolicyDisabled, - - /// (no description). - DBTEAMLOGPaperDesktopPolicyEnabled, - - /// (no description). - DBTEAMLOGPaperDesktopPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperDesktopPolicy` union. -/// -@interface DBTEAMLOGPaperDesktopPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDesktopPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDesktopPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDesktopPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDesktopPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDesktopPolicy` object. -/// -+ (DBTEAMLOGPaperDesktopPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicyChangedDetails.h deleted file mode 100644 index e8448113..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDesktopPolicy; -@class DBTEAMLOGPaperDesktopPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicyChangedDetails` struct. -/// -/// Enabled/disabled Paper Desktop for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Paper Desktop policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicy *dNewValue; - -/// Previous Paper Desktop policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Paper Desktop policy. -/// @param previousValue Previous Paper Desktop policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperDesktopPolicy *)dNewValue - previousValue:(DBTEAMLOGPaperDesktopPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDesktopPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDesktopPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDesktopPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDesktopPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDesktopPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDesktopPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGPaperDesktopPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicyChangedType.h deleted file mode 100644 index 453bc55f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDesktopPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDesktopPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDesktopPolicyChangedType` struct. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDesktopPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDesktopPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDesktopPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDesktopPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDesktopPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGPaperDesktopPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocAddCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocAddCommentDetails.h deleted file mode 100644 index b96c0a79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocAddCommentDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocAddCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocAddCommentDetails` struct. -/// -/// Added Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocAddCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocAddCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocAddCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocAddCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocAddCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocAddCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocAddCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocAddCommentDetails` object. -/// -+ (DBTEAMLOGPaperDocAddCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocAddCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocAddCommentType.h deleted file mode 100644 index 6079ea5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocAddCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocAddCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocAddCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocAddCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocAddCommentType` struct. -/// -@interface DBTEAMLOGPaperDocAddCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocAddCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocAddCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocAddCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocAddCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocAddCommentType` object. -/// -+ (DBTEAMLOGPaperDocAddCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeMemberRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeMemberRoleDetails.h deleted file mode 100644 index 30742f92..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeMemberRoleDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAccessType; -@class DBTEAMLOGPaperDocChangeMemberRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeMemberRoleDetails` struct. -/// -/// Changed member permissions for Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Paper doc access type. -@property (nonatomic, readonly) DBTEAMLOGPaperAccessType *accessType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param accessType Paper doc access type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid accessType:(DBTEAMLOGPaperAccessType *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeMemberRoleDetails` struct. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeMemberRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeMemberRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeMemberRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeMemberRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeMemberRoleDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeMemberRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeMemberRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeMemberRoleType.h deleted file mode 100644 index 847b5f7f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeMemberRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeMemberRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeMemberRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeMemberRoleType` struct. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeMemberRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocChangeMemberRoleType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeMemberRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeMemberRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeMemberRoleType` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeMemberRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSharingPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSharingPolicyDetails.h deleted file mode 100644 index 515109c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSharingPolicyDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSharingPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSharingPolicyDetails` struct. -/// -/// Changed sharing setting for Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Sharing policy with external users. -@property (nonatomic, readonly, copy, nullable) NSString *publicSharingPolicy; - -/// Sharing policy with team. -@property (nonatomic, readonly, copy, nullable) NSString *teamSharingPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param publicSharingPolicy Sharing policy with external users. -/// @param teamSharingPolicy Sharing policy with team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - publicSharingPolicy:(nullable NSString *)publicSharingPolicy - teamSharingPolicy:(nullable NSString *)teamSharingPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSharingPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSharingPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSharingPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSharingPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` object. -/// -+ (DBTEAMLOGPaperDocChangeSharingPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSharingPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSharingPolicyType.h deleted file mode 100644 index fe45d994..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSharingPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSharingPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSharingPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSharingPolicyType` struct. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSharingPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSharingPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSharingPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeSharingPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeSharingPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSubscriptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSubscriptionDetails.h deleted file mode 100644 index fb263727..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSubscriptionDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSubscriptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSubscriptionDetails` struct. -/// -/// Followed/unfollowed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// New doc subscription level. -@property (nonatomic, readonly, copy) NSString *dNewSubscriptionLevel; - -/// Previous doc subscription level. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousSubscriptionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New doc subscription level. -/// @param previousSubscriptionLevel Previous doc subscription level. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel - previousSubscriptionLevel:(nullable NSString *)previousSubscriptionLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New doc subscription level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSubscriptionDetails` struct. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSubscriptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeSubscriptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSubscriptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSubscriptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeSubscriptionDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeSubscriptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSubscriptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSubscriptionType.h deleted file mode 100644 index 71063128..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocChangeSubscriptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSubscriptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSubscriptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSubscriptionType` struct. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSubscriptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocChangeSubscriptionType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSubscriptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSubscriptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeSubscriptionType` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeSubscriptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeleteCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeleteCommentDetails.h deleted file mode 100644 index 98812935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeleteCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeleteCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeleteCommentDetails` struct. -/// -/// Deleted Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeleteCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeleteCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocDeleteCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeleteCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeleteCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeleteCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeleteCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeleteCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocDeleteCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeleteCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeleteCommentType.h deleted file mode 100644 index 46b227c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeleteCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeleteCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeleteCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeleteCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeleteCommentType` struct. -/// -@interface DBTEAMLOGPaperDocDeleteCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeleteCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeleteCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeleteCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeleteCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeleteCommentType` object. -/// -+ (DBTEAMLOGPaperDocDeleteCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeletedDetails.h deleted file mode 100644 index e92889df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeletedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeletedDetails` struct. -/// -/// Archived Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeletedDetails` struct. -/// -@interface DBTEAMLOGPaperDocDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeletedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeletedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeletedDetails` object. -/// -+ (DBTEAMLOGPaperDocDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeletedType.h deleted file mode 100644 index 696c1796..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDeletedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeletedType` struct. -/// -@interface DBTEAMLOGPaperDocDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeletedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeletedType` object. -/// -+ (DBTEAMLOGPaperDocDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDownloadDetails.h deleted file mode 100644 index 6cca6a1c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDownloadDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDownloadDetails; -@class DBTEAMLOGPaperDownloadFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDownloadDetails` struct. -/// -/// Downloaded Paper doc in specific format. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Export file format. -@property (nonatomic, readonly) DBTEAMLOGPaperDownloadFormat *exportFileFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param exportFileFormat Export file format. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - exportFileFormat:(DBTEAMLOGPaperDownloadFormat *)exportFileFormat; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDownloadDetails` struct. -/// -@interface DBTEAMLOGPaperDocDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDownloadDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDownloadDetails` object. -/// -+ (DBTEAMLOGPaperDocDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDownloadType.h deleted file mode 100644 index 8e692b99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDownloadType` struct. -/// -@interface DBTEAMLOGPaperDocDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDownloadType` object. -/// -+ (DBTEAMLOGPaperDocDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditCommentDetails.h deleted file mode 100644 index 8958c355..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditCommentDetails` struct. -/// -/// Edited Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocEditCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocEditCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditCommentType.h deleted file mode 100644 index 4f9dfc79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditCommentType` struct. -/// -@interface DBTEAMLOGPaperDocEditCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditCommentType` object. -/// -+ (DBTEAMLOGPaperDocEditCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditDetails.h deleted file mode 100644 index c34d34bf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditDetails` struct. -/// -/// Edited Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditDetails` struct. -/// -@interface DBTEAMLOGPaperDocEditDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditDetails` object. -/// -+ (DBTEAMLOGPaperDocEditDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditType.h deleted file mode 100644 index d3747dda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocEditType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditType` struct. -/// -@interface DBTEAMLOGPaperDocEditTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditType` object. -/// -+ (DBTEAMLOGPaperDocEditType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocFollowedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocFollowedDetails.h deleted file mode 100644 index c390d210..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocFollowedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocFollowedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocFollowedDetails` struct. -/// -/// Followed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocFollowedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocFollowedDetails` struct. -/// -@interface DBTEAMLOGPaperDocFollowedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocFollowedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocFollowedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocFollowedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocFollowedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocFollowedDetails` object. -/// -+ (DBTEAMLOGPaperDocFollowedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocFollowedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocFollowedType.h deleted file mode 100644 index a3edca2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocFollowedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocFollowedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocFollowedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocFollowedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocFollowedType` struct. -/// -@interface DBTEAMLOGPaperDocFollowedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocFollowedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocFollowedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocFollowedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocFollowedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocFollowedType` object. -/// -+ (DBTEAMLOGPaperDocFollowedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocMentionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocMentionDetails.h deleted file mode 100644 index 3bd32a94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocMentionDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocMentionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocMentionDetails` struct. -/// -/// Mentioned user in Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocMentionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocMentionDetails` struct. -/// -@interface DBTEAMLOGPaperDocMentionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocMentionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocMentionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocMentionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocMentionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocMentionDetails` object. -/// -+ (DBTEAMLOGPaperDocMentionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocMentionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocMentionType.h deleted file mode 100644 index 03bfa898..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocMentionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocMentionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocMentionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocMentionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocMentionType` struct. -/// -@interface DBTEAMLOGPaperDocMentionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocMentionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocMentionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocMentionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocMentionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocMentionType` object. -/// -+ (DBTEAMLOGPaperDocMentionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocOwnershipChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocOwnershipChangedDetails.h deleted file mode 100644 index fcb82f0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocOwnershipChangedDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocOwnershipChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocOwnershipChangedDetails` struct. -/// -/// Transferred ownership of Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Previous owner. -@property (nonatomic, readonly, copy, nullable) NSString *oldOwnerUserId; - -/// New owner. -@property (nonatomic, readonly, copy) NSString *dNewOwnerUserId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewOwnerUserId New owner. -/// @param oldOwnerUserId Previous owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewOwnerUserId:(NSString *)dNewOwnerUserId - oldOwnerUserId:(nullable NSString *)oldOwnerUserId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewOwnerUserId New owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid dNewOwnerUserId:(NSString *)dNewOwnerUserId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocOwnershipChangedDetails` struct. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocOwnershipChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocOwnershipChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocOwnershipChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocOwnershipChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocOwnershipChangedDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocOwnershipChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocOwnershipChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocOwnershipChangedType.h deleted file mode 100644 index bb9a81c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocOwnershipChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocOwnershipChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocOwnershipChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocOwnershipChangedType` struct. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocOwnershipChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocOwnershipChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocOwnershipChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocOwnershipChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocOwnershipChangedType` -/// object. -/// -+ (DBTEAMLOGPaperDocOwnershipChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRequestAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRequestAccessDetails.h deleted file mode 100644 index 361ad9df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRequestAccessDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRequestAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRequestAccessDetails` struct. -/// -/// Requested access to Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRequestAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRequestAccessDetails` struct. -/// -@interface DBTEAMLOGPaperDocRequestAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRequestAccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRequestAccessDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRequestAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRequestAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRequestAccessDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocRequestAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRequestAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRequestAccessType.h deleted file mode 100644 index a38d0328..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRequestAccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRequestAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRequestAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRequestAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRequestAccessType` struct. -/// -@interface DBTEAMLOGPaperDocRequestAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRequestAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRequestAccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRequestAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRequestAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRequestAccessType` object. -/// -+ (DBTEAMLOGPaperDocRequestAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocResolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocResolveCommentDetails.h deleted file mode 100644 index 15a4d093..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocResolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocResolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocResolveCommentDetails` struct. -/// -/// Resolved Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocResolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocResolveCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocResolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocResolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocResolveCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocResolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocResolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocResolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocResolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocResolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocResolveCommentType.h deleted file mode 100644 index fe373cca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocResolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocResolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocResolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocResolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocResolveCommentType` struct. -/// -@interface DBTEAMLOGPaperDocResolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocResolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocResolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocResolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocResolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocResolveCommentType` -/// object. -/// -+ (DBTEAMLOGPaperDocResolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRevertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRevertDetails.h deleted file mode 100644 index 03cdb6ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRevertDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRevertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRevertDetails` struct. -/// -/// Restored Paper doc to previous version. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRevertDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRevertDetails` struct. -/// -@interface DBTEAMLOGPaperDocRevertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRevertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRevertDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRevertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRevertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRevertDetails` object. -/// -+ (DBTEAMLOGPaperDocRevertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRevertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRevertType.h deleted file mode 100644 index 6b4bdc32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocRevertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRevertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRevertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRevertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRevertType` struct. -/// -@interface DBTEAMLOGPaperDocRevertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRevertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRevertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRevertType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRevertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRevertType` object. -/// -+ (DBTEAMLOGPaperDocRevertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocSlackShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocSlackShareDetails.h deleted file mode 100644 index e8d70ecd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocSlackShareDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocSlackShareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocSlackShareDetails` struct. -/// -/// Shared Paper doc via Slack. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocSlackShareDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocSlackShareDetails` struct. -/// -@interface DBTEAMLOGPaperDocSlackShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocSlackShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocSlackShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocSlackShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocSlackShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocSlackShareDetails` object. -/// -+ (DBTEAMLOGPaperDocSlackShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocSlackShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocSlackShareType.h deleted file mode 100644 index dd7150ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocSlackShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocSlackShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocSlackShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocSlackShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocSlackShareType` struct. -/// -@interface DBTEAMLOGPaperDocSlackShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocSlackShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocSlackShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocSlackShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocSlackShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocSlackShareType` object. -/// -+ (DBTEAMLOGPaperDocSlackShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTeamInviteDetails.h deleted file mode 100644 index a85489af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTeamInviteDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTeamInviteDetails` struct. -/// -/// Shared Paper doc with users and/or groups. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTeamInviteDetails` struct. -/// -@interface DBTEAMLOGPaperDocTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTeamInviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTeamInviteDetails` object. -/// -+ (DBTEAMLOGPaperDocTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTeamInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTeamInviteType.h deleted file mode 100644 index f3326863..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTeamInviteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTeamInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTeamInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTeamInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTeamInviteType` struct. -/// -@interface DBTEAMLOGPaperDocTeamInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTeamInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTeamInviteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTeamInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTeamInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTeamInviteType` object. -/// -+ (DBTEAMLOGPaperDocTeamInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTrashedDetails.h deleted file mode 100644 index 3fd612cf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTrashedDetails` struct. -/// -/// Deleted Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTrashedDetails` struct. -/// -@interface DBTEAMLOGPaperDocTrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTrashedDetails` object. -/// -+ (DBTEAMLOGPaperDocTrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTrashedType.h deleted file mode 100644 index 9be85976..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocTrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTrashedType` struct. -/// -@interface DBTEAMLOGPaperDocTrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTrashedType` object. -/// -+ (DBTEAMLOGPaperDocTrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUnresolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUnresolveCommentDetails.h deleted file mode 100644 index 69af9ced..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUnresolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUnresolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUnresolveCommentDetails` struct. -/// -/// Unresolved Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUnresolveCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUnresolveCommentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocUnresolveCommentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUnresolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUnresolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUnresolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocUnresolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUnresolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUnresolveCommentType.h deleted file mode 100644 index 33b0fe49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUnresolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUnresolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUnresolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUnresolveCommentType` struct. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUnresolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocUnresolveCommentType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUnresolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUnresolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUnresolveCommentType` -/// object. -/// -+ (DBTEAMLOGPaperDocUnresolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUntrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUntrashedDetails.h deleted file mode 100644 index 124f1ee1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUntrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUntrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUntrashedDetails` struct. -/// -/// Restored Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUntrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUntrashedDetails` struct. -/// -@interface DBTEAMLOGPaperDocUntrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUntrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocUntrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUntrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUntrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUntrashedDetails` object. -/// -+ (DBTEAMLOGPaperDocUntrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUntrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUntrashedType.h deleted file mode 100644 index 7654166b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocUntrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUntrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUntrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUntrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUntrashedType` struct. -/// -@interface DBTEAMLOGPaperDocUntrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUntrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocUntrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUntrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUntrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUntrashedType` object. -/// -+ (DBTEAMLOGPaperDocUntrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocViewDetails.h deleted file mode 100644 index 07758db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocViewDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocViewDetails` struct. -/// -/// Viewed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocViewDetails` struct. -/// -@interface DBTEAMLOGPaperDocViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocViewDetails` object. -/// -+ (DBTEAMLOGPaperDocViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocViewType.h deleted file mode 100644 index 49b1ae5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocViewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocViewType` struct. -/// -@interface DBTEAMLOGPaperDocViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocViewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocViewType` object. -/// -+ (DBTEAMLOGPaperDocViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocumentLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocumentLogInfo.h deleted file mode 100644 index 2b4c775b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDocumentLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocumentLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocumentLogInfo` struct. -/// -/// Paper document's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocumentLogInfo : NSObject - -#pragma mark - Instance fields - -/// Papers document Id. -@property (nonatomic, readonly, copy) NSString *docId; - -/// Paper document title. -@property (nonatomic, readonly, copy) NSString *docTitle; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId Papers document Id. -/// @param docTitle Paper document title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId docTitle:(NSString *)docTitle; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocumentLogInfo` struct. -/// -@interface DBTEAMLOGPaperDocumentLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocumentLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocumentLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocumentLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocumentLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocumentLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocumentLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocumentLogInfo` object. -/// -+ (DBTEAMLOGPaperDocumentLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDownloadFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDownloadFormat.h deleted file mode 100644 index 84d92d89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperDownloadFormat.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDownloadFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDownloadFormat` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDownloadFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperDownloadFormatTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperDownloadFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperDownloadFormatTag) { - /// (no description). - DBTEAMLOGPaperDownloadFormatDocx, - - /// (no description). - DBTEAMLOGPaperDownloadFormatHtml, - - /// (no description). - DBTEAMLOGPaperDownloadFormatMarkdown, - - /// (no description). - DBTEAMLOGPaperDownloadFormatPdf, - - /// (no description). - DBTEAMLOGPaperDownloadFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperDownloadFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "docx". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocx; - -/// -/// Initializes union class with tag state of "html". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "pdf". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPdf; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "docx". -/// -/// @return Whether the union's current tag state has value "docx". -/// -- (BOOL)isDocx; - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "pdf". -/// -/// @return Whether the union's current tag state has value "pdf". -/// -- (BOOL)isPdf; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperDownloadFormat` union. -/// -@interface DBTEAMLOGPaperDownloadFormatSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDownloadFormat` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDownloadFormat` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDownloadFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDownloadFormat *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDownloadFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDownloadFormat` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDownloadFormat` object. -/// -+ (DBTEAMLOGPaperDownloadFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h deleted file mode 100644 index 12172c59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupAdditionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupAdditionDetails` struct. -/// -/// Added users to Paper-enabled users list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupAdditionDetails` -/// struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionType.h deleted file mode 100644 index 5e5c5428..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupAdditionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupAdditionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupAdditionType` struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupAdditionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupAdditionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupAdditionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupAdditionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h deleted file mode 100644 index 32285a24..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupRemovalDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupRemovalDetails` struct. -/// -/// Removed users from Paper-enabled users list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupRemovalDetails` -/// struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalType.h deleted file mode 100644 index 2a5f4367..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupRemovalType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupRemovalType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupRemovalType` struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupRemovalType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupRemovalType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupRemovalType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperEnabledUsersGroupRemovalType` -/// object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupRemovalType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewAllowDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewAllowDetails.h deleted file mode 100644 index 7d98151c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewAllowDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewAllowDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewAllowDetails` struct. -/// -/// Changed Paper external sharing setting to anyone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewAllowDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewAllowDetails` struct. -/// -@interface DBTEAMLOGPaperExternalViewAllowDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewAllowDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewAllowDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewAllowDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewAllowDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewAllowDetails` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewAllowDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewAllowType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewAllowType.h deleted file mode 100644 index 88e9473f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewAllowType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewAllowType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewAllowType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewAllowType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewAllowType` struct. -/// -@interface DBTEAMLOGPaperExternalViewAllowTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewAllowType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewAllowType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewAllowType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewAllowType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewAllowType` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewAllowType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewDefaultTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewDefaultTeamDetails.h deleted file mode 100644 index 3fcf32ed..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewDefaultTeamDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewDefaultTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewDefaultTeamDetails` struct. -/// -/// Changed Paper external sharing setting to default team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewDefaultTeamDetails` -/// struct. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewDefaultTeamDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewDefaultTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewDefaultTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` object. -/// -+ (DBTEAMLOGPaperExternalViewDefaultTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewDefaultTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewDefaultTeamType.h deleted file mode 100644 index c98f612c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewDefaultTeamType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewDefaultTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewDefaultTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewDefaultTeamType` struct. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewDefaultTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewDefaultTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewDefaultTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewDefaultTeamType` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewDefaultTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewForbidDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewForbidDetails.h deleted file mode 100644 index 9f09bf35..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewForbidDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewForbidDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewForbidDetails` struct. -/// -/// Changed Paper external sharing setting to team-only. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewForbidDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewForbidDetails` struct. -/// -@interface DBTEAMLOGPaperExternalViewForbidDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewForbidDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewForbidDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewForbidDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewForbidDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewForbidDetails` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewForbidDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewForbidType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewForbidType.h deleted file mode 100644 index 3fca031b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperExternalViewForbidType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewForbidType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewForbidType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewForbidType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewForbidType` struct. -/// -@interface DBTEAMLOGPaperExternalViewForbidTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewForbidType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewForbidType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewForbidType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewForbidType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewForbidType` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewForbidType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderChangeSubscriptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderChangeSubscriptionDetails.h deleted file mode 100644 index e1837d79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderChangeSubscriptionDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderChangeSubscriptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderChangeSubscriptionDetails` struct. -/// -/// Followed/unfollowed Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// New folder subscription level. -@property (nonatomic, readonly, copy) NSString *dNewSubscriptionLevel; - -/// Previous folder subscription level. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousSubscriptionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New folder subscription level. -/// @param previousSubscriptionLevel Previous folder subscription level. Might -/// be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel - previousSubscriptionLevel:(nullable NSString *)previousSubscriptionLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New folder subscription level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderChangeSubscriptionDetails` -/// struct. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderChangeSubscriptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderChangeSubscriptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderChangeSubscriptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` object. -/// -+ (DBTEAMLOGPaperFolderChangeSubscriptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderChangeSubscriptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderChangeSubscriptionType.h deleted file mode 100644 index 9b72febc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderChangeSubscriptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderChangeSubscriptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderChangeSubscriptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderChangeSubscriptionType` struct. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderChangeSubscriptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderChangeSubscriptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderChangeSubscriptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderChangeSubscriptionType` -/// object. -/// -+ (DBTEAMLOGPaperFolderChangeSubscriptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderDeletedDetails.h deleted file mode 100644 index 488d67ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderDeletedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderDeletedDetails` struct. -/// -/// Archived Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderDeletedDetails` struct. -/// -@interface DBTEAMLOGPaperFolderDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderDeletedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderDeletedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderDeletedDetails` object. -/// -+ (DBTEAMLOGPaperFolderDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderDeletedType.h deleted file mode 100644 index 3b43c37f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderDeletedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderDeletedType` struct. -/// -@interface DBTEAMLOGPaperFolderDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderDeletedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderDeletedType` object. -/// -+ (DBTEAMLOGPaperFolderDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderFollowedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderFollowedDetails.h deleted file mode 100644 index 7962ce04..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderFollowedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderFollowedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderFollowedDetails` struct. -/// -/// Followed Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderFollowedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderFollowedDetails` struct. -/// -@interface DBTEAMLOGPaperFolderFollowedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderFollowedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderFollowedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderFollowedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderFollowedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderFollowedDetails` -/// object. -/// -+ (DBTEAMLOGPaperFolderFollowedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderFollowedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderFollowedType.h deleted file mode 100644 index 9993a7ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderFollowedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderFollowedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderFollowedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderFollowedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderFollowedType` struct. -/// -@interface DBTEAMLOGPaperFolderFollowedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderFollowedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderFollowedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderFollowedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderFollowedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderFollowedType` object. -/// -+ (DBTEAMLOGPaperFolderFollowedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderLogInfo.h deleted file mode 100644 index a9389bd1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderLogInfo.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderLogInfo` struct. -/// -/// Paper folder's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderLogInfo : NSObject - -#pragma mark - Instance fields - -/// Papers folder Id. -@property (nonatomic, readonly, copy) NSString *folderId; - -/// Paper folder name. -@property (nonatomic, readonly, copy) NSString *folderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderId Papers folder Id. -/// @param folderName Paper folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderId:(NSString *)folderId folderName:(NSString *)folderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderLogInfo` struct. -/// -@interface DBTEAMLOGPaperFolderLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderLogInfo` object. -/// -+ (DBTEAMLOGPaperFolderLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderTeamInviteDetails.h deleted file mode 100644 index 6d8dc9d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderTeamInviteDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderTeamInviteDetails` struct. -/// -/// Shared Paper folder with users and/or groups. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderTeamInviteDetails` struct. -/// -@interface DBTEAMLOGPaperFolderTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderTeamInviteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderTeamInviteDetails` -/// object. -/// -+ (DBTEAMLOGPaperFolderTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderTeamInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderTeamInviteType.h deleted file mode 100644 index 68d8c90f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperFolderTeamInviteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderTeamInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderTeamInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderTeamInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderTeamInviteType` struct. -/// -@interface DBTEAMLOGPaperFolderTeamInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderTeamInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderTeamInviteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderTeamInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderTeamInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderTeamInviteType` object. -/// -+ (DBTEAMLOGPaperFolderTeamInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperMemberPolicy.h deleted file mode 100644 index bc5571ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperMemberPolicy.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperMemberPolicy` union. -/// -/// Policy for controlling if team members can share Paper documents externally. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperMemberPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperMemberPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperMemberPolicyTag) { - /// (no description). - DBTEAMLOGPaperMemberPolicyAnyoneWithLink, - - /// (no description). - DBTEAMLOGPaperMemberPolicyOnlyTeam, - - /// (no description). - DBTEAMLOGPaperMemberPolicyTeamAndExplicitlyShared, - - /// (no description). - DBTEAMLOGPaperMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "anyone_with_link". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyoneWithLink; - -/// -/// Initializes union class with tag state of "only_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyTeam; - -/// -/// Initializes union class with tag state of "team_and_explicitly_shared". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndExplicitlyShared; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "anyone_with_link". -/// -/// @return Whether the union's current tag state has value "anyone_with_link". -/// -- (BOOL)isAnyoneWithLink; - -/// -/// Retrieves whether the union's current tag state has value "only_team". -/// -/// @return Whether the union's current tag state has value "only_team". -/// -- (BOOL)isOnlyTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_explicitly_shared". -/// -/// @return Whether the union's current tag state has value -/// "team_and_explicitly_shared". -/// -- (BOOL)isTeamAndExplicitlyShared; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperMemberPolicy` union. -/// -@interface DBTEAMLOGPaperMemberPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperMemberPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperMemberPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperMemberPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperMemberPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperMemberPolicy` object. -/// -+ (DBTEAMLOGPaperMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h deleted file mode 100644 index 20493e04..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkChangePermissionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkChangePermissionDetails` struct. -/// -/// Changed permissions for published doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// New permission level. -@property (nonatomic, readonly, copy) NSString *dNewPermissionLevel; - -/// Previous permission level. -@property (nonatomic, readonly, copy) NSString *previousPermissionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewPermissionLevel New permission level. -/// @param previousPermissionLevel Previous permission level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewPermissionLevel:(NSString *)dNewPermissionLevel - previousPermissionLevel:(NSString *)previousPermissionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkChangePermissionDetails` -/// struct. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkChangePermissionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` object. -/// -+ (DBTEAMLOGPaperPublishedLinkChangePermissionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionType.h deleted file mode 100644 index 042cf3ed..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkChangePermissionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkChangePermissionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkChangePermissionType` -/// struct. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkChangePermissionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkChangePermissionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkChangePermissionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` object. -/// -+ (DBTEAMLOGPaperPublishedLinkChangePermissionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkCreateDetails.h deleted file mode 100644 index c12cb066..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkCreateDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkCreateDetails` struct. -/// -/// Published doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkCreateDetails` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkCreateDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkCreateDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkCreateDetails` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkCreateType.h deleted file mode 100644 index b786cfde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkCreateType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkCreateType` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkCreateType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkCreateType` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkDisabledDetails.h deleted file mode 100644 index 6737d78e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkDisabledDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkDisabledDetails` struct. -/// -/// Unpublished doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkDisabledDetails` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkDisabledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkDisabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkDisabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkDisabledDetails` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkDisabledType.h deleted file mode 100644 index 22ec8477..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkDisabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkDisabledType` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkDisabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkDisabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkDisabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkDisabledType` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkViewDetails.h deleted file mode 100644 index 9f2a7acc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkViewDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkViewDetails` struct. -/// -/// Viewed published doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkViewDetails` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkViewDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkViewDetails` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkViewType.h deleted file mode 100644 index 1bc30cca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPaperPublishedLinkViewType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkViewType` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkViewType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkViewType` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGParticipantLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGParticipantLogInfo.h deleted file mode 100644 index 79b76f9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGParticipantLogInfo.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupLogInfo; -@class DBTEAMLOGParticipantLogInfo; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ParticipantLogInfo` union. -/// -/// A user or group -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGParticipantLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGParticipantLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGParticipantLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGParticipantLogInfoTag) { - /// Group details. - DBTEAMLOGParticipantLogInfoGroup, - - /// A user with a Dropbox account. - DBTEAMLOGParticipantLogInfoUser, - - /// (no description). - DBTEAMLOGParticipantLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGParticipantLogInfoTag tag; - -/// Group details. @note Ensure the `isGroup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupLogInfo *group; - -/// A user with a Dropbox account. @note Ensure the `isUser` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserLogInfo *user; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group". -/// -/// Description of the "group" tag state: Group details. -/// -/// @param group Group details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMLOGGroupLogInfo *)group; - -/// -/// Initializes union class with tag state of "user". -/// -/// Description of the "user" tag state: A user with a Dropbox account. -/// -/// @param user A user with a Dropbox account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMLOGUserLogInfo *)user; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `group` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group". -/// -- (BOOL)isGroup; - -/// -/// Retrieves whether the union's current tag state has value "user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `user` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user". -/// -- (BOOL)isUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGParticipantLogInfo` union. -/// -@interface DBTEAMLOGParticipantLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGParticipantLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGParticipantLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGParticipantLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGParticipantLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGParticipantLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGParticipantLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGParticipantLogInfo` object. -/// -+ (DBTEAMLOGParticipantLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPassPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPassPolicy.h deleted file mode 100644 index 3cf681b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPassPolicy.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPassPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PassPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPassPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPassPolicyTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGPassPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPassPolicyTag) { - /// (no description). - DBTEAMLOGPassPolicyAllow, - - /// (no description). - DBTEAMLOGPassPolicyDisabled, - - /// (no description). - DBTEAMLOGPassPolicyEnabled, - - /// (no description). - DBTEAMLOGPassPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPassPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPassPolicy` union. -/// -@interface DBTEAMLOGPassPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPassPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPassPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPassPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPassPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPassPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPassPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPassPolicy` object. -/// -+ (DBTEAMLOGPassPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordChangeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordChangeDetails.h deleted file mode 100644 index 0728f0ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordChangeDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordChangeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordChangeDetails` struct. -/// -/// Changed password. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordChangeDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordChangeDetails` struct. -/// -@interface DBTEAMLOGPasswordChangeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordChangeDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordChangeDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordChangeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordChangeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordChangeDetails` object. -/// -+ (DBTEAMLOGPasswordChangeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordChangeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordChangeType.h deleted file mode 100644 index 16a21381..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordChangeType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordChangeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordChangeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordChangeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordChangeType` struct. -/// -@interface DBTEAMLOGPasswordChangeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordChangeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordChangeType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordChangeType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordChangeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordChangeType` object. -/// -+ (DBTEAMLOGPasswordChangeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetAllDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetAllDetails.h deleted file mode 100644 index 269639db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetAllDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetAllDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetAllDetails` struct. -/// -/// Reset all team member passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetAllDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetAllDetails` struct. -/// -@interface DBTEAMLOGPasswordResetAllDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetAllDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetAllDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetAllDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetAllDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetAllDetails` object. -/// -+ (DBTEAMLOGPasswordResetAllDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetAllType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetAllType.h deleted file mode 100644 index e7dd6268..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetAllType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetAllType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetAllType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetAllType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetAllType` struct. -/// -@interface DBTEAMLOGPasswordResetAllTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetAllType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetAllType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetAllType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetAllType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetAllType` object. -/// -+ (DBTEAMLOGPasswordResetAllType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetDetails.h deleted file mode 100644 index 9207f23d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetDetails` struct. -/// -/// Reset password. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetDetails` struct. -/// -@interface DBTEAMLOGPasswordResetDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetDetails` object. -/// -+ (DBTEAMLOGPasswordResetDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetType.h deleted file mode 100644 index f63592cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordResetType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetType` struct. -/// -@interface DBTEAMLOGPasswordResetTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetType` object. -/// -+ (DBTEAMLOGPasswordResetType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h deleted file mode 100644 index 9fdac19f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails; -@class DBTEAMPOLICIESPasswordStrengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordStrengthRequirementsChangePolicyDetails` struct. -/// -/// Changed team password strength requirements. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Old password strength policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicy *previousValue; - -/// New password strength policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Old password strength policy. -/// @param dNewValue New password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMPOLICIESPasswordStrengthPolicy *)previousValue - dNewValue:(DBTEAMPOLICIESPasswordStrengthPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `PasswordStrengthRequirementsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` object. -/// -+ (DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h deleted file mode 100644 index 411f5b46..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordStrengthRequirementsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `PasswordStrengthRequirementsChangePolicyType` struct. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` object. -/// -+ (DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPathLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPathLogInfo.h deleted file mode 100644 index 2ddab619..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPathLogInfo.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNamespaceRelativePathLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathLogInfo` struct. -/// -/// Path's details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPathLogInfo : NSObject - -#pragma mark - Instance fields - -/// Fully qualified path relative to event's context. -@property (nonatomic, readonly, copy, nullable) NSString *contextual; - -/// Path relative to the namespace containing the content. -@property (nonatomic, readonly) DBTEAMLOGNamespaceRelativePathLogInfo *namespaceRelative; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param namespaceRelative Path relative to the namespace containing the -/// content. -/// @param contextual Fully qualified path relative to event's context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaceRelative:(DBTEAMLOGNamespaceRelativePathLogInfo *)namespaceRelative - contextual:(nullable NSString *)contextual; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param namespaceRelative Path relative to the namespace containing the -/// content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaceRelative:(DBTEAMLOGNamespaceRelativePathLogInfo *)namespaceRelative; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PathLogInfo` struct. -/// -@interface DBTEAMLOGPathLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPathLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPathLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPathLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPathLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGPathLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPathLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPathLogInfo` object. -/// -+ (DBTEAMLOGPathLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPendingSecondaryEmailAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPendingSecondaryEmailAddedDetails.h deleted file mode 100644 index 42e02fd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPendingSecondaryEmailAddedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPendingSecondaryEmailAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PendingSecondaryEmailAddedDetails` struct. -/// -/// Added pending secondary email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedDetails : NSObject - -#pragma mark - Instance fields - -/// New pending secondary email. -@property (nonatomic, readonly, copy) NSString *secondaryEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryEmail New pending secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmail:(NSString *)secondaryEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PendingSecondaryEmailAddedDetails` struct. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPendingSecondaryEmailAddedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPendingSecondaryEmailAddedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPendingSecondaryEmailAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPendingSecondaryEmailAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPendingSecondaryEmailAddedDetails` -/// object. -/// -+ (DBTEAMLOGPendingSecondaryEmailAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPendingSecondaryEmailAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPendingSecondaryEmailAddedType.h deleted file mode 100644 index ad7b1131..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPendingSecondaryEmailAddedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPendingSecondaryEmailAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PendingSecondaryEmailAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PendingSecondaryEmailAddedType` struct. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPendingSecondaryEmailAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPendingSecondaryEmailAddedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPendingSecondaryEmailAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPendingSecondaryEmailAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPendingSecondaryEmailAddedType` -/// object. -/// -+ (DBTEAMLOGPendingSecondaryEmailAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPermanentDeleteChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPermanentDeleteChangePolicyDetails.h deleted file mode 100644 index bcb6d070..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPermanentDeleteChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentPermanentDeletePolicy; -@class DBTEAMLOGPermanentDeleteChangePolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PermanentDeleteChangePolicyDetails` struct. -/// -/// Enabled/disabled ability of team members to permanently delete content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New permanent delete content policy. -@property (nonatomic, readonly) DBTEAMLOGContentPermanentDeletePolicy *dNewValue; - -/// Previous permanent delete content policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGContentPermanentDeletePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New permanent delete content policy. -/// @param previousValue Previous permanent delete content policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGContentPermanentDeletePolicy *)dNewValue - previousValue:(nullable DBTEAMLOGContentPermanentDeletePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New permanent delete content policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGContentPermanentDeletePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PermanentDeleteChangePolicyDetails` struct. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPermanentDeleteChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPermanentDeleteChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPermanentDeleteChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` object. -/// -+ (DBTEAMLOGPermanentDeleteChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPermanentDeleteChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPermanentDeleteChangePolicyType.h deleted file mode 100644 index 2af1a0b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPermanentDeleteChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPermanentDeleteChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PermanentDeleteChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PermanentDeleteChangePolicyType` struct. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPermanentDeleteChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPermanentDeleteChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPermanentDeleteChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPermanentDeleteChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPermanentDeleteChangePolicyType` -/// object. -/// -+ (DBTEAMLOGPermanentDeleteChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPlacementRestriction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPlacementRestriction.h deleted file mode 100644 index fb10465e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPlacementRestriction.h +++ /dev/null @@ -1,200 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPlacementRestriction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PlacementRestriction` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPlacementRestriction : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPlacementRestrictionTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPlacementRestriction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPlacementRestrictionTag) { - /// (no description). - DBTEAMLOGPlacementRestrictionAustraliaOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionEuropeOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionJapanOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionNone, - - /// (no description). - DBTEAMLOGPlacementRestrictionUkOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionUsS3Only, - - /// (no description). - DBTEAMLOGPlacementRestrictionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestrictionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "australia_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAustraliaOnly; - -/// -/// Initializes union class with tag state of "europe_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEuropeOnly; - -/// -/// Initializes union class with tag state of "japan_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithJapanOnly; - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "uk_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUkOnly; - -/// -/// Initializes union class with tag state of "us_s3_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsS3Only; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "australia_only". -/// -/// @return Whether the union's current tag state has value "australia_only". -/// -- (BOOL)isAustraliaOnly; - -/// -/// Retrieves whether the union's current tag state has value "europe_only". -/// -/// @return Whether the union's current tag state has value "europe_only". -/// -- (BOOL)isEuropeOnly; - -/// -/// Retrieves whether the union's current tag state has value "japan_only". -/// -/// @return Whether the union's current tag state has value "japan_only". -/// -- (BOOL)isJapanOnly; - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "uk_only". -/// -/// @return Whether the union's current tag state has value "uk_only". -/// -- (BOOL)isUkOnly; - -/// -/// Retrieves whether the union's current tag state has value "us_s3_only". -/// -/// @return Whether the union's current tag state has value "us_s3_only". -/// -- (BOOL)isUsS3Only; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPlacementRestriction` union. -/// -@interface DBTEAMLOGPlacementRestrictionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPlacementRestriction` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPlacementRestriction` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPlacementRestriction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPlacementRestriction *)instance; - -/// -/// Deserializes `DBTEAMLOGPlacementRestriction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPlacementRestriction` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPlacementRestriction` object. -/// -+ (DBTEAMLOGPlacementRestriction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPolicyType.h deleted file mode 100644 index 6232b33c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPolicyType.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PolicyType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPolicyTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPolicyTypeTag) { - /// (no description). - DBTEAMLOGPolicyTypeDisposition, - - /// (no description). - DBTEAMLOGPolicyTypeRetention, - - /// (no description). - DBTEAMLOGPolicyTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disposition". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisposition; - -/// -/// Initializes union class with tag state of "retention". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRetention; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disposition". -/// -/// @return Whether the union's current tag state has value "disposition". -/// -- (BOOL)isDisposition; - -/// -/// Retrieves whether the union's current tag state has value "retention". -/// -/// @return Whether the union's current tag state has value "retention". -/// -- (BOOL)isRetention; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPolicyType` union. -/// -@interface DBTEAMLOGPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPolicyType` object. -/// -+ (DBTEAMLOGPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h deleted file mode 100644 index 803829d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestAcceptedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestAcceptedDetails` struct. -/// -/// Team merge request acceptance details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestAcceptedDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestAcceptedDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestAcceptedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestAcceptedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestAcceptedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestCanceledDetails.h deleted file mode 100644 index 99f6543e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestCanceledDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestCanceledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestCanceledDetails` struct. -/// -/// Team merge request cancellation details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestCanceledDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestCanceledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestCanceledDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestExpiredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestExpiredDetails.h deleted file mode 100644 index adde9775..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestExpiredDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestExpiredDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestExpiredDetails` struct. -/// -/// Team merge request expiration details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestExpiredDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestExpiredDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestExpiredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestExpiredDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestExpiredDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestExpiredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestExpiredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestExpiredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestExpiredDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestExpiredDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestExpiredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestReminderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestReminderDetails.h deleted file mode 100644 index 15d71e5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGPrimaryTeamRequestReminderDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestReminderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestReminderDetails` struct. -/// -/// Team merge request reminder details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestReminderDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentTo The name of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestReminderDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestReminderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestReminderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestReminderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestReminderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestReminderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestReminderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestReminderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestReminderDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestReminderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGQuickActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGQuickActionType.h deleted file mode 100644 index a5f1cbe0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGQuickActionType.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGQuickActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `QuickActionType` union. -/// -/// Quick action type. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGQuickActionType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGQuickActionTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGQuickActionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGQuickActionTypeTag) { - /// (no description). - DBTEAMLOGQuickActionTypeDeleteSharedLink, - - /// (no description). - DBTEAMLOGQuickActionTypeResetPassword, - - /// (no description). - DBTEAMLOGQuickActionTypeRestoreFileOrFolder, - - /// (no description). - DBTEAMLOGQuickActionTypeUnlinkApp, - - /// (no description). - DBTEAMLOGQuickActionTypeUnlinkDevice, - - /// (no description). - DBTEAMLOGQuickActionTypeUnlinkSession, - - /// (no description). - DBTEAMLOGQuickActionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGQuickActionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete_shared_link". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteSharedLink; - -/// -/// Initializes union class with tag state of "reset_password". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResetPassword; - -/// -/// Initializes union class with tag state of "restore_file_or_folder". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestoreFileOrFolder; - -/// -/// Initializes union class with tag state of "unlink_app". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkApp; - -/// -/// Initializes union class with tag state of "unlink_device". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkDevice; - -/// -/// Initializes union class with tag state of "unlink_session". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkSession; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_shared_link". -/// -/// @return Whether the union's current tag state has value -/// "delete_shared_link". -/// -- (BOOL)isDeleteSharedLink; - -/// -/// Retrieves whether the union's current tag state has value "reset_password". -/// -/// @return Whether the union's current tag state has value "reset_password". -/// -- (BOOL)isResetPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "restore_file_or_folder". -/// -/// @return Whether the union's current tag state has value -/// "restore_file_or_folder". -/// -- (BOOL)isRestoreFileOrFolder; - -/// -/// Retrieves whether the union's current tag state has value "unlink_app". -/// -/// @return Whether the union's current tag state has value "unlink_app". -/// -- (BOOL)isUnlinkApp; - -/// -/// Retrieves whether the union's current tag state has value "unlink_device". -/// -/// @return Whether the union's current tag state has value "unlink_device". -/// -- (BOOL)isUnlinkDevice; - -/// -/// Retrieves whether the union's current tag state has value "unlink_session". -/// -/// @return Whether the union's current tag state has value "unlink_session". -/// -- (BOOL)isUnlinkSession; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGQuickActionType` union. -/// -@interface DBTEAMLOGQuickActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGQuickActionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGQuickActionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGQuickActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGQuickActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGQuickActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGQuickActionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGQuickActionType` object. -/// -+ (DBTEAMLOGQuickActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportDetails.h deleted file mode 100644 index ef193323..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportDetails` struct. -/// -/// Created ransomware report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportDetails` struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h deleted file mode 100644 index a474bbf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportFailedDetails` struct. -/// -/// Couldn't generate ransomware report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedType.h deleted file mode 100644 index e65fadf7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportFailedType` -/// struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportType.h deleted file mode 100644 index df248930..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareAlertCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportType` struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRansomwareAlertCreateReportType` -/// object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h deleted file mode 100644 index f38e2b81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessCompletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessCompletedDetails` struct. -/// -/// Completed ransomware restore process. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedDetails : NSObject - -#pragma mark - Instance fields - -/// The status of the restore process. -@property (nonatomic, readonly, copy) NSString *status; - -/// Restored files count. -@property (nonatomic, readonly) NSNumber *restoredFilesCount; - -/// Restored files failed count. -@property (nonatomic, readonly) NSNumber *restoredFilesFailedCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param status The status of the restore process. -/// @param restoredFilesCount Restored files count. -/// @param restoredFilesFailedCount Restored files failed count. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatus:(NSString *)status - restoredFilesCount:(NSNumber *)restoredFilesCount - restoredFilesFailedCount:(NSNumber *)restoredFilesFailedCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessCompletedDetails` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessCompletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessCompletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedType.h deleted file mode 100644 index 4405d5e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessCompletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessCompletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessCompletedType` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessCompletedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessCompletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessCompletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessCompletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessStartedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessStartedDetails.h deleted file mode 100644 index d674f926..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessStartedDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessStartedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessStartedDetails` struct. -/// -/// Started ransomware restore process. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedDetails : NSObject - -#pragma mark - Instance fields - -/// Ransomware filename extension. -@property (nonatomic, readonly, copy) NSString *extension; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param extension Ransomware filename extension. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtension:(NSString *)extension; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessStartedDetails` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessStartedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessStartedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessStartedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessStartedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessStartedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessStartedType.h deleted file mode 100644 index eff05bb9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRansomwareRestoreProcessStartedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessStartedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessStartedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessStartedType` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessStartedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessStartedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessStartedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessStartedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRecipientsConfiguration.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRecipientsConfiguration.h deleted file mode 100644 index fb6a7957..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRecipientsConfiguration.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAlertRecipientsSettingType; -@class DBTEAMLOGRecipientsConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RecipientsConfiguration` struct. -/// -/// Recipients Configuration -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRecipientsConfiguration : NSObject - -#pragma mark - Instance fields - -/// Recipients setting type. -@property (nonatomic, readonly, nullable) DBTEAMLOGAlertRecipientsSettingType *recipientSettingType; - -/// A list of user emails to notify. -@property (nonatomic, readonly, nullable) NSArray *emails; - -/// A list of groups to notify. -@property (nonatomic, readonly, nullable) NSArray *groups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param recipientSettingType Recipients setting type. -/// @param emails A list of user emails to notify. -/// @param groups A list of groups to notify. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientSettingType:(nullable DBTEAMLOGAlertRecipientsSettingType *)recipientSettingType - emails:(nullable NSArray *)emails - groups:(nullable NSArray *)groups; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RecipientsConfiguration` struct. -/// -@interface DBTEAMLOGRecipientsConfigurationSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRecipientsConfiguration` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRecipientsConfiguration` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRecipientsConfiguration` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRecipientsConfiguration *)instance; - -/// -/// Deserializes `DBTEAMLOGRecipientsConfiguration` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRecipientsConfiguration` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRecipientsConfiguration` object. -/// -+ (DBTEAMLOGRecipientsConfiguration *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRelocateAssetReferencesLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRelocateAssetReferencesLogInfo.h deleted file mode 100644 index 421946e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRelocateAssetReferencesLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocateAssetReferencesLogInfo` struct. -/// -/// Provides the indices of the source asset and the destination asset for a -/// relocate action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRelocateAssetReferencesLogInfo : NSObject - -#pragma mark - Instance fields - -/// Source asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *srcAssetIndex; - -/// Destination asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *destAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param srcAssetIndex Source asset position in the Assets list. -/// @param destAssetIndex Destination asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSrcAssetIndex:(NSNumber *)srcAssetIndex destAssetIndex:(NSNumber *)destAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocateAssetReferencesLogInfo` struct. -/// -@interface DBTEAMLOGRelocateAssetReferencesLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRelocateAssetReferencesLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRelocateAssetReferencesLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRelocateAssetReferencesLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRelocateAssetReferencesLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGRelocateAssetReferencesLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRelocateAssetReferencesLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRelocateAssetReferencesLogInfo` -/// object. -/// -+ (DBTEAMLOGRelocateAssetReferencesLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileDeleteDetails.h deleted file mode 100644 index 9e188d4f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileDeleteDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileDeleteDetails` struct. -/// -/// Deleted files in Replay. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileDeleteDetails` struct. -/// -@interface DBTEAMLOGReplayFileDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayFileDeleteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileDeleteDetails` object. -/// -+ (DBTEAMLOGReplayFileDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileDeleteType.h deleted file mode 100644 index 42230f96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileDeleteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileDeleteType` struct. -/// -@interface DBTEAMLOGReplayFileDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayFileDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileDeleteType` object. -/// -+ (DBTEAMLOGReplayFileDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkCreatedDetails.h deleted file mode 100644 index ae99be25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkCreatedDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkCreatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkCreatedDetails` struct. -/// -/// Created shared link in Replay. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkCreatedDetails` struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkCreatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` object. -/// -+ (DBTEAMLOGReplayFileSharedLinkCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkCreatedType.h deleted file mode 100644 index 39f4387b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkCreatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkCreatedType` struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkCreatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileSharedLinkCreatedType` -/// object. -/// -+ (DBTEAMLOGReplayFileSharedLinkCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkModifiedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkModifiedDetails.h deleted file mode 100644 index c24a4972..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkModifiedDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkModifiedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkModifiedDetails` struct. -/// -/// Modified shared link in Replay. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkModifiedDetails` -/// struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkModifiedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkModifiedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkModifiedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` object. -/// -+ (DBTEAMLOGReplayFileSharedLinkModifiedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkModifiedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkModifiedType.h deleted file mode 100644 index 5a51ef0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayFileSharedLinkModifiedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkModifiedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkModifiedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkModifiedType` struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkModifiedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkModifiedType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkModifiedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileSharedLinkModifiedType` -/// object. -/// -+ (DBTEAMLOGReplayFileSharedLinkModifiedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamAddDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamAddDetails.h deleted file mode 100644 index 6d65eeb3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamAddDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamAddDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamAddDetails` struct. -/// -/// Added member to Replay Project. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamAddDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamAddDetails` struct. -/// -@interface DBTEAMLOGReplayProjectTeamAddDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamAddDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamAddDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamAddDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamAddDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamAddDetails` -/// object. -/// -+ (DBTEAMLOGReplayProjectTeamAddDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamAddType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamAddType.h deleted file mode 100644 index 4be6186b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamAddType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamAddType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamAddType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamAddType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamAddType` struct. -/// -@interface DBTEAMLOGReplayProjectTeamAddTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamAddType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamAddType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamAddType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamAddType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamAddType` object. -/// -+ (DBTEAMLOGReplayProjectTeamAddType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamDeleteDetails.h deleted file mode 100644 index da8c03d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamDeleteDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamDeleteDetails` struct. -/// -/// Removed member from Replay Project. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamDeleteDetails` struct. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamDeleteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamDeleteDetails` -/// object. -/// -+ (DBTEAMLOGReplayProjectTeamDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamDeleteType.h deleted file mode 100644 index 8467573d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGReplayProjectTeamDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamDeleteType` struct. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamDeleteType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamDeleteType` -/// object. -/// -+ (DBTEAMLOGReplayProjectTeamDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerLogInfo.h deleted file mode 100644 index ac9eb08d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerLogInfo.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerLogInfo` struct. -/// -/// Reseller information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerLogInfo : NSObject - -#pragma mark - Instance fields - -/// Reseller name. -@property (nonatomic, readonly, copy) NSString *resellerName; - -/// Reseller email. -@property (nonatomic, readonly, copy) NSString *resellerEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param resellerName Reseller name. -/// @param resellerEmail Reseller email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerName:(NSString *)resellerName resellerEmail:(NSString *)resellerEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerLogInfo` struct. -/// -@interface DBTEAMLOGResellerLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerLogInfo` object. -/// -+ (DBTEAMLOGResellerLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerRole.h deleted file mode 100644 index 936d1a8e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerRole.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerRole` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerRole : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGResellerRoleTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGResellerRole` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGResellerRoleTag) { - /// (no description). - DBTEAMLOGResellerRoleNotReseller, - - /// (no description). - DBTEAMLOGResellerRoleResellerAdmin, - - /// (no description). - DBTEAMLOGResellerRoleOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGResellerRoleTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "not_reseller". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotReseller; - -/// -/// Initializes union class with tag state of "reseller_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "not_reseller". -/// -/// @return Whether the union's current tag state has value "not_reseller". -/// -- (BOOL)isNotReseller; - -/// -/// Retrieves whether the union's current tag state has value "reseller_admin". -/// -/// @return Whether the union's current tag state has value "reseller_admin". -/// -- (BOOL)isResellerAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGResellerRole` union. -/// -@interface DBTEAMLOGResellerRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerRole` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerRole *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerRole` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerRole` object. -/// -+ (DBTEAMLOGResellerRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportChangePolicyDetails.h deleted file mode 100644 index 1766c423..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportChangePolicyDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportChangePolicyDetails; -@class DBTEAMLOGResellerSupportPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportChangePolicyDetails` struct. -/// -/// Enabled/disabled reseller support. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Reseller support policy. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportPolicy *dNewValue; - -/// Previous Reseller support policy. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Reseller support policy. -/// @param previousValue Previous Reseller support policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGResellerSupportPolicy *)dNewValue - previousValue:(DBTEAMLOGResellerSupportPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportChangePolicyDetails` struct. -/// -@interface DBTEAMLOGResellerSupportChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` object. -/// -+ (DBTEAMLOGResellerSupportChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportChangePolicyType.h deleted file mode 100644 index 4435ad3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportChangePolicyType` struct. -/// -@interface DBTEAMLOGResellerSupportChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportChangePolicyType` -/// object. -/// -+ (DBTEAMLOGResellerSupportChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportPolicy.h deleted file mode 100644 index 77091d9e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportPolicy` union. -/// -/// Policy for controlling if reseller can access the admin console as -/// administrator -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGResellerSupportPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGResellerSupportPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGResellerSupportPolicyTag) { - /// (no description). - DBTEAMLOGResellerSupportPolicyDisabled, - - /// (no description). - DBTEAMLOGResellerSupportPolicyEnabled, - - /// (no description). - DBTEAMLOGResellerSupportPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGResellerSupportPolicy` union. -/// -@interface DBTEAMLOGResellerSupportPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerSupportPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportPolicy` object. -/// -+ (DBTEAMLOGResellerSupportPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionEndDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionEndDetails.h deleted file mode 100644 index 162c2f89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionEndDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionEndDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionEndDetails` struct. -/// -/// Ended reseller support session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionEndDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionEndDetails` struct. -/// -@interface DBTEAMLOGResellerSupportSessionEndDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionEndDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportSessionEndDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionEndDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionEndDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportSessionEndDetails` -/// object. -/// -+ (DBTEAMLOGResellerSupportSessionEndDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionEndType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionEndType.h deleted file mode 100644 index 4e2475da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionEndType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionEndType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionEndType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionEndType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionEndType` struct. -/// -@interface DBTEAMLOGResellerSupportSessionEndTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionEndType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerSupportSessionEndType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionEndType *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionEndType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportSessionEndType` -/// object. -/// -+ (DBTEAMLOGResellerSupportSessionEndType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionStartDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionStartDetails.h deleted file mode 100644 index 1e610635..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionStartDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionStartDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionStartDetails` struct. -/// -/// Started reseller support session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionStartDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionStartDetails` struct. -/// -@interface DBTEAMLOGResellerSupportSessionStartDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionStartDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionStartDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionStartDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` object. -/// -+ (DBTEAMLOGResellerSupportSessionStartDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionStartType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionStartType.h deleted file mode 100644 index 5fa24fad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGResellerSupportSessionStartType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionStartType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionStartType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionStartType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionStartType` struct. -/// -@interface DBTEAMLOGResellerSupportSessionStartTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionStartType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportSessionStartType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionStartType *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionStartType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportSessionStartType` -/// object. -/// -+ (DBTEAMLOGResellerSupportSessionStartType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindFolderDetails.h deleted file mode 100644 index e04cebdc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindFolderDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindFolderDetails` struct. -/// -/// Rewound a folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindFolderDetails : NSObject - -#pragma mark - Instance fields - -/// Folder was Rewound to this date. -@property (nonatomic, readonly) NSDate *rewindFolderTargetTsMs; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rewindFolderTargetTsMs Folder was Rewound to this date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolderTargetTsMs:(NSDate *)rewindFolderTargetTsMs; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindFolderDetails` struct. -/// -@interface DBTEAMLOGRewindFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindFolderDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindFolderDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindFolderDetails` object. -/// -+ (DBTEAMLOGRewindFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindFolderType.h deleted file mode 100644 index 7691e856..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindFolderType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindFolderType` struct. -/// -@interface DBTEAMLOGRewindFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindFolderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindFolderType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindFolderType` object. -/// -+ (DBTEAMLOGRewindFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicy.h deleted file mode 100644 index de5bb9b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindPolicy` union. -/// -/// Policy for controlling whether team members can rewind -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGRewindPolicyTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGRewindPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGRewindPolicyTag) { - /// (no description). - DBTEAMLOGRewindPolicyAdminsOnly, - - /// (no description). - DBTEAMLOGRewindPolicyEveryone, - - /// (no description). - DBTEAMLOGRewindPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admins_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminsOnly; - -/// -/// Initializes union class with tag state of "everyone". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admins_only". -/// -/// @return Whether the union's current tag state has value "admins_only". -/// -- (BOOL)isAdminsOnly; - -/// -/// Retrieves whether the union's current tag state has value "everyone". -/// -/// @return Whether the union's current tag state has value "everyone". -/// -- (BOOL)isEveryone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGRewindPolicy` union. -/// -@interface DBTEAMLOGRewindPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindPolicy` object. -/// -+ (DBTEAMLOGRewindPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicyChangedDetails.h deleted file mode 100644 index 09956369..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindPolicy; -@class DBTEAMLOGRewindPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindPolicyChangedDetails` struct. -/// -/// Changed Rewind policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Rewind policy. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicy *dNewValue; - -/// Previous Dropbox Rewind policy. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Rewind policy. -/// @param previousValue Previous Dropbox Rewind policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGRewindPolicy *)dNewValue - previousValue:(DBTEAMLOGRewindPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGRewindPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindPolicyChangedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindPolicyChangedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGRewindPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicyChangedType.h deleted file mode 100644 index 945ff59e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRewindPolicyChangedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindPolicyChangedType` struct. -/// -@interface DBTEAMLOGRewindPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindPolicyChangedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindPolicyChangedType` object. -/// -+ (DBTEAMLOGRewindPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRouteObjects.h deleted file mode 100644 index c6809021..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGRouteObjects.h +++ /dev/null @@ -1,28 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the TeamLog namespace. Each route in the TeamLog -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBTEAMLOGRouteObjects : NSObject - -/// Accessor method for the getEvents route object. -+ (DBRoute *)DBTEAMLOGGetEvents; - -/// Accessor method for the getEventsContinue route object. -+ (DBRoute *)DBTEAMLOGGetEventsContinue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailDeletedDetails.h deleted file mode 100644 index de8b73d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailDeletedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailDeletedDetails` struct. -/// -/// Deleted secondary email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Deleted secondary email. -@property (nonatomic, readonly, copy) NSString *secondaryEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryEmail Deleted secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmail:(NSString *)secondaryEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailDeletedDetails` struct. -/// -@interface DBTEAMLOGSecondaryEmailDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailDeletedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailDeletedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailDeletedDetails` -/// object. -/// -+ (DBTEAMLOGSecondaryEmailDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailDeletedType.h deleted file mode 100644 index 668b2656..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailDeletedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailDeletedType` struct. -/// -@interface DBTEAMLOGSecondaryEmailDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailDeletedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailDeletedType` object. -/// -+ (DBTEAMLOGSecondaryEmailDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailVerifiedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailVerifiedDetails.h deleted file mode 100644 index 63c7102c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailVerifiedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailVerifiedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailVerifiedDetails` struct. -/// -/// Verified secondary email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedDetails : NSObject - -#pragma mark - Instance fields - -/// Verified secondary email. -@property (nonatomic, readonly, copy) NSString *secondaryEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryEmail Verified secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmail:(NSString *)secondaryEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailVerifiedDetails` struct. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailVerifiedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailVerifiedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailVerifiedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailVerifiedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailVerifiedDetails` -/// object. -/// -+ (DBTEAMLOGSecondaryEmailVerifiedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailVerifiedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailVerifiedType.h deleted file mode 100644 index b9c4104a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryEmailVerifiedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailVerifiedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailVerifiedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailVerifiedType` struct. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailVerifiedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailVerifiedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailVerifiedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailVerifiedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailVerifiedType` -/// object. -/// -+ (DBTEAMLOGSecondaryEmailVerifiedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicy.h deleted file mode 100644 index 2e09594e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryMailsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryMailsPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryMailsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSecondaryMailsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSecondaryMailsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSecondaryMailsPolicyTag) { - /// (no description). - DBTEAMLOGSecondaryMailsPolicyDisabled, - - /// (no description). - DBTEAMLOGSecondaryMailsPolicyEnabled, - - /// (no description). - DBTEAMLOGSecondaryMailsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSecondaryMailsPolicy` union. -/// -@interface DBTEAMLOGSecondaryMailsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryMailsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryMailsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryMailsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryMailsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryMailsPolicy` object. -/// -+ (DBTEAMLOGSecondaryMailsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicyChangedDetails.h deleted file mode 100644 index 8b23cce8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryMailsPolicy; -@class DBTEAMLOGSecondaryMailsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryMailsPolicyChangedDetails` struct. -/// -/// Secondary mails policy changed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous secondary mails policy. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicy *previousValue; - -/// New secondary mails policy. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous secondary mails policy. -/// @param dNewValue New secondary mails policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSecondaryMailsPolicy *)previousValue - dNewValue:(DBTEAMLOGSecondaryMailsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryMailsPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryMailsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryMailsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryMailsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` object. -/// -+ (DBTEAMLOGSecondaryMailsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicyChangedType.h deleted file mode 100644 index df7f4cfd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryMailsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryMailsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryMailsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryMailsPolicyChangedType` struct. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryMailsPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryMailsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryMailsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryMailsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGSecondaryMailsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h deleted file mode 100644 index c8fed636..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestAcceptedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestAcceptedDetails` struct. -/// -/// Team merge request acceptance details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestAcceptedDetails : NSObject - -#pragma mark - Instance fields - -/// The primary team name. -@property (nonatomic, readonly, copy) NSString *primaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param primaryTeam The primary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(NSString *)primaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestAcceptedDetails` -/// struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestAcceptedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestAcceptedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestAcceptedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestCanceledDetails.h deleted file mode 100644 index 0d849efb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestCanceledDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestCanceledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestCanceledDetails` struct. -/// -/// Team merge request cancellation details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin that the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin that the request was sent -/// to. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestCanceledDetails` -/// struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestExpiredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestExpiredDetails.h deleted file mode 100644 index d7a439ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestExpiredDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestExpiredDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestExpiredDetails` struct. -/// -/// Team merge request expiration details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestExpiredDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestExpiredDetails` struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestExpiredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestExpiredDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestExpiredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestExpiredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestExpiredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestReminderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestReminderDetails.h deleted file mode 100644 index 797917d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSecondaryTeamRequestReminderDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestReminderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestReminderDetails` struct. -/// -/// Team merge request reminder details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestReminderDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestReminderDetails` -/// struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestReminderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestReminderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestReminderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestReminderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestReminderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicy.h deleted file mode 100644 index 8e76ee4c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSendForSignaturePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SendForSignaturePolicy` union. -/// -/// Policy for controlling team access to send for signature feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSendForSignaturePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSendForSignaturePolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSendForSignaturePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSendForSignaturePolicyTag) { - /// (no description). - DBTEAMLOGSendForSignaturePolicyDisabled, - - /// (no description). - DBTEAMLOGSendForSignaturePolicyEnabled, - - /// (no description). - DBTEAMLOGSendForSignaturePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSendForSignaturePolicy` union. -/// -@interface DBTEAMLOGSendForSignaturePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSendForSignaturePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSendForSignaturePolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSendForSignaturePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSendForSignaturePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSendForSignaturePolicy` object. -/// -+ (DBTEAMLOGSendForSignaturePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicyChangedDetails.h deleted file mode 100644 index 6ce5a1a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSendForSignaturePolicy; -@class DBTEAMLOGSendForSignaturePolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SendForSignaturePolicyChangedDetails` struct. -/// -/// Changed send for signature policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New send for signature policy. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicy *dNewValue; - -/// Previous send for signature policy. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New send for signature policy. -/// @param previousValue Previous send for signature policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSendForSignaturePolicy *)dNewValue - previousValue:(DBTEAMLOGSendForSignaturePolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SendForSignaturePolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSendForSignaturePolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSendForSignaturePolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSendForSignaturePolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` object. -/// -+ (DBTEAMLOGSendForSignaturePolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicyChangedType.h deleted file mode 100644 index 5b42331f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSendForSignaturePolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSendForSignaturePolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SendForSignaturePolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SendForSignaturePolicyChangedType` struct. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSendForSignaturePolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSendForSignaturePolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSendForSignaturePolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSendForSignaturePolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSendForSignaturePolicyChangedType` -/// object. -/// -+ (DBTEAMLOGSendForSignaturePolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSessionLogInfo.h deleted file mode 100644 index 86c621f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSessionLogInfo.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SessionLogInfo` struct. -/// -/// Session's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSessionLogInfo : NSObject - -#pragma mark - Instance fields - -/// Session ID. -@property (nonatomic, readonly, copy, nullable) NSString *sessionId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SessionLogInfo` struct. -/// -@interface DBTEAMLOGSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSessionLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSessionLogInfo` object. -/// -+ (DBTEAMLOGSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAddGroupDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAddGroupDetails.h deleted file mode 100644 index d5325466..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAddGroupDetails.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAddGroupDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAddGroupDetails` struct. -/// -/// Added team to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAddGroupDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -/// Team name. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param teamName Team name. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - teamName:(NSString *)teamName - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param teamName Team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - teamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAddGroupDetails` struct. -/// -@interface DBTEAMLOGSfAddGroupDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAddGroupDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfAddGroupDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAddGroupDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAddGroupDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfAddGroupDetails` object. -/// -+ (DBTEAMLOGSfAddGroupDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAddGroupType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAddGroupType.h deleted file mode 100644 index 40cc52a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAddGroupType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAddGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAddGroupType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAddGroupType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAddGroupType` struct. -/// -@interface DBTEAMLOGSfAddGroupTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAddGroupType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfAddGroupType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAddGroupType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAddGroupType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfAddGroupType` object. -/// -+ (DBTEAMLOGSfAddGroupType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h deleted file mode 100644 index b5b748f6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAllowNonMembersToViewSharedLinksDetails` struct. -/// -/// Allowed non-collaborators to view links to files in shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Shared folder type. -@property (nonatomic, readonly, copy, nullable) NSString *sharedFolderType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param sharedFolderType Shared folder type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - sharedFolderType:(nullable NSString *)sharedFolderType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAllowNonMembersToViewSharedLinksDetails` -/// struct. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` object. -/// -+ (DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h deleted file mode 100644 index d2156aa2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAllowNonMembersToViewSharedLinksType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAllowNonMembersToViewSharedLinksType` -/// struct. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` object. -/// -+ (DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfExternalInviteWarnDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfExternalInviteWarnDetails.h deleted file mode 100644 index 30bc9606..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfExternalInviteWarnDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfExternalInviteWarnDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfExternalInviteWarnDetails` struct. -/// -/// Set team members to see warning before sharing folders outside team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfExternalInviteWarnDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// New sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSharingPermission; - -/// Previous sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *previousSharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param dNewSharingPermission New sharing permission. -/// @param previousSharingPermission Previous sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - dNewSharingPermission:(nullable NSString *)dNewSharingPermission - previousSharingPermission:(nullable NSString *)previousSharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfExternalInviteWarnDetails` struct. -/// -@interface DBTEAMLOGSfExternalInviteWarnDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfExternalInviteWarnDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfExternalInviteWarnDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfExternalInviteWarnDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfExternalInviteWarnDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfExternalInviteWarnDetails` -/// object. -/// -+ (DBTEAMLOGSfExternalInviteWarnDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfExternalInviteWarnType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfExternalInviteWarnType.h deleted file mode 100644 index 2d655fa8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfExternalInviteWarnType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfExternalInviteWarnType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfExternalInviteWarnType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfExternalInviteWarnType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfExternalInviteWarnType` struct. -/// -@interface DBTEAMLOGSfExternalInviteWarnTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfExternalInviteWarnType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfExternalInviteWarnType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfExternalInviteWarnType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfExternalInviteWarnType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfExternalInviteWarnType` object. -/// -+ (DBTEAMLOGSfExternalInviteWarnType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteChangeRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteChangeRoleDetails.h deleted file mode 100644 index b77912f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteChangeRoleDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteChangeRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteChangeRoleDetails` struct. -/// -/// Changed Facebook user's role in shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Previous sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *previousSharingPermission; - -/// New sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param previousSharingPermission Previous sharing permission. -/// @param dNewSharingPermission New sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - previousSharingPermission:(nullable NSString *)previousSharingPermission - dNewSharingPermission:(nullable NSString *)dNewSharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteChangeRoleDetails` struct. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteChangeRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteChangeRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteChangeRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteChangeRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteChangeRoleDetails` -/// object. -/// -+ (DBTEAMLOGSfFbInviteChangeRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteChangeRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteChangeRoleType.h deleted file mode 100644 index d1f73b3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteChangeRoleType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteChangeRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteChangeRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteChangeRoleType` struct. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteChangeRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteChangeRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteChangeRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteChangeRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteChangeRoleType` object. -/// -+ (DBTEAMLOGSfFbInviteChangeRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteDetails.h deleted file mode 100644 index 02f2b073..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteDetails` struct. -/// -/// Invited Facebook users to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteDetails` struct. -/// -@interface DBTEAMLOGSfFbInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteDetails` object. -/// -+ (DBTEAMLOGSfFbInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteType.h deleted file mode 100644 index afd8ac69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbInviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteType` struct. -/// -@interface DBTEAMLOGSfFbInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteType` object. -/// -+ (DBTEAMLOGSfFbInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbUninviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbUninviteDetails.h deleted file mode 100644 index 30394998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbUninviteDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbUninviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbUninviteDetails` struct. -/// -/// Uninvited Facebook user from shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbUninviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbUninviteDetails` struct. -/// -@interface DBTEAMLOGSfFbUninviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbUninviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbUninviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbUninviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbUninviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbUninviteDetails` object. -/// -+ (DBTEAMLOGSfFbUninviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbUninviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbUninviteType.h deleted file mode 100644 index cd719b47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfFbUninviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbUninviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbUninviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbUninviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbUninviteType` struct. -/// -@interface DBTEAMLOGSfFbUninviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbUninviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbUninviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbUninviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbUninviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbUninviteType` object. -/// -+ (DBTEAMLOGSfFbUninviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfInviteGroupDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfInviteGroupDetails.h deleted file mode 100644 index 411d44ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfInviteGroupDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfInviteGroupDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfInviteGroupDetails` struct. -/// -/// Invited group to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfInviteGroupDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfInviteGroupDetails` struct. -/// -@interface DBTEAMLOGSfInviteGroupDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfInviteGroupDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfInviteGroupDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfInviteGroupDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfInviteGroupDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfInviteGroupDetails` object. -/// -+ (DBTEAMLOGSfInviteGroupDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfInviteGroupType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfInviteGroupType.h deleted file mode 100644 index 94db19a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfInviteGroupType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfInviteGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfInviteGroupType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfInviteGroupType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfInviteGroupType` struct. -/// -@interface DBTEAMLOGSfInviteGroupTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfInviteGroupType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfInviteGroupType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfInviteGroupType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfInviteGroupType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfInviteGroupType` object. -/// -+ (DBTEAMLOGSfInviteGroupType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamGrantAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamGrantAccessDetails.h deleted file mode 100644 index 68e69cea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamGrantAccessDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamGrantAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamGrantAccessDetails` struct. -/// -/// Granted access to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamGrantAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamGrantAccessDetails` struct. -/// -@interface DBTEAMLOGSfTeamGrantAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamGrantAccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamGrantAccessDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamGrantAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamGrantAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamGrantAccessDetails` object. -/// -+ (DBTEAMLOGSfTeamGrantAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamGrantAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamGrantAccessType.h deleted file mode 100644 index 4c640979..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamGrantAccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamGrantAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamGrantAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamGrantAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamGrantAccessType` struct. -/// -@interface DBTEAMLOGSfTeamGrantAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamGrantAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamGrantAccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamGrantAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamGrantAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamGrantAccessType` object. -/// -+ (DBTEAMLOGSfTeamGrantAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteChangeRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteChangeRoleDetails.h deleted file mode 100644 index 425de14f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteChangeRoleDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteChangeRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteChangeRoleDetails` struct. -/// -/// Changed team member's role in shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// New sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSharingPermission; - -/// Previous sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *previousSharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param dNewSharingPermission New sharing permission. -/// @param previousSharingPermission Previous sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - dNewSharingPermission:(nullable NSString *)dNewSharingPermission - previousSharingPermission:(nullable NSString *)previousSharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteChangeRoleDetails` struct. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteChangeRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteChangeRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteChangeRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteChangeRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteChangeRoleDetails` -/// object. -/// -+ (DBTEAMLOGSfTeamInviteChangeRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteChangeRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteChangeRoleType.h deleted file mode 100644 index b2955203..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteChangeRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteChangeRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteChangeRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteChangeRoleType` struct. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteChangeRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteChangeRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteChangeRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteChangeRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteChangeRoleType` -/// object. -/// -+ (DBTEAMLOGSfTeamInviteChangeRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteDetails.h deleted file mode 100644 index 2de3649d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteDetails` struct. -/// -/// Invited team members to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteDetails` struct. -/// -@interface DBTEAMLOGSfTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteDetails` object. -/// -+ (DBTEAMLOGSfTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteType.h deleted file mode 100644 index 70d0f097..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamInviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteType` struct. -/// -@interface DBTEAMLOGSfTeamInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteType` object. -/// -+ (DBTEAMLOGSfTeamInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinDetails.h deleted file mode 100644 index 2d6a8e27..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinDetails` struct. -/// -/// Joined team member's shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinDetails` struct. -/// -@interface DBTEAMLOGSfTeamJoinDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinDetails` object. -/// -+ (DBTEAMLOGSfTeamJoinDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinFromOobLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinFromOobLinkDetails.h deleted file mode 100644 index 799b33ac..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinFromOobLinkDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinFromOobLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinFromOobLinkDetails` struct. -/// -/// Joined team member's shared folder from link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Shared link token key. -@property (nonatomic, readonly, copy, nullable) NSString *tokenKey; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param tokenKey Shared link token key. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - tokenKey:(nullable NSString *)tokenKey - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinFromOobLinkDetails` struct. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinFromOobLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinFromOobLinkDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinFromOobLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinFromOobLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinFromOobLinkDetails` -/// object. -/// -+ (DBTEAMLOGSfTeamJoinFromOobLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinFromOobLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinFromOobLinkType.h deleted file mode 100644 index 6e0abf09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinFromOobLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinFromOobLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinFromOobLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinFromOobLinkType` struct. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinFromOobLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinFromOobLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinFromOobLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinFromOobLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinFromOobLinkType` object. -/// -+ (DBTEAMLOGSfTeamJoinFromOobLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinType.h deleted file mode 100644 index 0f51b9b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamJoinType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinType` struct. -/// -@interface DBTEAMLOGSfTeamJoinTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinType` object. -/// -+ (DBTEAMLOGSfTeamJoinType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamUninviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamUninviteDetails.h deleted file mode 100644 index 44e66c81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamUninviteDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamUninviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamUninviteDetails` struct. -/// -/// Unshared folder with team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamUninviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamUninviteDetails` struct. -/// -@interface DBTEAMLOGSfTeamUninviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamUninviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamUninviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamUninviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamUninviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamUninviteDetails` object. -/// -+ (DBTEAMLOGSfTeamUninviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamUninviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamUninviteType.h deleted file mode 100644 index 929c9866..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSfTeamUninviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamUninviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamUninviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamUninviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamUninviteType` struct. -/// -@interface DBTEAMLOGSfTeamUninviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamUninviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamUninviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamUninviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamUninviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamUninviteType` object. -/// -+ (DBTEAMLOGSfTeamUninviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddInviteesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddInviteesDetails.h deleted file mode 100644 index dd48ad69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddInviteesDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentAddInviteesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddInviteesDetails` struct. -/// -/// Invited user to Dropbox and added them to shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddInviteesDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// A list of invitees. -@property (nonatomic, readonly) NSArray *invitees; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param invitees A list of invitees. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddInviteesDetails` struct. -/// -@interface DBTEAMLOGSharedContentAddInviteesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddInviteesDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddInviteesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddInviteesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddInviteesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddInviteesDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentAddInviteesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddInviteesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddInviteesType.h deleted file mode 100644 index b90e60ea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddInviteesType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddInviteesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddInviteesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddInviteesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddInviteesType` struct. -/// -@interface DBTEAMLOGSharedContentAddInviteesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddInviteesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddInviteesType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddInviteesType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddInviteesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddInviteesType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddInviteesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkExpiryDetails.h deleted file mode 100644 index 65e3c5fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkExpiryDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkExpiryDetails` struct. -/// -/// Added expiration date to link for shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSDate *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkExpiryDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddLinkExpiryDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddLinkExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentAddLinkExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkExpiryType.h deleted file mode 100644 index ec54ed0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkExpiryType` struct. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddLinkExpiryType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddLinkExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddLinkExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkPasswordDetails.h deleted file mode 100644 index 89adca23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkPasswordDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkPasswordDetails` struct. -/// -/// Added password to link for shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` object. -/// -+ (DBTEAMLOGSharedContentAddLinkPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkPasswordType.h deleted file mode 100644 index e561fde0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddLinkPasswordType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkPasswordType` struct. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddLinkPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddLinkPasswordType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddLinkPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddMemberDetails.h deleted file mode 100644 index 86037bc5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddMemberDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddMemberDetails` struct. -/// -/// Added users and/or groups to shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddMemberDetails` struct. -/// -@interface DBTEAMLOGSharedContentAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddMemberDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddMemberDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddMemberType.h deleted file mode 100644 index 4163e50c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentAddMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddMemberType` struct. -/// -@interface DBTEAMLOGSharedContentAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddMemberType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h deleted file mode 100644 index d1221521..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDownloadPolicyType; -@class DBTEAMLOGSharedContentChangeDownloadsPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeDownloadsPolicyDetails` struct. -/// -/// Changed whether members can download shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New downloads policy. -@property (nonatomic, readonly) DBTEAMLOGDownloadPolicyType *dNewValue; - -/// Previous downloads policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDownloadPolicyType *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New downloads policy. -/// @param previousValue Previous downloads policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDownloadPolicyType *)dNewValue - previousValue:(nullable DBTEAMLOGDownloadPolicyType *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New downloads policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDownloadPolicyType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeDownloadsPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyType.h deleted file mode 100644 index 8611ef89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeDownloadsPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeDownloadsPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeDownloadsPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeDownloadsPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeDownloadsPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeDownloadsPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` object. -/// -+ (DBTEAMLOGSharedContentChangeDownloadsPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeInviteeRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeInviteeRoleDetails.h deleted file mode 100644 index cb37493e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeInviteeRoleDetails.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentChangeInviteeRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeInviteeRoleDetails` struct. -/// -/// Changed access type of invitee to shared file/folder before invite was -/// accepted. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Previous access level. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *previousAccessLevel; - -/// New access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *dNewAccessLevel; - -/// The invitee whose role was changed. -@property (nonatomic, readonly, copy) NSString *invitee; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewAccessLevel New access level. -/// @param invitee The invitee whose role was changed. -/// @param previousAccessLevel Previous access level. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel - invitee:(NSString *)invitee - previousAccessLevel:(nullable DBSHARINGAccessLevel *)previousAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewAccessLevel New access level. -/// @param invitee The invitee whose role was changed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel invitee:(NSString *)invitee; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeInviteeRoleDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeInviteeRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeInviteeRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeInviteeRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeInviteeRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeInviteeRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeInviteeRoleType.h deleted file mode 100644 index b25110a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeInviteeRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeInviteeRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeInviteeRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeInviteeRoleType` struct. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeInviteeRoleType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeInviteeRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeInviteeRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` object. -/// -+ (DBTEAMLOGSharedContentChangeInviteeRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkAudienceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkAudienceDetails.h deleted file mode 100644 index 32e59510..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkAudienceDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; -@class DBTEAMLOGSharedContentChangeLinkAudienceDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkAudienceDetails` struct. -/// -/// Changed link audience of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceDetails : NSObject - -#pragma mark - Instance fields - -/// New link audience value. -@property (nonatomic, readonly) DBSHARINGLinkAudience *dNewValue; - -/// Previous link audience value. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New link audience value. -/// @param previousValue Previous link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGLinkAudience *)dNewValue - previousValue:(nullable DBSHARINGLinkAudience *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGLinkAudience *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkAudienceDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkAudienceDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkAudienceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkAudienceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkAudienceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkAudienceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkAudienceType.h deleted file mode 100644 index 2470e68e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkAudienceType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkAudienceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkAudienceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkAudienceType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkAudienceType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkAudienceType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkAudienceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkAudienceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkExpiryDetails.h deleted file mode 100644 index 37597c1e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkExpiryDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkExpiryDetails` struct. -/// -/// Changed link expiration of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -/// Previous shared content link expiration date. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// @param previousValue Previous shared content link expiration date. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSDate *)dNewValue previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkExpiryDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkExpiryDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkExpiryType.h deleted file mode 100644 index b5c20927..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkExpiryType` struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkExpiryType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentChangeLinkExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedContentChangeLinkExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkPasswordDetails.h deleted file mode 100644 index 165df20e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkPasswordDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkPasswordDetails` struct. -/// -/// Changed link password of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkPasswordType.h deleted file mode 100644 index 8a98ab07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeLinkPasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkPasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeMemberRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeMemberRoleDetails.h deleted file mode 100644 index b07510b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeMemberRoleDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentChangeMemberRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeMemberRoleDetails` struct. -/// -/// Changed access type of shared file/folder member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Previous access level. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *previousAccessLevel; - -/// New access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *dNewAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewAccessLevel New access level. -/// @param previousAccessLevel Previous access level. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel - previousAccessLevel:(nullable DBSHARINGAccessLevel *)previousAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewAccessLevel New access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeMemberRoleDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeMemberRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeMemberRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeMemberRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeMemberRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeMemberRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeMemberRoleType.h deleted file mode 100644 index 7f612a0a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeMemberRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeMemberRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeMemberRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeMemberRoleType` struct. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeMemberRoleType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeMemberRoleType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeMemberRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeMemberRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentChangeMemberRoleType` -/// object. -/// -+ (DBTEAMLOGSharedContentChangeMemberRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h deleted file mode 100644 index 0b36adf2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGViewerInfoPolicy; -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeViewerInfoPolicyDetails` struct. -/// -/// Changed whether members can see who viewed shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New viewer info policy. -@property (nonatomic, readonly) DBSHARINGViewerInfoPolicy *dNewValue; - -/// Previous view info policy. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New viewer info policy. -/// @param previousValue Previous view info policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGViewerInfoPolicy *)dNewValue - previousValue:(nullable DBSHARINGViewerInfoPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New viewer info policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGViewerInfoPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeViewerInfoPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h deleted file mode 100644 index e3161c8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeViewerInfoPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeViewerInfoPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeViewerInfoPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` object. -/// -+ (DBTEAMLOGSharedContentChangeViewerInfoPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentClaimInvitationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentClaimInvitationDetails.h deleted file mode 100644 index f6c88128..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentClaimInvitationDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentClaimInvitationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentClaimInvitationDetails` struct. -/// -/// Acquired membership of shared file/folder by accepting invite. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentClaimInvitationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentClaimInvitationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentClaimInvitationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentClaimInvitationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentClaimInvitationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentClaimInvitationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` object. -/// -+ (DBTEAMLOGSharedContentClaimInvitationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentClaimInvitationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentClaimInvitationType.h deleted file mode 100644 index 0c4ef9e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentClaimInvitationType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentClaimInvitationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentClaimInvitationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentClaimInvitationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentClaimInvitationType` struct. -/// -@interface DBTEAMLOGSharedContentClaimInvitationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentClaimInvitationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentClaimInvitationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentClaimInvitationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentClaimInvitationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentClaimInvitationType` -/// object. -/// -+ (DBTEAMLOGSharedContentClaimInvitationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentCopyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentCopyDetails.h deleted file mode 100644 index c9c6cbfa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentCopyDetails.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentCopyDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentCopyDetails` struct. -/// -/// Copied shared file/folder to own Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentCopyDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy) NSString *sharedContentLink; - -/// The shared content owner. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner; - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// The path where the member saved the content. -@property (nonatomic, readonly, copy) NSString *destinationPath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param destinationPath The path where the member saved the content. -/// @param sharedContentOwner The shared content owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - destinationPath:(NSString *)destinationPath - sharedContentOwner:(nullable DBTEAMLOGUserLogInfo *)sharedContentOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param destinationPath The path where the member saved the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - destinationPath:(NSString *)destinationPath; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentCopyDetails` struct. -/// -@interface DBTEAMLOGSharedContentCopyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentCopyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentCopyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentCopyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentCopyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentCopyDetails` object. -/// -+ (DBTEAMLOGSharedContentCopyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentCopyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentCopyType.h deleted file mode 100644 index 84183ecc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentCopyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentCopyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentCopyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentCopyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentCopyType` struct. -/// -@interface DBTEAMLOGSharedContentCopyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentCopyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentCopyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentCopyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentCopyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentCopyType` object. -/// -+ (DBTEAMLOGSharedContentCopyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentDownloadDetails.h deleted file mode 100644 index 4d56379d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentDownloadDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentDownloadDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentDownloadDetails` struct. -/// -/// Downloaded shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy) NSString *sharedContentLink; - -/// The shared content owner. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner; - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentOwner The shared content owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentOwner:(nullable DBTEAMLOGUserLogInfo *)sharedContentOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentDownloadDetails` struct. -/// -@interface DBTEAMLOGSharedContentDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentDownloadDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentDownloadDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentDownloadType.h deleted file mode 100644 index 3e39ed7f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentDownloadType` struct. -/// -@interface DBTEAMLOGSharedContentDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentDownloadType` object. -/// -+ (DBTEAMLOGSharedContentDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRelinquishMembershipDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRelinquishMembershipDetails.h deleted file mode 100644 index 551b6c62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRelinquishMembershipDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRelinquishMembershipDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRelinquishMembershipDetails` struct. -/// -/// Left shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRelinquishMembershipDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRelinquishMembershipDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRelinquishMembershipDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRelinquishMembershipDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` object. -/// -+ (DBTEAMLOGSharedContentRelinquishMembershipDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRelinquishMembershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRelinquishMembershipType.h deleted file mode 100644 index ce25adaf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRelinquishMembershipType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRelinquishMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRelinquishMembershipType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRelinquishMembershipType` -/// struct. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRelinquishMembershipType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRelinquishMembershipType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRelinquishMembershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` object. -/// -+ (DBTEAMLOGSharedContentRelinquishMembershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveInviteesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveInviteesDetails.h deleted file mode 100644 index 6af5fcfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveInviteesDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveInviteesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveInviteesDetails` struct. -/// -/// Removed invitee from shared file/folder before invite was accepted. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesDetails : NSObject - -#pragma mark - Instance fields - -/// A list of invitees. -@property (nonatomic, readonly) NSArray *invitees; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitees A list of invitees. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveInviteesDetails` struct. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveInviteesDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveInviteesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveInviteesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` object. -/// -+ (DBTEAMLOGSharedContentRemoveInviteesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveInviteesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveInviteesType.h deleted file mode 100644 index 05346870..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveInviteesType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveInviteesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveInviteesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveInviteesType` struct. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveInviteesType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveInviteesType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveInviteesType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveInviteesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveInviteesType` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveInviteesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h deleted file mode 100644 index f57bfb21..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkExpiryDetails` struct. -/// -/// Removed link expiration date of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// Previous shared content link expiration date. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous shared content link expiration date. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkExpiryDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryType.h deleted file mode 100644 index be9ee755..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkExpiryType` struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkExpiryType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveLinkExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h deleted file mode 100644 index 902d95b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkPasswordDetails` struct. -/// -/// Removed link password of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordType.h deleted file mode 100644 index f2da580f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkPasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveMemberDetails.h deleted file mode 100644 index dabdd73c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveMemberDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveMemberDetails` struct. -/// -/// Removed user/group from shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(nullable DBSHARINGAccessLevel *)sharedContentAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGSharedContentRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveMemberDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveMemberDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveMemberDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveMemberType.h deleted file mode 100644 index 1a15f093..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRemoveMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveMemberType` struct. -/// -@interface DBTEAMLOGSharedContentRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentRemoveMemberType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveMemberType` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRequestAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRequestAccessDetails.h deleted file mode 100644 index f082e283..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRequestAccessDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRequestAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRequestAccessDetails` struct. -/// -/// Requested access to shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRequestAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRequestAccessDetails` struct. -/// -@interface DBTEAMLOGSharedContentRequestAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRequestAccessDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRequestAccessDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRequestAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRequestAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRequestAccessDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentRequestAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRequestAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRequestAccessType.h deleted file mode 100644 index c18c1290..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRequestAccessType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRequestAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRequestAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRequestAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRequestAccessType` struct. -/// -@interface DBTEAMLOGSharedContentRequestAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRequestAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentRequestAccessType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRequestAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRequestAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRequestAccessType` -/// object. -/// -+ (DBTEAMLOGSharedContentRequestAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreInviteesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreInviteesDetails.h deleted file mode 100644 index 1be6cb4f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreInviteesDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentRestoreInviteesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreInviteesDetails` struct. -/// -/// Restored shared file/folder invitees. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// A list of invitees. -@property (nonatomic, readonly) NSArray *invitees; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param invitees A list of invitees. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreInviteesDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreInviteesDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreInviteesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreInviteesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` object. -/// -+ (DBTEAMLOGSharedContentRestoreInviteesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreInviteesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreInviteesType.h deleted file mode 100644 index bdcb75fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreInviteesType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRestoreInviteesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreInviteesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreInviteesType` struct. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreInviteesType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRestoreInviteesType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreInviteesType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreInviteesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRestoreInviteesType` -/// object. -/// -+ (DBTEAMLOGSharedContentRestoreInviteesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreMemberDetails.h deleted file mode 100644 index d50dd417..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreMemberDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentRestoreMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreMemberDetails` struct. -/// -/// Restored users and/or groups to membership of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreMemberDetails` struct. -/// -@interface DBTEAMLOGSharedContentRestoreMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreMemberDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRestoreMemberDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRestoreMemberDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentRestoreMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreMemberType.h deleted file mode 100644 index 142a253f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentRestoreMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRestoreMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreMemberType` struct. -/// -@interface DBTEAMLOGSharedContentRestoreMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentRestoreMemberType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRestoreMemberType` -/// object. -/// -+ (DBTEAMLOGSharedContentRestoreMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentUnshareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentUnshareDetails.h deleted file mode 100644 index 2a94c537..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentUnshareDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentUnshareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentUnshareDetails` struct. -/// -/// Unshared file/folder by clearing membership. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentUnshareDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentUnshareDetails` struct. -/// -@interface DBTEAMLOGSharedContentUnshareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentUnshareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentUnshareDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentUnshareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentUnshareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentUnshareDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentUnshareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentUnshareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentUnshareType.h deleted file mode 100644 index d06c079b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentUnshareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentUnshareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentUnshareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentUnshareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentUnshareType` struct. -/// -@interface DBTEAMLOGSharedContentUnshareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentUnshareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentUnshareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentUnshareType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentUnshareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentUnshareType` object. -/// -+ (DBTEAMLOGSharedContentUnshareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentViewDetails.h deleted file mode 100644 index ed39b951..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentViewDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentViewDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentViewDetails` struct. -/// -/// Previewed shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentViewDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy) NSString *sharedContentLink; - -/// The shared content owner. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner; - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentOwner The shared content owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentOwner:(nullable DBTEAMLOGUserLogInfo *)sharedContentOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentViewDetails` struct. -/// -@interface DBTEAMLOGSharedContentViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentViewDetails` object. -/// -+ (DBTEAMLOGSharedContentViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentViewType.h deleted file mode 100644 index c40cfbfc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedContentViewType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentViewType` struct. -/// -@interface DBTEAMLOGSharedContentViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentViewType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentViewType` object. -/// -+ (DBTEAMLOGSharedContentViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h deleted file mode 100644 index 1f398760..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkPolicy; -@class DBTEAMLOGSharedFolderChangeLinkPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeLinkPolicyDetails` struct. -/// -/// Changed who can access shared folder via link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New shared folder link policy. -@property (nonatomic, readonly) DBSHARINGSharedLinkPolicy *dNewValue; - -/// Previous shared folder link policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared folder link policy. -/// @param previousValue Previous shared folder link policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGSharedLinkPolicy *)dNewValue - previousValue:(nullable DBSHARINGSharedLinkPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New shared folder link policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGSharedLinkPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeLinkPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeLinkPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeLinkPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyType.h deleted file mode 100644 index c127d71d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeLinkPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeLinkPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeLinkPolicyType` struct. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeLinkPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeLinkPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeLinkPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderChangeLinkPolicyType` -/// object. -/// -+ (DBTEAMLOGSharedFolderChangeLinkPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h deleted file mode 100644 index a3c83e6a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails; -@class DBTEAMLOGSharedFolderMembersInheritancePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersInheritancePolicyDetails` struct. -/// -/// Changed whether shared folder inherits members from parent folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New member inheritance policy. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMembersInheritancePolicy *dNewValue; - -/// Previous member inheritance policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharedFolderMembersInheritancePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New member inheritance policy. -/// @param previousValue Previous member inheritance policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedFolderMembersInheritancePolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharedFolderMembersInheritancePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New member inheritance policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedFolderMembersInheritancePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersInheritancePolicyDetails` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h deleted file mode 100644 index 7878f084..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersInheritancePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersInheritancePolicyType` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h deleted file mode 100644 index 95d8f9f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersManagementPolicyDetails` struct. -/// -/// Changed who can add/remove members of shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New members management policy. -@property (nonatomic, readonly) DBSHARINGAclUpdatePolicy *dNewValue; - -/// Previous members management policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New members management policy. -/// @param previousValue Previous members management policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGAclUpdatePolicy *)dNewValue - previousValue:(nullable DBSHARINGAclUpdatePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New members management policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGAclUpdatePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersManagementPolicyDetails` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h deleted file mode 100644 index 9f0997f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersManagementPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersManagementPolicyType` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h deleted file mode 100644 index 029725eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberPolicy; -@class DBTEAMLOGSharedFolderChangeMembersPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersPolicyDetails` struct. -/// -/// Changed who can become member of shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external invite policy. -@property (nonatomic, readonly) DBSHARINGMemberPolicy *dNewValue; - -/// Previous external invite policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external invite policy. -/// @param previousValue Previous external invite policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGMemberPolicy *)dNewValue - previousValue:(nullable DBSHARINGMemberPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external invite policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeMembersPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeMembersPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyType.h deleted file mode 100644 index e9172eb3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeMembersPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeMembersPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderCreateDetails.h deleted file mode 100644 index 75e6577e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderCreateDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderCreateDetails` struct. -/// -/// Created shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Target namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *targetNsId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetNsId Target namespace ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetNsId:(nullable NSString *)targetNsId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderCreateDetails` struct. -/// -@interface DBTEAMLOGSharedFolderCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderCreateDetails` object. -/// -+ (DBTEAMLOGSharedFolderCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderCreateType.h deleted file mode 100644 index 7e4074ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderCreateType` struct. -/// -@interface DBTEAMLOGSharedFolderCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderCreateType` object. -/// -+ (DBTEAMLOGSharedFolderCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderDeclineInvitationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderDeclineInvitationDetails.h deleted file mode 100644 index de3cb1c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderDeclineInvitationDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderDeclineInvitationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderDeclineInvitationDetails` struct. -/// -/// Declined team member's invite to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderDeclineInvitationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderDeclineInvitationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderDeclineInvitationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderDeclineInvitationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` object. -/// -+ (DBTEAMLOGSharedFolderDeclineInvitationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderDeclineInvitationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderDeclineInvitationType.h deleted file mode 100644 index b63c7b49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderDeclineInvitationType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderDeclineInvitationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderDeclineInvitationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderDeclineInvitationType` struct. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderDeclineInvitationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderDeclineInvitationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderDeclineInvitationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderDeclineInvitationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderDeclineInvitationType` -/// object. -/// -+ (DBTEAMLOGSharedFolderDeclineInvitationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMembersInheritancePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMembersInheritancePolicy.h deleted file mode 100644 index a4b945b2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMembersInheritancePolicy.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderMembersInheritancePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMembersInheritancePolicy` union. -/// -/// Specifies if a shared folder inherits its members from the parent folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderMembersInheritancePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharedFolderMembersInheritancePolicyTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharedFolderMembersInheritancePolicyTag) { - /// (no description). - DBTEAMLOGSharedFolderMembersInheritancePolicyDontInheritMembers, - - /// (no description). - DBTEAMLOGSharedFolderMembersInheritancePolicyInheritMembers, - - /// (no description). - DBTEAMLOGSharedFolderMembersInheritancePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMembersInheritancePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "dont_inherit_members". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDontInheritMembers; - -/// -/// Initializes union class with tag state of "inherit_members". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInheritMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "dont_inherit_members". -/// -/// @return Whether the union's current tag state has value -/// "dont_inherit_members". -/// -- (BOOL)isDontInheritMembers; - -/// -/// Retrieves whether the union's current tag state has value "inherit_members". -/// -/// @return Whether the union's current tag state has value "inherit_members". -/// -- (BOOL)isInheritMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` union. -/// -@interface DBTEAMLOGSharedFolderMembersInheritancePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderMembersInheritancePolicy` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderMembersInheritancePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderMembersInheritancePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` object. -/// -+ (DBTEAMLOGSharedFolderMembersInheritancePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMountDetails.h deleted file mode 100644 index c84871a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMountDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderMountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMountDetails` struct. -/// -/// Added shared folder to own Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderMountDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMountDetails` struct. -/// -@interface DBTEAMLOGSharedFolderMountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderMountDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderMountDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderMountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderMountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderMountDetails` object. -/// -+ (DBTEAMLOGSharedFolderMountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMountType.h deleted file mode 100644 index c75ec88e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderMountType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderMountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderMountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMountType` struct. -/// -@interface DBTEAMLOGSharedFolderMountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderMountType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderMountType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderMountType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderMountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderMountType` object. -/// -+ (DBTEAMLOGSharedFolderMountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderNestDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderNestDetails.h deleted file mode 100644 index 391fd03e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderNestDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderNestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderNestDetails` struct. -/// -/// Changed parent of shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderNestDetails : NSObject - -#pragma mark - Instance fields - -/// Previous parent namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *previousParentNsId; - -/// New parent namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *dNewParentNsId; - -/// Previous namespace path. -@property (nonatomic, readonly, copy, nullable) NSString *previousNsPath; - -/// New namespace path. -@property (nonatomic, readonly, copy, nullable) NSString *dNewNsPath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousParentNsId Previous parent namespace ID. -/// @param dNewParentNsId New parent namespace ID. -/// @param previousNsPath Previous namespace path. -/// @param dNewNsPath New namespace path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousParentNsId:(nullable NSString *)previousParentNsId - dNewParentNsId:(nullable NSString *)dNewParentNsId - previousNsPath:(nullable NSString *)previousNsPath - dNewNsPath:(nullable NSString *)dNewNsPath; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderNestDetails` struct. -/// -@interface DBTEAMLOGSharedFolderNestDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderNestDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderNestDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderNestDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderNestDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderNestDetails` object. -/// -+ (DBTEAMLOGSharedFolderNestDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderNestType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderNestType.h deleted file mode 100644 index cf007a59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderNestType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderNestType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderNestType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderNestType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderNestType` struct. -/// -@interface DBTEAMLOGSharedFolderNestTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderNestType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderNestType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderNestType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderNestType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderNestType` object. -/// -+ (DBTEAMLOGSharedFolderNestType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderTransferOwnershipDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderTransferOwnershipDetails.h deleted file mode 100644 index 4725f1b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderTransferOwnershipDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderTransferOwnershipDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderTransferOwnershipDetails` struct. -/// -/// Transferred ownership of shared folder to another member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipDetails : NSObject - -#pragma mark - Instance fields - -/// The email address of the previous shared folder owner. -@property (nonatomic, readonly, copy, nullable) NSString *previousOwnerEmail; - -/// The email address of the new shared folder owner. -@property (nonatomic, readonly, copy) NSString *dNewOwnerEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewOwnerEmail The email address of the new shared folder owner. -/// @param previousOwnerEmail The email address of the previous shared folder -/// owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerEmail:(NSString *)dNewOwnerEmail - previousOwnerEmail:(nullable NSString *)previousOwnerEmail; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewOwnerEmail The email address of the new shared folder owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerEmail:(NSString *)dNewOwnerEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderTransferOwnershipDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderTransferOwnershipDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderTransferOwnershipDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderTransferOwnershipDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` object. -/// -+ (DBTEAMLOGSharedFolderTransferOwnershipDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderTransferOwnershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderTransferOwnershipType.h deleted file mode 100644 index e47dce4e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderTransferOwnershipType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderTransferOwnershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderTransferOwnershipType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderTransferOwnershipType` struct. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderTransferOwnershipType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderTransferOwnershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderTransferOwnershipType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderTransferOwnershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderTransferOwnershipType` -/// object. -/// -+ (DBTEAMLOGSharedFolderTransferOwnershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderUnmountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderUnmountDetails.h deleted file mode 100644 index bfd8e7f3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderUnmountDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderUnmountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderUnmountDetails` struct. -/// -/// Deleted shared folder from Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderUnmountDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderUnmountDetails` struct. -/// -@interface DBTEAMLOGSharedFolderUnmountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderUnmountDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderUnmountDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderUnmountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderUnmountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderUnmountDetails` -/// object. -/// -+ (DBTEAMLOGSharedFolderUnmountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderUnmountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderUnmountType.h deleted file mode 100644 index af3a9647..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedFolderUnmountType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderUnmountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderUnmountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderUnmountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderUnmountType` struct. -/// -@interface DBTEAMLOGSharedFolderUnmountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderUnmountType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderUnmountType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderUnmountType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderUnmountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderUnmountType` object. -/// -+ (DBTEAMLOGSharedFolderUnmountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAccessLevel.h deleted file mode 100644 index 694de5ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAccessLevel.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAccessLevel` union. -/// -/// Shared link access level. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharedLinkAccessLevelTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSharedLinkAccessLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharedLinkAccessLevelTag) { - /// (no description). - DBTEAMLOGSharedLinkAccessLevelNone, - - /// (no description). - DBTEAMLOGSharedLinkAccessLevelReader, - - /// (no description). - DBTEAMLOGSharedLinkAccessLevelWriter, - - /// (no description). - DBTEAMLOGSharedLinkAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "reader". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReader; - -/// -/// Initializes union class with tag state of "writer". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWriter; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "reader". -/// -/// @return Whether the union's current tag state has value "reader". -/// -- (BOOL)isReader; - -/// -/// Retrieves whether the union's current tag state has value "writer". -/// -/// @return Whether the union's current tag state has value "writer". -/// -- (BOOL)isWriter; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharedLinkAccessLevel` union. -/// -@interface DBTEAMLOGSharedLinkAccessLevelSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkAccessLevel` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkAccessLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkAccessLevel *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAccessLevel` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkAccessLevel` object. -/// -+ (DBTEAMLOGSharedLinkAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAddExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAddExpiryDetails.h deleted file mode 100644 index d07c4032..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAddExpiryDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAddExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAddExpiryDetails` struct. -/// -/// Added shared link expiration date. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkAddExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared link expiration date. -@property (nonatomic, readonly) NSDate *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared link expiration date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSDate *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkAddExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedLinkAddExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkAddExpiryDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkAddExpiryDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkAddExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkAddExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkAddExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkAddExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAddExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAddExpiryType.h deleted file mode 100644 index fc155388..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkAddExpiryType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAddExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAddExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkAddExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkAddExpiryType` struct. -/// -@interface DBTEAMLOGSharedLinkAddExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkAddExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkAddExpiryType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkAddExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkAddExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkAddExpiryType` object. -/// -+ (DBTEAMLOGSharedLinkAddExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeExpiryDetails.h deleted file mode 100644 index ae2654dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeExpiryDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeExpiryDetails` struct. -/// -/// Changed shared link expiration date. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared link expiration date. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -/// Previous shared link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared link expiration date. Might be missing due to -/// historical data gap. -/// @param previousValue Previous shared link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSDate *)dNewValue previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeExpiryDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkChangeExpiryDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeExpiryType.h deleted file mode 100644 index bbc9c603..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeExpiryType` struct. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkChangeExpiryType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeVisibilityDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeVisibilityDetails.h deleted file mode 100644 index f265670b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeVisibilityDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeVisibilityDetails; -@class DBTEAMLOGSharedLinkVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeVisibilityDetails` struct. -/// -/// Changed visibility of shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityDetails : NSObject - -#pragma mark - Instance fields - -/// New shared link visibility. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkVisibility *dNewValue; - -/// Previous shared link visibility. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharedLinkVisibility *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared link visibility. -/// @param previousValue Previous shared link visibility. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedLinkVisibility *)dNewValue - previousValue:(nullable DBTEAMLOGSharedLinkVisibility *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New shared link visibility. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedLinkVisibility *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeVisibilityDetails` struct. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeVisibilityDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkChangeVisibilityDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeVisibilityDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeVisibilityDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeVisibilityDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeVisibilityDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeVisibilityType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeVisibilityType.h deleted file mode 100644 index 58a30b2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkChangeVisibilityType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeVisibilityType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeVisibilityType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeVisibilityType` struct. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeVisibilityType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkChangeVisibilityType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeVisibilityType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeVisibilityType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeVisibilityType` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeVisibilityType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCopyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCopyDetails.h deleted file mode 100644 index 708bedca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCopyDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkCopyDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCopyDetails` struct. -/// -/// Added file/folder to Dropbox from shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCopyDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCopyDetails` struct. -/// -@interface DBTEAMLOGSharedLinkCopyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCopyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCopyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCopyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCopyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCopyDetails` object. -/// -+ (DBTEAMLOGSharedLinkCopyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCopyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCopyType.h deleted file mode 100644 index a7ba5513..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCopyType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkCopyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCopyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCopyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCopyType` struct. -/// -@interface DBTEAMLOGSharedLinkCopyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCopyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCopyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCopyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCopyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCopyType` object. -/// -+ (DBTEAMLOGSharedLinkCopyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCreateDetails.h deleted file mode 100644 index cb53e0f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCreateDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAccessLevel; -@class DBTEAMLOGSharedLinkCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCreateDetails` struct. -/// -/// Created shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Defines who can access the shared link. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharedLinkAccessLevel *sharedLinkAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkAccessLevel Defines who can access the shared link. Might -/// be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessLevel:(nullable DBTEAMLOGSharedLinkAccessLevel *)sharedLinkAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCreateDetails` struct. -/// -@interface DBTEAMLOGSharedLinkCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCreateDetails` object. -/// -+ (DBTEAMLOGSharedLinkCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCreateType.h deleted file mode 100644 index 2bc98217..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCreateType` struct. -/// -@interface DBTEAMLOGSharedLinkCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCreateType` object. -/// -+ (DBTEAMLOGSharedLinkCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDisableDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDisableDetails.h deleted file mode 100644 index 8ea76da9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDisableDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDisableDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDisableDetails` struct. -/// -/// Removed shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDisableDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDisableDetails` struct. -/// -@interface DBTEAMLOGSharedLinkDisableDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDisableDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDisableDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDisableDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDisableDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDisableDetails` object. -/// -+ (DBTEAMLOGSharedLinkDisableDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDisableType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDisableType.h deleted file mode 100644 index 1174a5ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDisableType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDisableType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDisableType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDisableType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDisableType` struct. -/// -@interface DBTEAMLOGSharedLinkDisableTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDisableType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDisableType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDisableType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDisableType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDisableType` object. -/// -+ (DBTEAMLOGSharedLinkDisableType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDownloadDetails.h deleted file mode 100644 index 070ef2eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDownloadDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDownloadDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDownloadDetails` struct. -/// -/// Downloaded file/folder from shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDownloadDetails` struct. -/// -@interface DBTEAMLOGSharedLinkDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDownloadDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDownloadDetails` object. -/// -+ (DBTEAMLOGSharedLinkDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDownloadType.h deleted file mode 100644 index d4d0d6e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDownloadType` struct. -/// -@interface DBTEAMLOGSharedLinkDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDownloadType` object. -/// -+ (DBTEAMLOGSharedLinkDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkRemoveExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkRemoveExpiryDetails.h deleted file mode 100644 index 6acdf44b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkRemoveExpiryDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkRemoveExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkRemoveExpiryDetails` struct. -/// -/// Removed shared link expiration date. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// Previous shared link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous shared link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkRemoveExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkRemoveExpiryDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkRemoveExpiryDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkRemoveExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkRemoveExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkRemoveExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkRemoveExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkRemoveExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkRemoveExpiryType.h deleted file mode 100644 index 3944210e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkRemoveExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkRemoveExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkRemoveExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkRemoveExpiryType` struct. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkRemoveExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkRemoveExpiryType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkRemoveExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkRemoveExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkRemoveExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedLinkRemoveExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h deleted file mode 100644 index d0d274f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAddExpirationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddExpirationDetails` struct. -/// -/// Added an expiration date to the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink - dNewValue:(nullable NSDate *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddExpirationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddExpirationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddExpirationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationType.h deleted file mode 100644 index de288f2b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAddExpirationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddExpirationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddExpirationType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddExpirationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddExpirationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddExpirationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddExpirationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h deleted file mode 100644 index e9ff6ac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAddPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddPasswordDetails` struct. -/// -/// Added a password to the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordType.h deleted file mode 100644 index f47664c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAddPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddPasswordType` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkSettingsAddPasswordType` -/// object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h deleted file mode 100644 index fee2aa88..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadDisabledDetails` struct. -/// -/// Disabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedLinkSettingsAllowDownloadDisabledDetails` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h deleted file mode 100644 index b4d68dab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedLinkSettingsAllowDownloadDisabledType` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h deleted file mode 100644 index 010c4e09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadEnabledDetails` struct. -/// -/// Enabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedLinkSettingsAllowDownloadEnabledDetails` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h deleted file mode 100644 index 42d579d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAllowDownloadEnabledType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h deleted file mode 100644 index 1829dacc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGLinkAudience; -@class DBTEAMLOGSharedLinkSettingsChangeAudienceDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeAudienceDetails` struct. -/// -/// Changed the audience of the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// New link audience value. -@property (nonatomic, readonly) DBSHARINGLinkAudience *dNewValue; - -/// Previous link audience value. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param dNewValue New link audience value. -/// @param sharedContentLink Shared content link. -/// @param previousValue Previous link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - dNewValue:(DBSHARINGLinkAudience *)dNewValue - sharedContentLink:(nullable NSString *)sharedContentLink - previousValue:(nullable DBSHARINGLinkAudience *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param dNewValue New link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - dNewValue:(DBSHARINGLinkAudience *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeAudienceDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceType.h deleted file mode 100644 index 4b8ac34c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsChangeAudienceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeAudienceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeAudienceType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeAudienceType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeAudienceType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeAudienceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeAudienceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h deleted file mode 100644 index 2a6d439b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsChangeExpirationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeExpirationDetails` struct. -/// -/// Changed the expiration date of the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -/// Previous shared content link expiration date. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// @param previousValue Previous shared content link expiration date. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink - dNewValue:(nullable NSDate *)dNewValue - previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeExpirationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationType.h deleted file mode 100644 index ffde5138..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsChangeExpirationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeExpirationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeExpirationType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeExpirationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeExpirationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeExpirationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeExpirationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h deleted file mode 100644 index 06085c98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsChangePasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangePasswordDetails` struct. -/// -/// Changed the password of the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangePasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangePasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangePasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordType.h deleted file mode 100644 index 68cb61af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsChangePasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangePasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangePasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangePasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangePasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangePasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangePasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h deleted file mode 100644 index 65b1673e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemoveExpirationDetails` struct. -/// -/// Removed the expiration date from the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// Previous shared link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// @param previousValue Previous shared link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink - previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemoveExpirationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h deleted file mode 100644 index 4b76de07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemoveExpirationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemoveExpirationType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemoveExpirationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemoveExpirationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h deleted file mode 100644 index 5119380c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsRemovePasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemovePasswordDetails` struct. -/// -/// Removed the password from the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemovePasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordType.h deleted file mode 100644 index 09f8cdfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsRemovePasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemovePasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemovePasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemovePasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemovePasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemovePasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemovePasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkShareDetails.h deleted file mode 100644 index e35b5f30..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkShareDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalUserLogInfo; -@class DBTEAMLOGSharedLinkShareDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkShareDetails` struct. -/// -/// Added members as audience of shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkShareDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -/// Users without a Dropbox account that were added as shared link audience. -@property (nonatomic, readonly, nullable) NSArray *externalUsers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// @param externalUsers Users without a Dropbox account that were added as -/// shared link audience. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner - externalUsers:(nullable NSArray *)externalUsers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkShareDetails` struct. -/// -@interface DBTEAMLOGSharedLinkShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkShareDetails` object. -/// -+ (DBTEAMLOGSharedLinkShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkShareType.h deleted file mode 100644 index 1ceb0efc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkShareType` struct. -/// -@interface DBTEAMLOGSharedLinkShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkShareType` object. -/// -+ (DBTEAMLOGSharedLinkShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkViewDetails.h deleted file mode 100644 index 4d7142d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkViewDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkViewDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkViewDetails` struct. -/// -/// Opened shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkViewDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkViewDetails` struct. -/// -@interface DBTEAMLOGSharedLinkViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkViewDetails` object. -/// -+ (DBTEAMLOGSharedLinkViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkViewType.h deleted file mode 100644 index 9b9a3346..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkViewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkViewType` struct. -/// -@interface DBTEAMLOGSharedLinkViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkViewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkViewType` object. -/// -+ (DBTEAMLOGSharedLinkViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkVisibility.h deleted file mode 100644 index dd0ce34a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedLinkVisibility.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkVisibility` union. -/// -/// Defines who has access to a shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharedLinkVisibilityTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSharedLinkVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharedLinkVisibilityTag) { - /// (no description). - DBTEAMLOGSharedLinkVisibilityNoOne, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityPassword, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityPublic, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityTeamOnly, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_one". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "password". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "public". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharedLinkVisibility` union. -/// -@interface DBTEAMLOGSharedLinkVisibilitySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkVisibility` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkVisibility` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkVisibility *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkVisibility` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkVisibility` object. -/// -+ (DBTEAMLOGSharedLinkVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedNoteOpenedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedNoteOpenedDetails.h deleted file mode 100644 index 5342004a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedNoteOpenedDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedNoteOpenedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedNoteOpenedDetails` struct. -/// -/// Opened shared Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedNoteOpenedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedNoteOpenedDetails` struct. -/// -@interface DBTEAMLOGSharedNoteOpenedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedNoteOpenedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedNoteOpenedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedNoteOpenedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedNoteOpenedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedNoteOpenedDetails` object. -/// -+ (DBTEAMLOGSharedNoteOpenedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedNoteOpenedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedNoteOpenedType.h deleted file mode 100644 index d01bebf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharedNoteOpenedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedNoteOpenedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedNoteOpenedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedNoteOpenedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedNoteOpenedType` struct. -/// -@interface DBTEAMLOGSharedNoteOpenedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedNoteOpenedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedNoteOpenedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedNoteOpenedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedNoteOpenedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedNoteOpenedType` object. -/// -+ (DBTEAMLOGSharedNoteOpenedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h deleted file mode 100644 index de3759c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeFolderJoinPolicyDetails; -@class DBTEAMLOGSharingFolderJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeFolderJoinPolicyDetails` struct. -/// -/// Changed whether team members can join shared folders owned outside team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external join policy. -@property (nonatomic, readonly) DBTEAMLOGSharingFolderJoinPolicy *dNewValue; - -/// Previous external join policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharingFolderJoinPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external join policy. -/// @param previousValue Previous external join policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingFolderJoinPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharingFolderJoinPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external join policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingFolderJoinPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeFolderJoinPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeFolderJoinPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeFolderJoinPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyType.h deleted file mode 100644 index c21a67b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeFolderJoinPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeFolderJoinPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeFolderJoinPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeFolderJoinPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeFolderJoinPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeFolderJoinPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeFolderJoinPolicyType` -/// object. -/// -+ (DBTEAMLOGSharingChangeFolderJoinPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h deleted file mode 100644 index 35bd63c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnforceLinkPasswordPolicy; -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkAllowChangeExpirationPolicyDetails` struct. -/// -/// Changed the allow remove or change expiration policy for the links shared -/// outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGEnforceLinkPasswordPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly, nullable) DBTEAMLOGEnforceLinkPasswordPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGEnforceLinkPasswordPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGEnforceLinkPasswordPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGEnforceLinkPasswordPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkAllowChangeExpirationPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h deleted file mode 100644 index 43176ba9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkAllowChangeExpirationPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkAllowChangeExpirationPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` object. -/// -+ (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h deleted file mode 100644 index 5261c015..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDefaultLinkExpirationDaysPolicy; -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkDefaultExpirationPolicyDetails` struct. -/// -/// Changed the default expiration for the links shared outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGDefaultLinkExpirationDaysPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly, nullable) DBTEAMLOGDefaultLinkExpirationDaysPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDefaultLinkExpirationDaysPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDefaultLinkExpirationDaysPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDefaultLinkExpirationDaysPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkDefaultExpirationPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h deleted file mode 100644 index 783c8de8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkDefaultExpirationPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkDefaultExpirationPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` object. -/// -+ (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h deleted file mode 100644 index 82a74d72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangeLinkExpirationPolicy; -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkEnforcePasswordPolicyDetails` struct. -/// -/// Changed the password requirement for the links shared outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGChangeLinkExpirationPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly, nullable) DBTEAMLOGChangeLinkExpirationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGChangeLinkExpirationPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGChangeLinkExpirationPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGChangeLinkExpirationPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkEnforcePasswordPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h deleted file mode 100644 index 410a362f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkEnforcePasswordPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeLinkEnforcePasswordPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` object. -/// -+ (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkPolicyDetails.h deleted file mode 100644 index 9004aa08..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkPolicyDetails; -@class DBTEAMLOGSharingLinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkPolicyDetails` struct. -/// -/// Changed whether members can share links outside team, and if links are -/// accessible only by team members or anyone by default. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external link accessibility policy. -@property (nonatomic, readonly) DBTEAMLOGSharingLinkPolicy *dNewValue; - -/// Previous external link accessibility policy. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharingLinkPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external link accessibility policy. -/// @param previousValue Previous external link accessibility policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingLinkPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharingLinkPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external link accessibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingLinkPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeLinkPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkPolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingChangeLinkPolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeLinkPolicyDetails` -/// object. -/// -+ (DBTEAMLOGSharingChangeLinkPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkPolicyType.h deleted file mode 100644 index e4a68ae5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeLinkPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeLinkPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingChangeLinkPolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeLinkPolicyType` -/// object. -/// -+ (DBTEAMLOGSharingChangeLinkPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeMemberPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeMemberPolicyDetails.h deleted file mode 100644 index 165290e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeMemberPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeMemberPolicyDetails; -@class DBTEAMLOGSharingMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeMemberPolicyDetails` struct. -/// -/// Changed whether members can share files/folders outside team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external invite policy. -@property (nonatomic, readonly) DBTEAMLOGSharingMemberPolicy *dNewValue; - -/// Previous external invite policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharingMemberPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external invite policy. -/// @param previousValue Previous external invite policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingMemberPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharingMemberPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external invite policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeMemberPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeMemberPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeMemberPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeMemberPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeMemberPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeMemberPolicyDetails` -/// object. -/// -+ (DBTEAMLOGSharingChangeMemberPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeMemberPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeMemberPolicyType.h deleted file mode 100644 index baa6343b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingChangeMemberPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeMemberPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeMemberPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeMemberPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeMemberPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingChangeMemberPolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeMemberPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeMemberPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeMemberPolicyType` -/// object. -/// -+ (DBTEAMLOGSharingChangeMemberPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingFolderJoinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingFolderJoinPolicy.h deleted file mode 100644 index 1b03ebfd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingFolderJoinPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingFolderJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingFolderJoinPolicy` union. -/// -/// Policy for controlling if team members can join shared folders owned by non -/// team members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingFolderJoinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharingFolderJoinPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSharingFolderJoinPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharingFolderJoinPolicyTag) { - /// (no description). - DBTEAMLOGSharingFolderJoinPolicyFromAnyone, - - /// (no description). - DBTEAMLOGSharingFolderJoinPolicyFromTeamOnly, - - /// (no description). - DBTEAMLOGSharingFolderJoinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharingFolderJoinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_anyone". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromAnyone; - -/// -/// Initializes union class with tag state of "from_team_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromTeamOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_anyone". -/// -/// @return Whether the union's current tag state has value "from_anyone". -/// -- (BOOL)isFromAnyone; - -/// -/// Retrieves whether the union's current tag state has value "from_team_only". -/// -/// @return Whether the union's current tag state has value "from_team_only". -/// -- (BOOL)isFromTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharingFolderJoinPolicy` union. -/// -@interface DBTEAMLOGSharingFolderJoinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingFolderJoinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingFolderJoinPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingFolderJoinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingFolderJoinPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingFolderJoinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingFolderJoinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingFolderJoinPolicy` object. -/// -+ (DBTEAMLOGSharingFolderJoinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingLinkPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingLinkPolicy.h deleted file mode 100644 index 961a857c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingLinkPolicy.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingLinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingLinkPolicy` union. -/// -/// Policy for controlling if team members can share links externally -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingLinkPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharingLinkPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSharingLinkPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharingLinkPolicyTag) { - /// (no description). - DBTEAMLOGSharingLinkPolicyDefaultNoOne, - - /// (no description). - DBTEAMLOGSharingLinkPolicyDefaultPrivate, - - /// (no description). - DBTEAMLOGSharingLinkPolicyDefaultPublic, - - /// (no description). - DBTEAMLOGSharingLinkPolicyOnlyPrivate, - - /// (no description). - DBTEAMLOGSharingLinkPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharingLinkPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default_no_one". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultNoOne; - -/// -/// Initializes union class with tag state of "default_private". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultPrivate; - -/// -/// Initializes union class with tag state of "default_public". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultPublic; - -/// -/// Initializes union class with tag state of "only_private". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyPrivate; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default_no_one". -/// -/// @return Whether the union's current tag state has value "default_no_one". -/// -- (BOOL)isDefaultNoOne; - -/// -/// Retrieves whether the union's current tag state has value "default_private". -/// -/// @return Whether the union's current tag state has value "default_private". -/// -- (BOOL)isDefaultPrivate; - -/// -/// Retrieves whether the union's current tag state has value "default_public". -/// -/// @return Whether the union's current tag state has value "default_public". -/// -- (BOOL)isDefaultPublic; - -/// -/// Retrieves whether the union's current tag state has value "only_private". -/// -/// @return Whether the union's current tag state has value "only_private". -/// -- (BOOL)isOnlyPrivate; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharingLinkPolicy` union. -/// -@interface DBTEAMLOGSharingLinkPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingLinkPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingLinkPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingLinkPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingLinkPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingLinkPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingLinkPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingLinkPolicy` object. -/// -+ (DBTEAMLOGSharingLinkPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingMemberPolicy.h deleted file mode 100644 index a3b7a418..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSharingMemberPolicy.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingMemberPolicy` union. -/// -/// External sharing policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharingMemberPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSharingMemberPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharingMemberPolicyTag) { - /// (no description). - DBTEAMLOGSharingMemberPolicyAllow, - - /// (no description). - DBTEAMLOGSharingMemberPolicyForbid, - - /// (no description). - DBTEAMLOGSharingMemberPolicyForbidWithExclusions, - - /// (no description). - DBTEAMLOGSharingMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharingMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "forbid". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithForbid; - -/// -/// Initializes union class with tag state of "forbid_with_exclusions". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithForbidWithExclusions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "forbid". -/// -/// @return Whether the union's current tag state has value "forbid". -/// -- (BOOL)isForbid; - -/// -/// Retrieves whether the union's current tag state has value -/// "forbid_with_exclusions". -/// -/// @return Whether the union's current tag state has value -/// "forbid_with_exclusions". -/// -- (BOOL)isForbidWithExclusions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharingMemberPolicy` union. -/// -@interface DBTEAMLOGSharingMemberPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingMemberPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingMemberPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingMemberPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingMemberPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingMemberPolicy` object. -/// -+ (DBTEAMLOGSharingMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelDisableDownloadsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelDisableDownloadsDetails.h deleted file mode 100644 index 167f379d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelDisableDownloadsDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelDisableDownloadsDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelDisableDownloadsDetails` struct. -/// -/// Disabled downloads for link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelDisableDownloadsDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelDisableDownloadsDetails` struct. -/// -@interface DBTEAMLOGShmodelDisableDownloadsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelDisableDownloadsDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelDisableDownloadsDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelDisableDownloadsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelDisableDownloadsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelDisableDownloadsDetails` -/// object. -/// -+ (DBTEAMLOGShmodelDisableDownloadsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelDisableDownloadsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelDisableDownloadsType.h deleted file mode 100644 index c3c50608..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelDisableDownloadsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelDisableDownloadsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelDisableDownloadsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelDisableDownloadsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelDisableDownloadsType` struct. -/// -@interface DBTEAMLOGShmodelDisableDownloadsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelDisableDownloadsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelDisableDownloadsType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelDisableDownloadsType *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelDisableDownloadsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelDisableDownloadsType` -/// object. -/// -+ (DBTEAMLOGShmodelDisableDownloadsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelEnableDownloadsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelEnableDownloadsDetails.h deleted file mode 100644 index 6be6bc02..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelEnableDownloadsDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelEnableDownloadsDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelEnableDownloadsDetails` struct. -/// -/// Enabled downloads for link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelEnableDownloadsDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelEnableDownloadsDetails` struct. -/// -@interface DBTEAMLOGShmodelEnableDownloadsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelEnableDownloadsDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelEnableDownloadsDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelEnableDownloadsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelEnableDownloadsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelEnableDownloadsDetails` -/// object. -/// -+ (DBTEAMLOGShmodelEnableDownloadsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelEnableDownloadsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelEnableDownloadsType.h deleted file mode 100644 index 0c4c941b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelEnableDownloadsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelEnableDownloadsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelEnableDownloadsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelEnableDownloadsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelEnableDownloadsType` struct. -/// -@interface DBTEAMLOGShmodelEnableDownloadsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelEnableDownloadsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelEnableDownloadsType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelEnableDownloadsType *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelEnableDownloadsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelEnableDownloadsType` -/// object. -/// -+ (DBTEAMLOGShmodelEnableDownloadsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelGroupShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelGroupShareDetails.h deleted file mode 100644 index ce81ab25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelGroupShareDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelGroupShareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelGroupShareDetails` struct. -/// -/// Shared link with group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelGroupShareDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelGroupShareDetails` struct. -/// -@interface DBTEAMLOGShmodelGroupShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelGroupShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelGroupShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelGroupShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelGroupShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelGroupShareDetails` object. -/// -+ (DBTEAMLOGShmodelGroupShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelGroupShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelGroupShareType.h deleted file mode 100644 index 1015b619..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShmodelGroupShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelGroupShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelGroupShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelGroupShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelGroupShareType` struct. -/// -@interface DBTEAMLOGShmodelGroupShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelGroupShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelGroupShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelGroupShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelGroupShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelGroupShareType` object. -/// -+ (DBTEAMLOGShmodelGroupShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAccessGrantedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAccessGrantedDetails.h deleted file mode 100644 index 25de3089..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAccessGrantedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAccessGrantedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAccessGrantedDetails` struct. -/// -/// Granted access to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAccessGrantedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAccessGrantedDetails` struct. -/// -@interface DBTEAMLOGShowcaseAccessGrantedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAccessGrantedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAccessGrantedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAccessGrantedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAccessGrantedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAccessGrantedDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseAccessGrantedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAccessGrantedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAccessGrantedType.h deleted file mode 100644 index 79c13cf4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAccessGrantedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAccessGrantedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAccessGrantedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAccessGrantedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAccessGrantedType` struct. -/// -@interface DBTEAMLOGShowcaseAccessGrantedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAccessGrantedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAccessGrantedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAccessGrantedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAccessGrantedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAccessGrantedType` object. -/// -+ (DBTEAMLOGShowcaseAccessGrantedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAddMemberDetails.h deleted file mode 100644 index 9564312a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAddMemberDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAddMemberDetails` struct. -/// -/// Added member to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAddMemberDetails` struct. -/// -@interface DBTEAMLOGShowcaseAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAddMemberDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAddMemberDetails` object. -/// -+ (DBTEAMLOGShowcaseAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAddMemberType.h deleted file mode 100644 index 40314cd3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseAddMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAddMemberType` struct. -/// -@interface DBTEAMLOGShowcaseAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAddMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAddMemberType` object. -/// -+ (DBTEAMLOGShowcaseAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseArchivedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseArchivedDetails.h deleted file mode 100644 index 5c4683c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseArchivedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseArchivedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseArchivedDetails` struct. -/// -/// Archived showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseArchivedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseArchivedDetails` struct. -/// -@interface DBTEAMLOGShowcaseArchivedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseArchivedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseArchivedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseArchivedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseArchivedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseArchivedDetails` object. -/// -+ (DBTEAMLOGShowcaseArchivedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseArchivedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseArchivedType.h deleted file mode 100644 index f9de9b84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseArchivedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseArchivedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseArchivedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseArchivedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseArchivedType` struct. -/// -@interface DBTEAMLOGShowcaseArchivedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseArchivedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseArchivedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseArchivedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseArchivedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseArchivedType` object. -/// -+ (DBTEAMLOGShowcaseArchivedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h deleted file mode 100644 index 41b4cdeb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeDownloadPolicyDetails; -@class DBTEAMLOGShowcaseDownloadPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeDownloadPolicyDetails` struct. -/// -/// Enabled/disabled downloading files from Dropbox Showcase for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Showcase download policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDownloadPolicy *dNewValue; - -/// Previous Dropbox Showcase download policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDownloadPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Showcase download policy. -/// @param previousValue Previous Dropbox Showcase download policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGShowcaseDownloadPolicy *)dNewValue - previousValue:(DBTEAMLOGShowcaseDownloadPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeDownloadPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeDownloadPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` object. -/// -+ (DBTEAMLOGShowcaseChangeDownloadPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyType.h deleted file mode 100644 index a771d878..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeDownloadPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeDownloadPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeDownloadPolicyType` struct. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeDownloadPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeDownloadPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeDownloadPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseChangeDownloadPolicyType` -/// object. -/// -+ (DBTEAMLOGShowcaseChangeDownloadPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h deleted file mode 100644 index 4194d7d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeEnabledPolicyDetails; -@class DBTEAMLOGShowcaseEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeEnabledPolicyDetails` struct. -/// -/// Enabled/disabled Dropbox Showcase for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Showcase policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEnabledPolicy *dNewValue; - -/// Previous Dropbox Showcase policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEnabledPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Showcase policy. -/// @param previousValue Previous Dropbox Showcase policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGShowcaseEnabledPolicy *)dNewValue - previousValue:(DBTEAMLOGShowcaseEnabledPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeEnabledPolicyDetails` struct. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeEnabledPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` object. -/// -+ (DBTEAMLOGShowcaseChangeEnabledPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyType.h deleted file mode 100644 index b0b3a41d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeEnabledPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeEnabledPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeEnabledPolicyType` struct. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeEnabledPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeEnabledPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeEnabledPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseChangeEnabledPolicyType` -/// object. -/// -+ (DBTEAMLOGShowcaseChangeEnabledPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h deleted file mode 100644 index 009e1b06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails; -@class DBTEAMLOGShowcaseExternalSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeExternalSharingPolicyDetails` struct. -/// -/// Enabled/disabled sharing Dropbox Showcase externally for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Showcase external sharing policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseExternalSharingPolicy *dNewValue; - -/// Previous Dropbox Showcase external sharing policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseExternalSharingPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Showcase external sharing policy. -/// @param previousValue Previous Dropbox Showcase external sharing policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGShowcaseExternalSharingPolicy *)dNewValue - previousValue:(DBTEAMLOGShowcaseExternalSharingPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeExternalSharingPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` object. -/// -+ (DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h deleted file mode 100644 index ae3c8c9d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeExternalSharingPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeExternalSharingPolicyType` -/// struct. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeExternalSharingPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` object. -/// -+ (DBTEAMLOGShowcaseChangeExternalSharingPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseCreatedDetails.h deleted file mode 100644 index a77ad026..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseCreatedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseCreatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseCreatedDetails` struct. -/// -/// Created showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseCreatedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseCreatedDetails` struct. -/// -@interface DBTEAMLOGShowcaseCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseCreatedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseCreatedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseCreatedDetails` object. -/// -+ (DBTEAMLOGShowcaseCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseCreatedType.h deleted file mode 100644 index c56303ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseCreatedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseCreatedType` struct. -/// -@interface DBTEAMLOGShowcaseCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseCreatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseCreatedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseCreatedType` object. -/// -+ (DBTEAMLOGShowcaseCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDeleteCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDeleteCommentDetails.h deleted file mode 100644 index 7b82cfc7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDeleteCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDeleteCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDeleteCommentDetails` struct. -/// -/// Deleted showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDeleteCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseDeleteCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseDeleteCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDeleteCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDeleteCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDeleteCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDeleteCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDeleteCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseDeleteCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDeleteCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDeleteCommentType.h deleted file mode 100644 index f99396a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDeleteCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDeleteCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDeleteCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDeleteCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseDeleteCommentType` struct. -/// -@interface DBTEAMLOGShowcaseDeleteCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDeleteCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDeleteCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDeleteCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDeleteCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDeleteCommentType` object. -/// -+ (DBTEAMLOGShowcaseDeleteCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDocumentLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDocumentLogInfo.h deleted file mode 100644 index e93176d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDocumentLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDocumentLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDocumentLogInfo` struct. -/// -/// Showcase document's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDocumentLogInfo : NSObject - -#pragma mark - Instance fields - -/// Showcase document Id. -@property (nonatomic, readonly, copy) NSString *showcaseId; - -/// Showcase document title. -@property (nonatomic, readonly, copy) NSString *showcaseTitle; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param showcaseId Showcase document Id. -/// @param showcaseTitle Showcase document title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseId:(NSString *)showcaseId showcaseTitle:(NSString *)showcaseTitle; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseDocumentLogInfo` struct. -/// -@interface DBTEAMLOGShowcaseDocumentLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDocumentLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDocumentLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDocumentLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDocumentLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDocumentLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDocumentLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDocumentLogInfo` object. -/// -+ (DBTEAMLOGShowcaseDocumentLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDownloadPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDownloadPolicy.h deleted file mode 100644 index f967e662..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseDownloadPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDownloadPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDownloadPolicy` union. -/// -/// Policy for controlling if files can be downloaded from Showcases by team -/// members -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDownloadPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGShowcaseDownloadPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGShowcaseDownloadPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGShowcaseDownloadPolicyTag) { - /// (no description). - DBTEAMLOGShowcaseDownloadPolicyDisabled, - - /// (no description). - DBTEAMLOGShowcaseDownloadPolicyEnabled, - - /// (no description). - DBTEAMLOGShowcaseDownloadPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDownloadPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGShowcaseDownloadPolicy` union. -/// -@interface DBTEAMLOGShowcaseDownloadPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDownloadPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDownloadPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDownloadPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDownloadPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDownloadPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDownloadPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDownloadPolicy` object. -/// -+ (DBTEAMLOGShowcaseDownloadPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditCommentDetails.h deleted file mode 100644 index 33e077d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditCommentDetails` struct. -/// -/// Edited showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseEditCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseEditCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditCommentType.h deleted file mode 100644 index 18f81f13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditCommentType` struct. -/// -@interface DBTEAMLOGShowcaseEditCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditCommentType` object. -/// -+ (DBTEAMLOGShowcaseEditCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditedDetails.h deleted file mode 100644 index df7d628c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditedDetails` struct. -/// -/// Edited showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditedDetails` struct. -/// -@interface DBTEAMLOGShowcaseEditedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditedDetails` object. -/// -+ (DBTEAMLOGShowcaseEditedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditedType.h deleted file mode 100644 index 5bbe3eda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEditedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditedType` struct. -/// -@interface DBTEAMLOGShowcaseEditedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditedType` object. -/// -+ (DBTEAMLOGShowcaseEditedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEnabledPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEnabledPolicy.h deleted file mode 100644 index 769d62a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseEnabledPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEnabledPolicy` union. -/// -/// Policy for controlling whether Showcase is enabled. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEnabledPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGShowcaseEnabledPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGShowcaseEnabledPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGShowcaseEnabledPolicyTag) { - /// (no description). - DBTEAMLOGShowcaseEnabledPolicyDisabled, - - /// (no description). - DBTEAMLOGShowcaseEnabledPolicyEnabled, - - /// (no description). - DBTEAMLOGShowcaseEnabledPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEnabledPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGShowcaseEnabledPolicy` union. -/// -@interface DBTEAMLOGShowcaseEnabledPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEnabledPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEnabledPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEnabledPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEnabledPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEnabledPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEnabledPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEnabledPolicy` object. -/// -+ (DBTEAMLOGShowcaseEnabledPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseExternalSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseExternalSharingPolicy.h deleted file mode 100644 index 44649fe0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseExternalSharingPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseExternalSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseExternalSharingPolicy` union. -/// -/// Policy for controlling if team members can share Showcases externally. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseExternalSharingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGShowcaseExternalSharingPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGShowcaseExternalSharingPolicyTag) { - /// (no description). - DBTEAMLOGShowcaseExternalSharingPolicyDisabled, - - /// (no description). - DBTEAMLOGShowcaseExternalSharingPolicyEnabled, - - /// (no description). - DBTEAMLOGShowcaseExternalSharingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGShowcaseExternalSharingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// union. -/// -@interface DBTEAMLOGShowcaseExternalSharingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseExternalSharingPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseExternalSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseExternalSharingPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseExternalSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseExternalSharingPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// object. -/// -+ (DBTEAMLOGShowcaseExternalSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileAddedDetails.h deleted file mode 100644 index 6b90f346..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileAddedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileAddedDetails` struct. -/// -/// Added file to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileAddedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileAddedDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileAddedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileAddedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileAddedDetails` object. -/// -+ (DBTEAMLOGShowcaseFileAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileAddedType.h deleted file mode 100644 index e7a24923..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileAddedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileAddedType` struct. -/// -@interface DBTEAMLOGShowcaseFileAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileAddedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileAddedType` object. -/// -+ (DBTEAMLOGShowcaseFileAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileDownloadDetails.h deleted file mode 100644 index 934ae6fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileDownloadDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileDownloadDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileDownloadDetails` struct. -/// -/// Downloaded file from showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Showcase download type. -@property (nonatomic, readonly, copy) NSString *downloadType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param downloadType Showcase download type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid downloadType:(NSString *)downloadType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileDownloadDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileDownloadDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileDownloadDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseFileDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileDownloadType.h deleted file mode 100644 index 8998dae5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileDownloadType` struct. -/// -@interface DBTEAMLOGShowcaseFileDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileDownloadType` object. -/// -+ (DBTEAMLOGShowcaseFileDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileRemovedDetails.h deleted file mode 100644 index 6cc50fb4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileRemovedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileRemovedDetails` struct. -/// -/// Removed file from showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileRemovedDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileRemovedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileRemovedDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseFileRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileRemovedType.h deleted file mode 100644 index 7442817a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileRemovedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileRemovedType` struct. -/// -@interface DBTEAMLOGShowcaseFileRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileRemovedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileRemovedType` object. -/// -+ (DBTEAMLOGShowcaseFileRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileViewDetails.h deleted file mode 100644 index 1ea3ca93..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileViewDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileViewDetails` struct. -/// -/// Viewed file in showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileViewDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileViewDetails` object. -/// -+ (DBTEAMLOGShowcaseFileViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileViewType.h deleted file mode 100644 index e4f1caf7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseFileViewType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileViewType` struct. -/// -@interface DBTEAMLOGShowcaseFileViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileViewType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileViewType` object. -/// -+ (DBTEAMLOGShowcaseFileViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePermanentlyDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePermanentlyDeletedDetails.h deleted file mode 100644 index e7057bb4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePermanentlyDeletedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePermanentlyDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePermanentlyDeletedDetails` struct. -/// -/// Permanently deleted showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePermanentlyDeletedDetails` struct. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePermanentlyDeletedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcasePermanentlyDeletedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePermanentlyDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePermanentlyDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePermanentlyDeletedDetails` -/// object. -/// -+ (DBTEAMLOGShowcasePermanentlyDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePermanentlyDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePermanentlyDeletedType.h deleted file mode 100644 index cee22602..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePermanentlyDeletedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePermanentlyDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePermanentlyDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePermanentlyDeletedType` struct. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePermanentlyDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcasePermanentlyDeletedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePermanentlyDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePermanentlyDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePermanentlyDeletedType` -/// object. -/// -+ (DBTEAMLOGShowcasePermanentlyDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePostCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePostCommentDetails.h deleted file mode 100644 index 97a7675a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePostCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePostCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePostCommentDetails` struct. -/// -/// Added showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePostCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePostCommentDetails` struct. -/// -@interface DBTEAMLOGShowcasePostCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePostCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcasePostCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePostCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePostCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePostCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcasePostCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePostCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePostCommentType.h deleted file mode 100644 index a9e20be5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcasePostCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePostCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePostCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePostCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePostCommentType` struct. -/// -@interface DBTEAMLOGShowcasePostCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePostCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcasePostCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePostCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePostCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePostCommentType` object. -/// -+ (DBTEAMLOGShowcasePostCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRemoveMemberDetails.h deleted file mode 100644 index 3b14eeea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRemoveMemberDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRemoveMemberDetails` struct. -/// -/// Removed member from showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGShowcaseRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRemoveMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRemoveMemberDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRemoveMemberDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRemoveMemberType.h deleted file mode 100644 index a79d55c9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRemoveMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRemoveMemberType` struct. -/// -@interface DBTEAMLOGShowcaseRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRemoveMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRemoveMemberType` object. -/// -+ (DBTEAMLOGShowcaseRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRenamedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRenamedDetails.h deleted file mode 100644 index d63e3d0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRenamedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRenamedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRenamedDetails` struct. -/// -/// Renamed showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRenamedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRenamedDetails` struct. -/// -@interface DBTEAMLOGShowcaseRenamedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRenamedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRenamedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRenamedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRenamedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRenamedDetails` object. -/// -+ (DBTEAMLOGShowcaseRenamedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRenamedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRenamedType.h deleted file mode 100644 index 1c4bce91..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRenamedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRenamedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRenamedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRenamedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRenamedType` struct. -/// -@interface DBTEAMLOGShowcaseRenamedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRenamedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRenamedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRenamedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRenamedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRenamedType` object. -/// -+ (DBTEAMLOGShowcaseRenamedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRequestAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRequestAccessDetails.h deleted file mode 100644 index 1ffb8c94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRequestAccessDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRequestAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRequestAccessDetails` struct. -/// -/// Requested access to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRequestAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRequestAccessDetails` struct. -/// -@interface DBTEAMLOGShowcaseRequestAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRequestAccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRequestAccessDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRequestAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRequestAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRequestAccessDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseRequestAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRequestAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRequestAccessType.h deleted file mode 100644 index 38b26d94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRequestAccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRequestAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRequestAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRequestAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRequestAccessType` struct. -/// -@interface DBTEAMLOGShowcaseRequestAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRequestAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRequestAccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRequestAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRequestAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRequestAccessType` object. -/// -+ (DBTEAMLOGShowcaseRequestAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseResolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseResolveCommentDetails.h deleted file mode 100644 index 7fce124f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseResolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseResolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseResolveCommentDetails` struct. -/// -/// Resolved showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseResolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseResolveCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseResolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseResolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseResolveCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseResolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseResolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseResolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseResolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseResolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseResolveCommentType.h deleted file mode 100644 index 8cc4caaf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseResolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseResolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseResolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseResolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseResolveCommentType` struct. -/// -@interface DBTEAMLOGShowcaseResolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseResolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseResolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseResolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseResolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseResolveCommentType` -/// object. -/// -+ (DBTEAMLOGShowcaseResolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRestoredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRestoredDetails.h deleted file mode 100644 index d0e3653b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRestoredDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRestoredDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRestoredDetails` struct. -/// -/// Unarchived showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRestoredDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRestoredDetails` struct. -/// -@interface DBTEAMLOGShowcaseRestoredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRestoredDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRestoredDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRestoredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRestoredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRestoredDetails` object. -/// -+ (DBTEAMLOGShowcaseRestoredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRestoredType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRestoredType.h deleted file mode 100644 index 7ec20c65..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseRestoredType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRestoredType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRestoredType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRestoredType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRestoredType` struct. -/// -@interface DBTEAMLOGShowcaseRestoredTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRestoredType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRestoredType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRestoredType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRestoredType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRestoredType` object. -/// -+ (DBTEAMLOGShowcaseRestoredType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDeprecatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDeprecatedDetails.h deleted file mode 100644 index 912b7b93..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDeprecatedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedDeprecatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedDeprecatedDetails` struct. -/// -/// Deleted showcase (old version). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedDeprecatedDetails` struct. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedDeprecatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedDeprecatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedDeprecatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedDeprecatedDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseTrashedDeprecatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDeprecatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDeprecatedType.h deleted file mode 100644 index e1802da8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDeprecatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedDeprecatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedDeprecatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedDeprecatedType` struct. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedDeprecatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseTrashedDeprecatedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedDeprecatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedDeprecatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedDeprecatedType` -/// object. -/// -+ (DBTEAMLOGShowcaseTrashedDeprecatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDetails.h deleted file mode 100644 index e3f91eff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedDetails` struct. -/// -/// Deleted showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedDetails` struct. -/// -@interface DBTEAMLOGShowcaseTrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseTrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedDetails` object. -/// -+ (DBTEAMLOGShowcaseTrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedType.h deleted file mode 100644 index 07d6b263..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseTrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedType` struct. -/// -@interface DBTEAMLOGShowcaseTrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseTrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedType` object. -/// -+ (DBTEAMLOGShowcaseTrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUnresolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUnresolveCommentDetails.h deleted file mode 100644 index 7356f5f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUnresolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUnresolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUnresolveCommentDetails` struct. -/// -/// Unresolved showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUnresolveCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUnresolveCommentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseUnresolveCommentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUnresolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUnresolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUnresolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseUnresolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUnresolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUnresolveCommentType.h deleted file mode 100644 index 0dfeae50..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUnresolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUnresolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUnresolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUnresolveCommentType` struct. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUnresolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseUnresolveCommentType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUnresolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUnresolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUnresolveCommentType` -/// object. -/// -+ (DBTEAMLOGShowcaseUnresolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h deleted file mode 100644 index 3101ec55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedDeprecatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedDeprecatedDetails` struct. -/// -/// Restored showcase (old version). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedDeprecatedDetails` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedDeprecatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` object. -/// -+ (DBTEAMLOGShowcaseUntrashedDeprecatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedType.h deleted file mode 100644 index d442ab23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedDeprecatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedDeprecatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedDeprecatedType` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedDeprecatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedDeprecatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedDeprecatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUntrashedDeprecatedType` -/// object. -/// -+ (DBTEAMLOGShowcaseUntrashedDeprecatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDetails.h deleted file mode 100644 index 848cca3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedDetails` struct. -/// -/// Restored showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedDetails` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseUntrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUntrashedDetails` object. -/// -+ (DBTEAMLOGShowcaseUntrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedType.h deleted file mode 100644 index e1883694..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseUntrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedType` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseUntrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUntrashedType` object. -/// -+ (DBTEAMLOGShowcaseUntrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseViewDetails.h deleted file mode 100644 index e52d3ece..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseViewDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseViewDetails` struct. -/// -/// Viewed showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseViewDetails` struct. -/// -@interface DBTEAMLOGShowcaseViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseViewDetails` object. -/// -+ (DBTEAMLOGShowcaseViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseViewType.h deleted file mode 100644 index 6790faf8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGShowcaseViewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseViewType` struct. -/// -@interface DBTEAMLOGShowcaseViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseViewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseViewType` object. -/// -+ (DBTEAMLOGShowcaseViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionEndDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionEndDetails.h deleted file mode 100644 index 0460a5c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionEndDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionEndDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionEndDetails` struct. -/// -/// Ended admin sign-in-as session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionEndDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionEndDetails` struct. -/// -@interface DBTEAMLOGSignInAsSessionEndDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionEndDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionEndDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionEndDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionEndDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionEndDetails` object. -/// -+ (DBTEAMLOGSignInAsSessionEndDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionEndType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionEndType.h deleted file mode 100644 index d630e539..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionEndType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionEndType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionEndType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionEndType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionEndType` struct. -/// -@interface DBTEAMLOGSignInAsSessionEndTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionEndType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionEndType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionEndType *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionEndType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionEndType` object. -/// -+ (DBTEAMLOGSignInAsSessionEndType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionStartDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionStartDetails.h deleted file mode 100644 index 449bf946..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionStartDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionStartDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionStartDetails` struct. -/// -/// Started admin sign-in-as session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionStartDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionStartDetails` struct. -/// -@interface DBTEAMLOGSignInAsSessionStartDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionStartDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionStartDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionStartDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionStartDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionStartDetails` -/// object. -/// -+ (DBTEAMLOGSignInAsSessionStartDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionStartType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionStartType.h deleted file mode 100644 index 28674a3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSignInAsSessionStartType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionStartType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionStartType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionStartType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionStartType` struct. -/// -@interface DBTEAMLOGSignInAsSessionStartTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionStartType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionStartType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionStartType *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionStartType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionStartType` object. -/// -+ (DBTEAMLOGSignInAsSessionStartType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncChangePolicyDetails.h deleted file mode 100644 index 8f64b02b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncChangePolicyDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncChangePolicyDetails; -@class DBTEAMPOLICIESSmartSyncPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncChangePolicyDetails` struct. -/// -/// Changed default Smart Sync setting for team members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New smart sync policy. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESSmartSyncPolicy *dNewValue; - -/// Previous smart sync policy. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESSmartSyncPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New smart sync policy. -/// @param previousValue Previous smart sync policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMPOLICIESSmartSyncPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESSmartSyncPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncChangePolicyDetails` struct. -/// -@interface DBTEAMLOGSmartSyncChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncChangePolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGSmartSyncChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncChangePolicyType.h deleted file mode 100644 index 986716dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncChangePolicyType` struct. -/// -@interface DBTEAMLOGSmartSyncChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncChangePolicyType` object. -/// -+ (DBTEAMLOGSmartSyncChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h deleted file mode 100644 index ab14ec43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncCreateAdminPrivilegeReportDetails` struct. -/// -/// Created Smart Sync non-admin devices report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncCreateAdminPrivilegeReportDetails` -/// struct. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` object. -/// -+ (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h deleted file mode 100644 index cb44c221..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncCreateAdminPrivilegeReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncCreateAdminPrivilegeReportType` -/// struct. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` object. -/// -+ (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncNotOptOutDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncNotOptOutDetails.h deleted file mode 100644 index 28519a69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncNotOptOutDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncNotOptOutDetails; -@class DBTEAMLOGSmartSyncOptOutPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncNotOptOutDetails` struct. -/// -/// Opted team into Smart Sync. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncNotOptOutDetails : NSObject - -#pragma mark - Instance fields - -/// Previous Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *previousValue; - -/// New Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous Smart Sync opt out policy. -/// @param dNewValue New Smart Sync opt out policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSmartSyncOptOutPolicy *)previousValue - dNewValue:(DBTEAMLOGSmartSyncOptOutPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncNotOptOutDetails` struct. -/// -@interface DBTEAMLOGSmartSyncNotOptOutDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncNotOptOutDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncNotOptOutDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncNotOptOutDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncNotOptOutDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncNotOptOutDetails` object. -/// -+ (DBTEAMLOGSmartSyncNotOptOutDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncNotOptOutType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncNotOptOutType.h deleted file mode 100644 index ca2d47e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncNotOptOutType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncNotOptOutType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncNotOptOutType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncNotOptOutType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncNotOptOutType` struct. -/// -@interface DBTEAMLOGSmartSyncNotOptOutTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncNotOptOutType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncNotOptOutType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncNotOptOutType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncNotOptOutType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncNotOptOutType` object. -/// -+ (DBTEAMLOGSmartSyncNotOptOutType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutDetails.h deleted file mode 100644 index caf0c935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncOptOutDetails; -@class DBTEAMLOGSmartSyncOptOutPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncOptOutDetails` struct. -/// -/// Opted team out of Smart Sync. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncOptOutDetails : NSObject - -#pragma mark - Instance fields - -/// Previous Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *previousValue; - -/// New Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous Smart Sync opt out policy. -/// @param dNewValue New Smart Sync opt out policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSmartSyncOptOutPolicy *)previousValue - dNewValue:(DBTEAMLOGSmartSyncOptOutPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncOptOutDetails` struct. -/// -@interface DBTEAMLOGSmartSyncOptOutDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncOptOutDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncOptOutDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncOptOutDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncOptOutDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncOptOutDetails` object. -/// -+ (DBTEAMLOGSmartSyncOptOutDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutPolicy.h deleted file mode 100644 index 1b35bab0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncOptOutPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncOptOutPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncOptOutPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSmartSyncOptOutPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSmartSyncOptOutPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSmartSyncOptOutPolicyTag) { - /// (no description). - DBTEAMLOGSmartSyncOptOutPolicyDefault_, - - /// (no description). - DBTEAMLOGSmartSyncOptOutPolicyOptedOut, - - /// (no description). - DBTEAMLOGSmartSyncOptOutPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "opted_out". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptedOut; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "opted_out". -/// -/// @return Whether the union's current tag state has value "opted_out". -/// -- (BOOL)isOptedOut; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSmartSyncOptOutPolicy` union. -/// -@interface DBTEAMLOGSmartSyncOptOutPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncOptOutPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncOptOutPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncOptOutPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncOptOutPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncOptOutPolicy` object. -/// -+ (DBTEAMLOGSmartSyncOptOutPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutType.h deleted file mode 100644 index 5198093f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmartSyncOptOutType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncOptOutType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncOptOutType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncOptOutType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncOptOutType` struct. -/// -@interface DBTEAMLOGSmartSyncOptOutTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncOptOutType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncOptOutType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncOptOutType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncOptOutType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncOptOutType` object. -/// -+ (DBTEAMLOGSmartSyncOptOutType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h deleted file mode 100644 index f3b31b54..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmarterSmartSyncPolicyChangedDetails; -@class DBTEAMPOLICIESSmarterSmartSyncPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmarterSmartSyncPolicyChangedDetails` struct. -/// -/// Changed automatic Smart Sync setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous automatic Smart Sync setting. -@property (nonatomic, readonly) DBTEAMPOLICIESSmarterSmartSyncPolicyState *previousValue; - -/// New automatic Smart Sync setting. -@property (nonatomic, readonly) DBTEAMPOLICIESSmarterSmartSyncPolicyState *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous automatic Smart Sync setting. -/// @param dNewValue New automatic Smart Sync setting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMPOLICIESSmarterSmartSyncPolicyState *)previousValue - dNewValue:(DBTEAMPOLICIESSmarterSmartSyncPolicyState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmarterSmartSyncPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` object. -/// -+ (DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedType.h deleted file mode 100644 index e58bc0cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmarterSmartSyncPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmarterSmartSyncPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmarterSmartSyncPolicyChangedType` struct. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmarterSmartSyncPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmarterSmartSyncPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmarterSmartSyncPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmarterSmartSyncPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGSmarterSmartSyncPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSpaceCapsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSpaceCapsType.h deleted file mode 100644 index 22931438..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSpaceCapsType.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSpaceCapsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceCapsType` union. -/// -/// Space limit alert policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSpaceCapsType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSpaceCapsTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGSpaceCapsType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSpaceCapsTypeTag) { - /// (no description). - DBTEAMLOGSpaceCapsTypeHard, - - /// (no description). - DBTEAMLOGSpaceCapsTypeOff, - - /// (no description). - DBTEAMLOGSpaceCapsTypeSoft, - - /// (no description). - DBTEAMLOGSpaceCapsTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSpaceCapsTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "hard". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHard; - -/// -/// Initializes union class with tag state of "off". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOff; - -/// -/// Initializes union class with tag state of "soft". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSoft; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "hard". -/// -/// @return Whether the union's current tag state has value "hard". -/// -- (BOOL)isHard; - -/// -/// Retrieves whether the union's current tag state has value "off". -/// -/// @return Whether the union's current tag state has value "off". -/// -- (BOOL)isOff; - -/// -/// Retrieves whether the union's current tag state has value "soft". -/// -/// @return Whether the union's current tag state has value "soft". -/// -- (BOOL)isSoft; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSpaceCapsType` union. -/// -@interface DBTEAMLOGSpaceCapsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSpaceCapsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSpaceCapsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceCapsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSpaceCapsType *)instance; - -/// -/// Deserializes `DBTEAMLOGSpaceCapsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceCapsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSpaceCapsType` object. -/// -+ (DBTEAMLOGSpaceCapsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSpaceLimitsStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSpaceLimitsStatus.h deleted file mode 100644 index caf55dc1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSpaceLimitsStatus.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSpaceLimitsStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceLimitsStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSpaceLimitsStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSpaceLimitsStatusTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSpaceLimitsStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSpaceLimitsStatusTag) { - /// (no description). - DBTEAMLOGSpaceLimitsStatusNearQuota, - - /// (no description). - DBTEAMLOGSpaceLimitsStatusOverQuota, - - /// (no description). - DBTEAMLOGSpaceLimitsStatusWithinQuota, - - /// (no description). - DBTEAMLOGSpaceLimitsStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSpaceLimitsStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "near_quota". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNearQuota; - -/// -/// Initializes union class with tag state of "over_quota". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverQuota; - -/// -/// Initializes union class with tag state of "within_quota". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWithinQuota; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "near_quota". -/// -/// @return Whether the union's current tag state has value "near_quota". -/// -- (BOOL)isNearQuota; - -/// -/// Retrieves whether the union's current tag state has value "over_quota". -/// -/// @return Whether the union's current tag state has value "over_quota". -/// -- (BOOL)isOverQuota; - -/// -/// Retrieves whether the union's current tag state has value "within_quota". -/// -/// @return Whether the union's current tag state has value "within_quota". -/// -- (BOOL)isWithinQuota; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSpaceLimitsStatus` union. -/// -@interface DBTEAMLOGSpaceLimitsStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSpaceLimitsStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSpaceLimitsStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceLimitsStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSpaceLimitsStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGSpaceLimitsStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceLimitsStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSpaceLimitsStatus` object. -/// -+ (DBTEAMLOGSpaceLimitsStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddCertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddCertDetails.h deleted file mode 100644 index 3abdbde5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddCertDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCertificate; -@class DBTEAMLOGSsoAddCertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddCertDetails` struct. -/// -/// Added X.509 certificate for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddCertDetails : NSObject - -#pragma mark - Instance fields - -/// SSO certificate details. -@property (nonatomic, readonly) DBTEAMLOGCertificate *certificateDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param certificateDetails SSO certificate details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCertificateDetails:(DBTEAMLOGCertificate *)certificateDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddCertDetails` struct. -/// -@interface DBTEAMLOGSsoAddCertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddCertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddCertDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddCertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddCertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddCertDetails` object. -/// -+ (DBTEAMLOGSsoAddCertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddCertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddCertType.h deleted file mode 100644 index c7a9508b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddCertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddCertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddCertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddCertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddCertType` struct. -/// -@interface DBTEAMLOGSsoAddCertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddCertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddCertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddCertType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddCertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddCertType` object. -/// -+ (DBTEAMLOGSsoAddCertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLoginUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLoginUrlDetails.h deleted file mode 100644 index ee96743a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLoginUrlDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLoginUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLoginUrlDetails` struct. -/// -/// Added sign-in URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLoginUrlDetails : NSObject - -#pragma mark - Instance fields - -/// New single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New single sign-on login URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLoginUrlDetails` struct. -/// -@interface DBTEAMLOGSsoAddLoginUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLoginUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLoginUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLoginUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLoginUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLoginUrlDetails` object. -/// -+ (DBTEAMLOGSsoAddLoginUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLoginUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLoginUrlType.h deleted file mode 100644 index 29834043..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLoginUrlType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLoginUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLoginUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLoginUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLoginUrlType` struct. -/// -@interface DBTEAMLOGSsoAddLoginUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLoginUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLoginUrlType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLoginUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLoginUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLoginUrlType` object. -/// -+ (DBTEAMLOGSsoAddLoginUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLogoutUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLogoutUrlDetails.h deleted file mode 100644 index 9e9ce912..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLogoutUrlDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLogoutUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLogoutUrlDetails` struct. -/// -/// Added sign-out URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLogoutUrlDetails : NSObject - -#pragma mark - Instance fields - -/// New single sign-on logout URL. -@property (nonatomic, readonly, copy, nullable) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New single sign-on logout URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSString *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLogoutUrlDetails` struct. -/// -@interface DBTEAMLOGSsoAddLogoutUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLogoutUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLogoutUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLogoutUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLogoutUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLogoutUrlDetails` object. -/// -+ (DBTEAMLOGSsoAddLogoutUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLogoutUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLogoutUrlType.h deleted file mode 100644 index 5f0cca93..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoAddLogoutUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLogoutUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLogoutUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLogoutUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLogoutUrlType` struct. -/// -@interface DBTEAMLOGSsoAddLogoutUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLogoutUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLogoutUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLogoutUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLogoutUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLogoutUrlType` object. -/// -+ (DBTEAMLOGSsoAddLogoutUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeCertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeCertDetails.h deleted file mode 100644 index 1b7399ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeCertDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCertificate; -@class DBTEAMLOGSsoChangeCertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeCertDetails` struct. -/// -/// Changed X.509 certificate for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeCertDetails : NSObject - -#pragma mark - Instance fields - -/// Previous SSO certificate details. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGCertificate *previousCertificateDetails; - -/// New SSO certificate details. -@property (nonatomic, readonly) DBTEAMLOGCertificate *dNewCertificateDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewCertificateDetails New SSO certificate details. -/// @param previousCertificateDetails Previous SSO certificate details. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewCertificateDetails:(DBTEAMLOGCertificate *)dNewCertificateDetails - previousCertificateDetails:(nullable DBTEAMLOGCertificate *)previousCertificateDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewCertificateDetails New SSO certificate details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewCertificateDetails:(DBTEAMLOGCertificate *)dNewCertificateDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeCertDetails` struct. -/// -@interface DBTEAMLOGSsoChangeCertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeCertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeCertDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeCertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeCertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeCertDetails` object. -/// -+ (DBTEAMLOGSsoChangeCertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeCertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeCertType.h deleted file mode 100644 index e8734ca5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeCertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeCertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeCertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeCertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeCertType` struct. -/// -@interface DBTEAMLOGSsoChangeCertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeCertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeCertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeCertType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeCertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeCertType` object. -/// -+ (DBTEAMLOGSsoChangeCertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLoginUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLoginUrlDetails.h deleted file mode 100644 index c211e1e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLoginUrlDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLoginUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLoginUrlDetails` struct. -/// -/// Changed sign-in URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLoginUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on login URL. -/// @param dNewValue New single sign-on login URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLoginUrlDetails` struct. -/// -@interface DBTEAMLOGSsoChangeLoginUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLoginUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLoginUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLoginUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLoginUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLoginUrlDetails` object. -/// -+ (DBTEAMLOGSsoChangeLoginUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLoginUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLoginUrlType.h deleted file mode 100644 index 52210da5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLoginUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLoginUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLoginUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLoginUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLoginUrlType` struct. -/// -@interface DBTEAMLOGSsoChangeLoginUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLoginUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLoginUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLoginUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLoginUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLoginUrlType` object. -/// -+ (DBTEAMLOGSsoChangeLoginUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLogoutUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLogoutUrlDetails.h deleted file mode 100644 index 083498ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLogoutUrlDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLogoutUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLogoutUrlDetails` struct. -/// -/// Changed sign-out URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on logout URL. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousValue; - -/// New single sign-on logout URL. -@property (nonatomic, readonly, copy, nullable) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on logout URL. Might be missing -/// due to historical data gap. -/// @param dNewValue New single sign-on logout URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSString *)previousValue dNewValue:(nullable NSString *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLogoutUrlDetails` struct. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLogoutUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLogoutUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLogoutUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLogoutUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLogoutUrlDetails` object. -/// -+ (DBTEAMLOGSsoChangeLogoutUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLogoutUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLogoutUrlType.h deleted file mode 100644 index 7af825ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeLogoutUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLogoutUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLogoutUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLogoutUrlType` struct. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLogoutUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLogoutUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLogoutUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLogoutUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLogoutUrlType` object. -/// -+ (DBTEAMLOGSsoChangeLogoutUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangePolicyDetails.h deleted file mode 100644 index c5c427d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangePolicyDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangePolicyDetails; -@class DBTEAMPOLICIESSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangePolicyDetails` struct. -/// -/// Changed single sign-on setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New single sign-on policy. -@property (nonatomic, readonly) DBTEAMPOLICIESSsoPolicy *dNewValue; - -/// Previous single sign-on policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESSsoPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New single sign-on policy. -/// @param previousValue Previous single sign-on policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESSsoPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESSsoPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New single sign-on policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESSsoPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangePolicyDetails` struct. -/// -@interface DBTEAMLOGSsoChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangePolicyDetails` object. -/// -+ (DBTEAMLOGSsoChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangePolicyType.h deleted file mode 100644 index 51940275..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangePolicyType` struct. -/// -@interface DBTEAMLOGSsoChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangePolicyType` object. -/// -+ (DBTEAMLOGSsoChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeSamlIdentityModeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeSamlIdentityModeDetails.h deleted file mode 100644 index c1316648..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeSamlIdentityModeDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeSamlIdentityModeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeSamlIdentityModeDetails` struct. -/// -/// Changed SAML identity mode for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on identity mode. -@property (nonatomic, readonly) NSNumber *previousValue; - -/// New single sign-on identity mode. -@property (nonatomic, readonly) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on identity mode. -/// @param dNewValue New single sign-on identity mode. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSNumber *)previousValue dNewValue:(NSNumber *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeSamlIdentityModeDetails` struct. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeSamlIdentityModeDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeSamlIdentityModeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeSamlIdentityModeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeSamlIdentityModeDetails` -/// object. -/// -+ (DBTEAMLOGSsoChangeSamlIdentityModeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeSamlIdentityModeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeSamlIdentityModeType.h deleted file mode 100644 index 5112d891..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoChangeSamlIdentityModeType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeSamlIdentityModeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeSamlIdentityModeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeSamlIdentityModeType` struct. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeSamlIdentityModeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeSamlIdentityModeType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeSamlIdentityModeType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeSamlIdentityModeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeSamlIdentityModeType` -/// object. -/// -+ (DBTEAMLOGSsoChangeSamlIdentityModeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoErrorDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoErrorDetails.h deleted file mode 100644 index 68d0c9b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoErrorDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFailureDetailsLogInfo; -@class DBTEAMLOGSsoErrorDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoErrorDetails` struct. -/// -/// Failed to sign in via SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoErrorDetails : NSObject - -#pragma mark - Instance fields - -/// Error details. -@property (nonatomic, readonly) DBTEAMLOGFailureDetailsLogInfo *errorDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param errorDetails Error details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithErrorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoErrorDetails` struct. -/// -@interface DBTEAMLOGSsoErrorDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoErrorDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoErrorDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoErrorDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoErrorDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoErrorDetails` object. -/// -+ (DBTEAMLOGSsoErrorDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoErrorType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoErrorType.h deleted file mode 100644 index 1c98894b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoErrorType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoErrorType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoErrorType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoErrorType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoErrorType` struct. -/// -@interface DBTEAMLOGSsoErrorTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoErrorType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoErrorType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoErrorType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoErrorType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoErrorType` object. -/// -+ (DBTEAMLOGSsoErrorType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveCertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveCertDetails.h deleted file mode 100644 index 19ac7b78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveCertDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveCertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveCertDetails` struct. -/// -/// Removed X.509 certificate for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveCertDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveCertDetails` struct. -/// -@interface DBTEAMLOGSsoRemoveCertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveCertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveCertDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveCertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveCertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveCertDetails` object. -/// -+ (DBTEAMLOGSsoRemoveCertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveCertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveCertType.h deleted file mode 100644 index 0b8dc6d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveCertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveCertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveCertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveCertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveCertType` struct. -/// -@interface DBTEAMLOGSsoRemoveCertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveCertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveCertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveCertType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveCertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveCertType` object. -/// -+ (DBTEAMLOGSsoRemoveCertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLoginUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLoginUrlDetails.h deleted file mode 100644 index 68f10862..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLoginUrlDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLoginUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLoginUrlDetails` struct. -/// -/// Removed sign-in URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on login URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLoginUrlDetails` struct. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLoginUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLoginUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLoginUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLoginUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLoginUrlDetails` object. -/// -+ (DBTEAMLOGSsoRemoveLoginUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLoginUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLoginUrlType.h deleted file mode 100644 index e3d218e6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLoginUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLoginUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLoginUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLoginUrlType` struct. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLoginUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLoginUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLoginUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLoginUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLoginUrlType` object. -/// -+ (DBTEAMLOGSsoRemoveLoginUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLogoutUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLogoutUrlDetails.h deleted file mode 100644 index c016f4dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLogoutUrlDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLogoutUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLogoutUrlDetails` struct. -/// -/// Removed sign-out URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on logout URL. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on logout URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLogoutUrlDetails` struct. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLogoutUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLogoutUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLogoutUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLogoutUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLogoutUrlDetails` object. -/// -+ (DBTEAMLOGSsoRemoveLogoutUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLogoutUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLogoutUrlType.h deleted file mode 100644 index ab4817e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGSsoRemoveLogoutUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLogoutUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLogoutUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLogoutUrlType` struct. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLogoutUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLogoutUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLogoutUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLogoutUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLogoutUrlType` object. -/// -+ (DBTEAMLOGSsoRemoveLogoutUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGStartedEnterpriseAdminSessionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGStartedEnterpriseAdminSessionDetails.h deleted file mode 100644 index 30ec2fbd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGStartedEnterpriseAdminSessionDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedExtraDetails; -@class DBTEAMLOGStartedEnterpriseAdminSessionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `StartedEnterpriseAdminSessionDetails` struct. -/// -/// Started enterprise admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionDetails : NSObject - -#pragma mark - Instance fields - -/// More information about the organization or team. -@property (nonatomic, readonly) DBTEAMLOGFedExtraDetails *federationExtraDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param federationExtraDetails More information about the organization or -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFederationExtraDetails:(DBTEAMLOGFedExtraDetails *)federationExtraDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `StartedEnterpriseAdminSessionDetails` -/// struct. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGStartedEnterpriseAdminSessionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGStartedEnterpriseAdminSessionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGStartedEnterpriseAdminSessionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` object. -/// -+ (DBTEAMLOGStartedEnterpriseAdminSessionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGStartedEnterpriseAdminSessionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGStartedEnterpriseAdminSessionType.h deleted file mode 100644 index b2ebddda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGStartedEnterpriseAdminSessionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGStartedEnterpriseAdminSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `StartedEnterpriseAdminSessionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `StartedEnterpriseAdminSessionType` struct. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGStartedEnterpriseAdminSessionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGStartedEnterpriseAdminSessionType *)instance; - -/// -/// Deserializes `DBTEAMLOGStartedEnterpriseAdminSessionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGStartedEnterpriseAdminSessionType` -/// object. -/// -+ (DBTEAMLOGStartedEnterpriseAdminSessionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportDetails.h deleted file mode 100644 index e10494e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportDetails` struct. -/// -/// Created team activity report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportDetails` struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamActivityCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamActivityCreateReportDetails` -/// object. -/// -+ (DBTEAMLOGTeamActivityCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportFailDetails.h deleted file mode 100644 index 13af9952..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportFailDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportFailDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportFailDetails` struct. -/// -/// Couldn't generate team activity report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportFailDetails` -/// struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` object. -/// -+ (DBTEAMLOGTeamActivityCreateReportFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportFailType.h deleted file mode 100644 index a68855a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportFailType` struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportFailType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamActivityCreateReportFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamActivityCreateReportFailType` -/// object. -/// -+ (DBTEAMLOGTeamActivityCreateReportFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportType.h deleted file mode 100644 index 2ad7f31b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamActivityCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportType` struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamActivityCreateReportType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamActivityCreateReportType` -/// object. -/// -+ (DBTEAMLOGTeamActivityCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamAuthRoutes.h deleted file mode 100644 index 73153e48..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamAuthRoutes.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBNilObject; -@class DBTEAMCOMMONTimeRange; -@class DBTEAMLOGEventCategory; -@class DBTEAMLOGEventTypeArg; -@class DBTEAMLOGGetTeamEventsContinueError; -@class DBTEAMLOGGetTeamEventsError; -@class DBTEAMLOGGetTeamEventsResult; -@class DBTEAMLOGTeamEvent; - -@protocol DBTransportClient; - -/// -/// Routes for the `TeamLog` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBTEAMLOGTeamAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBTEAMLOGTeamAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Retrieves team events. If the result's `hasMore` in `DBTEAMLOGGetTeamEventsResult` field is true, call -/// `getEventsContinue` with the returned cursor to retrieve more entries. If end_time is not specified in your request, -/// you may use the returned cursor to poll `getEventsContinue` for new events. Many attributes note 'may be missing due -/// to historical data gap'. Note that the file_operations category and & analogous paper events are not available on -/// all Dropbox Business plans /business/plans-comparison. Use features/get_values -/// /developers/documentation/http/teams#team-features-get_values to check for this feature. Permission : Team Auditing. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLOGGetTeamEventsResult` object on success or -/// a `DBTEAMLOGGetTeamEventsError` object on failure. -/// -- (DBRpcTask *)getEvents; - -/// -/// Retrieves team events. If the result's `hasMore` in `DBTEAMLOGGetTeamEventsResult` field is true, call -/// `getEventsContinue` with the returned cursor to retrieve more entries. If end_time is not specified in your request, -/// you may use the returned cursor to poll `getEventsContinue` for new events. Many attributes note 'may be missing due -/// to historical data gap'. Note that the file_operations category and & analogous paper events are not available on -/// all Dropbox Business plans /business/plans-comparison. Use features/get_values -/// /developers/documentation/http/teams#team-features-get_values to check for this feature. Permission : Team Auditing. -/// -/// @param limit The maximal number of results to return per call. Note that some calls may not return limit number of -/// events, and may even return no events, even with `has_more` set to true. In this case, callers should fetch again -/// using `getEventsContinue`. -/// @param accountId Filter the events by account ID. Return only events with this account_id as either Actor, Context, -/// or Participants. -/// @param time Filter by time range. -/// @param category Filter the returned events to a single category. Note that category shouldn't be provided together -/// with event_type. -/// @param eventType Filter the returned events to a single event type. Note that event_type shouldn't be provided -/// together with category. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLOGGetTeamEventsResult` object on success or -/// a `DBTEAMLOGGetTeamEventsError` object on failure. -/// -- (DBRpcTask *) - getEvents:(nullable NSNumber *)limit - accountId:(nullable NSString *)accountId - time:(nullable DBTEAMCOMMONTimeRange *)time - category:(nullable DBTEAMLOGEventCategory *)category - eventType:(nullable DBTEAMLOGEventTypeArg *)eventType; - -/// -/// Once a cursor has been retrieved from `getEvents`, use this to paginate through all events. Permission : Team -/// Auditing. -/// -/// @param cursor Indicates from what point to get the next set of events. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLOGGetTeamEventsResult` object on success or -/// a `DBTEAMLOGGetTeamEventsContinueError` object on failure. -/// -- (DBRpcTask *)getEventsContinue: - (NSString *)cursor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicy.h deleted file mode 100644 index 968874af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamBrandingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamBrandingPolicy` union. -/// -/// Policy for controlling team access to setting up branding feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamBrandingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamBrandingPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTeamBrandingPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamBrandingPolicyTag) { - /// (no description). - DBTEAMLOGTeamBrandingPolicyDisabled, - - /// (no description). - DBTEAMLOGTeamBrandingPolicyEnabled, - - /// (no description). - DBTEAMLOGTeamBrandingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamBrandingPolicy` union. -/// -@interface DBTEAMLOGTeamBrandingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamBrandingPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamBrandingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamBrandingPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamBrandingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamBrandingPolicy` object. -/// -+ (DBTEAMLOGTeamBrandingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicyChangedDetails.h deleted file mode 100644 index d99d8a88..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamBrandingPolicy; -@class DBTEAMLOGTeamBrandingPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamBrandingPolicyChangedDetails` struct. -/// -/// Changed team branding policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New team branding policy. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicy *dNewValue; - -/// Previous team branding policy. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team branding policy. -/// @param previousValue Previous team branding policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamBrandingPolicy *)dNewValue - previousValue:(DBTEAMLOGTeamBrandingPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamBrandingPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamBrandingPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamBrandingPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamBrandingPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamBrandingPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamBrandingPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGTeamBrandingPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicyChangedType.h deleted file mode 100644 index cd241650..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamBrandingPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamBrandingPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamBrandingPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamBrandingPolicyChangedType` struct. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamBrandingPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamBrandingPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamBrandingPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamBrandingPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamBrandingPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGTeamBrandingPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamDetails.h deleted file mode 100644 index 5ffd028f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamDetails` struct. -/// -/// More details about the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamDetails` struct. -/// -@interface DBTEAMLOGTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamDetails` object. -/// -+ (DBTEAMLOGTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h deleted file mode 100644 index 431a4c16..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCancelKeyDeletionDetails` struct. -/// -/// Canceled team encryption key deletion. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCancelKeyDeletionDetails` -/// struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h deleted file mode 100644 index a3780e3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCancelKeyDeletionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCancelKeyDeletionType` -/// struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h deleted file mode 100644 index 41826902..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCreateKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCreateKeyDetails` struct. -/// -/// Created team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCreateKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyType.h deleted file mode 100644 index fe1eabec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCreateKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCreateKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCreateKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCreateKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyCreateKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCreateKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCreateKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyCreateKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCreateKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h deleted file mode 100644 index 1a2b1f94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDeleteKeyDetails` struct. -/// -/// Deleted team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDeleteKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h deleted file mode 100644 index e3162b0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDeleteKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDeleteKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDeleteKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDeleteKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h deleted file mode 100644 index 86d46679..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDisableKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDisableKeyDetails` struct. -/// -/// Disabled team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDisableKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyType.h deleted file mode 100644 index bb49c9de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDisableKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDisableKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDisableKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDisableKeyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDisableKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDisableKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyDisableKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDisableKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h deleted file mode 100644 index 4c130bf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyEnableKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyEnableKeyDetails` struct. -/// -/// Enabled team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyEnableKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyType.h deleted file mode 100644 index a35686b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyEnableKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyEnableKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyEnableKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyEnableKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyEnableKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyEnableKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyEnableKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyEnableKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyEnableKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h deleted file mode 100644 index 806f418b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyRotateKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyRotateKeyDetails` struct. -/// -/// Rotated team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyRotateKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyType.h deleted file mode 100644 index db6b9f10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyRotateKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyRotateKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyRotateKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyRotateKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyRotateKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyRotateKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyRotateKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyRotateKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyRotateKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h deleted file mode 100644 index 0ef36def..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyScheduleKeyDeletionDetails` struct. -/// -/// Scheduled encryption key deletion. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamEncryptionKeyScheduleKeyDeletionDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h deleted file mode 100644 index 4afa3010..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyScheduleKeyDeletionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyScheduleKeyDeletionType` -/// struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEvent.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEvent.h deleted file mode 100644 index b124a7a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamEvent.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActorLogInfo; -@class DBTEAMLOGAssetLogInfo; -@class DBTEAMLOGContextLogInfo; -@class DBTEAMLOGEventCategory; -@class DBTEAMLOGEventDetails; -@class DBTEAMLOGEventType; -@class DBTEAMLOGOriginLogInfo; -@class DBTEAMLOGParticipantLogInfo; -@class DBTEAMLOGTeamEvent; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEvent` struct. -/// -/// An audit log event. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEvent : NSObject - -#pragma mark - Instance fields - -/// The Dropbox timestamp representing when the action was taken. -@property (nonatomic, readonly) NSDate *timestamp; - -/// The category that this type of action belongs to. -@property (nonatomic, readonly) DBTEAMLOGEventCategory *eventCategory; - -/// The entity who actually performed the action. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGActorLogInfo *actor; - -/// The origin from which the actor performed the action including information -/// about host, ip address, location, session, etc. If the action was performed -/// programmatically via the API the origin represents the API client. -@property (nonatomic, readonly, nullable) DBTEAMLOGOriginLogInfo *origin; - -/// True if the action involved a non team member either as the actor or as one -/// of the affected users. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) NSNumber *involveNonTeamMember; - -/// The user or team on whose behalf the actor performed the action. Might be -/// missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGContextLogInfo *context; - -/// Zero or more users and/or groups that are affected by the action. Note that -/// this list doesn't include any actors or users in context. -@property (nonatomic, readonly, nullable) NSArray *participants; - -/// Zero or more content assets involved in the action. Currently these include -/// Dropbox files and folders but in the future we might add other asset types -/// such as Paper documents, folders, projects, etc. -@property (nonatomic, readonly, nullable) NSArray *assets; - -/// The particular type of action taken. -@property (nonatomic, readonly) DBTEAMLOGEventType *eventType; - -/// The variable event schema applicable to this type of action, instantiated -/// with respect to this particular action. -@property (nonatomic, readonly) DBTEAMLOGEventDetails *details; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param timestamp The Dropbox timestamp representing when the action was -/// taken. -/// @param eventCategory The category that this type of action belongs to. -/// @param eventType The particular type of action taken. -/// @param details The variable event schema applicable to this type of action, -/// instantiated with respect to this particular action. -/// @param actor The entity who actually performed the action. Might be missing -/// due to historical data gap. -/// @param origin The origin from which the actor performed the action including -/// information about host, ip address, location, session, etc. If the action -/// was performed programmatically via the API the origin represents the API -/// client. -/// @param involveNonTeamMember True if the action involved a non team member -/// either as the actor or as one of the affected users. Might be missing due to -/// historical data gap. -/// @param context The user or team on whose behalf the actor performed the -/// action. Might be missing due to historical data gap. -/// @param participants Zero or more users and/or groups that are affected by -/// the action. Note that this list doesn't include any actors or users in -/// context. -/// @param assets Zero or more content assets involved in the action. Currently -/// these include Dropbox files and folders but in the future we might add other -/// asset types such as Paper documents, folders, projects, etc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTimestamp:(NSDate *)timestamp - eventCategory:(DBTEAMLOGEventCategory *)eventCategory - eventType:(DBTEAMLOGEventType *)eventType - details:(DBTEAMLOGEventDetails *)details - actor:(nullable DBTEAMLOGActorLogInfo *)actor - origin:(nullable DBTEAMLOGOriginLogInfo *)origin - involveNonTeamMember:(nullable NSNumber *)involveNonTeamMember - context:(nullable DBTEAMLOGContextLogInfo *)context - participants:(nullable NSArray *)participants - assets:(nullable NSArray *)assets; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param timestamp The Dropbox timestamp representing when the action was -/// taken. -/// @param eventCategory The category that this type of action belongs to. -/// @param eventType The particular type of action taken. -/// @param details The variable event schema applicable to this type of action, -/// instantiated with respect to this particular action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTimestamp:(NSDate *)timestamp - eventCategory:(DBTEAMLOGEventCategory *)eventCategory - eventType:(DBTEAMLOGEventType *)eventType - details:(DBTEAMLOGEventDetails *)details; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEvent` struct. -/// -@interface DBTEAMLOGTeamEventSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEvent` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEvent` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEvent` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEvent *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEvent` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEvent` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEvent` object. -/// -+ (DBTEAMLOGTeamEvent *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicy.h deleted file mode 100644 index 8ffe66d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamExtensionsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamExtensionsPolicy` union. -/// -/// Policy for controlling whether App Integrations are enabled for the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamExtensionsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamExtensionsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTeamExtensionsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamExtensionsPolicyTag) { - /// (no description). - DBTEAMLOGTeamExtensionsPolicyDisabled, - - /// (no description). - DBTEAMLOGTeamExtensionsPolicyEnabled, - - /// (no description). - DBTEAMLOGTeamExtensionsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamExtensionsPolicy` union. -/// -@interface DBTEAMLOGTeamExtensionsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamExtensionsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamExtensionsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamExtensionsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamExtensionsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamExtensionsPolicy` object. -/// -+ (DBTEAMLOGTeamExtensionsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicyChangedDetails.h deleted file mode 100644 index 643d6ce6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamExtensionsPolicy; -@class DBTEAMLOGTeamExtensionsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamExtensionsPolicyChangedDetails` struct. -/// -/// Changed App Integrations setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Extensions policy. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicy *dNewValue; - -/// Previous Extensions policy. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Extensions policy. -/// @param previousValue Previous Extensions policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamExtensionsPolicy *)dNewValue - previousValue:(DBTEAMLOGTeamExtensionsPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamExtensionsPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamExtensionsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamExtensionsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamExtensionsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` object. -/// -+ (DBTEAMLOGTeamExtensionsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicyChangedType.h deleted file mode 100644 index 48b841df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamExtensionsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamExtensionsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamExtensionsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamExtensionsPolicyChangedType` struct. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamExtensionsPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamExtensionsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamExtensionsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamExtensionsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGTeamExtensionsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderChangeStatusDetails.h deleted file mode 100644 index e6347d62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderChangeStatusDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderChangeStatusDetails; -@class DBTEAMTeamFolderStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderChangeStatusDetails` struct. -/// -/// Changed archival status of team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// New team folder status. -@property (nonatomic, readonly) DBTEAMTeamFolderStatus *dNewValue; - -/// Previous team folder status. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMTeamFolderStatus *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team folder status. -/// @param previousValue Previous team folder status. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMTeamFolderStatus *)dNewValue - previousValue:(nullable DBTEAMTeamFolderStatus *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New team folder status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMTeamFolderStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderChangeStatusDetails` struct. -/// -@interface DBTEAMLOGTeamFolderChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderChangeStatusDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderChangeStatusDetails` -/// object. -/// -+ (DBTEAMLOGTeamFolderChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderChangeStatusType.h deleted file mode 100644 index c0de777f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderChangeStatusType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderChangeStatusType` struct. -/// -@interface DBTEAMLOGTeamFolderChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderChangeStatusType` -/// object. -/// -+ (DBTEAMLOGTeamFolderChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderCreateDetails.h deleted file mode 100644 index 2611be2a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderCreateDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateDetails` struct. -/// -/// Created team folder in active status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderCreateDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderCreateDetails` struct. -/// -@interface DBTEAMLOGTeamFolderCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderCreateDetails` object. -/// -+ (DBTEAMLOGTeamFolderCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderCreateType.h deleted file mode 100644 index 757035ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderCreateType` struct. -/// -@interface DBTEAMLOGTeamFolderCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderCreateType` object. -/// -+ (DBTEAMLOGTeamFolderCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderDowngradeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderDowngradeDetails.h deleted file mode 100644 index 9f987ccc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderDowngradeDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderDowngradeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderDowngradeDetails` struct. -/// -/// Downgraded team folder to regular shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderDowngradeDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderDowngradeDetails` struct. -/// -@interface DBTEAMLOGTeamFolderDowngradeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderDowngradeDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderDowngradeDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderDowngradeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderDowngradeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderDowngradeDetails` -/// object. -/// -+ (DBTEAMLOGTeamFolderDowngradeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderDowngradeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderDowngradeType.h deleted file mode 100644 index 9ecce802..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderDowngradeType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderDowngradeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderDowngradeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderDowngradeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderDowngradeType` struct. -/// -@interface DBTEAMLOGTeamFolderDowngradeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderDowngradeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderDowngradeType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderDowngradeType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderDowngradeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderDowngradeType` object. -/// -+ (DBTEAMLOGTeamFolderDowngradeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h deleted file mode 100644 index e6ffcbac..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderPermanentlyDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderPermanentlyDeleteDetails` struct. -/// -/// Permanently deleted archived team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderPermanentlyDeleteDetails` struct. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderPermanentlyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` object. -/// -+ (DBTEAMLOGTeamFolderPermanentlyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteType.h deleted file mode 100644 index b2ab9712..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderPermanentlyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderPermanentlyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderPermanentlyDeleteType` struct. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderPermanentlyDeleteType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderPermanentlyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderPermanentlyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderPermanentlyDeleteType` -/// object. -/// -+ (DBTEAMLOGTeamFolderPermanentlyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderRenameDetails.h deleted file mode 100644 index 9e035ce2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderRenameDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderRenameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameDetails` struct. -/// -/// Renamed active/archived team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Previous folder name. -@property (nonatomic, readonly, copy) NSString *previousFolderName; - -/// New folder name. -@property (nonatomic, readonly, copy) NSString *dNewFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousFolderName Previous folder name. -/// @param dNewFolderName New folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousFolderName:(NSString *)previousFolderName dNewFolderName:(NSString *)dNewFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderRenameDetails` struct. -/// -@interface DBTEAMLOGTeamFolderRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderRenameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderRenameDetails` object. -/// -+ (DBTEAMLOGTeamFolderRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderRenameType.h deleted file mode 100644 index 0a05e384..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamFolderRenameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderRenameType` struct. -/// -@interface DBTEAMLOGTeamFolderRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderRenameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderRenameType` object. -/// -+ (DBTEAMLOGTeamFolderRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamInviteDetails.h deleted file mode 100644 index 4a2c74d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamInviteDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteMethod; -@class DBTEAMLOGTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamInviteDetails` struct. -/// -/// Details about team invites -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// How the user was invited to the team. -@property (nonatomic, readonly) DBTEAMLOGInviteMethod *inviteMethod; - -/// True if the invitation incurred an additional license purchase. -@property (nonatomic, readonly, nullable) NSNumber *additionalLicensePurchase; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param inviteMethod How the user was invited to the team. -/// @param additionalLicensePurchase True if the invitation incurred an -/// additional license purchase. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteMethod:(DBTEAMLOGInviteMethod *)inviteMethod - additionalLicensePurchase:(nullable NSNumber *)additionalLicensePurchase; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param inviteMethod How the user was invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteMethod:(DBTEAMLOGInviteMethod *)inviteMethod; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamInviteDetails` struct. -/// -@interface DBTEAMLOGTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamInviteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamInviteDetails` object. -/// -+ (DBTEAMLOGTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamLinkedAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamLinkedAppLogInfo.h deleted file mode 100644 index af238933..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamLinkedAppLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGAppLogInfo.h" - -@class DBTEAMLOGTeamLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamLinkedAppLogInfo` struct. -/// -/// Team linked app -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamLinkedAppLogInfo : DBTEAMLOGAppLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamLinkedAppLogInfo` struct. -/// -@interface DBTEAMLOGTeamLinkedAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamLinkedAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamLinkedAppLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLinkedAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamLinkedAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamLinkedAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLinkedAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamLinkedAppLogInfo` object. -/// -+ (DBTEAMLOGTeamLinkedAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamLogInfo.h deleted file mode 100644 index adc94c21..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamLogInfo.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamLogInfo` struct. -/// -/// Team's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamLogInfo : NSObject - -#pragma mark - Instance fields - -/// Team display name. -@property (nonatomic, readonly, copy) NSString *displayName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param displayName Team display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisplayName:(NSString *)displayName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamLogInfo` struct. -/// -@interface DBTEAMLOGTeamLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamLogInfo` object. -/// -+ (DBTEAMLOGTeamLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMemberLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMemberLogInfo.h deleted file mode 100644 index 69a36c91..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMemberLogInfo.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGUserLogInfo.h" - -@class DBTEAMLOGTeamLogInfo; -@class DBTEAMLOGTeamMemberLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberLogInfo` struct. -/// -/// Team member's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMemberLogInfo : DBTEAMLOGUserLogInfo - -#pragma mark - Instance fields - -/// Team member ID. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -/// Team member external ID. -@property (nonatomic, readonly, copy, nullable) NSString *memberExternalId; - -/// Details about this user’s team for enterprise event. -@property (nonatomic, readonly, nullable) DBTEAMLOGTeamLogInfo *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// @param teamMemberId Team member ID. -/// @param memberExternalId Team member external ID. -/// @param team Details about this user’s team for enterprise event. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email - teamMemberId:(nullable NSString *)teamMemberId - memberExternalId:(nullable NSString *)memberExternalId - team:(nullable DBTEAMLOGTeamLogInfo *)team; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberLogInfo` struct. -/// -@interface DBTEAMLOGTeamMemberLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMemberLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMemberLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMemberLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMemberLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMemberLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMemberLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMemberLogInfo` object. -/// -+ (DBTEAMLOGTeamMemberLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMembershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMembershipType.h deleted file mode 100644 index 4cea11c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMembershipType.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMembershipType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMembershipType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMembershipTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTeamMembershipType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMembershipTypeTag) { - /// (no description). - DBTEAMLOGTeamMembershipTypeFree, - - /// (no description). - DBTEAMLOGTeamMembershipTypeFull, - - /// (no description). - DBTEAMLOGTeamMembershipTypeGuest, - - /// (no description). - DBTEAMLOGTeamMembershipTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMembershipTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "free". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFree; - -/// -/// Initializes union class with tag state of "full". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFull; - -/// -/// Initializes union class with tag state of "guest". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuest; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "free". -/// -/// @return Whether the union's current tag state has value "free". -/// -- (BOOL)isFree; - -/// -/// Retrieves whether the union's current tag state has value "full". -/// -/// @return Whether the union's current tag state has value "full". -/// -- (BOOL)isFull; - -/// -/// Retrieves whether the union's current tag state has value "guest". -/// -/// @return Whether the union's current tag state has value "guest". -/// -- (BOOL)isGuest; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamMembershipType` union. -/// -@interface DBTEAMLOGTeamMembershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMembershipType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMembershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMembershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMembershipType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMembershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMembershipType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMembershipType` object. -/// -+ (DBTEAMLOGTeamMembershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeFromDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeFromDetails.h deleted file mode 100644 index 47bc99ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeFromDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeFromDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeFromDetails` struct. -/// -/// Merged another team into this team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeFromDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the team that was merged into this team. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName The name of the team that was merged into this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeFromDetails` struct. -/// -@interface DBTEAMLOGTeamMergeFromDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeFromDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeFromDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeFromDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeFromDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeFromDetails` object. -/// -+ (DBTEAMLOGTeamMergeFromDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeFromType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeFromType.h deleted file mode 100644 index f98f4cc1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeFromType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeFromType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeFromType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeFromType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeFromType` struct. -/// -@interface DBTEAMLOGTeamMergeFromTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeFromType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeFromType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeFromType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeFromType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeFromType` object. -/// -+ (DBTEAMLOGTeamMergeFromType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedDetails.h deleted file mode 100644 index 9e031b8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedDetails` struct. -/// -/// Accepted a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request acceptance details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *requestAcceptedDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestAcceptedDetails Team merge request acceptance details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestAcceptedDetails:(DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *)requestAcceptedDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAcceptedDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAcceptedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestAcceptedDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h deleted file mode 100644 index ba26857f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestAcceptedDetails; -@class DBTEAMLOGSecondaryTeamRequestAcceptedDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedExtraDetails` union. -/// -/// Team merge request acceptance details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsTag) { - /// Team merge request accepted details shown to the primary team. - DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsPrimaryTeam, - - /// Team merge request accepted details shown to the secondary team. - DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsTag tag; - -/// Team merge request accepted details shown to the primary team. @note Ensure -/// the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestAcceptedDetails *primaryTeam; - -/// Team merge request accepted details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestAcceptedDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request accepted -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request accepted details shown to the primary -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestAcceptedDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request accepted -/// details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request accepted details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestAcceptedDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h deleted file mode 100644 index 6236e3d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToPrimaryTeamDetails` struct. -/// -/// Accepted a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h deleted file mode 100644 index 1f1228c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h deleted file mode 100644 index fecd7b6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToSecondaryTeamDetails` struct. -/// -/// Accepted a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The primary team name. -@property (nonatomic, readonly, copy) NSString *primaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param primaryTeam The primary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(NSString *)primaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h deleted file mode 100644 index 78045af7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedType.h deleted file mode 100644 index 9915f3f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAcceptedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAcceptedType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestAcceptedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAcceptedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestAcceptedType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h deleted file mode 100644 index 03b4adea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAutoCanceledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAutoCanceledDetails` struct. -/// -/// Automatically canceled team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// The cancellation reason. -@property (nonatomic, readonly, copy, nullable) NSString *details; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param details The cancellation reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDetails:(nullable NSString *)details; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAutoCanceledDetails` -/// struct. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAutoCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAutoCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledType.h deleted file mode 100644 index 4abb4e8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAutoCanceledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAutoCanceledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAutoCanceledType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAutoCanceledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAutoCanceledType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAutoCanceledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestAutoCanceledType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestAutoCanceledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledDetails.h deleted file mode 100644 index f6980d37..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledDetails` struct. -/// -/// Canceled a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request cancellation details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledExtraDetails *requestCanceledDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestCanceledDetails Team merge request cancellation details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestCanceledDetails:(DBTEAMLOGTeamMergeRequestCanceledExtraDetails *)requestCanceledDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestCanceledDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestCanceledDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h deleted file mode 100644 index b7b3c6c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestCanceledDetails; -@class DBTEAMLOGSecondaryTeamRequestCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledExtraDetails` union. -/// -/// Team merge request cancellation details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestCanceledExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestCanceledExtraDetailsTag) { - /// Team merge request cancellation details shown to the primary team. - DBTEAMLOGTeamMergeRequestCanceledExtraDetailsPrimaryTeam, - - /// Team merge request cancellation details shown to the secondary team. - DBTEAMLOGTeamMergeRequestCanceledExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestCanceledExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledExtraDetailsTag tag; - -/// Team merge request cancellation details shown to the primary team. @note -/// Ensure the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestCanceledDetails *primaryTeam; - -/// Team merge request cancellation details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestCanceledDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request cancellation -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request cancellation details shown to the -/// primary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestCanceledDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request -/// cancellation details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request cancellation details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestCanceledDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestCanceledExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h deleted file mode 100644 index 03810af2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToPrimaryTeamDetails` struct. -/// -/// Canceled a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h deleted file mode 100644 index 10e85268..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h deleted file mode 100644 index c223f489..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToSecondaryTeamDetails` struct. -/// -/// Canceled a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin that the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin that the request was sent -/// to. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h deleted file mode 100644 index 3bd1c190..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledType.h deleted file mode 100644 index fee84388..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestCanceledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestCanceledType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestCanceledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestCanceledType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestCanceledType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredDetails.h deleted file mode 100644 index dbed542e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredDetails; -@class DBTEAMLOGTeamMergeRequestExpiredExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredDetails` struct. -/// -/// Team merge request expired. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request expiration details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredExtraDetails *requestExpiredDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestExpiredDetails Team merge request expiration details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestExpiredDetails:(DBTEAMLOGTeamMergeRequestExpiredExtraDetails *)requestExpiredDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestExpiredDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestExpiredDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestExpiredDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h deleted file mode 100644 index ee742168..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestExpiredDetails; -@class DBTEAMLOGSecondaryTeamRequestExpiredDetails; -@class DBTEAMLOGTeamMergeRequestExpiredExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredExtraDetails` union. -/// -/// Team merge request expiration details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestExpiredExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestExpiredExtraDetailsTag) { - /// Team merge request canceled details shown to the primary team. - DBTEAMLOGTeamMergeRequestExpiredExtraDetailsPrimaryTeam, - - /// Team merge request canceled details shown to the secondary team. - DBTEAMLOGTeamMergeRequestExpiredExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestExpiredExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredExtraDetailsTag tag; - -/// Team merge request canceled details shown to the primary team. @note Ensure -/// the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestExpiredDetails *primaryTeam; - -/// Team merge request canceled details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestExpiredDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request canceled -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request canceled details shown to the primary -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestExpiredDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request canceled -/// details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request canceled details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestExpiredDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h deleted file mode 100644 index 40310db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToPrimaryTeamDetails` struct. -/// -/// Team merge request expired. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h deleted file mode 100644 index c6ba32f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h deleted file mode 100644 index 58febf1e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToSecondaryTeamDetails` struct. -/// -/// Team merge request expired. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h deleted file mode 100644 index f0009b03..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredType.h deleted file mode 100644 index 7c2ed3a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestExpiredType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestExpiredType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestExpiredType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestExpiredType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h deleted file mode 100644 index 8754bcf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToPrimaryTeamDetails` struct. -/// -/// Rejected a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h deleted file mode 100644 index 9499ae2c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h deleted file mode 100644 index a4a04820..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToSecondaryTeamDetails` struct. -/// -/// Rejected a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h deleted file mode 100644 index d6e6702a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderDetails.h deleted file mode 100644 index 3a534ff5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderDetails; -@class DBTEAMLOGTeamMergeRequestReminderExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderDetails` struct. -/// -/// Sent a team merge request reminder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request reminder details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderExtraDetails *requestReminderDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestReminderDetails Team merge request reminder details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestReminderDetails:(DBTEAMLOGTeamMergeRequestReminderExtraDetails *)requestReminderDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestReminderDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestReminderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestReminderDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderExtraDetails.h deleted file mode 100644 index 1d045db0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestReminderDetails; -@class DBTEAMLOGSecondaryTeamRequestReminderDetails; -@class DBTEAMLOGTeamMergeRequestReminderExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderExtraDetails` union. -/// -/// Team merge request reminder details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestReminderExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestReminderExtraDetailsTag) { - /// Team merge request reminder details shown to the primary team. - DBTEAMLOGTeamMergeRequestReminderExtraDetailsPrimaryTeam, - - /// Team merge request reminder details shown to the secondary team. - DBTEAMLOGTeamMergeRequestReminderExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestReminderExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderExtraDetailsTag tag; - -/// Team merge request reminder details shown to the primary team. @note Ensure -/// the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestReminderDetails *primaryTeam; - -/// Team merge request reminder details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestReminderDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request reminder -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request reminder details shown to the primary -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestReminderDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request reminder -/// details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request reminder details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestReminderDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestReminderExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestReminderExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h deleted file mode 100644 index f8d354d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToPrimaryTeamDetails` struct. -/// -/// Sent a team merge request reminder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentTo The name of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h deleted file mode 100644 index 40950d80..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h deleted file mode 100644 index 54f449d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToSecondaryTeamDetails` struct. -/// -/// Sent a team merge request reminder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h deleted file mode 100644 index 23f8d63f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderType.h deleted file mode 100644 index 6b5b9972..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestReminderType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestReminderType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestReminderType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestReminderType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestReminderType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRevokedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRevokedDetails.h deleted file mode 100644 index 49f18e4e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRevokedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRevokedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRevokedDetails` struct. -/// -/// Canceled the team merge. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the other team. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The name of the other team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestRevokedDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRevokedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestRevokedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestRevokedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRevokedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestRevokedDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestRevokedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRevokedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRevokedType.h deleted file mode 100644 index 4a030107..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestRevokedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRevokedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRevokedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestRevokedType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRevokedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestRevokedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestRevokedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRevokedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestRevokedType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestRevokedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h deleted file mode 100644 index d96b8562..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToPrimaryTeamDetails` struct. -/// -/// Requested to merge their Dropbox team into yours. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentTo The name of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestSentShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h deleted file mode 100644 index aedc56a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestSentShownToPrimaryTeamType` -/// struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h deleted file mode 100644 index 8bd35535..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToSecondaryTeamDetails` struct. -/// -/// Requested to merge your team into another Dropbox team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestSentShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h deleted file mode 100644 index 729eb1f6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestSentShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeToDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeToDetails.h deleted file mode 100644 index 3a288e64..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeToDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeToDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeToDetails` struct. -/// -/// Merged this team into another team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeToDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the team that this team was merged into. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName The name of the team that this team was merged into. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeToDetails` struct. -/// -@interface DBTEAMLOGTeamMergeToDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeToDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeToDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeToDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeToDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeToDetails` object. -/// -+ (DBTEAMLOGTeamMergeToDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeToType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeToType.h deleted file mode 100644 index 602c4341..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamMergeToType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeToType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeToType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeToType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeToType` struct. -/// -@interface DBTEAMLOGTeamMergeToTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeToType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeToType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeToType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeToType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeToType` object. -/// -+ (DBTEAMLOGTeamMergeToType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamName.h deleted file mode 100644 index 2bc90ca9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamName.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamName` struct. -/// -/// Team name details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamName : NSObject - -#pragma mark - Instance fields - -/// Team's display name. -@property (nonatomic, readonly, copy) NSString *teamDisplayName; - -/// Team's legal name. -@property (nonatomic, readonly, copy) NSString *teamLegalName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamDisplayName Team's display name. -/// @param teamLegalName Team's legal name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamDisplayName:(NSString *)teamDisplayName teamLegalName:(NSString *)teamLegalName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamName` struct. -/// -@interface DBTEAMLOGTeamNameSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamName` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamName` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamName` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamName *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamName` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamName` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamName` object. -/// -+ (DBTEAMLOGTeamName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddBackgroundDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddBackgroundDetails.h deleted file mode 100644 index bcd42dd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddBackgroundDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddBackgroundDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddBackgroundDetails` struct. -/// -/// Added team background to display on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddBackgroundDetails` struct. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddBackgroundDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileAddBackgroundDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddBackgroundDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddBackgroundDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddBackgroundDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileAddBackgroundDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddBackgroundType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddBackgroundType.h deleted file mode 100644 index b979f948..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddBackgroundType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddBackgroundType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddBackgroundType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddBackgroundType` struct. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddBackgroundType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileAddBackgroundType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddBackgroundType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddBackgroundType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddBackgroundType` -/// object. -/// -+ (DBTEAMLOGTeamProfileAddBackgroundType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddLogoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddLogoDetails.h deleted file mode 100644 index ab7e250a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddLogoDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddLogoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddLogoDetails` struct. -/// -/// Added team logo to display on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddLogoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddLogoDetails` struct. -/// -@interface DBTEAMLOGTeamProfileAddLogoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddLogoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileAddLogoDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddLogoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddLogoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddLogoDetails` object. -/// -+ (DBTEAMLOGTeamProfileAddLogoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddLogoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddLogoType.h deleted file mode 100644 index 8e4667fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileAddLogoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddLogoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddLogoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddLogoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddLogoType` struct. -/// -@interface DBTEAMLOGTeamProfileAddLogoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddLogoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileAddLogoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddLogoType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddLogoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddLogoType` object. -/// -+ (DBTEAMLOGTeamProfileAddLogoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeBackgroundDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeBackgroundDetails.h deleted file mode 100644 index b47ab310..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeBackgroundDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeBackgroundDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeBackgroundDetails` struct. -/// -/// Changed team background displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeBackgroundDetails` struct. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeBackgroundDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeBackgroundDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeBackgroundDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` object. -/// -+ (DBTEAMLOGTeamProfileChangeBackgroundDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeBackgroundType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeBackgroundType.h deleted file mode 100644 index 6fa16195..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeBackgroundType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeBackgroundType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeBackgroundType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeBackgroundType` struct. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeBackgroundType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeBackgroundType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeBackgroundType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeBackgroundType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeBackgroundType` -/// object. -/// -+ (DBTEAMLOGTeamProfileChangeBackgroundType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h deleted file mode 100644 index 7b2ff7db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeDefaultLanguageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeDefaultLanguageDetails` struct. -/// -/// Changed default language for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageDetails : NSObject - -#pragma mark - Instance fields - -/// New team's default language. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Previous team's default language. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team's default language. -/// @param previousValue Previous team's default language. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeDefaultLanguageDetails` -/// struct. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` object. -/// -+ (DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageType.h deleted file mode 100644 index 407baf19..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeDefaultLanguageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeDefaultLanguageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeDefaultLanguageType` -/// struct. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeDefaultLanguageType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeDefaultLanguageType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeDefaultLanguageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` object. -/// -+ (DBTEAMLOGTeamProfileChangeDefaultLanguageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeLogoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeLogoDetails.h deleted file mode 100644 index c8f336d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeLogoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeLogoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeLogoDetails` struct. -/// -/// Changed team logo displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeLogoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeLogoDetails` struct. -/// -@interface DBTEAMLOGTeamProfileChangeLogoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeLogoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeLogoDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeLogoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeLogoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeLogoDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileChangeLogoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeLogoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeLogoType.h deleted file mode 100644 index 8bcfcbd9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeLogoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeLogoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeLogoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeLogoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeLogoType` struct. -/// -@interface DBTEAMLOGTeamProfileChangeLogoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeLogoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeLogoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeLogoType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeLogoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeLogoType` object. -/// -+ (DBTEAMLOGTeamProfileChangeLogoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeNameDetails.h deleted file mode 100644 index 83911dfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeNameDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamName; -@class DBTEAMLOGTeamProfileChangeNameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeNameDetails` struct. -/// -/// Changed team name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeNameDetails : NSObject - -#pragma mark - Instance fields - -/// Previous teams name. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGTeamName *previousValue; - -/// New team name. -@property (nonatomic, readonly) DBTEAMLOGTeamName *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team name. -/// @param previousValue Previous teams name. Might be missing due to historical -/// data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamName *)dNewValue - previousValue:(nullable DBTEAMLOGTeamName *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamName *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeNameDetails` struct. -/// -@interface DBTEAMLOGTeamProfileChangeNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeNameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeNameDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeNameDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileChangeNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeNameType.h deleted file mode 100644 index 84f299a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileChangeNameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeNameType` struct. -/// -@interface DBTEAMLOGTeamProfileChangeNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeNameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeNameType` object. -/// -+ (DBTEAMLOGTeamProfileChangeNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveBackgroundDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveBackgroundDetails.h deleted file mode 100644 index ee892ad1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveBackgroundDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveBackgroundDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveBackgroundDetails` struct. -/// -/// Removed team background displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveBackgroundDetails` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveBackgroundDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveBackgroundDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveBackgroundDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` object. -/// -+ (DBTEAMLOGTeamProfileRemoveBackgroundDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveBackgroundType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveBackgroundType.h deleted file mode 100644 index 98186af7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveBackgroundType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveBackgroundType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveBackgroundType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveBackgroundType` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveBackgroundType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveBackgroundType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveBackgroundType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileRemoveBackgroundType` -/// object. -/// -+ (DBTEAMLOGTeamProfileRemoveBackgroundType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveLogoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveLogoDetails.h deleted file mode 100644 index 0f3f50ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveLogoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveLogoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveLogoDetails` struct. -/// -/// Removed team logo displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveLogoDetails` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveLogoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileRemoveLogoDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveLogoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveLogoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileRemoveLogoDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileRemoveLogoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveLogoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveLogoType.h deleted file mode 100644 index 97afc111..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamProfileRemoveLogoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveLogoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveLogoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveLogoType` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveLogoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileRemoveLogoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveLogoType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveLogoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileRemoveLogoType` object. -/// -+ (DBTEAMLOGTeamProfileRemoveLogoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicy.h deleted file mode 100644 index 5c1181b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncPolicy` union. -/// -/// Policy for controlling whether team selective sync is enabled for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamSelectiveSyncPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGTeamSelectiveSyncPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamSelectiveSyncPolicyTag) { - /// (no description). - DBTEAMLOGTeamSelectiveSyncPolicyDisabled, - - /// (no description). - DBTEAMLOGTeamSelectiveSyncPolicyEnabled, - - /// (no description). - DBTEAMLOGTeamSelectiveSyncPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamSelectiveSyncPolicy` union. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamSelectiveSyncPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamSelectiveSyncPolicy` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h deleted file mode 100644 index 8be5cc0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncPolicy; -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncPolicyChangedDetails` struct. -/// -/// Enabled/disabled Team Selective Sync for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Team Selective Sync policy. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicy *dNewValue; - -/// Previous Team Selective Sync policy. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Team Selective Sync policy. -/// @param previousValue Previous Team Selective Sync policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamSelectiveSyncPolicy *)dNewValue - previousValue:(DBTEAMLOGTeamSelectiveSyncPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h deleted file mode 100644 index dd7b24bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncPolicyChangedType` struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h deleted file mode 100644 index 7ec7b9f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSetting; -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncSettingsChangedDetails` struct. -/// -/// Changed sync default. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous value. -@property (nonatomic, readonly) DBFILESSyncSetting *previousValue; - -/// New value. -@property (nonatomic, readonly) DBFILESSyncSetting *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous value. -/// @param dNewValue New value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBFILESSyncSetting *)previousValue dNewValue:(DBFILESSyncSetting *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncSettingsChangedDetails` -/// struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h deleted file mode 100644 index 33c7f90d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncSettingsChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncSettingsChangedType` -/// struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncSettingsChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncSettingsChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h deleted file mode 100644 index 3606a310..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSharingWhitelistSubjectsChangedDetails` struct. -/// -/// Edited the approved list for sharing externally. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Domains or emails added to the approved list for sharing externally. -@property (nonatomic, readonly) NSArray *addedWhitelistSubjects; - -/// Domains or emails removed from the approved list for sharing externally. -@property (nonatomic, readonly) NSArray *removedWhitelistSubjects; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param addedWhitelistSubjects Domains or emails added to the approved list -/// for sharing externally. -/// @param removedWhitelistSubjects Domains or emails removed from the approved -/// list for sharing externally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAddedWhitelistSubjects:(NSArray *)addedWhitelistSubjects - removedWhitelistSubjects:(NSArray *)removedWhitelistSubjects; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSharingWhitelistSubjectsChangedDetails` -/// struct. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` object. -/// -+ (DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h deleted file mode 100644 index 3a3e1c13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSharingWhitelistSubjectsChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSharingWhitelistSubjectsChangedType` -/// struct. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` object. -/// -+ (DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddBackupPhoneDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddBackupPhoneDetails.h deleted file mode 100644 index 716c79f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddBackupPhoneDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddBackupPhoneDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddBackupPhoneDetails` struct. -/// -/// Added backup phone for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddBackupPhoneDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddBackupPhoneDetails` struct. -/// -@interface DBTEAMLOGTfaAddBackupPhoneDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddBackupPhoneDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddBackupPhoneDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddBackupPhoneDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddBackupPhoneDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddBackupPhoneDetails` object. -/// -+ (DBTEAMLOGTfaAddBackupPhoneDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddBackupPhoneType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddBackupPhoneType.h deleted file mode 100644 index a05a8c85..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddBackupPhoneType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddBackupPhoneType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddBackupPhoneType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddBackupPhoneType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddBackupPhoneType` struct. -/// -@interface DBTEAMLOGTfaAddBackupPhoneTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddBackupPhoneType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddBackupPhoneType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddBackupPhoneType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddBackupPhoneType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddBackupPhoneType` object. -/// -+ (DBTEAMLOGTfaAddBackupPhoneType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddExceptionDetails.h deleted file mode 100644 index ca9330aa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddExceptionDetails` struct. -/// -/// Added members to two factor authentication exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddExceptionDetails` struct. -/// -@interface DBTEAMLOGTfaAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddExceptionDetails` object. -/// -+ (DBTEAMLOGTfaAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddExceptionType.h deleted file mode 100644 index 90713afb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddExceptionType` struct. -/// -@interface DBTEAMLOGTfaAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddExceptionType` object. -/// -+ (DBTEAMLOGTfaAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddSecurityKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddSecurityKeyDetails.h deleted file mode 100644 index 55961615..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddSecurityKeyDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddSecurityKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddSecurityKeyDetails` struct. -/// -/// Added security key for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddSecurityKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddSecurityKeyDetails` struct. -/// -@interface DBTEAMLOGTfaAddSecurityKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddSecurityKeyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddSecurityKeyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddSecurityKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddSecurityKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddSecurityKeyDetails` object. -/// -+ (DBTEAMLOGTfaAddSecurityKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddSecurityKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddSecurityKeyType.h deleted file mode 100644 index f8655b84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaAddSecurityKeyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddSecurityKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddSecurityKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddSecurityKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddSecurityKeyType` struct. -/// -@interface DBTEAMLOGTfaAddSecurityKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddSecurityKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddSecurityKeyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddSecurityKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddSecurityKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddSecurityKeyType` object. -/// -+ (DBTEAMLOGTfaAddSecurityKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeBackupPhoneDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeBackupPhoneDetails.h deleted file mode 100644 index bbb1f38b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeBackupPhoneDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeBackupPhoneDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeBackupPhoneDetails` struct. -/// -/// Changed backup phone for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeBackupPhoneDetails` struct. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeBackupPhoneDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeBackupPhoneDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeBackupPhoneDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeBackupPhoneDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeBackupPhoneDetails` -/// object. -/// -+ (DBTEAMLOGTfaChangeBackupPhoneDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeBackupPhoneType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeBackupPhoneType.h deleted file mode 100644 index 64c7f560..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeBackupPhoneType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeBackupPhoneType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeBackupPhoneType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeBackupPhoneType` struct. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeBackupPhoneType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeBackupPhoneType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeBackupPhoneType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeBackupPhoneType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeBackupPhoneType` object. -/// -+ (DBTEAMLOGTfaChangeBackupPhoneType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangePolicyDetails.h deleted file mode 100644 index 3feb075d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangePolicyDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangePolicyDetails; -@class DBTEAMPOLICIESTwoStepVerificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangePolicyDetails` struct. -/// -/// Changed two-step verification setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New change policy. -@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationPolicy *dNewValue; - -/// Previous change policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESTwoStepVerificationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New change policy. -/// @param previousValue Previous change policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESTwoStepVerificationPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESTwoStepVerificationPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New change policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESTwoStepVerificationPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangePolicyDetails` struct. -/// -@interface DBTEAMLOGTfaChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangePolicyDetails` object. -/// -+ (DBTEAMLOGTfaChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangePolicyType.h deleted file mode 100644 index e6e48205..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangePolicyType` struct. -/// -@interface DBTEAMLOGTfaChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangePolicyType` object. -/// -+ (DBTEAMLOGTfaChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeStatusDetails.h deleted file mode 100644 index b2ee8658..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeStatusDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeStatusDetails; -@class DBTEAMLOGTfaConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeStatusDetails` struct. -/// -/// Enabled/disabled/changed two-step verification setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// The new two factor authentication configuration. -@property (nonatomic, readonly) DBTEAMLOGTfaConfiguration *dNewValue; - -/// The previous two factor authentication configuration. Might be missing due -/// to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGTfaConfiguration *previousValue; - -/// Used two factor authentication rescue code. This flag is relevant when the -/// two factor authentication configuration is disabled. -@property (nonatomic, readonly, nullable) NSNumber *usedRescueCode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue The new two factor authentication configuration. -/// @param previousValue The previous two factor authentication configuration. -/// Might be missing due to historical data gap. -/// @param usedRescueCode Used two factor authentication rescue code. This flag -/// is relevant when the two factor authentication configuration is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTfaConfiguration *)dNewValue - previousValue:(nullable DBTEAMLOGTfaConfiguration *)previousValue - usedRescueCode:(nullable NSNumber *)usedRescueCode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue The new two factor authentication configuration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTfaConfiguration *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeStatusDetails` struct. -/// -@interface DBTEAMLOGTfaChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeStatusDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeStatusDetails` object. -/// -+ (DBTEAMLOGTfaChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeStatusType.h deleted file mode 100644 index c840047a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaChangeStatusType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeStatusType` struct. -/// -@interface DBTEAMLOGTfaChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeStatusType` object. -/// -+ (DBTEAMLOGTfaChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaConfiguration.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaConfiguration.h deleted file mode 100644 index 961e22ca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaConfiguration.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaConfiguration` union. -/// -/// Two factor authentication configuration. Note: the enabled option is -/// deprecated. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaConfiguration : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTfaConfigurationTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTfaConfiguration` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTfaConfigurationTag) { - /// (no description). - DBTEAMLOGTfaConfigurationAuthenticator, - - /// (no description). - DBTEAMLOGTfaConfigurationDisabled, - - /// (no description). - DBTEAMLOGTfaConfigurationEnabled, - - /// (no description). - DBTEAMLOGTfaConfigurationSms, - - /// (no description). - DBTEAMLOGTfaConfigurationOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTfaConfigurationTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "authenticator". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAuthenticator; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "sms". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSms; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "authenticator". -/// -/// @return Whether the union's current tag state has value "authenticator". -/// -- (BOOL)isAuthenticator; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "sms". -/// -/// @return Whether the union's current tag state has value "sms". -/// -- (BOOL)isSms; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTfaConfiguration` union. -/// -@interface DBTEAMLOGTfaConfigurationSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaConfiguration` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaConfiguration` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaConfiguration` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaConfiguration *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaConfiguration` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaConfiguration` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaConfiguration` object. -/// -+ (DBTEAMLOGTfaConfiguration *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveBackupPhoneDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveBackupPhoneDetails.h deleted file mode 100644 index 261ad155..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveBackupPhoneDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveBackupPhoneDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveBackupPhoneDetails` struct. -/// -/// Removed backup phone for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveBackupPhoneDetails` struct. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveBackupPhoneDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveBackupPhoneDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveBackupPhoneDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveBackupPhoneDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveBackupPhoneDetails` -/// object. -/// -+ (DBTEAMLOGTfaRemoveBackupPhoneDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveBackupPhoneType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveBackupPhoneType.h deleted file mode 100644 index fdb75125..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveBackupPhoneType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveBackupPhoneType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveBackupPhoneType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveBackupPhoneType` struct. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveBackupPhoneType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveBackupPhoneType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveBackupPhoneType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveBackupPhoneType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveBackupPhoneType` object. -/// -+ (DBTEAMLOGTfaRemoveBackupPhoneType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveExceptionDetails.h deleted file mode 100644 index bb29c298..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveExceptionDetails` struct. -/// -/// Removed members from two factor authentication exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveExceptionDetails` struct. -/// -@interface DBTEAMLOGTfaRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGTfaRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveExceptionType.h deleted file mode 100644 index 56eba6da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveExceptionType` struct. -/// -@interface DBTEAMLOGTfaRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveExceptionType` object. -/// -+ (DBTEAMLOGTfaRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveSecurityKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveSecurityKeyDetails.h deleted file mode 100644 index 97d07354..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveSecurityKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveSecurityKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveSecurityKeyDetails` struct. -/// -/// Removed security key for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveSecurityKeyDetails` struct. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveSecurityKeyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveSecurityKeyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveSecurityKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveSecurityKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveSecurityKeyDetails` -/// object. -/// -+ (DBTEAMLOGTfaRemoveSecurityKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveSecurityKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveSecurityKeyType.h deleted file mode 100644 index 848fa70f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaRemoveSecurityKeyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveSecurityKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveSecurityKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveSecurityKeyType` struct. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveSecurityKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveSecurityKeyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveSecurityKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveSecurityKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveSecurityKeyType` object. -/// -+ (DBTEAMLOGTfaRemoveSecurityKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaResetDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaResetDetails.h deleted file mode 100644 index ad51290c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaResetDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaResetDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaResetDetails` struct. -/// -/// Reset two-step verification for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaResetDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaResetDetails` struct. -/// -@interface DBTEAMLOGTfaResetDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaResetDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaResetDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaResetDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaResetDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaResetDetails` object. -/// -+ (DBTEAMLOGTfaResetDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaResetType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaResetType.h deleted file mode 100644 index 6b5681f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTfaResetType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaResetType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaResetType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaResetType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaResetType` struct. -/// -@interface DBTEAMLOGTfaResetTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaResetType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaResetType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaResetType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaResetType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaResetType` object. -/// -+ (DBTEAMLOGTfaResetType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTimeUnit.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTimeUnit.h deleted file mode 100644 index c2168354..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTimeUnit.h +++ /dev/null @@ -1,233 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTimeUnit; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TimeUnit` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTimeUnit : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTimeUnitTag` enum type represents the possible tag states with -/// which the `DBTEAMLOGTimeUnit` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTimeUnitTag) { - /// (no description). - DBTEAMLOGTimeUnitDays, - - /// (no description). - DBTEAMLOGTimeUnitHours, - - /// (no description). - DBTEAMLOGTimeUnitMilliseconds, - - /// (no description). - DBTEAMLOGTimeUnitMinutes, - - /// (no description). - DBTEAMLOGTimeUnitMonths, - - /// (no description). - DBTEAMLOGTimeUnitSeconds, - - /// (no description). - DBTEAMLOGTimeUnitWeeks, - - /// (no description). - DBTEAMLOGTimeUnitYears, - - /// (no description). - DBTEAMLOGTimeUnitOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTimeUnitTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDays; - -/// -/// Initializes union class with tag state of "hours". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHours; - -/// -/// Initializes union class with tag state of "milliseconds". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMilliseconds; - -/// -/// Initializes union class with tag state of "minutes". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMinutes; - -/// -/// Initializes union class with tag state of "months". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMonths; - -/// -/// Initializes union class with tag state of "seconds". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSeconds; - -/// -/// Initializes union class with tag state of "weeks". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWeeks; - -/// -/// Initializes union class with tag state of "years". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithYears; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "days". -/// -/// @return Whether the union's current tag state has value "days". -/// -- (BOOL)isDays; - -/// -/// Retrieves whether the union's current tag state has value "hours". -/// -/// @return Whether the union's current tag state has value "hours". -/// -- (BOOL)isHours; - -/// -/// Retrieves whether the union's current tag state has value "milliseconds". -/// -/// @return Whether the union's current tag state has value "milliseconds". -/// -- (BOOL)isMilliseconds; - -/// -/// Retrieves whether the union's current tag state has value "minutes". -/// -/// @return Whether the union's current tag state has value "minutes". -/// -- (BOOL)isMinutes; - -/// -/// Retrieves whether the union's current tag state has value "months". -/// -/// @return Whether the union's current tag state has value "months". -/// -- (BOOL)isMonths; - -/// -/// Retrieves whether the union's current tag state has value "seconds". -/// -/// @return Whether the union's current tag state has value "seconds". -/// -- (BOOL)isSeconds; - -/// -/// Retrieves whether the union's current tag state has value "weeks". -/// -/// @return Whether the union's current tag state has value "weeks". -/// -- (BOOL)isWeeks; - -/// -/// Retrieves whether the union's current tag state has value "years". -/// -/// @return Whether the union's current tag state has value "years". -/// -- (BOOL)isYears; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTimeUnit` union. -/// -@interface DBTEAMLOGTimeUnitSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTimeUnit` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTimeUnit` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTimeUnit` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTimeUnit *)instance; - -/// -/// Deserializes `DBTEAMLOGTimeUnit` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTimeUnit` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTimeUnit` object. -/// -+ (DBTEAMLOGTimeUnit *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedNonTeamMemberLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedNonTeamMemberLogInfo.h deleted file mode 100644 index 59060112..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedNonTeamMemberLogInfo.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGUserLogInfo.h" - -@class DBTEAMLOGTeamLogInfo; -@class DBTEAMLOGTrustedNonTeamMemberLogInfo; -@class DBTEAMLOGTrustedNonTeamMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedNonTeamMemberLogInfo` struct. -/// -/// User that is not a member of the team but considered trusted. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedNonTeamMemberLogInfo : DBTEAMLOGUserLogInfo - -#pragma mark - Instance fields - -/// Indicates the type of the member of a trusted team. -@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberType *trustedNonTeamMemberType; - -/// Details about this user's trusted team. -@property (nonatomic, readonly, nullable) DBTEAMLOGTeamLogInfo *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param trustedNonTeamMemberType Indicates the type of the member of a -/// trusted team. -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// @param team Details about this user's trusted team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedNonTeamMemberType:(DBTEAMLOGTrustedNonTeamMemberType *)trustedNonTeamMemberType - accountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email - team:(nullable DBTEAMLOGTeamLogInfo *)team; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param trustedNonTeamMemberType Indicates the type of the member of a -/// trusted team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedNonTeamMemberType:(DBTEAMLOGTrustedNonTeamMemberType *)trustedNonTeamMemberType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TrustedNonTeamMemberLogInfo` struct. -/// -@interface DBTEAMLOGTrustedNonTeamMemberLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedNonTeamMemberLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedNonTeamMemberLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedNonTeamMemberLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedNonTeamMemberLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedNonTeamMemberLogInfo` -/// object. -/// -+ (DBTEAMLOGTrustedNonTeamMemberLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedNonTeamMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedNonTeamMemberType.h deleted file mode 100644 index 6e8ce374..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedNonTeamMemberType.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTrustedNonTeamMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedNonTeamMemberType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedNonTeamMemberType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTrustedNonTeamMemberTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGTrustedNonTeamMemberType` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTrustedNonTeamMemberTypeTag) { - /// (no description). - DBTEAMLOGTrustedNonTeamMemberTypeEnterpriseAdmin, - - /// (no description). - DBTEAMLOGTrustedNonTeamMemberTypeMultiInstanceAdmin, - - /// (no description). - DBTEAMLOGTrustedNonTeamMemberTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enterprise_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseAdmin; - -/// -/// Initializes union class with tag state of "multi_instance_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMultiInstanceAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_admin". -/// -/// @return Whether the union's current tag state has value "enterprise_admin". -/// -- (BOOL)isEnterpriseAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "multi_instance_admin". -/// -/// @return Whether the union's current tag state has value -/// "multi_instance_admin". -/// -- (BOOL)isMultiInstanceAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTrustedNonTeamMemberType` union. -/// -@interface DBTEAMLOGTrustedNonTeamMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedNonTeamMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedNonTeamMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedNonTeamMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedNonTeamMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedNonTeamMemberType` object. -/// -+ (DBTEAMLOGTrustedNonTeamMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedTeamsRequestAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedTeamsRequestAction.h deleted file mode 100644 index 6ead8760..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedTeamsRequestAction.h +++ /dev/null @@ -1,184 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTrustedTeamsRequestAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedTeamsRequestAction` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedTeamsRequestAction : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTrustedTeamsRequestActionTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGTrustedTeamsRequestAction` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTrustedTeamsRequestActionTag) { - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionAccepted, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionDeclined, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionExpired, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionInvited, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionRevoked, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "accepted". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccepted; - -/// -/// Initializes union class with tag state of "declined". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeclined; - -/// -/// Initializes union class with tag state of "expired". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExpired; - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "revoked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevoked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "accepted". -/// -/// @return Whether the union's current tag state has value "accepted". -/// -- (BOOL)isAccepted; - -/// -/// Retrieves whether the union's current tag state has value "declined". -/// -/// @return Whether the union's current tag state has value "declined". -/// -- (BOOL)isDeclined; - -/// -/// Retrieves whether the union's current tag state has value "expired". -/// -/// @return Whether the union's current tag state has value "expired". -/// -- (BOOL)isExpired; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "revoked". -/// -/// @return Whether the union's current tag state has value "revoked". -/// -- (BOOL)isRevoked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTrustedTeamsRequestAction` union. -/// -@interface DBTEAMLOGTrustedTeamsRequestActionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedTeamsRequestAction` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedTeamsRequestAction` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedTeamsRequestAction *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedTeamsRequestAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestAction` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedTeamsRequestAction` object. -/// -+ (DBTEAMLOGTrustedTeamsRequestAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedTeamsRequestState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedTeamsRequestState.h deleted file mode 100644 index 97330fb9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTrustedTeamsRequestState.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTrustedTeamsRequestState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedTeamsRequestState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedTeamsRequestState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTrustedTeamsRequestStateTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGTrustedTeamsRequestState` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTrustedTeamsRequestStateTag) { - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateInvited, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateLinked, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateUnlinked, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "linked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinked; - -/// -/// Initializes union class with tag state of "unlinked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "linked". -/// -/// @return Whether the union's current tag state has value "linked". -/// -- (BOOL)isLinked; - -/// -/// Retrieves whether the union's current tag state has value "unlinked". -/// -/// @return Whether the union's current tag state has value "unlinked". -/// -- (BOOL)isUnlinked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTrustedTeamsRequestState` union. -/// -@interface DBTEAMLOGTrustedTeamsRequestStateSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedTeamsRequestState` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedTeamsRequestState` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedTeamsRequestState *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedTeamsRequestState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestState` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedTeamsRequestState` object. -/// -+ (DBTEAMLOGTrustedTeamsRequestState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountChangePolicyDetails.h deleted file mode 100644 index 4e368dae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTwoAccountChangePolicyDetails; -@class DBTEAMLOGTwoAccountPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoAccountChangePolicyDetails` struct. -/// -/// Enabled/disabled option for members to link personal Dropbox account and -/// team account to same computer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTwoAccountChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New two account policy. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountPolicy *dNewValue; - -/// Previous two account policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGTwoAccountPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New two account policy. -/// @param previousValue Previous two account policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTwoAccountPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGTwoAccountPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New two account policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTwoAccountPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TwoAccountChangePolicyDetails` struct. -/// -@interface DBTEAMLOGTwoAccountChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTwoAccountChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTwoAccountChangePolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTwoAccountChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTwoAccountChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTwoAccountChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGTwoAccountChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountChangePolicyType.h deleted file mode 100644 index 3b2115c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTwoAccountChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoAccountChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTwoAccountChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TwoAccountChangePolicyType` struct. -/// -@interface DBTEAMLOGTwoAccountChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTwoAccountChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTwoAccountChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTwoAccountChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTwoAccountChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTwoAccountChangePolicyType` -/// object. -/// -+ (DBTEAMLOGTwoAccountChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountPolicy.h deleted file mode 100644 index df3982db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGTwoAccountPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTwoAccountPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoAccountPolicy` union. -/// -/// Policy for pairing personal account to work account -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTwoAccountPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTwoAccountPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTwoAccountPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTwoAccountPolicyTag) { - /// (no description). - DBTEAMLOGTwoAccountPolicyDisabled, - - /// (no description). - DBTEAMLOGTwoAccountPolicyEnabled, - - /// (no description). - DBTEAMLOGTwoAccountPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTwoAccountPolicy` union. -/// -@interface DBTEAMLOGTwoAccountPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTwoAccountPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTwoAccountPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTwoAccountPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTwoAccountPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTwoAccountPolicy` object. -/// -+ (DBTEAMLOGTwoAccountPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoNamingConventionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoNamingConventionDetails.h deleted file mode 100644 index 28d802ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoNamingConventionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoNamingConventionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoNamingConventionDetails` struct. -/// -/// Reverted naming convention. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoNamingConventionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoNamingConventionDetails` struct. -/// -@interface DBTEAMLOGUndoNamingConventionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoNamingConventionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUndoNamingConventionDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoNamingConventionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoNamingConventionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoNamingConventionDetails` -/// object. -/// -+ (DBTEAMLOGUndoNamingConventionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoNamingConventionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoNamingConventionType.h deleted file mode 100644 index 822af2a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoNamingConventionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoNamingConventionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoNamingConventionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoNamingConventionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoNamingConventionType` struct. -/// -@interface DBTEAMLOGUndoNamingConventionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoNamingConventionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUndoNamingConventionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoNamingConventionType *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoNamingConventionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoNamingConventionType` object. -/// -+ (DBTEAMLOGUndoNamingConventionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h deleted file mode 100644 index 1b40d89f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoOrganizeFolderWithTidyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoOrganizeFolderWithTidyDetails` struct. -/// -/// Removed multi-file organize. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoOrganizeFolderWithTidyDetails` struct. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoOrganizeFolderWithTidyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` -/// object. -/// -+ (DBTEAMLOGUndoOrganizeFolderWithTidyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyType.h deleted file mode 100644 index 346a0749..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoOrganizeFolderWithTidyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoOrganizeFolderWithTidyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoOrganizeFolderWithTidyType` struct. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoOrganizeFolderWithTidyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUndoOrganizeFolderWithTidyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoOrganizeFolderWithTidyType *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoOrganizeFolderWithTidyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoOrganizeFolderWithTidyType` -/// object. -/// -+ (DBTEAMLOGUndoOrganizeFolderWithTidyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserLinkedAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserLinkedAppLogInfo.h deleted file mode 100644 index f3f0b9c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserLinkedAppLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGAppLogInfo.h" - -@class DBTEAMLOGUserLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserLinkedAppLogInfo` struct. -/// -/// User linked app -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserLinkedAppLogInfo : DBTEAMLOGAppLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserLinkedAppLogInfo` struct. -/// -@interface DBTEAMLOGUserLinkedAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserLinkedAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserLinkedAppLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLinkedAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserLinkedAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserLinkedAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLinkedAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserLinkedAppLogInfo` object. -/// -+ (DBTEAMLOGUserLinkedAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserLogInfo.h deleted file mode 100644 index cbe96424..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserLogInfo.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserLogInfo` struct. -/// -/// User's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserLogInfo : NSObject - -#pragma mark - Instance fields - -/// User unique ID. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -/// User display name. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// User email address. -@property (nonatomic, readonly, copy, nullable) NSString *email; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserLogInfo` struct. -/// -@interface DBTEAMLOGUserLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserLogInfo` object. -/// -+ (DBTEAMLOGUserLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserNameLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserNameLogInfo.h deleted file mode 100644 index 2439cdea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserNameLogInfo.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserNameLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserNameLogInfo` struct. -/// -/// User's name logged information -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserNameLogInfo : NSObject - -#pragma mark - Instance fields - -/// Given name. -@property (nonatomic, readonly, copy) NSString *givenName; - -/// Surname. -@property (nonatomic, readonly, copy) NSString *surname; - -/// Locale. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *locale; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param givenName Given name. -/// @param surname Surname. -/// @param locale Locale. Might be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGivenName:(NSString *)givenName surname:(NSString *)surname locale:(nullable NSString *)locale; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param givenName Given name. -/// @param surname Surname. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGivenName:(NSString *)givenName surname:(NSString *)surname; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserNameLogInfo` struct. -/// -@interface DBTEAMLOGUserNameLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserNameLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserNameLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserNameLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserNameLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserNameLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserNameLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserNameLogInfo` object. -/// -+ (DBTEAMLOGUserNameLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserOrTeamLinkedAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserOrTeamLinkedAppLogInfo.h deleted file mode 100644 index 8e3ea2f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserOrTeamLinkedAppLogInfo.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGAppLogInfo.h" - -@class DBTEAMLOGUserOrTeamLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserOrTeamLinkedAppLogInfo` struct. -/// -/// User or team linked app. Used when linked type is missing due to historical -/// data gap. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserOrTeamLinkedAppLogInfo : DBTEAMLOGAppLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserOrTeamLinkedAppLogInfo` struct. -/// -@interface DBTEAMLOGUserOrTeamLinkedAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserOrTeamLinkedAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserOrTeamLinkedAppLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserOrTeamLinkedAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserOrTeamLinkedAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserOrTeamLinkedAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserOrTeamLinkedAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserOrTeamLinkedAppLogInfo` -/// object. -/// -+ (DBTEAMLOGUserOrTeamLinkedAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsAddedDetails.h deleted file mode 100644 index a096cfe2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsAddedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsAddedDetails` struct. -/// -/// Tagged a file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsAddedDetails : NSObject - -#pragma mark - Instance fields - -/// values. -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values values. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsAddedDetails` struct. -/// -@interface DBTEAMLOGUserTagsAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsAddedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsAddedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsAddedDetails` object. -/// -+ (DBTEAMLOGUserTagsAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsAddedType.h deleted file mode 100644 index 131f79a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsAddedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsAddedType` struct. -/// -@interface DBTEAMLOGUserTagsAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsAddedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsAddedType` object. -/// -+ (DBTEAMLOGUserTagsAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsRemovedDetails.h deleted file mode 100644 index 747650f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsRemovedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsRemovedDetails` struct. -/// -/// Removed tags. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// values. -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values values. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsRemovedDetails` struct. -/// -@interface DBTEAMLOGUserTagsRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsRemovedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsRemovedDetails` object. -/// -+ (DBTEAMLOGUserTagsRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsRemovedType.h deleted file mode 100644 index 2460a219..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGUserTagsRemovedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsRemovedType` struct. -/// -@interface DBTEAMLOGUserTagsRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsRemovedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsRemovedType` object. -/// -+ (DBTEAMLOGUserTagsRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGViewerInfoPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGViewerInfoPolicyChangedDetails.h deleted file mode 100644 index 25c432b0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGViewerInfoPolicyChangedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPassPolicy; -@class DBTEAMLOGViewerInfoPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ViewerInfoPolicyChangedDetails` struct. -/// -/// Changed team policy for viewer info. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous Viewer Info policy. -@property (nonatomic, readonly) DBTEAMLOGPassPolicy *previousValue; - -/// New Viewer Info policy. -@property (nonatomic, readonly) DBTEAMLOGPassPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous Viewer Info policy. -/// @param dNewValue New Viewer Info policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGPassPolicy *)previousValue dNewValue:(DBTEAMLOGPassPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ViewerInfoPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGViewerInfoPolicyChangedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGViewerInfoPolicyChangedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGViewerInfoPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGViewerInfoPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGViewerInfoPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGViewerInfoPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGViewerInfoPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGViewerInfoPolicyChangedType.h deleted file mode 100644 index 64a1534e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGViewerInfoPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGViewerInfoPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ViewerInfoPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ViewerInfoPolicyChangedType` struct. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGViewerInfoPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGViewerInfoPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGViewerInfoPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGViewerInfoPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGViewerInfoPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGViewerInfoPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicy.h deleted file mode 100644 index cf992b45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWatermarkingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WatermarkingPolicy` union. -/// -/// Policy for controlling team access to watermarking feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWatermarkingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGWatermarkingPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGWatermarkingPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGWatermarkingPolicyTag) { - /// (no description). - DBTEAMLOGWatermarkingPolicyDisabled, - - /// (no description). - DBTEAMLOGWatermarkingPolicyEnabled, - - /// (no description). - DBTEAMLOGWatermarkingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGWatermarkingPolicy` union. -/// -@interface DBTEAMLOGWatermarkingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWatermarkingPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWatermarkingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWatermarkingPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGWatermarkingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWatermarkingPolicy` object. -/// -+ (DBTEAMLOGWatermarkingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicyChangedDetails.h deleted file mode 100644 index 5a245862..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWatermarkingPolicy; -@class DBTEAMLOGWatermarkingPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WatermarkingPolicyChangedDetails` struct. -/// -/// Changed watermarking policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New watermarking policy. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicy *dNewValue; - -/// Previous watermarking policy. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New watermarking policy. -/// @param previousValue Previous watermarking policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGWatermarkingPolicy *)dNewValue - previousValue:(DBTEAMLOGWatermarkingPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WatermarkingPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWatermarkingPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWatermarkingPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWatermarkingPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWatermarkingPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWatermarkingPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGWatermarkingPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicyChangedType.h deleted file mode 100644 index fbe4fb75..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWatermarkingPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWatermarkingPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WatermarkingPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WatermarkingPolicyChangedType` struct. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWatermarkingPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWatermarkingPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWatermarkingPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGWatermarkingPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWatermarkingPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGWatermarkingPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebDeviceSessionLogInfo.h deleted file mode 100644 index 01e2b536..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebDeviceSessionLogInfo.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMLOGWebDeviceSessionLogInfo; -@class DBTEAMLOGWebSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebDeviceSessionLogInfo` struct. -/// -/// Information on active web sessions -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Web session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionLogInfo *sessionInfo; - -/// Information on the hosting device. -@property (nonatomic, readonly, copy) NSString *userAgent; - -/// Information on the hosting operating system. -@property (nonatomic, readonly, copy) NSString *os; - -/// Information on the browser used for this web session. -@property (nonatomic, readonly, copy) NSString *browser; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Web session unique id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAgent:(NSString *)userAgent - os:(NSString *)os - browser:(NSString *)browser - ipAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGWebSessionLogInfo *)sessionInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAgent:(NSString *)userAgent os:(NSString *)os browser:(NSString *)browser; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGWebDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGWebDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebDeviceSessionLogInfo` object. -/// -+ (DBTEAMLOGWebDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionLogInfo.h deleted file mode 100644 index d68938c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGSessionLogInfo.h" - -@class DBTEAMLOGWebSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionLogInfo` struct. -/// -/// Web session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionLogInfo : DBTEAMLOGSessionLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionLogInfo` struct. -/// -@interface DBTEAMLOGWebSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebSessionLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebSessionLogInfo` object. -/// -+ (DBTEAMLOGWebSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h deleted file mode 100644 index 4619926f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeActiveSessionLimitDetails` struct. -/// -/// Changed limit on active sessions per member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails : NSObject - -#pragma mark - Instance fields - -/// Previous max number of concurrent active sessions policy. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New max number of concurrent active sessions policy. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous max number of concurrent active sessions -/// policy. -/// @param dNewValue New max number of concurrent active sessions policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeActiveSessionLimitDetails` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` object. -/// -+ (DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h deleted file mode 100644 index f805c8b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeActiveSessionLimitType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeActiveSessionLimitType` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeActiveSessionLimitType *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` object. -/// -+ (DBTEAMLOGWebSessionsChangeActiveSessionLimitType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h deleted file mode 100644 index da4a1090..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails; -@class DBTEAMLOGWebSessionsFixedLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeFixedLengthPolicyDetails` struct. -/// -/// Changed how long members can stay signed in to Dropbox.com. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New session length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsFixedLengthPolicy *dNewValue; - -/// Previous session length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsFixedLengthPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New session length policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous session length policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGWebSessionsFixedLengthPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGWebSessionsFixedLengthPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeFixedLengthPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` object. -/// -+ (DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h deleted file mode 100644 index 4dcaf3cc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeFixedLengthPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeFixedLengthPolicyType` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` object. -/// -+ (DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h deleted file mode 100644 index 3d1c5943..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails; -@class DBTEAMLOGWebSessionsIdleLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeIdleLengthPolicyDetails` struct. -/// -/// Changed how long team members can be idle while signed in to Dropbox.com. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New idle length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsIdleLengthPolicy *dNewValue; - -/// Previous idle length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsIdleLengthPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New idle length policy. Might be missing due to historical -/// data gap. -/// @param previousValue Previous idle length policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGWebSessionsIdleLengthPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGWebSessionsIdleLengthPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeIdleLengthPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` object. -/// -+ (DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h deleted file mode 100644 index c5cf47ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeIdleLengthPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeIdleLengthPolicyType` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` object. -/// -+ (DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsFixedLengthPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsFixedLengthPolicy.h deleted file mode 100644 index ea3b65d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsFixedLengthPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGWebSessionsFixedLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsFixedLengthPolicy` union. -/// -/// Web sessions fixed length policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsFixedLengthPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGWebSessionsFixedLengthPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGWebSessionsFixedLengthPolicyTag) { - /// Defined fixed session length. - DBTEAMLOGWebSessionsFixedLengthPolicyDefined, - - /// Undefined fixed session length. - DBTEAMLOGWebSessionsFixedLengthPolicyUndefined, - - /// (no description). - DBTEAMLOGWebSessionsFixedLengthPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsFixedLengthPolicyTag tag; - -/// Defined fixed session length. @note Ensure the `isDefined` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *defined; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "defined". -/// -/// Description of the "defined" tag state: Defined fixed session length. -/// -/// @param defined Defined fixed session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefined:(DBTEAMLOGDurationLogInfo *)defined; - -/// -/// Initializes union class with tag state of "undefined". -/// -/// Description of the "undefined" tag state: Undefined fixed session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndefined; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "defined". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `defined` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "defined". -/// -- (BOOL)isDefined; - -/// -/// Retrieves whether the union's current tag state has value "undefined". -/// -/// @return Whether the union's current tag state has value "undefined". -/// -- (BOOL)isUndefined; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// union. -/// -@interface DBTEAMLOGWebSessionsFixedLengthPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsFixedLengthPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsFixedLengthPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsFixedLengthPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsFixedLengthPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsFixedLengthPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// object. -/// -+ (DBTEAMLOGWebSessionsFixedLengthPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsIdleLengthPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsIdleLengthPolicy.h deleted file mode 100644 index 1905d9f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLOGWebSessionsIdleLengthPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGWebSessionsIdleLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsIdleLengthPolicy` union. -/// -/// Web sessions idle length policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsIdleLengthPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGWebSessionsIdleLengthPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGWebSessionsIdleLengthPolicyTag) { - /// Defined idle session length. - DBTEAMLOGWebSessionsIdleLengthPolicyDefined, - - /// Undefined idle session length. - DBTEAMLOGWebSessionsIdleLengthPolicyUndefined, - - /// (no description). - DBTEAMLOGWebSessionsIdleLengthPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsIdleLengthPolicyTag tag; - -/// Defined idle session length. @note Ensure the `isDefined` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *defined; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "defined". -/// -/// Description of the "defined" tag state: Defined idle session length. -/// -/// @param defined Defined idle session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefined:(DBTEAMLOGDurationLogInfo *)defined; - -/// -/// Initializes union class with tag state of "undefined". -/// -/// Description of the "undefined" tag state: Undefined idle session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndefined; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "defined". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `defined` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "defined". -/// -- (BOOL)isDefined; - -/// -/// Retrieves whether the union's current tag state has value "undefined". -/// -/// @return Whether the union's current tag state has value "undefined". -/// -- (BOOL)isUndefined; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// union. -/// -@interface DBTEAMLOGWebSessionsIdleLengthPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsIdleLengthPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsIdleLengthPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsIdleLengthPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsIdleLengthPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsIdleLengthPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// object. -/// -+ (DBTEAMLOGWebSessionsIdleLengthPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldHeldRevisionMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldHeldRevisionMetadata.h deleted file mode 100644 index 920030a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldHeldRevisionMetadata.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldHeldRevisionMetadata; -@class DBTEAMTeamMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldHeldRevisionMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldHeldRevisionMetadata : NSObject - -#pragma mark - Instance fields - -/// The held revision filename. -@property (nonatomic, readonly, copy) NSString *dNewFilename; - -/// The id of the held revision. -@property (nonatomic, readonly, copy) NSString *originalRevisionId; - -/// The original path of the held revision. -@property (nonatomic, readonly, copy) NSString *originalFilePath; - -/// The last time the file was modified on Dropbox. -@property (nonatomic, readonly) NSDate *serverModified; - -/// The member id of the revision's author. -@property (nonatomic, readonly, copy) NSString *authorMemberId; - -/// The member status of the revision's author. -@property (nonatomic, readonly) DBTEAMTeamMemberStatus *authorMemberStatus; - -/// The email address of the held revision author. -@property (nonatomic, readonly, copy) NSString *authorEmail; - -/// The type of the held revision's file. -@property (nonatomic, readonly, copy) NSString *fileType; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -/// A hash of the file content. This field can be used to verify data integrity. -/// For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewFilename The held revision filename. -/// @param originalRevisionId The id of the held revision. -/// @param originalFilePath The original path of the held revision. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param authorMemberId The member id of the revision's author. -/// @param authorMemberStatus The member status of the revision's author. -/// @param authorEmail The email address of the held revision author. -/// @param fileType The type of the held revision's file. -/// @param size The file size in bytes. -/// @param contentHash A hash of the file content. This field can be used to -/// verify data integrity. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewFilename:(NSString *)dNewFilename - originalRevisionId:(NSString *)originalRevisionId - originalFilePath:(NSString *)originalFilePath - serverModified:(NSDate *)serverModified - authorMemberId:(NSString *)authorMemberId - authorMemberStatus:(DBTEAMTeamMemberStatus *)authorMemberStatus - authorEmail:(NSString *)authorEmail - fileType:(NSString *)fileType - size:(NSNumber *)size - contentHash:(NSString *)contentHash; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldHeldRevisionMetadata` struct. -/// -@interface DBTEAMLegalHoldHeldRevisionMetadataSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldHeldRevisionMetadata` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldHeldRevisionMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldHeldRevisionMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldHeldRevisionMetadata *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldHeldRevisionMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldHeldRevisionMetadata` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldHeldRevisionMetadata` -/// object. -/// -+ (DBTEAMLegalHoldHeldRevisionMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldPolicy.h deleted file mode 100644 index 5c8cf4b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldPolicy; -@class DBTEAMLegalHoldStatus; -@class DBTEAMMembersInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldPolicy` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldPolicy : NSObject - -#pragma mark - Instance fields - -/// The legal hold id. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// A description of the legal hold policy. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// The time at which the legal hold was activated. -@property (nonatomic, readonly, nullable) NSDate *activationTime; - -/// Team members IDs and number of permanently deleted members under hold. -@property (nonatomic, readonly) DBTEAMMembersInfo *members; - -/// The current state of the hold. -@property (nonatomic, readonly) DBTEAMLegalHoldStatus *status; - -/// Start date of the legal hold policy. -@property (nonatomic, readonly) NSDate *startDate; - -/// End date of the legal hold policy. -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold id. -/// @param name Policy name. -/// @param members Team members IDs and number of permanently deleted members -/// under hold. -/// @param status The current state of the hold. -/// @param startDate Start date of the legal hold policy. -/// @param description_ A description of the legal hold policy. -/// @param activationTime The time at which the legal hold was activated. -/// @param endDate End date of the legal hold policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - members:(DBTEAMMembersInfo *)members - status:(DBTEAMLegalHoldStatus *)status - startDate:(NSDate *)startDate - description_:(nullable NSString *)description_ - activationTime:(nullable NSDate *)activationTime - endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The legal hold id. -/// @param name Policy name. -/// @param members Team members IDs and number of permanently deleted members -/// under hold. -/// @param status The current state of the hold. -/// @param startDate Start date of the legal hold policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - members:(DBTEAMMembersInfo *)members - status:(DBTEAMLegalHoldStatus *)status - startDate:(NSDate *)startDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldPolicy` struct. -/// -@interface DBTEAMLegalHoldPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldPolicy *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldPolicy` object. -/// -+ (DBTEAMLegalHoldPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldStatus.h deleted file mode 100644 index 003b5e06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldStatus.h +++ /dev/null @@ -1,214 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLegalHoldStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldStatusTag) { - /// The legal hold policy is active. - DBTEAMLegalHoldStatusActive, - - /// The legal hold policy was released. - DBTEAMLegalHoldStatusReleased, - - /// The legal hold policy is activating. - DBTEAMLegalHoldStatusActivating, - - /// The legal hold policy is updating. - DBTEAMLegalHoldStatusUpdating, - - /// The legal hold policy is exporting. - DBTEAMLegalHoldStatusExporting, - - /// The legal hold policy is releasing. - DBTEAMLegalHoldStatusReleasing, - - /// (no description). - DBTEAMLegalHoldStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: The legal hold policy is active. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "released". -/// -/// Description of the "released" tag state: The legal hold policy was released. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReleased; - -/// -/// Initializes union class with tag state of "activating". -/// -/// Description of the "activating" tag state: The legal hold policy is -/// activating. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActivating; - -/// -/// Initializes union class with tag state of "updating". -/// -/// Description of the "updating" tag state: The legal hold policy is updating. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdating; - -/// -/// Initializes union class with tag state of "exporting". -/// -/// Description of the "exporting" tag state: The legal hold policy is -/// exporting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExporting; - -/// -/// Initializes union class with tag state of "releasing". -/// -/// Description of the "releasing" tag state: The legal hold policy is -/// releasing. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReleasing; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "released". -/// -/// @return Whether the union's current tag state has value "released". -/// -- (BOOL)isReleased; - -/// -/// Retrieves whether the union's current tag state has value "activating". -/// -/// @return Whether the union's current tag state has value "activating". -/// -- (BOOL)isActivating; - -/// -/// Retrieves whether the union's current tag state has value "updating". -/// -/// @return Whether the union's current tag state has value "updating". -/// -- (BOOL)isUpdating; - -/// -/// Retrieves whether the union's current tag state has value "exporting". -/// -/// @return Whether the union's current tag state has value "exporting". -/// -- (BOOL)isExporting; - -/// -/// Retrieves whether the union's current tag state has value "releasing". -/// -/// @return Whether the union's current tag state has value "releasing". -/// -- (BOOL)isReleasing; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldStatus` union. -/// -@interface DBTEAMLegalHoldStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldStatus *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldStatus` object. -/// -+ (DBTEAMLegalHoldStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsError.h deleted file mode 100644 index d84a71eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsError.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMLegalHoldsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsError` union. -/// -@interface DBTEAMLegalHoldsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsError` object. -/// -+ (DBTEAMLegalHoldsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsGetPolicyArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsGetPolicyArg.h deleted file mode 100644 index 6d979154..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsGetPolicyArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsGetPolicyArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsGetPolicyArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsGetPolicyArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsGetPolicyArg` struct. -/// -@interface DBTEAMLegalHoldsGetPolicyArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsGetPolicyArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsGetPolicyArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsGetPolicyArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsGetPolicyArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsGetPolicyArg` object. -/// -+ (DBTEAMLegalHoldsGetPolicyArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsGetPolicyError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsGetPolicyError.h deleted file mode 100644 index 1819af0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsGetPolicyError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsGetPolicyError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsGetPolicyError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsGetPolicyError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsGetPolicyErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsGetPolicyError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsGetPolicyErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsGetPolicyErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsGetPolicyErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsGetPolicyErrorOther, - - /// Legal hold policy does not exist for `id_` in - /// `DBTEAMLegalHoldsGetPolicyArg`. - DBTEAMLegalHoldsGetPolicyErrorLegalHoldPolicyNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsGetPolicyErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "legal_hold_policy_not_found". -/// -/// Description of the "legal_hold_policy_not_found" tag state: Legal hold -/// policy does not exist for `id_` in `DBTEAMLegalHoldsGetPolicyArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPolicyNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -- (BOOL)isLegalHoldPolicyNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsGetPolicyError` union. -/// -@interface DBTEAMLegalHoldsGetPolicyErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsGetPolicyError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsGetPolicyError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsGetPolicyError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsGetPolicyError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsGetPolicyError` object. -/// -+ (DBTEAMLegalHoldsGetPolicyError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionResult.h deleted file mode 100644 index 5a294055..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionResult.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldHeldRevisionMetadata; -@class DBTEAMLegalHoldsListHeldRevisionResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionResult : NSObject - -#pragma mark - Instance fields - -/// List of file entries that under the hold. -@property (nonatomic, readonly) NSArray *entries; - -/// The cursor idicates where to continue reading file metadata entries for the -/// next API call. When there are no more entries, the cursor will return none. -/// Pass the cursor into /2/team/legal_holds/list_held_revisions/continue. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// True if there are more file entries that haven't been returned. You can -/// retrieve them with a call to /legal_holds/list_held_revisions_continue. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of file entries that under the hold. -/// @param hasMore True if there are more file entries that haven't been -/// returned. You can retrieve them with a call to -/// /legal_holds/list_held_revisions_continue. -/// @param cursor The cursor idicates where to continue reading file metadata -/// entries for the next API call. When there are no more entries, the cursor -/// will return none. Pass the cursor into -/// /2/team/legal_holds/list_held_revisions/continue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of file entries that under the hold. -/// @param hasMore True if there are more file entries that haven't been -/// returned. You can retrieve them with a call to -/// /legal_holds/list_held_revisions_continue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListHeldRevisionResult` struct. -/// -@interface DBTEAMLegalHoldsListHeldRevisionResultSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionResult` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListHeldRevisionResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionResult *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionResult` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListHeldRevisionResult` -/// object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsArg.h deleted file mode 100644 index 0143fece..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListHeldRevisionsArg` struct. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListHeldRevisionsArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListHeldRevisionsArg` -/// object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueArg.h deleted file mode 100644 index 5e91f526..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The cursor idicates where to continue reading file metadata entries for the -/// next API call. When there are no more entries, the cursor will return none. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// @param cursor The cursor idicates where to continue reading file metadata -/// entries for the next API call. When there are no more entries, the cursor -/// will return none. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListHeldRevisionsContinueArg` -/// struct. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsContinueArg` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsContinueArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueError.h deleted file mode 100644 index e214e260..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueError.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsListHeldRevisionsContinueErrorTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsListHeldRevisionsContinueErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsListHeldRevisionsContinueErrorUnknownLegalHoldError, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsListHeldRevisionsContinueErrorTransientError, - - /// Indicates that the cursor has been invalidated. Call - /// `legalHoldsListHeldRevisionsContinue` again with an empty cursor to - /// obtain a new cursor. - DBTEAMLegalHoldsListHeldRevisionsContinueErrorReset, - - /// (no description). - DBTEAMLegalHoldsListHeldRevisionsContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsListHeldRevisionsContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `legalHoldsListHeldRevisionsContinue` again with an empty -/// cursor to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` union. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsContinueError` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsContinueError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsError.h deleted file mode 100644 index b7974150..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListHeldRevisionsError.h +++ /dev/null @@ -1,209 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsListHeldRevisionsErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMLegalHoldsListHeldRevisionsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsListHeldRevisionsErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsListHeldRevisionsErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsListHeldRevisionsErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsListHeldRevisionsErrorOther, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsListHeldRevisionsErrorTransientError, - - /// The legal hold is not holding any revisions yet. - DBTEAMLegalHoldsListHeldRevisionsErrorLegalHoldStillEmpty, - - /// Trying to list revisions for an inactive legal hold. - DBTEAMLegalHoldsListHeldRevisionsErrorInactiveLegalHold, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsListHeldRevisionsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "legal_hold_still_empty". -/// -/// Description of the "legal_hold_still_empty" tag state: The legal hold is not -/// holding any revisions yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldStillEmpty; - -/// -/// Initializes union class with tag state of "inactive_legal_hold". -/// -/// Description of the "inactive_legal_hold" tag state: Trying to list revisions -/// for an inactive legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInactiveLegalHold; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_still_empty". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_still_empty". -/// -- (BOOL)isLegalHoldStillEmpty; - -/// -/// Retrieves whether the union's current tag state has value -/// "inactive_legal_hold". -/// -/// @return Whether the union's current tag state has value -/// "inactive_legal_hold". -/// -- (BOOL)isInactiveLegalHold; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsListHeldRevisionsError` -/// union. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListHeldRevisionsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListHeldRevisionsError` -/// object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesArg.h deleted file mode 100644 index 38865795..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListPoliciesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListPoliciesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListPoliciesArg : NSObject - -#pragma mark - Instance fields - -/// Whether to return holds that were released. -@property (nonatomic, readonly) NSNumber *includeReleased; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param includeReleased Whether to return holds that were released. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncludeReleased:(nullable NSNumber *)includeReleased; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListPoliciesArg` struct. -/// -@interface DBTEAMLegalHoldsListPoliciesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListPoliciesArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListPoliciesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListPoliciesArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListPoliciesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListPoliciesArg` object. -/// -+ (DBTEAMLegalHoldsListPoliciesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesError.h deleted file mode 100644 index d5fcce56..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesError.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListPoliciesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListPoliciesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListPoliciesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsListPoliciesErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsListPoliciesError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsListPoliciesErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsListPoliciesErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsListPoliciesErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsListPoliciesErrorOther, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsListPoliciesErrorTransientError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsListPoliciesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsListPoliciesError` union. -/// -@interface DBTEAMLegalHoldsListPoliciesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListPoliciesError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListPoliciesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListPoliciesError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListPoliciesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListPoliciesError` object. -/// -+ (DBTEAMLegalHoldsListPoliciesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesResult.h deleted file mode 100644 index fc54ba74..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsListPoliciesResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldPolicy; -@class DBTEAMLegalHoldsListPoliciesResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListPoliciesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListPoliciesResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *policies; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param policies (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPolicies:(NSArray *)policies; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListPoliciesResult` struct. -/// -@interface DBTEAMLegalHoldsListPoliciesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListPoliciesResult` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListPoliciesResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListPoliciesResult *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListPoliciesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesResult` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListPoliciesResult` object. -/// -+ (DBTEAMLegalHoldsListPoliciesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyCreateArg.h deleted file mode 100644 index e10367d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyCreateArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyCreateArg : NSObject - -#pragma mark - Instance fields - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// A description of the legal hold policy. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// List of team member IDs added to the hold. -@property (nonatomic, readonly) NSArray *members; - -/// start date of the legal hold policy. -@property (nonatomic, readonly, nullable) NSDate *startDate; - -/// end date of the legal hold policy. -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Policy name. -/// @param members List of team member IDs added to the hold. -/// @param description_ A description of the legal hold policy. -/// @param startDate start date of the legal hold policy. -/// @param endDate end date of the legal hold policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - members:(NSArray *)members - description_:(nullable NSString *)description_ - startDate:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name Policy name. -/// @param members List of team member IDs added to the hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name members:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsPolicyCreateArg` struct. -/// -@interface DBTEAMLegalHoldsPolicyCreateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyCreateArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyCreateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyCreateArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyCreateArg` object. -/// -+ (DBTEAMLegalHoldsPolicyCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyCreateError.h deleted file mode 100644 index 3ac3db0d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyCreateError.h +++ /dev/null @@ -1,315 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsPolicyCreateErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsPolicyCreateError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsPolicyCreateErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsPolicyCreateErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsPolicyCreateErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsPolicyCreateErrorOther, - - /// Start date must be earlier than end date. - DBTEAMLegalHoldsPolicyCreateErrorStartDateIsLaterThanEndDate, - - /// The users list must have at least one user. - DBTEAMLegalHoldsPolicyCreateErrorEmptyMembersList, - - /// Some members in the members list are not valid to be placed under legal - /// hold. - DBTEAMLegalHoldsPolicyCreateErrorInvalidMembers, - - /// You cannot add more than 5 users in a legal hold. - DBTEAMLegalHoldsPolicyCreateErrorNumberOfUsersOnHoldIsGreaterThanHoldLimitation, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsPolicyCreateErrorTransientError, - - /// The name provided is already in use by another legal hold. - DBTEAMLegalHoldsPolicyCreateErrorNameMustBeUnique, - - /// Team exceeded legal hold quota. - DBTEAMLegalHoldsPolicyCreateErrorTeamExceededLegalHoldQuota, - - /// The provided date is invalid. - DBTEAMLegalHoldsPolicyCreateErrorInvalidDate, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsPolicyCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "start_date_is_later_than_end_date". -/// -/// Description of the "start_date_is_later_than_end_date" tag state: Start date -/// must be earlier than end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDateIsLaterThanEndDate; - -/// -/// Initializes union class with tag state of "empty_members_list". -/// -/// Description of the "empty_members_list" tag state: The users list must have -/// at least one user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyMembersList; - -/// -/// Initializes union class with tag state of "invalid_members". -/// -/// Description of the "invalid_members" tag state: Some members in the members -/// list are not valid to be placed under legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMembers; - -/// -/// Initializes union class with tag state of -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// Description of the "number_of_users_on_hold_is_greater_than_hold_limitation" -/// tag state: You cannot add more than 5 users in a legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "name_must_be_unique". -/// -/// Description of the "name_must_be_unique" tag state: The name provided is -/// already in use by another legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNameMustBeUnique; - -/// -/// Initializes union class with tag state of "team_exceeded_legal_hold_quota". -/// -/// Description of the "team_exceeded_legal_hold_quota" tag state: Team exceeded -/// legal hold quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExceededLegalHoldQuota; - -/// -/// Initializes union class with tag state of "invalid_date". -/// -/// Description of the "invalid_date" tag state: The provided date is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDate; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "start_date_is_later_than_end_date". -/// -/// @return Whether the union's current tag state has value -/// "start_date_is_later_than_end_date". -/// -- (BOOL)isStartDateIsLaterThanEndDate; - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_members_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_members_list". -/// -- (BOOL)isEmptyMembersList; - -/// -/// Retrieves whether the union's current tag state has value "invalid_members". -/// -/// @return Whether the union's current tag state has value "invalid_members". -/// -- (BOOL)isInvalidMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// @return Whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -- (BOOL)isNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "name_must_be_unique". -/// -/// @return Whether the union's current tag state has value -/// "name_must_be_unique". -/// -- (BOOL)isNameMustBeUnique; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_exceeded_legal_hold_quota". -/// -/// @return Whether the union's current tag state has value -/// "team_exceeded_legal_hold_quota". -/// -- (BOOL)isTeamExceededLegalHoldQuota; - -/// -/// Retrieves whether the union's current tag state has value "invalid_date". -/// -/// @return Whether the union's current tag state has value "invalid_date". -/// -- (BOOL)isInvalidDate; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsPolicyCreateError` union. -/// -@interface DBTEAMLegalHoldsPolicyCreateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyCreateError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyCreateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyCreateError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyCreateError` object. -/// -+ (DBTEAMLegalHoldsPolicyCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyReleaseArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyReleaseArg.h deleted file mode 100644 index 5432636d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyReleaseArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyReleaseArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyReleaseArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyReleaseArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsPolicyReleaseArg` struct. -/// -@interface DBTEAMLegalHoldsPolicyReleaseArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyReleaseArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyReleaseArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyReleaseArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyReleaseArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyReleaseArg` object. -/// -+ (DBTEAMLegalHoldsPolicyReleaseArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyReleaseError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyReleaseError.h deleted file mode 100644 index 9dad71fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyReleaseError.h +++ /dev/null @@ -1,211 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyReleaseError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyReleaseError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyReleaseError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsPolicyReleaseErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMLegalHoldsPolicyReleaseError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsPolicyReleaseErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsPolicyReleaseErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsPolicyReleaseErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsPolicyReleaseErrorOther, - - /// Legal hold is currently performing another operation. - DBTEAMLegalHoldsPolicyReleaseErrorLegalHoldPerformingAnotherOperation, - - /// Legal hold is currently performing a release or is already released. - DBTEAMLegalHoldsPolicyReleaseErrorLegalHoldAlreadyReleasing, - - /// Legal hold policy does not exist for `id_` in - /// `DBTEAMLegalHoldsPolicyReleaseArg`. - DBTEAMLegalHoldsPolicyReleaseErrorLegalHoldPolicyNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsPolicyReleaseErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "legal_hold_performing_another_operation". -/// -/// Description of the "legal_hold_performing_another_operation" tag state: -/// Legal hold is currently performing another operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPerformingAnotherOperation; - -/// -/// Initializes union class with tag state of "legal_hold_already_releasing". -/// -/// Description of the "legal_hold_already_releasing" tag state: Legal hold is -/// currently performing a release or is already released. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldAlreadyReleasing; - -/// -/// Initializes union class with tag state of "legal_hold_policy_not_found". -/// -/// Description of the "legal_hold_policy_not_found" tag state: Legal hold -/// policy does not exist for `id_` in `DBTEAMLegalHoldsPolicyReleaseArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPolicyNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -- (BOOL)isLegalHoldPerformingAnotherOperation; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_already_releasing". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_already_releasing". -/// -- (BOOL)isLegalHoldAlreadyReleasing; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -- (BOOL)isLegalHoldPolicyNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsPolicyReleaseError` union. -/// -@interface DBTEAMLegalHoldsPolicyReleaseErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyReleaseError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyReleaseError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyReleaseError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyReleaseError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyReleaseError` object. -/// -+ (DBTEAMLegalHoldsPolicyReleaseError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyUpdateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyUpdateArg.h deleted file mode 100644 index 5f0bff01..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyUpdateArg.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyUpdateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyUpdateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyUpdateArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Policy new name. -@property (nonatomic, readonly, copy, nullable) NSString *name; - -/// Policy new description. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// List of team member IDs to apply the policy on. -@property (nonatomic, readonly, nullable) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// @param name Policy new name. -/// @param description_ Policy new description. -/// @param members List of team member IDs to apply the policy on. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - members:(nullable NSArray *)members; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsPolicyUpdateArg` struct. -/// -@interface DBTEAMLegalHoldsPolicyUpdateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyUpdateArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyUpdateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyUpdateArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyUpdateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyUpdateArg` object. -/// -+ (DBTEAMLegalHoldsPolicyUpdateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyUpdateError.h deleted file mode 100644 index 1a8bf55e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMLegalHoldsPolicyUpdateError.h +++ /dev/null @@ -1,319 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsPolicyUpdateErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsPolicyUpdateError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsPolicyUpdateErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsPolicyUpdateErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsPolicyUpdateErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsPolicyUpdateErrorOther, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsPolicyUpdateErrorTransientError, - - /// Trying to release an inactive legal hold. - DBTEAMLegalHoldsPolicyUpdateErrorInactiveLegalHold, - - /// Legal hold is currently performing another operation. - DBTEAMLegalHoldsPolicyUpdateErrorLegalHoldPerformingAnotherOperation, - - /// Some members in the members list are not valid to be placed under legal - /// hold. - DBTEAMLegalHoldsPolicyUpdateErrorInvalidMembers, - - /// You cannot add more than 5 users in a legal hold. - DBTEAMLegalHoldsPolicyUpdateErrorNumberOfUsersOnHoldIsGreaterThanHoldLimitation, - - /// The users list must have at least one user. - DBTEAMLegalHoldsPolicyUpdateErrorEmptyMembersList, - - /// The name provided is already in use by another legal hold. - DBTEAMLegalHoldsPolicyUpdateErrorNameMustBeUnique, - - /// Legal hold policy does not exist for `id_` in - /// `DBTEAMLegalHoldsPolicyUpdateArg`. - DBTEAMLegalHoldsPolicyUpdateErrorLegalHoldPolicyNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsPolicyUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "inactive_legal_hold". -/// -/// Description of the "inactive_legal_hold" tag state: Trying to release an -/// inactive legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInactiveLegalHold; - -/// -/// Initializes union class with tag state of -/// "legal_hold_performing_another_operation". -/// -/// Description of the "legal_hold_performing_another_operation" tag state: -/// Legal hold is currently performing another operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPerformingAnotherOperation; - -/// -/// Initializes union class with tag state of "invalid_members". -/// -/// Description of the "invalid_members" tag state: Some members in the members -/// list are not valid to be placed under legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMembers; - -/// -/// Initializes union class with tag state of -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// Description of the "number_of_users_on_hold_is_greater_than_hold_limitation" -/// tag state: You cannot add more than 5 users in a legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Initializes union class with tag state of "empty_members_list". -/// -/// Description of the "empty_members_list" tag state: The users list must have -/// at least one user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyMembersList; - -/// -/// Initializes union class with tag state of "name_must_be_unique". -/// -/// Description of the "name_must_be_unique" tag state: The name provided is -/// already in use by another legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNameMustBeUnique; - -/// -/// Initializes union class with tag state of "legal_hold_policy_not_found". -/// -/// Description of the "legal_hold_policy_not_found" tag state: Legal hold -/// policy does not exist for `id_` in `DBTEAMLegalHoldsPolicyUpdateArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPolicyNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "inactive_legal_hold". -/// -/// @return Whether the union's current tag state has value -/// "inactive_legal_hold". -/// -- (BOOL)isInactiveLegalHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -- (BOOL)isLegalHoldPerformingAnotherOperation; - -/// -/// Retrieves whether the union's current tag state has value "invalid_members". -/// -/// @return Whether the union's current tag state has value "invalid_members". -/// -- (BOOL)isInvalidMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// @return Whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -- (BOOL)isNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_members_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_members_list". -/// -- (BOOL)isEmptyMembersList; - -/// -/// Retrieves whether the union's current tag state has value -/// "name_must_be_unique". -/// -/// @return Whether the union's current tag state has value -/// "name_must_be_unique". -/// -- (BOOL)isNameMustBeUnique; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -- (BOOL)isLegalHoldPolicyNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsPolicyUpdateError` union. -/// -@interface DBTEAMLegalHoldsPolicyUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyUpdateError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyUpdateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyUpdateError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyUpdateError` object. -/// -+ (DBTEAMLegalHoldsPolicyUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsArg.h deleted file mode 100644 index d4da0816..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberAppsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberAppsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberAppsArg : NSObject - -#pragma mark - Instance fields - -/// The team member id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The team member id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberAppsArg` struct. -/// -@interface DBTEAMListMemberAppsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberAppsArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberAppsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberAppsArg *)instance; - -/// -/// Deserializes `DBTEAMListMemberAppsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberAppsArg` object. -/// -+ (DBTEAMListMemberAppsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsError.h deleted file mode 100644 index 2a3730e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberAppsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberAppsError` union. -/// -/// Error returned by `linkedAppsListMemberLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberAppsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMemberAppsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMemberAppsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMemberAppsErrorTag) { - /// Member not found. - DBTEAMListMemberAppsErrorMemberNotFound, - - /// (no description). - DBTEAMListMemberAppsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMemberAppsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMemberAppsError` union. -/// -@interface DBTEAMListMemberAppsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberAppsError` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberAppsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberAppsError *)instance; - -/// -/// Deserializes `DBTEAMListMemberAppsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsError` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberAppsError` object. -/// -+ (DBTEAMListMemberAppsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsResult.h deleted file mode 100644 index 75421a51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberAppsResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMApiApp; -@class DBTEAMListMemberAppsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberAppsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberAppsResult : NSObject - -#pragma mark - Instance fields - -/// List of third party applications linked by this team member. -@property (nonatomic, readonly) NSArray *linkedApiApps; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkedApiApps List of third party applications linked by this team -/// member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkedApiApps:(NSArray *)linkedApiApps; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberAppsResult` struct. -/// -@interface DBTEAMListMemberAppsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberAppsResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberAppsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberAppsResult *)instance; - -/// -/// Deserializes `DBTEAMListMemberAppsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberAppsResult` object. -/// -+ (DBTEAMListMemberAppsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesArg.h deleted file mode 100644 index 43da33d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesArg.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberDevicesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberDevicesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberDevicesArg : NSObject - -#pragma mark - Instance fields - -/// The team's member id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// Whether to list web sessions of the team's member. -@property (nonatomic, readonly) NSNumber *includeWebSessions; - -/// Whether to list linked desktop devices of the team's member. -@property (nonatomic, readonly) NSNumber *includeDesktopClients; - -/// Whether to list linked mobile devices of the team's member. -@property (nonatomic, readonly) NSNumber *includeMobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The team's member id. -/// @param includeWebSessions Whether to list web sessions of the team's member. -/// @param includeDesktopClients Whether to list linked desktop devices of the -/// team's member. -/// @param includeMobileClients Whether to list linked mobile devices of the -/// team's member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId The team's member id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberDevicesArg` struct. -/// -@interface DBTEAMListMemberDevicesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberDevicesArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberDevicesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberDevicesArg *)instance; - -/// -/// Deserializes `DBTEAMListMemberDevicesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberDevicesArg` object. -/// -+ (DBTEAMListMemberDevicesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesError.h deleted file mode 100644 index ac9fea06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberDevicesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberDevicesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberDevicesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMemberDevicesErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMemberDevicesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMemberDevicesErrorTag) { - /// Member not found. - DBTEAMListMemberDevicesErrorMemberNotFound, - - /// (no description). - DBTEAMListMemberDevicesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMemberDevicesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMemberDevicesError` union. -/// -@interface DBTEAMListMemberDevicesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberDevicesError` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberDevicesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberDevicesError *)instance; - -/// -/// Deserializes `DBTEAMListMemberDevicesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesError` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberDevicesError` object. -/// -+ (DBTEAMListMemberDevicesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesResult.h deleted file mode 100644 index e7f617b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMemberDevicesResult.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMActiveWebSession; -@class DBTEAMDesktopClientSession; -@class DBTEAMListMemberDevicesResult; -@class DBTEAMMobileClientSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberDevicesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberDevicesResult : NSObject - -#pragma mark - Instance fields - -/// List of web sessions made by this team member. -@property (nonatomic, readonly, nullable) NSArray *activeWebSessions; - -/// List of desktop clients used by this team member. -@property (nonatomic, readonly, nullable) NSArray *desktopClientSessions; - -/// List of mobile client used by this team member. -@property (nonatomic, readonly, nullable) NSArray *mobileClientSessions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param activeWebSessions List of web sessions made by this team member. -/// @param desktopClientSessions List of desktop clients used by this team -/// member. -/// @param mobileClientSessions List of mobile client used by this team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActiveWebSessions:(nullable NSArray *)activeWebSessions - desktopClientSessions:(nullable NSArray *)desktopClientSessions - mobileClientSessions:(nullable NSArray *)mobileClientSessions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberDevicesResult` struct. -/// -@interface DBTEAMListMemberDevicesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberDevicesResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberDevicesResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberDevicesResult *)instance; - -/// -/// Deserializes `DBTEAMListMemberDevicesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberDevicesResult` object. -/// -+ (DBTEAMListMemberDevicesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsArg.h deleted file mode 100644 index 3a31c000..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersAppsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersAppsArg` struct. -/// -/// Arguments for `linkedAppsListMembersLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersAppsArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `linkedAppsListMembersLinkedApps` the cursor -/// shouldn't be passed. Then, if the result of the call includes a cursor, the -/// following requests should include the received cursors in order to receive -/// the next sub list of the team applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `linkedAppsListMembersLinkedApps` the -/// cursor shouldn't be passed. Then, if the result of the call includes a -/// cursor, the following requests should include the received cursors in order -/// to receive the next sub list of the team applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersAppsArg` struct. -/// -@interface DBTEAMListMembersAppsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersAppsArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersAppsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersAppsArg *)instance; - -/// -/// Deserializes `DBTEAMListMembersAppsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersAppsArg` object. -/// -+ (DBTEAMListMembersAppsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsError.h deleted file mode 100644 index 9798c3c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersAppsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersAppsError` union. -/// -/// Error returned by `linkedAppsListMembersLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersAppsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMembersAppsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMembersAppsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMembersAppsErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `linkedAppsListMembersLinkedApps` again with an empty cursor to obtain a - /// new cursor. - DBTEAMListMembersAppsErrorReset, - - /// (no description). - DBTEAMListMembersAppsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMembersAppsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `linkedAppsListMembersLinkedApps` again with an empty -/// cursor to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMembersAppsError` union. -/// -@interface DBTEAMListMembersAppsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersAppsError` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersAppsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersAppsError *)instance; - -/// -/// Deserializes `DBTEAMListMembersAppsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsError` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersAppsError` object. -/// -+ (DBTEAMListMembersAppsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsResult.h deleted file mode 100644 index c427945a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersAppsResult.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersAppsResult; -@class DBTEAMMemberLinkedApps; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersAppsResult` struct. -/// -/// Information returned by `linkedAppsListMembersLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersAppsResult : NSObject - -#pragma mark - Instance fields - -/// The linked applications of each member of the team. -@property (nonatomic, readonly) NSArray *apps; - -/// If true, then there are more apps available. Pass the cursor to -/// `linkedAppsListMembersLinkedApps` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `linkedAppsListMembersLinkedApps` to receive the next -/// sub list of team's applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListMembersLinkedApps` to retrieve the rest. -/// @param cursor Pass the cursor into `linkedAppsListMembersLinkedApps` to -/// receive the next sub list of team's applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListMembersLinkedApps` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersAppsResult` struct. -/// -@interface DBTEAMListMembersAppsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersAppsResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersAppsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersAppsResult *)instance; - -/// -/// Deserializes `DBTEAMListMembersAppsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersAppsResult` object. -/// -+ (DBTEAMListMembersAppsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesArg.h deleted file mode 100644 index e9f9f40f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersDevicesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersDevicesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersDevicesArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `devicesListMembersDevices` the cursor shouldn't be -/// passed. Then, if the result of the call includes a cursor, the following -/// requests should include the received cursors in order to receive the next -/// sub list of team devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// Whether to list web sessions of the team members. -@property (nonatomic, readonly) NSNumber *includeWebSessions; - -/// Whether to list desktop clients of the team members. -@property (nonatomic, readonly) NSNumber *includeDesktopClients; - -/// Whether to list mobile clients of the team members. -@property (nonatomic, readonly) NSNumber *includeMobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `devicesListMembersDevices` the -/// cursor shouldn't be passed. Then, if the result of the call includes a -/// cursor, the following requests should include the received cursors in order -/// to receive the next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team -/// members. -/// @param includeMobileClients Whether to list mobile clients of the team -/// members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersDevicesArg` struct. -/// -@interface DBTEAMListMembersDevicesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersDevicesArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersDevicesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersDevicesArg *)instance; - -/// -/// Deserializes `DBTEAMListMembersDevicesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersDevicesArg` object. -/// -+ (DBTEAMListMembersDevicesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesError.h deleted file mode 100644 index a79e0903..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesError.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersDevicesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersDevicesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersDevicesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMembersDevicesErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMembersDevicesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMembersDevicesErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `devicesListMembersDevices` again with an empty cursor to obtain a new - /// cursor. - DBTEAMListMembersDevicesErrorReset, - - /// (no description). - DBTEAMListMembersDevicesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMembersDevicesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `devicesListMembersDevices` again with an empty cursor to -/// obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMembersDevicesError` union. -/// -@interface DBTEAMListMembersDevicesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersDevicesError` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersDevicesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersDevicesError *)instance; - -/// -/// Deserializes `DBTEAMListMembersDevicesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesError` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersDevicesError` object. -/// -+ (DBTEAMListMembersDevicesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesResult.h deleted file mode 100644 index 5977b407..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListMembersDevicesResult.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersDevicesResult; -@class DBTEAMMemberDevices; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersDevicesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersDevicesResult : NSObject - -#pragma mark - Instance fields - -/// The devices of each member of the team. -@property (nonatomic, readonly) NSArray *devices; - -/// If true, then there are more devices available. Pass the cursor to -/// `devicesListMembersDevices` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `devicesListMembersDevices` to receive the next sub -/// list of team's devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListMembersDevices` to retrieve the rest. -/// @param cursor Pass the cursor into `devicesListMembersDevices` to receive -/// the next sub list of team's devices. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListMembersDevices` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersDevicesResult` struct. -/// -@interface DBTEAMListMembersDevicesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersDevicesResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersDevicesResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersDevicesResult *)instance; - -/// -/// Deserializes `DBTEAMListMembersDevicesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersDevicesResult` object. -/// -+ (DBTEAMListMembersDevicesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsArg.h deleted file mode 100644 index 93182273..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamAppsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamAppsArg` struct. -/// -/// Arguments for `linkedAppsListTeamLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamAppsArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `linkedAppsListTeamLinkedApps` the cursor shouldn't -/// be passed. Then, if the result of the call includes a cursor, the following -/// requests should include the received cursors in order to receive the next -/// sub list of the team applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `linkedAppsListTeamLinkedApps` the -/// cursor shouldn't be passed. Then, if the result of the call includes a -/// cursor, the following requests should include the received cursors in order -/// to receive the next sub list of the team applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamAppsArg` struct. -/// -@interface DBTEAMListTeamAppsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamAppsArg` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamAppsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamAppsArg *)instance; - -/// -/// Deserializes `DBTEAMListTeamAppsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsArg` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamAppsArg` object. -/// -+ (DBTEAMListTeamAppsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsError.h deleted file mode 100644 index a61592f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamAppsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamAppsError` union. -/// -/// Error returned by `linkedAppsListTeamLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamAppsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListTeamAppsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListTeamAppsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListTeamAppsErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `linkedAppsListTeamLinkedApps` again with an empty cursor to obtain a - /// new cursor. - DBTEAMListTeamAppsErrorReset, - - /// (no description). - DBTEAMListTeamAppsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListTeamAppsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `linkedAppsListTeamLinkedApps` again with an empty cursor -/// to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListTeamAppsError` union. -/// -@interface DBTEAMListTeamAppsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamAppsError` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamAppsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamAppsError *)instance; - -/// -/// Deserializes `DBTEAMListTeamAppsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsError` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamAppsError` object. -/// -+ (DBTEAMListTeamAppsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsResult.h deleted file mode 100644 index 1da84780..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamAppsResult.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamAppsResult; -@class DBTEAMMemberLinkedApps; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamAppsResult` struct. -/// -/// Information returned by `linkedAppsListTeamLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamAppsResult : NSObject - -#pragma mark - Instance fields - -/// The linked applications of each member of the team. -@property (nonatomic, readonly) NSArray *apps; - -/// If true, then there are more apps available. Pass the cursor to -/// `linkedAppsListTeamLinkedApps` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `linkedAppsListTeamLinkedApps` to receive the next sub -/// list of team's applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListTeamLinkedApps` to retrieve the rest. -/// @param cursor Pass the cursor into `linkedAppsListTeamLinkedApps` to receive -/// the next sub list of team's applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListTeamLinkedApps` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamAppsResult` struct. -/// -@interface DBTEAMListTeamAppsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamAppsResult` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamAppsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamAppsResult *)instance; - -/// -/// Deserializes `DBTEAMListTeamAppsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsResult` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamAppsResult` object. -/// -+ (DBTEAMListTeamAppsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesArg.h deleted file mode 100644 index 6bc5643e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamDevicesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamDevicesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamDevicesArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `devicesListTeamDevices` the cursor shouldn't be -/// passed. Then, if the result of the call includes a cursor, the following -/// requests should include the received cursors in order to receive the next -/// sub list of team devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// Whether to list web sessions of the team members. -@property (nonatomic, readonly) NSNumber *includeWebSessions; - -/// Whether to list desktop clients of the team members. -@property (nonatomic, readonly) NSNumber *includeDesktopClients; - -/// Whether to list mobile clients of the team members. -@property (nonatomic, readonly) NSNumber *includeMobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `devicesListTeamDevices` the cursor -/// shouldn't be passed. Then, if the result of the call includes a cursor, the -/// following requests should include the received cursors in order to receive -/// the next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team -/// members. -/// @param includeMobileClients Whether to list mobile clients of the team -/// members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamDevicesArg` struct. -/// -@interface DBTEAMListTeamDevicesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamDevicesArg` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamDevicesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamDevicesArg *)instance; - -/// -/// Deserializes `DBTEAMListTeamDevicesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesArg` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamDevicesArg` object. -/// -+ (DBTEAMListTeamDevicesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesError.h deleted file mode 100644 index 3d721a51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesError.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamDevicesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamDevicesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamDevicesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListTeamDevicesErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListTeamDevicesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListTeamDevicesErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `devicesListTeamDevices` again with an empty cursor to obtain a new - /// cursor. - DBTEAMListTeamDevicesErrorReset, - - /// (no description). - DBTEAMListTeamDevicesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListTeamDevicesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `devicesListTeamDevices` again with an empty cursor to -/// obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListTeamDevicesError` union. -/// -@interface DBTEAMListTeamDevicesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamDevicesError` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamDevicesError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamDevicesError *)instance; - -/// -/// Deserializes `DBTEAMListTeamDevicesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesError` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamDevicesError` object. -/// -+ (DBTEAMListTeamDevicesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesResult.h deleted file mode 100644 index 6a2abd73..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMListTeamDevicesResult.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamDevicesResult; -@class DBTEAMMemberDevices; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamDevicesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamDevicesResult : NSObject - -#pragma mark - Instance fields - -/// The devices of each member of the team. -@property (nonatomic, readonly) NSArray *devices; - -/// If true, then there are more devices available. Pass the cursor to -/// `devicesListTeamDevices` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `devicesListTeamDevices` to receive the next sub list -/// of team's devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListTeamDevices` to retrieve the rest. -/// @param cursor Pass the cursor into `devicesListTeamDevices` to receive the -/// next sub list of team's devices. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListTeamDevices` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamDevicesResult` struct. -/// -@interface DBTEAMListTeamDevicesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamDevicesResult` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamDevicesResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamDevicesResult *)instance; - -/// -/// Deserializes `DBTEAMListTeamDevicesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesResult` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamDevicesResult` object. -/// -+ (DBTEAMListTeamDevicesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAccess.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAccess.h deleted file mode 100644 index 89a337bf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAccess.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupAccessType; -@class DBTEAMMemberAccess; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAccess` struct. -/// -/// Specify access type a member should have when joined to a group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAccess : NSObject - -#pragma mark - Instance fields - -/// Identity of a user. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// Access type. -@property (nonatomic, readonly) DBTEAMGroupAccessType *accessType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of a user. -/// @param accessType Access type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user accessType:(DBTEAMGroupAccessType *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAccess` struct. -/// -@interface DBTEAMMemberAccessSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAccess` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAccess` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAccess` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAccess *)instance; - -/// -/// Deserializes `DBTEAMMemberAccess` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAccess` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAccess` object. -/// -+ (DBTEAMMemberAccess *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddArg.h deleted file mode 100644 index 1f9c5395..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddArg.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMemberAddArgBase.h" - -@class DBTEAMAdminTier; -@class DBTEAMMemberAddArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddArg : DBTEAMMemberAddArgBase - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMAdminTier *role; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberEmail (no description). -/// @param memberGivenName Member's first name. -/// @param memberSurname Member's last name. -/// @param memberExternalId External ID for member. -/// @param memberPersistentId Persistent ID for member. This field is only -/// available to teams using persistent ID SAML configuration. -/// @param sendWelcomeEmail Whether to send a welcome email to the member. If -/// send_welcome_email is false, no email invitation will be sent to the user. -/// This may be useful for apps using single sign-on (SSO) flows for onboarding -/// that want to handle announcements themselves. -/// @param isDirectoryRestricted Whether a user is directory restricted. -/// @param role (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail - memberGivenName:(nullable NSString *)memberGivenName - memberSurname:(nullable NSString *)memberSurname - memberExternalId:(nullable NSString *)memberExternalId - memberPersistentId:(nullable NSString *)memberPersistentId - sendWelcomeEmail:(nullable NSNumber *)sendWelcomeEmail - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - role:(nullable DBTEAMAdminTier *)role; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param memberEmail (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddArg` struct. -/// -@interface DBTEAMMemberAddArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddArg` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddArg *)instance; - -/// -/// Deserializes `DBTEAMMemberAddArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArg` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddArg` object. -/// -+ (DBTEAMMemberAddArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddArgBase.h deleted file mode 100644 index 05f65c27..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddArgBase.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddArgBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddArgBase : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *memberEmail; - -/// Member's first name. -@property (nonatomic, readonly, copy, nullable) NSString *memberGivenName; - -/// Member's last name. -@property (nonatomic, readonly, copy, nullable) NSString *memberSurname; - -/// External ID for member. -@property (nonatomic, readonly, copy, nullable) NSString *memberExternalId; - -/// Persistent ID for member. This field is only available to teams using -/// persistent ID SAML configuration. -@property (nonatomic, readonly, copy, nullable) NSString *memberPersistentId; - -/// Whether to send a welcome email to the member. If send_welcome_email is -/// false, no email invitation will be sent to the user. This may be useful for -/// apps using single sign-on (SSO) flows for onboarding that want to handle -/// announcements themselves. -@property (nonatomic, readonly) NSNumber *sendWelcomeEmail; - -/// Whether a user is directory restricted. -@property (nonatomic, readonly, nullable) NSNumber *isDirectoryRestricted; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberEmail (no description). -/// @param memberGivenName Member's first name. -/// @param memberSurname Member's last name. -/// @param memberExternalId External ID for member. -/// @param memberPersistentId Persistent ID for member. This field is only -/// available to teams using persistent ID SAML configuration. -/// @param sendWelcomeEmail Whether to send a welcome email to the member. If -/// send_welcome_email is false, no email invitation will be sent to the user. -/// This may be useful for apps using single sign-on (SSO) flows for onboarding -/// that want to handle announcements themselves. -/// @param isDirectoryRestricted Whether a user is directory restricted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail - memberGivenName:(nullable NSString *)memberGivenName - memberSurname:(nullable NSString *)memberSurname - memberExternalId:(nullable NSString *)memberExternalId - memberPersistentId:(nullable NSString *)memberPersistentId - sendWelcomeEmail:(nullable NSNumber *)sendWelcomeEmail - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param memberEmail (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddArgBase` struct. -/// -@interface DBTEAMMemberAddArgBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddArgBase` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddArgBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddArgBase *)instance; - -/// -/// Deserializes `DBTEAMMemberAddArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArgBase` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddArgBase` object. -/// -+ (DBTEAMMemberAddArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddResult.h deleted file mode 100644 index c3ece36c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddResult.h +++ /dev/null @@ -1,463 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResult; -@class DBTEAMTeamMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddResult` union. -/// -/// Describes the result of attempting to add a single user to the team. -/// 'success' is the only value indicating that a user was indeed added to the -/// team - the other values explain the type of failure that occurred, and -/// include the email of the user for which the operation has failed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberAddResultTag` enum type represents the possible tag states -/// with which the `DBTEAMMemberAddResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberAddResultTag) { - /// Team is already full. The organization has no available licenses. - DBTEAMMemberAddResultTeamLicenseLimit, - - /// Team is already full. The free team member limit has been reached. - DBTEAMMemberAddResultFreeTeamMemberLimitReached, - - /// User is already on this team. The provided email address is associated - /// with a user who is already a member of (including in recoverable state) - /// or invited to the team. - DBTEAMMemberAddResultUserAlreadyOnTeam, - - /// User is already on another team. The provided email address is - /// associated with a user that is already a member or invited to another - /// team. - DBTEAMMemberAddResultUserOnAnotherTeam, - - /// User is already paired. - DBTEAMMemberAddResultUserAlreadyPaired, - - /// User migration has failed. - DBTEAMMemberAddResultUserMigrationFailed, - - /// A user with the given external member ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultDuplicateExternalMemberId, - - /// A user with the given persistent ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultDuplicateMemberPersistentId, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMemberAddResultPersistentIdDisabled, - - /// User creation has failed. - DBTEAMMemberAddResultUserCreationFailed, - - /// Describes a user that was successfully added to the team. - DBTEAMMemberAddResultSuccess, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberAddResultTag tag; - -/// Team is already full. The organization has no available licenses. @note -/// Ensure the `isTeamLicenseLimit` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamLicenseLimit; - -/// Team is already full. The free team member limit has been reached. @note -/// Ensure the `isFreeTeamMemberLimitReached` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *freeTeamMemberLimitReached; - -/// User is already on this team. The provided email address is associated with -/// a user who is already a member of (including in recoverable state) or -/// invited to the team. @note Ensure the `isUserAlreadyOnTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyOnTeam; - -/// User is already on another team. The provided email address is associated -/// with a user that is already a member or invited to another team. @note -/// Ensure the `isUserOnAnotherTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userOnAnotherTeam; - -/// User is already paired. @note Ensure the `isUserAlreadyPaired` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyPaired; - -/// User migration has failed. @note Ensure the `isUserMigrationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userMigrationFailed; - -/// A user with the given external member ID already exists on the team -/// (including in recoverable state). @note Ensure the -/// `isDuplicateExternalMemberId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateExternalMemberId; - -/// A user with the given persistent ID already exists on the team (including in -/// recoverable state). @note Ensure the `isDuplicateMemberPersistentId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateMemberPersistentId; - -/// Persistent ID is only available to teams with persistent ID SAML -/// configuration. Please contact Dropbox for more information. @note Ensure the -/// `isPersistentIdDisabled` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *persistentIdDisabled; - -/// User creation has failed. @note Ensure the `isUserCreationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userCreationFailed; - -/// Describes a user that was successfully added to the team. @note Ensure the -/// `isSuccess` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfo *success; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is already full. The -/// organization has no available licenses. -/// -/// @param teamLicenseLimit Team is already full. The organization has no -/// available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit:(NSString *)teamLicenseLimit; - -/// -/// Initializes union class with tag state of "free_team_member_limit_reached". -/// -/// Description of the "free_team_member_limit_reached" tag state: Team is -/// already full. The free team member limit has been reached. -/// -/// @param freeTeamMemberLimitReached Team is already full. The free team member -/// limit has been reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFreeTeamMemberLimitReached:(NSString *)freeTeamMemberLimitReached; - -/// -/// Initializes union class with tag state of "user_already_on_team". -/// -/// Description of the "user_already_on_team" tag state: User is already on this -/// team. The provided email address is associated with a user who is already a -/// member of (including in recoverable state) or invited to the team. -/// -/// @param userAlreadyOnTeam User is already on this team. The provided email -/// address is associated with a user who is already a member of (including in -/// recoverable state) or invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyOnTeam:(NSString *)userAlreadyOnTeam; - -/// -/// Initializes union class with tag state of "user_on_another_team". -/// -/// Description of the "user_on_another_team" tag state: User is already on -/// another team. The provided email address is associated with a user that is -/// already a member or invited to another team. -/// -/// @param userOnAnotherTeam User is already on another team. The provided email -/// address is associated with a user that is already a member or invited to -/// another team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserOnAnotherTeam:(NSString *)userOnAnotherTeam; - -/// -/// Initializes union class with tag state of "user_already_paired". -/// -/// Description of the "user_already_paired" tag state: User is already paired. -/// -/// @param userAlreadyPaired User is already paired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyPaired:(NSString *)userAlreadyPaired; - -/// -/// Initializes union class with tag state of "user_migration_failed". -/// -/// Description of the "user_migration_failed" tag state: User migration has -/// failed. -/// -/// @param userMigrationFailed User migration has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMigrationFailed:(NSString *)userMigrationFailed; - -/// -/// Initializes union class with tag state of "duplicate_external_member_id". -/// -/// Description of the "duplicate_external_member_id" tag state: A user with the -/// given external member ID already exists on the team (including in -/// recoverable state). -/// -/// @param duplicateExternalMemberId A user with the given external member ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateExternalMemberId:(NSString *)duplicateExternalMemberId; - -/// -/// Initializes union class with tag state of "duplicate_member_persistent_id". -/// -/// Description of the "duplicate_member_persistent_id" tag state: A user with -/// the given persistent ID already exists on the team (including in recoverable -/// state). -/// -/// @param duplicateMemberPersistentId A user with the given persistent ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateMemberPersistentId:(NSString *)duplicateMemberPersistentId; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @param persistentIdDisabled Persistent ID is only available to teams with -/// persistent ID SAML configuration. Please contact Dropbox for more -/// information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled:(NSString *)persistentIdDisabled; - -/// -/// Initializes union class with tag state of "user_creation_failed". -/// -/// Description of the "user_creation_failed" tag state: User creation has -/// failed. -/// -/// @param userCreationFailed User creation has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCreationFailed:(NSString *)userCreationFailed; - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user that was -/// successfully added to the team. -/// -/// @param success Describes a user that was successfully added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMTeamMemberInfo *)success; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamLicenseLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `freeTeamMemberLimitReached` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -- (BOOL)isFreeTeamMemberLimitReached; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_on_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyOnTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_on_team". -/// -- (BOOL)isUserAlreadyOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_on_another_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userOnAnotherTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_on_another_team". -/// -- (BOOL)isUserOnAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_paired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyPaired` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_paired". -/// -- (BOOL)isUserAlreadyPaired; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_migration_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userMigrationFailed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_migration_failed". -/// -- (BOOL)isUserMigrationFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateExternalMemberId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -- (BOOL)isDuplicateExternalMemberId; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateMemberPersistentId` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -- (BOOL)isDuplicateMemberPersistentId; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `persistentIdDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_creation_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCreationFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_creation_failed". -/// -- (BOOL)isUserCreationFailed; - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberAddResult` union. -/// -@interface DBTEAMMemberAddResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddResult` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddResult *)instance; - -/// -/// Deserializes `DBTEAMMemberAddResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResult` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddResult` object. -/// -+ (DBTEAMMemberAddResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddResultBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddResultBase.h deleted file mode 100644 index f06ae214..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddResultBase.h +++ /dev/null @@ -1,427 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResultBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddResultBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddResultBase : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberAddResultBaseTag` enum type represents the possible tag -/// states with which the `DBTEAMMemberAddResultBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberAddResultBaseTag) { - /// Team is already full. The organization has no available licenses. - DBTEAMMemberAddResultBaseTeamLicenseLimit, - - /// Team is already full. The free team member limit has been reached. - DBTEAMMemberAddResultBaseFreeTeamMemberLimitReached, - - /// User is already on this team. The provided email address is associated - /// with a user who is already a member of (including in recoverable state) - /// or invited to the team. - DBTEAMMemberAddResultBaseUserAlreadyOnTeam, - - /// User is already on another team. The provided email address is - /// associated with a user that is already a member or invited to another - /// team. - DBTEAMMemberAddResultBaseUserOnAnotherTeam, - - /// User is already paired. - DBTEAMMemberAddResultBaseUserAlreadyPaired, - - /// User migration has failed. - DBTEAMMemberAddResultBaseUserMigrationFailed, - - /// A user with the given external member ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultBaseDuplicateExternalMemberId, - - /// A user with the given persistent ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultBaseDuplicateMemberPersistentId, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMemberAddResultBasePersistentIdDisabled, - - /// User creation has failed. - DBTEAMMemberAddResultBaseUserCreationFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberAddResultBaseTag tag; - -/// Team is already full. The organization has no available licenses. @note -/// Ensure the `isTeamLicenseLimit` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamLicenseLimit; - -/// Team is already full. The free team member limit has been reached. @note -/// Ensure the `isFreeTeamMemberLimitReached` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *freeTeamMemberLimitReached; - -/// User is already on this team. The provided email address is associated with -/// a user who is already a member of (including in recoverable state) or -/// invited to the team. @note Ensure the `isUserAlreadyOnTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyOnTeam; - -/// User is already on another team. The provided email address is associated -/// with a user that is already a member or invited to another team. @note -/// Ensure the `isUserOnAnotherTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userOnAnotherTeam; - -/// User is already paired. @note Ensure the `isUserAlreadyPaired` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyPaired; - -/// User migration has failed. @note Ensure the `isUserMigrationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userMigrationFailed; - -/// A user with the given external member ID already exists on the team -/// (including in recoverable state). @note Ensure the -/// `isDuplicateExternalMemberId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateExternalMemberId; - -/// A user with the given persistent ID already exists on the team (including in -/// recoverable state). @note Ensure the `isDuplicateMemberPersistentId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateMemberPersistentId; - -/// Persistent ID is only available to teams with persistent ID SAML -/// configuration. Please contact Dropbox for more information. @note Ensure the -/// `isPersistentIdDisabled` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *persistentIdDisabled; - -/// User creation has failed. @note Ensure the `isUserCreationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userCreationFailed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is already full. The -/// organization has no available licenses. -/// -/// @param teamLicenseLimit Team is already full. The organization has no -/// available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit:(NSString *)teamLicenseLimit; - -/// -/// Initializes union class with tag state of "free_team_member_limit_reached". -/// -/// Description of the "free_team_member_limit_reached" tag state: Team is -/// already full. The free team member limit has been reached. -/// -/// @param freeTeamMemberLimitReached Team is already full. The free team member -/// limit has been reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFreeTeamMemberLimitReached:(NSString *)freeTeamMemberLimitReached; - -/// -/// Initializes union class with tag state of "user_already_on_team". -/// -/// Description of the "user_already_on_team" tag state: User is already on this -/// team. The provided email address is associated with a user who is already a -/// member of (including in recoverable state) or invited to the team. -/// -/// @param userAlreadyOnTeam User is already on this team. The provided email -/// address is associated with a user who is already a member of (including in -/// recoverable state) or invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyOnTeam:(NSString *)userAlreadyOnTeam; - -/// -/// Initializes union class with tag state of "user_on_another_team". -/// -/// Description of the "user_on_another_team" tag state: User is already on -/// another team. The provided email address is associated with a user that is -/// already a member or invited to another team. -/// -/// @param userOnAnotherTeam User is already on another team. The provided email -/// address is associated with a user that is already a member or invited to -/// another team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserOnAnotherTeam:(NSString *)userOnAnotherTeam; - -/// -/// Initializes union class with tag state of "user_already_paired". -/// -/// Description of the "user_already_paired" tag state: User is already paired. -/// -/// @param userAlreadyPaired User is already paired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyPaired:(NSString *)userAlreadyPaired; - -/// -/// Initializes union class with tag state of "user_migration_failed". -/// -/// Description of the "user_migration_failed" tag state: User migration has -/// failed. -/// -/// @param userMigrationFailed User migration has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMigrationFailed:(NSString *)userMigrationFailed; - -/// -/// Initializes union class with tag state of "duplicate_external_member_id". -/// -/// Description of the "duplicate_external_member_id" tag state: A user with the -/// given external member ID already exists on the team (including in -/// recoverable state). -/// -/// @param duplicateExternalMemberId A user with the given external member ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateExternalMemberId:(NSString *)duplicateExternalMemberId; - -/// -/// Initializes union class with tag state of "duplicate_member_persistent_id". -/// -/// Description of the "duplicate_member_persistent_id" tag state: A user with -/// the given persistent ID already exists on the team (including in recoverable -/// state). -/// -/// @param duplicateMemberPersistentId A user with the given persistent ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateMemberPersistentId:(NSString *)duplicateMemberPersistentId; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @param persistentIdDisabled Persistent ID is only available to teams with -/// persistent ID SAML configuration. Please contact Dropbox for more -/// information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled:(NSString *)persistentIdDisabled; - -/// -/// Initializes union class with tag state of "user_creation_failed". -/// -/// Description of the "user_creation_failed" tag state: User creation has -/// failed. -/// -/// @param userCreationFailed User creation has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCreationFailed:(NSString *)userCreationFailed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamLicenseLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `freeTeamMemberLimitReached` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -- (BOOL)isFreeTeamMemberLimitReached; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_on_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyOnTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_on_team". -/// -- (BOOL)isUserAlreadyOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_on_another_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userOnAnotherTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_on_another_team". -/// -- (BOOL)isUserOnAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_paired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyPaired` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_paired". -/// -- (BOOL)isUserAlreadyPaired; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_migration_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userMigrationFailed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_migration_failed". -/// -- (BOOL)isUserMigrationFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateExternalMemberId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -- (BOOL)isDuplicateExternalMemberId; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateMemberPersistentId` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -- (BOOL)isDuplicateMemberPersistentId; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `persistentIdDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_creation_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCreationFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_creation_failed". -/// -- (BOOL)isUserCreationFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberAddResultBase` union. -/// -@interface DBTEAMMemberAddResultBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddResultBase` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddResultBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResultBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddResultBase *)instance; - -/// -/// Deserializes `DBTEAMMemberAddResultBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResultBase` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddResultBase` object. -/// -+ (DBTEAMMemberAddResultBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddV2Arg.h deleted file mode 100644 index 69e32f17..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddV2Arg.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMemberAddArgBase.h" - -@class DBTEAMMemberAddV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddV2Arg : DBTEAMMemberAddArgBase - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, nullable) NSArray *roleIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberEmail (no description). -/// @param memberGivenName Member's first name. -/// @param memberSurname Member's last name. -/// @param memberExternalId External ID for member. -/// @param memberPersistentId Persistent ID for member. This field is only -/// available to teams using persistent ID SAML configuration. -/// @param sendWelcomeEmail Whether to send a welcome email to the member. If -/// send_welcome_email is false, no email invitation will be sent to the user. -/// This may be useful for apps using single sign-on (SSO) flows for onboarding -/// that want to handle announcements themselves. -/// @param isDirectoryRestricted Whether a user is directory restricted. -/// @param roleIds (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail - memberGivenName:(nullable NSString *)memberGivenName - memberSurname:(nullable NSString *)memberSurname - memberExternalId:(nullable NSString *)memberExternalId - memberPersistentId:(nullable NSString *)memberPersistentId - sendWelcomeEmail:(nullable NSNumber *)sendWelcomeEmail - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - roleIds:(nullable NSArray *)roleIds; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param memberEmail (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddV2Arg` struct. -/// -@interface DBTEAMMemberAddV2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddV2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddV2Arg *)instance; - -/// -/// Deserializes `DBTEAMMemberAddV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddV2Arg` object. -/// -+ (DBTEAMMemberAddV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddV2Result.h deleted file mode 100644 index 3ea51ba2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberAddV2Result.h +++ /dev/null @@ -1,480 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddV2Result; -@class DBTEAMTeamMemberInfoV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddV2Result` union. -/// -/// Describes the result of attempting to add a single user to the team. -/// 'success' is the only value indicating that a user was indeed added to the -/// team - the other values explain the type of failure that occurred, and -/// include the email of the user for which the operation has failed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddV2Result : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberAddV2ResultTag` enum type represents the possible tag -/// states with which the `DBTEAMMemberAddV2Result` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberAddV2ResultTag) { - /// Team is already full. The organization has no available licenses. - DBTEAMMemberAddV2ResultTeamLicenseLimit, - - /// Team is already full. The free team member limit has been reached. - DBTEAMMemberAddV2ResultFreeTeamMemberLimitReached, - - /// User is already on this team. The provided email address is associated - /// with a user who is already a member of (including in recoverable state) - /// or invited to the team. - DBTEAMMemberAddV2ResultUserAlreadyOnTeam, - - /// User is already on another team. The provided email address is - /// associated with a user that is already a member or invited to another - /// team. - DBTEAMMemberAddV2ResultUserOnAnotherTeam, - - /// User is already paired. - DBTEAMMemberAddV2ResultUserAlreadyPaired, - - /// User migration has failed. - DBTEAMMemberAddV2ResultUserMigrationFailed, - - /// A user with the given external member ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddV2ResultDuplicateExternalMemberId, - - /// A user with the given persistent ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddV2ResultDuplicateMemberPersistentId, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMemberAddV2ResultPersistentIdDisabled, - - /// User creation has failed. - DBTEAMMemberAddV2ResultUserCreationFailed, - - /// Describes a user that was successfully added to the team. - DBTEAMMemberAddV2ResultSuccess, - - /// (no description). - DBTEAMMemberAddV2ResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberAddV2ResultTag tag; - -/// Team is already full. The organization has no available licenses. @note -/// Ensure the `isTeamLicenseLimit` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamLicenseLimit; - -/// Team is already full. The free team member limit has been reached. @note -/// Ensure the `isFreeTeamMemberLimitReached` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *freeTeamMemberLimitReached; - -/// User is already on this team. The provided email address is associated with -/// a user who is already a member of (including in recoverable state) or -/// invited to the team. @note Ensure the `isUserAlreadyOnTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyOnTeam; - -/// User is already on another team. The provided email address is associated -/// with a user that is already a member or invited to another team. @note -/// Ensure the `isUserOnAnotherTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userOnAnotherTeam; - -/// User is already paired. @note Ensure the `isUserAlreadyPaired` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyPaired; - -/// User migration has failed. @note Ensure the `isUserMigrationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userMigrationFailed; - -/// A user with the given external member ID already exists on the team -/// (including in recoverable state). @note Ensure the -/// `isDuplicateExternalMemberId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateExternalMemberId; - -/// A user with the given persistent ID already exists on the team (including in -/// recoverable state). @note Ensure the `isDuplicateMemberPersistentId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateMemberPersistentId; - -/// Persistent ID is only available to teams with persistent ID SAML -/// configuration. Please contact Dropbox for more information. @note Ensure the -/// `isPersistentIdDisabled` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *persistentIdDisabled; - -/// User creation has failed. @note Ensure the `isUserCreationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userCreationFailed; - -/// Describes a user that was successfully added to the team. @note Ensure the -/// `isSuccess` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfoV2 *success; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is already full. The -/// organization has no available licenses. -/// -/// @param teamLicenseLimit Team is already full. The organization has no -/// available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit:(NSString *)teamLicenseLimit; - -/// -/// Initializes union class with tag state of "free_team_member_limit_reached". -/// -/// Description of the "free_team_member_limit_reached" tag state: Team is -/// already full. The free team member limit has been reached. -/// -/// @param freeTeamMemberLimitReached Team is already full. The free team member -/// limit has been reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFreeTeamMemberLimitReached:(NSString *)freeTeamMemberLimitReached; - -/// -/// Initializes union class with tag state of "user_already_on_team". -/// -/// Description of the "user_already_on_team" tag state: User is already on this -/// team. The provided email address is associated with a user who is already a -/// member of (including in recoverable state) or invited to the team. -/// -/// @param userAlreadyOnTeam User is already on this team. The provided email -/// address is associated with a user who is already a member of (including in -/// recoverable state) or invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyOnTeam:(NSString *)userAlreadyOnTeam; - -/// -/// Initializes union class with tag state of "user_on_another_team". -/// -/// Description of the "user_on_another_team" tag state: User is already on -/// another team. The provided email address is associated with a user that is -/// already a member or invited to another team. -/// -/// @param userOnAnotherTeam User is already on another team. The provided email -/// address is associated with a user that is already a member or invited to -/// another team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserOnAnotherTeam:(NSString *)userOnAnotherTeam; - -/// -/// Initializes union class with tag state of "user_already_paired". -/// -/// Description of the "user_already_paired" tag state: User is already paired. -/// -/// @param userAlreadyPaired User is already paired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyPaired:(NSString *)userAlreadyPaired; - -/// -/// Initializes union class with tag state of "user_migration_failed". -/// -/// Description of the "user_migration_failed" tag state: User migration has -/// failed. -/// -/// @param userMigrationFailed User migration has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMigrationFailed:(NSString *)userMigrationFailed; - -/// -/// Initializes union class with tag state of "duplicate_external_member_id". -/// -/// Description of the "duplicate_external_member_id" tag state: A user with the -/// given external member ID already exists on the team (including in -/// recoverable state). -/// -/// @param duplicateExternalMemberId A user with the given external member ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateExternalMemberId:(NSString *)duplicateExternalMemberId; - -/// -/// Initializes union class with tag state of "duplicate_member_persistent_id". -/// -/// Description of the "duplicate_member_persistent_id" tag state: A user with -/// the given persistent ID already exists on the team (including in recoverable -/// state). -/// -/// @param duplicateMemberPersistentId A user with the given persistent ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateMemberPersistentId:(NSString *)duplicateMemberPersistentId; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @param persistentIdDisabled Persistent ID is only available to teams with -/// persistent ID SAML configuration. Please contact Dropbox for more -/// information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled:(NSString *)persistentIdDisabled; - -/// -/// Initializes union class with tag state of "user_creation_failed". -/// -/// Description of the "user_creation_failed" tag state: User creation has -/// failed. -/// -/// @param userCreationFailed User creation has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCreationFailed:(NSString *)userCreationFailed; - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user that was -/// successfully added to the team. -/// -/// @param success Describes a user that was successfully added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMTeamMemberInfoV2 *)success; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamLicenseLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `freeTeamMemberLimitReached` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -- (BOOL)isFreeTeamMemberLimitReached; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_on_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyOnTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_on_team". -/// -- (BOOL)isUserAlreadyOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_on_another_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userOnAnotherTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_on_another_team". -/// -- (BOOL)isUserOnAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_paired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyPaired` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_paired". -/// -- (BOOL)isUserAlreadyPaired; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_migration_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userMigrationFailed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_migration_failed". -/// -- (BOOL)isUserMigrationFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateExternalMemberId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -- (BOOL)isDuplicateExternalMemberId; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateMemberPersistentId` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -- (BOOL)isDuplicateMemberPersistentId; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `persistentIdDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_creation_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCreationFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_creation_failed". -/// -- (BOOL)isUserCreationFailed; - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberAddV2Result` union. -/// -@interface DBTEAMMemberAddV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddV2Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddV2Result *)instance; - -/// -/// Deserializes `DBTEAMMemberAddV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddV2Result` object. -/// -+ (DBTEAMMemberAddV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberDevices.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberDevices.h deleted file mode 100644 index e4a01fbd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberDevices.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMActiveWebSession; -@class DBTEAMDesktopClientSession; -@class DBTEAMMemberDevices; -@class DBTEAMMobileClientSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDevices` struct. -/// -/// Information on devices of a team's member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberDevices : NSObject - -#pragma mark - Instance fields - -/// The member unique Id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// List of web sessions made by this team member. -@property (nonatomic, readonly, nullable) NSArray *webSessions; - -/// List of desktop clients by this team member. -@property (nonatomic, readonly, nullable) NSArray *desktopClients; - -/// List of mobile clients by this team member. -@property (nonatomic, readonly, nullable) NSArray *mobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member unique Id. -/// @param webSessions List of web sessions made by this team member. -/// @param desktopClients List of desktop clients by this team member. -/// @param mobileClients List of mobile clients by this team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - webSessions:(nullable NSArray *)webSessions - desktopClients:(nullable NSArray *)desktopClients - mobileClients:(nullable NSArray *)mobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId The member unique Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDevices` struct. -/// -@interface DBTEAMMemberDevicesSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberDevices` instances. -/// -/// @param instance An instance of the `DBTEAMMemberDevices` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberDevices` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberDevices *)instance; - -/// -/// Deserializes `DBTEAMMemberDevices` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberDevices` API object. -/// -/// @return An instantiation of the `DBTEAMMemberDevices` object. -/// -+ (DBTEAMMemberDevices *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberLinkedApps.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberLinkedApps.h deleted file mode 100644 index 96438931..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberLinkedApps.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMApiApp; -@class DBTEAMMemberLinkedApps; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberLinkedApps` struct. -/// -/// Information on linked applications of a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberLinkedApps : NSObject - -#pragma mark - Instance fields - -/// The member unique Id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// List of third party applications linked by this team member. -@property (nonatomic, readonly) NSArray *linkedApiApps; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member unique Id. -/// @param linkedApiApps List of third party applications linked by this team -/// member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId linkedApiApps:(NSArray *)linkedApiApps; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberLinkedApps` struct. -/// -@interface DBTEAMMemberLinkedAppsSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberLinkedApps` instances. -/// -/// @param instance An instance of the `DBTEAMMemberLinkedApps` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberLinkedApps` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberLinkedApps *)instance; - -/// -/// Deserializes `DBTEAMMemberLinkedApps` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberLinkedApps` API object. -/// -/// @return An instantiation of the `DBTEAMMemberLinkedApps` object. -/// -+ (DBTEAMMemberLinkedApps *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberProfile.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberProfile.h deleted file mode 100644 index f034ef4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberProfile.h +++ /dev/null @@ -1,191 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSECONDARYEMAILSSecondaryEmail; -@class DBTEAMMemberProfile; -@class DBTEAMTeamMemberStatus; -@class DBTEAMTeamMembershipType; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberProfile` struct. -/// -/// Basic member profile. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberProfile : NSObject - -#pragma mark - Instance fields - -/// ID of user as a member of a team. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// External ID that a team can attach to the user. An application using the API -/// may find it easier to use their own IDs instead of Dropbox IDs like -/// account_id or team_member_id. -@property (nonatomic, readonly, copy, nullable) NSString *externalId; - -/// A user's account identifier. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -/// Email address of user. -@property (nonatomic, readonly, copy) NSString *email; - -/// Is true if the user's email is verified to be owned by the user. -@property (nonatomic, readonly) NSNumber *emailVerified; - -/// Secondary emails of a user. -@property (nonatomic, readonly, nullable) NSArray *secondaryEmails; - -/// The user's status as a member of a specific team. -@property (nonatomic, readonly) DBTEAMTeamMemberStatus *status; - -/// Representations for a person's name. -@property (nonatomic, readonly) DBUSERSName *name; - -/// The user's membership type: full (normal team member) vs limited (does not -/// use a license; no access to the team's shared quota). -@property (nonatomic, readonly) DBTEAMTeamMembershipType *membershipType; - -/// The date and time the user was invited to the team (contains value only when -/// the member's status matches `invited` in `DBTEAMTeamMemberStatus`). -@property (nonatomic, readonly, nullable) NSDate *invitedOn; - -/// The date and time the user joined as a member of a specific team. -@property (nonatomic, readonly, nullable) NSDate *joinedOn; - -/// The date and time the user was suspended from the team (contains value only -/// when the member's status matches `suspended` in `DBTEAMTeamMemberStatus`). -@property (nonatomic, readonly, nullable) NSDate *suspendedOn; - -/// Persistent ID that a team can attach to the user. The persistent ID is -/// unique ID to be used for SAML authentication. -@property (nonatomic, readonly, copy, nullable) NSString *persistentId; - -/// Whether the user is a directory restricted user. -@property (nonatomic, readonly, nullable) NSNumber *isDirectoryRestricted; - -/// URL for the photo representing the user, if one is set. -@property (nonatomic, readonly, copy, nullable) NSString *profilePhotoUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// @param externalId External ID that a team can attach to the user. An -/// application using the API may find it easier to use their own IDs instead of -/// Dropbox IDs like account_id or team_member_id. -/// @param accountId A user's account identifier. -/// @param secondaryEmails Secondary emails of a user. -/// @param invitedOn The date and time the user was invited to the team -/// (contains value only when the member's status matches `invited` in -/// `DBTEAMTeamMemberStatus`). -/// @param joinedOn The date and time the user joined as a member of a specific -/// team. -/// @param suspendedOn The date and time the user was suspended from the team -/// (contains value only when the member's status matches `suspended` in -/// `DBTEAMTeamMemberStatus`). -/// @param persistentId Persistent ID that a team can attach to the user. The -/// persistent ID is unique ID to be used for SAML authentication. -/// @param isDirectoryRestricted Whether the user is a directory restricted -/// user. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType - externalId:(nullable NSString *)externalId - accountId:(nullable NSString *)accountId - secondaryEmails:(nullable NSArray *)secondaryEmails - invitedOn:(nullable NSDate *)invitedOn - joinedOn:(nullable NSDate *)joinedOn - suspendedOn:(nullable NSDate *)suspendedOn - persistentId:(nullable NSString *)persistentId - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - profilePhotoUrl:(nullable NSString *)profilePhotoUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberProfile` struct. -/// -@interface DBTEAMMemberProfileSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberProfile` instances. -/// -/// @param instance An instance of the `DBTEAMMemberProfile` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberProfile` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberProfile *)instance; - -/// -/// Deserializes `DBTEAMMemberProfile` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberProfile` API object. -/// -/// @return An instantiation of the `DBTEAMMemberProfile` object. -/// -+ (DBTEAMMemberProfile *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberSelectorError.h deleted file mode 100644 index bc31588e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMemberSelectorError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSelectorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberSelectorErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMemberSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberSelectorErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMemberSelectorErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMemberSelectorErrorUserNotInTeam, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberSelectorError` union. -/// -@interface DBTEAMMemberSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMMemberSelectorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberSelectorError *)instance; - -/// -/// Deserializes `DBTEAMMemberSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMMemberSelectorError` object. -/// -+ (DBTEAMMemberSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddArg.h deleted file mode 100644 index 1916a3f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddArg.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersAddArgBase.h" - -@class DBTEAMMemberAddArg; -@class DBTEAMMembersAddArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddArg : DBTEAMMembersAddArgBase - -#pragma mark - Instance fields - -/// Details of new members to be added to the team. -@property (nonatomic, readonly) NSArray *dNewMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// @param forceAsync Whether to force the add to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersAddArg` struct. -/// -@interface DBTEAMMembersAddArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddArg *)instance; - -/// -/// Deserializes `DBTEAMMembersAddArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddArg` object. -/// -+ (DBTEAMMembersAddArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddArgBase.h deleted file mode 100644 index 76e7fe0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddArgBase.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersAddArgBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddArgBase : NSObject - -#pragma mark - Instance fields - -/// Whether to force the add to happen asynchronously. -@property (nonatomic, readonly) NSNumber *forceAsync; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param forceAsync Whether to force the add to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithForceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersAddArgBase` struct. -/// -@interface DBTEAMMembersAddArgBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddArgBase` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddArgBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddArgBase *)instance; - -/// -/// Deserializes `DBTEAMMembersAddArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArgBase` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddArgBase` object. -/// -+ (DBTEAMMembersAddArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddJobStatus.h deleted file mode 100644 index a612b87c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddJobStatus.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResult; -@class DBTEAMMembersAddJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddJobStatusTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersAddJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddJobStatusTag) { - /// The asynchronous job is still in progress. - DBTEAMMembersAddJobStatusInProgress, - - /// The asynchronous job has finished. For each member that was specified in - /// the parameter MembersAddArg that was provided to `membersAdd`, a - /// corresponding item is returned in this list. - DBTEAMMembersAddJobStatusComplete, - - /// The asynchronous job returned an error. The string contains an error - /// message. - DBTEAMMembersAddJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddJobStatusTag tag; - -/// The asynchronous job has finished. For each member that was specified in the -/// parameter MembersAddArg that was provided to `membersAdd`, a corresponding -/// item is returned in this list. @note Ensure the `isComplete` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -/// The asynchronous job returned an error. The string contains an error -/// message. @note Ensure the `isFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has finished. -/// For each member that was specified in the parameter MembersAddArg that was -/// provided to `membersAdd`, a corresponding item is returned in this list. -/// -/// @param complete The asynchronous job has finished. For each member that was -/// specified in the parameter MembersAddArg that was provided to `membersAdd`, -/// a corresponding item is returned in this list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The asynchronous job returned an -/// error. The string contains an error message. -/// -/// @param failed The asynchronous job returned an error. The string contains an -/// error message. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(NSString *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddJobStatus` union. -/// -@interface DBTEAMMembersAddJobStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddJobStatus` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddJobStatus *)instance; - -/// -/// Deserializes `DBTEAMMembersAddJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatus` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddJobStatus` object. -/// -+ (DBTEAMMembersAddJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddJobStatusV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddJobStatusV2Result.h deleted file mode 100644 index ffecfb84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddJobStatusV2Result.h +++ /dev/null @@ -1,188 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddV2Result; -@class DBTEAMMembersAddJobStatusV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddJobStatusV2Result` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddJobStatusV2Result : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddJobStatusV2ResultTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersAddJobStatusV2Result` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddJobStatusV2ResultTag) { - /// The asynchronous job is still in progress. - DBTEAMMembersAddJobStatusV2ResultInProgress, - - /// The asynchronous job has finished. For each member that was specified in - /// the parameter MembersAddArg that was provided to `membersAdd`, a - /// corresponding item is returned in this list. - DBTEAMMembersAddJobStatusV2ResultComplete, - - /// The asynchronous job returned an error. The string contains an error - /// message. - DBTEAMMembersAddJobStatusV2ResultFailed, - - /// (no description). - DBTEAMMembersAddJobStatusV2ResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddJobStatusV2ResultTag tag; - -/// The asynchronous job has finished. For each member that was specified in the -/// parameter MembersAddArg that was provided to `membersAdd`, a corresponding -/// item is returned in this list. @note Ensure the `isComplete` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -/// The asynchronous job returned an error. The string contains an error -/// message. @note Ensure the `isFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has finished. -/// For each member that was specified in the parameter MembersAddArg that was -/// provided to `membersAdd`, a corresponding item is returned in this list. -/// -/// @param complete The asynchronous job has finished. For each member that was -/// specified in the parameter MembersAddArg that was provided to `membersAdd`, -/// a corresponding item is returned in this list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The asynchronous job returned an -/// error. The string contains an error message. -/// -/// @param failed The asynchronous job returned an error. The string contains an -/// error message. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(NSString *)failed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddJobStatusV2Result` union. -/// -@interface DBTEAMMembersAddJobStatusV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddJobStatusV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddJobStatusV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatusV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddJobStatusV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersAddJobStatusV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatusV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddJobStatusV2Result` object. -/// -+ (DBTEAMMembersAddJobStatusV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddLaunch.h deleted file mode 100644 index 18548341..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddLaunch.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResult; -@class DBTEAMMembersAddLaunch; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddLaunch` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddLaunchTag` enum type represents the possible tag states -/// with which the `DBTEAMMembersAddLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBTEAMMembersAddLaunchAsyncJobId, - - /// (no description). - DBTEAMMembersAddLaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddLaunch` union. -/// -@interface DBTEAMMembersAddLaunchSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddLaunch` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddLaunch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddLaunch *)instance; - -/// -/// Deserializes `DBTEAMMembersAddLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunch` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddLaunch` object. -/// -+ (DBTEAMMembersAddLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddLaunchV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddLaunchV2Result.h deleted file mode 100644 index f45bef0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddLaunchV2Result.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddV2Result; -@class DBTEAMMembersAddLaunchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddLaunchV2Result` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddLaunchV2Result : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddLaunchV2ResultTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersAddLaunchV2Result` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddLaunchV2ResultTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBTEAMMembersAddLaunchV2ResultAsyncJobId, - - /// (no description). - DBTEAMMembersAddLaunchV2ResultComplete, - - /// (no description). - DBTEAMMembersAddLaunchV2ResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddLaunchV2ResultTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddLaunchV2Result` union. -/// -@interface DBTEAMMembersAddLaunchV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddLaunchV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddLaunchV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunchV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddLaunchV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersAddLaunchV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunchV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddLaunchV2Result` object. -/// -+ (DBTEAMMembersAddLaunchV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddV2Arg.h deleted file mode 100644 index 02925d23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersAddV2Arg.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersAddArgBase.h" - -@class DBTEAMMemberAddV2Arg; -@class DBTEAMMembersAddV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddV2Arg : DBTEAMMembersAddArgBase - -#pragma mark - Instance fields - -/// Details of new members to be added to the team. -@property (nonatomic, readonly) NSArray *dNewMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// @param forceAsync Whether to force the add to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersAddV2Arg` struct. -/// -@interface DBTEAMMembersAddV2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddV2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddV2Arg *)instance; - -/// -/// Deserializes `DBTEAMMembersAddV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddV2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddV2Arg` object. -/// -+ (DBTEAMMembersAddV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDataTransferArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDataTransferArg.h deleted file mode 100644 index e2a6c8e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDataTransferArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersDeactivateBaseArg.h" - -@class DBTEAMMembersDataTransferArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDataTransferArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDataTransferArg : DBTEAMMembersDeactivateBaseArg - -#pragma mark - Instance fields - -/// Files from the deleted member account will be transferred to this user. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *transferDestId; - -/// Errors during the transfer process will be sent via email to this user. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *transferAdminId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// @param transferDestId Files from the deleted member account will be -/// transferred to this user. -/// @param transferAdminId Errors during the transfer process will be sent via -/// email to this user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - transferDestId:(DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(DBTEAMUserSelectorArg *)transferAdminId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDataTransferArg` struct. -/// -@interface DBTEAMMembersDataTransferArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDataTransferArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDataTransferArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDataTransferArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDataTransferArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDataTransferArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDataTransferArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDataTransferArg` object. -/// -+ (DBTEAMMembersDataTransferArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateArg.h deleted file mode 100644 index 5230241b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersDeactivateBaseArg.h" - -@class DBTEAMMembersDeactivateArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeactivateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeactivateArg : DBTEAMMembersDeactivateBaseArg - -#pragma mark - Instance fields - -/// If provided, controls if the user's data will be deleted on their linked -/// devices. -@property (nonatomic, readonly) NSNumber *wipeData; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// @param wipeData If provided, controls if the user's data will be deleted on -/// their linked devices. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user wipeData:(nullable NSNumber *)wipeData; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDeactivateArg` struct. -/// -@interface DBTEAMMembersDeactivateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeactivateArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeactivateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeactivateArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDeactivateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeactivateArg` object. -/// -+ (DBTEAMMembersDeactivateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateBaseArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateBaseArg.h deleted file mode 100644 index 7b77762d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateBaseArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeactivateBaseArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeactivateBaseArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeactivateBaseArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user to remove/suspend/have their files moved. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDeactivateBaseArg` struct. -/// -@interface DBTEAMMembersDeactivateBaseArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeactivateBaseArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeactivateBaseArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateBaseArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeactivateBaseArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDeactivateBaseArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateBaseArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeactivateBaseArg` object. -/// -+ (DBTEAMMembersDeactivateBaseArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateError.h deleted file mode 100644 index 9b11b2da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeactivateError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeactivateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeactivateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeactivateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersDeactivateErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersDeactivateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersDeactivateErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersDeactivateErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersDeactivateErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersDeactivateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersDeactivateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersDeactivateError` union. -/// -@interface DBTEAMMembersDeactivateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeactivateError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeactivateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeactivateError *)instance; - -/// -/// Deserializes `DBTEAMMembersDeactivateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeactivateError` object. -/// -+ (DBTEAMMembersDeactivateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeleteProfilePhotoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeleteProfilePhotoArg.h deleted file mode 100644 index 7e507b17..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeleteProfilePhotoArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeleteProfilePhotoArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeleteProfilePhotoArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeleteProfilePhotoArg : NSObject - -#pragma mark - Instance fields - -/// Identity of the user whose profile photo will be deleted. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of the user whose profile photo will be deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDeleteProfilePhotoArg` struct. -/// -@interface DBTEAMMembersDeleteProfilePhotoArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeleteProfilePhotoArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeleteProfilePhotoArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeleteProfilePhotoArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDeleteProfilePhotoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeleteProfilePhotoArg` object. -/// -+ (DBTEAMMembersDeleteProfilePhotoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeleteProfilePhotoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeleteProfilePhotoError.h deleted file mode 100644 index 3e7ae1cf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersDeleteProfilePhotoError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeleteProfilePhotoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeleteProfilePhotoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeleteProfilePhotoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersDeleteProfilePhotoErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMMembersDeleteProfilePhotoError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersDeleteProfilePhotoErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersDeleteProfilePhotoErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersDeleteProfilePhotoErrorUserNotInTeam, - - /// Modifying deleted users is not allowed. - DBTEAMMembersDeleteProfilePhotoErrorSetProfileDisallowed, - - /// (no description). - DBTEAMMembersDeleteProfilePhotoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersDeleteProfilePhotoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "set_profile_disallowed". -/// -/// Description of the "set_profile_disallowed" tag state: Modifying deleted -/// users is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetProfileDisallowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_profile_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "set_profile_disallowed". -/// -- (BOOL)isSetProfileDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersDeleteProfilePhotoError` -/// union. -/// -@interface DBTEAMMembersDeleteProfilePhotoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeleteProfilePhotoError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeleteProfilePhotoError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeleteProfilePhotoError *)instance; - -/// -/// Deserializes `DBTEAMMembersDeleteProfilePhotoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeleteProfilePhotoError` -/// object. -/// -+ (DBTEAMMembersDeleteProfilePhotoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetAvailableTeamMemberRolesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetAvailableTeamMemberRolesResult.h deleted file mode 100644 index 7754aeb6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetAvailableTeamMemberRolesResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetAvailableTeamMemberRolesResult; -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetAvailableTeamMemberRolesResult` struct. -/// -/// Available TeamMemberRole for the connected team. To be used with -/// `membersSetAdminPermissions`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetAvailableTeamMemberRolesResult : NSObject - -#pragma mark - Instance fields - -/// Available roles. -@property (nonatomic, readonly) NSArray *roles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param roles Available roles. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoles:(NSArray *)roles; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetAvailableTeamMemberRolesResult` -/// struct. -/// -@interface DBTEAMMembersGetAvailableTeamMemberRolesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetAvailableTeamMemberRolesResult` instances. -/// -/// @param instance An instance of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetAvailableTeamMemberRolesResult *)instance; - -/// -/// Deserializes `DBTEAMMembersGetAvailableTeamMemberRolesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` API object. -/// -/// @return An instantiation of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` object. -/// -+ (DBTEAMMembersGetAvailableTeamMemberRolesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoArgs.h deleted file mode 100644 index b72a30c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoArgs.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoArgs; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoArgs : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetInfoArgs` struct. -/// -@interface DBTEAMMembersGetInfoArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoArgs` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoArgs *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoArgs` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoArgs` object. -/// -+ (DBTEAMMembersGetInfoArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoError.h deleted file mode 100644 index 600696f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoError.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoErrorTag) { - /// (no description). - DBTEAMMembersGetInfoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoError` union. -/// -@interface DBTEAMMembersGetInfoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoError *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoError` object. -/// -+ (DBTEAMMembersGetInfoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItem.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItem.h deleted file mode 100644 index 7da9b1fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItem.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItem; -@class DBTEAMTeamMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoItem` union. -/// -/// Describes a result obtained for a single user whose id was specified in the -/// parameter of `membersGetInfo`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoItem : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoItemTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoItem` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoItemTag) { - /// An ID that was provided as a parameter to `membersGetInfo` or - /// `membersGetInfo`, and did not match a corresponding user. This might be - /// a team_member_id, an email, or an external ID, depending on how the - /// method was called. - DBTEAMMembersGetInfoItemIdNotFound, - - /// Info about a team member. - DBTEAMMembersGetInfoItemMemberInfo, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoItemTag tag; - -/// An ID that was provided as a parameter to `membersGetInfo` or -/// `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. @note Ensure the `isIdNotFound` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Info about a team member. @note Ensure the `isMemberInfo` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfo *memberInfo; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `membersGetInfo` or `membersGetInfo`, and did not match a -/// corresponding user. This might be a team_member_id, an email, or an external -/// ID, depending on how the method was called. -/// -/// @param idNotFound An ID that was provided as a parameter to `membersGetInfo` -/// or `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "member_info". -/// -/// Description of the "member_info" tag state: Info about a team member. -/// -/// @param memberInfo Info about a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInfo:(DBTEAMTeamMemberInfo *)memberInfo; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value "member_info". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberInfo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_info". -/// -- (BOOL)isMemberInfo; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoItem` union. -/// -@interface DBTEAMMembersGetInfoItemSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoItem` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoItem` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItem` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoItem *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoItem` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItem` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoItem` object. -/// -+ (DBTEAMMembersGetInfoItem *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItemBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItemBase.h deleted file mode 100644 index 603a6c1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItemBase.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItemBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoItemBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoItemBase : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoItemBaseTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoItemBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoItemBaseTag) { - /// An ID that was provided as a parameter to `membersGetInfo` or - /// `membersGetInfo`, and did not match a corresponding user. This might be - /// a team_member_id, an email, or an external ID, depending on how the - /// method was called. - DBTEAMMembersGetInfoItemBaseIdNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoItemBaseTag tag; - -/// An ID that was provided as a parameter to `membersGetInfo` or -/// `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. @note Ensure the `isIdNotFound` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `membersGetInfo` or `membersGetInfo`, and did not match a -/// corresponding user. This might be a team_member_id, an email, or an external -/// ID, depending on how the method was called. -/// -/// @param idNotFound An ID that was provided as a parameter to `membersGetInfo` -/// or `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoItemBase` union. -/// -@interface DBTEAMMembersGetInfoItemBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoItemBase` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoItemBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoItemBase *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoItemBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemBase` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoItemBase` object. -/// -+ (DBTEAMMembersGetInfoItemBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItemV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItemV2.h deleted file mode 100644 index 9128bf15..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoItemV2.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItemV2; -@class DBTEAMTeamMemberInfoV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoItemV2` union. -/// -/// Describes a result obtained for a single user whose id was specified in the -/// parameter of `membersGetInfo`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoItemV2 : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoItemV2Tag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoItemV2` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoItemV2Tag) { - /// An ID that was provided as a parameter to `membersGetInfo` or - /// `membersGetInfo`, and did not match a corresponding user. This might be - /// a team_member_id, an email, or an external ID, depending on how the - /// method was called. - DBTEAMMembersGetInfoItemV2IdNotFound, - - /// Info about a team member. - DBTEAMMembersGetInfoItemV2MemberInfo, - - /// (no description). - DBTEAMMembersGetInfoItemV2Other, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoItemV2Tag tag; - -/// An ID that was provided as a parameter to `membersGetInfo` or -/// `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. @note Ensure the `isIdNotFound` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Info about a team member. @note Ensure the `isMemberInfo` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfoV2 *memberInfo; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `membersGetInfo` or `membersGetInfo`, and did not match a -/// corresponding user. This might be a team_member_id, an email, or an external -/// ID, depending on how the method was called. -/// -/// @param idNotFound An ID that was provided as a parameter to `membersGetInfo` -/// or `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "member_info". -/// -/// Description of the "member_info" tag state: Info about a team member. -/// -/// @param memberInfo Info about a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInfo:(DBTEAMTeamMemberInfoV2 *)memberInfo; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value "member_info". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberInfo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_info". -/// -- (BOOL)isMemberInfo; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoItemV2` union. -/// -@interface DBTEAMMembersGetInfoItemV2Serializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoItemV2` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoItemV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoItemV2 *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoItemV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemV2` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoItemV2` object. -/// -+ (DBTEAMMembersGetInfoItemV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoV2Arg.h deleted file mode 100644 index e9b8f8a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoV2Arg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoV2Arg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoV2Arg : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetInfoV2Arg` struct. -/// -@interface DBTEAMMembersGetInfoV2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoV2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoV2Arg *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoV2Arg` object. -/// -+ (DBTEAMMembersGetInfoV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoV2Result.h deleted file mode 100644 index b1856249..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersGetInfoV2Result.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItemV2; -@class DBTEAMMembersGetInfoV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoV2Result : NSObject - -#pragma mark - Instance fields - -/// List of team members info. -@property (nonatomic, readonly) NSArray *membersInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param membersInfo List of team members info. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembersInfo:(NSArray *)membersInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetInfoV2Result` struct. -/// -@interface DBTEAMMembersGetInfoV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoV2Result` object. -/// -+ (DBTEAMMembersGetInfoV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersInfo.h deleted file mode 100644 index 897a6c7c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersInfo.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersInfo : NSObject - -#pragma mark - Instance fields - -/// Team member IDs of the users under this hold. -@property (nonatomic, readonly) NSArray *teamMemberIds; - -/// The number of permanently deleted users that were under this hold. -@property (nonatomic, readonly) NSNumber *permanentlyDeletedUsers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberIds Team member IDs of the users under this hold. -/// @param permanentlyDeletedUsers The number of permanently deleted users that -/// were under this hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberIds:(NSArray *)teamMemberIds - permanentlyDeletedUsers:(NSNumber *)permanentlyDeletedUsers; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersInfo` struct. -/// -@interface DBTEAMMembersInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersInfo` instances. -/// -/// @param instance An instance of the `DBTEAMMembersInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersInfo *)instance; - -/// -/// Deserializes `DBTEAMMembersInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersInfo` API object. -/// -/// @return An instantiation of the `DBTEAMMembersInfo` object. -/// -+ (DBTEAMMembersInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListArg.h deleted file mode 100644 index e36da943..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListArg : NSObject - -#pragma mark - Instance fields - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -/// Whether to return removed members. -@property (nonatomic, readonly) NSNumber *includeRemoved; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of results to return per call. -/// @param includeRemoved Whether to return removed members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit includeRemoved:(nullable NSNumber *)includeRemoved; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListArg` struct. -/// -@interface DBTEAMMembersListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListArg *)instance; - -/// -/// Deserializes `DBTEAMMembersListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListArg` object. -/// -+ (DBTEAMMembersListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListContinueArg.h deleted file mode 100644 index 8da14a43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of members. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListContinueArg` struct. -/// -@interface DBTEAMMembersListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMMembersListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListContinueArg` object. -/// -+ (DBTEAMMembersListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListContinueError.h deleted file mode 100644 index 1d73f272..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListContinueError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersListContinueErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersListContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMMembersListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMMembersListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersListContinueError` union. -/// -@interface DBTEAMMembersListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListContinueError *)instance; - -/// -/// Deserializes `DBTEAMMembersListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListContinueError` object. -/// -+ (DBTEAMMembersListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListError.h deleted file mode 100644 index 186af635..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListError.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersListErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMMembersListError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersListErrorTag) { - /// (no description). - DBTEAMMembersListErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersListErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersListError` union. -/// -@interface DBTEAMMembersListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListError *)instance; - -/// -/// Deserializes `DBTEAMMembersListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListError` object. -/// -+ (DBTEAMMembersListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListResult.h deleted file mode 100644 index 8a8a7a0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListResult; -@class DBTEAMTeamMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListResult : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -/// Pass the cursor into `membersListContinue` to obtain the additional members. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional team members that have not been returned -/// yet. An additional call to `membersListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// @param cursor Pass the cursor into `membersListContinue` to obtain the -/// additional members. -/// @param hasMore Is true if there are additional team members that have not -/// been returned yet. An additional call to `membersListContinue` can retrieve -/// them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListResult` struct. -/// -@interface DBTEAMMembersListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListResult` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListResult *)instance; - -/// -/// Deserializes `DBTEAMMembersListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListResult` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListResult` object. -/// -+ (DBTEAMMembersListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListV2Result.h deleted file mode 100644 index f5813a90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersListV2Result.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListV2Result; -@class DBTEAMTeamMemberInfoV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListV2Result : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -/// Pass the cursor into `membersListContinue` to obtain the additional members. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional team members that have not been returned -/// yet. An additional call to `membersListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// @param cursor Pass the cursor into `membersListContinue` to obtain the -/// additional members. -/// @param hasMore Is true if there are additional team members that have not -/// been returned yet. An additional call to `membersListContinue` can retrieve -/// them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListV2Result` struct. -/// -@interface DBTEAMMembersListV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListV2Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersListV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListV2Result` object. -/// -+ (DBTEAMMembersListV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRecoverArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRecoverArg.h deleted file mode 100644 index 97f59554..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRecoverArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersRecoverArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRecoverArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRecoverArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user to recover. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to recover. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersRecoverArg` struct. -/// -@interface DBTEAMMembersRecoverArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRecoverArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRecoverArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRecoverArg *)instance; - -/// -/// Deserializes `DBTEAMMembersRecoverArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRecoverArg` object. -/// -+ (DBTEAMMembersRecoverArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRecoverError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRecoverError.h deleted file mode 100644 index 28846765..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRecoverError.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersRecoverError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRecoverError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRecoverError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersRecoverErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersRecoverError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersRecoverErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersRecoverErrorUserNotFound, - - /// The user is not recoverable. - DBTEAMMembersRecoverErrorUserUnrecoverable, - - /// The user is not a member of the team. - DBTEAMMembersRecoverErrorUserNotInTeam, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersRecoverErrorTeamLicenseLimit, - - /// (no description). - DBTEAMMembersRecoverErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersRecoverErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_unrecoverable". -/// -/// Description of the "user_unrecoverable" tag state: The user is not -/// recoverable. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserUnrecoverable; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_unrecoverable". -/// -/// @return Whether the union's current tag state has value -/// "user_unrecoverable". -/// -- (BOOL)isUserUnrecoverable; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersRecoverError` union. -/// -@interface DBTEAMMembersRecoverErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRecoverError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRecoverError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRecoverError *)instance; - -/// -/// Deserializes `DBTEAMMembersRecoverError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRecoverError` object. -/// -+ (DBTEAMMembersRecoverError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRemoveArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRemoveArg.h deleted file mode 100644 index ec2a46fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRemoveArg.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersDeactivateArg.h" - -@class DBTEAMMembersRemoveArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRemoveArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRemoveArg : DBTEAMMembersDeactivateArg - -#pragma mark - Instance fields - -/// If provided, files from the deleted member account will be transferred to -/// this user. -@property (nonatomic, readonly, nullable) DBTEAMUserSelectorArg *transferDestId; - -/// If provided, errors during the transfer process will be sent via email to -/// this user. If the transfer_dest_id argument was provided, then this argument -/// must be provided as well. -@property (nonatomic, readonly, nullable) DBTEAMUserSelectorArg *transferAdminId; - -/// Downgrade the member to a Basic account. The user will retain the email -/// address associated with their Dropbox account and data in their account -/// that is not restricted to team members. In order to keep the account the -/// argument wipeData should be set to false. -@property (nonatomic, readonly) NSNumber *keepAccount; - -/// If provided, allows removed users to keep access to Dropbox folders (not -/// Dropbox Paper folders) already explicitly shared with them (not via a group) -/// when they are downgraded to a Basic account. Users will not retain access to -/// folders that do not allow external sharing. In order to keep the sharing -/// relationships, the arguments wipeData should be set to false and keepAccount -/// should be set to true. -@property (nonatomic, readonly) NSNumber *retainTeamShares; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// @param wipeData If provided, controls if the user's data will be deleted on -/// their linked devices. -/// @param transferDestId If provided, files from the deleted member account -/// will be transferred to this user. -/// @param transferAdminId If provided, errors during the transfer process will -/// be sent via email to this user. If the transfer_dest_id argument was -/// provided, then this argument must be provided as well. -/// @param keepAccount Downgrade the member to a Basic account. The user will -/// retain the email address associated with their Dropbox account and data in -/// their account that is not restricted to team members. In order to keep the -/// account the argument wipeData should be set to false. -/// @param retainTeamShares If provided, allows removed users to keep access to -/// Dropbox folders (not Dropbox Paper folders) already explicitly shared with -/// them (not via a group) when they are downgraded to a Basic account. Users -/// will not retain access to folders that do not allow external sharing. In -/// order to keep the sharing relationships, the arguments wipeData should be -/// set to false and keepAccount should be set to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - wipeData:(nullable NSNumber *)wipeData - transferDestId:(nullable DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(nullable DBTEAMUserSelectorArg *)transferAdminId - keepAccount:(nullable NSNumber *)keepAccount - retainTeamShares:(nullable NSNumber *)retainTeamShares; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersRemoveArg` struct. -/// -@interface DBTEAMMembersRemoveArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRemoveArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRemoveArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRemoveArg *)instance; - -/// -/// Deserializes `DBTEAMMembersRemoveArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRemoveArg` object. -/// -+ (DBTEAMMembersRemoveArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRemoveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRemoveError.h deleted file mode 100644 index ada60a34..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersRemoveError.h +++ /dev/null @@ -1,604 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersRemoveError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRemoveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRemoveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersRemoveErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersRemoveError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersRemoveErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersRemoveErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersRemoveErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersRemoveErrorOther, - - /// Expected removed user and transfer_dest user to be different. - DBTEAMMembersRemoveErrorRemovedAndTransferDestShouldDiffer, - - /// Expected removed user and transfer_admin user to be different. - DBTEAMMembersRemoveErrorRemovedAndTransferAdminShouldDiffer, - - /// No matching user found for the argument transfer_dest_id. - DBTEAMMembersRemoveErrorTransferDestUserNotFound, - - /// The provided transfer_dest_id does not exist on this team. - DBTEAMMembersRemoveErrorTransferDestUserNotInTeam, - - /// The provided transfer_admin_id does not exist on this team. - DBTEAMMembersRemoveErrorTransferAdminUserNotInTeam, - - /// No matching user found for the argument transfer_admin_id. - DBTEAMMembersRemoveErrorTransferAdminUserNotFound, - - /// The transfer_admin_id argument must be provided when file transfer is - /// requested. - DBTEAMMembersRemoveErrorUnspecifiedTransferAdminId, - - /// Specified transfer_admin user is not a team admin. - DBTEAMMembersRemoveErrorTransferAdminIsNotAdmin, - - /// The recipient user's email is not verified. - DBTEAMMembersRemoveErrorRecipientNotVerified, - - /// The user is the last admin of the team, so it cannot be removed from it. - DBTEAMMembersRemoveErrorRemoveLastAdmin, - - /// Cannot keep account and transfer the data to another user at the same - /// time. - DBTEAMMembersRemoveErrorCannotKeepAccountAndTransfer, - - /// Cannot keep account and delete the data at the same time. To keep the - /// account the argument wipe_data should be set to false. - DBTEAMMembersRemoveErrorCannotKeepAccountAndDeleteData, - - /// The email address of the user is too long to be disabled. - DBTEAMMembersRemoveErrorEmailAddressTooLongToBeDisabled, - - /// Cannot keep account of an invited user. - DBTEAMMembersRemoveErrorCannotKeepInvitedUserAccount, - - /// Cannot retain team shares when the user's data is marked for deletion on - /// their linked devices. The argument wipe_data should be set to false. - DBTEAMMembersRemoveErrorCannotRetainSharesWhenDataWiped, - - /// The user's account must be kept in order to retain team shares. The - /// argument keep_account should be set to true. - DBTEAMMembersRemoveErrorCannotRetainSharesWhenNoAccountKept, - - /// Externally sharing files, folders, and links must be enabled in team - /// settings in order to retain team shares for the user. - DBTEAMMembersRemoveErrorCannotRetainSharesWhenTeamExternalSharingOff, - - /// Only a team admin, can convert this account to a Basic account. - DBTEAMMembersRemoveErrorCannotKeepAccount, - - /// This user content is currently being held. To convert this member's - /// account to a Basic account, you'll first need to remove them from the - /// hold. - DBTEAMMembersRemoveErrorCannotKeepAccountUnderLegalHold, - - /// To convert this member to a Basic account, they'll first need to sign in - /// to Dropbox and agree to the terms of service. - DBTEAMMembersRemoveErrorCannotKeepAccountRequiredToSignTos, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersRemoveErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_dest_should_differ". -/// -/// Description of the "removed_and_transfer_dest_should_differ" tag state: -/// Expected removed user and transfer_dest user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferDestShouldDiffer; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_admin_should_differ". -/// -/// Description of the "removed_and_transfer_admin_should_differ" tag state: -/// Expected removed user and transfer_admin user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferAdminShouldDiffer; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_found". -/// -/// Description of the "transfer_dest_user_not_found" tag state: No matching -/// user found for the argument transfer_dest_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotFound; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_in_team". -/// -/// Description of the "transfer_dest_user_not_in_team" tag state: The provided -/// transfer_dest_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_in_team". -/// -/// Description of the "transfer_admin_user_not_in_team" tag state: The provided -/// transfer_admin_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_found". -/// -/// Description of the "transfer_admin_user_not_found" tag state: No matching -/// user found for the argument transfer_admin_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotFound; - -/// -/// Initializes union class with tag state of "unspecified_transfer_admin_id". -/// -/// Description of the "unspecified_transfer_admin_id" tag state: The -/// transfer_admin_id argument must be provided when file transfer is requested. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecifiedTransferAdminId; - -/// -/// Initializes union class with tag state of "transfer_admin_is_not_admin". -/// -/// Description of the "transfer_admin_is_not_admin" tag state: Specified -/// transfer_admin user is not a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminIsNotAdmin; - -/// -/// Initializes union class with tag state of "recipient_not_verified". -/// -/// Description of the "recipient_not_verified" tag state: The recipient user's -/// email is not verified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientNotVerified; - -/// -/// Initializes union class with tag state of "remove_last_admin". -/// -/// Description of the "remove_last_admin" tag state: The user is the last admin -/// of the team, so it cannot be removed from it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveLastAdmin; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_and_transfer". -/// -/// Description of the "cannot_keep_account_and_transfer" tag state: Cannot keep -/// account and transfer the data to another user at the same time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountAndTransfer; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_and_delete_data". -/// -/// Description of the "cannot_keep_account_and_delete_data" tag state: Cannot -/// keep account and delete the data at the same time. To keep the account the -/// argument wipe_data should be set to false. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountAndDeleteData; - -/// -/// Initializes union class with tag state of -/// "email_address_too_long_to_be_disabled". -/// -/// Description of the "email_address_too_long_to_be_disabled" tag state: The -/// email address of the user is too long to be disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailAddressTooLongToBeDisabled; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_invited_user_account". -/// -/// Description of the "cannot_keep_invited_user_account" tag state: Cannot keep -/// account of an invited user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepInvitedUserAccount; - -/// -/// Initializes union class with tag state of -/// "cannot_retain_shares_when_data_wiped". -/// -/// Description of the "cannot_retain_shares_when_data_wiped" tag state: Cannot -/// retain team shares when the user's data is marked for deletion on their -/// linked devices. The argument wipe_data should be set to false. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRetainSharesWhenDataWiped; - -/// -/// Initializes union class with tag state of -/// "cannot_retain_shares_when_no_account_kept". -/// -/// Description of the "cannot_retain_shares_when_no_account_kept" tag state: -/// The user's account must be kept in order to retain team shares. The argument -/// keep_account should be set to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRetainSharesWhenNoAccountKept; - -/// -/// Initializes union class with tag state of -/// "cannot_retain_shares_when_team_external_sharing_off". -/// -/// Description of the "cannot_retain_shares_when_team_external_sharing_off" tag -/// state: Externally sharing files, folders, and links must be enabled in team -/// settings in order to retain team shares for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRetainSharesWhenTeamExternalSharingOff; - -/// -/// Initializes union class with tag state of "cannot_keep_account". -/// -/// Description of the "cannot_keep_account" tag state: Only a team admin, can -/// convert this account to a Basic account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccount; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_under_legal_hold". -/// -/// Description of the "cannot_keep_account_under_legal_hold" tag state: This -/// user content is currently being held. To convert this member's account to a -/// Basic account, you'll first need to remove them from the hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountUnderLegalHold; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_required_to_sign_tos". -/// -/// Description of the "cannot_keep_account_required_to_sign_tos" tag state: To -/// convert this member to a Basic account, they'll first need to sign in to -/// Dropbox and agree to the terms of service. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountRequiredToSignTos; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -- (BOOL)isRemovedAndTransferDestShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -- (BOOL)isRemovedAndTransferAdminShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -- (BOOL)isTransferDestUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -- (BOOL)isTransferDestUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -- (BOOL)isTransferAdminUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -- (BOOL)isTransferAdminUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -/// @return Whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -- (BOOL)isUnspecifiedTransferAdminId; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -- (BOOL)isTransferAdminIsNotAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "recipient_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "recipient_not_verified". -/// -- (BOOL)isRecipientNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "remove_last_admin". -/// -/// @return Whether the union's current tag state has value "remove_last_admin". -/// -- (BOOL)isRemoveLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_and_transfer". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_and_transfer". -/// -- (BOOL)isCannotKeepAccountAndTransfer; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_and_delete_data". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_and_delete_data". -/// -- (BOOL)isCannotKeepAccountAndDeleteData; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_address_too_long_to_be_disabled". -/// -/// @return Whether the union's current tag state has value -/// "email_address_too_long_to_be_disabled". -/// -- (BOOL)isEmailAddressTooLongToBeDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_invited_user_account". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_invited_user_account". -/// -- (BOOL)isCannotKeepInvitedUserAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_retain_shares_when_data_wiped". -/// -/// @return Whether the union's current tag state has value -/// "cannot_retain_shares_when_data_wiped". -/// -- (BOOL)isCannotRetainSharesWhenDataWiped; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_retain_shares_when_no_account_kept". -/// -/// @return Whether the union's current tag state has value -/// "cannot_retain_shares_when_no_account_kept". -/// -- (BOOL)isCannotRetainSharesWhenNoAccountKept; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_retain_shares_when_team_external_sharing_off". -/// -/// @return Whether the union's current tag state has value -/// "cannot_retain_shares_when_team_external_sharing_off". -/// -- (BOOL)isCannotRetainSharesWhenTeamExternalSharingOff; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account". -/// -- (BOOL)isCannotKeepAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_under_legal_hold". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_under_legal_hold". -/// -- (BOOL)isCannotKeepAccountUnderLegalHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_required_to_sign_tos". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_required_to_sign_tos". -/// -- (BOOL)isCannotKeepAccountRequiredToSignTos; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersRemoveError` union. -/// -@interface DBTEAMMembersRemoveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRemoveError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRemoveError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRemoveError *)instance; - -/// -/// Deserializes `DBTEAMMembersRemoveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRemoveError` object. -/// -+ (DBTEAMMembersRemoveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSendWelcomeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSendWelcomeError.h deleted file mode 100644 index e1c38f3e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSendWelcomeError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSendWelcomeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSendWelcomeError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSendWelcomeError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSendWelcomeErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersSendWelcomeError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSendWelcomeErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSendWelcomeErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSendWelcomeErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersSendWelcomeErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSendWelcomeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSendWelcomeError` union. -/// -@interface DBTEAMMembersSendWelcomeErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSendWelcomeError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSendWelcomeError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSendWelcomeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSendWelcomeError *)instance; - -/// -/// Deserializes `DBTEAMMembersSendWelcomeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSendWelcomeError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSendWelcomeError` object. -/// -+ (DBTEAMMembersSendWelcomeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Arg.h deleted file mode 100644 index 4b6f97b3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Arg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissions2Arg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissions2Arg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissions2Arg : NSObject - -#pragma mark - Instance fields - -/// Identity of user whose role will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// The new roles for the member. Send empty list to make user member only. For -/// now, only up to one role is allowed. -@property (nonatomic, readonly, nullable) NSArray *dNewRoles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRoles The new roles for the member. Send empty list to make user -/// member only. For now, only up to one role is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user dNewRoles:(nullable NSArray *)dNewRoles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user whose role will be set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissions2Arg` struct. -/// -@interface DBTEAMMembersSetPermissions2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissions2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissions2Arg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissions2Arg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissions2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissions2Arg` object. -/// -+ (DBTEAMMembersSetPermissions2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Error.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Error.h deleted file mode 100644 index 96d00d5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Error.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissions2Error; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissions2Error` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissions2Error : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetPermissions2ErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersSetPermissions2Error` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetPermissions2ErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetPermissions2ErrorUserNotFound, - - /// Cannot remove the admin setting of the last admin. - DBTEAMMembersSetPermissions2ErrorLastAdmin, - - /// The user is not a member of the team. - DBTEAMMembersSetPermissions2ErrorUserNotInTeam, - - /// Cannot remove/grant permissions. This can happen if the team member is - /// suspended. - DBTEAMMembersSetPermissions2ErrorCannotSetPermissions, - - /// No matching role found. At least one of the provided new_roles does not - /// exist on this team. - DBTEAMMembersSetPermissions2ErrorRoleNotFound, - - /// (no description). - DBTEAMMembersSetPermissions2ErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetPermissions2ErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "last_admin". -/// -/// Description of the "last_admin" tag state: Cannot remove the admin setting -/// of the last admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLastAdmin; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "cannot_set_permissions". -/// -/// Description of the "cannot_set_permissions" tag state: Cannot remove/grant -/// permissions. This can happen if the team member is suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotSetPermissions; - -/// -/// Initializes union class with tag state of "role_not_found". -/// -/// Description of the "role_not_found" tag state: No matching role found. At -/// least one of the provided new_roles does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoleNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value "last_admin". -/// -/// @return Whether the union's current tag state has value "last_admin". -/// -- (BOOL)isLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_set_permissions". -/// -/// @return Whether the union's current tag state has value -/// "cannot_set_permissions". -/// -- (BOOL)isCannotSetPermissions; - -/// -/// Retrieves whether the union's current tag state has value "role_not_found". -/// -/// @return Whether the union's current tag state has value "role_not_found". -/// -- (BOOL)isRoleNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetPermissions2Error` union. -/// -@interface DBTEAMMembersSetPermissions2ErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissions2Error` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissions2Error` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Error` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissions2Error *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissions2Error` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Error` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissions2Error` object. -/// -+ (DBTEAMMembersSetPermissions2Error *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Result.h deleted file mode 100644 index 3c309675..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissions2Result.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissions2Result; -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissions2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissions2Result : NSObject - -#pragma mark - Instance fields - -/// The member ID of the user to which the change was applied. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// The roles after the change. Empty in case the user become a non-admin. -@property (nonatomic, readonly, nullable) NSArray *roles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member ID of the user to which the change was -/// applied. -/// @param roles The roles after the change. Empty in case the user become a -/// non-admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId roles:(nullable NSArray *)roles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId The member ID of the user to which the change was -/// applied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissions2Result` struct. -/// -@interface DBTEAMMembersSetPermissions2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissions2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissions2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissions2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissions2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissions2Result` object. -/// -+ (DBTEAMMembersSetPermissions2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsArg.h deleted file mode 100644 index 704ff915..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; -@class DBTEAMMembersSetPermissionsArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissionsArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissionsArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user whose role will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// The new role of the member. -@property (nonatomic, readonly) DBTEAMAdminTier *dNewRole; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRole The new role of the member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user dNewRole:(DBTEAMAdminTier *)dNewRole; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissionsArg` struct. -/// -@interface DBTEAMMembersSetPermissionsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissionsArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissionsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissionsArg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissionsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissionsArg` object. -/// -+ (DBTEAMMembersSetPermissionsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsError.h deleted file mode 100644 index 01a64aea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsError.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissionsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissionsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissionsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetPermissionsErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersSetPermissionsError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetPermissionsErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetPermissionsErrorUserNotFound, - - /// Cannot remove the admin setting of the last admin. - DBTEAMMembersSetPermissionsErrorLastAdmin, - - /// The user is not a member of the team. - DBTEAMMembersSetPermissionsErrorUserNotInTeam, - - /// Cannot remove/grant permissions. - DBTEAMMembersSetPermissionsErrorCannotSetPermissions, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersSetPermissionsErrorTeamLicenseLimit, - - /// (no description). - DBTEAMMembersSetPermissionsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetPermissionsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "last_admin". -/// -/// Description of the "last_admin" tag state: Cannot remove the admin setting -/// of the last admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLastAdmin; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "cannot_set_permissions". -/// -/// Description of the "cannot_set_permissions" tag state: Cannot remove/grant -/// permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotSetPermissions; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value "last_admin". -/// -/// @return Whether the union's current tag state has value "last_admin". -/// -- (BOOL)isLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_set_permissions". -/// -/// @return Whether the union's current tag state has value -/// "cannot_set_permissions". -/// -- (BOOL)isCannotSetPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetPermissionsError` union. -/// -@interface DBTEAMMembersSetPermissionsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissionsError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissionsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissionsError *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissionsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissionsError` object. -/// -+ (DBTEAMMembersSetPermissionsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsResult.h deleted file mode 100644 index ebbba37b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetPermissionsResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; -@class DBTEAMMembersSetPermissionsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissionsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissionsResult : NSObject - -#pragma mark - Instance fields - -/// The member ID of the user to which the change was applied. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// The role after the change. -@property (nonatomic, readonly) DBTEAMAdminTier *role; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member ID of the user to which the change was -/// applied. -/// @param role The role after the change. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId role:(DBTEAMAdminTier *)role; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissionsResult` struct. -/// -@interface DBTEAMMembersSetPermissionsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissionsResult` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissionsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissionsResult *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissionsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsResult` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissionsResult` object. -/// -+ (DBTEAMMembersSetPermissionsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfileArg.h deleted file mode 100644 index 584934bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfileArg.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetProfileArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfileArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. At least one of new_email, new_external_id, -/// new_given_name, and/or new_surname must be provided. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfileArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user whose profile will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// New email for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewEmail; - -/// New external ID for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewExternalId; - -/// New given name for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewGivenName; - -/// New surname for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSurname; - -/// New persistent ID. This field only available to teams using persistent ID -/// SAML configuration. -@property (nonatomic, readonly, copy, nullable) NSString *dNewPersistentId; - -/// New value for whether the user is a directory restricted user. -@property (nonatomic, readonly, nullable) NSNumber *dNewIsDirectoryRestricted; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user whose profile will be set. -/// @param dNewEmail New email for member. -/// @param dNewExternalId New external ID for member. -/// @param dNewGivenName New given name for member. -/// @param dNewSurname New surname for member. -/// @param dNewPersistentId New persistent ID. This field only available to -/// teams using persistent ID SAML configuration. -/// @param dNewIsDirectoryRestricted New value for whether the user is a -/// directory restricted user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - dNewEmail:(nullable NSString *)dNewEmail - dNewExternalId:(nullable NSString *)dNewExternalId - dNewGivenName:(nullable NSString *)dNewGivenName - dNewSurname:(nullable NSString *)dNewSurname - dNewPersistentId:(nullable NSString *)dNewPersistentId - dNewIsDirectoryRestricted:(nullable NSNumber *)dNewIsDirectoryRestricted; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user whose profile will be set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetProfileArg` struct. -/// -@interface DBTEAMMembersSetProfileArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfileArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfileArg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfileArg` object. -/// -+ (DBTEAMMembersSetProfileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfileError.h deleted file mode 100644 index cc0733e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfileError.h +++ /dev/null @@ -1,343 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetProfileError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfileError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfileError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetProfileErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersSetProfileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetProfileErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetProfileErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSetProfileErrorUserNotInTeam, - - /// It is unsafe to use both external_id and new_external_id. - DBTEAMMembersSetProfileErrorExternalIdAndNewExternalIdUnsafe, - - /// None of new_email, new_given_name, new_surname, or new_external_id are - /// specified. - DBTEAMMembersSetProfileErrorNoNewDataSpecified, - - /// Email is already reserved for another user. - DBTEAMMembersSetProfileErrorEmailReservedForOtherUser, - - /// The external ID is already in use by another team member. - DBTEAMMembersSetProfileErrorExternalIdUsedByOtherUser, - - /// Modifying deleted users is not allowed. - DBTEAMMembersSetProfileErrorSetProfileDisallowed, - - /// Parameter new_email cannot be empty. - DBTEAMMembersSetProfileErrorParamCannotBeEmpty, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMembersSetProfileErrorPersistentIdDisabled, - - /// The persistent ID is already in use by another team member. - DBTEAMMembersSetProfileErrorPersistentIdUsedByOtherUser, - - /// Directory Restrictions option is not available. - DBTEAMMembersSetProfileErrorDirectoryRestrictedOff, - - /// (no description). - DBTEAMMembersSetProfileErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetProfileErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of -/// "external_id_and_new_external_id_unsafe". -/// -/// Description of the "external_id_and_new_external_id_unsafe" tag state: It is -/// unsafe to use both external_id and new_external_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdAndNewExternalIdUnsafe; - -/// -/// Initializes union class with tag state of "no_new_data_specified". -/// -/// Description of the "no_new_data_specified" tag state: None of new_email, -/// new_given_name, new_surname, or new_external_id are specified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoNewDataSpecified; - -/// -/// Initializes union class with tag state of "email_reserved_for_other_user". -/// -/// Description of the "email_reserved_for_other_user" tag state: Email is -/// already reserved for another user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailReservedForOtherUser; - -/// -/// Initializes union class with tag state of "external_id_used_by_other_user". -/// -/// Description of the "external_id_used_by_other_user" tag state: The external -/// ID is already in use by another team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdUsedByOtherUser; - -/// -/// Initializes union class with tag state of "set_profile_disallowed". -/// -/// Description of the "set_profile_disallowed" tag state: Modifying deleted -/// users is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetProfileDisallowed; - -/// -/// Initializes union class with tag state of "param_cannot_be_empty". -/// -/// Description of the "param_cannot_be_empty" tag state: Parameter new_email -/// cannot be empty. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithParamCannotBeEmpty; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled; - -/// -/// Initializes union class with tag state of -/// "persistent_id_used_by_other_user". -/// -/// Description of the "persistent_id_used_by_other_user" tag state: The -/// persistent ID is already in use by another team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdUsedByOtherUser; - -/// -/// Initializes union class with tag state of "directory_restricted_off". -/// -/// Description of the "directory_restricted_off" tag state: Directory -/// Restrictions option is not available. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictedOff; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_and_new_external_id_unsafe". -/// -/// @return Whether the union's current tag state has value -/// "external_id_and_new_external_id_unsafe". -/// -- (BOOL)isExternalIdAndNewExternalIdUnsafe; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_new_data_specified". -/// -/// @return Whether the union's current tag state has value -/// "no_new_data_specified". -/// -- (BOOL)isNoNewDataSpecified; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_reserved_for_other_user". -/// -/// @return Whether the union's current tag state has value -/// "email_reserved_for_other_user". -/// -- (BOOL)isEmailReservedForOtherUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_used_by_other_user". -/// -/// @return Whether the union's current tag state has value -/// "external_id_used_by_other_user". -/// -- (BOOL)isExternalIdUsedByOtherUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_profile_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "set_profile_disallowed". -/// -- (BOOL)isSetProfileDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "param_cannot_be_empty". -/// -/// @return Whether the union's current tag state has value -/// "param_cannot_be_empty". -/// -- (BOOL)isParamCannotBeEmpty; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_used_by_other_user". -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_used_by_other_user". -/// -- (BOOL)isPersistentIdUsedByOtherUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restricted_off". -/// -/// @return Whether the union's current tag state has value -/// "directory_restricted_off". -/// -- (BOOL)isDirectoryRestrictedOff; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetProfileError` union. -/// -@interface DBTEAMMembersSetProfileErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfileError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfileError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfileError *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfileError` object. -/// -+ (DBTEAMMembersSetProfileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfilePhotoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfilePhotoArg.h deleted file mode 100644 index 32ce652c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfilePhotoArg.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBTEAMMembersSetProfilePhotoArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfilePhotoArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfilePhotoArg : NSObject - -#pragma mark - Instance fields - -/// Identity of the user whose profile photo will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// Image to set as the member's new profile photo. -@property (nonatomic, readonly) DBACCOUNTPhotoSourceArg *photo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of the user whose profile photo will be set. -/// @param photo Image to set as the member's new profile photo. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user photo:(DBACCOUNTPhotoSourceArg *)photo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetProfilePhotoArg` struct. -/// -@interface DBTEAMMembersSetProfilePhotoArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfilePhotoArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfilePhotoArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfilePhotoArg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfilePhotoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfilePhotoArg` object. -/// -+ (DBTEAMMembersSetProfilePhotoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfilePhotoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfilePhotoError.h deleted file mode 100644 index 29684a36..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSetProfilePhotoError.h +++ /dev/null @@ -1,190 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTSetProfilePhotoError; -@class DBTEAMMembersSetProfilePhotoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfilePhotoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfilePhotoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetProfilePhotoErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersSetProfilePhotoError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetProfilePhotoErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetProfilePhotoErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSetProfilePhotoErrorUserNotInTeam, - - /// Modifying deleted users is not allowed. - DBTEAMMembersSetProfilePhotoErrorSetProfileDisallowed, - - /// (no description). - DBTEAMMembersSetProfilePhotoErrorPhotoError, - - /// (no description). - DBTEAMMembersSetProfilePhotoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetProfilePhotoErrorTag tag; - -/// (no description). @note Ensure the `isPhotoError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBACCOUNTSetProfilePhotoError *photoError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "set_profile_disallowed". -/// -/// Description of the "set_profile_disallowed" tag state: Modifying deleted -/// users is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetProfileDisallowed; - -/// -/// Initializes union class with tag state of "photo_error". -/// -/// @param photoError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPhotoError:(DBACCOUNTSetProfilePhotoError *)photoError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_profile_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "set_profile_disallowed". -/// -- (BOOL)isSetProfileDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "photo_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `photoError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "photo_error". -/// -- (BOOL)isPhotoError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetProfilePhotoError` union. -/// -@interface DBTEAMMembersSetProfilePhotoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfilePhotoError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfilePhotoError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfilePhotoError *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfilePhotoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfilePhotoError` object. -/// -+ (DBTEAMMembersSetProfilePhotoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSuspendError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSuspendError.h deleted file mode 100644 index 4f836a3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersSuspendError.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSuspendError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSuspendError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSuspendError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSuspendErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersSuspendError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSuspendErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSuspendErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSuspendErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersSuspendErrorOther, - - /// The user is not active, so it cannot be suspended. - DBTEAMMembersSuspendErrorSuspendInactiveUser, - - /// The user is the last admin of the team, so it cannot be suspended. - DBTEAMMembersSuspendErrorSuspendLastAdmin, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersSuspendErrorTeamLicenseLimit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSuspendErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "suspend_inactive_user". -/// -/// Description of the "suspend_inactive_user" tag state: The user is not -/// active, so it cannot be suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspendInactiveUser; - -/// -/// Initializes union class with tag state of "suspend_last_admin". -/// -/// Description of the "suspend_last_admin" tag state: The user is the last -/// admin of the team, so it cannot be suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspendLastAdmin; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "suspend_inactive_user". -/// -/// @return Whether the union's current tag state has value -/// "suspend_inactive_user". -/// -- (BOOL)isSuspendInactiveUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "suspend_last_admin". -/// -/// @return Whether the union's current tag state has value -/// "suspend_last_admin". -/// -- (BOOL)isSuspendLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSuspendError` union. -/// -@interface DBTEAMMembersSuspendErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSuspendError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSuspendError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSuspendError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSuspendError *)instance; - -/// -/// Deserializes `DBTEAMMembersSuspendError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSuspendError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSuspendError` object. -/// -+ (DBTEAMMembersSuspendError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersTransferFilesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersTransferFilesError.h deleted file mode 100644 index 1c1fa32d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersTransferFilesError.h +++ /dev/null @@ -1,341 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersTransferFilesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersTransferFilesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersTransferFilesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersTransferFilesErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersTransferFilesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersTransferFilesErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersTransferFilesErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersTransferFilesErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersTransferFilesErrorOther, - - /// Expected removed user and transfer_dest user to be different. - DBTEAMMembersTransferFilesErrorRemovedAndTransferDestShouldDiffer, - - /// Expected removed user and transfer_admin user to be different. - DBTEAMMembersTransferFilesErrorRemovedAndTransferAdminShouldDiffer, - - /// No matching user found for the argument transfer_dest_id. - DBTEAMMembersTransferFilesErrorTransferDestUserNotFound, - - /// The provided transfer_dest_id does not exist on this team. - DBTEAMMembersTransferFilesErrorTransferDestUserNotInTeam, - - /// The provided transfer_admin_id does not exist on this team. - DBTEAMMembersTransferFilesErrorTransferAdminUserNotInTeam, - - /// No matching user found for the argument transfer_admin_id. - DBTEAMMembersTransferFilesErrorTransferAdminUserNotFound, - - /// The transfer_admin_id argument must be provided when file transfer is - /// requested. - DBTEAMMembersTransferFilesErrorUnspecifiedTransferAdminId, - - /// Specified transfer_admin user is not a team admin. - DBTEAMMembersTransferFilesErrorTransferAdminIsNotAdmin, - - /// The recipient user's email is not verified. - DBTEAMMembersTransferFilesErrorRecipientNotVerified, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersTransferFilesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_dest_should_differ". -/// -/// Description of the "removed_and_transfer_dest_should_differ" tag state: -/// Expected removed user and transfer_dest user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferDestShouldDiffer; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_admin_should_differ". -/// -/// Description of the "removed_and_transfer_admin_should_differ" tag state: -/// Expected removed user and transfer_admin user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferAdminShouldDiffer; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_found". -/// -/// Description of the "transfer_dest_user_not_found" tag state: No matching -/// user found for the argument transfer_dest_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotFound; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_in_team". -/// -/// Description of the "transfer_dest_user_not_in_team" tag state: The provided -/// transfer_dest_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_in_team". -/// -/// Description of the "transfer_admin_user_not_in_team" tag state: The provided -/// transfer_admin_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_found". -/// -/// Description of the "transfer_admin_user_not_found" tag state: No matching -/// user found for the argument transfer_admin_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotFound; - -/// -/// Initializes union class with tag state of "unspecified_transfer_admin_id". -/// -/// Description of the "unspecified_transfer_admin_id" tag state: The -/// transfer_admin_id argument must be provided when file transfer is requested. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecifiedTransferAdminId; - -/// -/// Initializes union class with tag state of "transfer_admin_is_not_admin". -/// -/// Description of the "transfer_admin_is_not_admin" tag state: Specified -/// transfer_admin user is not a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminIsNotAdmin; - -/// -/// Initializes union class with tag state of "recipient_not_verified". -/// -/// Description of the "recipient_not_verified" tag state: The recipient user's -/// email is not verified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientNotVerified; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -- (BOOL)isRemovedAndTransferDestShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -- (BOOL)isRemovedAndTransferAdminShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -- (BOOL)isTransferDestUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -- (BOOL)isTransferDestUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -- (BOOL)isTransferAdminUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -- (BOOL)isTransferAdminUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -/// @return Whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -- (BOOL)isUnspecifiedTransferAdminId; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -- (BOOL)isTransferAdminIsNotAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "recipient_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "recipient_not_verified". -/// -- (BOOL)isRecipientNotVerified; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersTransferFilesError` union. -/// -@interface DBTEAMMembersTransferFilesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersTransferFilesError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersTransferFilesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFilesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersTransferFilesError *)instance; - -/// -/// Deserializes `DBTEAMMembersTransferFilesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFilesError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersTransferFilesError` object. -/// -+ (DBTEAMMembersTransferFilesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersTransferFormerMembersFilesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersTransferFormerMembersFilesError.h deleted file mode 100644 index bf45c339..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersTransferFormerMembersFilesError.h +++ /dev/null @@ -1,432 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersTransferFormerMembersFilesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersTransferFormerMembersFilesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersTransferFormerMembersFilesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersTransferFormerMembersFilesErrorTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMMembersTransferFormerMembersFilesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersTransferFormerMembersFilesErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersTransferFormerMembersFilesErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersTransferFormerMembersFilesErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersTransferFormerMembersFilesErrorOther, - - /// Expected removed user and transfer_dest user to be different. - DBTEAMMembersTransferFormerMembersFilesErrorRemovedAndTransferDestShouldDiffer, - - /// Expected removed user and transfer_admin user to be different. - DBTEAMMembersTransferFormerMembersFilesErrorRemovedAndTransferAdminShouldDiffer, - - /// No matching user found for the argument transfer_dest_id. - DBTEAMMembersTransferFormerMembersFilesErrorTransferDestUserNotFound, - - /// The provided transfer_dest_id does not exist on this team. - DBTEAMMembersTransferFormerMembersFilesErrorTransferDestUserNotInTeam, - - /// The provided transfer_admin_id does not exist on this team. - DBTEAMMembersTransferFormerMembersFilesErrorTransferAdminUserNotInTeam, - - /// No matching user found for the argument transfer_admin_id. - DBTEAMMembersTransferFormerMembersFilesErrorTransferAdminUserNotFound, - - /// The transfer_admin_id argument must be provided when file transfer is - /// requested. - DBTEAMMembersTransferFormerMembersFilesErrorUnspecifiedTransferAdminId, - - /// Specified transfer_admin user is not a team admin. - DBTEAMMembersTransferFormerMembersFilesErrorTransferAdminIsNotAdmin, - - /// The recipient user's email is not verified. - DBTEAMMembersTransferFormerMembersFilesErrorRecipientNotVerified, - - /// The user's data is being transferred. Please wait some time before - /// retrying. - DBTEAMMembersTransferFormerMembersFilesErrorUserDataIsBeingTransferred, - - /// No matching removed user found for the argument user. - DBTEAMMembersTransferFormerMembersFilesErrorUserNotRemoved, - - /// User files aren't transferable anymore. - DBTEAMMembersTransferFormerMembersFilesErrorUserDataCannotBeTransferred, - - /// User's data has already been transferred to another user. - DBTEAMMembersTransferFormerMembersFilesErrorUserDataAlreadyTransferred, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersTransferFormerMembersFilesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_dest_should_differ". -/// -/// Description of the "removed_and_transfer_dest_should_differ" tag state: -/// Expected removed user and transfer_dest user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferDestShouldDiffer; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_admin_should_differ". -/// -/// Description of the "removed_and_transfer_admin_should_differ" tag state: -/// Expected removed user and transfer_admin user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferAdminShouldDiffer; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_found". -/// -/// Description of the "transfer_dest_user_not_found" tag state: No matching -/// user found for the argument transfer_dest_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotFound; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_in_team". -/// -/// Description of the "transfer_dest_user_not_in_team" tag state: The provided -/// transfer_dest_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_in_team". -/// -/// Description of the "transfer_admin_user_not_in_team" tag state: The provided -/// transfer_admin_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_found". -/// -/// Description of the "transfer_admin_user_not_found" tag state: No matching -/// user found for the argument transfer_admin_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotFound; - -/// -/// Initializes union class with tag state of "unspecified_transfer_admin_id". -/// -/// Description of the "unspecified_transfer_admin_id" tag state: The -/// transfer_admin_id argument must be provided when file transfer is requested. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecifiedTransferAdminId; - -/// -/// Initializes union class with tag state of "transfer_admin_is_not_admin". -/// -/// Description of the "transfer_admin_is_not_admin" tag state: Specified -/// transfer_admin user is not a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminIsNotAdmin; - -/// -/// Initializes union class with tag state of "recipient_not_verified". -/// -/// Description of the "recipient_not_verified" tag state: The recipient user's -/// email is not verified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientNotVerified; - -/// -/// Initializes union class with tag state of "user_data_is_being_transferred". -/// -/// Description of the "user_data_is_being_transferred" tag state: The user's -/// data is being transferred. Please wait some time before retrying. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDataIsBeingTransferred; - -/// -/// Initializes union class with tag state of "user_not_removed". -/// -/// Description of the "user_not_removed" tag state: No matching removed user -/// found for the argument user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotRemoved; - -/// -/// Initializes union class with tag state of "user_data_cannot_be_transferred". -/// -/// Description of the "user_data_cannot_be_transferred" tag state: User files -/// aren't transferable anymore. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDataCannotBeTransferred; - -/// -/// Initializes union class with tag state of "user_data_already_transferred". -/// -/// Description of the "user_data_already_transferred" tag state: User's data -/// has already been transferred to another user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDataAlreadyTransferred; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -- (BOOL)isRemovedAndTransferDestShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -- (BOOL)isRemovedAndTransferAdminShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -- (BOOL)isTransferDestUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -- (BOOL)isTransferDestUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -- (BOOL)isTransferAdminUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -- (BOOL)isTransferAdminUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -/// @return Whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -- (BOOL)isUnspecifiedTransferAdminId; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -- (BOOL)isTransferAdminIsNotAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "recipient_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "recipient_not_verified". -/// -- (BOOL)isRecipientNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_data_is_being_transferred". -/// -/// @return Whether the union's current tag state has value -/// "user_data_is_being_transferred". -/// -- (BOOL)isUserDataIsBeingTransferred; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_removed". -/// -/// @return Whether the union's current tag state has value "user_not_removed". -/// -- (BOOL)isUserNotRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_data_cannot_be_transferred". -/// -/// @return Whether the union's current tag state has value -/// "user_data_cannot_be_transferred". -/// -- (BOOL)isUserDataCannotBeTransferred; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_data_already_transferred". -/// -/// @return Whether the union's current tag state has value -/// "user_data_already_transferred". -/// -- (BOOL)isUserDataAlreadyTransferred; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMMembersTransferFormerMembersFilesError` union. -/// -@interface DBTEAMMembersTransferFormerMembersFilesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersTransferFormerMembersFilesError` instances. -/// -/// @param instance An instance of the -/// `DBTEAMMembersTransferFormerMembersFilesError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFormerMembersFilesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersTransferFormerMembersFilesError *)instance; - -/// -/// Deserializes `DBTEAMMembersTransferFormerMembersFilesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFormerMembersFilesError` API object. -/// -/// @return An instantiation of the -/// `DBTEAMMembersTransferFormerMembersFilesError` object. -/// -+ (DBTEAMMembersTransferFormerMembersFilesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersUnsuspendArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersUnsuspendArg.h deleted file mode 100644 index 9dab5b8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersUnsuspendArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersUnsuspendArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersUnsuspendArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersUnsuspendArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user to unsuspend. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to unsuspend. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersUnsuspendArg` struct. -/// -@interface DBTEAMMembersUnsuspendArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersUnsuspendArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersUnsuspendArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersUnsuspendArg *)instance; - -/// -/// Deserializes `DBTEAMMembersUnsuspendArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersUnsuspendArg` object. -/// -+ (DBTEAMMembersUnsuspendArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersUnsuspendError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersUnsuspendError.h deleted file mode 100644 index d5dc5a20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMembersUnsuspendError.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersUnsuspendError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersUnsuspendError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersUnsuspendError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersUnsuspendErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersUnsuspendError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersUnsuspendErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersUnsuspendErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersUnsuspendErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersUnsuspendErrorOther, - - /// The user is unsuspended, so it cannot be unsuspended again. - DBTEAMMembersUnsuspendErrorUnsuspendNonSuspendedMember, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersUnsuspendErrorTeamLicenseLimit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersUnsuspendErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "unsuspend_non_suspended_member". -/// -/// Description of the "unsuspend_non_suspended_member" tag state: The user is -/// unsuspended, so it cannot be unsuspended again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsuspendNonSuspendedMember; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsuspend_non_suspended_member". -/// -/// @return Whether the union's current tag state has value -/// "unsuspend_non_suspended_member". -/// -- (BOOL)isUnsuspendNonSuspendedMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersUnsuspendError` union. -/// -@interface DBTEAMMembersUnsuspendErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersUnsuspendError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersUnsuspendError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersUnsuspendError *)instance; - -/// -/// Deserializes `DBTEAMMembersUnsuspendError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersUnsuspendError` object. -/// -+ (DBTEAMMembersUnsuspendError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMobileClientPlatform.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMobileClientPlatform.h deleted file mode 100644 index e6af1eef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMobileClientPlatform.h +++ /dev/null @@ -1,194 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMobileClientPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileClientPlatform` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMobileClientPlatform : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMobileClientPlatformTag` enum type represents the possible tag -/// states with which the `DBTEAMMobileClientPlatform` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMobileClientPlatformTag) { - /// Official Dropbox iPhone client. - DBTEAMMobileClientPlatformIphone, - - /// Official Dropbox iPad client. - DBTEAMMobileClientPlatformIpad, - - /// Official Dropbox Android client. - DBTEAMMobileClientPlatformAndroid, - - /// Official Dropbox Windows phone client. - DBTEAMMobileClientPlatformWindowsPhone, - - /// Official Dropbox Blackberry client. - DBTEAMMobileClientPlatformBlackberry, - - /// (no description). - DBTEAMMobileClientPlatformOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMobileClientPlatformTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "iphone". -/// -/// Description of the "iphone" tag state: Official Dropbox iPhone client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIphone; - -/// -/// Initializes union class with tag state of "ipad". -/// -/// Description of the "ipad" tag state: Official Dropbox iPad client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpad; - -/// -/// Initializes union class with tag state of "android". -/// -/// Description of the "android" tag state: Official Dropbox Android client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAndroid; - -/// -/// Initializes union class with tag state of "windows_phone". -/// -/// Description of the "windows_phone" tag state: Official Dropbox Windows phone -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWindowsPhone; - -/// -/// Initializes union class with tag state of "blackberry". -/// -/// Description of the "blackberry" tag state: Official Dropbox Blackberry -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBlackberry; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "iphone". -/// -/// @return Whether the union's current tag state has value "iphone". -/// -- (BOOL)isIphone; - -/// -/// Retrieves whether the union's current tag state has value "ipad". -/// -/// @return Whether the union's current tag state has value "ipad". -/// -- (BOOL)isIpad; - -/// -/// Retrieves whether the union's current tag state has value "android". -/// -/// @return Whether the union's current tag state has value "android". -/// -- (BOOL)isAndroid; - -/// -/// Retrieves whether the union's current tag state has value "windows_phone". -/// -/// @return Whether the union's current tag state has value "windows_phone". -/// -- (BOOL)isWindowsPhone; - -/// -/// Retrieves whether the union's current tag state has value "blackberry". -/// -/// @return Whether the union's current tag state has value "blackberry". -/// -- (BOOL)isBlackberry; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMobileClientPlatform` union. -/// -@interface DBTEAMMobileClientPlatformSerializer : NSObject - -/// -/// Serializes `DBTEAMMobileClientPlatform` instances. -/// -/// @param instance An instance of the `DBTEAMMobileClientPlatform` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMobileClientPlatform` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMobileClientPlatform *)instance; - -/// -/// Deserializes `DBTEAMMobileClientPlatform` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMobileClientPlatform` API object. -/// -/// @return An instantiation of the `DBTEAMMobileClientPlatform` object. -/// -+ (DBTEAMMobileClientPlatform *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMobileClientSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMobileClientSession.h deleted file mode 100644 index 3be36045..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMMobileClientSession.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSession.h" - -@class DBTEAMMobileClientPlatform; -@class DBTEAMMobileClientSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileClientSession` struct. -/// -/// Information about linked Dropbox mobile client sessions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMobileClientSession : DBTEAMDeviceSession - -#pragma mark - Instance fields - -/// The device name. -@property (nonatomic, readonly, copy) NSString *deviceName; - -/// The mobile application type. -@property (nonatomic, readonly) DBTEAMMobileClientPlatform *clientType; - -/// The dropbox client version. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// The hosting OS version. -@property (nonatomic, readonly, copy, nullable) NSString *osVersion; - -/// last carrier used by the device. -@property (nonatomic, readonly, copy, nullable) NSString *lastCarrier; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param clientVersion The dropbox client version. -/// @param osVersion The hosting OS version. -/// @param lastCarrier last carrier used by the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - deviceName:(NSString *)deviceName - clientType:(DBTEAMMobileClientPlatform *)clientType - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - clientVersion:(nullable NSString *)clientVersion - osVersion:(nullable NSString *)osVersion - lastCarrier:(nullable NSString *)lastCarrier; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - deviceName:(NSString *)deviceName - clientType:(DBTEAMMobileClientPlatform *)clientType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MobileClientSession` struct. -/// -@interface DBTEAMMobileClientSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMMobileClientSession` instances. -/// -/// @param instance An instance of the `DBTEAMMobileClientSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMobileClientSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMobileClientSession *)instance; - -/// -/// Deserializes `DBTEAMMobileClientSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMobileClientSession` API object. -/// -/// @return An instantiation of the `DBTEAMMobileClientSession` object. -/// -+ (DBTEAMMobileClientSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMNamespaceMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMNamespaceMetadata.h deleted file mode 100644 index 57656bc8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMNamespaceMetadata.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMNamespaceMetadata; -@class DBTEAMNamespaceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NamespaceMetadata` struct. -/// -/// Properties of a namespace. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMNamespaceMetadata : NSObject - -#pragma mark - Instance fields - -/// The name of this namespace. -@property (nonatomic, readonly, copy) NSString *name; - -/// The ID of this namespace. -@property (nonatomic, readonly, copy) NSString *namespaceId; - -/// The type of this namespace. -@property (nonatomic, readonly) DBTEAMNamespaceType *namespaceType; - -/// If this is a team member or app folder, the ID of the owning team member. -/// Otherwise, this field is not present. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of this namespace. -/// @param namespaceId The ID of this namespace. -/// @param namespaceType The type of this namespace. -/// @param teamMemberId If this is a team member or app folder, the ID of the -/// owning team member. Otherwise, this field is not present. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - namespaceId:(NSString *)namespaceId - namespaceType:(DBTEAMNamespaceType *)namespaceType - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The name of this namespace. -/// @param namespaceId The ID of this namespace. -/// @param namespaceType The type of this namespace. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - namespaceId:(NSString *)namespaceId - namespaceType:(DBTEAMNamespaceType *)namespaceType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NamespaceMetadata` struct. -/// -@interface DBTEAMNamespaceMetadataSerializer : NSObject - -/// -/// Serializes `DBTEAMNamespaceMetadata` instances. -/// -/// @param instance An instance of the `DBTEAMNamespaceMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMNamespaceMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMNamespaceMetadata *)instance; - -/// -/// Deserializes `DBTEAMNamespaceMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMNamespaceMetadata` API object. -/// -/// @return An instantiation of the `DBTEAMNamespaceMetadata` object. -/// -+ (DBTEAMNamespaceMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMNamespaceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMNamespaceType.h deleted file mode 100644 index 0eb9da89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMNamespaceType.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMNamespaceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NamespaceType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMNamespaceType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMNamespaceTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMNamespaceType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMNamespaceTypeTag) { - /// App sandbox folder. - DBTEAMNamespaceTypeAppFolder, - - /// Shared folder. - DBTEAMNamespaceTypeSharedFolder, - - /// Top-level team-owned folder. - DBTEAMNamespaceTypeTeamFolder, - - /// Team member's home folder. - DBTEAMNamespaceTypeTeamMemberFolder, - - /// (no description). - DBTEAMNamespaceTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMNamespaceTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "app_folder". -/// -/// Description of the "app_folder" tag state: App sandbox folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppFolder; - -/// -/// Initializes union class with tag state of "shared_folder". -/// -/// Description of the "shared_folder" tag state: Shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolder; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: Top-level team-owned folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "team_member_folder". -/// -/// Description of the "team_member_folder" tag state: Team member's home -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "app_folder". -/// -/// @return Whether the union's current tag state has value "app_folder". -/// -- (BOOL)isAppFolder; - -/// -/// Retrieves whether the union's current tag state has value "shared_folder". -/// -/// @return Whether the union's current tag state has value "shared_folder". -/// -- (BOOL)isSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_member_folder". -/// -/// @return Whether the union's current tag state has value -/// "team_member_folder". -/// -- (BOOL)isTeamMemberFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMNamespaceType` union. -/// -@interface DBTEAMNamespaceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMNamespaceType` instances. -/// -/// @param instance An instance of the `DBTEAMNamespaceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMNamespaceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMNamespaceType *)instance; - -/// -/// Deserializes `DBTEAMNamespaceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMNamespaceType` API object. -/// -/// @return An instantiation of the `DBTEAMNamespaceType` object. -/// -+ (DBTEAMNamespaceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESCameraUploadsPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESCameraUploadsPolicyState.h deleted file mode 100644 index 45d79b94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESCameraUploadsPolicyState.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESCameraUploadsPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESCameraUploadsPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESCameraUploadsPolicyStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESCameraUploadsPolicyStateTag) { - /// Background camera uploads are disabled. - DBTEAMPOLICIESCameraUploadsPolicyStateDisabled, - - /// Background camera uploads are allowed. - DBTEAMPOLICIESCameraUploadsPolicyStateEnabled, - - /// (no description). - DBTEAMPOLICIESCameraUploadsPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESCameraUploadsPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Background camera uploads are -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Background camera uploads are -/// allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESCameraUploadsPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESCameraUploadsPolicyState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESCameraUploadsPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESCameraUploadsPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESCameraUploadsPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESCameraUploadsPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESCameraUploadsPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESComputerBackupPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESComputerBackupPolicyState.h deleted file mode 100644 index cb04e785..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESComputerBackupPolicyState.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESComputerBackupPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESComputerBackupPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESComputerBackupPolicyStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESComputerBackupPolicyState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESComputerBackupPolicyStateTag) { - /// Computer Backup feature is disabled. - DBTEAMPOLICIESComputerBackupPolicyStateDisabled, - - /// Computer Backup feature is enabled. - DBTEAMPOLICIESComputerBackupPolicyStateEnabled, - - /// Computer Backup defaults to ON for SSB teams, and OFF for Enterprise - /// teams. - DBTEAMPOLICIESComputerBackupPolicyStateDefault_, - - /// (no description). - DBTEAMPOLICIESComputerBackupPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESComputerBackupPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Computer Backup feature is -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Computer Backup feature is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: Computer Backup defaults to ON for -/// SSB teams, and OFF for Enterprise teams. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESComputerBackupPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESComputerBackupPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESComputerBackupPolicyState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESComputerBackupPolicyState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESComputerBackupPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESComputerBackupPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESComputerBackupPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESComputerBackupPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESComputerBackupPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESComputerBackupPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESEmmState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESEmmState.h deleted file mode 100644 index 098a7db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESEmmState.h +++ /dev/null @@ -1,154 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESEmmState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESEmmState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESEmmStateTag` enum type represents the possible tag states -/// with which the `DBTEAMPOLICIESEmmState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESEmmStateTag) { - /// Emm token is disabled. - DBTEAMPOLICIESEmmStateDisabled, - - /// Emm token is optional. - DBTEAMPOLICIESEmmStateOptional, - - /// Emm token is required. - DBTEAMPOLICIESEmmStateRequired, - - /// (no description). - DBTEAMPOLICIESEmmStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESEmmStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Emm token is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "optional". -/// -/// Description of the "optional" tag state: Emm token is optional. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "required". -/// -/// Description of the "required" tag state: Emm token is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESEmmState` union. -/// -@interface DBTEAMPOLICIESEmmStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESEmmState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESEmmState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESEmmState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESEmmState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESEmmState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESEmmState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESEmmState` object. -/// -+ (DBTEAMPOLICIESEmmState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESExternalDriveBackupPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESExternalDriveBackupPolicyState.h deleted file mode 100644 index 2fc980da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESExternalDriveBackupPolicyState.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESExternalDriveBackupPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESExternalDriveBackupPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESExternalDriveBackupPolicyStateTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESExternalDriveBackupPolicyStateTag) { - /// External Drive Backup feature is disabled. - DBTEAMPOLICIESExternalDriveBackupPolicyStateDisabled, - - /// External Drive Backup feature is enabled. - DBTEAMPOLICIESExternalDriveBackupPolicyStateEnabled, - - /// External Drive Backup default value based on team tier. - DBTEAMPOLICIESExternalDriveBackupPolicyStateDefault_, - - /// (no description). - DBTEAMPOLICIESExternalDriveBackupPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESExternalDriveBackupPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: External Drive Backup feature is -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: External Drive Backup feature is -/// enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: External Drive Backup default value -/// based on team tier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` union. -/// -@interface DBTEAMPOLICIESExternalDriveBackupPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESExternalDriveBackupPolicyState` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESExternalDriveBackupPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESExternalDriveBackupPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` object. -/// -+ (DBTEAMPOLICIESExternalDriveBackupPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESFileLockingPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESFileLockingPolicyState.h deleted file mode 100644 index e80ca9b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESFileLockingPolicyState.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESFileLockingPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESFileLockingPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESFileLockingPolicyStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESFileLockingPolicyState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESFileLockingPolicyStateTag) { - /// File locking feature is disabled. - DBTEAMPOLICIESFileLockingPolicyStateDisabled, - - /// File locking feature is allowed. - DBTEAMPOLICIESFileLockingPolicyStateEnabled, - - /// (no description). - DBTEAMPOLICIESFileLockingPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESFileLockingPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: File locking feature is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: File locking feature is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESFileLockingPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESFileLockingPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESFileLockingPolicyState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESFileLockingPolicyState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileLockingPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESFileLockingPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESFileLockingPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileLockingPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESFileLockingPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESFileLockingPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESFileProviderMigrationPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESFileProviderMigrationPolicyState.h deleted file mode 100644 index 8342c8e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESFileProviderMigrationPolicyState.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESFileProviderMigrationPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileProviderMigrationPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESFileProviderMigrationPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESFileProviderMigrationPolicyStateTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESFileProviderMigrationPolicyStateTag) { - /// Team admin has opted out of File Provider Migration for team members. - DBTEAMPOLICIESFileProviderMigrationPolicyStateDisabled, - - /// Team admin has not opted out of File Provider Migration for team - /// members. - DBTEAMPOLICIESFileProviderMigrationPolicyStateEnabled, - - /// Team admin has default value based on team tier. - DBTEAMPOLICIESFileProviderMigrationPolicyStateDefault_, - - /// (no description). - DBTEAMPOLICIESFileProviderMigrationPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESFileProviderMigrationPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Team admin has opted out of File -/// Provider Migration for team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Team admin has not opted out of File -/// Provider Migration for team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: Team admin has default value based -/// on team tier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` union. -/// -@interface DBTEAMPOLICIESFileProviderMigrationPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESFileProviderMigrationPolicyState` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESFileProviderMigrationPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESFileProviderMigrationPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` object. -/// -+ (DBTEAMPOLICIESFileProviderMigrationPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESGroupCreation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESGroupCreation.h deleted file mode 100644 index 08841070..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESGroupCreation.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESGroupCreation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreation` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESGroupCreation : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESGroupCreationTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESGroupCreation` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESGroupCreationTag) { - /// Team admins and members can create groups. - DBTEAMPOLICIESGroupCreationAdminsAndMembers, - - /// Only team admins can create groups. - DBTEAMPOLICIESGroupCreationAdminsOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESGroupCreationTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admins_and_members". -/// -/// Description of the "admins_and_members" tag state: Team admins and members -/// can create groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminsAndMembers; - -/// -/// Initializes union class with tag state of "admins_only". -/// -/// Description of the "admins_only" tag state: Only team admins can create -/// groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminsOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admins_and_members". -/// -/// @return Whether the union's current tag state has value -/// "admins_and_members". -/// -- (BOOL)isAdminsAndMembers; - -/// -/// Retrieves whether the union's current tag state has value "admins_only". -/// -/// @return Whether the union's current tag state has value "admins_only". -/// -- (BOOL)isAdminsOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESGroupCreation` union. -/// -@interface DBTEAMPOLICIESGroupCreationSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESGroupCreation` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESGroupCreation` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESGroupCreation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESGroupCreation *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESGroupCreation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESGroupCreation` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESGroupCreation` object. -/// -+ (DBTEAMPOLICIESGroupCreation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESOfficeAddInPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESOfficeAddInPolicy.h deleted file mode 100644 index 06cae64b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESOfficeAddInPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESOfficeAddInPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OfficeAddInPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESOfficeAddInPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESOfficeAddInPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESOfficeAddInPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESOfficeAddInPolicyTag) { - /// Office Add-In is disabled. - DBTEAMPOLICIESOfficeAddInPolicyDisabled, - - /// Office Add-In is enabled. - DBTEAMPOLICIESOfficeAddInPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESOfficeAddInPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESOfficeAddInPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Office Add-In is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Office Add-In is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESOfficeAddInPolicy` union. -/// -@interface DBTEAMPOLICIESOfficeAddInPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESOfficeAddInPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESOfficeAddInPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESOfficeAddInPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESOfficeAddInPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESOfficeAddInPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESOfficeAddInPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESOfficeAddInPolicy` object. -/// -+ (DBTEAMPOLICIESOfficeAddInPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDefaultFolderPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDefaultFolderPolicy.h deleted file mode 100644 index f6407089..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDefaultFolderPolicy.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperDefaultFolderPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperDefaultFolderPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperDefaultFolderPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperDefaultFolderPolicyTag) { - /// Everyone in team will be the default option when creating a folder in - /// Paper. - DBTEAMPOLICIESPaperDefaultFolderPolicyEveryoneInTeam, - - /// Invite only will be the default option when creating a folder in Paper. - DBTEAMPOLICIESPaperDefaultFolderPolicyInviteOnly, - - /// (no description). - DBTEAMPOLICIESPaperDefaultFolderPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDefaultFolderPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "everyone_in_team". -/// -/// Description of the "everyone_in_team" tag state: Everyone in team will be -/// the default option when creating a folder in Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryoneInTeam; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Invite only will be the default -/// option when creating a folder in Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "everyone_in_team". -/// -/// @return Whether the union's current tag state has value "everyone_in_team". -/// -- (BOOL)isEveryoneInTeam; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// union. -/// -@interface DBTEAMPOLICIESPaperDefaultFolderPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperDefaultFolderPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDefaultFolderPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperDefaultFolderPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperDefaultFolderPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDefaultFolderPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// object. -/// -+ (DBTEAMPOLICIESPaperDefaultFolderPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDeploymentPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDeploymentPolicy.h deleted file mode 100644 index e4bf8a8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDeploymentPolicy.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperDeploymentPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDeploymentPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperDeploymentPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperDeploymentPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESPaperDeploymentPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperDeploymentPolicyTag) { - /// All team members have access to Paper. - DBTEAMPOLICIESPaperDeploymentPolicyFull, - - /// Only whitelisted team members can access Paper. To see which user is - /// whitelisted, check 'is_paper_whitelisted' on 'account/info'. - DBTEAMPOLICIESPaperDeploymentPolicyPartial, - - /// (no description). - DBTEAMPOLICIESPaperDeploymentPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDeploymentPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "full". -/// -/// Description of the "full" tag state: All team members have access to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFull; - -/// -/// Initializes union class with tag state of "partial". -/// -/// Description of the "partial" tag state: Only whitelisted team members can -/// access Paper. To see which user is whitelisted, check 'is_paper_whitelisted' -/// on 'account/info'. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPartial; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "full". -/// -/// @return Whether the union's current tag state has value "full". -/// -- (BOOL)isFull; - -/// -/// Retrieves whether the union's current tag state has value "partial". -/// -/// @return Whether the union's current tag state has value "partial". -/// -- (BOOL)isPartial; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperDeploymentPolicy` union. -/// -@interface DBTEAMPOLICIESPaperDeploymentPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperDeploymentPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperDeploymentPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDeploymentPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperDeploymentPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperDeploymentPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDeploymentPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperDeploymentPolicy` -/// object. -/// -+ (DBTEAMPOLICIESPaperDeploymentPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDesktopPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDesktopPolicy.h deleted file mode 100644 index aa08bd43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperDesktopPolicy.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperDesktopPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperDesktopPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperDesktopPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESPaperDesktopPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperDesktopPolicyTag) { - /// Do not allow team members to use Paper Desktop. - DBTEAMPOLICIESPaperDesktopPolicyDisabled, - - /// Allow team members to use Paper Desktop. - DBTEAMPOLICIESPaperDesktopPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESPaperDesktopPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDesktopPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Do not allow team members to use -/// Paper Desktop. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Allow team members to use Paper -/// Desktop. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperDesktopPolicy` union. -/// -@interface DBTEAMPOLICIESPaperDesktopPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperDesktopPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperDesktopPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDesktopPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperDesktopPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperDesktopPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDesktopPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperDesktopPolicy` object. -/// -+ (DBTEAMPOLICIESPaperDesktopPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperEnabledPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperEnabledPolicy.h deleted file mode 100644 index c3612cfa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPaperEnabledPolicy.h +++ /dev/null @@ -1,156 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperEnabledPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperEnabledPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESPaperEnabledPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperEnabledPolicyTag) { - /// Paper is disabled. - DBTEAMPOLICIESPaperEnabledPolicyDisabled, - - /// Paper is enabled. - DBTEAMPOLICIESPaperEnabledPolicyEnabled, - - /// Unspecified policy. - DBTEAMPOLICIESPaperEnabledPolicyUnspecified, - - /// (no description). - DBTEAMPOLICIESPaperEnabledPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperEnabledPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Paper is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Paper is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "unspecified". -/// -/// Description of the "unspecified" tag state: Unspecified policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecified; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "unspecified". -/// -/// @return Whether the union's current tag state has value "unspecified". -/// -- (BOOL)isUnspecified; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperEnabledPolicy` union. -/// -@interface DBTEAMPOLICIESPaperEnabledPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperEnabledPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperEnabledPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperEnabledPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperEnabledPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperEnabledPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperEnabledPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperEnabledPolicy` object. -/// -+ (DBTEAMPOLICIESPaperEnabledPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPasswordControlMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPasswordControlMode.h deleted file mode 100644 index 656bbf4b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPasswordControlMode.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPasswordControlMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordControlMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPasswordControlMode : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPasswordControlModeTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESPasswordControlMode` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPasswordControlModeTag) { - /// Password is disabled. - DBTEAMPOLICIESPasswordControlModeDisabled, - - /// Password is enabled. - DBTEAMPOLICIESPasswordControlModeEnabled, - - /// (no description). - DBTEAMPOLICIESPasswordControlModeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordControlModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Password is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Password is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPasswordControlMode` union. -/// -@interface DBTEAMPOLICIESPasswordControlModeSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPasswordControlMode` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPasswordControlMode` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordControlMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPasswordControlMode *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPasswordControlMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordControlMode` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPasswordControlMode` object. -/// -+ (DBTEAMPOLICIESPasswordControlMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPasswordStrengthPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPasswordStrengthPolicy.h deleted file mode 100644 index 75fbe7e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESPasswordStrengthPolicy.h +++ /dev/null @@ -1,164 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPasswordStrengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordStrengthPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPasswordStrengthPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPasswordStrengthPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPasswordStrengthPolicyTag) { - /// User passwords will adhere to the minimal password strength policy. - DBTEAMPOLICIESPasswordStrengthPolicyMinimalRequirements, - - /// User passwords will adhere to the moderate password strength policy. - DBTEAMPOLICIESPasswordStrengthPolicyModeratePassword, - - /// User passwords will adhere to the very strong password strength policy. - DBTEAMPOLICIESPasswordStrengthPolicyStrongPassword, - - /// (no description). - DBTEAMPOLICIESPasswordStrengthPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "minimal_requirements". -/// -/// Description of the "minimal_requirements" tag state: User passwords will -/// adhere to the minimal password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMinimalRequirements; - -/// -/// Initializes union class with tag state of "moderate_password". -/// -/// Description of the "moderate_password" tag state: User passwords will adhere -/// to the moderate password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithModeratePassword; - -/// -/// Initializes union class with tag state of "strong_password". -/// -/// Description of the "strong_password" tag state: User passwords will adhere -/// to the very strong password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStrongPassword; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "minimal_requirements". -/// -/// @return Whether the union's current tag state has value -/// "minimal_requirements". -/// -- (BOOL)isMinimalRequirements; - -/// -/// Retrieves whether the union's current tag state has value -/// "moderate_password". -/// -/// @return Whether the union's current tag state has value "moderate_password". -/// -- (BOOL)isModeratePassword; - -/// -/// Retrieves whether the union's current tag state has value "strong_password". -/// -/// @return Whether the union's current tag state has value "strong_password". -/// -- (BOOL)isStrongPassword; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// union. -/// -@interface DBTEAMPOLICIESPasswordStrengthPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPasswordStrengthPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordStrengthPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPasswordStrengthPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPasswordStrengthPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordStrengthPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// object. -/// -+ (DBTEAMPOLICIESPasswordStrengthPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESRolloutMethod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESRolloutMethod.h deleted file mode 100644 index 33936193..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESRolloutMethod.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESRolloutMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RolloutMethod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESRolloutMethod : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESRolloutMethodTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESRolloutMethod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESRolloutMethodTag) { - /// Unlink all. - DBTEAMPOLICIESRolloutMethodUnlinkAll, - - /// Unlink devices with the most inactivity. - DBTEAMPOLICIESRolloutMethodUnlinkMostInactive, - - /// Add member to Exceptions. - DBTEAMPOLICIESRolloutMethodAddMemberToExceptions, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESRolloutMethodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unlink_all". -/// -/// Description of the "unlink_all" tag state: Unlink all. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkAll; - -/// -/// Initializes union class with tag state of "unlink_most_inactive". -/// -/// Description of the "unlink_most_inactive" tag state: Unlink devices with the -/// most inactivity. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkMostInactive; - -/// -/// Initializes union class with tag state of "add_member_to_exceptions". -/// -/// Description of the "add_member_to_exceptions" tag state: Add member to -/// Exceptions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAddMemberToExceptions; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "unlink_all". -/// -/// @return Whether the union's current tag state has value "unlink_all". -/// -- (BOOL)isUnlinkAll; - -/// -/// Retrieves whether the union's current tag state has value -/// "unlink_most_inactive". -/// -/// @return Whether the union's current tag state has value -/// "unlink_most_inactive". -/// -- (BOOL)isUnlinkMostInactive; - -/// -/// Retrieves whether the union's current tag state has value -/// "add_member_to_exceptions". -/// -/// @return Whether the union's current tag state has value -/// "add_member_to_exceptions". -/// -- (BOOL)isAddMemberToExceptions; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESRolloutMethod` union. -/// -@interface DBTEAMPOLICIESRolloutMethodSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESRolloutMethod` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESRolloutMethod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESRolloutMethod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESRolloutMethod *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESRolloutMethod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESRolloutMethod` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESRolloutMethod` object. -/// -+ (DBTEAMPOLICIESRolloutMethod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h deleted file mode 100644 index af39c26d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderBlanketLinkRestrictionPolicy` union. -/// -/// Policy governing whether shared folder membership is required to access -/// shared links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyTag` enum type -/// represents the possible tag states with which the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyTag) { - /// Only members of shared folders can access folder content via shared - /// link. - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyMembers, - - /// Anyone can access folder content via shared link. - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyAnyone, - - /// (no description). - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Only members of shared folders can -/// access folder content via shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Anyone can access folder content via -/// shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` union. -/// -@interface DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` object. -/// -+ (DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderJoinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderJoinPolicy.h deleted file mode 100644 index 7c2a2b3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderJoinPolicy.h +++ /dev/null @@ -1,144 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedFolderJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderJoinPolicy` union. -/// -/// Policy governing which shared folders a team member can join. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedFolderJoinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedFolderJoinPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedFolderJoinPolicyTag) { - /// Team members can only join folders shared by teammates. - DBTEAMPOLICIESSharedFolderJoinPolicyFromTeamOnly, - - /// Team members can join any shared folder, including those shared by users - /// outside the team. - DBTEAMPOLICIESSharedFolderJoinPolicyFromAnyone, - - /// (no description). - DBTEAMPOLICIESSharedFolderJoinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderJoinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_team_only". -/// -/// Description of the "from_team_only" tag state: Team members can only join -/// folders shared by teammates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromTeamOnly; - -/// -/// Initializes union class with tag state of "from_anyone". -/// -/// Description of the "from_anyone" tag state: Team members can join any shared -/// folder, including those shared by users outside the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_team_only". -/// -/// @return Whether the union's current tag state has value "from_team_only". -/// -- (BOOL)isFromTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "from_anyone". -/// -/// @return Whether the union's current tag state has value "from_anyone". -/// -- (BOOL)isFromAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// union. -/// -@interface DBTEAMPOLICIESSharedFolderJoinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedFolderJoinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderJoinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedFolderJoinPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedFolderJoinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderJoinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// object. -/// -+ (DBTEAMPOLICIESSharedFolderJoinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderMemberPolicy.h deleted file mode 100644 index 05be419b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedFolderMemberPolicy.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedFolderMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMemberPolicy` union. -/// -/// Policy governing who can be a member of a folder shared by a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedFolderMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedFolderMemberPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedFolderMemberPolicyTag) { - /// Only a teammate can be a member of a folder shared by a team member. - DBTEAMPOLICIESSharedFolderMemberPolicyTeam, - - /// Anyone can be a member of a folder shared by a team member. - DBTEAMPOLICIESSharedFolderMemberPolicyAnyone, - - /// (no description). - DBTEAMPOLICIESSharedFolderMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Only a teammate can be a member of a -/// folder shared by a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Anyone can be a member of a folder -/// shared by a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// union. -/// -@interface DBTEAMPOLICIESSharedFolderMemberPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedFolderMemberPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedFolderMemberPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedFolderMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderMemberPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// object. -/// -+ (DBTEAMPOLICIESSharedFolderMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedLinkCreatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedLinkCreatePolicy.h deleted file mode 100644 index 8c376e67..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSharedLinkCreatePolicy.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedLinkCreatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCreatePolicy` union. -/// -/// Policy governing the visibility of shared links. This policy can apply to -/// newly created shared links, or all shared links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedLinkCreatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedLinkCreatePolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedLinkCreatePolicyTag) { - /// By default, anyone can access newly created shared links. No login will - /// be required to access the shared links unless overridden. - DBTEAMPOLICIESSharedLinkCreatePolicyDefaultPublic, - - /// By default, only members of the same team can access newly created - /// shared links. Login will be required to access the shared links unless - /// overridden. - DBTEAMPOLICIESSharedLinkCreatePolicyDefaultTeamOnly, - - /// Only members of the same team can access all shared links. Login will be - /// required to access all shared links. - DBTEAMPOLICIESSharedLinkCreatePolicyTeamOnly, - - /// Only people invited can access newly created links. Login will be - /// required to access the shared links unless overridden. - DBTEAMPOLICIESSharedLinkCreatePolicyDefaultNoOne, - - /// (no description). - DBTEAMPOLICIESSharedLinkCreatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedLinkCreatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default_public". -/// -/// Description of the "default_public" tag state: By default, anyone can access -/// newly created shared links. No login will be required to access the shared -/// links unless overridden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultPublic; - -/// -/// Initializes union class with tag state of "default_team_only". -/// -/// Description of the "default_team_only" tag state: By default, only members -/// of the same team can access newly created shared links. Login will be -/// required to access the shared links unless overridden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultTeamOnly; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access all shared links. Login will be required to access all shared links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "default_no_one". -/// -/// Description of the "default_no_one" tag state: Only people invited can -/// access newly created links. Login will be required to access the shared -/// links unless overridden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultNoOne; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default_public". -/// -/// @return Whether the union's current tag state has value "default_public". -/// -- (BOOL)isDefaultPublic; - -/// -/// Retrieves whether the union's current tag state has value -/// "default_team_only". -/// -/// @return Whether the union's current tag state has value "default_team_only". -/// -- (BOOL)isDefaultTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "default_no_one". -/// -/// @return Whether the union's current tag state has value "default_no_one". -/// -- (BOOL)isDefaultNoOne; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// union. -/// -@interface DBTEAMPOLICIESSharedLinkCreatePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedLinkCreatePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedLinkCreatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedLinkCreatePolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedLinkCreatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedLinkCreatePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// object. -/// -+ (DBTEAMPOLICIESSharedLinkCreatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseDownloadPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseDownloadPolicy.h deleted file mode 100644 index aa8b9cfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseDownloadPolicy.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESShowcaseDownloadPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDownloadPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESShowcaseDownloadPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESShowcaseDownloadPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESShowcaseDownloadPolicyTag) { - /// Do not allow files to be downloaded from Showcases. - DBTEAMPOLICIESShowcaseDownloadPolicyDisabled, - - /// Allow files to be downloaded from Showcases. - DBTEAMPOLICIESShowcaseDownloadPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESShowcaseDownloadPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESShowcaseDownloadPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Do not allow files to be downloaded -/// from Showcases. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Allow files to be downloaded from -/// Showcases. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// union. -/// -@interface DBTEAMPOLICIESShowcaseDownloadPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESShowcaseDownloadPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseDownloadPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESShowcaseDownloadPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESShowcaseDownloadPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseDownloadPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// object. -/// -+ (DBTEAMPOLICIESShowcaseDownloadPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseEnabledPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseEnabledPolicy.h deleted file mode 100644 index c81e4a61..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseEnabledPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESShowcaseEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEnabledPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESShowcaseEnabledPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESShowcaseEnabledPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESShowcaseEnabledPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESShowcaseEnabledPolicyTag) { - /// Showcase is disabled. - DBTEAMPOLICIESShowcaseEnabledPolicyDisabled, - - /// Showcase is enabled. - DBTEAMPOLICIESShowcaseEnabledPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESShowcaseEnabledPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESShowcaseEnabledPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Showcase is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Showcase is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESShowcaseEnabledPolicy` union. -/// -@interface DBTEAMPOLICIESShowcaseEnabledPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESShowcaseEnabledPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESShowcaseEnabledPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseEnabledPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESShowcaseEnabledPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESShowcaseEnabledPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseEnabledPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESShowcaseEnabledPolicy` -/// object. -/// -+ (DBTEAMPOLICIESShowcaseEnabledPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseExternalSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseExternalSharingPolicy.h deleted file mode 100644 index 57b16c20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESShowcaseExternalSharingPolicy.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESShowcaseExternalSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseExternalSharingPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESShowcaseExternalSharingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESShowcaseExternalSharingPolicyTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESShowcaseExternalSharingPolicyTag) { - /// Do not allow showcases to be shared with people not on the team. - DBTEAMPOLICIESShowcaseExternalSharingPolicyDisabled, - - /// Allow showcases to be shared with people not on the team. - DBTEAMPOLICIESShowcaseExternalSharingPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESShowcaseExternalSharingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESShowcaseExternalSharingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Do not allow showcases to be shared -/// with people not on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Allow showcases to be shared with -/// people not on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` union. -/// -@interface DBTEAMPOLICIESShowcaseExternalSharingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESShowcaseExternalSharingPolicy` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESShowcaseExternalSharingPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESShowcaseExternalSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` object. -/// -+ (DBTEAMPOLICIESShowcaseExternalSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSmartSyncPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSmartSyncPolicy.h deleted file mode 100644 index e0752d10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSmartSyncPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSmartSyncPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSmartSyncPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSmartSyncPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESSmartSyncPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSmartSyncPolicyTag) { - /// The specified content will be synced as local files by default. - DBTEAMPOLICIESSmartSyncPolicyLocal, - - /// The specified content will be synced as on-demand files by default. - DBTEAMPOLICIESSmartSyncPolicyOnDemand, - - /// (no description). - DBTEAMPOLICIESSmartSyncPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSmartSyncPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "local". -/// -/// Description of the "local" tag state: The specified content will be synced -/// as local files by default. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocal; - -/// -/// Initializes union class with tag state of "on_demand". -/// -/// Description of the "on_demand" tag state: The specified content will be -/// synced as on-demand files by default. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnDemand; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "local". -/// -/// @return Whether the union's current tag state has value "local". -/// -- (BOOL)isLocal; - -/// -/// Retrieves whether the union's current tag state has value "on_demand". -/// -/// @return Whether the union's current tag state has value "on_demand". -/// -- (BOOL)isOnDemand; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSmartSyncPolicy` union. -/// -@interface DBTEAMPOLICIESSmartSyncPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSmartSyncPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSmartSyncPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmartSyncPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSmartSyncPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSmartSyncPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmartSyncPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSmartSyncPolicy` object. -/// -+ (DBTEAMPOLICIESSmartSyncPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSmarterSmartSyncPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSmarterSmartSyncPolicyState.h deleted file mode 100644 index 431c7aa6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSmarterSmartSyncPolicyState.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSmarterSmartSyncPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmarterSmartSyncPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSmarterSmartSyncPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSmarterSmartSyncPolicyStateTag` enum type represents the -/// possible tag states with which the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSmarterSmartSyncPolicyStateTag) { - /// Smarter Smart Sync feature is disabled. - DBTEAMPOLICIESSmarterSmartSyncPolicyStateDisabled, - - /// Smarter Smart Sync feature is enabled. - DBTEAMPOLICIESSmarterSmartSyncPolicyStateEnabled, - - /// (no description). - DBTEAMPOLICIESSmarterSmartSyncPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSmarterSmartSyncPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Smarter Smart Sync feature is -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Smarter Smart Sync feature is -/// enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSmarterSmartSyncPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESSmarterSmartSyncPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSmarterSmartSyncPolicyState` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSmarterSmartSyncPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSmarterSmartSyncPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSmarterSmartSyncPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESSmarterSmartSyncPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSsoPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSsoPolicy.h deleted file mode 100644 index f0a483de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSsoPolicy.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSsoPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSsoPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESSsoPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSsoPolicyTag) { - /// Users will be able to sign in with their Dropbox credentials. - DBTEAMPOLICIESSsoPolicyDisabled, - - /// Users will be able to sign in with either their Dropbox or single - /// sign-on credentials. - DBTEAMPOLICIESSsoPolicyOptional, - - /// Users will be required to sign in with their single sign-on credentials. - DBTEAMPOLICIESSsoPolicyRequired, - - /// (no description). - DBTEAMPOLICIESSsoPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSsoPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Users will be able to sign in with -/// their Dropbox credentials. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "optional". -/// -/// Description of the "optional" tag state: Users will be able to sign in with -/// either their Dropbox or single sign-on credentials. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "required". -/// -/// Description of the "required" tag state: Users will be required to sign in -/// with their single sign-on credentials. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSsoPolicy` union. -/// -@interface DBTEAMPOLICIESSsoPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSsoPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSsoPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSsoPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSsoPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSsoPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSsoPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSsoPolicy` object. -/// -+ (DBTEAMPOLICIESSsoPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSuggestMembersPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSuggestMembersPolicy.h deleted file mode 100644 index 21e0b17b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESSuggestMembersPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSuggestMembersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SuggestMembersPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSuggestMembersPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSuggestMembersPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSuggestMembersPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSuggestMembersPolicyTag) { - /// Suggest members is disabled. - DBTEAMPOLICIESSuggestMembersPolicyDisabled, - - /// Suggest members is enabled. - DBTEAMPOLICIESSuggestMembersPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESSuggestMembersPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSuggestMembersPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Suggest members is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Suggest members is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSuggestMembersPolicy` union. -/// -@interface DBTEAMPOLICIESSuggestMembersPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSuggestMembersPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSuggestMembersPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSuggestMembersPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSuggestMembersPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSuggestMembersPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSuggestMembersPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSuggestMembersPolicy` object. -/// -+ (DBTEAMPOLICIESSuggestMembersPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTeamMemberPolicies.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTeamMemberPolicies.h deleted file mode 100644 index 9d2a7047..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTeamMemberPolicies.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESEmmState; -@class DBTEAMPOLICIESOfficeAddInPolicy; -@class DBTEAMPOLICIESSuggestMembersPolicy; -@class DBTEAMPOLICIESTeamMemberPolicies; -@class DBTEAMPOLICIESTeamSharingPolicies; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberPolicies` struct. -/// -/// Policies governing team members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTeamMemberPolicies : NSObject - -#pragma mark - Instance fields - -/// Policies governing sharing. -@property (nonatomic, readonly) DBTEAMPOLICIESTeamSharingPolicies *sharing; - -/// This describes the Enterprise Mobility Management (EMM) state for this team. -/// This information can be used to understand if an organization is integrating -/// with a third-party EMM vendor to further manage and apply restrictions upon -/// the team's Dropbox usage on mobile devices. This is a new feature and in the -/// future we'll be adding more new fields and additional documentation. -@property (nonatomic, readonly) DBTEAMPOLICIESEmmState *emmState; - -/// The admin policy around the Dropbox Office Add-In for this team. -@property (nonatomic, readonly) DBTEAMPOLICIESOfficeAddInPolicy *officeAddin; - -/// The team policy on if teammembers are allowed to suggest users for admins to -/// invite to the team. -@property (nonatomic, readonly) DBTEAMPOLICIESSuggestMembersPolicy *suggestMembersPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharing Policies governing sharing. -/// @param emmState This describes the Enterprise Mobility Management (EMM) -/// state for this team. This information can be used to understand if an -/// organization is integrating with a third-party EMM vendor to further manage -/// and apply restrictions upon the team's Dropbox usage on mobile devices. This -/// is a new feature and in the future we'll be adding more new fields and -/// additional documentation. -/// @param officeAddin The admin policy around the Dropbox Office Add-In for -/// this team. -/// @param suggestMembersPolicy The team policy on if teammembers are allowed to -/// suggest users for admins to invite to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharing:(DBTEAMPOLICIESTeamSharingPolicies *)sharing - emmState:(DBTEAMPOLICIESEmmState *)emmState - officeAddin:(DBTEAMPOLICIESOfficeAddInPolicy *)officeAddin - suggestMembersPolicy:(DBTEAMPOLICIESSuggestMembersPolicy *)suggestMembersPolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberPolicies` struct. -/// -@interface DBTEAMPOLICIESTeamMemberPoliciesSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTeamMemberPolicies` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTeamMemberPolicies` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamMemberPolicies` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTeamMemberPolicies *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTeamMemberPolicies` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamMemberPolicies` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTeamMemberPolicies` object. -/// -+ (DBTEAMPOLICIESTeamMemberPolicies *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTeamSharingPolicies.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTeamSharingPolicies.h deleted file mode 100644 index 0e7aa3ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTeamSharingPolicies.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESGroupCreation; -@class DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy; -@class DBTEAMPOLICIESSharedFolderJoinPolicy; -@class DBTEAMPOLICIESSharedFolderMemberPolicy; -@class DBTEAMPOLICIESSharedLinkCreatePolicy; -@class DBTEAMPOLICIESTeamSharingPolicies; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSharingPolicies` struct. -/// -/// Policies governing sharing within and outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTeamSharingPolicies : NSObject - -#pragma mark - Instance fields - -/// Who can join folders shared by team members. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderMemberPolicy *sharedFolderMemberPolicy; - -/// Which shared folders team members can join. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderJoinPolicy *sharedFolderJoinPolicy; - -/// Who can view shared links owned by team members. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedLinkCreatePolicy *sharedLinkCreatePolicy; - -/// Who can create groups. -@property (nonatomic, readonly) DBTEAMPOLICIESGroupCreation *groupCreationPolicy; - -/// Who can view links to content in shared folders. -@property (nonatomic, readonly) - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *sharedFolderLinkRestrictionPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderMemberPolicy Who can join folders shared by team members. -/// @param sharedFolderJoinPolicy Which shared folders team members can join. -/// @param sharedLinkCreatePolicy Who can view shared links owned by team -/// members. -/// @param groupCreationPolicy Who can create groups. -/// @param sharedFolderLinkRestrictionPolicy Who can view links to content in -/// shared folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMemberPolicy:(DBTEAMPOLICIESSharedFolderMemberPolicy *)sharedFolderMemberPolicy - sharedFolderJoinPolicy:(DBTEAMPOLICIESSharedFolderJoinPolicy *)sharedFolderJoinPolicy - sharedLinkCreatePolicy:(DBTEAMPOLICIESSharedLinkCreatePolicy *)sharedLinkCreatePolicy - groupCreationPolicy:(DBTEAMPOLICIESGroupCreation *)groupCreationPolicy - sharedFolderLinkRestrictionPolicy: - (DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *)sharedFolderLinkRestrictionPolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSharingPolicies` struct. -/// -@interface DBTEAMPOLICIESTeamSharingPoliciesSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTeamSharingPolicies` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTeamSharingPolicies` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamSharingPolicies` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTeamSharingPolicies *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTeamSharingPolicies` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamSharingPolicies` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTeamSharingPolicies` object. -/// -+ (DBTEAMPOLICIESTeamSharingPolicies *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTwoStepVerificationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTwoStepVerificationPolicy.h deleted file mode 100644 index c445cb30..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTwoStepVerificationPolicy.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESTwoStepVerificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoStepVerificationPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTwoStepVerificationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESTwoStepVerificationPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESTwoStepVerificationPolicyTag) { - /// Enabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationPolicyRequireTfaEnable, - - /// Disabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationPolicyRequireTfaDisable, - - /// (no description). - DBTEAMPOLICIESTwoStepVerificationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "require_tfa_enable". -/// -/// Description of the "require_tfa_enable" tag state: Enabled require two -/// factor authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequireTfaEnable; - -/// -/// Initializes union class with tag state of "require_tfa_disable". -/// -/// Description of the "require_tfa_disable" tag state: Disabled require two -/// factor authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequireTfaDisable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "require_tfa_enable". -/// -/// @return Whether the union's current tag state has value -/// "require_tfa_enable". -/// -- (BOOL)isRequireTfaEnable; - -/// -/// Retrieves whether the union's current tag state has value -/// "require_tfa_disable". -/// -/// @return Whether the union's current tag state has value -/// "require_tfa_disable". -/// -- (BOOL)isRequireTfaDisable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// union. -/// -@interface DBTEAMPOLICIESTwoStepVerificationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTwoStepVerificationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTwoStepVerificationPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTwoStepVerificationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// object. -/// -+ (DBTEAMPOLICIESTwoStepVerificationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTwoStepVerificationState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTwoStepVerificationState.h deleted file mode 100644 index 4030d14d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMPOLICIESTwoStepVerificationState.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESTwoStepVerificationState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoStepVerificationState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTwoStepVerificationState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESTwoStepVerificationStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESTwoStepVerificationState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESTwoStepVerificationStateTag) { - /// Enabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationStateRequired, - - /// Optional require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationStateOptional, - - /// Disabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationStateDisabled, - - /// (no description). - DBTEAMPOLICIESTwoStepVerificationStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "required". -/// -/// Description of the "required" tag state: Enabled require two factor -/// authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "optional". -/// -/// Description of the "optional" tag state: Optional require two factor -/// authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Disabled require two factor -/// authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESTwoStepVerificationState` -/// union. -/// -@interface DBTEAMPOLICIESTwoStepVerificationStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTwoStepVerificationState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTwoStepVerificationState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTwoStepVerificationState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTwoStepVerificationState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTwoStepVerificationState` -/// object. -/// -+ (DBTEAMPOLICIESTwoStepVerificationState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRemoveCustomQuotaResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRemoveCustomQuotaResult.h deleted file mode 100644 index 93a9c1d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRemoveCustomQuotaResult.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRemoveCustomQuotaResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveCustomQuotaResult` union. -/// -/// User result for setting member custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRemoveCustomQuotaResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRemoveCustomQuotaResultTag` enum type represents the possible tag -/// states with which the `DBTEAMRemoveCustomQuotaResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRemoveCustomQuotaResultTag) { - /// Successfully removed user. - DBTEAMRemoveCustomQuotaResultSuccess, - - /// Invalid user (not in team). - DBTEAMRemoveCustomQuotaResultInvalidUser, - - /// (no description). - DBTEAMRemoveCustomQuotaResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRemoveCustomQuotaResultTag tag; - -/// Successfully removed user. @note Ensure the `isSuccess` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *success; - -/// Invalid user (not in team). @note Ensure the `isInvalidUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Successfully removed user. -/// -/// @param success Successfully removed user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserSelectorArg *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Invalid user (not in team). -/// -/// @param invalidUser Invalid user (not in team). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRemoveCustomQuotaResult` union. -/// -@interface DBTEAMRemoveCustomQuotaResultSerializer : NSObject - -/// -/// Serializes `DBTEAMRemoveCustomQuotaResult` instances. -/// -/// @param instance An instance of the `DBTEAMRemoveCustomQuotaResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRemoveCustomQuotaResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRemoveCustomQuotaResult *)instance; - -/// -/// Deserializes `DBTEAMRemoveCustomQuotaResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRemoveCustomQuotaResult` API object. -/// -/// @return An instantiation of the `DBTEAMRemoveCustomQuotaResult` object. -/// -+ (DBTEAMRemoveCustomQuotaResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRemovedStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRemovedStatus.h deleted file mode 100644 index 964e6321..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRemovedStatus.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRemovedStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovedStatus` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRemovedStatus : NSObject - -#pragma mark - Instance fields - -/// True if the removed team member is recoverable. -@property (nonatomic, readonly) NSNumber *isRecoverable; - -/// True if the team member's account was converted to individual account. -@property (nonatomic, readonly) NSNumber *isDisconnected; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isRecoverable True if the removed team member is recoverable. -/// @param isDisconnected True if the team member's account was converted to -/// individual account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsRecoverable:(NSNumber *)isRecoverable isDisconnected:(NSNumber *)isDisconnected; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemovedStatus` struct. -/// -@interface DBTEAMRemovedStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMRemovedStatus` instances. -/// -/// @param instance An instance of the `DBTEAMRemovedStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRemovedStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRemovedStatus *)instance; - -/// -/// Deserializes `DBTEAMRemovedStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRemovedStatus` API object. -/// -/// @return An instantiation of the `DBTEAMRemovedStatus` object. -/// -+ (DBTEAMRemovedStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendSecondaryEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendSecondaryEmailResult.h deleted file mode 100644 index f2d215db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendSecondaryEmailResult.h +++ /dev/null @@ -1,198 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendSecondaryEmailResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResendSecondaryEmailResult` union. -/// -/// Result of trying to resend verification email to a secondary email address. -/// 'success' is the only value indicating that a verification email was -/// successfully sent. The other values explain the type of error that occurred, -/// and include the email for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMResendSecondaryEmailResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMResendSecondaryEmailResultTag` enum type represents the possible -/// tag states with which the `DBTEAMResendSecondaryEmailResult` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMResendSecondaryEmailResultTag) { - /// A verification email was successfully sent to the secondary email - /// address. - DBTEAMResendSecondaryEmailResultSuccess, - - /// This secondary email address is not pending for the user. - DBTEAMResendSecondaryEmailResultNotPending, - - /// Too many emails are being sent to this email address. Please try again - /// later. - DBTEAMResendSecondaryEmailResultRateLimited, - - /// (no description). - DBTEAMResendSecondaryEmailResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMResendSecondaryEmailResultTag tag; - -/// A verification email was successfully sent to the secondary email address. -/// @note Ensure the `isSuccess` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *success; - -/// This secondary email address is not pending for the user. @note Ensure the -/// `isNotPending` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *notPending; - -/// Too many emails are being sent to this email address. Please try again -/// later. @note Ensure the `isRateLimited` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *rateLimited; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: A verification email was -/// successfully sent to the secondary email address. -/// -/// @param success A verification email was successfully sent to the secondary -/// email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSString *)success; - -/// -/// Initializes union class with tag state of "not_pending". -/// -/// Description of the "not_pending" tag state: This secondary email address is -/// not pending for the user. -/// -/// @param notPending This secondary email address is not pending for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotPending:(NSString *)notPending; - -/// -/// Initializes union class with tag state of "rate_limited". -/// -/// Description of the "rate_limited" tag state: Too many emails are being sent -/// to this email address. Please try again later. -/// -/// @param rateLimited Too many emails are being sent to this email address. -/// Please try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimited:(NSString *)rateLimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "not_pending". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `notPending` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "not_pending". -/// -- (BOOL)isNotPending; - -/// -/// Retrieves whether the union's current tag state has value "rate_limited". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rateLimited` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "rate_limited". -/// -- (BOOL)isRateLimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMResendSecondaryEmailResult` union. -/// -@interface DBTEAMResendSecondaryEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMResendSecondaryEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMResendSecondaryEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMResendSecondaryEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMResendSecondaryEmailResult *)instance; - -/// -/// Deserializes `DBTEAMResendSecondaryEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMResendSecondaryEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMResendSecondaryEmailResult` object. -/// -+ (DBTEAMResendSecondaryEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendVerificationEmailArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendVerificationEmailArg.h deleted file mode 100644 index b7cb6c38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendVerificationEmailArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendVerificationEmailArg; -@class DBTEAMUserSecondaryEmailsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResendVerificationEmailArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMResendVerificationEmailArg : NSObject - -#pragma mark - Instance fields - -/// List of users and secondary emails to resend verification emails to. -@property (nonatomic, readonly) NSArray *emailsToResend; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param emailsToResend List of users and secondary emails to resend -/// verification emails to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailsToResend:(NSArray *)emailsToResend; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResendVerificationEmailArg` struct. -/// -@interface DBTEAMResendVerificationEmailArgSerializer : NSObject - -/// -/// Serializes `DBTEAMResendVerificationEmailArg` instances. -/// -/// @param instance An instance of the `DBTEAMResendVerificationEmailArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMResendVerificationEmailArg *)instance; - -/// -/// Deserializes `DBTEAMResendVerificationEmailArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailArg` API object. -/// -/// @return An instantiation of the `DBTEAMResendVerificationEmailArg` object. -/// -+ (DBTEAMResendVerificationEmailArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendVerificationEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendVerificationEmailResult.h deleted file mode 100644 index 05431f03..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMResendVerificationEmailResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendVerificationEmailResult; -@class DBTEAMUserResendResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResendVerificationEmailResult` struct. -/// -/// List of users and resend results. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMResendVerificationEmailResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResults:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResendVerificationEmailResult` struct. -/// -@interface DBTEAMResendVerificationEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMResendVerificationEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMResendVerificationEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMResendVerificationEmailResult *)instance; - -/// -/// Deserializes `DBTEAMResendVerificationEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMResendVerificationEmailResult` -/// object. -/// -+ (DBTEAMResendVerificationEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDesktopClientArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDesktopClientArg.h deleted file mode 100644 index 9fc3a9dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDesktopClientArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSessionArg.h" - -@class DBTEAMRevokeDesktopClientArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDesktopClientArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDesktopClientArg : DBTEAMDeviceSessionArg - -#pragma mark - Instance fields - -/// Whether to delete all files of the account (this is possible only if -/// supported by the desktop client and will be made the next time the client -/// access the account). -@property (nonatomic, readonly) NSNumber *deleteOnUnlink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param teamMemberId The unique id of the member owning the device. -/// @param deleteOnUnlink Whether to delete all files of the account (this is -/// possible only if supported by the desktop client and will be made the next -/// time the client access the account). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - teamMemberId:(NSString *)teamMemberId - deleteOnUnlink:(nullable NSNumber *)deleteOnUnlink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId teamMemberId:(NSString *)teamMemberId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDesktopClientArg` struct. -/// -@interface DBTEAMRevokeDesktopClientArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDesktopClientArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDesktopClientArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDesktopClientArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDesktopClientArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeDesktopClientArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDesktopClientArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDesktopClientArg` object. -/// -+ (DBTEAMRevokeDesktopClientArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionArg.h deleted file mode 100644 index de2ebcfc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionArg.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeviceSessionArg; -@class DBTEAMRevokeDesktopClientArg; -@class DBTEAMRevokeDeviceSessionArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionArg` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeDeviceSessionArgTag` enum type represents the possible tag -/// states with which the `DBTEAMRevokeDeviceSessionArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeDeviceSessionArgTag) { - /// End an active session. - DBTEAMRevokeDeviceSessionArgWebSession, - - /// Unlink a linked desktop device. - DBTEAMRevokeDeviceSessionArgDesktopClient, - - /// Unlink a linked mobile device. - DBTEAMRevokeDeviceSessionArgMobileClient, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeDeviceSessionArgTag tag; - -/// End an active session. @note Ensure the `isWebSession` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMDeviceSessionArg *webSession; - -/// Unlink a linked desktop device. @note Ensure the `isDesktopClient` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMRevokeDesktopClientArg *desktopClient; - -/// Unlink a linked mobile device. @note Ensure the `isMobileClient` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMDeviceSessionArg *mobileClient; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "web_session". -/// -/// Description of the "web_session" tag state: End an active session. -/// -/// @param webSession End an active session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSession:(DBTEAMDeviceSessionArg *)webSession; - -/// -/// Initializes union class with tag state of "desktop_client". -/// -/// Description of the "desktop_client" tag state: Unlink a linked desktop -/// device. -/// -/// @param desktopClient Unlink a linked desktop device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopClient:(DBTEAMRevokeDesktopClientArg *)desktopClient; - -/// -/// Initializes union class with tag state of "mobile_client". -/// -/// Description of the "mobile_client" tag state: Unlink a linked mobile device. -/// -/// @param mobileClient Unlink a linked mobile device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileClient:(DBTEAMDeviceSessionArg *)mobileClient; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "web_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSession` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "web_session". -/// -- (BOOL)isWebSession; - -/// -/// Retrieves whether the union's current tag state has value "desktop_client". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `desktopClient` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "desktop_client". -/// -- (BOOL)isDesktopClient; - -/// -/// Retrieves whether the union's current tag state has value "mobile_client". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `mobileClient` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "mobile_client". -/// -- (BOOL)isMobileClient; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeDeviceSessionArg` union. -/// -@interface DBTEAMRevokeDeviceSessionArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionArg` object. -/// -+ (DBTEAMRevokeDeviceSessionArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchArg.h deleted file mode 100644 index d07713d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionArg; -@class DBTEAMRevokeDeviceSessionBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionBatchArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeDevices; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeDevices (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeDevices:(NSArray *)revokeDevices; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDeviceSessionBatchArg` struct. -/// -@interface DBTEAMRevokeDeviceSessionBatchArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionBatchArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionBatchArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionBatchArg` object. -/// -+ (DBTEAMRevokeDeviceSessionBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchError.h deleted file mode 100644 index 1c00e80f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchError.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeDeviceSessionBatchErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMRevokeDeviceSessionBatchError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeDeviceSessionBatchErrorTag) { - /// (no description). - DBTEAMRevokeDeviceSessionBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeDeviceSessionBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeDeviceSessionBatchError` union. -/// -@interface DBTEAMRevokeDeviceSessionBatchErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionBatchError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionBatchError *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionBatchError` -/// object. -/// -+ (DBTEAMRevokeDeviceSessionBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchResult.h deleted file mode 100644 index c00aa68d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionBatchResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionBatchResult; -@class DBTEAMRevokeDeviceSessionStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeDevicesStatus; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeDevicesStatus (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeDevicesStatus:(NSArray *)revokeDevicesStatus; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDeviceSessionBatchResult` struct. -/// -@interface DBTEAMRevokeDeviceSessionBatchResultSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionBatchResult` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionBatchResult *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchResult` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionBatchResult` -/// object. -/// -+ (DBTEAMRevokeDeviceSessionBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionError.h deleted file mode 100644 index 5f4e8cf3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeDeviceSessionErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMRevokeDeviceSessionError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeDeviceSessionErrorTag) { - /// Device session not found. - DBTEAMRevokeDeviceSessionErrorDeviceSessionNotFound, - - /// Member not found. - DBTEAMRevokeDeviceSessionErrorMemberNotFound, - - /// (no description). - DBTEAMRevokeDeviceSessionErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeDeviceSessionErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "device_session_not_found". -/// -/// Description of the "device_session_not_found" tag state: Device session not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionNotFound; - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "device_session_not_found". -/// -/// @return Whether the union's current tag state has value -/// "device_session_not_found". -/// -- (BOOL)isDeviceSessionNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeDeviceSessionError` union. -/// -@interface DBTEAMRevokeDeviceSessionErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionError *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionError` object. -/// -+ (DBTEAMRevokeDeviceSessionError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionStatus.h deleted file mode 100644 index 9a8362ca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeDeviceSessionStatus.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionError; -@class DBTEAMRevokeDeviceSessionStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionStatus` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionStatus : NSObject - -#pragma mark - Instance fields - -/// Result of the revoking request. -@property (nonatomic, readonly) NSNumber *success; - -/// The error cause in case of a failure. -@property (nonatomic, readonly, nullable) DBTEAMRevokeDeviceSessionError *errorType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param success Result of the revoking request. -/// @param errorType The error cause in case of a failure. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success errorType:(nullable DBTEAMRevokeDeviceSessionError *)errorType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param success Result of the revoking request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDeviceSessionStatus` struct. -/// -@interface DBTEAMRevokeDeviceSessionStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionStatus` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionStatus *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionStatus` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionStatus` object. -/// -+ (DBTEAMRevokeDeviceSessionStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedApiAppArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedApiAppArg.h deleted file mode 100644 index ee941d5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedApiAppArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedApiAppArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedApiAppArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedApiAppArg : NSObject - -#pragma mark - Instance fields - -/// The application's unique id. -@property (nonatomic, readonly, copy) NSString *appId; - -/// The unique id of the member owning the device. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// This flag is not longer supported, the application dedicated folder (in case -/// the application uses one) will be kept. -@property (nonatomic, readonly) NSNumber *keepAppFolder; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// @param keepAppFolder This flag is not longer supported, the application -/// dedicated folder (in case the application uses one) will be kept. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId - teamMemberId:(NSString *)teamMemberId - keepAppFolder:(nullable NSNumber *)keepAppFolder; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId teamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedApiAppArg` struct. -/// -@interface DBTEAMRevokeLinkedApiAppArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedApiAppArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedApiAppArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedApiAppArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedApiAppArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedApiAppArg` object. -/// -+ (DBTEAMRevokeLinkedApiAppArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedApiAppBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedApiAppBatchArg.h deleted file mode 100644 index d3ffbd56..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedApiAppBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedApiAppArg; -@class DBTEAMRevokeLinkedApiAppBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedApiAppBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedApiAppBatchArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeLinkedApp; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeLinkedApp (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeLinkedApp:(NSArray *)revokeLinkedApp; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedApiAppBatchArg` struct. -/// -@interface DBTEAMRevokeLinkedApiAppBatchArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedApiAppBatchArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedApiAppBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedApiAppBatchArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedApiAppBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppBatchArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedApiAppBatchArg` object. -/// -+ (DBTEAMRevokeLinkedApiAppBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppBatchError.h deleted file mode 100644 index 3802743d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppBatchError.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppBatchError` union. -/// -/// Error returned by `linkedAppsRevokeLinkedAppBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeLinkedAppBatchErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMRevokeLinkedAppBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeLinkedAppBatchErrorTag) { - /// (no description). - DBTEAMRevokeLinkedAppBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeLinkedAppBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeLinkedAppBatchError` union. -/// -@interface DBTEAMRevokeLinkedAppBatchErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppBatchError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppBatchError *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppBatchError` object. -/// -+ (DBTEAMRevokeLinkedAppBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppBatchResult.h deleted file mode 100644 index 7da14697..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppBatchResult; -@class DBTEAMRevokeLinkedAppStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeLinkedAppStatus; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeLinkedAppStatus (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeLinkedAppStatus:(NSArray *)revokeLinkedAppStatus; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedAppBatchResult` struct. -/// -@interface DBTEAMRevokeLinkedAppBatchResultSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppBatchResult` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppBatchResult *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchResult` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppBatchResult` object. -/// -+ (DBTEAMRevokeLinkedAppBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppError.h deleted file mode 100644 index 1db1dfe2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppError` union. -/// -/// Error returned by `linkedAppsRevokeLinkedApp`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeLinkedAppErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMRevokeLinkedAppError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeLinkedAppErrorTag) { - /// Application not found. - DBTEAMRevokeLinkedAppErrorAppNotFound, - - /// Member not found. - DBTEAMRevokeLinkedAppErrorMemberNotFound, - - /// App folder removal is not supported. - DBTEAMRevokeLinkedAppErrorAppFolderRemovalNotSupported, - - /// (no description). - DBTEAMRevokeLinkedAppErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeLinkedAppErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "app_not_found". -/// -/// Description of the "app_not_found" tag state: Application not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppNotFound; - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of -/// "app_folder_removal_not_supported". -/// -/// Description of the "app_folder_removal_not_supported" tag state: App folder -/// removal is not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppFolderRemovalNotSupported; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "app_not_found". -/// -/// @return Whether the union's current tag state has value "app_not_found". -/// -- (BOOL)isAppNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_folder_removal_not_supported". -/// -/// @return Whether the union's current tag state has value -/// "app_folder_removal_not_supported". -/// -- (BOOL)isAppFolderRemovalNotSupported; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeLinkedAppError` union. -/// -@interface DBTEAMRevokeLinkedAppErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppError *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppError` object. -/// -+ (DBTEAMRevokeLinkedAppError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppStatus.h deleted file mode 100644 index 4f68ca1d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRevokeLinkedAppStatus.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppError; -@class DBTEAMRevokeLinkedAppStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppStatus` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppStatus : NSObject - -#pragma mark - Instance fields - -/// Result of the revoking request. -@property (nonatomic, readonly) NSNumber *success; - -/// The error cause in case of a failure. -@property (nonatomic, readonly, nullable) DBTEAMRevokeLinkedAppError *errorType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param success Result of the revoking request. -/// @param errorType The error cause in case of a failure. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success errorType:(nullable DBTEAMRevokeLinkedAppError *)errorType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param success Result of the revoking request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedAppStatus` struct. -/// -@interface DBTEAMRevokeLinkedAppStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppStatus` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppStatus *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppStatus` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppStatus` object. -/// -+ (DBTEAMRevokeLinkedAppStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRouteObjects.h deleted file mode 100644 index b4bb7180..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMRouteObjects.h +++ /dev/null @@ -1,303 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Team namespace. Each route in the Team namespace -/// has its own static object, which contains information about the route. -/// -@interface DBTEAMRouteObjects : NSObject - -/// Accessor method for the devicesListMemberDevices route object. -+ (DBRoute *)DBTEAMDevicesListMemberDevices; - -/// Accessor method for the devicesListMembersDevices route object. -+ (DBRoute *)DBTEAMDevicesListMembersDevices; - -/// Accessor method for the devicesListTeamDevices route object. -+ (DBRoute *)DBTEAMDevicesListTeamDevices; - -/// Accessor method for the devicesRevokeDeviceSession route object. -+ (DBRoute *)DBTEAMDevicesRevokeDeviceSession; - -/// Accessor method for the devicesRevokeDeviceSessionBatch route object. -+ (DBRoute *)DBTEAMDevicesRevokeDeviceSessionBatch; - -/// Accessor method for the featuresGetValues route object. -+ (DBRoute *)DBTEAMFeaturesGetValues; - -/// Accessor method for the getInfo route object. -+ (DBRoute *)DBTEAMGetInfo; - -/// Accessor method for the groupsCreate route object. -+ (DBRoute *)DBTEAMGroupsCreate; - -/// Accessor method for the groupsDelete route object. -+ (DBRoute *)DBTEAMGroupsDelete; - -/// Accessor method for the groupsGetInfo route object. -+ (DBRoute *)DBTEAMGroupsGetInfo; - -/// Accessor method for the groupsJobStatusGet route object. -+ (DBRoute *)DBTEAMGroupsJobStatusGet; - -/// Accessor method for the groupsList route object. -+ (DBRoute *)DBTEAMGroupsList; - -/// Accessor method for the groupsListContinue route object. -+ (DBRoute *)DBTEAMGroupsListContinue; - -/// Accessor method for the groupsMembersAdd route object. -+ (DBRoute *)DBTEAMGroupsMembersAdd; - -/// Accessor method for the groupsMembersList route object. -+ (DBRoute *)DBTEAMGroupsMembersList; - -/// Accessor method for the groupsMembersListContinue route object. -+ (DBRoute *)DBTEAMGroupsMembersListContinue; - -/// Accessor method for the groupsMembersRemove route object. -+ (DBRoute *)DBTEAMGroupsMembersRemove; - -/// Accessor method for the groupsMembersSetAccessType route object. -+ (DBRoute *)DBTEAMGroupsMembersSetAccessType; - -/// Accessor method for the groupsUpdate route object. -+ (DBRoute *)DBTEAMGroupsUpdate; - -/// Accessor method for the legalHoldsCreatePolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsCreatePolicy; - -/// Accessor method for the legalHoldsGetPolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsGetPolicy; - -/// Accessor method for the legalHoldsListHeldRevisions route object. -+ (DBRoute *)DBTEAMLegalHoldsListHeldRevisions; - -/// Accessor method for the legalHoldsListHeldRevisionsContinue route object. -+ (DBRoute *)DBTEAMLegalHoldsListHeldRevisionsContinue; - -/// Accessor method for the legalHoldsListPolicies route object. -+ (DBRoute *)DBTEAMLegalHoldsListPolicies; - -/// Accessor method for the legalHoldsReleasePolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsReleasePolicy; - -/// Accessor method for the legalHoldsUpdatePolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsUpdatePolicy; - -/// Accessor method for the linkedAppsListMemberLinkedApps route object. -+ (DBRoute *)DBTEAMLinkedAppsListMemberLinkedApps; - -/// Accessor method for the linkedAppsListMembersLinkedApps route object. -+ (DBRoute *)DBTEAMLinkedAppsListMembersLinkedApps; - -/// Accessor method for the linkedAppsListTeamLinkedApps route object. -+ (DBRoute *)DBTEAMLinkedAppsListTeamLinkedApps; - -/// Accessor method for the linkedAppsRevokeLinkedApp route object. -+ (DBRoute *)DBTEAMLinkedAppsRevokeLinkedApp; - -/// Accessor method for the linkedAppsRevokeLinkedAppBatch route object. -+ (DBRoute *)DBTEAMLinkedAppsRevokeLinkedAppBatch; - -/// Accessor method for the memberSpaceLimitsExcludedUsersAdd route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersAdd; - -/// Accessor method for the memberSpaceLimitsExcludedUsersList route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersList; - -/// Accessor method for the memberSpaceLimitsExcludedUsersListContinue route -/// object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersListContinue; - -/// Accessor method for the memberSpaceLimitsExcludedUsersRemove route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersRemove; - -/// Accessor method for the memberSpaceLimitsGetCustomQuota route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsGetCustomQuota; - -/// Accessor method for the memberSpaceLimitsRemoveCustomQuota route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsRemoveCustomQuota; - -/// Accessor method for the memberSpaceLimitsSetCustomQuota route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsSetCustomQuota; - -/// Accessor method for the membersAdd route object. -+ (DBRoute *)DBTEAMMembersAdd; - -/// Accessor method for the membersAddV2 route object. -+ (DBRoute *)DBTEAMMembersAddV2; - -/// Accessor method for the membersAddJobStatusGet route object. -+ (DBRoute *)DBTEAMMembersAddJobStatusGet; - -/// Accessor method for the membersAddJobStatusGetV2 route object. -+ (DBRoute *)DBTEAMMembersAddJobStatusGetV2; - -/// Accessor method for the membersDeleteProfilePhoto route object. -+ (DBRoute *)DBTEAMMembersDeleteProfilePhoto; - -/// Accessor method for the membersDeleteProfilePhotoV2 route object. -+ (DBRoute *)DBTEAMMembersDeleteProfilePhotoV2; - -/// Accessor method for the membersGetAvailableTeamMemberRoles route object. -+ (DBRoute *)DBTEAMMembersGetAvailableTeamMemberRoles; - -/// Accessor method for the membersGetInfo route object. -+ (DBRoute *)DBTEAMMembersGetInfo; - -/// Accessor method for the membersGetInfoV2 route object. -+ (DBRoute *)DBTEAMMembersGetInfoV2; - -/// Accessor method for the membersList route object. -+ (DBRoute *)DBTEAMMembersList; - -/// Accessor method for the membersListV2 route object. -+ (DBRoute *)DBTEAMMembersListV2; - -/// Accessor method for the membersListContinue route object. -+ (DBRoute *)DBTEAMMembersListContinue; - -/// Accessor method for the membersListContinueV2 route object. -+ (DBRoute *)DBTEAMMembersListContinueV2; - -/// Accessor method for the membersMoveFormerMemberFiles route object. -+ (DBRoute *)DBTEAMMembersMoveFormerMemberFiles; - -/// Accessor method for the membersMoveFormerMemberFilesJobStatusCheck route -/// object. -+ (DBRoute *)DBTEAMMembersMoveFormerMemberFilesJobStatusCheck; - -/// Accessor method for the membersRecover route object. -+ (DBRoute *)DBTEAMMembersRecover; - -/// Accessor method for the membersRemove route object. -+ (DBRoute *)DBTEAMMembersRemove; - -/// Accessor method for the membersRemoveJobStatusGet route object. -+ (DBRoute *)DBTEAMMembersRemoveJobStatusGet; - -/// Accessor method for the membersSecondaryEmailsAdd route object. -+ (DBRoute *)DBTEAMMembersSecondaryEmailsAdd; - -/// Accessor method for the membersSecondaryEmailsDelete route object. -+ (DBRoute *)DBTEAMMembersSecondaryEmailsDelete; - -/// Accessor method for the membersSecondaryEmailsResendVerificationEmails route -/// object. -+ (DBRoute *)DBTEAMMembersSecondaryEmailsResendVerificationEmails; - -/// Accessor method for the membersSendWelcomeEmail route object. -+ (DBRoute *)DBTEAMMembersSendWelcomeEmail; - -/// Accessor method for the membersSetAdminPermissions route object. -+ (DBRoute *)DBTEAMMembersSetAdminPermissions; - -/// Accessor method for the membersSetAdminPermissionsV2 route object. -+ (DBRoute *)DBTEAMMembersSetAdminPermissionsV2; - -/// Accessor method for the membersSetProfile route object. -+ (DBRoute *)DBTEAMMembersSetProfile; - -/// Accessor method for the membersSetProfileV2 route object. -+ (DBRoute *)DBTEAMMembersSetProfileV2; - -/// Accessor method for the membersSetProfilePhoto route object. -+ (DBRoute *)DBTEAMMembersSetProfilePhoto; - -/// Accessor method for the membersSetProfilePhotoV2 route object. -+ (DBRoute *)DBTEAMMembersSetProfilePhotoV2; - -/// Accessor method for the membersSuspend route object. -+ (DBRoute *)DBTEAMMembersSuspend; - -/// Accessor method for the membersUnsuspend route object. -+ (DBRoute *)DBTEAMMembersUnsuspend; - -/// Accessor method for the namespacesList route object. -+ (DBRoute *)DBTEAMNamespacesList; - -/// Accessor method for the namespacesListContinue route object. -+ (DBRoute *)DBTEAMNamespacesListContinue; - -/// Accessor method for the propertiesTemplateAdd route object. -+ (DBRoute *)DBTEAMPropertiesTemplateAdd; - -/// Accessor method for the propertiesTemplateGet route object. -+ (DBRoute *)DBTEAMPropertiesTemplateGet; - -/// Accessor method for the propertiesTemplateList route object. -+ (DBRoute *)DBTEAMPropertiesTemplateList; - -/// Accessor method for the propertiesTemplateUpdate route object. -+ (DBRoute *)DBTEAMPropertiesTemplateUpdate; - -/// Accessor method for the reportsGetActivity route object. -+ (DBRoute *)DBTEAMReportsGetActivity; - -/// Accessor method for the reportsGetDevices route object. -+ (DBRoute *)DBTEAMReportsGetDevices; - -/// Accessor method for the reportsGetMembership route object. -+ (DBRoute *)DBTEAMReportsGetMembership; - -/// Accessor method for the reportsGetStorage route object. -+ (DBRoute *)DBTEAMReportsGetStorage; - -/// Accessor method for the sharingAllowlistAdd route object. -+ (DBRoute *)DBTEAMSharingAllowlistAdd; - -/// Accessor method for the sharingAllowlistList route object. -+ (DBRoute *)DBTEAMSharingAllowlistList; - -/// Accessor method for the sharingAllowlistListContinue route object. -+ (DBRoute *)DBTEAMSharingAllowlistListContinue; - -/// Accessor method for the sharingAllowlistRemove route object. -+ (DBRoute *)DBTEAMSharingAllowlistRemove; - -/// Accessor method for the teamFolderActivate route object. -+ (DBRoute *)DBTEAMTeamFolderActivate; - -/// Accessor method for the teamFolderArchive route object. -+ (DBRoute *)DBTEAMTeamFolderArchive; - -/// Accessor method for the teamFolderArchiveCheck route object. -+ (DBRoute *)DBTEAMTeamFolderArchiveCheck; - -/// Accessor method for the teamFolderCreate route object. -+ (DBRoute *)DBTEAMTeamFolderCreate; - -/// Accessor method for the teamFolderGetInfo route object. -+ (DBRoute *)DBTEAMTeamFolderGetInfo; - -/// Accessor method for the teamFolderList route object. -+ (DBRoute *)DBTEAMTeamFolderList; - -/// Accessor method for the teamFolderListContinue route object. -+ (DBRoute *)DBTEAMTeamFolderListContinue; - -/// Accessor method for the teamFolderPermanentlyDelete route object. -+ (DBRoute *)DBTEAMTeamFolderPermanentlyDelete; - -/// Accessor method for the teamFolderRename route object. -+ (DBRoute *)DBTEAMTeamFolderRename; - -/// Accessor method for the teamFolderUpdateSyncSettings route object. -+ (DBRoute *)DBTEAMTeamFolderUpdateSyncSettings; - -/// Accessor method for the tokenGetAuthenticatedAdmin route object. -+ (DBRoute *)DBTEAMTokenGetAuthenticatedAdmin; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSetCustomQuotaArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSetCustomQuotaArg.h deleted file mode 100644 index f9a68f45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSetCustomQuotaArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSetCustomQuotaArg; -@class DBTEAMUserCustomQuotaArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetCustomQuotaArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSetCustomQuotaArg : NSObject - -#pragma mark - Instance fields - -/// List of users and their custom quotas. -@property (nonatomic, readonly) NSArray *usersAndQuotas; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param usersAndQuotas List of users and their custom quotas. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersAndQuotas:(NSArray *)usersAndQuotas; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetCustomQuotaArg` struct. -/// -@interface DBTEAMSetCustomQuotaArgSerializer : NSObject - -/// -/// Serializes `DBTEAMSetCustomQuotaArg` instances. -/// -/// @param instance An instance of the `DBTEAMSetCustomQuotaArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSetCustomQuotaArg *)instance; - -/// -/// Deserializes `DBTEAMSetCustomQuotaArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaArg` API object. -/// -/// @return An instantiation of the `DBTEAMSetCustomQuotaArg` object. -/// -+ (DBTEAMSetCustomQuotaArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSetCustomQuotaError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSetCustomQuotaError.h deleted file mode 100644 index b29058a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSetCustomQuotaError.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSetCustomQuotaError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetCustomQuotaError` union. -/// -/// Error returned when setting member custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSetCustomQuotaError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSetCustomQuotaErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMSetCustomQuotaError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSetCustomQuotaErrorTag) { - /// A maximum of 1000 users can be set for a single call. - DBTEAMSetCustomQuotaErrorTooManyUsers, - - /// (no description). - DBTEAMSetCustomQuotaErrorOther, - - /// Some of the users are on the excluded users list and can't have custom - /// quota set. - DBTEAMSetCustomQuotaErrorSomeUsersAreExcluded, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSetCustomQuotaErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_users". -/// -/// Description of the "too_many_users" tag state: A maximum of 1000 users can -/// be set for a single call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUsers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "some_users_are_excluded". -/// -/// Description of the "some_users_are_excluded" tag state: Some of the users -/// are on the excluded users list and can't have custom quota set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSomeUsersAreExcluded; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_users". -/// -/// @return Whether the union's current tag state has value "too_many_users". -/// -- (BOOL)isTooManyUsers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "some_users_are_excluded". -/// -/// @return Whether the union's current tag state has value -/// "some_users_are_excluded". -/// -- (BOOL)isSomeUsersAreExcluded; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSetCustomQuotaError` union. -/// -@interface DBTEAMSetCustomQuotaErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSetCustomQuotaError` instances. -/// -/// @param instance An instance of the `DBTEAMSetCustomQuotaError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSetCustomQuotaError *)instance; - -/// -/// Deserializes `DBTEAMSetCustomQuotaError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaError` API object. -/// -/// @return An instantiation of the `DBTEAMSetCustomQuotaError` object. -/// -+ (DBTEAMSetCustomQuotaError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddArgs.h deleted file mode 100644 index ab15424b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddArgs.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistAddArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistAddArgs` struct. -/// -/// Structure representing Approve List entries. Domain and emails are -/// supported. At least one entry of any supported type is required. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistAddArgs : NSObject - -#pragma mark - Instance fields - -/// List of domains represented by valid string representation (RFC-1034/5). -@property (nonatomic, readonly, nullable) NSArray *domains; - -/// List of emails represented by valid string representation (RFC-5322/822). -@property (nonatomic, readonly, nullable) NSArray *emails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(nullable NSArray *)domains emails:(nullable NSArray *)emails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistAddArgs` struct. -/// -@interface DBTEAMSharingAllowlistAddArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistAddArgs` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistAddArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistAddArgs *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistAddArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddArgs` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistAddArgs` object. -/// -+ (DBTEAMSharingAllowlistAddArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddError.h deleted file mode 100644 index 3eec8476..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddError.h +++ /dev/null @@ -1,245 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistAddError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistAddError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistAddError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSharingAllowlistAddErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMSharingAllowlistAddError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSharingAllowlistAddErrorTag) { - /// One of provided values is not valid. - DBTEAMSharingAllowlistAddErrorMalformedEntry, - - /// Neither single domain nor email provided. - DBTEAMSharingAllowlistAddErrorNoEntriesProvided, - - /// Too many entries provided within one call. - DBTEAMSharingAllowlistAddErrorTooManyEntriesProvided, - - /// Team entries limit reached. - DBTEAMSharingAllowlistAddErrorTeamLimitReached, - - /// Unknown error. - DBTEAMSharingAllowlistAddErrorUnknownError, - - /// Entries already exists. - DBTEAMSharingAllowlistAddErrorEntriesAlreadyExist, - - /// (no description). - DBTEAMSharingAllowlistAddErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSharingAllowlistAddErrorTag tag; - -/// One of provided values is not valid. @note Ensure the `isMalformedEntry` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *malformedEntry; - -/// Entries already exists. @note Ensure the `isEntriesAlreadyExist` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *entriesAlreadyExist; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_entry". -/// -/// Description of the "malformed_entry" tag state: One of provided values is -/// not valid. -/// -/// @param malformedEntry One of provided values is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedEntry:(NSString *)malformedEntry; - -/// -/// Initializes union class with tag state of "no_entries_provided". -/// -/// Description of the "no_entries_provided" tag state: Neither single domain -/// nor email provided. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoEntriesProvided; - -/// -/// Initializes union class with tag state of "too_many_entries_provided". -/// -/// Description of the "too_many_entries_provided" tag state: Too many entries -/// provided within one call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyEntriesProvided; - -/// -/// Initializes union class with tag state of "team_limit_reached". -/// -/// Description of the "team_limit_reached" tag state: Team entries limit -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLimitReached; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: Unknown error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError; - -/// -/// Initializes union class with tag state of "entries_already_exist". -/// -/// Description of the "entries_already_exist" tag state: Entries already -/// exists. -/// -/// @param entriesAlreadyExist Entries already exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntriesAlreadyExist:(NSString *)entriesAlreadyExist; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_entry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedEntry` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_entry". -/// -- (BOOL)isMalformedEntry; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "no_entries_provided". -/// -- (BOOL)isNoEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "too_many_entries_provided". -/// -- (BOOL)isTooManyEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_limit_reached". -/// -/// @return Whether the union's current tag state has value -/// "team_limit_reached". -/// -- (BOOL)isTeamLimitReached; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value -/// "entries_already_exist". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `entriesAlreadyExist` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "entries_already_exist". -/// -- (BOOL)isEntriesAlreadyExist; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSharingAllowlistAddError` union. -/// -@interface DBTEAMSharingAllowlistAddErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistAddError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistAddError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistAddError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistAddError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistAddError` object. -/// -+ (DBTEAMSharingAllowlistAddError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddResponse.h deleted file mode 100644 index 12582655..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistAddResponse.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistAddResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistAddResponse` struct. -/// -/// This struct is empty. The comment here is intentionally emitted to avoid -/// indentation issues with Stone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistAddResponse : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistAddResponse` struct. -/// -@interface DBTEAMSharingAllowlistAddResponseSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistAddResponse` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistAddResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistAddResponse *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistAddResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddResponse` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistAddResponse` object. -/// -+ (DBTEAMSharingAllowlistAddResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListArg.h deleted file mode 100644 index 57dc74f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListArg : NSObject - -#pragma mark - Instance fields - -/// The number of entries to fetch at one time. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The number of entries to fetch at one time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListArg` struct. -/// -@interface DBTEAMSharingAllowlistListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListArg` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListArg *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListArg` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListArg` object. -/// -+ (DBTEAMSharingAllowlistListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListContinueArg.h deleted file mode 100644 index 9ac5ba90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned from a previous call to `sharingAllowlistList` or -/// `sharingAllowlistListContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned from a previous call to -/// `sharingAllowlistList` or `sharingAllowlistListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListContinueArg` struct. -/// -@interface DBTEAMSharingAllowlistListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListContinueArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListContinueArg` -/// object. -/// -+ (DBTEAMSharingAllowlistListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListContinueError.h deleted file mode 100644 index 4bd0a190..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListContinueError.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSharingAllowlistListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMSharingAllowlistListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSharingAllowlistListContinueErrorTag) { - /// Provided cursor is not valid. - DBTEAMSharingAllowlistListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMSharingAllowlistListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSharingAllowlistListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: Provided cursor is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSharingAllowlistListContinueError` -/// union. -/// -@interface DBTEAMSharingAllowlistListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListContinueError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListContinueError` -/// object. -/// -+ (DBTEAMSharingAllowlistListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListError.h deleted file mode 100644 index 81dc647f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListError.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListError` struct. -/// -/// This struct is empty. The comment here is intentionally emitted to avoid -/// indentation issues with Stone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListError : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListError` struct. -/// -@interface DBTEAMSharingAllowlistListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListError` object. -/// -+ (DBTEAMSharingAllowlistListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListResponse.h deleted file mode 100644 index 4438da18..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistListResponse.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListResponse : NSObject - -#pragma mark - Instance fields - -/// List of domains represented by valid string representation (RFC-1034/5). -@property (nonatomic, readonly) NSArray *domains; - -/// List of emails represented by valid string representation (RFC-5322/822). -@property (nonatomic, readonly) NSArray *emails; - -/// If this is nonempty, there are more entries that can be fetched with -/// `sharingAllowlistListContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// if true indicates that more entries can be fetched with -/// `sharingAllowlistListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// @param cursor If this is nonempty, there are more entries that can be -/// fetched with `sharingAllowlistListContinue`. -/// @param hasMore if true indicates that more entries can be fetched with -/// `sharingAllowlistListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(NSArray *)domains - emails:(NSArray *)emails - cursor:(nullable NSString *)cursor - hasMore:(nullable NSNumber *)hasMore; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(NSArray *)domains emails:(NSArray *)emails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListResponse` struct. -/// -@interface DBTEAMSharingAllowlistListResponseSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListResponse` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListResponse *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListResponse` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListResponse` object. -/// -+ (DBTEAMSharingAllowlistListResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveArgs.h deleted file mode 100644 index 0c189adb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveArgs.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistRemoveArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistRemoveArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistRemoveArgs : NSObject - -#pragma mark - Instance fields - -/// List of domains represented by valid string representation (RFC-1034/5). -@property (nonatomic, readonly, nullable) NSArray *domains; - -/// List of emails represented by valid string representation (RFC-5322/822). -@property (nonatomic, readonly, nullable) NSArray *emails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(nullable NSArray *)domains emails:(nullable NSArray *)emails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistRemoveArgs` struct. -/// -@interface DBTEAMSharingAllowlistRemoveArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistRemoveArgs` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistRemoveArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistRemoveArgs *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistRemoveArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveArgs` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistRemoveArgs` object. -/// -+ (DBTEAMSharingAllowlistRemoveArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveError.h deleted file mode 100644 index 96345001..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveError.h +++ /dev/null @@ -1,224 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistRemoveError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistRemoveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistRemoveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSharingAllowlistRemoveErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMSharingAllowlistRemoveError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSharingAllowlistRemoveErrorTag) { - /// One of provided values is not valid. - DBTEAMSharingAllowlistRemoveErrorMalformedEntry, - - /// One or more provided values do not exist. - DBTEAMSharingAllowlistRemoveErrorEntriesDoNotExist, - - /// Neither single domain nor email provided. - DBTEAMSharingAllowlistRemoveErrorNoEntriesProvided, - - /// Too many entries provided within one call. - DBTEAMSharingAllowlistRemoveErrorTooManyEntriesProvided, - - /// Unknown error. - DBTEAMSharingAllowlistRemoveErrorUnknownError, - - /// (no description). - DBTEAMSharingAllowlistRemoveErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSharingAllowlistRemoveErrorTag tag; - -/// One of provided values is not valid. @note Ensure the `isMalformedEntry` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *malformedEntry; - -/// One or more provided values do not exist. @note Ensure the -/// `isEntriesDoNotExist` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *entriesDoNotExist; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_entry". -/// -/// Description of the "malformed_entry" tag state: One of provided values is -/// not valid. -/// -/// @param malformedEntry One of provided values is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedEntry:(NSString *)malformedEntry; - -/// -/// Initializes union class with tag state of "entries_do_not_exist". -/// -/// Description of the "entries_do_not_exist" tag state: One or more provided -/// values do not exist. -/// -/// @param entriesDoNotExist One or more provided values do not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntriesDoNotExist:(NSString *)entriesDoNotExist; - -/// -/// Initializes union class with tag state of "no_entries_provided". -/// -/// Description of the "no_entries_provided" tag state: Neither single domain -/// nor email provided. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoEntriesProvided; - -/// -/// Initializes union class with tag state of "too_many_entries_provided". -/// -/// Description of the "too_many_entries_provided" tag state: Too many entries -/// provided within one call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyEntriesProvided; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: Unknown error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_entry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedEntry` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_entry". -/// -- (BOOL)isMalformedEntry; - -/// -/// Retrieves whether the union's current tag state has value -/// "entries_do_not_exist". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `entriesDoNotExist` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "entries_do_not_exist". -/// -- (BOOL)isEntriesDoNotExist; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "no_entries_provided". -/// -- (BOOL)isNoEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "too_many_entries_provided". -/// -- (BOOL)isTooManyEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSharingAllowlistRemoveError` union. -/// -@interface DBTEAMSharingAllowlistRemoveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistRemoveError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistRemoveError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistRemoveError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistRemoveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistRemoveError` object. -/// -+ (DBTEAMSharingAllowlistRemoveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveResponse.h deleted file mode 100644 index e2fb89b1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMSharingAllowlistRemoveResponse.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistRemoveResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistRemoveResponse` struct. -/// -/// This struct is empty. The comment here is intentionally emitted to avoid -/// indentation issues with Stone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistRemoveResponse : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistRemoveResponse` struct. -/// -@interface DBTEAMSharingAllowlistRemoveResponseSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistRemoveResponse` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistRemoveResponse` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistRemoveResponse *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistRemoveResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveResponse` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistRemoveResponse` -/// object. -/// -+ (DBTEAMSharingAllowlistRemoveResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMStorageBucket.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMStorageBucket.h deleted file mode 100644 index aa8cad89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMStorageBucket.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMStorageBucket; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `StorageBucket` struct. -/// -/// Describes the number of users in a specific storage bucket. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMStorageBucket : NSObject - -#pragma mark - Instance fields - -/// The name of the storage bucket. For example, '1G' is a bucket of users with -/// storage size up to 1 Giga. -@property (nonatomic, readonly, copy) NSString *bucket; - -/// The number of people whose storage is in the range of this storage bucket. -@property (nonatomic, readonly) NSNumber *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param bucket The name of the storage bucket. For example, '1G' is a bucket -/// of users with storage size up to 1 Giga. -/// @param users The number of people whose storage is in the range of this -/// storage bucket. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBucket:(NSString *)bucket users:(NSNumber *)users; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `StorageBucket` struct. -/// -@interface DBTEAMStorageBucketSerializer : NSObject - -/// -/// Serializes `DBTEAMStorageBucket` instances. -/// -/// @param instance An instance of the `DBTEAMStorageBucket` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMStorageBucket` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMStorageBucket *)instance; - -/// -/// Deserializes `DBTEAMStorageBucket` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMStorageBucket` API object. -/// -/// @return An instantiation of the `DBTEAMStorageBucket` object. -/// -+ (DBTEAMStorageBucket *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamAuthRoutes.h deleted file mode 100644 index e9cef457..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamAuthRoutes.h +++ /dev/null @@ -1,1937 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBACCOUNTSetProfilePhotoError; -@class DBASYNCLaunchEmptyResult; -@class DBASYNCPollEmptyResult; -@class DBASYNCPollError; -@class DBFILEPROPERTIESAddTemplateResult; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESModifyTemplateError; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyType; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESUpdateTemplateResult; -@class DBFILESContentSyncSetting; -@class DBFILESContentSyncSettingArg; -@class DBFILESSyncSetting; -@class DBFILESSyncSettingArg; -@class DBFILESSyncSettingsError; -@class DBNilObject; -@class DBTEAMActiveWebSession; -@class DBTEAMAddSecondaryEmailsError; -@class DBTEAMAddSecondaryEmailsResult; -@class DBTEAMAdminTier; -@class DBTEAMApiApp; -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMCOMMONGroupSummary; -@class DBTEAMCustomQuotaError; -@class DBTEAMCustomQuotaResult; -@class DBTEAMDateRangeError; -@class DBTEAMDeleteSecondaryEmailsResult; -@class DBTEAMDesktopClientSession; -@class DBTEAMDeviceSessionArg; -@class DBTEAMDevicesActive; -@class DBTEAMExcludedUsersListContinueError; -@class DBTEAMExcludedUsersListError; -@class DBTEAMExcludedUsersListResult; -@class DBTEAMExcludedUsersUpdateError; -@class DBTEAMExcludedUsersUpdateResult; -@class DBTEAMExcludedUsersUpdateStatus; -@class DBTEAMFeature; -@class DBTEAMFeatureValue; -@class DBTEAMFeaturesGetValuesBatchError; -@class DBTEAMFeaturesGetValuesBatchResult; -@class DBTEAMGetActivityReport; -@class DBTEAMGetDevicesReport; -@class DBTEAMGetMembershipReport; -@class DBTEAMGetStorageReport; -@class DBTEAMGroupAccessType; -@class DBTEAMGroupCreateError; -@class DBTEAMGroupDeleteError; -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupMemberInfo; -@class DBTEAMGroupMemberSetAccessTypeError; -@class DBTEAMGroupMembersAddError; -@class DBTEAMGroupMembersChangeResult; -@class DBTEAMGroupMembersRemoveError; -@class DBTEAMGroupSelector; -@class DBTEAMGroupSelectorError; -@class DBTEAMGroupUpdateError; -@class DBTEAMGroupsGetInfoError; -@class DBTEAMGroupsGetInfoItem; -@class DBTEAMGroupsListContinueError; -@class DBTEAMGroupsListResult; -@class DBTEAMGroupsMembersListContinueError; -@class DBTEAMGroupsMembersListResult; -@class DBTEAMGroupsPollError; -@class DBTEAMGroupsSelector; -@class DBTEAMLegalHoldHeldRevisionMetadata; -@class DBTEAMLegalHoldPolicy; -@class DBTEAMLegalHoldStatus; -@class DBTEAMLegalHoldsGetPolicyError; -@class DBTEAMLegalHoldsListHeldRevisionResult; -@class DBTEAMLegalHoldsListHeldRevisionsError; -@class DBTEAMLegalHoldsListPoliciesError; -@class DBTEAMLegalHoldsListPoliciesResult; -@class DBTEAMLegalHoldsPolicyCreateError; -@class DBTEAMLegalHoldsPolicyReleaseError; -@class DBTEAMLegalHoldsPolicyUpdateError; -@class DBTEAMListMemberAppsError; -@class DBTEAMListMemberAppsResult; -@class DBTEAMListMemberDevicesError; -@class DBTEAMListMemberDevicesResult; -@class DBTEAMListMembersAppsError; -@class DBTEAMListMembersAppsResult; -@class DBTEAMListMembersDevicesError; -@class DBTEAMListMembersDevicesResult; -@class DBTEAMListTeamAppsError; -@class DBTEAMListTeamAppsResult; -@class DBTEAMListTeamDevicesError; -@class DBTEAMListTeamDevicesResult; -@class DBTEAMMemberAccess; -@class DBTEAMMemberAddArg; -@class DBTEAMMemberAddResult; -@class DBTEAMMemberAddV2Arg; -@class DBTEAMMemberAddV2Result; -@class DBTEAMMemberDevices; -@class DBTEAMMemberLinkedApps; -@class DBTEAMMemberProfile; -@class DBTEAMMembersAddJobStatus; -@class DBTEAMMembersAddJobStatusV2Result; -@class DBTEAMMembersAddLaunch; -@class DBTEAMMembersAddLaunchV2Result; -@class DBTEAMMembersDeleteProfilePhotoError; -@class DBTEAMMembersGetAvailableTeamMemberRolesResult; -@class DBTEAMMembersGetInfoError; -@class DBTEAMMembersGetInfoItem; -@class DBTEAMMembersGetInfoItemV2; -@class DBTEAMMembersGetInfoV2Result; -@class DBTEAMMembersInfo; -@class DBTEAMMembersListContinueError; -@class DBTEAMMembersListError; -@class DBTEAMMembersListResult; -@class DBTEAMMembersListV2Result; -@class DBTEAMMembersRecoverError; -@class DBTEAMMembersRemoveError; -@class DBTEAMMembersSendWelcomeError; -@class DBTEAMMembersSetPermissions2Error; -@class DBTEAMMembersSetPermissions2Result; -@class DBTEAMMembersSetPermissionsError; -@class DBTEAMMembersSetPermissionsResult; -@class DBTEAMMembersSetProfileError; -@class DBTEAMMembersSetProfilePhotoError; -@class DBTEAMMembersSuspendError; -@class DBTEAMMembersTransferFormerMembersFilesError; -@class DBTEAMMembersUnsuspendError; -@class DBTEAMMobileClientSession; -@class DBTEAMNamespaceMetadata; -@class DBTEAMPOLICIESTeamMemberPolicies; -@class DBTEAMRemoveCustomQuotaResult; -@class DBTEAMResendVerificationEmailResult; -@class DBTEAMRevokeDesktopClientArg; -@class DBTEAMRevokeDeviceSessionArg; -@class DBTEAMRevokeDeviceSessionBatchError; -@class DBTEAMRevokeDeviceSessionBatchResult; -@class DBTEAMRevokeDeviceSessionError; -@class DBTEAMRevokeDeviceSessionStatus; -@class DBTEAMRevokeLinkedApiAppArg; -@class DBTEAMRevokeLinkedAppBatchError; -@class DBTEAMRevokeLinkedAppBatchResult; -@class DBTEAMRevokeLinkedAppError; -@class DBTEAMRevokeLinkedAppStatus; -@class DBTEAMSetCustomQuotaError; -@class DBTEAMSharingAllowlistAddError; -@class DBTEAMSharingAllowlistAddResponse; -@class DBTEAMSharingAllowlistListContinueError; -@class DBTEAMSharingAllowlistListError; -@class DBTEAMSharingAllowlistListResponse; -@class DBTEAMSharingAllowlistRemoveError; -@class DBTEAMSharingAllowlistRemoveResponse; -@class DBTEAMStorageBucket; -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderActivateError; -@class DBTEAMTeamFolderArchiveError; -@class DBTEAMTeamFolderArchiveJobStatus; -@class DBTEAMTeamFolderArchiveLaunch; -@class DBTEAMTeamFolderCreateError; -@class DBTEAMTeamFolderGetInfoItem; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderListContinueError; -@class DBTEAMTeamFolderListError; -@class DBTEAMTeamFolderListResult; -@class DBTEAMTeamFolderMetadata; -@class DBTEAMTeamFolderPermanentlyDeleteError; -@class DBTEAMTeamFolderRenameError; -@class DBTEAMTeamFolderStatus; -@class DBTEAMTeamFolderTeamSharedDropboxError; -@class DBTEAMTeamFolderUpdateSyncSettingsError; -@class DBTEAMTeamGetInfoResult; -@class DBTEAMTeamMemberInfo; -@class DBTEAMTeamMemberInfoV2; -@class DBTEAMTeamMemberInfoV2Result; -@class DBTEAMTeamMemberProfile; -@class DBTEAMTeamMemberRole; -@class DBTEAMTeamNamespacesListContinueError; -@class DBTEAMTeamNamespacesListError; -@class DBTEAMTeamNamespacesListResult; -@class DBTEAMTokenGetAuthenticatedAdminError; -@class DBTEAMTokenGetAuthenticatedAdminResult; -@class DBTEAMUserAddResult; -@class DBTEAMUserCustomQuotaArg; -@class DBTEAMUserCustomQuotaResult; -@class DBTEAMUserDeleteResult; -@class DBTEAMUserResendResult; -@class DBTEAMUserSecondaryEmailsArg; -@class DBTEAMUserSelectorArg; - -@protocol DBTransportClient; - -/// -/// Routes for the `Team` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBTEAMTeamAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBTEAMTeamAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// List all device sessions of a team's member. -/// -/// @param teamMemberId The team's member id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMemberDevicesResult` object on success -/// or a `DBTEAMListMemberDevicesError` object on failure. -/// -- (DBRpcTask *)devicesListMemberDevices: - (NSString *)teamMemberId; - -/// -/// List all device sessions of a team's member. -/// -/// @param teamMemberId The team's member id. -/// @param includeWebSessions Whether to list web sessions of the team's member. -/// @param includeDesktopClients Whether to list linked desktop devices of the team's member. -/// @param includeMobileClients Whether to list linked mobile devices of the team's member. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMemberDevicesResult` object on success -/// or a `DBTEAMListMemberDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListMemberDevices:(NSString *)teamMemberId - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// List all device sessions of a team. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersDevicesResult` object on success -/// or a `DBTEAMListMembersDevicesError` object on failure. -/// -- (DBRpcTask *)devicesListMembersDevices; - -/// -/// List all device sessions of a team. Permission : Team member file access. -/// -/// @param cursor At the first call to the `devicesListMembersDevices` the cursor shouldn't be passed. Then, if the -/// result of the call includes a cursor, the following requests should include the received cursors in order to receive -/// the next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team members. -/// @param includeMobileClients Whether to list mobile clients of the team members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersDevicesResult` object on success -/// or a `DBTEAMListMembersDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListMembersDevices:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// DEPRECATED: List all device sessions of a team. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamDevicesResult` object on success or -/// a `DBTEAMListTeamDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListTeamDevices __deprecated_msg("devicesListTeamDevices is deprecated. Use devicesListMembersDevices."); - -/// -/// DEPRECATED: List all device sessions of a team. Permission : Team member file access. -/// -/// @param cursor At the first call to the `devicesListTeamDevices` the cursor shouldn't be passed. Then, if the result -/// of the call includes a cursor, the following requests should include the received cursors in order to receive the -/// next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team members. -/// @param includeMobileClients Whether to list mobile clients of the team members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamDevicesResult` object on success or -/// a `DBTEAMListTeamDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListTeamDevices:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients - __deprecated_msg("devicesListTeamDevices is deprecated. Use devicesListMembersDevices."); - -/// -/// Revoke a device session of a team's member. -/// -/// @param revokeDeviceSessionArg The RevokeDeviceSessionArg union -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMRevokeDeviceSessionError` object on failure. -/// -- (DBRpcTask *)devicesRevokeDeviceSession: - (DBTEAMRevokeDeviceSessionArg *)revokeDeviceSessionArg; - -/// -/// Revoke a list of device sessions of team members. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMRevokeDeviceSessionBatchResult` object on -/// success or a `DBTEAMRevokeDeviceSessionBatchError` object on failure. -/// -- (DBRpcTask *) - devicesRevokeDeviceSessionBatch:(NSArray *)revokeDevices; - -/// -/// Get the values for one or more featues. This route allows you to check your account's capability for what feature -/// you can access or what value you have for certain features. Permission : Team information. -/// -/// @param features A list of features in Feature. If the list is empty, this route will return -/// FeaturesGetValuesBatchError. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMFeaturesGetValuesBatchResult` object on -/// success or a `DBTEAMFeaturesGetValuesBatchError` object on failure. -/// -- (DBRpcTask *)featuresGetValues: - (NSArray *)features; - -/// -/// Retrieves information about a team. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamGetInfoResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)getInfo; - -/// -/// Creates a new, empty group, with a requested name. Permission : Team member management. -/// -/// @param groupName Group name. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupCreateError` object on failure. -/// -- (DBRpcTask *)groupsCreate:(NSString *)groupName; - -/// -/// Creates a new, empty group, with a requested name. Permission : Team member management. -/// -/// @param groupName Group name. -/// @param addCreatorAsOwner Automatically add the creator of the group. -/// @param groupExternalId The creator of a team can associate an arbitrary external ID to the group. -/// @param groupManagementType Whether the team can be managed by selected users, or only by team admins. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupCreateError` object on failure. -/// -- (DBRpcTask *) - groupsCreate:(NSString *)groupName - addCreatorAsOwner:(nullable NSNumber *)addCreatorAsOwner - groupExternalId:(nullable NSString *)groupExternalId - groupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)groupManagementType; - -/// -/// Deletes a group. The group is deleted immediately. However the revoking of group-owned resources may take additional -/// time. Use the `groupsJobStatusGet` to determine whether this process has completed. Permission : Team member -/// management. -/// -/// @param groupSelector Argument for selecting a single group, either by group_id or by external group ID. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMGroupDeleteError` object on failure. -/// -- (DBRpcTask *)groupsDelete:(DBTEAMGroupSelector *)groupSelector; - -/// -/// Retrieves information about one or more groups. Note that the optional field `members` in `DBTEAMGroupFullInfo` is -/// not returned for system-managed groups. Permission : Team Information. -/// -/// @param groupsSelector Argument for selecting a list of groups, either by group_ids, or external group IDs. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMGroupsGetInfoError` object on failure. -/// -- (DBRpcTask *, DBTEAMGroupsGetInfoError *> *)groupsGetInfo: - (DBTEAMGroupsSelector *)groupsSelector; - -/// -/// Once an async_job_id is returned from `groupsDelete`, `groupsMembersAdd` , or `groupsMembersRemove` use this method -/// to poll the status of granting/revoking group members' access to group-owned resources. Permission : Team member -/// management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCPollEmptyResult` object on success or a -/// `DBTEAMGroupsPollError` object on failure. -/// -- (DBRpcTask *)groupsJobStatusGet:(NSString *)asyncJobId; - -/// -/// Lists groups on a team. Permission : Team Information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsListResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)groupsList; - -/// -/// Lists groups on a team. Permission : Team Information. -/// -/// @param limit Number of results to return per call. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsListResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)groupsList:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `groupsList`, use this to paginate through all groups. Permission : Team -/// Information. -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsListResult` object on success or a -/// `DBTEAMGroupsListContinueError` object on failure. -/// -- (DBRpcTask *)groupsListContinue:(NSString *)cursor; - -/// -/// Adds members to a group. The members are added immediately. However the granting of group-owned resources may take -/// additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. Permission : Team -/// member management. -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersAddError` object on failure. -/// -- (DBRpcTask *) - groupsMembersAdd:(DBTEAMGroupSelector *)group - members:(NSArray *)members; - -/// -/// Adds members to a group. The members are added immediately. However the granting of group-owned resources may take -/// additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. Permission : Team -/// member management. -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersAddError` object on failure. -/// -- (DBRpcTask *) - groupsMembersAdd:(DBTEAMGroupSelector *)group - members:(NSArray *)members - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Lists members of a group. Permission : Team Information. -/// -/// @param group The group whose members are to be listed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsMembersListResult` object on success -/// or a `DBTEAMGroupSelectorError` object on failure. -/// -- (DBRpcTask *)groupsMembersList: - (DBTEAMGroupSelector *)group; - -/// -/// Lists members of a group. Permission : Team Information. -/// -/// @param group The group whose members are to be listed. -/// @param limit Number of results to return per call. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsMembersListResult` object on success -/// or a `DBTEAMGroupSelectorError` object on failure. -/// -- (DBRpcTask *) - groupsMembersList:(DBTEAMGroupSelector *)group - limit:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `groupsMembersList`, use this to paginate through all members of the group. -/// Permission : Team information. -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsMembersListResult` object on success -/// or a `DBTEAMGroupsMembersListContinueError` object on failure. -/// -- (DBRpcTask *)groupsMembersListContinue: - (NSString *)cursor; - -/// -/// Removes members from a group. The members are removed immediately. However the revoking of group-owned resources may -/// take additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. This method -/// permits removing the only owner of a group, even in cases where this is not possible via the web client. Permission -/// : Team member management. -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersRemoveError` object on failure. -/// -- (DBRpcTask *) - groupsMembersRemove:(DBTEAMGroupSelector *)group - users:(NSArray *)users; - -/// -/// Removes members from a group. The members are removed immediately. However the revoking of group-owned resources may -/// take additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. This method -/// permits removing the only owner of a group, even in cases where this is not possible via the web client. Permission -/// : Team member management. -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersRemoveError` object on failure. -/// -- (DBRpcTask *) - groupsMembersRemove:(DBTEAMGroupSelector *)group - users:(NSArray *)users - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Sets a member's access type in a group. Permission : Team member management. -/// -/// @param accessType New group access type the user will have. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMGroupMemberSetAccessTypeError` object on failure. -/// -- (DBRpcTask *, DBTEAMGroupMemberSetAccessTypeError *> *) - groupsMembersSetAccessType:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType; - -/// -/// Sets a member's access type in a group. Permission : Team member management. -/// -/// @param accessType New group access type the user will have. -/// @param returnMembers Whether to return the list of members in the group. Note that the default value will cause all -/// the group members to be returned in the response. This may take a long time for large groups. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMGroupMemberSetAccessTypeError` object on failure. -/// -- (DBRpcTask *, DBTEAMGroupMemberSetAccessTypeError *> *) - groupsMembersSetAccessType:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Updates a group's name and/or external ID. Permission : Team member management. -/// -/// @param group Specify a group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupUpdateError` object on failure. -/// -- (DBRpcTask *)groupsUpdate:(DBTEAMGroupSelector *)group; - -/// -/// Updates a group's name and/or external ID. Permission : Team member management. -/// -/// @param group Specify a group. -/// @param dNewGroupName Optional argument. Set group name to this if provided. -/// @param dNewGroupExternalId Optional argument. New group external ID. If the argument is None, the group's -/// external_id won't be updated. If the argument is empty string, the group's external id will be cleared. -/// @param dNewGroupManagementType Set new group management type, if provided. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupUpdateError` object on failure. -/// -- (DBRpcTask *) - groupsUpdate:(DBTEAMGroupSelector *)group - returnMembers:(nullable NSNumber *)returnMembers - dNewGroupName:(nullable NSString *)dNewGroupName - dNewGroupExternalId:(nullable NSString *)dNewGroupExternalId - dNewGroupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)dNewGroupManagementType; - -/// -/// Creates new legal hold policy. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param name Policy name. -/// @param members List of team member IDs added to the hold. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyCreateError` object on failure. -/// -- (DBRpcTask *) - legalHoldsCreatePolicy:(NSString *)name - members:(NSArray *)members; - -/// -/// Creates new legal hold policy. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param name Policy name. -/// @param description_ A description of the legal hold policy. -/// @param members List of team member IDs added to the hold. -/// @param startDate start date of the legal hold policy. -/// @param endDate end date of the legal hold policy. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyCreateError` object on failure. -/// -- (DBRpcTask *) - legalHoldsCreatePolicy:(NSString *)name - members:(NSArray *)members - description_:(nullable NSString *)description_ - startDate:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate; - -/// -/// Gets a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsGetPolicyError` object on failure. -/// -- (DBRpcTask *)legalHoldsGetPolicy:(NSString *)id_; - -/// -/// List the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. -/// Permission : Team member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListHeldRevisionResult` object on -/// success or a `DBTEAMLegalHoldsListHeldRevisionsError` object on failure. -/// -- (DBRpcTask *) - legalHoldsListHeldRevisions:(NSString *)id_; - -/// -/// Continue listing the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the -/// feature. Permission : Team member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListHeldRevisionResult` object on -/// success or a `DBTEAMLegalHoldsListHeldRevisionsError` object on failure. -/// -- (DBRpcTask *) - legalHoldsListHeldRevisionsContinue:(NSString *)id_; - -/// -/// Continue listing the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the -/// feature. Permission : Team member file access. -/// -/// @param id_ The legal hold Id. -/// @param cursor The cursor idicates where to continue reading file metadata entries for the next API call. When there -/// are no more entries, the cursor will return none. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListHeldRevisionResult` object on -/// success or a `DBTEAMLegalHoldsListHeldRevisionsError` object on failure. -/// -- (DBRpcTask *) - legalHoldsListHeldRevisionsContinue:(NSString *)id_ - cursor:(nullable NSString *)cursor; - -/// -/// Lists legal holds on a team. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListPoliciesResult` object on -/// success or a `DBTEAMLegalHoldsListPoliciesError` object on failure. -/// -- (DBRpcTask *)legalHoldsListPolicies; - -/// -/// Lists legal holds on a team. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param includeReleased Whether to return holds that were released. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListPoliciesResult` object on -/// success or a `DBTEAMLegalHoldsListPoliciesError` object on failure. -/// -- (DBRpcTask *)legalHoldsListPolicies: - (nullable NSNumber *)includeReleased; - -/// -/// Releases a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMLegalHoldsPolicyReleaseError` object on failure. -/// -- (DBRpcTask *)legalHoldsReleasePolicy:(NSString *)id_; - -/// -/// Updates a legal hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member -/// file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyUpdateError` object on failure. -/// -- (DBRpcTask *)legalHoldsUpdatePolicy:(NSString *)id_; - -/// -/// Updates a legal hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member -/// file access. -/// -/// @param id_ The legal hold Id. -/// @param name Policy new name. -/// @param description_ Policy new description. -/// @param members List of team member IDs to apply the policy on. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyUpdateError` object on failure. -/// -- (DBRpcTask *) - legalHoldsUpdatePolicy:(NSString *)id_ - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - members:(nullable NSArray *)members; - -/// -/// List all linked applications of the team member. Note, this endpoint does not list any team-linked applications. -/// -/// @param teamMemberId The team member id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMemberAppsResult` object on success or a -/// `DBTEAMListMemberAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListMemberLinkedApps: - (NSString *)teamMemberId; - -/// -/// List all applications linked to the team members' accounts. Note, this endpoint does not list any team-linked -/// applications. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersAppsResult` object on success or -/// a `DBTEAMListMembersAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListMembersLinkedApps; - -/// -/// List all applications linked to the team members' accounts. Note, this endpoint does not list any team-linked -/// applications. -/// -/// @param cursor At the first call to the `linkedAppsListMembersLinkedApps` the cursor shouldn't be passed. Then, if -/// the result of the call includes a cursor, the following requests should include the received cursors in order to -/// receive the next sub list of the team applications. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersAppsResult` object on success or -/// a `DBTEAMListMembersAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListMembersLinkedApps: - (nullable NSString *)cursor; - -/// -/// DEPRECATED: List all applications linked to the team members' accounts. Note, this endpoint doesn't list any -/// team-linked applications. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamAppsResult` object on success or a -/// `DBTEAMListTeamAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListTeamLinkedApps __deprecated_msg( - "linkedAppsListTeamLinkedApps is deprecated. Use linkedAppsListMembersLinkedApps."); - -/// -/// DEPRECATED: List all applications linked to the team members' accounts. Note, this endpoint doesn't list any -/// team-linked applications. -/// -/// @param cursor At the first call to the `linkedAppsListTeamLinkedApps` the cursor shouldn't be passed. Then, if the -/// result of the call includes a cursor, the following requests should include the received cursors in order to receive -/// the next sub list of the team applications. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamAppsResult` object on success or a -/// `DBTEAMListTeamAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListTeamLinkedApps: - (nullable NSString *)cursor - __deprecated_msg("linkedAppsListTeamLinkedApps is deprecated. Use linkedAppsListMembersLinkedApps."); - -/// -/// Revoke a linked application of the team member. -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMRevokeLinkedAppError` object on failure. -/// -- (DBRpcTask *)linkedAppsRevokeLinkedApp:(NSString *)appId - teamMemberId:(NSString *)teamMemberId; - -/// -/// Revoke a linked application of the team member. -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// @param keepAppFolder This flag is not longer supported, the application dedicated folder (in case the application -/// uses one) will be kept. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMRevokeLinkedAppError` object on failure. -/// -- (DBRpcTask *)linkedAppsRevokeLinkedApp:(NSString *)appId - teamMemberId:(NSString *)teamMemberId - keepAppFolder: - (nullable NSNumber *)keepAppFolder; - -/// -/// Revoke a list of linked applications of the team members. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMRevokeLinkedAppBatchResult` object on -/// success or a `DBTEAMRevokeLinkedAppBatchError` object on failure. -/// -- (DBRpcTask *)linkedAppsRevokeLinkedAppBatch: - (NSArray *)revokeLinkedApp; - -/// -/// Add users to member space limits excluded users list. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersAdd; - -/// -/// Add users to member space limits excluded users list. -/// -/// @param users List of users to be added/removed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersAdd: - (nullable NSArray *)users; - -/// -/// List member space limits excluded users. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersListResult` object on success -/// or a `DBTEAMExcludedUsersListError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersList; - -/// -/// List member space limits excluded users. -/// -/// @param limit Number of results to return per call. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersListResult` object on success -/// or a `DBTEAMExcludedUsersListError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersList: - (nullable NSNumber *)limit; - -/// -/// Continue listing member space limits excluded users. -/// -/// @param cursor Indicates from what point to get the next set of users. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersListResult` object on success -/// or a `DBTEAMExcludedUsersListContinueError` object on failure. -/// -- (DBRpcTask *) - memberSpaceLimitsExcludedUsersListContinue:(NSString *)cursor; - -/// -/// Remove users from member space limits excluded users list. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *) - memberSpaceLimitsExcludedUsersRemove; - -/// -/// Remove users from member space limits excluded users list. -/// -/// @param users List of users to be added/removed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *) - memberSpaceLimitsExcludedUsersRemove:(nullable NSArray *)users; - -/// -/// Get users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom space -/// limit, a team admin needs to set a member space limit for the team first. (the team admin can check the settings -/// here: https://www.dropbox.com/team/admin/settings/space). -/// -/// @param users List of users. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMCustomQuotaError` object on failure. -/// -- (DBRpcTask *, DBTEAMCustomQuotaError *> *)memberSpaceLimitsGetCustomQuota: - (NSArray *)users; - -/// -/// Remove users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom -/// space limit, a team admin needs to set a member space limit for the team first. (the team admin can check the -/// settings here: https://www.dropbox.com/team/admin/settings/space). -/// -/// @param users List of users. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object -/// on success or a `DBTEAMCustomQuotaError` object on failure. -/// -- (DBRpcTask *, DBTEAMCustomQuotaError *> *)memberSpaceLimitsRemoveCustomQuota: - (NSArray *)users; - -/// -/// Set users custom quota. Custom quota has to be at least 15GB. A maximum of 1000 members can be specified in a single -/// call. Note: to apply a custom space limit, a team admin needs to set a member space limit for the team first. (the -/// team admin can check the settings here: https://www.dropbox.com/team/admin/settings/space). -/// -/// @param usersAndQuotas List of users and their custom quotas. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMSetCustomQuotaError` object on failure. -/// -- (DBRpcTask *, DBTEAMSetCustomQuotaError *> *)memberSpaceLimitsSetCustomQuota: - (NSArray *)usersAndQuotas; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunch` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)membersAdd:(NSArray *)dNewMembers; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunch` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)membersAdd:(NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunchV2Result` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)membersAddV2: - (NSArray *)dNewMembers; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunchV2Result` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)membersAddV2: - (NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Once an async_job_id is returned from `membersAdd` , use this to poll the status of the asynchronous request. -/// Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddJobStatus` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersAddJobStatusGet:(NSString *)asyncJobId; - -/// -/// Once an async_job_id is returned from `membersAdd` , use this to poll the status of the asynchronous request. -/// Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddJobStatusV2Result` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersAddJobStatusGetV2:(NSString *)asyncJobId; - -/// -/// Deletes a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be deleted. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersDeleteProfilePhotoError` object on failure. -/// -- (DBRpcTask *)membersDeleteProfilePhoto: - (DBTEAMUserSelectorArg *)user; - -/// -/// Deletes a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be deleted. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersDeleteProfilePhotoError` object on failure. -/// -- (DBRpcTask *)membersDeleteProfilePhotoV2: - (DBTEAMUserSelectorArg *)user; - -/// -/// Get available TeamMemberRoles for the connected team. To be used with `membersSetAdminPermissions`. Permission : -/// Team member management. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersGetAvailableTeamMemberRolesResult` -/// object on success or a `void` object on failure. -/// -- (DBRpcTask *)membersGetAvailableTeamMemberRoles; - -/// -/// Returns information about multiple team members. Permission : Team information This endpoint will return -/// `idNotFound` in `DBTEAMMembersGetInfoItem`, for IDs (or emails) that cannot be matched to a valid team member. -/// -/// @param members List of team members. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMMembersGetInfoError` object on failure. -/// -- (DBRpcTask *, DBTEAMMembersGetInfoError *> *)membersGetInfo: - (NSArray *)members; - -/// -/// Returns information about multiple team members. Permission : Team information This endpoint will return -/// `idNotFound` in `DBTEAMMembersGetInfoItem`, for IDs (or emails) that cannot be matched to a valid team member. -/// -/// @param members List of team members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersGetInfoV2Result` object on success or -/// a `DBTEAMMembersGetInfoError` object on failure. -/// -- (DBRpcTask *)membersGetInfoV2: - (NSArray *)members; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListResult` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersList; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// @param limit Number of results to return per call. -/// @param includeRemoved Whether to return removed members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListResult` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersList:(nullable NSNumber *)limit - includeRemoved:(nullable NSNumber *)includeRemoved; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListV2Result` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersListV2; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// @param limit Number of results to return per call. -/// @param includeRemoved Whether to return removed members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListV2Result` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersListV2:(nullable NSNumber *)limit - includeRemoved:(nullable NSNumber *)includeRemoved; - -/// -/// Once a cursor has been retrieved from `membersList`, use this to paginate through all team members. Permission : -/// Team information. -/// -/// @param cursor Indicates from what point to get the next set of members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListResult` object on success or a -/// `DBTEAMMembersListContinueError` object on failure. -/// -- (DBRpcTask *)membersListContinue:(NSString *)cursor; - -/// -/// Once a cursor has been retrieved from `membersList`, use this to paginate through all team members. Permission : -/// Team information. -/// -/// @param cursor Indicates from what point to get the next set of members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListV2Result` object on success or a -/// `DBTEAMMembersListContinueError` object on failure. -/// -- (DBRpcTask *)membersListContinueV2:(NSString *)cursor; - -/// -/// Moves removed member's files to a different member. This endpoint initiates an asynchronous job. To obtain the final -/// result of the job, the client should periodically poll `membersMoveFormerMemberFilesJobStatusCheck`. Permission : -/// Team member management. -/// -/// @param transferDestId Files from the deleted member account will be transferred to this user. -/// @param transferAdminId Errors during the transfer process will be sent via email to this user. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMMembersTransferFormerMembersFilesError` object on failure. -/// -- (DBRpcTask *) - membersMoveFormerMemberFiles:(DBTEAMUserSelectorArg *)user - transferDestId:(DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(DBTEAMUserSelectorArg *)transferAdminId; - -/// -/// Once an async_job_id is returned from `membersMoveFormerMemberFiles` , use this to poll the status of the -/// asynchronous request. Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCPollEmptyResult` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersMoveFormerMemberFilesJobStatusCheck: - (NSString *)asyncJobId; - -/// -/// Recover a deleted member. Permission : Team member management Exactly one of team_member_id, email, or external_id -/// must be provided to identify the user account. -/// -/// @param user Identity of user to recover. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersRecoverError` object on failure. -/// -- (DBRpcTask *)membersRecover:(DBTEAMUserSelectorArg *)user; - -/// -/// Removes a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. Accounts can be recovered via `membersRecover` for a 7 -/// day period or until the account has been permanently deleted or transferred to another account (whichever comes -/// first). Calling `membersAdd` while a user is still recoverable on your team will return with `userAlreadyOnTeam` in -/// `DBTEAMMemberAddResult`. Accounts can have their files transferred via the admin console for a limited time, based -/// on the version history length associated with the team (180 days for most teams). This endpoint may initiate an -/// asynchronous job. To obtain the final result of the job, the client should periodically poll -/// `membersRemoveJobStatusGet`. -/// -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMMembersRemoveError` object on failure. -/// -- (DBRpcTask *)membersRemove:(DBTEAMUserSelectorArg *)user; - -/// -/// Removes a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. Accounts can be recovered via `membersRecover` for a 7 -/// day period or until the account has been permanently deleted or transferred to another account (whichever comes -/// first). Calling `membersAdd` while a user is still recoverable on your team will return with `userAlreadyOnTeam` in -/// `DBTEAMMemberAddResult`. Accounts can have their files transferred via the admin console for a limited time, based -/// on the version history length associated with the team (180 days for most teams). This endpoint may initiate an -/// asynchronous job. To obtain the final result of the job, the client should periodically poll -/// `membersRemoveJobStatusGet`. -/// -/// @param transferDestId If provided, files from the deleted member account will be transferred to this user. -/// @param transferAdminId If provided, errors during the transfer process will be sent via email to this user. If the -/// transfer_dest_id argument was provided, then this argument must be provided as well. -/// @param keepAccount Downgrade the member to a Basic account. The user will retain the email address associated with -/// their Dropbox account and data in their account that is not restricted to team members. In order to keep the -/// account the argument wipeData should be set to false. -/// @param retainTeamShares If provided, allows removed users to keep access to Dropbox folders (not Dropbox Paper -/// folders) already explicitly shared with them (not via a group) when they are downgraded to a Basic account. Users -/// will not retain access to folders that do not allow external sharing. In order to keep the sharing relationships, -/// the arguments wipeData should be set to false and keepAccount should be set to true. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMMembersRemoveError` object on failure. -/// -- (DBRpcTask *) - membersRemove:(DBTEAMUserSelectorArg *)user - wipeData:(nullable NSNumber *)wipeData - transferDestId:(nullable DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(nullable DBTEAMUserSelectorArg *)transferAdminId - keepAccount:(nullable NSNumber *)keepAccount - retainTeamShares:(nullable NSNumber *)retainTeamShares; - -/// -/// Once an async_job_id is returned from `membersRemove` , use this to poll the status of the asynchronous request. -/// Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCPollEmptyResult` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersRemoveJobStatusGet:(NSString *)asyncJobId; - -/// -/// Add secondary emails to users. Permission : Team member management. Emails that are on verified domains will be -/// verified automatically. For each email address not on a verified domain a verification email will be sent. -/// -/// @param dNewSecondaryEmails List of users and secondary emails to add. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMAddSecondaryEmailsResult` object on success -/// or a `DBTEAMAddSecondaryEmailsError` object on failure. -/// -- (DBRpcTask *)membersSecondaryEmailsAdd: - (NSArray *)dNewSecondaryEmails; - -/// -/// Delete secondary emails from users Permission : Team member management. Users will be notified of deletions of -/// verified secondary emails at both the secondary email and their primary email. -/// -/// @param emailsToDelete List of users and their secondary emails to delete. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMDeleteSecondaryEmailsResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)membersSecondaryEmailsDelete: - (NSArray *)emailsToDelete; - -/// -/// Resend secondary email verification emails. Permission : Team member management. -/// -/// @param emailsToResend List of users and secondary emails to resend verification emails to. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMResendVerificationEmailResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)membersSecondaryEmailsResendVerificationEmails: - (NSArray *)emailsToResend; - -/// -/// Sends welcome email to pending team member. Permission : Team member management Exactly one of team_member_id, -/// email, or external_id must be provided to identify the user account. No-op if team member is not pending. -/// -/// @param userSelectorArg Argument for selecting a single user, either by team_member_id, external_id or email. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersSendWelcomeError` object on failure. -/// -- (DBRpcTask *)membersSendWelcomeEmail: - (DBTEAMUserSelectorArg *)userSelectorArg; - -/// -/// Updates a team member's permissions. Permission : Team member management. -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRole The new role of the member. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersSetPermissionsResult` object on -/// success or a `DBTEAMMembersSetPermissionsError` object on failure. -/// -- (DBRpcTask *) - membersSetAdminPermissions:(DBTEAMUserSelectorArg *)user - dNewRole:(DBTEAMAdminTier *)dNewRole; - -/// -/// Updates a team member's permissions. Permission : Team member management. -/// -/// @param user Identity of user whose role will be set. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersSetPermissions2Result` object on -/// success or a `DBTEAMMembersSetPermissions2Error` object on failure. -/// -- (DBRpcTask *)membersSetAdminPermissionsV2: - (DBTEAMUserSelectorArg *)user; - -/// -/// Updates a team member's permissions. Permission : Team member management. -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRoles The new roles for the member. Send empty list to make user member only. For now, only up to one -/// role is allowed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersSetPermissions2Result` object on -/// success or a `DBTEAMMembersSetPermissions2Error` object on failure. -/// -- (DBRpcTask *) - membersSetAdminPermissionsV2:(DBTEAMUserSelectorArg *)user - dNewRoles:(nullable NSArray *)dNewRoles; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *)membersSetProfile:(DBTEAMUserSelectorArg *)user; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// @param dNewEmail New email for member. -/// @param dNewExternalId New external ID for member. -/// @param dNewGivenName New given name for member. -/// @param dNewSurname New surname for member. -/// @param dNewPersistentId New persistent ID. This field only available to teams using persistent ID SAML -/// configuration. -/// @param dNewIsDirectoryRestricted New value for whether the user is a directory restricted user. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *) - membersSetProfile:(DBTEAMUserSelectorArg *)user - dNewEmail:(nullable NSString *)dNewEmail - dNewExternalId:(nullable NSString *)dNewExternalId - dNewGivenName:(nullable NSString *)dNewGivenName - dNewSurname:(nullable NSString *)dNewSurname - dNewPersistentId:(nullable NSString *)dNewPersistentId - dNewIsDirectoryRestricted:(nullable NSNumber *)dNewIsDirectoryRestricted; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *)membersSetProfileV2: - (DBTEAMUserSelectorArg *)user; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// @param dNewEmail New email for member. -/// @param dNewExternalId New external ID for member. -/// @param dNewGivenName New given name for member. -/// @param dNewSurname New surname for member. -/// @param dNewPersistentId New persistent ID. This field only available to teams using persistent ID SAML -/// configuration. -/// @param dNewIsDirectoryRestricted New value for whether the user is a directory restricted user. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *) - membersSetProfileV2:(DBTEAMUserSelectorArg *)user - dNewEmail:(nullable NSString *)dNewEmail - dNewExternalId:(nullable NSString *)dNewExternalId - dNewGivenName:(nullable NSString *)dNewGivenName - dNewSurname:(nullable NSString *)dNewSurname - dNewPersistentId:(nullable NSString *)dNewPersistentId - dNewIsDirectoryRestricted:(nullable NSNumber *)dNewIsDirectoryRestricted; - -/// -/// Updates a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be set. -/// @param photo Image to set as the member's new profile photo. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersSetProfilePhotoError` object on failure. -/// -- (DBRpcTask *) - membersSetProfilePhoto:(DBTEAMUserSelectorArg *)user - photo:(DBACCOUNTPhotoSourceArg *)photo; - -/// -/// Updates a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be set. -/// @param photo Image to set as the member's new profile photo. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersSetProfilePhotoError` object on failure. -/// -- (DBRpcTask *) - membersSetProfilePhotoV2:(DBTEAMUserSelectorArg *)user - photo:(DBACCOUNTPhotoSourceArg *)photo; - -/// -/// Suspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. -/// -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersSuspendError` object on failure. -/// -- (DBRpcTask *)membersSuspend:(DBTEAMUserSelectorArg *)user; - -/// -/// Suspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. -/// -/// @param wipeData If provided, controls if the user's data will be deleted on their linked devices. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersSuspendError` object on failure. -/// -- (DBRpcTask *)membersSuspend:(DBTEAMUserSelectorArg *)user - wipeData:(nullable NSNumber *)wipeData; - -/// -/// Unsuspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. -/// -/// @param user Identity of user to unsuspend. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersUnsuspendError` object on failure. -/// -- (DBRpcTask *)membersUnsuspend:(DBTEAMUserSelectorArg *)user; - -/// -/// Returns a list of all team-accessible namespaces. This list includes team folders, shared folders containing team -/// members, team members' home namespaces, and team members' app folders. Home namespaces and app folders are always -/// owned by this team or members of the team, but shared folders may be owned by other users or other teams. Duplicates -/// may occur in the list. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamNamespacesListResult` object on success -/// or a `DBTEAMTeamNamespacesListError` object on failure. -/// -- (DBRpcTask *)namespacesList; - -/// -/// Returns a list of all team-accessible namespaces. This list includes team folders, shared folders containing team -/// members, team members' home namespaces, and team members' app folders. Home namespaces and app folders are always -/// owned by this team or members of the team, but shared folders may be owned by other users or other teams. Duplicates -/// may occur in the list. -/// -/// @param limit Specifying a value here has no effect. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamNamespacesListResult` object on success -/// or a `DBTEAMTeamNamespacesListError` object on failure. -/// -- (DBRpcTask *)namespacesList: - (nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `namespacesList`, use this to paginate through all team-accessible namespaces. -/// Duplicates may occur in the list. -/// -/// @param cursor Indicates from what point to get the next set of team-accessible namespaces. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamNamespacesListResult` object on success -/// or a `DBTEAMTeamNamespacesListContinueError` object on failure. -/// -- (DBRpcTask *)namespacesListContinue: - (NSString *)cursor; - -/// -/// DEPRECATED: Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESAddTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateAdd:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields - __deprecated_msg("propertiesTemplateAdd is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. The scope for the route is files.team_metadata.write. -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)propertiesTemplateGet: - (NSString *)templateId __deprecated_msg("propertiesTemplateGet is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. The scope for the route is files.team_metadata.write. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateList __deprecated_msg("propertiesTemplateList is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *)propertiesTemplateUpdate: - (NSString *)templateId __deprecated_msg("propertiesTemplateUpdate is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 bytes. -/// @param description_ Description for the new template. Template descriptions can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. There can be up to 32 properties in a -/// single template. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateUpdate:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields - __deprecated_msg("propertiesTemplateUpdate is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's user activity. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetActivityReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *) - reportsGetActivity __deprecated_msg("reportsGetActivity is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's user activity. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetActivityReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetActivity:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetActivity is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's linked devices. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetDevicesReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetDevices __deprecated_msg("reportsGetDevices " - "is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's linked devices. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetDevicesReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetDevices:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetDevices is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's membership. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetMembershipReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *) - reportsGetMembership __deprecated_msg("reportsGetMembership is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's membership. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetMembershipReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetMembership:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetMembership is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's storage usage. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetStorageReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetStorage __deprecated_msg("reportsGetStorage " - "is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's storage usage. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetStorageReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetStorage:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetStorage is deprecated."); - -/// -/// Endpoint adds Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case -/// of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Added entries cannot overflow limit of 10000 entries per team. Maximum 100 entries per call is allowed. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistAddResponse` object on -/// success or a `DBTEAMSharingAllowlistAddError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistAdd; - -/// -/// Endpoint adds Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case -/// of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Added entries cannot overflow limit of 10000 entries per team. Maximum 100 entries per call is allowed. -/// -/// @param domains List of domains represented by valid string representation (RFC-1034/5). -/// @param emails List of emails represented by valid string representation (RFC-5322/822). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistAddResponse` object on -/// success or a `DBTEAMSharingAllowlistAddError` object on failure. -/// -- (DBRpcTask *) - sharingAllowlistAdd:(nullable NSArray *)domains - emails:(nullable NSArray *)emails; - -/// -/// Lists Approve List entries for given team, from newest to oldest, returning up to `limit` entries at a time. If -/// there are more than `limit` entries associated with the current team, more can be fetched by passing the returned -/// `cursor` to `sharingAllowlistListContinue`. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistListResponse` object on -/// success or a `DBTEAMSharingAllowlistListError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistList; - -/// -/// Lists Approve List entries for given team, from newest to oldest, returning up to `limit` entries at a time. If -/// there are more than `limit` entries associated with the current team, more can be fetched by passing the returned -/// `cursor` to `sharingAllowlistListContinue`. -/// -/// @param limit The number of entries to fetch at one time. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistListResponse` object on -/// success or a `DBTEAMSharingAllowlistListError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistList: - (nullable NSNumber *)limit; - -/// -/// Lists entries associated with given team, starting from a the cursor. See `sharingAllowlistList`. -/// -/// @param cursor The cursor returned from a previous call to `sharingAllowlistList` or `sharingAllowlistListContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistListResponse` object on -/// success or a `DBTEAMSharingAllowlistListContinueError` object on failure. -/// -- (DBRpcTask *) - sharingAllowlistListContinue:(NSString *)cursor; - -/// -/// Endpoint removes Approve List entries. Changes are effective immediately. Changes are committed in transaction. In -/// case of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Entries being removed have to be present on the list. Maximum 1000 entries per call is allowed. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistRemoveResponse` object on -/// success or a `DBTEAMSharingAllowlistRemoveError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistRemove; - -/// -/// Endpoint removes Approve List entries. Changes are effective immediately. Changes are committed in transaction. In -/// case of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Entries being removed have to be present on the list. Maximum 1000 entries per call is allowed. -/// -/// @param domains List of domains represented by valid string representation (RFC-1034/5). -/// @param emails List of emails represented by valid string representation (RFC-5322/822). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistRemoveResponse` object on -/// success or a `DBTEAMSharingAllowlistRemoveError` object on failure. -/// -- (DBRpcTask *) - sharingAllowlistRemove:(nullable NSArray *)domains - emails:(nullable NSArray *)emails; - -/// -/// Sets an archived team folder's status to active. Permission : Team member file access. -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderActivateError` object on failure. -/// -- (DBRpcTask *)teamFolderActivate:(NSString *)teamFolderId; - -/// -/// Sets an active team folder's status to archived and removes all folder and file members. This endpoint cannot be -/// used for teams that have a shared team space. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderArchiveLaunch` object on success -/// or a `DBTEAMTeamFolderArchiveError` object on failure. -/// -- (DBRpcTask *)teamFolderArchive: - (NSString *)teamFolderId; - -/// -/// Sets an active team folder's status to archived and removes all folder and file members. This endpoint cannot be -/// used for teams that have a shared team space. Permission : Team member file access. -/// -/// @param forceAsyncOff Whether to force the archive to happen synchronously. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderArchiveLaunch` object on success -/// or a `DBTEAMTeamFolderArchiveError` object on failure. -/// -- (DBRpcTask *) - teamFolderArchive:(NSString *)teamFolderId - forceAsyncOff:(nullable NSNumber *)forceAsyncOff; - -/// -/// Returns the status of an asynchronous job for archiving a team folder. Permission : Team member file access. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderArchiveJobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)teamFolderArchiveCheck:(NSString *)asyncJobId; - -/// -/// Creates a new, active, team folder with no members. This endpoint can only be used for teams that do not already -/// have a shared team space. Permission : Team member file access. -/// -/// @param name Name for the new team folder. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderCreateError` object on failure. -/// -- (DBRpcTask *)teamFolderCreate:(NSString *)name; - -/// -/// Creates a new, active, team folder with no members. This endpoint can only be used for teams that do not already -/// have a shared team space. Permission : Team member file access. -/// -/// @param name Name for the new team folder. -/// @param syncSetting The sync setting to apply to this team folder. Only permitted if the team has team selective sync -/// enabled. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderCreateError` object on failure. -/// -- (DBRpcTask *) - teamFolderCreate:(NSString *)name - syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting; - -/// -/// Retrieves metadata for team folders. Permission : Team member file access. -/// -/// @param teamFolderIds The list of team folder IDs. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *, DBNilObject *> *)teamFolderGetInfo: - (NSArray *)teamFolderIds; - -/// -/// Lists all team folders. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderListResult` object on success or a -/// `DBTEAMTeamFolderListError` object on failure. -/// -- (DBRpcTask *)teamFolderList; - -/// -/// Lists all team folders. Permission : Team member file access. -/// -/// @param limit The maximum number of results to return per request. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderListResult` object on success or a -/// `DBTEAMTeamFolderListError` object on failure. -/// -- (DBRpcTask *)teamFolderList:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `teamFolderList`, use this to paginate through all team folders. Permission : -/// Team member file access. -/// -/// @param cursor Indicates from what point to get the next set of team folders. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderListResult` object on success or a -/// `DBTEAMTeamFolderListContinueError` object on failure. -/// -- (DBRpcTask *)teamFolderListContinue: - (NSString *)cursor; - -/// -/// Permanently deletes an archived team folder. This endpoint cannot be used for teams that have a shared team space. -/// Permission : Team member file access. -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMTeamFolderPermanentlyDeleteError` object on failure. -/// -- (DBRpcTask *)teamFolderPermanentlyDelete: - (NSString *)teamFolderId; - -/// -/// Changes an active team folder's name. Permission : Team member file access. -/// -/// @param name New team folder name. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderRenameError` object on failure. -/// -- (DBRpcTask *)teamFolderRename:(NSString *)teamFolderId - name:(NSString *)name; - -/// -/// Updates the sync settings on a team folder or its contents. Use of this endpoint requires that the team has team -/// selective sync enabled. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderUpdateSyncSettingsError` object on failure. -/// -- (DBRpcTask *)teamFolderUpdateSyncSettings: - (NSString *)teamFolderId; - -/// -/// Updates the sync settings on a team folder or its contents. Use of this endpoint requires that the team has team -/// selective sync enabled. -/// -/// @param syncSetting Sync setting to apply to the team folder itself. Only meaningful if the team folder is not a -/// shared team root. -/// @param contentSyncSettings Sync settings to apply to contents of this team folder. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderUpdateSyncSettingsError` object on failure. -/// -- (DBRpcTask *) - teamFolderUpdateSyncSettings:(NSString *)teamFolderId - syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting - contentSyncSettings:(nullable NSArray *)contentSyncSettings; - -/// -/// Returns the member profile of the admin who generated the team access token used to make the call. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTokenGetAuthenticatedAdminResult` object on -/// success or a `DBTEAMTokenGetAuthenticatedAdminError` object on failure. -/// -- (DBRpcTask *) - tokenGetAuthenticatedAdmin; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderAccessError.h deleted file mode 100644 index 2bfc69e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderAccessError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderAccessError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderAccessErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderAccessErrorTag) { - /// The team folder ID is invalid. - DBTEAMTeamFolderAccessErrorInvalidTeamFolderId, - - /// The authenticated app does not have permission to manage that team - /// folder. - DBTEAMTeamFolderAccessErrorNoAccess, - - /// (no description). - DBTEAMTeamFolderAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_team_folder_id". -/// -/// Description of the "invalid_team_folder_id" tag state: The team folder ID is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidTeamFolderId; - -/// -/// Initializes union class with tag state of "no_access". -/// -/// Description of the "no_access" tag state: The authenticated app does not -/// have permission to manage that team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_team_folder_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_team_folder_id". -/// -- (BOOL)isInvalidTeamFolderId; - -/// -/// Retrieves whether the union's current tag state has value "no_access". -/// -/// @return Whether the union's current tag state has value "no_access". -/// -- (BOOL)isNoAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderAccessError` union. -/// -@interface DBTEAMTeamFolderAccessErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderAccessError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderAccessError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderAccessError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderAccessError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderAccessError` object. -/// -+ (DBTEAMTeamFolderAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderActivateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderActivateError.h deleted file mode 100644 index c1a5c68b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderActivateError.h +++ /dev/null @@ -1,182 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderActivateError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderActivateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderActivateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderActivateErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderActivateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderActivateErrorTag) { - /// (no description). - DBTEAMTeamFolderActivateErrorAccessError, - - /// (no description). - DBTEAMTeamFolderActivateErrorStatusError, - - /// (no description). - DBTEAMTeamFolderActivateErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderActivateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderActivateErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderActivateError` union. -/// -@interface DBTEAMTeamFolderActivateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderActivateError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderActivateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderActivateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderActivateError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderActivateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderActivateError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderActivateError` object. -/// -+ (DBTEAMTeamFolderActivateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveArg.h deleted file mode 100644 index 2692e9a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMTeamFolderIdArg.h" - -@class DBTEAMTeamFolderArchiveArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveArg : DBTEAMTeamFolderIdArg - -#pragma mark - Instance fields - -/// Whether to force the archive to happen synchronously. -@property (nonatomic, readonly) NSNumber *forceAsyncOff; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param forceAsyncOff Whether to force the archive to happen synchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId forceAsyncOff:(nullable NSNumber *)forceAsyncOff; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderArchiveArg` struct. -/// -@interface DBTEAMTeamFolderArchiveArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveArg` object. -/// -+ (DBTEAMTeamFolderArchiveArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveError.h deleted file mode 100644 index 57713725..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveError.h +++ /dev/null @@ -1,182 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderArchiveError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderArchiveErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderArchiveError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderArchiveErrorTag) { - /// (no description). - DBTEAMTeamFolderArchiveErrorAccessError, - - /// (no description). - DBTEAMTeamFolderArchiveErrorStatusError, - - /// (no description). - DBTEAMTeamFolderArchiveErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderArchiveErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderArchiveError` union. -/// -@interface DBTEAMTeamFolderArchiveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveError` object. -/// -+ (DBTEAMTeamFolderArchiveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveJobStatus.h deleted file mode 100644 index 56ba7997..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveJobStatus.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderArchiveError; -@class DBTEAMTeamFolderArchiveJobStatus; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderArchiveJobStatusTag` enum type represents the possible -/// tag states with which the `DBTEAMTeamFolderArchiveJobStatus` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderArchiveJobStatusTag) { - /// The asynchronous job is still in progress. - DBTEAMTeamFolderArchiveJobStatusInProgress, - - /// The archive job has finished. The value is the metadata for the - /// resulting team folder. - DBTEAMTeamFolderArchiveJobStatusComplete, - - /// Error occurred while performing an asynchronous job from - /// `teamFolderArchive`. - DBTEAMTeamFolderArchiveJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveJobStatusTag tag; - -/// The archive job has finished. The value is the metadata for the resulting -/// team folder. @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderMetadata *complete; - -/// Error occurred while performing an asynchronous job from -/// `teamFolderArchive`. @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The archive job has finished. The -/// value is the metadata for the resulting team folder. -/// -/// @param complete The archive job has finished. The value is the metadata for -/// the resulting team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBTEAMTeamFolderMetadata *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: Error occurred while performing an -/// asynchronous job from `teamFolderArchive`. -/// -/// @param failed Error occurred while performing an asynchronous job from -/// `teamFolderArchive`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBTEAMTeamFolderArchiveError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderArchiveJobStatus` union. -/// -@interface DBTEAMTeamFolderArchiveJobStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveJobStatus` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveJobStatus *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveJobStatus` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveJobStatus` object. -/// -+ (DBTEAMTeamFolderArchiveJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveLaunch.h deleted file mode 100644 index 045d4db9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderArchiveLaunch.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderArchiveLaunch; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveLaunch` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderArchiveLaunchTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderArchiveLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderArchiveLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBTEAMTeamFolderArchiveLaunchAsyncJobId, - - /// (no description). - DBTEAMTeamFolderArchiveLaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderMetadata *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBTEAMTeamFolderMetadata *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderArchiveLaunch` union. -/// -@interface DBTEAMTeamFolderArchiveLaunchSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveLaunch` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveLaunch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveLaunch *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveLaunch` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveLaunch` object. -/// -+ (DBTEAMTeamFolderArchiveLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderCreateArg.h deleted file mode 100644 index 35939bb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderCreateArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingArg; -@class DBTEAMTeamFolderCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderCreateArg : NSObject - -#pragma mark - Instance fields - -/// Name for the new team folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The sync setting to apply to this team folder. Only permitted if the team -/// has team selective sync enabled. -@property (nonatomic, readonly, nullable) DBFILESSyncSettingArg *syncSetting; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Name for the new team folder. -/// @param syncSetting The sync setting to apply to this team folder. Only -/// permitted if the team has team selective sync enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name Name for the new team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderCreateArg` struct. -/// -@interface DBTEAMTeamFolderCreateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderCreateArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderCreateArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderCreateArg` object. -/// -+ (DBTEAMTeamFolderCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderCreateError.h deleted file mode 100644 index 71880562..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderCreateError.h +++ /dev/null @@ -1,196 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingsError; -@class DBTEAMTeamFolderCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderCreateErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderCreateErrorTag) { - /// The provided name cannot be used. - DBTEAMTeamFolderCreateErrorInvalidFolderName, - - /// There is already a team folder with the provided name. - DBTEAMTeamFolderCreateErrorFolderNameAlreadyUsed, - - /// The provided name cannot be used because it is reserved. - DBTEAMTeamFolderCreateErrorFolderNameReserved, - - /// An error occurred setting the sync settings. - DBTEAMTeamFolderCreateErrorSyncSettingsError, - - /// (no description). - DBTEAMTeamFolderCreateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderCreateErrorTag tag; - -/// An error occurred setting the sync settings. @note Ensure the -/// `isSyncSettingsError` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSyncSettingsError *syncSettingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_folder_name". -/// -/// Description of the "invalid_folder_name" tag state: The provided name cannot -/// be used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFolderName; - -/// -/// Initializes union class with tag state of "folder_name_already_used". -/// -/// Description of the "folder_name_already_used" tag state: There is already a -/// team folder with the provided name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "folder_name_reserved". -/// -/// Description of the "folder_name_reserved" tag state: The provided name -/// cannot be used because it is reserved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameReserved; - -/// -/// Initializes union class with tag state of "sync_settings_error". -/// -/// Description of the "sync_settings_error" tag state: An error occurred -/// setting the sync settings. -/// -/// @param syncSettingsError An error occurred setting the sync settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSyncSettingsError:(DBFILESSyncSettingsError *)syncSettingsError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_folder_name". -/// -/// @return Whether the union's current tag state has value -/// "invalid_folder_name". -/// -- (BOOL)isInvalidFolderName; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_already_used". -/// -- (BOOL)isFolderNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_reserved". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_reserved". -/// -- (BOOL)isFolderNameReserved; - -/// -/// Retrieves whether the union's current tag state has value -/// "sync_settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `syncSettingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sync_settings_error". -/// -- (BOOL)isSyncSettingsError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderCreateError` union. -/// -@interface DBTEAMTeamFolderCreateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderCreateError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderCreateError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderCreateError` object. -/// -+ (DBTEAMTeamFolderCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderGetInfoItem.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderGetInfoItem.h deleted file mode 100644 index 9ada3fa2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderGetInfoItem.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderGetInfoItem; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderGetInfoItem` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderGetInfoItem : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderGetInfoItemTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderGetInfoItem` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderGetInfoItemTag) { - /// An ID that was provided as a parameter to `teamFolderGetInfo` did not - /// match any of the team's team folders. - DBTEAMTeamFolderGetInfoItemIdNotFound, - - /// Properties of a team folder. - DBTEAMTeamFolderGetInfoItemTeamFolderMetadata, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderGetInfoItemTag tag; - -/// An ID that was provided as a parameter to `teamFolderGetInfo` did not match -/// any of the team's team folders. @note Ensure the `isIdNotFound` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Properties of a team folder. @note Ensure the `isTeamFolderMetadata` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderMetadata *teamFolderMetadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `teamFolderGetInfo` did not match any of the team's team -/// folders. -/// -/// @param idNotFound An ID that was provided as a parameter to -/// `teamFolderGetInfo` did not match any of the team's team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "team_folder_metadata". -/// -/// Description of the "team_folder_metadata" tag state: Properties of a team -/// folder. -/// -/// @param teamFolderMetadata Properties of a team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderMetadata:(DBTEAMTeamFolderMetadata *)teamFolderMetadata; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderMetadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_metadata". -/// -- (BOOL)isTeamFolderMetadata; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderGetInfoItem` union. -/// -@interface DBTEAMTeamFolderGetInfoItemSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderGetInfoItem` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderGetInfoItem` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderGetInfoItem` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderGetInfoItem *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderGetInfoItem` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderGetInfoItem` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderGetInfoItem` object. -/// -+ (DBTEAMTeamFolderGetInfoItem *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderIdArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderIdArg.h deleted file mode 100644 index 88db7bfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderIdArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderIdArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderIdArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderIdArg : NSObject - -#pragma mark - Instance fields - -/// The ID of the team folder. -@property (nonatomic, readonly, copy) NSString *teamFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderIdArg` struct. -/// -@interface DBTEAMTeamFolderIdArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderIdArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderIdArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderIdArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderIdArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderIdArg` object. -/// -+ (DBTEAMTeamFolderIdArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderIdListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderIdListArg.h deleted file mode 100644 index f5b35dd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderIdListArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderIdListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderIdListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderIdListArg : NSObject - -#pragma mark - Instance fields - -/// The list of team folder IDs. -@property (nonatomic, readonly) NSArray *teamFolderIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderIds The list of team folder IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderIds:(NSArray *)teamFolderIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderIdListArg` struct. -/// -@interface DBTEAMTeamFolderIdListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderIdListArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderIdListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderIdListArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderIdListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdListArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderIdListArg` object. -/// -+ (DBTEAMTeamFolderIdListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderInvalidStatusError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderInvalidStatusError.h deleted file mode 100644 index c90c0f38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderInvalidStatusError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderInvalidStatusError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderInvalidStatusError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderInvalidStatusError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderInvalidStatusErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderInvalidStatusError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderInvalidStatusErrorTag) { - /// The folder is active and the operation did not succeed. - DBTEAMTeamFolderInvalidStatusErrorActive, - - /// The folder is archived and the operation did not succeed. - DBTEAMTeamFolderInvalidStatusErrorArchived, - - /// The folder is being archived and the operation did not succeed. - DBTEAMTeamFolderInvalidStatusErrorArchiveInProgress, - - /// (no description). - DBTEAMTeamFolderInvalidStatusErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: The folder is active and the -/// operation did not succeed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "archived". -/// -/// Description of the "archived" tag state: The folder is archived and the -/// operation did not succeed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchived; - -/// -/// Initializes union class with tag state of "archive_in_progress". -/// -/// Description of the "archive_in_progress" tag state: The folder is being -/// archived and the operation did not succeed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchiveInProgress; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "archived". -/// -/// @return Whether the union's current tag state has value "archived". -/// -- (BOOL)isArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "archive_in_progress". -/// -/// @return Whether the union's current tag state has value -/// "archive_in_progress". -/// -- (BOOL)isArchiveInProgress; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderInvalidStatusError` union. -/// -@interface DBTEAMTeamFolderInvalidStatusErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderInvalidStatusError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderInvalidStatusError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderInvalidStatusError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderInvalidStatusError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderInvalidStatusError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderInvalidStatusError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderInvalidStatusError` object. -/// -+ (DBTEAMTeamFolderInvalidStatusError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListArg.h deleted file mode 100644 index c03b16f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListArg : NSObject - -#pragma mark - Instance fields - -/// The maximum number of results to return per request. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximum number of results to return per request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListArg` struct. -/// -@interface DBTEAMTeamFolderListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListArg` object. -/// -+ (DBTEAMTeamFolderListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListContinueArg.h deleted file mode 100644 index 95650314..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of team folders. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListContinueArg` struct. -/// -@interface DBTEAMTeamFolderListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListContinueArg` object. -/// -+ (DBTEAMTeamFolderListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListContinueError.h deleted file mode 100644 index 350e063a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListContinueError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderListContinueErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMTeamFolderListContinueError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMTeamFolderListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMTeamFolderListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderListContinueError` union. -/// -@interface DBTEAMTeamFolderListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListContinueError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListContinueError` object. -/// -+ (DBTEAMTeamFolderListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListError.h deleted file mode 100644 index 6f868917..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListError.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListError : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListError` struct. -/// -@interface DBTEAMTeamFolderListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListError` object. -/// -+ (DBTEAMTeamFolderListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListResult.h deleted file mode 100644 index 9cda7ff5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderListResult.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListResult; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListResult` struct. -/// -/// Result for `teamFolderList` and `teamFolderListContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListResult : NSObject - -#pragma mark - Instance fields - -/// List of all team folders in the authenticated team. -@property (nonatomic, readonly) NSArray *teamFolders; - -/// Pass the cursor into `teamFolderListContinue` to obtain additional team -/// folders. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional team folders that have not been returned -/// yet. An additional call to `teamFolderListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolders List of all team folders in the authenticated team. -/// @param cursor Pass the cursor into `teamFolderListContinue` to obtain -/// additional team folders. -/// @param hasMore Is true if there are additional team folders that have not -/// been returned yet. An additional call to `teamFolderListContinue` can -/// retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolders:(NSArray *)teamFolders - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListResult` struct. -/// -@interface DBTEAMTeamFolderListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListResult` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListResult *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListResult` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListResult` object. -/// -+ (DBTEAMTeamFolderListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderMetadata.h deleted file mode 100644 index 4b7fca13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderMetadata.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESContentSyncSetting; -@class DBFILESSyncSetting; -@class DBTEAMTeamFolderMetadata; -@class DBTEAMTeamFolderStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderMetadata` struct. -/// -/// Properties of a team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderMetadata : NSObject - -#pragma mark - Instance fields - -/// The ID of the team folder. -@property (nonatomic, readonly, copy) NSString *teamFolderId; - -/// The name of the team folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The status of the team folder. -@property (nonatomic, readonly) DBTEAMTeamFolderStatus *status; - -/// True if this team folder is a shared team root. -@property (nonatomic, readonly) NSNumber *isTeamSharedDropbox; - -/// The sync setting applied to this team folder. -@property (nonatomic, readonly) DBFILESSyncSetting *syncSetting; - -/// Sync settings applied to contents of this team folder. -@property (nonatomic, readonly) NSArray *contentSyncSettings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param name The name of the team folder. -/// @param status The status of the team folder. -/// @param isTeamSharedDropbox True if this team folder is a shared team root. -/// @param syncSetting The sync setting applied to this team folder. -/// @param contentSyncSettings Sync settings applied to contents of this team -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId - name:(NSString *)name - status:(DBTEAMTeamFolderStatus *)status - isTeamSharedDropbox:(NSNumber *)isTeamSharedDropbox - syncSetting:(DBFILESSyncSetting *)syncSetting - contentSyncSettings:(NSArray *)contentSyncSettings; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderMetadata` struct. -/// -@interface DBTEAMTeamFolderMetadataSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderMetadata` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderMetadata *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderMetadata` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderMetadata` object. -/// -+ (DBTEAMTeamFolderMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderPermanentlyDeleteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderPermanentlyDeleteError.h deleted file mode 100644 index 6df60fce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderPermanentlyDeleteError.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderPermanentlyDeleteError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderPermanentlyDeleteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderPermanentlyDeleteError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderPermanentlyDeleteErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderPermanentlyDeleteError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderPermanentlyDeleteErrorTag) { - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorAccessError, - - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorStatusError, - - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderPermanentlyDeleteErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderPermanentlyDeleteError` -/// union. -/// -@interface DBTEAMTeamFolderPermanentlyDeleteErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderPermanentlyDeleteError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderPermanentlyDeleteError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderPermanentlyDeleteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderPermanentlyDeleteError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderPermanentlyDeleteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderPermanentlyDeleteError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderPermanentlyDeleteError` -/// object. -/// -+ (DBTEAMTeamFolderPermanentlyDeleteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderRenameArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderRenameArg.h deleted file mode 100644 index 6a782a31..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderRenameArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMTeamFolderIdArg.h" - -@class DBTEAMTeamFolderRenameArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderRenameArg : DBTEAMTeamFolderIdArg - -#pragma mark - Instance fields - -/// New team folder name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param name New team folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId name:(NSString *)name; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderRenameArg` struct. -/// -@interface DBTEAMTeamFolderRenameArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderRenameArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderRenameArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderRenameArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderRenameArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderRenameArg` object. -/// -+ (DBTEAMTeamFolderRenameArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderRenameError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderRenameError.h deleted file mode 100644 index 109ce09f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderRenameError.h +++ /dev/null @@ -1,247 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderRenameError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderRenameError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderRenameErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderRenameError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderRenameErrorTag) { - /// (no description). - DBTEAMTeamFolderRenameErrorAccessError, - - /// (no description). - DBTEAMTeamFolderRenameErrorStatusError, - - /// (no description). - DBTEAMTeamFolderRenameErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderRenameErrorOther, - - /// The provided folder name cannot be used. - DBTEAMTeamFolderRenameErrorInvalidFolderName, - - /// There is already a team folder with the same name. - DBTEAMTeamFolderRenameErrorFolderNameAlreadyUsed, - - /// The provided name cannot be used because it is reserved. - DBTEAMTeamFolderRenameErrorFolderNameReserved, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderRenameErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_folder_name". -/// -/// Description of the "invalid_folder_name" tag state: The provided folder name -/// cannot be used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFolderName; - -/// -/// Initializes union class with tag state of "folder_name_already_used". -/// -/// Description of the "folder_name_already_used" tag state: There is already a -/// team folder with the same name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "folder_name_reserved". -/// -/// Description of the "folder_name_reserved" tag state: The provided name -/// cannot be used because it is reserved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameReserved; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_folder_name". -/// -/// @return Whether the union's current tag state has value -/// "invalid_folder_name". -/// -- (BOOL)isInvalidFolderName; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_already_used". -/// -- (BOOL)isFolderNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_reserved". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_reserved". -/// -- (BOOL)isFolderNameReserved; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderRenameError` union. -/// -@interface DBTEAMTeamFolderRenameErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderRenameError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderRenameError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderRenameError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderRenameError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderRenameError` object. -/// -+ (DBTEAMTeamFolderRenameError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderStatus.h deleted file mode 100644 index afac7f43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderStatus.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMTeamFolderStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderStatusTag) { - /// The team folder and sub-folders are available to all members. - DBTEAMTeamFolderStatusActive, - - /// The team folder is not accessible outside of the team folder manager. - DBTEAMTeamFolderStatusArchived, - - /// The team folder is not accessible outside of the team folder manager. - DBTEAMTeamFolderStatusArchiveInProgress, - - /// (no description). - DBTEAMTeamFolderStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: The team folder and sub-folders are -/// available to all members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "archived". -/// -/// Description of the "archived" tag state: The team folder is not accessible -/// outside of the team folder manager. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchived; - -/// -/// Initializes union class with tag state of "archive_in_progress". -/// -/// Description of the "archive_in_progress" tag state: The team folder is not -/// accessible outside of the team folder manager. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchiveInProgress; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "archived". -/// -/// @return Whether the union's current tag state has value "archived". -/// -- (BOOL)isArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "archive_in_progress". -/// -/// @return Whether the union's current tag state has value -/// "archive_in_progress". -/// -- (BOOL)isArchiveInProgress; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderStatus` union. -/// -@interface DBTEAMTeamFolderStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderStatus` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderStatus *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderStatus` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderStatus` object. -/// -+ (DBTEAMTeamFolderStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderTeamSharedDropboxError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderTeamSharedDropboxError.h deleted file mode 100644 index c085669b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderTeamSharedDropboxError.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderTeamSharedDropboxError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderTeamSharedDropboxError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderTeamSharedDropboxErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderTeamSharedDropboxError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderTeamSharedDropboxErrorTag) { - /// This action is not allowed for a shared team root. - DBTEAMTeamFolderTeamSharedDropboxErrorDisallowed, - - /// (no description). - DBTEAMTeamFolderTeamSharedDropboxErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disallowed". -/// -/// Description of the "disallowed" tag state: This action is not allowed for a -/// shared team root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disallowed". -/// -/// @return Whether the union's current tag state has value "disallowed". -/// -- (BOOL)isDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderTeamSharedDropboxError` -/// union. -/// -@interface DBTEAMTeamFolderTeamSharedDropboxErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderTeamSharedDropboxError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderTeamSharedDropboxError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderTeamSharedDropboxError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderTeamSharedDropboxError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderTeamSharedDropboxError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderTeamSharedDropboxError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderTeamSharedDropboxError` -/// object. -/// -+ (DBTEAMTeamFolderTeamSharedDropboxError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderUpdateSyncSettingsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderUpdateSyncSettingsArg.h deleted file mode 100644 index 78ec6cd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderUpdateSyncSettingsArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMTeamFolderIdArg.h" - -@class DBFILESContentSyncSettingArg; -@class DBFILESSyncSettingArg; -@class DBTEAMTeamFolderUpdateSyncSettingsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderUpdateSyncSettingsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsArg : DBTEAMTeamFolderIdArg - -#pragma mark - Instance fields - -/// Sync setting to apply to the team folder itself. Only meaningful if the team -/// folder is not a shared team root. -@property (nonatomic, readonly, nullable) DBFILESSyncSettingArg *syncSetting; - -/// Sync settings to apply to contents of this team folder. -@property (nonatomic, readonly, nullable) NSArray *contentSyncSettings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param syncSetting Sync setting to apply to the team folder itself. Only -/// meaningful if the team folder is not a shared team root. -/// @param contentSyncSettings Sync settings to apply to contents of this team -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId - syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting - contentSyncSettings:(nullable NSArray *)contentSyncSettings; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderUpdateSyncSettingsArg` struct. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderUpdateSyncSettingsArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderUpdateSyncSettingsArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderUpdateSyncSettingsArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderUpdateSyncSettingsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderUpdateSyncSettingsArg` -/// object. -/// -+ (DBTEAMTeamFolderUpdateSyncSettingsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderUpdateSyncSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderUpdateSyncSettingsError.h deleted file mode 100644 index 15b52610..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamFolderUpdateSyncSettingsError.h +++ /dev/null @@ -1,218 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingsError; -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; -@class DBTEAMTeamFolderUpdateSyncSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderUpdateSyncSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderUpdateSyncSettingsErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderUpdateSyncSettingsErrorTag) { - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorAccessError, - - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorStatusError, - - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorOther, - - /// An error occurred setting the sync settings. - DBTEAMTeamFolderUpdateSyncSettingsErrorSyncSettingsError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderUpdateSyncSettingsErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -/// An error occurred setting the sync settings. @note Ensure the -/// `isSyncSettingsError` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSyncSettingsError *syncSettingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "sync_settings_error". -/// -/// Description of the "sync_settings_error" tag state: An error occurred -/// setting the sync settings. -/// -/// @param syncSettingsError An error occurred setting the sync settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSyncSettingsError:(DBFILESSyncSettingsError *)syncSettingsError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "sync_settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `syncSettingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sync_settings_error". -/// -- (BOOL)isSyncSettingsError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// union. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderUpdateSyncSettingsError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderUpdateSyncSettingsError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderUpdateSyncSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// object. -/// -+ (DBTEAMTeamFolderUpdateSyncSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamGetInfoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamGetInfoResult.h deleted file mode 100644 index 6416ae5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamGetInfoResult.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESTeamMemberPolicies; -@class DBTEAMTeamGetInfoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamGetInfoResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamGetInfoResult : NSObject - -#pragma mark - Instance fields - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *name; - -/// The ID of the team. -@property (nonatomic, readonly, copy) NSString *teamId; - -/// The number of licenses available to the team. -@property (nonatomic, readonly) NSNumber *numLicensedUsers; - -/// The number of accounts that have been invited or are already active members -/// of the team. -@property (nonatomic, readonly) NSNumber *numProvisionedUsers; - -/// The number of licenses used on the team. -@property (nonatomic, readonly) NSNumber *numUsedLicenses; - -/// (no description). -@property (nonatomic, readonly) DBTEAMPOLICIESTeamMemberPolicies *policies; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of the team. -/// @param teamId The ID of the team. -/// @param numLicensedUsers The number of licenses available to the team. -/// @param numProvisionedUsers The number of accounts that have been invited or -/// are already active members of the team. -/// @param policies (no description). -/// @param numUsedLicenses The number of licenses used on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - teamId:(NSString *)teamId - numLicensedUsers:(NSNumber *)numLicensedUsers - numProvisionedUsers:(NSNumber *)numProvisionedUsers - policies:(DBTEAMPOLICIESTeamMemberPolicies *)policies - numUsedLicenses:(nullable NSNumber *)numUsedLicenses; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The name of the team. -/// @param teamId The ID of the team. -/// @param numLicensedUsers The number of licenses available to the team. -/// @param numProvisionedUsers The number of accounts that have been invited or -/// are already active members of the team. -/// @param policies (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - teamId:(NSString *)teamId - numLicensedUsers:(NSNumber *)numLicensedUsers - numProvisionedUsers:(NSNumber *)numProvisionedUsers - policies:(DBTEAMPOLICIESTeamMemberPolicies *)policies; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamGetInfoResult` struct. -/// -@interface DBTEAMTeamGetInfoResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamGetInfoResult` instances. -/// -/// @param instance An instance of the `DBTEAMTeamGetInfoResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamGetInfoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamGetInfoResult *)instance; - -/// -/// Deserializes `DBTEAMTeamGetInfoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamGetInfoResult` API object. -/// -/// @return An instantiation of the `DBTEAMTeamGetInfoResult` object. -/// -+ (DBTEAMTeamGetInfoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfo.h deleted file mode 100644 index d6554d05..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; -@class DBTEAMTeamMemberInfo; -@class DBTEAMTeamMemberProfile; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfo` struct. -/// -/// Information about a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberInfo : NSObject - -#pragma mark - Instance fields - -/// Profile of a user as a member of a team. -@property (nonatomic, readonly) DBTEAMTeamMemberProfile *profile; - -/// The user's role in the team. -@property (nonatomic, readonly) DBTEAMAdminTier *role; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profile Profile of a user as a member of a team. -/// @param role The user's role in the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMTeamMemberProfile *)profile role:(DBTEAMAdminTier *)role; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfo` struct. -/// -@interface DBTEAMTeamMemberInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberInfo` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberInfo *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfo` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberInfo` object. -/// -+ (DBTEAMTeamMemberInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfoV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfoV2.h deleted file mode 100644 index ae202b5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfoV2.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberInfoV2; -@class DBTEAMTeamMemberProfile; -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfoV2` struct. -/// -/// Information about a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberInfoV2 : NSObject - -#pragma mark - Instance fields - -/// Profile of a user as a member of a team. -@property (nonatomic, readonly) DBTEAMTeamMemberProfile *profile; - -/// The user's roles in the team. -@property (nonatomic, readonly, nullable) NSArray *roles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profile Profile of a user as a member of a team. -/// @param roles The user's roles in the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMTeamMemberProfile *)profile - roles:(nullable NSArray *)roles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param profile Profile of a user as a member of a team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMTeamMemberProfile *)profile; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfoV2` struct. -/// -@interface DBTEAMTeamMemberInfoV2Serializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberInfoV2` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberInfoV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberInfoV2 *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberInfoV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberInfoV2` object. -/// -+ (DBTEAMTeamMemberInfoV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfoV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfoV2Result.h deleted file mode 100644 index bfebce29..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberInfoV2Result.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberInfoV2; -@class DBTEAMTeamMemberInfoV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfoV2Result` struct. -/// -/// Information about a team member, after the change, like at -/// `membersSetProfile`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberInfoV2Result : NSObject - -#pragma mark - Instance fields - -/// Member info, after the change. -@property (nonatomic, readonly) DBTEAMTeamMemberInfoV2 *memberInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberInfo Member info, after the change. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInfo:(DBTEAMTeamMemberInfoV2 *)memberInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfoV2Result` struct. -/// -@interface DBTEAMTeamMemberInfoV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberInfoV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberInfoV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberInfoV2Result *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberInfoV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberInfoV2Result` object. -/// -+ (DBTEAMTeamMemberInfoV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberProfile.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberProfile.h deleted file mode 100644 index e522804a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberProfile.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMemberProfile.h" - -@class DBSECONDARYEMAILSSecondaryEmail; -@class DBTEAMTeamMemberProfile; -@class DBTEAMTeamMemberStatus; -@class DBTEAMTeamMembershipType; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberProfile` struct. -/// -/// Profile of a user as a member of a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberProfile : DBTEAMMemberProfile - -#pragma mark - Instance fields - -/// List of group IDs of groups that the user belongs to. -@property (nonatomic, readonly) NSArray *groups; - -/// The namespace id of the user's root folder. -@property (nonatomic, readonly, copy) NSString *memberFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// @param groups List of group IDs of groups that the user belongs to. -/// @param memberFolderId The namespace id of the user's root folder. -/// @param externalId External ID that a team can attach to the user. An -/// application using the API may find it easier to use their own IDs instead of -/// Dropbox IDs like account_id or team_member_id. -/// @param accountId A user's account identifier. -/// @param secondaryEmails Secondary emails of a user. -/// @param invitedOn The date and time the user was invited to the team -/// (contains value only when the member's status matches `invited` in -/// `DBTEAMTeamMemberStatus`). -/// @param joinedOn The date and time the user joined as a member of a specific -/// team. -/// @param suspendedOn The date and time the user was suspended from the team -/// (contains value only when the member's status matches `suspended` in -/// `DBTEAMTeamMemberStatus`). -/// @param persistentId Persistent ID that a team can attach to the user. The -/// persistent ID is unique ID to be used for SAML authentication. -/// @param isDirectoryRestricted Whether the user is a directory restricted -/// user. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType - groups:(NSArray *)groups - memberFolderId:(NSString *)memberFolderId - externalId:(nullable NSString *)externalId - accountId:(nullable NSString *)accountId - secondaryEmails:(nullable NSArray *)secondaryEmails - invitedOn:(nullable NSDate *)invitedOn - joinedOn:(nullable NSDate *)joinedOn - suspendedOn:(nullable NSDate *)suspendedOn - persistentId:(nullable NSString *)persistentId - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - profilePhotoUrl:(nullable NSString *)profilePhotoUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// @param groups List of group IDs of groups that the user belongs to. -/// @param memberFolderId The namespace id of the user's root folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType - groups:(NSArray *)groups - memberFolderId:(NSString *)memberFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberProfile` struct. -/// -@interface DBTEAMTeamMemberProfileSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberProfile` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberProfile` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberProfile` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberProfile *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberProfile` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberProfile` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberProfile` object. -/// -+ (DBTEAMTeamMemberProfile *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberRole.h deleted file mode 100644 index 54e4e295..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberRole.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberRole` struct. -/// -/// A role which can be attached to a team member. This replaces AdminTier; each -/// AdminTier corresponds to a new TeamMemberRole with a matching name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberRole : NSObject - -#pragma mark - Instance fields - -/// A string containing encoded role ID. For roles defined by Dropbox, this is -/// the same across all teams. -@property (nonatomic, readonly, copy) NSString *roleId; - -/// The role display name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Role description. Describes which permissions come with this role. -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param roleId A string containing encoded role ID. For roles defined by -/// Dropbox, this is the same across all teams. -/// @param name The role display name. -/// @param description_ Role description. Describes which permissions come with -/// this role. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoleId:(NSString *)roleId name:(NSString *)name description_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberRole` struct. -/// -@interface DBTEAMTeamMemberRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberRole` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberRole *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberRole` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberRole` object. -/// -+ (DBTEAMTeamMemberRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberStatus.h deleted file mode 100644 index da02ac8e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMemberStatus.h +++ /dev/null @@ -1,178 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRemovedStatus; -@class DBTEAMTeamMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberStatus` union. -/// -/// The user's status as a member of a specific team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamMemberStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMTeamMemberStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamMemberStatusTag) { - /// User has successfully joined the team. - DBTEAMTeamMemberStatusActive, - - /// User has been invited to a team, but has not joined the team yet. - DBTEAMTeamMemberStatusInvited, - - /// User is no longer a member of the team, but the account can be - /// un-suspended, re-establishing the user as a team member. - DBTEAMTeamMemberStatusSuspended, - - /// User is no longer a member of the team. Removed users are only listed - /// when include_removed is true in members/list. - DBTEAMTeamMemberStatusRemoved, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamMemberStatusTag tag; - -/// User is no longer a member of the team. Removed users are only listed when -/// include_removed is true in members/list. @note Ensure the `isRemoved` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMRemovedStatus *removed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: User has successfully joined the -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "invited". -/// -/// Description of the "invited" tag state: User has been invited to a team, but -/// has not joined the team yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "suspended". -/// -/// Description of the "suspended" tag state: User is no longer a member of the -/// team, but the account can be un-suspended, re-establishing the user as a -/// team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspended; - -/// -/// Initializes union class with tag state of "removed". -/// -/// Description of the "removed" tag state: User is no longer a member of the -/// team. Removed users are only listed when include_removed is true in -/// members/list. -/// -/// @param removed User is no longer a member of the team. Removed users are -/// only listed when include_removed is true in members/list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoved:(DBTEAMRemovedStatus *)removed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "suspended". -/// -/// @return Whether the union's current tag state has value "suspended". -/// -- (BOOL)isSuspended; - -/// -/// Retrieves whether the union's current tag state has value "removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `removed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "removed". -/// -- (BOOL)isRemoved; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamMemberStatus` union. -/// -@interface DBTEAMTeamMemberStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberStatus` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberStatus *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberStatus` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberStatus` object. -/// -+ (DBTEAMTeamMemberStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMembershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMembershipType.h deleted file mode 100644 index 61637001..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamMembershipType.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMembershipType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMembershipType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamMembershipTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamMembershipType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamMembershipTypeTag) { - /// User uses a license and has full access to team resources like the - /// shared quota. - DBTEAMTeamMembershipTypeFull, - - /// User does not have access to the shared quota and team admins have - /// restricted administrative control. - DBTEAMTeamMembershipTypeLimited, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamMembershipTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "full". -/// -/// Description of the "full" tag state: User uses a license and has full access -/// to team resources like the shared quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFull; - -/// -/// Initializes union class with tag state of "limited". -/// -/// Description of the "limited" tag state: User does not have access to the -/// shared quota and team admins have restricted administrative control. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimited; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "full". -/// -/// @return Whether the union's current tag state has value "full". -/// -- (BOOL)isFull; - -/// -/// Retrieves whether the union's current tag state has value "limited". -/// -/// @return Whether the union's current tag state has value "limited". -/// -- (BOOL)isLimited; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamMembershipType` union. -/// -@interface DBTEAMTeamMembershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMembershipType` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMembershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMembershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMembershipType *)instance; - -/// -/// Deserializes `DBTEAMTeamMembershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMembershipType` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMembershipType` object. -/// -+ (DBTEAMTeamMembershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListArg.h deleted file mode 100644 index c97e64c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListArg : NSObject - -#pragma mark - Instance fields - -/// Specifying a value here has no effect. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Specifying a value here has no effect. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamNamespacesListArg` struct. -/// -@interface DBTEAMTeamNamespacesListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListArg *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListArg` object. -/// -+ (DBTEAMTeamNamespacesListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListContinueArg.h deleted file mode 100644 index c983650c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of team-accessible namespaces. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of -/// team-accessible namespaces. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamNamespacesListContinueArg` struct. -/// -@interface DBTEAMTeamNamespacesListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListContinueArg` -/// object. -/// -+ (DBTEAMTeamNamespacesListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListContinueError.h deleted file mode 100644 index c5abf6e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListContinueError.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamNamespacesListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamNamespacesListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamNamespacesListContinueErrorTag) { - /// Argument passed in is invalid. - DBTEAMTeamNamespacesListContinueErrorInvalidArg, - - /// (no description). - DBTEAMTeamNamespacesListContinueErrorOther, - - /// The cursor is invalid. - DBTEAMTeamNamespacesListContinueErrorInvalidCursor, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamNamespacesListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_arg". -/// -/// Description of the "invalid_arg" tag state: Argument passed in is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidArg; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_arg". -/// -/// @return Whether the union's current tag state has value "invalid_arg". -/// -- (BOOL)isInvalidArg; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamNamespacesListContinueError` -/// union. -/// -@interface DBTEAMTeamNamespacesListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListContinueError *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListContinueError` -/// object. -/// -+ (DBTEAMTeamNamespacesListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListError.h deleted file mode 100644 index bf9edac0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamNamespacesListErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamNamespacesListError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamNamespacesListErrorTag) { - /// Argument passed in is invalid. - DBTEAMTeamNamespacesListErrorInvalidArg, - - /// (no description). - DBTEAMTeamNamespacesListErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamNamespacesListErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_arg". -/// -/// Description of the "invalid_arg" tag state: Argument passed in is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidArg; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_arg". -/// -/// @return Whether the union's current tag state has value "invalid_arg". -/// -- (BOOL)isInvalidArg; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamNamespacesListError` union. -/// -@interface DBTEAMTeamNamespacesListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListError *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListError` object. -/// -+ (DBTEAMTeamNamespacesListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListResult.h deleted file mode 100644 index c1003e99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamNamespacesListResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMNamespaceMetadata; -@class DBTEAMTeamNamespacesListResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListResult` struct. -/// -/// Result for `namespacesList`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListResult : NSObject - -#pragma mark - Instance fields - -/// List of all namespaces the team can access. -@property (nonatomic, readonly) NSArray *namespaces; - -/// Pass the cursor into `namespacesListContinue` to obtain additional -/// namespaces. Note that duplicate namespaces may be returned. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional namespaces that have not been returned yet. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param namespaces List of all namespaces the team can access. -/// @param cursor Pass the cursor into `namespacesListContinue` to obtain -/// additional namespaces. Note that duplicate namespaces may be returned. -/// @param hasMore Is true if there are additional namespaces that have not been -/// returned yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaces:(NSArray *)namespaces - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamNamespacesListResult` struct. -/// -@interface DBTEAMTeamNamespacesListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListResult` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListResult *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListResult` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListResult` object. -/// -+ (DBTEAMTeamNamespacesListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamReportFailureReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamReportFailureReason.h deleted file mode 100644 index d3dc6136..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTeamReportFailureReason.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamReportFailureReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamReportFailureReason : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamReportFailureReasonTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamReportFailureReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamReportFailureReasonTag) { - /// We couldn't create the report, but we think this was a fluke. Everything - /// should work if you try it again. - DBTEAMTeamReportFailureReasonTemporaryError, - - /// Too many other reports are being created right now. Try creating this - /// report again once the others finish. - DBTEAMTeamReportFailureReasonManyReportsAtOnce, - - /// We couldn't create the report. Try creating the report again with less - /// data. - DBTEAMTeamReportFailureReasonTooMuchData, - - /// (no description). - DBTEAMTeamReportFailureReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "temporary_error". -/// -/// Description of the "temporary_error" tag state: We couldn't create the -/// report, but we think this was a fluke. Everything should work if you try it -/// again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemporaryError; - -/// -/// Initializes union class with tag state of "many_reports_at_once". -/// -/// Description of the "many_reports_at_once" tag state: Too many other reports -/// are being created right now. Try creating this report again once the others -/// finish. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithManyReportsAtOnce; - -/// -/// Initializes union class with tag state of "too_much_data". -/// -/// Description of the "too_much_data" tag state: We couldn't create the report. -/// Try creating the report again with less data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooMuchData; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "temporary_error". -/// -/// @return Whether the union's current tag state has value "temporary_error". -/// -- (BOOL)isTemporaryError; - -/// -/// Retrieves whether the union's current tag state has value -/// "many_reports_at_once". -/// -/// @return Whether the union's current tag state has value -/// "many_reports_at_once". -/// -- (BOOL)isManyReportsAtOnce; - -/// -/// Retrieves whether the union's current tag state has value "too_much_data". -/// -/// @return Whether the union's current tag state has value "too_much_data". -/// -- (BOOL)isTooMuchData; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamReportFailureReason` union. -/// -@interface DBTEAMTeamReportFailureReasonSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamReportFailureReason` instances. -/// -/// @param instance An instance of the `DBTEAMTeamReportFailureReason` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamReportFailureReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamReportFailureReason *)instance; - -/// -/// Deserializes `DBTEAMTeamReportFailureReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamReportFailureReason` API object. -/// -/// @return An instantiation of the `DBTEAMTeamReportFailureReason` object. -/// -+ (DBTEAMTeamReportFailureReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTokenGetAuthenticatedAdminError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTokenGetAuthenticatedAdminError.h deleted file mode 100644 index 023f0542..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTokenGetAuthenticatedAdminError.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTokenGetAuthenticatedAdminError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenGetAuthenticatedAdminError` union. -/// -/// Error returned by `tokenGetAuthenticatedAdmin`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTokenGetAuthenticatedAdminError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTokenGetAuthenticatedAdminErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTokenGetAuthenticatedAdminError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTokenGetAuthenticatedAdminErrorTag) { - /// The current token is not associated with a team admin, because mappings - /// were not recorded when the token was created. Consider re-authorizing a - /// new access token to record its authenticating admin. - DBTEAMTokenGetAuthenticatedAdminErrorMappingNotFound, - - /// Either the team admin that authorized this token is no longer an active - /// member of the team or no longer a team admin. - DBTEAMTokenGetAuthenticatedAdminErrorAdminNotActive, - - /// (no description). - DBTEAMTokenGetAuthenticatedAdminErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTokenGetAuthenticatedAdminErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "mapping_not_found". -/// -/// Description of the "mapping_not_found" tag state: The current token is not -/// associated with a team admin, because mappings were not recorded when the -/// token was created. Consider re-authorizing a new access token to record its -/// authenticating admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMappingNotFound; - -/// -/// Initializes union class with tag state of "admin_not_active". -/// -/// Description of the "admin_not_active" tag state: Either the team admin that -/// authorized this token is no longer an active member of the team or no longer -/// a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminNotActive; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "mapping_not_found". -/// -/// @return Whether the union's current tag state has value "mapping_not_found". -/// -- (BOOL)isMappingNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_not_active". -/// -/// @return Whether the union's current tag state has value "admin_not_active". -/// -- (BOOL)isAdminNotActive; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTokenGetAuthenticatedAdminError` -/// union. -/// -@interface DBTEAMTokenGetAuthenticatedAdminErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTokenGetAuthenticatedAdminError` instances. -/// -/// @param instance An instance of the `DBTEAMTokenGetAuthenticatedAdminError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTokenGetAuthenticatedAdminError *)instance; - -/// -/// Deserializes `DBTEAMTokenGetAuthenticatedAdminError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminError` API object. -/// -/// @return An instantiation of the `DBTEAMTokenGetAuthenticatedAdminError` -/// object. -/// -+ (DBTEAMTokenGetAuthenticatedAdminError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTokenGetAuthenticatedAdminResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTokenGetAuthenticatedAdminResult.h deleted file mode 100644 index 08aac7ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMTokenGetAuthenticatedAdminResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberProfile; -@class DBTEAMTokenGetAuthenticatedAdminResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenGetAuthenticatedAdminResult` struct. -/// -/// Results for `tokenGetAuthenticatedAdmin`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTokenGetAuthenticatedAdminResult : NSObject - -#pragma mark - Instance fields - -/// The admin who authorized the token. -@property (nonatomic, readonly) DBTEAMTeamMemberProfile *adminProfile; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param adminProfile The admin who authorized the token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminProfile:(DBTEAMTeamMemberProfile *)adminProfile; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenGetAuthenticatedAdminResult` struct. -/// -@interface DBTEAMTokenGetAuthenticatedAdminResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTokenGetAuthenticatedAdminResult` instances. -/// -/// @param instance An instance of the `DBTEAMTokenGetAuthenticatedAdminResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTokenGetAuthenticatedAdminResult *)instance; - -/// -/// Deserializes `DBTEAMTokenGetAuthenticatedAdminResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminResult` API object. -/// -/// @return An instantiation of the `DBTEAMTokenGetAuthenticatedAdminResult` -/// object. -/// -+ (DBTEAMTokenGetAuthenticatedAdminResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUploadApiRateLimitValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUploadApiRateLimitValue.h deleted file mode 100644 index 5f90612d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUploadApiRateLimitValue.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUploadApiRateLimitValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadApiRateLimitValue` union. -/// -/// The value for `uploadApiRateLimit` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUploadApiRateLimitValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUploadApiRateLimitValueTag` enum type represents the possible tag -/// states with which the `DBTEAMUploadApiRateLimitValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUploadApiRateLimitValueTag) { - /// This team has unlimited upload API quota. So far both server version - /// account and legacy account type have unlimited monthly upload api - /// quota. - DBTEAMUploadApiRateLimitValueUnlimited, - - /// The number of upload API calls allowed per month. - DBTEAMUploadApiRateLimitValueLimit, - - /// (no description). - DBTEAMUploadApiRateLimitValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUploadApiRateLimitValueTag tag; - -/// The number of upload API calls allowed per month. @note Ensure the `isLimit` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unlimited". -/// -/// Description of the "unlimited" tag state: This team has unlimited upload API -/// quota. So far both server version account and legacy account type have -/// unlimited monthly upload api quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlimited; - -/// -/// Initializes union class with tag state of "limit". -/// -/// Description of the "limit" tag state: The number of upload API calls allowed -/// per month. -/// -/// @param limit The number of upload API calls allowed per month. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(NSNumber *)limit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "unlimited". -/// -/// @return Whether the union's current tag state has value "unlimited". -/// -- (BOOL)isUnlimited; - -/// -/// Retrieves whether the union's current tag state has value "limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `limit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "limit". -/// -- (BOOL)isLimit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUploadApiRateLimitValue` union. -/// -@interface DBTEAMUploadApiRateLimitValueSerializer : NSObject - -/// -/// Serializes `DBTEAMUploadApiRateLimitValue` instances. -/// -/// @param instance An instance of the `DBTEAMUploadApiRateLimitValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUploadApiRateLimitValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUploadApiRateLimitValue *)instance; - -/// -/// Deserializes `DBTEAMUploadApiRateLimitValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUploadApiRateLimitValue` API object. -/// -/// @return An instantiation of the `DBTEAMUploadApiRateLimitValue` object. -/// -+ (DBTEAMUploadApiRateLimitValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserAddResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserAddResult.h deleted file mode 100644 index a0558eb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserAddResult.h +++ /dev/null @@ -1,229 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserAddResult; -@class DBTEAMUserSecondaryEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserAddResult` union. -/// -/// Result of trying to add secondary emails to a user. 'success' is the only -/// value indicating that a user was successfully retrieved for adding secondary -/// emails. The other values explain the type of error that occurred, and -/// include the user for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserAddResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserAddResultTag` enum type represents the possible tag states -/// with which the `DBTEAMUserAddResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserAddResultTag) { - /// Describes a user and the results for each attempt to add a secondary - /// email. - DBTEAMUserAddResultSuccess, - - /// Specified user is not a valid target for adding secondary emails. - DBTEAMUserAddResultInvalidUser, - - /// Secondary emails can only be added to verified users. - DBTEAMUserAddResultUnverified, - - /// Secondary emails cannot be added to placeholder users. - DBTEAMUserAddResultPlaceholderUser, - - /// (no description). - DBTEAMUserAddResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserAddResultTag tag; - -/// Describes a user and the results for each attempt to add a secondary email. -/// @note Ensure the `isSuccess` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSecondaryEmailsResult *success; - -/// Specified user is not a valid target for adding secondary emails. @note -/// Ensure the `isInvalidUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -/// Secondary emails can only be added to verified users. @note Ensure the -/// `isUnverified` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *unverified; - -/// Secondary emails cannot be added to placeholder users. @note Ensure the -/// `isPlaceholderUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *placeholderUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user and the results for -/// each attempt to add a secondary email. -/// -/// @param success Describes a user and the results for each attempt to add a -/// secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserSecondaryEmailsResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Specified user is not a valid -/// target for adding secondary emails. -/// -/// @param invalidUser Specified user is not a valid target for adding secondary -/// emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "unverified". -/// -/// Description of the "unverified" tag state: Secondary emails can only be -/// added to verified users. -/// -/// @param unverified Secondary emails can only be added to verified users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnverified:(DBTEAMUserSelectorArg *)unverified; - -/// -/// Initializes union class with tag state of "placeholder_user". -/// -/// Description of the "placeholder_user" tag state: Secondary emails cannot be -/// added to placeholder users. -/// -/// @param placeholderUser Secondary emails cannot be added to placeholder -/// users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlaceholderUser:(DBTEAMUserSelectorArg *)placeholderUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "unverified". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unverified` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "unverified". -/// -- (BOOL)isUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "placeholder_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `placeholderUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "placeholder_user". -/// -- (BOOL)isPlaceholderUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserAddResult` union. -/// -@interface DBTEAMUserAddResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserAddResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserAddResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserAddResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserAddResult *)instance; - -/// -/// Deserializes `DBTEAMUserAddResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserAddResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserAddResult` object. -/// -+ (DBTEAMUserAddResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserCustomQuotaArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserCustomQuotaArg.h deleted file mode 100644 index 6cbb7a0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserCustomQuotaArg.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserCustomQuotaArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserCustomQuotaArg` struct. -/// -/// User and their required custom quota in GB (1 TB = 1024 GB). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserCustomQuotaArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSNumber *quotaGb; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param quotaGb (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user quotaGb:(NSNumber *)quotaGb; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserCustomQuotaArg` struct. -/// -@interface DBTEAMUserCustomQuotaArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUserCustomQuotaArg` instances. -/// -/// @param instance An instance of the `DBTEAMUserCustomQuotaArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserCustomQuotaArg *)instance; - -/// -/// Deserializes `DBTEAMUserCustomQuotaArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaArg` API object. -/// -/// @return An instantiation of the `DBTEAMUserCustomQuotaArg` object. -/// -+ (DBTEAMUserCustomQuotaArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserCustomQuotaResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserCustomQuotaResult.h deleted file mode 100644 index c0f938c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserCustomQuotaResult.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserCustomQuotaResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserCustomQuotaResult` struct. -/// -/// User and their custom quota in GB (1 TB = 1024 GB). No quota returns if the -/// user has no custom quota set. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserCustomQuotaResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly, nullable) NSNumber *quotaGb; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param quotaGb (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user quotaGb:(nullable NSNumber *)quotaGb; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserCustomQuotaResult` struct. -/// -@interface DBTEAMUserCustomQuotaResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserCustomQuotaResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserCustomQuotaResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserCustomQuotaResult *)instance; - -/// -/// Deserializes `DBTEAMUserCustomQuotaResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserCustomQuotaResult` object. -/// -+ (DBTEAMUserCustomQuotaResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserDeleteEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserDeleteEmailsResult.h deleted file mode 100644 index 0f76a9dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserDeleteEmailsResult.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailResult; -@class DBTEAMUserDeleteEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserDeleteEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserDeleteEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - results:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserDeleteEmailsResult` struct. -/// -@interface DBTEAMUserDeleteEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserDeleteEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserDeleteEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserDeleteEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMUserDeleteEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserDeleteEmailsResult` object. -/// -+ (DBTEAMUserDeleteEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserDeleteResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserDeleteResult.h deleted file mode 100644 index 003c1ad9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserDeleteResult.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserDeleteEmailsResult; -@class DBTEAMUserDeleteResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserDeleteResult` union. -/// -/// Result of trying to delete a user's secondary emails. 'success' is the only -/// value indicating that a user was successfully retrieved for deleting -/// secondary emails. The other values explain the type of error that occurred, -/// and include the user for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserDeleteResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserDeleteResultTag` enum type represents the possible tag states -/// with which the `DBTEAMUserDeleteResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserDeleteResultTag) { - /// Describes a user and the results for each attempt to delete a secondary - /// email. - DBTEAMUserDeleteResultSuccess, - - /// Specified user is not a valid target for deleting secondary emails. - DBTEAMUserDeleteResultInvalidUser, - - /// (no description). - DBTEAMUserDeleteResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserDeleteResultTag tag; - -/// Describes a user and the results for each attempt to delete a secondary -/// email. @note Ensure the `isSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserDeleteEmailsResult *success; - -/// Specified user is not a valid target for deleting secondary emails. @note -/// Ensure the `isInvalidUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user and the results for -/// each attempt to delete a secondary email. -/// -/// @param success Describes a user and the results for each attempt to delete a -/// secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserDeleteEmailsResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Specified user is not a valid -/// target for deleting secondary emails. -/// -/// @param invalidUser Specified user is not a valid target for deleting -/// secondary emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserDeleteResult` union. -/// -@interface DBTEAMUserDeleteResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserDeleteResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserDeleteResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserDeleteResult *)instance; - -/// -/// Deserializes `DBTEAMUserDeleteResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserDeleteResult` object. -/// -+ (DBTEAMUserDeleteResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserResendEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserResendEmailsResult.h deleted file mode 100644 index 60f57ac7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserResendEmailsResult.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendSecondaryEmailResult; -@class DBTEAMUserResendEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserResendEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserResendEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - results:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserResendEmailsResult` struct. -/// -@interface DBTEAMUserResendEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserResendEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserResendEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserResendEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserResendEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMUserResendEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserResendEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserResendEmailsResult` object. -/// -+ (DBTEAMUserResendEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserResendResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserResendResult.h deleted file mode 100644 index 2c1aef3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserResendResult.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserResendEmailsResult; -@class DBTEAMUserResendResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserResendResult` union. -/// -/// Result of trying to resend verification emails to a user. 'success' is the -/// only value indicating that a user was successfully retrieved for sending -/// verification emails. The other values explain the type of error that -/// occurred, and include the user for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserResendResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserResendResultTag` enum type represents the possible tag states -/// with which the `DBTEAMUserResendResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserResendResultTag) { - /// Describes a user and the results for each attempt to resend verification - /// emails. - DBTEAMUserResendResultSuccess, - - /// Specified user is not a valid target for resending verification emails. - DBTEAMUserResendResultInvalidUser, - - /// (no description). - DBTEAMUserResendResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserResendResultTag tag; - -/// Describes a user and the results for each attempt to resend verification -/// emails. @note Ensure the `isSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserResendEmailsResult *success; - -/// Specified user is not a valid target for resending verification emails. -/// @note Ensure the `isInvalidUser` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user and the results for -/// each attempt to resend verification emails. -/// -/// @param success Describes a user and the results for each attempt to resend -/// verification emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserResendEmailsResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Specified user is not a valid -/// target for resending verification emails. -/// -/// @param invalidUser Specified user is not a valid target for resending -/// verification emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserResendResult` union. -/// -@interface DBTEAMUserResendResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserResendResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserResendResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserResendResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserResendResult *)instance; - -/// -/// Deserializes `DBTEAMUserResendResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserResendResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserResendResult` object. -/// -+ (DBTEAMUserResendResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSecondaryEmailsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSecondaryEmailsArg.h deleted file mode 100644 index 133bce42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSecondaryEmailsArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserSecondaryEmailsArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSecondaryEmailsArg` struct. -/// -/// User and a list of secondary emails. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSecondaryEmailsArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *secondaryEmails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param secondaryEmails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user secondaryEmails:(NSArray *)secondaryEmails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserSecondaryEmailsArg` struct. -/// -@interface DBTEAMUserSecondaryEmailsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSecondaryEmailsArg` instances. -/// -/// @param instance An instance of the `DBTEAMUserSecondaryEmailsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSecondaryEmailsArg *)instance; - -/// -/// Deserializes `DBTEAMUserSecondaryEmailsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsArg` API object. -/// -/// @return An instantiation of the `DBTEAMUserSecondaryEmailsArg` object. -/// -+ (DBTEAMUserSecondaryEmailsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSecondaryEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSecondaryEmailsResult.h deleted file mode 100644 index 75230311..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSecondaryEmailsResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailResult; -@class DBTEAMUserSecondaryEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSecondaryEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSecondaryEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user results:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserSecondaryEmailsResult` struct. -/// -@interface DBTEAMUserSecondaryEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSecondaryEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserSecondaryEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSecondaryEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMUserSecondaryEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserSecondaryEmailsResult` object. -/// -+ (DBTEAMUserSecondaryEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSelectorArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSelectorArg.h deleted file mode 100644 index 590d35b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSelectorArg.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSelectorArg` union. -/// -/// Argument for selecting a single user, either by team_member_id, external_id -/// or email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSelectorArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserSelectorArgTag` enum type represents the possible tag states -/// with which the `DBTEAMUserSelectorArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserSelectorArgTag) { - /// (no description). - DBTEAMUserSelectorArgTeamMemberId, - - /// (no description). - DBTEAMUserSelectorArgExternalId, - - /// (no description). - DBTEAMUserSelectorArgEmail, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserSelectorArgTag tag; - -/// (no description). @note Ensure the `isTeamMemberId` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// (no description). @note Ensure the `isExternalId` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *externalId; - -/// (no description). @note Ensure the `isEmail` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *email; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_member_id". -/// -/// @param teamMemberId (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -/// -/// Initializes union class with tag state of "external_id". -/// -/// @param externalId (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalId:(NSString *)externalId; - -/// -/// Initializes union class with tag state of "email". -/// -/// @param email (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMemberId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_member_id". -/// -- (BOOL)isTeamMemberId; - -/// -/// Retrieves whether the union's current tag state has value "external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "external_id". -/// -- (BOOL)isExternalId; - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `email` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserSelectorArg` union. -/// -@interface DBTEAMUserSelectorArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSelectorArg` instances. -/// -/// @param instance An instance of the `DBTEAMUserSelectorArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSelectorArg *)instance; - -/// -/// Deserializes `DBTEAMUserSelectorArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorArg` API object. -/// -/// @return An instantiation of the `DBTEAMUserSelectorArg` object. -/// -+ (DBTEAMUserSelectorArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSelectorError.h deleted file mode 100644 index e5a94f4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUserSelectorError.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSelectorError` union. -/// -/// Error that can be returned whenever a struct derived from UserSelectorArg is -/// used. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserSelectorErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMUserSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserSelectorErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMUserSelectorErrorUserNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserSelectorError` union. -/// -@interface DBTEAMUserSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMUserSelectorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSelectorError *)instance; - -/// -/// Deserializes `DBTEAMUserSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMUserSelectorError` object. -/// -+ (DBTEAMUserSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUsersSelectorArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUsersSelectorArg.h deleted file mode 100644 index 3da30462..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTEAMUsersSelectorArg.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUsersSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UsersSelectorArg` union. -/// -/// Argument for selecting a list of users, either by team_member_ids, -/// external_ids or emails. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUsersSelectorArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUsersSelectorArgTag` enum type represents the possible tag states -/// with which the `DBTEAMUsersSelectorArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUsersSelectorArgTag) { - /// List of member IDs. - DBTEAMUsersSelectorArgTeamMemberIds, - - /// List of external user IDs. - DBTEAMUsersSelectorArgExternalIds, - - /// List of email addresses. - DBTEAMUsersSelectorArgEmails, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUsersSelectorArgTag tag; - -/// List of member IDs. @note Ensure the `isTeamMemberIds` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *teamMemberIds; - -/// List of external user IDs. @note Ensure the `isExternalIds` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *externalIds; - -/// List of email addresses. @note Ensure the `isEmails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *emails; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_member_ids". -/// -/// Description of the "team_member_ids" tag state: List of member IDs. -/// -/// @param teamMemberIds List of member IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberIds:(NSArray *)teamMemberIds; - -/// -/// Initializes union class with tag state of "external_ids". -/// -/// Description of the "external_ids" tag state: List of external user IDs. -/// -/// @param externalIds List of external user IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIds:(NSArray *)externalIds; - -/// -/// Initializes union class with tag state of "emails". -/// -/// Description of the "emails" tag state: List of email addresses. -/// -/// @param emails List of email addresses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmails:(NSArray *)emails; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team_member_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMemberIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_member_ids". -/// -- (BOOL)isTeamMemberIds; - -/// -/// Retrieves whether the union's current tag state has value "external_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "external_ids". -/// -- (BOOL)isExternalIds; - -/// -/// Retrieves whether the union's current tag state has value "emails". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emails". -/// -- (BOOL)isEmails; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUsersSelectorArg` union. -/// -@interface DBTEAMUsersSelectorArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUsersSelectorArg` instances. -/// -/// @param instance An instance of the `DBTEAMUsersSelectorArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUsersSelectorArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUsersSelectorArg *)instance; - -/// -/// Deserializes `DBTEAMUsersSelectorArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUsersSelectorArg` API object. -/// -/// @return An instantiation of the `DBTEAMUsersSelectorArg` object. -/// -+ (DBTEAMUsersSelectorArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTasks.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTasks.h deleted file mode 100644 index a04eb261..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTasks.h +++ /dev/null @@ -1,433 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBHandlerTypes.h" -#import -@class DBBatchUploadData; -@class DBDelegate; -@class DBRequestError; -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - Base network task - -/// -/// Base class for network task wrappers. -/// -/// After a network request is made via `DBTransportClient`, a subclass of `DBTask` is returned, from which response and -/// progress handlers can be installed, and the network response paused or cancelled. -/// -/// Handlers are executed on the thread specified by the `DBDelegate` instance with which the `DBTask` instance is -/// initialied (more specifically, the delegate queue that the `DBDelegate` uses to execute handler code). By default, -/// this is the main thread, which makes updating UI elements in response handlers convenient. -/// -/// While response handlers are not optional, they do not necessarily need to have been installed by the time the SDK -/// has received its server response. If this is the case, completion data will be saved, and the handler will be -/// executed with the completion data upon its installation. Downloaded content will be moved from a temporary location -/// to the final destination when the response handler code is executed. -/// -@interface DBTask : NSObject { -@protected - NSOperationQueue *_queue; -} - -/// Information about the route to which the request was made. -@property (nonatomic, readonly) DBRoute *route; - -/// A unique string identifier for this task. -@property (nonatomic, readonly, copy) NSString *taskIdentifier; - -/// Tracks the number of times this task has been retried. -@property (nonatomic) int retryCount; - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy) NSString *tokenUid; - -/// -/// Full constructor. -/// -/// @param route Information about the route to which the request is being made. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -- (instancetype)initWithRoute:(DBRoute *)route tokenUid:(NSString *)tokenUid; - -/// -/// Cancels the current request. -/// -- (void)cancel; - -/// -/// Suspends the current request. -/// -- (void)suspend; - -/// -/// Resumes the current request. -/// -- (void)resume; - -/// -/// Starts the current request. -/// -- (void)start; - -/// -/// Restarts the current request. -/// -- (DBTask *)restart; - -@end - -#pragma mark - RPC-style network task - -/// -/// Dropbox RPC-style Network Task. -/// -/// After an RPC network request is made via `DBTransportClient`, a subclass of `DBRpcTask` is returned, from which -/// response and progress handlers can be installed, and the network response paused or cancelled. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBRpcTask : DBTask - -typedef void (^DBRpcResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setResponseBlock:(DBRpcResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setResponseBlock:(DBRpcResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes sent. The second argument is the number of total bytes sent. And the third argument is the number of -/// total bytes expected to be sent. -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes sent. The second argument is the number of total bytes sent. And the third argument is the number of -/// total bytes expected to be sent. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -#pragma mark - Upload-style network task - -/// -/// Dropbox Upload-style Network Task. -/// -/// After an Upload network request is made via `DBTransportClient`, a subclass of `DBUploadTask` is returned, from -/// which response and progress handlers can be installed, and the network response paused or cancelled. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBUploadTask : DBTask - -typedef void (^DBUploadResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setResponseBlock:(DBUploadResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setResponseBlock:(DBUploadResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes uploaded. The second argument is the number of total bytes uploaded. And the third argument is the -/// number of total bytes expected to be uploaded. -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes uploaded. The second argument is the number of total bytes uploaded. And the third argument is the -/// number of total bytes expected to be uploaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -#pragma mark - Download-style network task (NSURL) - -/// -/// Dropbox Download-style Network Task (download to `NSURL`). -/// -/// After an Upload network request is made via `DBTransportClient`, a subclass of `DBDownloadUrlTask` is returned, from -/// which response and progress handlers can be installed, and the network response paused or cancelled. Note, this -/// class is returned only for download requests with an `NSURL` output. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBDownloadUrlTask : DBTask { -@protected - NSURL *_destination; - BOOL _overwrite; -} - -typedef void (^DBDownloadUrlResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError, NSURL *destination); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. In the event the request returns successfully, but -/// a handler is not yet installed, the downloaded content will be moved to a temporary location -/// (`NSTemporaryDirectory()`) until the response handler is installed, at which point the file content will be moved to -/// its final destination. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output destination to which the file was downloaded. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setResponseBlock:(DBDownloadUrlResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output destination to which the file was downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setResponseBlock:(DBDownloadUrlResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -#pragma mark - Download-style network task (NSData) - -/// -/// Dropbox Download Network Task (download to `NSData`). -/// -/// After an Upload network request is made via `DBTransportClient`, a subclass of `DBDownloadDataTask` is returned, -/// from which response and progress handlers can be installed, and the network response paused or cancelled. Note, this -/// class is returned only for download requests with an `NSData` output. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBDownloadDataTask : DBTask - -typedef void (^DBDownloadDataResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError, NSData *_Nullable fileData); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output `NSData` object in memory, to which the file was downloaded. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setResponseBlock:(DBDownloadDataResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output `NSData` object in memory, to which the file was downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setResponseBlock:(DBDownloadDataResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTasksStorage.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTasksStorage.h deleted file mode 100644 index f3dc6222..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTasksStorage.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBTasks.h" - -/// -/// Task storage for upload and download tasks. -/// -/// Offers a convenient, thread-safe storage option for upload and download tasks so that they can be cancelled later. -/// -@interface DBTasksStorage : NSObject - -/// -/// Cancels all tasks stored in the object. -/// -- (void)cancelAllTasks; - -/// -/// Adds the upload task in a thread-safe manner. -/// -/// @note If `cancelAllTasks` has already been called, the task is not only not added, but it is cancelled as well. -/// -/// @param task The task to add. -/// -- (void)addUploadTask:(DBUploadTask *)task; - -/// -/// Removes the upload task in a thread-safe manner. -/// -/// @param task The task to remove. -/// -- (void)removeUploadTask:(DBUploadTask *)task; - -/// -/// Adds the download to url task in a thread-safe manner. -/// -/// @note If `cancelAllTasks` has already been called, the task is not only not added, but it is cancelled as well. -/// -/// @param task The task to add. -/// -- (void)addDownloadUrlTask:(DBDownloadUrlTask *)task; - -/// -/// Removes the download to url task in a thread-safe manner. -/// -/// @param task The task to remove. -/// -- (void)removeDownloadUrlTask:(DBDownloadUrlTask *)task; - -/// -/// Adds the download to data task in a thread-safe manner. -/// -/// @note If `cancelAllTasks` has already been called, the task is not only not added, but it is cancelled as well. -/// -/// @param task The task to add. -/// -- (void)addDownloadDataTask:(DBDownloadDataTask *)task; - -/// -/// Removes the download to data task in a thread-safe manner. -/// -/// @param task The task to remove. -/// -- (void)removeDownloadDataTask:(DBDownloadDataTask *)task; - -/// -/// Determine whether there are tasks in progress. -/// -/// @return Whether there are tasks in progress. -/// -- (BOOL)tasksInProgress; - -@end diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTeamBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTeamBaseClient.h deleted file mode 100644 index 1f7edd2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTeamBaseClient.h +++ /dev/null @@ -1,43 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import "DBFILEPROPERTIESTeamAuthRoutes.h" -#import "DBRequestErrors.h" -#import "DBTEAMLOGTeamAuthRoutes.h" -#import "DBTEAMTeamAuthRoutes.h" -#import "DBTasks.h" -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient; - -/// -/// Base client object that contains an instance field for each namespace, each -/// of which contains references to all routes within that namespace. -/// Fully-implemented API clients will inherit this class. -/// -@interface DBTeamBaseClient : NSObject { - -@protected - id _transportClient; -} - -/// Routes within the `fileProperties` namespace. -@property (nonatomic, readonly) DBFILEPROPERTIESTeamAuthRoutes *filePropertiesRoutes; - -/// Routes within the `team` namespace. -@property (nonatomic, readonly) DBTEAMTeamAuthRoutes *teamRoutes; - -/// Routes within the `teamLog` namespace. -@property (nonatomic, readonly) DBTEAMLOGTeamAuthRoutes *teamLogRoutes; - -/// Initializes the `DBTeamBaseClient` object with a networking client. -- (instancetype)initWithTransportClient:(id)client; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTeamClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTeamClient.h deleted file mode 100644 index 9ebc47f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTeamClient.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBTeamBaseClient.h" - -@class DBUserClient; -@class DBTransportDefaultClient; -@class DBTransportDefaultConfig; -@protocol DBAccessTokenProvider; -@class DBAccessToken; -@class DBOAuthManager; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox Business (Team) API Client for all endpoints with auth type "team". -/// -/// This is the SDK user's primary interface with the Dropbox Business (Team) API. Routes can be accessed via each -/// "namespace" object in the instance fields of its parent, `DBUserBaseClient`. To see a full list of the Business -/// (Team) API endpoints available, please visit: https://www.dropbox.com/developers/documentation/http/teams. -/// -@interface DBTeamClient : DBTeamBaseClient - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy, nullable) NSString *tokenUid; - -/// -/// Convenience initializer. -/// -/// Uses standard network configuration parameters. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessTokenProvider A `DBAccessTokenProvider` that provides access token and token refresh functionality. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessTokenProvider:(id)accessTokenProvider - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken An access token object. -/// @param oauthManager The oauthManager instance. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(DBAccessToken *)accessToken - oauthManager:(DBOAuthManager *)oauthManager - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// Designated initializer. -/// -/// @param client A `DBTransportDefaultClient` used to make network requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransportClient:(DBTransportDefaultClient *)client NS_DESIGNATED_INITIALIZER; - -/// -/// Returns a `DBUserClient` instance that can be used to make API calls on behalf of the designated team member. -/// -/// @note App must have "TeamMemberFileAccess" permissions to use this method. -/// -/// @param memberId The Dropbox `account_id` of the team member to perform actions on behalf of. e.g. -/// "dbid:12345678910..." -/// -/// @return An initialized User API client instance. -/// -- (DBUserClient *)userClientWithMemberId:(NSString *)memberId; - -/// -/// Returns the current access token used to make API requests. -/// -- (nullable NSString *)accessToken; - -/// -/// Returns whether the client is authorized. -/// -/// @return Whether the client currently has a non-nil OAuth 2.0 access token. -/// -- (BOOL)isAuthorized; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseClient.h deleted file mode 100644 index 6ff131d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseClient.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBCOMMONPathRoot.h" -#import - -@class DBTransportBaseConfig; -@protocol DBAccessTokenProvider; - -NS_ASSUME_NONNULL_BEGIN - -@interface DBTransportBaseClient : NSObject - -/// The Dropbox OAuth2 access token provider used to make requests. -@property (nonatomic, readonly, nullable) id accessTokenProvider; - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy) NSString *tokenUid; - -/// The user agent associated with all networking requests. Used for server logging. -@property (nonatomic, readonly, copy) NSString *userAgent; - -/// The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appKey; - -/// The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appSecret; - -/// An additional authentication header field used when a team app with the appropriate permissions "performs" user API -/// actions on behalf of a team member. -@property (nonatomic, readonly, copy, nullable) NSString *asMemberId; - -/// The value of path root object which will be used as Dropbox-Api-Path-Root header. -@property (nonatomic, readonly, copy, nullable) DBCOMMONPathRoot *pathRoot; - -/// Additional HTTP headers to be injected into each client request. -@property (nonatomic, readonly, copy, nullable) NSDictionary *additionalHeaders; - -/// Set YES to use a faster, experimental ASCII encoding implementation. Default = NO. -@property (atomic, class) BOOL useFastAsciiEncoding; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth2 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(nullable NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(DBTransportBaseConfig *)transportConfig; - -/// -/// Designated initializer. -/// -/// @param accessTokenProvider The `DBAccessTokenProvider` that provides a Dropbox OAuth2 access token -/// used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessTokenProvider:(nullable id)accessTokenProvider - tokenUid:(nullable NSString *)tokenUid - transportConfig:(DBTransportBaseConfig *)transportConfig NS_DESIGNATED_INITIALIZER; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseConfig.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseConfig.h deleted file mode 100644 index 672ada7a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseConfig.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBTransportBaseHostnameConfig.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Configuration class for `DBTransportBaseClient`. -/// -@interface DBTransportBaseConfig : NSObject - -/// The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appKey; - -/// The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appSecret; - -/// The hostname configuration used for various networking requests. -@property (nonatomic, readonly, copy, nullable) DBTransportBaseHostnameConfig *hostnameConfig; - -/// The redirect url used for oauth flow -@property (nonatomic, readonly, copy, nullable) NSString *redirectURL; - -/// The user agent associated with all networking requests. Used for server logging. -@property (nonatomic, readonly, copy, nullable) NSString *userAgent; - -/// An additional authentication header field used when a team app with the appropriate permissions "performs" user API -/// actions on behalf of a team member. -@property (nonatomic, readonly, copy, nullable) NSString *asMemberId; - -/// The value of path root object which will be used as Dropbox-Api-Path-Root header. -@property (nonatomic, readonly, copy, nullable) DBCOMMONPathRoot *pathRoot; - -/// Additional HTTP headers to be injected into each client request. -@property (nonatomic, readonly, copy, nullable) NSDictionary *additionalHeaders; - -/// @return A default user agent string. -+ (NSString *)defaultUserAgent; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey userAgent:(nullable NSString *)userAgent; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param hostnameConfig A set of custom hostnames to use for networking requests. -/// -/// @return An initialized instance. -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - hostnameConfig:(DBTransportBaseHostnameConfig *)hostnameConfig; -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId; - -/// -/// Full constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders; - -/// -/// Full constructor, with debug hostname override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param hostnameConfig A set of custom hostnames to use for networking requests. Only useful for debugging purposes. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders; - -/// -/// Full constructor, with debug hostname and redirectURL override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param hostnameConfig A set of custom hostnames to use for networking requests. Only useful for debugging purposes. -/// @param redirectURL The redirect url used for oauth flow. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param pathRoot The value of path root object which will be used as Dropbox-Api-Path-Root header. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - redirectURL:(nullable NSString *)redirectURL - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - pathRoot:(nullable DBCOMMONPathRoot *)pathRoot - additionalHeaders:(nullable NSDictionary *)additionalHeaders; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseHostnameConfig.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseHostnameConfig.h deleted file mode 100644 index b30e2d8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportBaseHostnameConfig.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2017 Dropbox, Inc. All rights reserved. -/// - -#import "DBStoneBase.h" -#import - -/// Enum of Dropbox API hosts. -typedef NS_ENUM(NSUInteger, DBRouteHost) { - DBRouteHostUnknown = 0, - DBRouteHostApi, - DBRouteHostContent, - DBRouteHostNotify, -}; - -NS_ASSUME_NONNULL_BEGIN - -@interface DBRoute (DropboxHost) - -/// @return which host this route points to -@property (nonatomic, readonly) DBRouteHost host; - -@end - -/// -/// Configuration class that defines the different hostnames that the Dropbox SDK uses -/// -@interface DBTransportBaseHostnameConfig : NSObject - -@property (nonatomic, readonly, copy) NSString *meta; -@property (nonatomic, readonly, copy) NSString *api; -@property (nonatomic, readonly, copy) NSString *content; -@property (nonatomic, readonly, copy) NSString *downloadContent; -@property (nonatomic, readonly, copy) NSString *notify; - -/// -/// Default constructor. -/// -/// @return An initialized instance of hostname configurations with default values set for all hostnames -/// -- (instancetype)init; - -/// -/// Constructor that takes in a set of custom hostnames to use for api calls. -/// -/// @param meta the hostname to metaserver -/// @param api the hostname to api server -/// @param content the hostname to content server -/// @param notify the hostname to notify server -/// -/// @return An initialized instance with the provided hostname configuration -/// -- (instancetype)initWithMeta:(NSString *)meta api:(NSString *)api content:(NSString *)content notify:(NSString *)notify; - -/// -/// Constructor that takes in a set of custom hostnames to use for api calls. -/// -/// @param meta the hostname to metaserver -/// @param api the hostname to api server -/// @param content the hostname to content server -/// @param downloadContent the hostname to content server for download style -/// @param notify the hostname to notify server -/// -/// @return An initialized instance with the provided hostname configuration -/// -- (instancetype)initWithMeta:(NSString *)meta - api:(NSString *)api - content:(NSString *)content - downloadContent:(NSString *)downloadContent - notify:(NSString *)notify NS_DESIGNATED_INITIALIZER; - -/// -/// Returns the prefix to use for API calls to the given route type. -/// -/// @param route the type of route to get a prefix for. -/// Currently the valid hosts are: "api", "content", and "notify". -/// -/// @return An absolute URL prefix, typically "https:///2" or nil if an invalid route type is provided. -/// -- (nullable NSString *)apiV2PrefixWithRoute:(DBRoute *)route; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportClientProtocol.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportClientProtocol.h deleted file mode 100644 index 3d5f1eb0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportClientProtocol.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBDownloadDataTask; -@class DBDownloadUrlTask; -@class DBRoute; -@class DBRpcTask; -@class DBUploadTask; -@protocol DBAccessTokenProvider; - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient - -/// The Dropbox OAuth2 access token provider used to make requests. -@property (nonatomic, nullable) id accessTokenProvider; - -#pragma mark - RPC-style request - -/// -/// Request to RPC-style endpoint. -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// -/// @return A `DBRpcTask` where response and progress handlers can be added, and the request can be halted or cancelled. -/// -- (DBRpcTask *)requestRpc:(DBRoute *)route arg:(id _Nullable)arg; - -#pragma mark - Upload-style request (NSURL) - -/// -/// Request to Upload-style endpoint (via `NSURL`). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param input The location of the file to upload. NSURLSession supports background uploads for this input type, so by -/// default, all requests of this type will be made in the background. -/// -/// @return A `DBUploadTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBUploadTask *)requestUpload:(DBRoute *)route arg:(id _Nullable)arg inputUrl:(NSString *)input; - -#pragma mark - Upload-style request (NSData) - -/// -/// Request to Upload-style endpoint (via `NSData`). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param input The location of the file to upload. NSURLSession does not support background uploads for this input -/// type, so by default, all requests of this type will be made in the foreground. -/// -/// @return A `DBUploadTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBUploadTask *)requestUpload:(DBRoute *)route arg:(id _Nullable)arg inputData:(NSData *)input; - -#pragma mark - Upload-style request (NSInputStream) - -/// -/// Request to Upload-style endpoint (via `NSInputStream`). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param input The location of the file to upload. `NSURLSession` does not support background uploads for this input -/// type, so by default, all requests of this type will be made in the foreground. -/// -/// @return A `DBUploadTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBUploadTask *)requestUpload:(DBRoute *)route - arg:(id _Nullable)arg - inputStream:(NSInputStream *)input; - -#pragma mark - Download-style request (NSURL) - -/// -/// Request to Download-style endpoint (via `NSURL` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param overwrite Whether the outputted file should overwrite in the event of a name collision. -/// @param destination Location to which output content should be downloaded. -/// -/// @return A `DBDownloadUrlTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBDownloadUrlTask *)requestDownload:(DBRoute *)route - arg:(id _Nullable)arg - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Request to Download-style endpoint (via `NSURL` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param overwrite Whether the outputted file should overwrite in the event of a name collision. -/// @param destination Location to which output content should be downloaded. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. -/// -/// @return A `DBDownloadUrlTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBDownloadUrlTask *)requestDownload:(DBRoute *)route - arg:(id _Nullable)arg - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(nullable NSNumber *)byteOffsetStart - byteOffsetEnd:(nullable NSNumber *)byteOffsetEnd; - -#pragma mark - Download-style request (NSData) - -/// -/// Request to Download-style endpoint (with `NSData` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. Note, this return -/// type is different from the return type of `requestDownload:arg`. -/// -/// @return A `DBDownloadDataTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. Note, this return type is different from the return type of `requestDownload:arg:overwrite:destination`. -/// -- (DBDownloadDataTask *)requestDownload:(DBRoute *)route arg:(id _Nullable)arg; - -/// -/// Request to Download-style endpoint (with `NSData` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. Note, this return -/// type is different from the return type of `requestDownload:arg`. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. -/// -/// @return A `DBDownloadDataTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. Note, this return type is different from the return type of `requestDownload:arg:overwrite:destination`. -/// -- (DBDownloadDataTask *)requestDownload:(DBRoute *)route - arg:(id _Nullable)arg - byteOffsetStart:(nullable NSNumber *)byteOffsetStart - byteOffsetEnd:(nullable NSNumber *)byteOffsetEnd; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportDefaultClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportDefaultClient.h deleted file mode 100644 index db294a0a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportDefaultClient.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBTransportBaseClient.h" -#import "DBTransportClientProtocol.h" - -NS_ASSUME_NONNULL_BEGIN - -@class DBTransportDefaultConfig; - -/// -/// The networking client for the User and Business API. -/// -/// Normally, one networking client should instantiated per access token and session / background session pair. By -/// default, all Upload-style and Download-style requests are made via a background session (except when uploading via -/// `NSInputStream` or `NSData`, or downloading to `NSData`, in which case, it is not possible) and all RPC-style -/// request are made using a foreground session. -/// -/// Requests are made via one of the request methods below. The request is launched, and a `DBTask` object is returned, -/// from which response and progress handlers can be added directly. By default, these handlers are added / executed -/// using the main thread queue and executed in a thread-safe manner (unless a custom delegate queue is supplied via the -/// `DBTransportDefaultConfig` object). An internal `DBDelegate` object then retrieves the appropriate handler and -/// executes it. -/// -/// While response handlers are not optional, they do not necessarily need to have been installed by the time the SDK -/// has received its server response. If this is the case, completion data will be saved, and the handler will be -/// executed with the completion data upon its installation. Downloaded content will be moved from a temporary location -/// to the final destination when the response handler code is executed. -/// -/// Argument serialization and deserialization is performed with this class. -/// -@interface DBTransportDefaultClient : DBTransportBaseClient - -/// A serial delegate queue used for executing blocks of code that touch state shared across threads (mainly the request -/// handlers storage). -@property (nonatomic, readonly) NSOperationQueue *delegateQueue; - -/// If set to true when the `DBTransportDefaultClient` object is initialized, all network requests are made on -/// foreground sessions (by default, most upload/download operations are performed with a background session). This is -/// appropriate for use cases where file upload / download operations will be quick, and immediate response is -/// preferable. Otherwise, for background sessions, uploads/downloads will essentially never time out, if network -/// connection is lost after the request has begun. -@property (nonatomic, readonly) BOOL forceForegroundSession; - -/// The foreground session used to make all foreground requests (RPC style requests, upload from `NSData` and -/// `NSInputStream`, and download to `NSData`). -@property (nonatomic, strong) NSURLSession *session; - -/// By default, the background session used to make all background requests (Upload and Download style requests, except -/// for upload from `NSData` and `NSInputStream`, and download to `NSData`) unless `forceForegroundSession` is set to -/// true, in which case, it is simply the same session as the foreground session. -@property (nonatomic, strong) NSURLSession *secondarySession; - -/// The foreground session on which longpoll requests are made. Has a much longer timeout period than other sessions. -@property (nonatomic, strong) NSURLSession *longpollSession; - -#pragma mark - Constructors - -/// -/// Full constructor. -/// -/// @param accessToken The Dropbox OAuth2 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(nullable NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Creates a transport config with the same settings as the current transport client, to be used to instantiate an -/// additional network client, to perform user API actions on behalf of other team members, by a team app. -/// -/// @param asMemberId The Dropbox `account_id` of the team member to perform actions on behalf of. e.g. -/// "dbid:12345678910..." -/// -/// @return A transport config with the same settings as the current transport client, except with information to -/// perform actions on behalf of the team member specified by `asMemberId`. -/// -- (DBTransportDefaultConfig *)duplicateTransportConfigWithAsMemberId:(NSString *)asMemberId; - -/// -/// Creates a transport config with the same settings as the current transport client, to be used with -/// specific path root header value. -/// -/// @param pathRoot The value of path root object which will be used as Dropbox-Api-Path-Root header. -/// -/// @return A transport config with the same settings as the current transport client, except with -/// Dropbox-Api-Path-Root header value specified by pathRoot. -/// -- (DBTransportDefaultConfig *)duplicateTransportConfigWithPathRoot:(DBCOMMONPathRoot *)pathRoot; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportDefaultConfig.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportDefaultConfig.h deleted file mode 100644 index 23ade61a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBTransportDefaultConfig.h +++ /dev/null @@ -1,257 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBTransportBaseConfig.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Configuration class for `DBTransportDefaultClient`. -/// -@interface DBTransportDefaultConfig : DBTransportBaseConfig - -/// A serial delegate queue used for executing blocks of code that touch state shared across threads (mainly the request -/// handlers storage). -@property (nonatomic, readonly, nullable) NSOperationQueue *delegateQueue; - -/// If set to true, all network requests are made on foreground sessions (by default, most upload/download operations -/// are performed with a background session). This is appropriate for use cases where file upload / download operations -/// will be quick, and immediate response is preferable. Otherwise, for background sessions, uploads/downloads will -/// essentially never time out, if network connection is lost after the request has begun. -@property (nonatomic, readonly) BOOL forceForegroundSession; - -/// The identifier for the shared container into which files in background URL sessions should be downloaded. This needs -/// to be set when downloading via an app extension. -@property (nonatomic, readonly, nullable) NSString *sharedContainerIdentifier; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey; - -/// -/// Convenience constructor. -/// -/// Appropriate for apps that want to query endpoints with "app auth" authentication type. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey appSecret:(NSString *)appSecret; - -/// -/// Convenience constructor. -/// -/// Appropriate for apps that want to query endpoints with "app auth" authentication type. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(NSString *)appSecret - delegateQueue:(nullable NSOperationQueue *)delegateQueue; - -/// -/// Convenience constructor. -/// -/// Appropriate for use cases where file upload / download operations will be quick, and immediate response is -/// preferable. Otherwise, for background sessions, uploads/downloads will essentially never time out, if network -/// connection is lost after the request has begun. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey forceForegroundSession:(BOOL)forceForegroundSession; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -/// -/// Full constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -/// -/// Full constructor, with debug hostname override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param hostnameConfig A custom hostname to use for networking requests. Only useful for debugging purposes. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -/// -/// Full constructor, with debug hostname and redirectURL override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param hostnameConfig A custom hostname to use for networking requests. Only useful for debugging purposes. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param pathRoot The value of path root object which will be used as Dropbox-Api-Path-Root header. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - redirectURL:(nullable NSString *)redirectURL - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - pathRoot:(nullable DBCOMMONPathRoot *)pathRoot - additionalHeaders:(nullable NSDictionary *)additionalHeaders - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSAccount.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSAccount.h deleted file mode 100644 index 81af9667..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSAccount.h +++ /dev/null @@ -1,129 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSAccount; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Account` struct. -/// -/// The amount of detail revealed about an account depends on the user being -/// queried and the user making the query. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSAccount : NSObject - -#pragma mark - Instance fields - -/// The user's unique Dropbox ID. -@property (nonatomic, readonly, copy) NSString *accountId; - -/// Details of a user's name. -@property (nonatomic, readonly) DBUSERSName *name; - -/// The user's email address. Do not rely on this without checking the -/// emailVerified field. Even then, it's possible that the user has since lost -/// access to their email. -@property (nonatomic, readonly, copy) NSString *email; - -/// Whether the user has verified their email address. -@property (nonatomic, readonly) NSNumber *emailVerified; - -/// URL for the photo representing the user, if one is set. -@property (nonatomic, readonly, copy, nullable) NSString *profilePhotoUrl; - -/// Whether the user has been disabled. -@property (nonatomic, readonly) NSNumber *disabled; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - profilePhotoUrl:(nullable NSString *)profilePhotoUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Account` struct. -/// -@interface DBUSERSAccountSerializer : NSObject - -/// -/// Serializes `DBUSERSAccount` instances. -/// -/// @param instance An instance of the `DBUSERSAccount` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSAccount` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSAccount *)instance; - -/// -/// Deserializes `DBUSERSAccount` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSAccount` API object. -/// -/// @return An instantiation of the `DBUSERSAccount` object. -/// -+ (DBUSERSAccount *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSBasicAccount.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSBasicAccount.h deleted file mode 100644 index 1c78e470..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSBasicAccount.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBUSERSAccount.h" - -@class DBUSERSBasicAccount; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BasicAccount` struct. -/// -/// Basic information about any account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSBasicAccount : DBUSERSAccount - -#pragma mark - Instance fields - -/// Whether this user is a teammate of the current user. If this account is the -/// current user's account, then this will be true. -@property (nonatomic, readonly) NSNumber *isTeammate; - -/// The user's unique team member id. This field will only be present if the -/// user is part of a team and isTeammate is true. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param isTeammate Whether this user is a teammate of the current user. If -/// this account is the current user's account, then this will be true. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// @param teamMemberId The user's unique team member id. This field will only -/// be present if the user is part of a team and isTeammate is true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - isTeammate:(NSNumber *)isTeammate - profilePhotoUrl:(nullable NSString *)profilePhotoUrl - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param isTeammate Whether this user is a teammate of the current user. If -/// this account is the current user's account, then this will be true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - isTeammate:(NSNumber *)isTeammate; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BasicAccount` struct. -/// -@interface DBUSERSBasicAccountSerializer : NSObject - -/// -/// Serializes `DBUSERSBasicAccount` instances. -/// -/// @param instance An instance of the `DBUSERSBasicAccount` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSBasicAccount` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSBasicAccount *)instance; - -/// -/// Deserializes `DBUSERSBasicAccount` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSBasicAccount` API object. -/// -/// @return An instantiation of the `DBUSERSBasicAccount` object. -/// -+ (DBUSERSBasicAccount *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSCOMMONAccountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSCOMMONAccountType.h deleted file mode 100644 index 00db4cc2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSCOMMONAccountType.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSCOMMONAccountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountType` union. -/// -/// What type of account this user has. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSCOMMONAccountType : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSCOMMONAccountTypeTag` enum type represents the possible tag -/// states with which the `DBUSERSCOMMONAccountType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSCOMMONAccountTypeTag) { - /// The basic account type. - DBUSERSCOMMONAccountTypeBasic, - - /// The Dropbox Pro account type. - DBUSERSCOMMONAccountTypePro, - - /// The Dropbox Business account type. - DBUSERSCOMMONAccountTypeBusiness, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSCOMMONAccountTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "basic". -/// -/// Description of the "basic" tag state: The basic account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBasic; - -/// -/// Initializes union class with tag state of "pro". -/// -/// Description of the "pro" tag state: The Dropbox Pro account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPro; - -/// -/// Initializes union class with tag state of "business". -/// -/// Description of the "business" tag state: The Dropbox Business account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBusiness; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "basic". -/// -/// @return Whether the union's current tag state has value "basic". -/// -- (BOOL)isBasic; - -/// -/// Retrieves whether the union's current tag state has value "pro". -/// -/// @return Whether the union's current tag state has value "pro". -/// -- (BOOL)isPro; - -/// -/// Retrieves whether the union's current tag state has value "business". -/// -/// @return Whether the union's current tag state has value "business". -/// -- (BOOL)isBusiness; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSCOMMONAccountType` union. -/// -@interface DBUSERSCOMMONAccountTypeSerializer : NSObject - -/// -/// Serializes `DBUSERSCOMMONAccountType` instances. -/// -/// @param instance An instance of the `DBUSERSCOMMONAccountType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSCOMMONAccountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSCOMMONAccountType *)instance; - -/// -/// Deserializes `DBUSERSCOMMONAccountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSCOMMONAccountType` API object. -/// -/// @return An instantiation of the `DBUSERSCOMMONAccountType` object. -/// -+ (DBUSERSCOMMONAccountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFileLockingValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFileLockingValue.h deleted file mode 100644 index 33c26a69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFileLockingValue.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSFileLockingValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingValue` union. -/// -/// The value for `fileLocking` in `DBUSERSUserFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSFileLockingValue : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSFileLockingValueTag` enum type represents the possible tag -/// states with which the `DBUSERSFileLockingValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSFileLockingValueTag) { - /// When this value is True, the user can lock files in shared directories. - /// When the value is False the user can unlock the files they have locked - /// or request to unlock files locked by others. - DBUSERSFileLockingValueEnabled, - - /// (no description). - DBUSERSFileLockingValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSFileLockingValueTag tag; - -/// When this value is True, the user can lock files in shared directories. When -/// the value is False the user can unlock the files they have locked or request -/// to unlock files locked by others. @note Ensure the `isEnabled` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *enabled; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: When this value is True, the user -/// can lock files in shared directories. When the value is False the user can -/// unlock the files they have locked or request to unlock files locked by -/// others. -/// -/// @param enabled When this value is True, the user can lock files in shared -/// directories. When the value is False the user can unlock the files they have -/// locked or request to unlock files locked by others. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled:(NSNumber *)enabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabled` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSFileLockingValue` union. -/// -@interface DBUSERSFileLockingValueSerializer : NSObject - -/// -/// Serializes `DBUSERSFileLockingValue` instances. -/// -/// @param instance An instance of the `DBUSERSFileLockingValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSFileLockingValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSFileLockingValue *)instance; - -/// -/// Deserializes `DBUSERSFileLockingValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSFileLockingValue` API object. -/// -/// @return An instantiation of the `DBUSERSFileLockingValue` object. -/// -+ (DBUSERSFileLockingValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFullAccount.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFullAccount.h deleted file mode 100644 index ebc3d6a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFullAccount.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBUSERSAccount.h" - -@class DBCOMMONRootInfo; -@class DBUSERSCOMMONAccountType; -@class DBUSERSFullAccount; -@class DBUSERSFullTeam; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FullAccount` struct. -/// -/// Detailed information about the current user's account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSFullAccount : DBUSERSAccount - -#pragma mark - Instance fields - -/// The user's two-letter country code, if available. Country codes are based on -/// ISO 3166-1 http://en.wikipedia.org/wiki/ISO_3166-1. -@property (nonatomic, readonly, copy, nullable) NSString *country; - -/// The language that the user specified. Locale tags will be IETF language tags -/// http://en.wikipedia.org/wiki/IETF_language_tag. -@property (nonatomic, readonly, copy) NSString *locale; - -/// The user's referral link https://www.dropbox.com/referrals. -@property (nonatomic, readonly, copy) NSString *referralLink; - -/// If this account is a member of a team, information about that team. -@property (nonatomic, readonly, nullable) DBUSERSFullTeam *team; - -/// This account's unique team member id. This field will only be present if -/// team is present. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -/// Whether the user has a personal and work account. If the current account is -/// personal, then team will always be null, but isPaired will indicate if a -/// work account is linked. -@property (nonatomic, readonly) NSNumber *isPaired; - -/// What type of account this user has. -@property (nonatomic, readonly) DBUSERSCOMMONAccountType *accountType; - -/// The root info for this account. -@property (nonatomic, readonly) DBCOMMONRootInfo *rootInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param locale The language that the user specified. Locale tags will be IETF -/// language tags http://en.wikipedia.org/wiki/IETF_language_tag. -/// @param referralLink The user's referral link -/// https://www.dropbox.com/referrals. -/// @param isPaired Whether the user has a personal and work account. If the -/// current account is personal, then team will always be null, but isPaired -/// will indicate if a work account is linked. -/// @param accountType What type of account this user has. -/// @param rootInfo The root info for this account. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// @param country The user's two-letter country code, if available. Country -/// codes are based on ISO 3166-1 http://en.wikipedia.org/wiki/ISO_3166-1. -/// @param team If this account is a member of a team, information about that -/// team. -/// @param teamMemberId This account's unique team member id. This field will -/// only be present if team is present. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - locale:(NSString *)locale - referralLink:(NSString *)referralLink - isPaired:(NSNumber *)isPaired - accountType:(DBUSERSCOMMONAccountType *)accountType - rootInfo:(DBCOMMONRootInfo *)rootInfo - profilePhotoUrl:(nullable NSString *)profilePhotoUrl - country:(nullable NSString *)country - team:(nullable DBUSERSFullTeam *)team - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param locale The language that the user specified. Locale tags will be IETF -/// language tags http://en.wikipedia.org/wiki/IETF_language_tag. -/// @param referralLink The user's referral link -/// https://www.dropbox.com/referrals. -/// @param isPaired Whether the user has a personal and work account. If the -/// current account is personal, then team will always be null, but isPaired -/// will indicate if a work account is linked. -/// @param accountType What type of account this user has. -/// @param rootInfo The root info for this account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - locale:(NSString *)locale - referralLink:(NSString *)referralLink - isPaired:(NSNumber *)isPaired - accountType:(DBUSERSCOMMONAccountType *)accountType - rootInfo:(DBCOMMONRootInfo *)rootInfo; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FullAccount` struct. -/// -@interface DBUSERSFullAccountSerializer : NSObject - -/// -/// Serializes `DBUSERSFullAccount` instances. -/// -/// @param instance An instance of the `DBUSERSFullAccount` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSFullAccount` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSFullAccount *)instance; - -/// -/// Deserializes `DBUSERSFullAccount` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSFullAccount` API object. -/// -/// @return An instantiation of the `DBUSERSFullAccount` object. -/// -+ (DBUSERSFullAccount *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFullTeam.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFullTeam.h deleted file mode 100644 index 2d119299..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSFullTeam.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBUSERSTeam.h" - -@class DBTEAMPOLICIESOfficeAddInPolicy; -@class DBTEAMPOLICIESTeamSharingPolicies; -@class DBUSERSFullTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FullTeam` struct. -/// -/// Detailed information about a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSFullTeam : DBUSERSTeam - -#pragma mark - Instance fields - -/// Team policies governing sharing. -@property (nonatomic, readonly) DBTEAMPOLICIESTeamSharingPolicies *sharingPolicies; - -/// Team policy governing the use of the Office Add-In. -@property (nonatomic, readonly) DBTEAMPOLICIESOfficeAddInPolicy *officeAddinPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The team's unique ID. -/// @param name The name of the team. -/// @param sharingPolicies Team policies governing sharing. -/// @param officeAddinPolicy Team policy governing the use of the Office Add-In. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - sharingPolicies:(DBTEAMPOLICIESTeamSharingPolicies *)sharingPolicies - officeAddinPolicy:(DBTEAMPOLICIESOfficeAddInPolicy *)officeAddinPolicy; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FullTeam` struct. -/// -@interface DBUSERSFullTeamSerializer : NSObject - -/// -/// Serializes `DBUSERSFullTeam` instances. -/// -/// @param instance An instance of the `DBUSERSFullTeam` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSFullTeam` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSFullTeam *)instance; - -/// -/// Deserializes `DBUSERSFullTeam` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSFullTeam` API object. -/// -/// @return An instantiation of the `DBUSERSFullTeam` object. -/// -+ (DBUSERSFullTeam *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountArg.h deleted file mode 100644 index 4b760935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountArg : NSObject - -#pragma mark - Instance fields - -/// A user's account identifier. -@property (nonatomic, readonly, copy) NSString *accountId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId A user's account identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetAccountArg` struct. -/// -@interface DBUSERSGetAccountArgSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountArg` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountArg *)instance; - -/// -/// Deserializes `DBUSERSGetAccountArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountArg` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountArg` object. -/// -+ (DBUSERSGetAccountArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountBatchArg.h deleted file mode 100644 index b78bdaea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of user account identifiers. Should not contain any duplicate account -/// IDs. -@property (nonatomic, readonly) NSArray *accountIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountIds List of user account identifiers. Should not contain any -/// duplicate account IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountIds:(NSArray *)accountIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetAccountBatchArg` struct. -/// -@interface DBUSERSGetAccountBatchArgSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountBatchArg` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountBatchArg *)instance; - -/// -/// Deserializes `DBUSERSGetAccountBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchArg` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountBatchArg` object. -/// -+ (DBUSERSGetAccountBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountBatchError.h deleted file mode 100644 index 90115cb4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountBatchError.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSGetAccountBatchErrorTag` enum type represents the possible tag -/// states with which the `DBUSERSGetAccountBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSGetAccountBatchErrorTag) { - /// The value is an account ID specified in `accountIds` in - /// `DBUSERSGetAccountBatchArg` that does not exist. - DBUSERSGetAccountBatchErrorNoAccount, - - /// (no description). - DBUSERSGetAccountBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSGetAccountBatchErrorTag tag; - -/// The value is an account ID specified in `accountIds` in -/// `DBUSERSGetAccountBatchArg` that does not exist. @note Ensure the -/// `isNoAccount` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *noAccount; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_account". -/// -/// Description of the "no_account" tag state: The value is an account ID -/// specified in `accountIds` in `DBUSERSGetAccountBatchArg` that does not -/// exist. -/// -/// @param noAccount The value is an account ID specified in `accountIds` in -/// `DBUSERSGetAccountBatchArg` that does not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccount:(NSString *)noAccount; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_account". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noAccount` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "no_account". -/// -- (BOOL)isNoAccount; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSGetAccountBatchError` union. -/// -@interface DBUSERSGetAccountBatchErrorSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountBatchError` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountBatchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountBatchError *)instance; - -/// -/// Deserializes `DBUSERSGetAccountBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchError` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountBatchError` object. -/// -+ (DBUSERSGetAccountBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountError.h deleted file mode 100644 index 6993e3a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSGetAccountError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountError : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSGetAccountErrorTag` enum type represents the possible tag states -/// with which the `DBUSERSGetAccountError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSGetAccountErrorTag) { - /// The specified `accountId` in `DBUSERSGetAccountArg` does not exist. - DBUSERSGetAccountErrorNoAccount, - - /// (no description). - DBUSERSGetAccountErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSGetAccountErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_account". -/// -/// Description of the "no_account" tag state: The specified `accountId` in -/// `DBUSERSGetAccountArg` does not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccount; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_account". -/// -/// @return Whether the union's current tag state has value "no_account". -/// -- (BOOL)isNoAccount; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSGetAccountError` union. -/// -@interface DBUSERSGetAccountErrorSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountError` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountError *)instance; - -/// -/// Deserializes `DBUSERSGetAccountError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountError` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountError` object. -/// -+ (DBUSERSGetAccountError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSIndividualSpaceAllocation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSIndividualSpaceAllocation.h deleted file mode 100644 index 8a15c66d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSIndividualSpaceAllocation.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSIndividualSpaceAllocation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IndividualSpaceAllocation` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSIndividualSpaceAllocation : NSObject - -#pragma mark - Instance fields - -/// The total space allocated to the user's account (bytes). -@property (nonatomic, readonly) NSNumber *allocated; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param allocated The total space allocated to the user's account (bytes). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllocated:(NSNumber *)allocated; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IndividualSpaceAllocation` struct. -/// -@interface DBUSERSIndividualSpaceAllocationSerializer : NSObject - -/// -/// Serializes `DBUSERSIndividualSpaceAllocation` instances. -/// -/// @param instance An instance of the `DBUSERSIndividualSpaceAllocation` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSIndividualSpaceAllocation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSIndividualSpaceAllocation *)instance; - -/// -/// Deserializes `DBUSERSIndividualSpaceAllocation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSIndividualSpaceAllocation` API object. -/// -/// @return An instantiation of the `DBUSERSIndividualSpaceAllocation` object. -/// -+ (DBUSERSIndividualSpaceAllocation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSName.h deleted file mode 100644 index c454b238..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSName.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Name` struct. -/// -/// Representations for a person's name to assist with internationalization. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSName : NSObject - -#pragma mark - Instance fields - -/// Also known as a first name. -@property (nonatomic, readonly, copy) NSString *givenName; - -/// Also known as a last name or family name. -@property (nonatomic, readonly, copy) NSString *surname; - -/// Locale-dependent name. In the US, a person's familiar name is their -/// givenName, but elsewhere, it could be any combination of a person's -/// givenName and surname. -@property (nonatomic, readonly, copy) NSString *familiarName; - -/// A name that can be used directly to represent the name of a user's Dropbox -/// account. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// An abbreviated form of the person's name. Their initials in most locales. -@property (nonatomic, readonly, copy) NSString *abbreviatedName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param givenName Also known as a first name. -/// @param surname Also known as a last name or family name. -/// @param familiarName Locale-dependent name. In the US, a person's familiar -/// name is their givenName, but elsewhere, it could be any combination of a -/// person's givenName and surname. -/// @param displayName A name that can be used directly to represent the name of -/// a user's Dropbox account. -/// @param abbreviatedName An abbreviated form of the person's name. Their -/// initials in most locales. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGivenName:(NSString *)givenName - surname:(NSString *)surname - familiarName:(NSString *)familiarName - displayName:(NSString *)displayName - abbreviatedName:(NSString *)abbreviatedName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Name` struct. -/// -@interface DBUSERSNameSerializer : NSObject - -/// -/// Serializes `DBUSERSName` instances. -/// -/// @param instance An instance of the `DBUSERSName` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSName` API -/// object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSName *)instance; - -/// -/// Deserializes `DBUSERSName` instances. -/// -/// @param dict A json-compatible dictionary representation of the `DBUSERSName` -/// API object. -/// -/// @return An instantiation of the `DBUSERSName` object. -/// -+ (DBUSERSName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSPaperAsFilesValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSPaperAsFilesValue.h deleted file mode 100644 index a1a20af5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSPaperAsFilesValue.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSPaperAsFilesValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAsFilesValue` union. -/// -/// The value for `paperAsFiles` in `DBUSERSUserFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSPaperAsFilesValue : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSPaperAsFilesValueTag` enum type represents the possible tag -/// states with which the `DBUSERSPaperAsFilesValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSPaperAsFilesValueTag) { - /// When this value is true, the user's Paper docs are accessible in Dropbox - /// with the .paper extension and must be accessed via the /files endpoints. - /// When this value is false, the user's Paper docs are stored separate from - /// Dropbox files and folders and should be accessed via the /paper - /// endpoints. - DBUSERSPaperAsFilesValueEnabled, - - /// (no description). - DBUSERSPaperAsFilesValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSPaperAsFilesValueTag tag; - -/// When this value is true, the user's Paper docs are accessible in Dropbox -/// with the .paper extension and must be accessed via the /files endpoints. -/// When this value is false, the user's Paper docs are stored separate from -/// Dropbox files and folders and should be accessed via the /paper endpoints. -/// @note Ensure the `isEnabled` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *enabled; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: When this value is true, the user's -/// Paper docs are accessible in Dropbox with the .paper extension and must be -/// accessed via the /files endpoints. When this value is false, the user's -/// Paper docs are stored separate from Dropbox files and folders and should be -/// accessed via the /paper endpoints. -/// -/// @param enabled When this value is true, the user's Paper docs are accessible -/// in Dropbox with the .paper extension and must be accessed via the /files -/// endpoints. When this value is false, the user's Paper docs are stored -/// separate from Dropbox files and folders and should be accessed via the -/// /paper endpoints. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled:(NSNumber *)enabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabled` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSPaperAsFilesValue` union. -/// -@interface DBUSERSPaperAsFilesValueSerializer : NSObject - -/// -/// Serializes `DBUSERSPaperAsFilesValue` instances. -/// -/// @param instance An instance of the `DBUSERSPaperAsFilesValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSPaperAsFilesValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSPaperAsFilesValue *)instance; - -/// -/// Deserializes `DBUSERSPaperAsFilesValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSPaperAsFilesValue` API object. -/// -/// @return An instantiation of the `DBUSERSPaperAsFilesValue` object. -/// -+ (DBUSERSPaperAsFilesValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSRouteObjects.h deleted file mode 100644 index 8fe28034..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSRouteObjects.h +++ /dev/null @@ -1,37 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Users namespace. Each route in the Users -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBUSERSRouteObjects : NSObject - -/// Accessor method for the featuresGetValues route object. -+ (DBRoute *)DBUSERSFeaturesGetValues; - -/// Accessor method for the getAccount route object. -+ (DBRoute *)DBUSERSGetAccount; - -/// Accessor method for the getAccountBatch route object. -+ (DBRoute *)DBUSERSGetAccountBatch; - -/// Accessor method for the getCurrentAccount route object. -+ (DBRoute *)DBUSERSGetCurrentAccount; - -/// Accessor method for the getSpaceUsage route object. -+ (DBRoute *)DBUSERSGetSpaceUsage; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSSpaceAllocation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSSpaceAllocation.h deleted file mode 100644 index ef9d4017..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSSpaceAllocation.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSIndividualSpaceAllocation; -@class DBUSERSSpaceAllocation; -@class DBUSERSTeamSpaceAllocation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceAllocation` union. -/// -/// Space is allocated differently based on the type of account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSSpaceAllocation : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSSpaceAllocationTag` enum type represents the possible tag states -/// with which the `DBUSERSSpaceAllocation` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSSpaceAllocationTag) { - /// The user's space allocation applies only to their individual account. - DBUSERSSpaceAllocationIndividual, - - /// The user shares space with other members of their team. - DBUSERSSpaceAllocationTeam, - - /// (no description). - DBUSERSSpaceAllocationOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSSpaceAllocationTag tag; - -/// The user's space allocation applies only to their individual account. @note -/// Ensure the `isIndividual` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBUSERSIndividualSpaceAllocation *individual; - -/// The user shares space with other members of their team. @note Ensure the -/// `isTeam` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBUSERSTeamSpaceAllocation *team; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "individual". -/// -/// Description of the "individual" tag state: The user's space allocation -/// applies only to their individual account. -/// -/// @param individual The user's space allocation applies only to their -/// individual account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIndividual:(DBUSERSIndividualSpaceAllocation *)individual; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: The user shares space with other -/// members of their team. -/// -/// @param team The user shares space with other members of their team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(DBUSERSTeamSpaceAllocation *)team; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "individual". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `individual` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "individual". -/// -- (BOOL)isIndividual; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `team` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSSpaceAllocation` union. -/// -@interface DBUSERSSpaceAllocationSerializer : NSObject - -/// -/// Serializes `DBUSERSSpaceAllocation` instances. -/// -/// @param instance An instance of the `DBUSERSSpaceAllocation` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSSpaceAllocation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSSpaceAllocation *)instance; - -/// -/// Deserializes `DBUSERSSpaceAllocation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSSpaceAllocation` API object. -/// -/// @return An instantiation of the `DBUSERSSpaceAllocation` object. -/// -+ (DBUSERSSpaceAllocation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSSpaceUsage.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSSpaceUsage.h deleted file mode 100644 index 3cf02050..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSSpaceUsage.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSSpaceAllocation; -@class DBUSERSSpaceUsage; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceUsage` struct. -/// -/// Information about a user's space usage and quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSSpaceUsage : NSObject - -#pragma mark - Instance fields - -/// The user's total space usage (bytes). -@property (nonatomic, readonly) NSNumber *used; - -/// The user's space allocation. -@property (nonatomic, readonly) DBUSERSSpaceAllocation *allocation; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param used The user's total space usage (bytes). -/// @param allocation The user's space allocation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsed:(NSNumber *)used allocation:(DBUSERSSpaceAllocation *)allocation; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SpaceUsage` struct. -/// -@interface DBUSERSSpaceUsageSerializer : NSObject - -/// -/// Serializes `DBUSERSSpaceUsage` instances. -/// -/// @param instance An instance of the `DBUSERSSpaceUsage` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSSpaceUsage` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSSpaceUsage *)instance; - -/// -/// Deserializes `DBUSERSSpaceUsage` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSSpaceUsage` API object. -/// -/// @return An instantiation of the `DBUSERSSpaceUsage` object. -/// -+ (DBUSERSSpaceUsage *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSTeam.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSTeam.h deleted file mode 100644 index 5044b6d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSTeam.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Team` struct. -/// -/// Information about a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSTeam : NSObject - -#pragma mark - Instance fields - -/// The team's unique ID. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The team's unique ID. -/// @param name The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Team` struct. -/// -@interface DBUSERSTeamSerializer : NSObject - -/// -/// Serializes `DBUSERSTeam` instances. -/// -/// @param instance An instance of the `DBUSERSTeam` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSTeam` API -/// object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSTeam *)instance; - -/// -/// Deserializes `DBUSERSTeam` instances. -/// -/// @param dict A json-compatible dictionary representation of the `DBUSERSTeam` -/// API object. -/// -/// @return An instantiation of the `DBUSERSTeam` object. -/// -+ (DBUSERSTeam *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSTeamSpaceAllocation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSTeamSpaceAllocation.h deleted file mode 100644 index 08e8db71..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSTeamSpaceAllocation.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONMemberSpaceLimitType; -@class DBUSERSTeamSpaceAllocation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSpaceAllocation` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSTeamSpaceAllocation : NSObject - -#pragma mark - Instance fields - -/// The total space currently used by the user's team (bytes). -@property (nonatomic, readonly) NSNumber *used; - -/// The total space allocated to the user's team (bytes). -@property (nonatomic, readonly) NSNumber *allocated; - -/// The total space allocated to the user within its team allocated space (0 -/// means that no restriction is imposed on the user's quota within its team). -@property (nonatomic, readonly) NSNumber *userWithinTeamSpaceAllocated; - -/// The type of the space limit imposed on the team member (off, alert_only, -/// stop_sync). -@property (nonatomic, readonly) DBTEAMCOMMONMemberSpaceLimitType *userWithinTeamSpaceLimitType; - -/// An accurate cached calculation of a team member's total space usage (bytes). -@property (nonatomic, readonly) NSNumber *userWithinTeamSpaceUsedCached; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param used The total space currently used by the user's team (bytes). -/// @param allocated The total space allocated to the user's team (bytes). -/// @param userWithinTeamSpaceAllocated The total space allocated to the user -/// within its team allocated space (0 means that no restriction is imposed on -/// the user's quota within its team). -/// @param userWithinTeamSpaceLimitType The type of the space limit imposed on -/// the team member (off, alert_only, stop_sync). -/// @param userWithinTeamSpaceUsedCached An accurate cached calculation of a -/// team member's total space usage (bytes). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsed:(NSNumber *)used - allocated:(NSNumber *)allocated - userWithinTeamSpaceAllocated:(NSNumber *)userWithinTeamSpaceAllocated - userWithinTeamSpaceLimitType:(DBTEAMCOMMONMemberSpaceLimitType *)userWithinTeamSpaceLimitType - userWithinTeamSpaceUsedCached:(NSNumber *)userWithinTeamSpaceUsedCached; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSpaceAllocation` struct. -/// -@interface DBUSERSTeamSpaceAllocationSerializer : NSObject - -/// -/// Serializes `DBUSERSTeamSpaceAllocation` instances. -/// -/// @param instance An instance of the `DBUSERSTeamSpaceAllocation` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSTeamSpaceAllocation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSTeamSpaceAllocation *)instance; - -/// -/// Deserializes `DBUSERSTeamSpaceAllocation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSTeamSpaceAllocation` API object. -/// -/// @return An instantiation of the `DBUSERSTeamSpaceAllocation` object. -/// -+ (DBUSERSTeamSpaceAllocation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserAuthRoutes.h deleted file mode 100644 index 9f6569f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserAuthRoutes.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCOMMONRootInfo; -@class DBNilObject; -@class DBUSERSBasicAccount; -@class DBUSERSCOMMONAccountType; -@class DBUSERSFullAccount; -@class DBUSERSFullTeam; -@class DBUSERSGetAccountBatchError; -@class DBUSERSGetAccountError; -@class DBUSERSName; -@class DBUSERSSpaceAllocation; -@class DBUSERSSpaceUsage; -@class DBUSERSUserFeature; -@class DBUSERSUserFeatureValue; -@class DBUSERSUserFeaturesGetValuesBatchError; -@class DBUSERSUserFeaturesGetValuesBatchResult; - -@protocol DBTransportClient; - -/// -/// Routes for the `Users` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBUSERSUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBUSERSUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Get a list of feature values that may be configured for the current account. -/// -/// @param features A list of features in UserFeature. If the list is empty, this route will return -/// UserFeaturesGetValuesBatchError. -/// -/// @return Through the response callback, the caller will receive a `DBUSERSUserFeaturesGetValuesBatchResult` object on -/// success or a `DBUSERSUserFeaturesGetValuesBatchError` object on failure. -/// -- (DBRpcTask *)featuresGetValues: - (NSArray *)features; - -/// -/// Get information about a user's account. -/// -/// @param accountId A user's account identifier. -/// -/// @return Through the response callback, the caller will receive a `DBUSERSBasicAccount` object on success or a -/// `DBUSERSGetAccountError` object on failure. -/// -- (DBRpcTask *)getAccount:(NSString *)accountId; - -/// -/// Get information about multiple user accounts. At most 300 accounts may be queried per request. -/// -/// @param accountIds List of user account identifiers. Should not contain any duplicate account IDs. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on success -/// or a `DBUSERSGetAccountBatchError` object on failure. -/// -- (DBRpcTask *, DBUSERSGetAccountBatchError *> *)getAccountBatch: - (NSArray *)accountIds; - -/// -/// Get information about the current user's account. -/// -/// -/// @return Through the response callback, the caller will receive a `DBUSERSFullAccount` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)getCurrentAccount; - -/// -/// Get the space usage information for the current user's account. -/// -/// -/// @return Through the response callback, the caller will receive a `DBUSERSSpaceUsage` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)getSpaceUsage; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeature.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeature.h deleted file mode 100644 index a43114a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeature.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeature; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeature` union. -/// -/// A set of features that a Dropbox User account may have configured. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeature : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSUserFeatureTag` enum type represents the possible tag states -/// with which the `DBUSERSUserFeature` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSUserFeatureTag) { - /// This feature contains information about how the user's Paper files are - /// stored. - DBUSERSUserFeaturePaperAsFiles, - - /// This feature allows users to lock files in order to restrict other users - /// from editing them. - DBUSERSUserFeatureFileLocking, - - /// (no description). - DBUSERSUserFeatureOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSUserFeatureTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "paper_as_files". -/// -/// Description of the "paper_as_files" tag state: This feature contains -/// information about how the user's Paper files are stored. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAsFiles; - -/// -/// Initializes union class with tag state of "file_locking". -/// -/// Description of the "file_locking" tag state: This feature allows users to -/// lock files in order to restrict other users from editing them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLocking; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "paper_as_files". -/// -/// @return Whether the union's current tag state has value "paper_as_files". -/// -- (BOOL)isPaperAsFiles; - -/// -/// Retrieves whether the union's current tag state has value "file_locking". -/// -/// @return Whether the union's current tag state has value "file_locking". -/// -- (BOOL)isFileLocking; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSUserFeature` union. -/// -@interface DBUSERSUserFeatureSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeature` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeature` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeature` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeature *)instance; - -/// -/// Deserializes `DBUSERSUserFeature` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeature` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeature` object. -/// -+ (DBUSERSUserFeature *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeatureValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeatureValue.h deleted file mode 100644 index 2dfd7651..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeatureValue.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSFileLockingValue; -@class DBUSERSPaperAsFilesValue; -@class DBUSERSUserFeatureValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeatureValue` union. -/// -/// Values that correspond to entries in UserFeature. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeatureValue : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSUserFeatureValueTag` enum type represents the possible tag -/// states with which the `DBUSERSUserFeatureValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSUserFeatureValueTag) { - /// (no description). - DBUSERSUserFeatureValuePaperAsFiles, - - /// (no description). - DBUSERSUserFeatureValueFileLocking, - - /// (no description). - DBUSERSUserFeatureValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSUserFeatureValueTag tag; - -/// (no description). @note Ensure the `isPaperAsFiles` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBUSERSPaperAsFilesValue *paperAsFiles; - -/// (no description). @note Ensure the `isFileLocking` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBUSERSFileLockingValue *fileLocking; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "paper_as_files". -/// -/// @param paperAsFiles (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAsFiles:(DBUSERSPaperAsFilesValue *)paperAsFiles; - -/// -/// Initializes union class with tag state of "file_locking". -/// -/// @param fileLocking (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLocking:(DBUSERSFileLockingValue *)fileLocking; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "paper_as_files". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAsFiles` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_as_files". -/// -- (BOOL)isPaperAsFiles; - -/// -/// Retrieves whether the union's current tag state has value "file_locking". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLocking` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_locking". -/// -- (BOOL)isFileLocking; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSUserFeatureValue` union. -/// -@interface DBUSERSUserFeatureValueSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeatureValue` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeatureValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeatureValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeatureValue *)instance; - -/// -/// Deserializes `DBUSERSUserFeatureValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeatureValue` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeatureValue` object. -/// -+ (DBUSERSUserFeatureValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchArg.h deleted file mode 100644 index 721d25bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeature; -@class DBUSERSUserFeaturesGetValuesBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeaturesGetValuesBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeaturesGetValuesBatchArg : NSObject - -#pragma mark - Instance fields - -/// A list of features in UserFeature. If the list is empty, this route will -/// return UserFeaturesGetValuesBatchError. -@property (nonatomic, readonly) NSArray *features; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param features A list of features in UserFeature. If the list is empty, -/// this route will return UserFeaturesGetValuesBatchError. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFeatures:(NSArray *)features; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserFeaturesGetValuesBatchArg` struct. -/// -@interface DBUSERSUserFeaturesGetValuesBatchArgSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeaturesGetValuesBatchArg` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeaturesGetValuesBatchArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeaturesGetValuesBatchArg *)instance; - -/// -/// Deserializes `DBUSERSUserFeaturesGetValuesBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchArg` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeaturesGetValuesBatchArg` -/// object. -/// -+ (DBUSERSUserFeaturesGetValuesBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchError.h deleted file mode 100644 index a88a3a7a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeaturesGetValuesBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeaturesGetValuesBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeaturesGetValuesBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSUserFeaturesGetValuesBatchErrorTag` enum type represents the -/// possible tag states with which the `DBUSERSUserFeaturesGetValuesBatchError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSUserFeaturesGetValuesBatchErrorTag) { - /// At least one UserFeature must be included in the - /// UserFeaturesGetValuesBatchArg.features list. - DBUSERSUserFeaturesGetValuesBatchErrorEmptyFeaturesList, - - /// (no description). - DBUSERSUserFeaturesGetValuesBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSUserFeaturesGetValuesBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "empty_features_list". -/// -/// Description of the "empty_features_list" tag state: At least one UserFeature -/// must be included in the UserFeaturesGetValuesBatchArg.features list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyFeaturesList; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_features_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_features_list". -/// -- (BOOL)isEmptyFeaturesList; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSUserFeaturesGetValuesBatchError` -/// union. -/// -@interface DBUSERSUserFeaturesGetValuesBatchErrorSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeaturesGetValuesBatchError` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeaturesGetValuesBatchError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeaturesGetValuesBatchError *)instance; - -/// -/// Deserializes `DBUSERSUserFeaturesGetValuesBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchError` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeaturesGetValuesBatchError` -/// object. -/// -+ (DBUSERSUserFeaturesGetValuesBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchResult.h deleted file mode 100644 index 149f7607..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUSERSUserFeaturesGetValuesBatchResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeatureValue; -@class DBUSERSUserFeaturesGetValuesBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeaturesGetValuesBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeaturesGetValuesBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserFeaturesGetValuesBatchResult` struct. -/// -@interface DBUSERSUserFeaturesGetValuesBatchResultSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeaturesGetValuesBatchResult` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeaturesGetValuesBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeaturesGetValuesBatchResult *)instance; - -/// -/// Deserializes `DBUSERSUserFeaturesGetValuesBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchResult` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeaturesGetValuesBatchResult` -/// object. -/// -+ (DBUSERSUserFeaturesGetValuesBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUserBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUserBaseClient.h deleted file mode 100644 index 23158e8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUserBaseClient.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import "DBACCOUNTUserAuthRoutes.h" -#import "DBAUTHUserAuthRoutes.h" -#import "DBCHECKUserAuthRoutes.h" -#import "DBCONTACTSUserAuthRoutes.h" -#import "DBFILEPROPERTIESUserAuthRoutes.h" -#import "DBFILEREQUESTSUserAuthRoutes.h" -#import "DBFILESUserAuthRoutes.h" -#import "DBOPENIDUserAuthRoutes.h" -#import "DBPAPERUserAuthRoutes.h" -#import "DBRequestErrors.h" -#import "DBSHARINGUserAuthRoutes.h" -#import "DBTasks.h" -#import "DBUSERSUserAuthRoutes.h" -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient; - -/// -/// Base client object that contains an instance field for each namespace, each -/// of which contains references to all routes within that namespace. -/// Fully-implemented API clients will inherit this class. -/// -@interface DBUserBaseClient : NSObject { - -@protected - id _transportClient; -} - -/// Routes within the `account` namespace. -@property (nonatomic, readonly) DBACCOUNTUserAuthRoutes *accountRoutes; - -/// Routes within the `auth` namespace. -@property (nonatomic, readonly) DBAUTHUserAuthRoutes *authRoutes; - -/// Routes within the `check` namespace. -@property (nonatomic, readonly) DBCHECKUserAuthRoutes *checkRoutes; - -/// Routes within the `contacts` namespace. -@property (nonatomic, readonly) DBCONTACTSUserAuthRoutes *contactsRoutes; - -/// Routes within the `fileProperties` namespace. -@property (nonatomic, readonly) DBFILEPROPERTIESUserAuthRoutes *filePropertiesRoutes; - -/// Routes within the `fileRequests` namespace. -@property (nonatomic, readonly) DBFILEREQUESTSUserAuthRoutes *fileRequestsRoutes; - -/// Routes within the `files` namespace. -@property (nonatomic, readonly) DBFILESUserAuthRoutes *filesRoutes; - -/// Routes within the `openid` namespace. -@property (nonatomic, readonly) DBOPENIDUserAuthRoutes *openidRoutes; - -/// Routes within the `paper` namespace. -@property (nonatomic, readonly) DBPAPERUserAuthRoutes *paperRoutes; - -/// Routes within the `sharing` namespace. -@property (nonatomic, readonly) DBSHARINGUserAuthRoutes *sharingRoutes; - -/// Routes within the `users` namespace. -@property (nonatomic, readonly) DBUSERSUserAuthRoutes *usersRoutes; - -/// Initializes the `DBUserBaseClient` object with a networking client. -- (instancetype)initWithTransportClient:(id)client; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUserClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUserClient.h deleted file mode 100644 index 779d60b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/DBUserClient.h +++ /dev/null @@ -1,128 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBUserBaseClient.h" - -@class DBTransportDefaultClient; -@class DBTransportDefaultConfig; -@protocol DBAccessTokenProvider; -@class DBAccessToken; -@class DBOAuthManager; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox User API Client for all endpoints with auth type "user". -/// -/// This is the SDK user's primary interface with the Dropbox API. Routes can be accessed via each "namespace" object in -/// the instance fields of its parent, `DBUserBaseClient`. To see a full list of the User API endpoints available, -/// please visit: https://www.dropbox.com/developers/documentation/http/documentation. -/// -@interface DBUserClient : DBUserBaseClient - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy, nullable) NSString *tokenUid; - -/// -/// Convenience initializer. -/// -/// Uses standard network configuration parameters. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken The (long-lived) Dropbox OAuth 2.0 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessTokenProvider A `DBAccessTokenProvider` that provides access token and token refresh functionality. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessTokenProvider:(id)accessTokenProvider - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken An access token object. -/// @param oauthManager The oauthManager instance. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(DBAccessToken *)accessToken - oauthManager:(DBOAuthManager *)oauthManager - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// Designated initializer. -/// -/// @param client A `DBTransportDefaultClient` used to make network requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransportClient:(DBTransportDefaultClient *)client NS_DESIGNATED_INITIALIZER; - -/// -/// Returns a `DBUserClient` instance that can be used to make API calls with given path root value. -/// @param pathRoot Value of the path root object which will be used as Dropbox-Api-Path-Root header. -/// -/// @return An initialized User API client instance. -/// -- (DBUserClient *)withPathRoot:(DBCOMMONPathRoot *)pathRoot; - -/// -/// Returns the current access token used to make API requests. -/// -- (nullable NSString *)accessToken; - -/// -/// Returns whether the client is authorized. -/// -/// @return Whether the client currently has a non-nil OAuth 2.0 access token. -/// -- (BOOL)isAuthorized; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/ObjectiveDropboxOfficial.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/ObjectiveDropboxOfficial.h deleted file mode 100644 index 2c2cbe7e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Headers/ObjectiveDropboxOfficial.h +++ /dev/null @@ -1,35 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Umbrella import for importing as a framework -/// - -#import "TargetConditionals.h" - -#import -#import - -#if TARGET_OS_IPHONE -#import -#import -#elif TARGET_OS_MAC -#import -#import -#endif - -//! Project version number for ObjectiveDropboxOfficial. -FOUNDATION_EXPORT double ObjectiveDropboxOfficialVersionNumber; - -//! Project version string for ObjectiveDropboxOfficial. -FOUNDATION_EXPORT const unsigned char ObjectiveDropboxOfficialVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import -// - -#import - -#if TARGET_OS_IPHONE -#import -#elif TARGET_OS_MAC -#import -#endif diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Info.plist b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Info.plist deleted file mode 100644 index b1c4d350..00000000 Binary files a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Info.plist and /dev/null differ diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Modules/module.modulemap b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Modules/module.modulemap deleted file mode 100644 index b3dfe02b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module ObjectiveDropboxOfficial { - umbrella header "ObjectiveDropboxOfficial.h" - export * - - module * { export * } -} diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial deleted file mode 100755 index 5fff9b9a..00000000 Binary files a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial and /dev/null differ diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/PrivateHeaders/ObjectiveDropboxOfficialLib.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/PrivateHeaders/ObjectiveDropboxOfficialLib.h deleted file mode 100644 index f930b47d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/ios-arm64/ObjectiveDropboxOfficial.framework/PrivateHeaders/ObjectiveDropboxOfficialLib.h +++ /dev/null @@ -1,15 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Umbrella import for importing as a library -/// - -#import "TargetConditionals.h" - -#import "DBSDKImportsShared.h" - -#if TARGET_OS_IPHONE -#import "DBSDKImports-iOS.h" -#elif TARGET_OS_MAC -#import "DBSDKImports-macOS.h" -#endif diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Headers b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Headers deleted file mode 120000 index a177d2a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Headers +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Headers \ No newline at end of file diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Modules b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Modules deleted file mode 120000 index 5736f318..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Modules +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Modules \ No newline at end of file diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial deleted file mode 120000 index e4c2ad59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/ObjectiveDropboxOfficial +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/ObjectiveDropboxOfficial \ No newline at end of file diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/PrivateHeaders b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/PrivateHeaders deleted file mode 120000 index d8e56452..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/PrivateHeaders +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/PrivateHeaders \ No newline at end of file diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Resources b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Resources deleted file mode 120000 index 953ee36f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Resources +++ /dev/null @@ -1 +0,0 @@ -Versions/Current/Resources \ No newline at end of file diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTPhotoSourceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTPhotoSourceArg.h deleted file mode 100644 index 913b302b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTPhotoSourceArg.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTPhotoSourceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PhotoSourceArg` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTPhotoSourceArg : NSObject - -#pragma mark - Instance fields - -/// The `DBACCOUNTPhotoSourceArgTag` enum type represents the possible tag -/// states with which the `DBACCOUNTPhotoSourceArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBACCOUNTPhotoSourceArgTag) { - /// Image data in base64-encoded bytes. - DBACCOUNTPhotoSourceArgBase64Data, - - /// (no description). - DBACCOUNTPhotoSourceArgOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBACCOUNTPhotoSourceArgTag tag; - -/// Image data in base64-encoded bytes. @note Ensure the `isBase64Data` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *base64Data; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "base64_data". -/// -/// Description of the "base64_data" tag state: Image data in base64-encoded -/// bytes. -/// -/// @param base64Data Image data in base64-encoded bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBase64Data:(NSString *)base64Data; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "base64_data". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `base64Data` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "base64_data". -/// -- (BOOL)isBase64Data; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBACCOUNTPhotoSourceArg` union. -/// -@interface DBACCOUNTPhotoSourceArgSerializer : NSObject - -/// -/// Serializes `DBACCOUNTPhotoSourceArg` instances. -/// -/// @param instance An instance of the `DBACCOUNTPhotoSourceArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTPhotoSourceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTPhotoSourceArg *)instance; - -/// -/// Deserializes `DBACCOUNTPhotoSourceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTPhotoSourceArg` API object. -/// -/// @return An instantiation of the `DBACCOUNTPhotoSourceArg` object. -/// -+ (DBACCOUNTPhotoSourceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTRouteObjects.h deleted file mode 100644 index 949800ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTRouteObjects.h +++ /dev/null @@ -1,25 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Account namespace. Each route in the Account -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBACCOUNTRouteObjects : NSObject - -/// Accessor method for the setProfilePhoto route object. -+ (DBRoute *)DBACCOUNTSetProfilePhoto; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoArg.h deleted file mode 100644 index 1d27d52a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBACCOUNTSetProfilePhotoArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetProfilePhotoArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTSetProfilePhotoArg : NSObject - -#pragma mark - Instance fields - -/// Image to set as the user's new profile photo. -@property (nonatomic, readonly) DBACCOUNTPhotoSourceArg *photo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param photo Image to set as the user's new profile photo. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPhoto:(DBACCOUNTPhotoSourceArg *)photo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetProfilePhotoArg` struct. -/// -@interface DBACCOUNTSetProfilePhotoArgSerializer : NSObject - -/// -/// Serializes `DBACCOUNTSetProfilePhotoArg` instances. -/// -/// @param instance An instance of the `DBACCOUNTSetProfilePhotoArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTSetProfilePhotoArg *)instance; - -/// -/// Deserializes `DBACCOUNTSetProfilePhotoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoArg` API object. -/// -/// @return An instantiation of the `DBACCOUNTSetProfilePhotoArg` object. -/// -+ (DBACCOUNTSetProfilePhotoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoError.h deleted file mode 100644 index adbc8476..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoError.h +++ /dev/null @@ -1,197 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTSetProfilePhotoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetProfilePhotoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTSetProfilePhotoError : NSObject - -#pragma mark - Instance fields - -/// The `DBACCOUNTSetProfilePhotoErrorTag` enum type represents the possible tag -/// states with which the `DBACCOUNTSetProfilePhotoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBACCOUNTSetProfilePhotoErrorTag) { - /// File cannot be set as profile photo. - DBACCOUNTSetProfilePhotoErrorFileTypeError, - - /// File cannot exceed 10 MB. - DBACCOUNTSetProfilePhotoErrorFileSizeError, - - /// Image must be larger than 128 x 128. - DBACCOUNTSetProfilePhotoErrorDimensionError, - - /// Image could not be thumbnailed. - DBACCOUNTSetProfilePhotoErrorThumbnailError, - - /// Temporary infrastructure failure, please retry. - DBACCOUNTSetProfilePhotoErrorTransientError, - - /// (no description). - DBACCOUNTSetProfilePhotoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBACCOUNTSetProfilePhotoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file_type_error". -/// -/// Description of the "file_type_error" tag state: File cannot be set as -/// profile photo. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTypeError; - -/// -/// Initializes union class with tag state of "file_size_error". -/// -/// Description of the "file_size_error" tag state: File cannot exceed 10 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSizeError; - -/// -/// Initializes union class with tag state of "dimension_error". -/// -/// Description of the "dimension_error" tag state: Image must be larger than -/// 128 x 128. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensionError; - -/// -/// Initializes union class with tag state of "thumbnail_error". -/// -/// Description of the "thumbnail_error" tag state: Image could not be -/// thumbnailed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithThumbnailError; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file_type_error". -/// -/// @return Whether the union's current tag state has value "file_type_error". -/// -- (BOOL)isFileTypeError; - -/// -/// Retrieves whether the union's current tag state has value "file_size_error". -/// -/// @return Whether the union's current tag state has value "file_size_error". -/// -- (BOOL)isFileSizeError; - -/// -/// Retrieves whether the union's current tag state has value "dimension_error". -/// -/// @return Whether the union's current tag state has value "dimension_error". -/// -- (BOOL)isDimensionError; - -/// -/// Retrieves whether the union's current tag state has value "thumbnail_error". -/// -/// @return Whether the union's current tag state has value "thumbnail_error". -/// -- (BOOL)isThumbnailError; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBACCOUNTSetProfilePhotoError` union. -/// -@interface DBACCOUNTSetProfilePhotoErrorSerializer : NSObject - -/// -/// Serializes `DBACCOUNTSetProfilePhotoError` instances. -/// -/// @param instance An instance of the `DBACCOUNTSetProfilePhotoError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTSetProfilePhotoError *)instance; - -/// -/// Deserializes `DBACCOUNTSetProfilePhotoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoError` API object. -/// -/// @return An instantiation of the `DBACCOUNTSetProfilePhotoError` object. -/// -+ (DBACCOUNTSetProfilePhotoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoResult.h deleted file mode 100644 index 8a779ec8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTSetProfilePhotoResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTSetProfilePhotoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetProfilePhotoResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBACCOUNTSetProfilePhotoResult : NSObject - -#pragma mark - Instance fields - -/// URL for the photo representing the user, if one is set. -@property (nonatomic, readonly, copy) NSString *profilePhotoUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfilePhotoUrl:(NSString *)profilePhotoUrl; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetProfilePhotoResult` struct. -/// -@interface DBACCOUNTSetProfilePhotoResultSerializer : NSObject - -/// -/// Serializes `DBACCOUNTSetProfilePhotoResult` instances. -/// -/// @param instance An instance of the `DBACCOUNTSetProfilePhotoResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBACCOUNTSetProfilePhotoResult *)instance; - -/// -/// Deserializes `DBACCOUNTSetProfilePhotoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBACCOUNTSetProfilePhotoResult` API object. -/// -/// @return An instantiation of the `DBACCOUNTSetProfilePhotoResult` object. -/// -+ (DBACCOUNTSetProfilePhotoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTUserAuthRoutes.h deleted file mode 100644 index 460aaaa9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBACCOUNTUserAuthRoutes.h +++ /dev/null @@ -1,47 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBACCOUNTSetProfilePhotoError; -@class DBACCOUNTSetProfilePhotoResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Account` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBACCOUNTUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBACCOUNTUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Sets a user's profile photo. -/// -/// @param photo Image to set as the user's new profile photo. -/// -/// @return Through the response callback, the caller will receive a `DBACCOUNTSetProfilePhotoResult` object on success -/// or a `DBACCOUNTSetProfilePhotoError` object on failure. -/// -- (DBRpcTask *)setProfilePhoto: - (DBACCOUNTPhotoSourceArg *)photo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCLaunchEmptyResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCLaunchEmptyResult.h deleted file mode 100644 index 4c7e0176..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCLaunchEmptyResult.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCLaunchEmptyResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LaunchEmptyResult` union. -/// -/// Result returned by methods that may either launch an asynchronous job or -/// complete synchronously. Upon synchronous completion of the job, no -/// additional information is returned. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCLaunchEmptyResult : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCLaunchEmptyResultTag` enum type represents the possible tag -/// states with which the `DBASYNCLaunchEmptyResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCLaunchEmptyResultTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBASYNCLaunchEmptyResultAsyncJobId, - - /// The job finished synchronously and successfully. - DBASYNCLaunchEmptyResultComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCLaunchEmptyResultTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The job finished synchronously and -/// successfully. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCLaunchEmptyResult` union. -/// -@interface DBASYNCLaunchEmptyResultSerializer : NSObject - -/// -/// Serializes `DBASYNCLaunchEmptyResult` instances. -/// -/// @param instance An instance of the `DBASYNCLaunchEmptyResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCLaunchEmptyResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCLaunchEmptyResult *)instance; - -/// -/// Deserializes `DBASYNCLaunchEmptyResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCLaunchEmptyResult` API object. -/// -/// @return An instantiation of the `DBASYNCLaunchEmptyResult` object. -/// -+ (DBASYNCLaunchEmptyResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCLaunchResultBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCLaunchResultBase.h deleted file mode 100644 index 0afb4838..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCLaunchResultBase.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCLaunchResultBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LaunchResultBase` union. -/// -/// Result returned by methods that launch an asynchronous job. A method who may -/// either launch an asynchronous job, or complete the request synchronously, -/// can use this union by extending it, and adding a 'complete' field with the -/// type of the synchronous response. See LaunchEmptyResult for an example. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCLaunchResultBase : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCLaunchResultBaseTag` enum type represents the possible tag -/// states with which the `DBASYNCLaunchResultBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCLaunchResultBaseTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBASYNCLaunchResultBaseAsyncJobId, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCLaunchResultBaseTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCLaunchResultBase` union. -/// -@interface DBASYNCLaunchResultBaseSerializer : NSObject - -/// -/// Serializes `DBASYNCLaunchResultBase` instances. -/// -/// @param instance An instance of the `DBASYNCLaunchResultBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCLaunchResultBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCLaunchResultBase *)instance; - -/// -/// Deserializes `DBASYNCLaunchResultBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCLaunchResultBase` API object. -/// -/// @return An instantiation of the `DBASYNCLaunchResultBase` object. -/// -+ (DBASYNCLaunchResultBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollArg.h deleted file mode 100644 index 0389f2ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollArg` struct. -/// -/// Arguments for methods that poll the status of an asynchronous job. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollArg : NSObject - -#pragma mark - Instance fields - -/// Id of the asynchronous job. This is the value of a response returned from -/// the method that launched the job. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a -/// response returned from the method that launched the job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PollArg` struct. -/// -@interface DBASYNCPollArgSerializer : NSObject - -/// -/// Serializes `DBASYNCPollArg` instances. -/// -/// @param instance An instance of the `DBASYNCPollArg` API object. -/// -/// @return A json-compatible dictionary representation of the `DBASYNCPollArg` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollArg *)instance; - -/// -/// Deserializes `DBASYNCPollArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollArg` API object. -/// -/// @return An instantiation of the `DBASYNCPollArg` object. -/// -+ (DBASYNCPollArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollEmptyResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollEmptyResult.h deleted file mode 100644 index ee9a9395..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollEmptyResult.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollEmptyResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollEmptyResult` union. -/// -/// Result returned by methods that poll for the status of an asynchronous job. -/// Upon completion of the job, no additional information is returned. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollEmptyResult : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCPollEmptyResultTag` enum type represents the possible tag states -/// with which the `DBASYNCPollEmptyResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCPollEmptyResultTag) { - /// The asynchronous job is still in progress. - DBASYNCPollEmptyResultInProgress, - - /// The asynchronous job has completed successfully. - DBASYNCPollEmptyResultComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCPollEmptyResultTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has completed -/// successfully. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCPollEmptyResult` union. -/// -@interface DBASYNCPollEmptyResultSerializer : NSObject - -/// -/// Serializes `DBASYNCPollEmptyResult` instances. -/// -/// @param instance An instance of the `DBASYNCPollEmptyResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCPollEmptyResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollEmptyResult *)instance; - -/// -/// Deserializes `DBASYNCPollEmptyResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollEmptyResult` API object. -/// -/// @return An instantiation of the `DBASYNCPollEmptyResult` object. -/// -+ (DBASYNCPollEmptyResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollError.h deleted file mode 100644 index 17785c66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollError.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollError` union. -/// -/// Error returned by methods for polling the status of asynchronous job. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollError : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCPollErrorTag` enum type represents the possible tag states with -/// which the `DBASYNCPollError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCPollErrorTag) { - /// The job ID is invalid. - DBASYNCPollErrorInvalidAsyncJobId, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBASYNCPollErrorInternalError, - - /// (no description). - DBASYNCPollErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCPollErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_async_job_id". -/// -/// Description of the "invalid_async_job_id" tag state: The job ID is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAsyncJobId; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_async_job_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_async_job_id". -/// -- (BOOL)isInvalidAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCPollError` union. -/// -@interface DBASYNCPollErrorSerializer : NSObject - -/// -/// Serializes `DBASYNCPollError` instances. -/// -/// @param instance An instance of the `DBASYNCPollError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCPollError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollError *)instance; - -/// -/// Deserializes `DBASYNCPollError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollError` API object. -/// -/// @return An instantiation of the `DBASYNCPollError` object. -/// -+ (DBASYNCPollError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollResultBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollResultBase.h deleted file mode 100644 index da8e38b0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBASYNCPollResultBase.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBASYNCPollResultBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PollResultBase` union. -/// -/// Result returned by methods that poll for the status of an asynchronous job. -/// Unions that extend this union should add a 'complete' field with a type of -/// the information returned upon job completion. See PollEmptyResult for an -/// example. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBASYNCPollResultBase : NSObject - -#pragma mark - Instance fields - -/// The `DBASYNCPollResultBaseTag` enum type represents the possible tag states -/// with which the `DBASYNCPollResultBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBASYNCPollResultBaseTag) { - /// The asynchronous job is still in progress. - DBASYNCPollResultBaseInProgress, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBASYNCPollResultBaseTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBASYNCPollResultBase` union. -/// -@interface DBASYNCPollResultBaseSerializer : NSObject - -/// -/// Serializes `DBASYNCPollResultBase` instances. -/// -/// @param instance An instance of the `DBASYNCPollResultBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBASYNCPollResultBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBASYNCPollResultBase *)instance; - -/// -/// Deserializes `DBASYNCPollResultBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBASYNCPollResultBase` API object. -/// -/// @return An instantiation of the `DBASYNCPollResultBase` object. -/// -+ (DBASYNCPollResultBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAccessError.h deleted file mode 100644 index 93e41707..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAccessError.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHAccessError; -@class DBAUTHInvalidAccountTypeError; -@class DBAUTHPaperAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessError` union. -/// -/// Error occurred because the account doesn't have permission to access the -/// resource. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHAccessErrorTag` enum type represents the possible tag states with -/// which the `DBAUTHAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHAccessErrorTag) { - /// Current account type cannot access the resource. - DBAUTHAccessErrorInvalidAccountType, - - /// Current account cannot access Paper. - DBAUTHAccessErrorPaperAccessDenied, - - /// (no description). - DBAUTHAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHAccessErrorTag tag; - -/// Current account type cannot access the resource. @note Ensure the -/// `isInvalidAccountType` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBAUTHInvalidAccountTypeError *invalidAccountType; - -/// Current account cannot access Paper. @note Ensure the `isPaperAccessDenied` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBAUTHPaperAccessError *paperAccessDenied; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_account_type". -/// -/// Description of the "invalid_account_type" tag state: Current account type -/// cannot access the resource. -/// -/// @param invalidAccountType Current account type cannot access the resource. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAccountType:(DBAUTHInvalidAccountTypeError *)invalidAccountType; - -/// -/// Initializes union class with tag state of "paper_access_denied". -/// -/// Description of the "paper_access_denied" tag state: Current account cannot -/// access Paper. -/// -/// @param paperAccessDenied Current account cannot access Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAccessDenied:(DBAUTHPaperAccessError *)paperAccessDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_account_type". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidAccountType` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invalid_account_type". -/// -- (BOOL)isInvalidAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_access_denied". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAccessDenied` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_access_denied". -/// -- (BOOL)isPaperAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHAccessError` union. -/// -@interface DBAUTHAccessErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHAccessError` instances. -/// -/// @param instance An instance of the `DBAUTHAccessError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHAccessError *)instance; - -/// -/// Deserializes `DBAUTHAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHAccessError` API object. -/// -/// @return An instantiation of the `DBAUTHAccessError` object. -/// -+ (DBAUTHAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAppAuthRoutes.h deleted file mode 100644 index 0e5e1fcc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAppAuthRoutes.h +++ /dev/null @@ -1,49 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBAUTHTokenFromOAuth1Error; -@class DBAUTHTokenFromOAuth1Result; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Auth` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBAUTHAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBAUTHAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// DEPRECATED: Creates an OAuth 2.0 access token from the supplied OAuth 1.0 access token. -/// -/// @param oauth1Token The supplied OAuth 1.0 access token. -/// @param oauth1TokenSecret The token secret associated with the supplied access token. -/// -/// @return Through the response callback, the caller will receive a `DBAUTHTokenFromOAuth1Result` object on success or -/// a `DBAUTHTokenFromOAuth1Error` object on failure. -/// -- (DBRpcTask *)tokenFromOauth1:(NSString *)oauth1Token - oauth1TokenSecret: - (NSString *)oauth1TokenSecret - __deprecated_msg("tokenFromOauth1 is deprecated."); - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAuthError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAuthError.h deleted file mode 100644 index f7918f82..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHAuthError.h +++ /dev/null @@ -1,262 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHAuthError; -@class DBAUTHTokenScopeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AuthError` union. -/// -/// Errors occurred during authentication. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHAuthError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHAuthErrorTag` enum type represents the possible tag states with -/// which the `DBAUTHAuthError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHAuthErrorTag) { - /// The access token is invalid. - DBAUTHAuthErrorInvalidAccessToken, - - /// The user specified in 'Dropbox-API-Select-User' is no longer on the - /// team. - DBAUTHAuthErrorInvalidSelectUser, - - /// The user specified in 'Dropbox-API-Select-Admin' is not a Dropbox - /// Business team admin. - DBAUTHAuthErrorInvalidSelectAdmin, - - /// The user has been suspended. - DBAUTHAuthErrorUserSuspended, - - /// The access token has expired. - DBAUTHAuthErrorExpiredAccessToken, - - /// The access token does not have the required scope to access the route. - DBAUTHAuthErrorMissingScope, - - /// The route is not available to public. - DBAUTHAuthErrorRouteAccessDenied, - - /// (no description). - DBAUTHAuthErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHAuthErrorTag tag; - -/// The access token does not have the required scope to access the route. @note -/// Ensure the `isMissingScope` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBAUTHTokenScopeError *missingScope; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_access_token". -/// -/// Description of the "invalid_access_token" tag state: The access token is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAccessToken; - -/// -/// Initializes union class with tag state of "invalid_select_user". -/// -/// Description of the "invalid_select_user" tag state: The user specified in -/// 'Dropbox-API-Select-User' is no longer on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSelectUser; - -/// -/// Initializes union class with tag state of "invalid_select_admin". -/// -/// Description of the "invalid_select_admin" tag state: The user specified in -/// 'Dropbox-API-Select-Admin' is not a Dropbox Business team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSelectAdmin; - -/// -/// Initializes union class with tag state of "user_suspended". -/// -/// Description of the "user_suspended" tag state: The user has been suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserSuspended; - -/// -/// Initializes union class with tag state of "expired_access_token". -/// -/// Description of the "expired_access_token" tag state: The access token has -/// expired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExpiredAccessToken; - -/// -/// Initializes union class with tag state of "missing_scope". -/// -/// Description of the "missing_scope" tag state: The access token does not have -/// the required scope to access the route. -/// -/// @param missingScope The access token does not have the required scope to -/// access the route. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMissingScope:(DBAUTHTokenScopeError *)missingScope; - -/// -/// Initializes union class with tag state of "route_access_denied". -/// -/// Description of the "route_access_denied" tag state: The route is not -/// available to public. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRouteAccessDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_access_token". -/// -/// @return Whether the union's current tag state has value -/// "invalid_access_token". -/// -- (BOOL)isInvalidAccessToken; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_select_user". -/// -/// @return Whether the union's current tag state has value -/// "invalid_select_user". -/// -- (BOOL)isInvalidSelectUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_select_admin". -/// -/// @return Whether the union's current tag state has value -/// "invalid_select_admin". -/// -- (BOOL)isInvalidSelectAdmin; - -/// -/// Retrieves whether the union's current tag state has value "user_suspended". -/// -/// @return Whether the union's current tag state has value "user_suspended". -/// -- (BOOL)isUserSuspended; - -/// -/// Retrieves whether the union's current tag state has value -/// "expired_access_token". -/// -/// @return Whether the union's current tag state has value -/// "expired_access_token". -/// -- (BOOL)isExpiredAccessToken; - -/// -/// Retrieves whether the union's current tag state has value "missing_scope". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `missingScope` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "missing_scope". -/// -- (BOOL)isMissingScope; - -/// -/// Retrieves whether the union's current tag state has value -/// "route_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "route_access_denied". -/// -- (BOOL)isRouteAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHAuthError` union. -/// -@interface DBAUTHAuthErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHAuthError` instances. -/// -/// @param instance An instance of the `DBAUTHAuthError` API object. -/// -/// @return A json-compatible dictionary representation of the `DBAUTHAuthError` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHAuthError *)instance; - -/// -/// Deserializes `DBAUTHAuthError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHAuthError` API object. -/// -/// @return An instantiation of the `DBAUTHAuthError` object. -/// -+ (DBAUTHAuthError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHInvalidAccountTypeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHInvalidAccountTypeError.h deleted file mode 100644 index 052a843d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHInvalidAccountTypeError.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHInvalidAccountTypeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InvalidAccountTypeError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHInvalidAccountTypeError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHInvalidAccountTypeErrorTag` enum type represents the possible tag -/// states with which the `DBAUTHInvalidAccountTypeError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHInvalidAccountTypeErrorTag) { - /// Current account type doesn't have permission to access this route - /// endpoint. - DBAUTHInvalidAccountTypeErrorEndpoint, - - /// Current account type doesn't have permission to access this feature. - DBAUTHInvalidAccountTypeErrorFeature, - - /// (no description). - DBAUTHInvalidAccountTypeErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHInvalidAccountTypeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "endpoint". -/// -/// Description of the "endpoint" tag state: Current account type doesn't have -/// permission to access this route endpoint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndpoint; - -/// -/// Initializes union class with tag state of "feature". -/// -/// Description of the "feature" tag state: Current account type doesn't have -/// permission to access this feature. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFeature; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "endpoint". -/// -/// @return Whether the union's current tag state has value "endpoint". -/// -- (BOOL)isEndpoint; - -/// -/// Retrieves whether the union's current tag state has value "feature". -/// -/// @return Whether the union's current tag state has value "feature". -/// -- (BOOL)isFeature; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHInvalidAccountTypeError` union. -/// -@interface DBAUTHInvalidAccountTypeErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHInvalidAccountTypeError` instances. -/// -/// @param instance An instance of the `DBAUTHInvalidAccountTypeError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHInvalidAccountTypeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHInvalidAccountTypeError *)instance; - -/// -/// Deserializes `DBAUTHInvalidAccountTypeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHInvalidAccountTypeError` API object. -/// -/// @return An instantiation of the `DBAUTHInvalidAccountTypeError` object. -/// -+ (DBAUTHInvalidAccountTypeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHPaperAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHPaperAccessError.h deleted file mode 100644 index 4f39162d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHPaperAccessError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHPaperAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAccessError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHPaperAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHPaperAccessErrorTag` enum type represents the possible tag states -/// with which the `DBAUTHPaperAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHPaperAccessErrorTag) { - /// Paper is disabled. - DBAUTHPaperAccessErrorPaperDisabled, - - /// The provided user has not used Paper yet. - DBAUTHPaperAccessErrorNotPaperUser, - - /// (no description). - DBAUTHPaperAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHPaperAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "paper_disabled". -/// -/// Description of the "paper_disabled" tag state: Paper is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDisabled; - -/// -/// Initializes union class with tag state of "not_paper_user". -/// -/// Description of the "not_paper_user" tag state: The provided user has not -/// used Paper yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotPaperUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "paper_disabled". -/// -/// @return Whether the union's current tag state has value "paper_disabled". -/// -- (BOOL)isPaperDisabled; - -/// -/// Retrieves whether the union's current tag state has value "not_paper_user". -/// -/// @return Whether the union's current tag state has value "not_paper_user". -/// -- (BOOL)isNotPaperUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHPaperAccessError` union. -/// -@interface DBAUTHPaperAccessErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHPaperAccessError` instances. -/// -/// @param instance An instance of the `DBAUTHPaperAccessError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHPaperAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHPaperAccessError *)instance; - -/// -/// Deserializes `DBAUTHPaperAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHPaperAccessError` API object. -/// -/// @return An instantiation of the `DBAUTHPaperAccessError` object. -/// -+ (DBAUTHPaperAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRateLimitError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRateLimitError.h deleted file mode 100644 index 191f36dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRateLimitError.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHRateLimitError; -@class DBAUTHRateLimitReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RateLimitError` struct. -/// -/// Error occurred because the app is being rate limited. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHRateLimitError : NSObject - -#pragma mark - Instance fields - -/// The reason why the app is being rate limited. -@property (nonatomic, readonly) DBAUTHRateLimitReason *reason; - -/// The number of seconds that the app should wait before making another -/// request. -@property (nonatomic, readonly) NSNumber *retryAfter; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param reason The reason why the app is being rate limited. -/// @param retryAfter The number of seconds that the app should wait before -/// making another request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReason:(DBAUTHRateLimitReason *)reason retryAfter:(nullable NSNumber *)retryAfter; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param reason The reason why the app is being rate limited. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReason:(DBAUTHRateLimitReason *)reason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RateLimitError` struct. -/// -@interface DBAUTHRateLimitErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHRateLimitError` instances. -/// -/// @param instance An instance of the `DBAUTHRateLimitError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHRateLimitError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHRateLimitError *)instance; - -/// -/// Deserializes `DBAUTHRateLimitError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHRateLimitError` API object. -/// -/// @return An instantiation of the `DBAUTHRateLimitError` object. -/// -+ (DBAUTHRateLimitError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRateLimitReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRateLimitReason.h deleted file mode 100644 index 45fbb1fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRateLimitReason.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHRateLimitReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RateLimitReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHRateLimitReason : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHRateLimitReasonTag` enum type represents the possible tag states -/// with which the `DBAUTHRateLimitReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHRateLimitReasonTag) { - /// You are making too many requests in the past few minutes. - DBAUTHRateLimitReasonTooManyRequests, - - /// There are currently too many write operations happening in the user's - /// Dropbox. - DBAUTHRateLimitReasonTooManyWriteOperations, - - /// (no description). - DBAUTHRateLimitReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHRateLimitReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_requests". -/// -/// Description of the "too_many_requests" tag state: You are making too many -/// requests in the past few minutes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyRequests; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are -/// currently too many write operations happening in the user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_requests". -/// -/// @return Whether the union's current tag state has value "too_many_requests". -/// -- (BOOL)isTooManyRequests; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHRateLimitReason` union. -/// -@interface DBAUTHRateLimitReasonSerializer : NSObject - -/// -/// Serializes `DBAUTHRateLimitReason` instances. -/// -/// @param instance An instance of the `DBAUTHRateLimitReason` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHRateLimitReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHRateLimitReason *)instance; - -/// -/// Deserializes `DBAUTHRateLimitReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHRateLimitReason` API object. -/// -/// @return An instantiation of the `DBAUTHRateLimitReason` object. -/// -+ (DBAUTHRateLimitReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRouteObjects.h deleted file mode 100644 index 4ea03fd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHRouteObjects.h +++ /dev/null @@ -1,27 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Auth namespace. Each route in the Auth namespace -/// has its own static object, which contains information about the route. -/// -@interface DBAUTHRouteObjects : NSObject - -/// Accessor method for the tokenFromOauth1 route object. -+ (DBRoute *)DBAUTHTokenFromOauth1; - -/// Accessor method for the tokenRevoke route object. -+ (DBRoute *)DBAUTHTokenRevoke; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Arg.h deleted file mode 100644 index b5793d9b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Arg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenFromOAuth1Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenFromOAuth1Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenFromOAuth1Arg : NSObject - -#pragma mark - Instance fields - -/// The supplied OAuth 1.0 access token. -@property (nonatomic, readonly, copy) NSString *oauth1Token; - -/// The token secret associated with the supplied access token. -@property (nonatomic, readonly, copy) NSString *oauth1TokenSecret; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param oauth1Token The supplied OAuth 1.0 access token. -/// @param oauth1TokenSecret The token secret associated with the supplied -/// access token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOauth1Token:(NSString *)oauth1Token oauth1TokenSecret:(NSString *)oauth1TokenSecret; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenFromOAuth1Arg` struct. -/// -@interface DBAUTHTokenFromOAuth1ArgSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenFromOAuth1Arg` instances. -/// -/// @param instance An instance of the `DBAUTHTokenFromOAuth1Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenFromOAuth1Arg *)instance; - -/// -/// Deserializes `DBAUTHTokenFromOAuth1Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Arg` API object. -/// -/// @return An instantiation of the `DBAUTHTokenFromOAuth1Arg` object. -/// -+ (DBAUTHTokenFromOAuth1Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Error.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Error.h deleted file mode 100644 index ec3b6b9c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Error.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenFromOAuth1Error; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenFromOAuth1Error` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenFromOAuth1Error : NSObject - -#pragma mark - Instance fields - -/// The `DBAUTHTokenFromOAuth1ErrorTag` enum type represents the possible tag -/// states with which the `DBAUTHTokenFromOAuth1Error` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBAUTHTokenFromOAuth1ErrorTag) { - /// Part or all of the OAuth 1.0 access token info is invalid. - DBAUTHTokenFromOAuth1ErrorInvalidOauth1TokenInfo, - - /// The authorized app does not match the app associated with the supplied - /// access token. - DBAUTHTokenFromOAuth1ErrorAppIdMismatch, - - /// (no description). - DBAUTHTokenFromOAuth1ErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBAUTHTokenFromOAuth1ErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_oauth1_token_info". -/// -/// Description of the "invalid_oauth1_token_info" tag state: Part or all of the -/// OAuth 1.0 access token info is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidOauth1TokenInfo; - -/// -/// Initializes union class with tag state of "app_id_mismatch". -/// -/// Description of the "app_id_mismatch" tag state: The authorized app does not -/// match the app associated with the supplied access token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppIdMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_oauth1_token_info". -/// -/// @return Whether the union's current tag state has value -/// "invalid_oauth1_token_info". -/// -- (BOOL)isInvalidOauth1TokenInfo; - -/// -/// Retrieves whether the union's current tag state has value "app_id_mismatch". -/// -/// @return Whether the union's current tag state has value "app_id_mismatch". -/// -- (BOOL)isAppIdMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBAUTHTokenFromOAuth1Error` union. -/// -@interface DBAUTHTokenFromOAuth1ErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenFromOAuth1Error` instances. -/// -/// @param instance An instance of the `DBAUTHTokenFromOAuth1Error` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Error` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenFromOAuth1Error *)instance; - -/// -/// Deserializes `DBAUTHTokenFromOAuth1Error` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Error` API object. -/// -/// @return An instantiation of the `DBAUTHTokenFromOAuth1Error` object. -/// -+ (DBAUTHTokenFromOAuth1Error *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Result.h deleted file mode 100644 index 441402a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenFromOAuth1Result.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenFromOAuth1Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenFromOAuth1Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenFromOAuth1Result : NSObject - -#pragma mark - Instance fields - -/// The OAuth 2.0 token generated from the supplied OAuth 1.0 token. -@property (nonatomic, readonly, copy) NSString *oauth2Token; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param oauth2Token The OAuth 2.0 token generated from the supplied OAuth 1.0 -/// token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOauth2Token:(NSString *)oauth2Token; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenFromOAuth1Result` struct. -/// -@interface DBAUTHTokenFromOAuth1ResultSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenFromOAuth1Result` instances. -/// -/// @param instance An instance of the `DBAUTHTokenFromOAuth1Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenFromOAuth1Result *)instance; - -/// -/// Deserializes `DBAUTHTokenFromOAuth1Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenFromOAuth1Result` API object. -/// -/// @return An instantiation of the `DBAUTHTokenFromOAuth1Result` object. -/// -+ (DBAUTHTokenFromOAuth1Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenScopeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenScopeError.h deleted file mode 100644 index d4b3ec3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHTokenScopeError.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBAUTHTokenScopeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenScopeError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBAUTHTokenScopeError : NSObject - -#pragma mark - Instance fields - -/// The required scope to access the route. -@property (nonatomic, readonly, copy) NSString *requiredScope; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requiredScope The required scope to access the route. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequiredScope:(NSString *)requiredScope; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenScopeError` struct. -/// -@interface DBAUTHTokenScopeErrorSerializer : NSObject - -/// -/// Serializes `DBAUTHTokenScopeError` instances. -/// -/// @param instance An instance of the `DBAUTHTokenScopeError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBAUTHTokenScopeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBAUTHTokenScopeError *)instance; - -/// -/// Deserializes `DBAUTHTokenScopeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBAUTHTokenScopeError` API object. -/// -/// @return An instantiation of the `DBAUTHTokenScopeError` object. -/// -+ (DBAUTHTokenScopeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHUserAuthRoutes.h deleted file mode 100644 index dcf7e4a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAUTHUserAuthRoutes.h +++ /dev/null @@ -1,45 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBAUTHTokenFromOAuth1Error; -@class DBAUTHTokenFromOAuth1Result; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Auth` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBAUTHUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBAUTHUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Disables the access token used to authenticate the call. If there is a corresponding refresh token for the access -/// token, this disables that refresh token, as well as any other access tokens for that refresh token. -/// -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `void` object on -/// failure. -/// -- (DBRpcTask *)tokenRevoke; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAppBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAppBaseClient.h deleted file mode 100644 index fe514c52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAppBaseClient.h +++ /dev/null @@ -1,47 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import "DBAUTHAppAuthRoutes.h" -#import "DBCHECKAppAuthRoutes.h" -#import "DBFILESAppAuthRoutes.h" -#import "DBRequestErrors.h" -#import "DBSHARINGAppAuthRoutes.h" -#import "DBTasks.h" -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient; - -/// -/// Base client object that contains an instance field for each namespace, each -/// of which contains references to all routes within that namespace. -/// Fully-implemented API clients will inherit this class. -/// -@interface DBAppBaseClient : NSObject { - -@protected - id _transportClient; -} - -/// Routes within the `auth` namespace. -@property (nonatomic, readonly) DBAUTHAppAuthRoutes *authRoutes; - -/// Routes within the `check` namespace. -@property (nonatomic, readonly) DBCHECKAppAuthRoutes *checkRoutes; - -/// Routes within the `files` namespace. -@property (nonatomic, readonly) DBFILESAppAuthRoutes *filesRoutes; - -/// Routes within the `sharing` namespace. -@property (nonatomic, readonly) DBSHARINGAppAuthRoutes *sharingRoutes; - -/// Initializes the `DBAppBaseClient` object with a networking client. -- (instancetype)initWithTransportClient:(id)client; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAppClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAppClient.h deleted file mode 100644 index 53abaa4a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBAppClient.h +++ /dev/null @@ -1,48 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBAppBaseClient.h" - -@class DBTransportDefaultConfig; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox API Client for all endpoints with auth type "app". -/// -/// This is the SDK user's primary interface with the Dropbox API. Routes can be accessed via each "namespace" object in -/// the instance fields of its parent, `DBAppBaseClient`. To see a full list of the API endpoints available, -/// please visit: https://www.dropbox.com/developers/documentation/http/documentation. -/// -@interface DBAppClient : DBAppBaseClient - -/// -/// Convenience constructor. -/// -/// Uses standard network configuration parameters. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey appSecret:(NSString *)appSecret; - -/// -/// Full constructor. -/// -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKAppAuthRoutes.h deleted file mode 100644 index cce1e507..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKAppAuthRoutes.h +++ /dev/null @@ -1,59 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCHECKEchoResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Check` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBCHECKAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBCHECKAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied -/// string, to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an -/// HTTP 200 response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working -/// and that the app key and secret valid. -/// -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)app; - -/// -/// This endpoint performs App Authentication, validating the supplied app key and secret, and returns the supplied -/// string, to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an -/// HTTP 200 response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working -/// and that the app key and secret valid. -/// -/// @param query The string that you'd like to be echoed back to you. -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)app:(nullable NSString *)query; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKEchoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKEchoArg.h deleted file mode 100644 index 63c49268..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKEchoArg.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCHECKEchoArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EchoArg` struct. -/// -/// Contains the arguments to be sent to the Dropbox servers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCHECKEchoArg : NSObject - -#pragma mark - Instance fields - -/// The string that you'd like to be echoed back to you. -@property (nonatomic, readonly, copy) NSString *query; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param query The string that you'd like to be echoed back to you. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(nullable NSString *)query; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EchoArg` struct. -/// -@interface DBCHECKEchoArgSerializer : NSObject - -/// -/// Serializes `DBCHECKEchoArg` instances. -/// -/// @param instance An instance of the `DBCHECKEchoArg` API object. -/// -/// @return A json-compatible dictionary representation of the `DBCHECKEchoArg` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBCHECKEchoArg *)instance; - -/// -/// Deserializes `DBCHECKEchoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCHECKEchoArg` API object. -/// -/// @return An instantiation of the `DBCHECKEchoArg` object. -/// -+ (DBCHECKEchoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKEchoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKEchoResult.h deleted file mode 100644 index e383d077..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKEchoResult.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCHECKEchoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EchoResult` struct. -/// -/// EchoResult contains the result returned from the Dropbox servers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCHECKEchoResult : NSObject - -#pragma mark - Instance fields - -/// If everything worked correctly, this would be the same as query. -@property (nonatomic, readonly, copy) NSString *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param result If everything worked correctly, this would be the same as -/// query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResult:(nullable NSString *)result; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EchoResult` struct. -/// -@interface DBCHECKEchoResultSerializer : NSObject - -/// -/// Serializes `DBCHECKEchoResult` instances. -/// -/// @param instance An instance of the `DBCHECKEchoResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCHECKEchoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCHECKEchoResult *)instance; - -/// -/// Deserializes `DBCHECKEchoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCHECKEchoResult` API object. -/// -/// @return An instantiation of the `DBCHECKEchoResult` object. -/// -+ (DBCHECKEchoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKRouteObjects.h deleted file mode 100644 index 4dc3ce96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKRouteObjects.h +++ /dev/null @@ -1,28 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Check namespace. Each route in the Check -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBCHECKRouteObjects : NSObject - -/// Accessor method for the app route object. -+ (DBRoute *)DBCHECKApp; - -/// Accessor method for the user route object. -+ (DBRoute *)DBCHECKUser; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKUserAuthRoutes.h deleted file mode 100644 index 373c4129..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCHECKUserAuthRoutes.h +++ /dev/null @@ -1,59 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCHECKEchoResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Check` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBCHECKUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBCHECKUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// This endpoint performs User Authentication, validating the supplied access token, and returns the supplied string, -/// to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an HTTP 200 -/// response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working and that -/// the access token is valid. -/// -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)user; - -/// -/// This endpoint performs User Authentication, validating the supplied access token, and returns the supplied string, -/// to allow you to test your code and connection to the Dropbox API. It has no other effect. If you receive an HTTP 200 -/// response with the supplied query, it indicates at least part of the Dropbox API infrastructure is working and that -/// the access token is valid. -/// -/// @param query The string that you'd like to be echoed back to you. -/// -/// @return Through the response callback, the caller will receive a `DBCHECKEchoResult` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)user:(nullable NSString *)query; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONPathRoot.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONPathRoot.h deleted file mode 100644 index b0526798..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONPathRoot.h +++ /dev/null @@ -1,190 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCOMMONPathRoot; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathRoot` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONPathRoot : NSObject - -#pragma mark - Instance fields - -/// The `DBCOMMONPathRootTag` enum type represents the possible tag states with -/// which the `DBCOMMONPathRoot` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBCOMMONPathRootTag) { - /// Paths are relative to the authenticating user's home namespace, whether - /// or not that user belongs to a team. - DBCOMMONPathRootHome, - - /// Paths are relative to the authenticating user's root namespace (This - /// results in `invalidRoot` in `DBCOMMONPathRootError` if the user's root - /// namespace has changed.). - DBCOMMONPathRootRoot, - - /// Paths are relative to given namespace id (This results in `noPermission` - /// in `DBCOMMONPathRootError` if you don't have access to this namespace.). - DBCOMMONPathRootNamespaceId, - - /// (no description). - DBCOMMONPathRootOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBCOMMONPathRootTag tag; - -/// Paths are relative to the authenticating user's root namespace (This results -/// in `invalidRoot` in `DBCOMMONPathRootError` if the user's root namespace has -/// changed.). @note Ensure the `isRoot` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *root; - -/// Paths are relative to given namespace id (This results in `noPermission` in -/// `DBCOMMONPathRootError` if you don't have access to this namespace.). @note -/// Ensure the `isNamespaceId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *namespaceId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "home". -/// -/// Description of the "home" tag state: Paths are relative to the -/// authenticating user's home namespace, whether or not that user belongs to a -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHome; - -/// -/// Initializes union class with tag state of "root". -/// -/// Description of the "root" tag state: Paths are relative to the -/// authenticating user's root namespace (This results in `invalidRoot` in -/// `DBCOMMONPathRootError` if the user's root namespace has changed.). -/// -/// @param root Paths are relative to the authenticating user's root namespace -/// (This results in `invalidRoot` in `DBCOMMONPathRootError` if the user's root -/// namespace has changed.). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoot:(NSString *)root; - -/// -/// Initializes union class with tag state of "namespace_id". -/// -/// Description of the "namespace_id" tag state: Paths are relative to given -/// namespace id (This results in `noPermission` in `DBCOMMONPathRootError` if -/// you don't have access to this namespace.). -/// -/// @param namespaceId Paths are relative to given namespace id (This results in -/// `noPermission` in `DBCOMMONPathRootError` if you don't have access to this -/// namespace.). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaceId:(NSString *)namespaceId; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "home". -/// -/// @return Whether the union's current tag state has value "home". -/// -- (BOOL)isHome; - -/// -/// Retrieves whether the union's current tag state has value "root". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `root` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "root". -/// -- (BOOL)isRoot; - -/// -/// Retrieves whether the union's current tag state has value "namespace_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `namespaceId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "namespace_id". -/// -- (BOOL)isNamespaceId; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBCOMMONPathRoot` union. -/// -@interface DBCOMMONPathRootSerializer : NSObject - -/// -/// Serializes `DBCOMMONPathRoot` instances. -/// -/// @param instance An instance of the `DBCOMMONPathRoot` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONPathRoot` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONPathRoot *)instance; - -/// -/// Deserializes `DBCOMMONPathRoot` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONPathRoot` API object. -/// -/// @return An instantiation of the `DBCOMMONPathRoot` object. -/// -+ (DBCOMMONPathRoot *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONPathRootError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONPathRootError.h deleted file mode 100644 index 68d2272d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONPathRootError.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCOMMONPathRootError; -@class DBCOMMONRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathRootError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONPathRootError : NSObject - -#pragma mark - Instance fields - -/// The `DBCOMMONPathRootErrorTag` enum type represents the possible tag states -/// with which the `DBCOMMONPathRootError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBCOMMONPathRootErrorTag) { - /// The root namespace id in Dropbox-API-Path-Root header is not valid. The - /// value of this error is the user's latest root info. - DBCOMMONPathRootErrorInvalidRoot, - - /// You don't have permission to access the namespace id in - /// Dropbox-API-Path-Root header. - DBCOMMONPathRootErrorNoPermission, - - /// (no description). - DBCOMMONPathRootErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBCOMMONPathRootErrorTag tag; - -/// The root namespace id in Dropbox-API-Path-Root header is not valid. The -/// value of this error is the user's latest root info. @note Ensure the -/// `isInvalidRoot` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBCOMMONRootInfo *invalidRoot; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_root". -/// -/// Description of the "invalid_root" tag state: The root namespace id in -/// Dropbox-API-Path-Root header is not valid. The value of this error is the -/// user's latest root info. -/// -/// @param invalidRoot The root namespace id in Dropbox-API-Path-Root header is -/// not valid. The value of this error is the user's latest root info. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidRoot:(DBCOMMONRootInfo *)invalidRoot; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: You don't have permission to -/// access the namespace id in Dropbox-API-Path-Root header. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_root". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidRoot` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_root". -/// -- (BOOL)isInvalidRoot; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBCOMMONPathRootError` union. -/// -@interface DBCOMMONPathRootErrorSerializer : NSObject - -/// -/// Serializes `DBCOMMONPathRootError` instances. -/// -/// @param instance An instance of the `DBCOMMONPathRootError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONPathRootError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONPathRootError *)instance; - -/// -/// Deserializes `DBCOMMONPathRootError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONPathRootError` API object. -/// -/// @return An instantiation of the `DBCOMMONPathRootError` object. -/// -+ (DBCOMMONPathRootError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONRootInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONRootInfo.h deleted file mode 100644 index 964d101f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONRootInfo.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCOMMONRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RootInfo` struct. -/// -/// Information about current user's root. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONRootInfo : NSObject - -#pragma mark - Instance fields - -/// The namespace ID for user's root namespace. It will be the namespace ID of -/// the shared team root if the user is member of a team with a separate team -/// root. Otherwise it will be same as `homeNamespaceId` in `DBCOMMONRootInfo`. -@property (nonatomic, readonly, copy) NSString *rootNamespaceId; - -/// The namespace ID for user's home namespace. -@property (nonatomic, readonly, copy) NSString *homeNamespaceId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rootNamespaceId The namespace ID for user's root namespace. It will -/// be the namespace ID of the shared team root if the user is member of a team -/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in -/// `DBCOMMONRootInfo`. -/// @param homeNamespaceId The namespace ID for user's home namespace. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRootNamespaceId:(NSString *)rootNamespaceId homeNamespaceId:(NSString *)homeNamespaceId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RootInfo` struct. -/// -@interface DBCOMMONRootInfoSerializer : NSObject - -/// -/// Serializes `DBCOMMONRootInfo` instances. -/// -/// @param instance An instance of the `DBCOMMONRootInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONRootInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONRootInfo *)instance; - -/// -/// Deserializes `DBCOMMONRootInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONRootInfo` API object. -/// -/// @return An instantiation of the `DBCOMMONRootInfo` object. -/// -+ (DBCOMMONRootInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONTeamRootInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONTeamRootInfo.h deleted file mode 100644 index 888a8561..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONTeamRootInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBCOMMONRootInfo.h" -#import "DBSerializableProtocol.h" - -@class DBCOMMONTeamRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamRootInfo` struct. -/// -/// Root info when user is member of a team with a separate root namespace ID. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONTeamRootInfo : DBCOMMONRootInfo - -#pragma mark - Instance fields - -/// The path for user's home directory under the shared team root. -@property (nonatomic, readonly, copy) NSString *homePath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rootNamespaceId The namespace ID for user's root namespace. It will -/// be the namespace ID of the shared team root if the user is member of a team -/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in -/// `DBCOMMONRootInfo`. -/// @param homeNamespaceId The namespace ID for user's home namespace. -/// @param homePath The path for user's home directory under the shared team -/// root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRootNamespaceId:(NSString *)rootNamespaceId - homeNamespaceId:(NSString *)homeNamespaceId - homePath:(NSString *)homePath; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamRootInfo` struct. -/// -@interface DBCOMMONTeamRootInfoSerializer : NSObject - -/// -/// Serializes `DBCOMMONTeamRootInfo` instances. -/// -/// @param instance An instance of the `DBCOMMONTeamRootInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONTeamRootInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONTeamRootInfo *)instance; - -/// -/// Deserializes `DBCOMMONTeamRootInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONTeamRootInfo` API object. -/// -/// @return An instantiation of the `DBCOMMONTeamRootInfo` object. -/// -+ (DBCOMMONTeamRootInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONUserRootInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONUserRootInfo.h deleted file mode 100644 index 78a69d2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCOMMONUserRootInfo.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBCOMMONRootInfo.h" -#import "DBSerializableProtocol.h" - -@class DBCOMMONUserRootInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserRootInfo` struct. -/// -/// Root info when user is not member of a team or the user is a member of a -/// team and the team does not have a separate root namespace. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCOMMONUserRootInfo : DBCOMMONRootInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rootNamespaceId The namespace ID for user's root namespace. It will -/// be the namespace ID of the shared team root if the user is member of a team -/// with a separate team root. Otherwise it will be same as `homeNamespaceId` in -/// `DBCOMMONRootInfo`. -/// @param homeNamespaceId The namespace ID for user's home namespace. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRootNamespaceId:(NSString *)rootNamespaceId homeNamespaceId:(NSString *)homeNamespaceId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserRootInfo` struct. -/// -@interface DBCOMMONUserRootInfoSerializer : NSObject - -/// -/// Serializes `DBCOMMONUserRootInfo` instances. -/// -/// @param instance An instance of the `DBCOMMONUserRootInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCOMMONUserRootInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCOMMONUserRootInfo *)instance; - -/// -/// Deserializes `DBCOMMONUserRootInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCOMMONUserRootInfo` API object. -/// -/// @return An instantiation of the `DBCOMMONUserRootInfo` object. -/// -+ (DBCOMMONUserRootInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSDeleteManualContactsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSDeleteManualContactsArg.h deleted file mode 100644 index 5ea7840d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSDeleteManualContactsArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCONTACTSDeleteManualContactsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteManualContactsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCONTACTSDeleteManualContactsArg : NSObject - -#pragma mark - Instance fields - -/// List of manually added contacts to be deleted. -@property (nonatomic, readonly) NSArray *emailAddresses; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param emailAddresses List of manually added contacts to be deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailAddresses:(NSArray *)emailAddresses; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteManualContactsArg` struct. -/// -@interface DBCONTACTSDeleteManualContactsArgSerializer : NSObject - -/// -/// Serializes `DBCONTACTSDeleteManualContactsArg` instances. -/// -/// @param instance An instance of the `DBCONTACTSDeleteManualContactsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCONTACTSDeleteManualContactsArg *)instance; - -/// -/// Deserializes `DBCONTACTSDeleteManualContactsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsArg` API object. -/// -/// @return An instantiation of the `DBCONTACTSDeleteManualContactsArg` object. -/// -+ (DBCONTACTSDeleteManualContactsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSDeleteManualContactsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSDeleteManualContactsError.h deleted file mode 100644 index 35753da4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSDeleteManualContactsError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBCONTACTSDeleteManualContactsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteManualContactsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBCONTACTSDeleteManualContactsError : NSObject - -#pragma mark - Instance fields - -/// The `DBCONTACTSDeleteManualContactsErrorTag` enum type represents the -/// possible tag states with which the `DBCONTACTSDeleteManualContactsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBCONTACTSDeleteManualContactsErrorTag) { - /// Can't delete contacts from this list. Make sure the list only has - /// manually added contacts. The deletion was cancelled. - DBCONTACTSDeleteManualContactsErrorContactsNotFound, - - /// (no description). - DBCONTACTSDeleteManualContactsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBCONTACTSDeleteManualContactsErrorTag tag; - -/// Can't delete contacts from this list. Make sure the list only has manually -/// added contacts. The deletion was cancelled. @note Ensure the -/// `isContactsNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSArray *contactsNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "contacts_not_found". -/// -/// Description of the "contacts_not_found" tag state: Can't delete contacts -/// from this list. Make sure the list only has manually added contacts. The -/// deletion was cancelled. -/// -/// @param contactsNotFound Can't delete contacts from this list. Make sure the -/// list only has manually added contacts. The deletion was cancelled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContactsNotFound:(NSArray *)contactsNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "contacts_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contactsNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "contacts_not_found". -/// -- (BOOL)isContactsNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBCONTACTSDeleteManualContactsError` union. -/// -@interface DBCONTACTSDeleteManualContactsErrorSerializer : NSObject - -/// -/// Serializes `DBCONTACTSDeleteManualContactsError` instances. -/// -/// @param instance An instance of the `DBCONTACTSDeleteManualContactsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBCONTACTSDeleteManualContactsError *)instance; - -/// -/// Deserializes `DBCONTACTSDeleteManualContactsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBCONTACTSDeleteManualContactsError` API object. -/// -/// @return An instantiation of the `DBCONTACTSDeleteManualContactsError` -/// object. -/// -+ (DBCONTACTSDeleteManualContactsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSRouteObjects.h deleted file mode 100644 index b5e01f35..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSRouteObjects.h +++ /dev/null @@ -1,28 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Contacts namespace. Each route in the Contacts -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBCONTACTSRouteObjects : NSObject - -/// Accessor method for the deleteManualContacts route object. -+ (DBRoute *)DBCONTACTSDeleteManualContacts; - -/// Accessor method for the deleteManualContactsBatch route object. -+ (DBRoute *)DBCONTACTSDeleteManualContactsBatch; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSUserAuthRoutes.h deleted file mode 100644 index 72fbcb40..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCONTACTSUserAuthRoutes.h +++ /dev/null @@ -1,55 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCONTACTSDeleteManualContactsError; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Contacts` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBCONTACTSUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBCONTACTSUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Removes all manually added contacts. You'll still keep contacts who are on your team or who you imported. New -/// contacts will be added when you share. -/// -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `void` object on -/// failure. -/// -- (DBRpcTask *)deleteManualContacts; - -/// -/// Removes manually added contacts from the given list. -/// -/// @param emailAddresses List of manually added contacts to be deleted. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBCONTACTSDeleteManualContactsError` object on failure. -/// -- (DBRpcTask *)deleteManualContactsBatch: - (NSArray *)emailAddresses; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBClientsManager+DesktopAuth-macOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBClientsManager+DesktopAuth-macOS.h deleted file mode 100644 index 8100c5ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBClientsManager+DesktopAuth-macOS.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBClientsManager.h" -#import "DBOAuthDesktop-macOS.h" -#import "DBOAuthResult.h" - -@class DBScopeRequest; -@class DBTransportDefaultConfig; -@class NSWorkspace; -@class NSViewController; - -@protocol DBLoadingStatusDelegate; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Code with platform-specific (here, macOS) dependencies. -/// -/// Extends functionality of the `DBClientsManager` class. -/// -@interface DBClientsManager (DesktopAuth) - -/// -/// Commences OAuth desktop flow from supplied view controller. -/// -/// This method should no longer be used. -/// Long-lived access tokens are deprecated. See -/// https://dropbox.tech/developers/migrating-app-permissions-and-access-tokens. -/// Please use `authorizeFromControllerDesktopV2` instead. -/// -/// @param sharedApplication The `NSWorkspace` with which to render the OAuth flow. -/// @param controller The `NSViewController` with which to render the OAuth flow. The controller reference is weakly -/// held. -/// @param openURL A wrapper around app-extension unsafe `openURL` call. -/// -+ (void)authorizeFromControllerDesktop:(NSWorkspace *)sharedApplication - controller:(nullable NSViewController *)controller - openURL:(void (^_Nonnull)(NSURL *))openURL - __deprecated_msg("This method was used for long-lived access tokens, which are now deprecated. Please use " - "`authorizeFromControllerDesktopV2` instead."); - -/// -/// Commences OAuth mobile flow from supplied view controller. -/// -/// This starts the OAuth 2 Authorization Code Flow with PKCE. -/// PKCE allows "authorization code" flow without "client_secret" -/// It enables "native application", which is ensafe to hardcode client_secret in code, to use "authorization code". -/// PKCE is more secure than "token" flow. If authorization code is compromised during -/// transmission, it can't be used to exchange for access token without random generated -/// code_verifier, which is stored inside this SDK. -/// -/// @param sharedApplication The `NSWorkspace` with which to render the OAuth flow. -/// @param controller The `NSViewController` with which to render the OAuth flow. The controller reference is weakly -/// held. -/// @param loadingStatusDelegate An optional delegate to handle loading experience during auth flow. -/// e.g. Show a loading spinner and block user interaction while loading/waiting. -/// @param openURL A wrapper around app-extension unsafe `openURL` call. -/// @param scopeRequest Request contains information of scopes to be obtained. -/// -+ (void)authorizeFromControllerDesktopV2:(NSWorkspace *)sharedApplication - controller:(nullable NSViewController *)controller - loadingStatusDelegate:(nullable id)loadingStatusDelegate - openURL:(void (^_Nonnull)(NSURL *))openURL - scopeRequest:(nullable DBScopeRequest *)scopeRequest; - -/// -/// Stores the user app key for desktop. If any access token already exists, initializes an authorized shared -/// `DBUserClient` instance. Convenience method for `setupWithTransportConfigDesktop:`. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. Use `setupWithTransportConfig:`, if additional customization of -/// network calling parameters is necessary. This method should be called from the app delegate. -/// -/// @param appKey The app key of the third-party Dropbox API user app that will be associated with all API calls. To -/// create an app or to locate your app's app key, please visit the App Console here: -/// https://www.dropbox.com/developers/apps. -/// -+ (void)setupWithAppKeyDesktop:(NSString *)appKey; - -/// -/// Stores the user transport config info for desktop. If any access token already exists, initializes an authorized -/// shared `DBUserClient` instance. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. You can customize some network calling parameters using the -/// different `DBTransportDefaultConfig` constructors. This method should be called from the app delegate. -/// -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// -+ (void)setupWithTransportConfigDesktop:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Stores the team app key for desktop. If any access token already exists, initializes an authorized shared -/// `DBTeamClient` instance. Convenience method for `setupWithTeamTransportConfigDesktop:`. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. Use `setupWithTeamTransportConfig:`, if additional customization of -/// network calling parameters is necessary. This method should be called from the app delegate. -/// -/// @param appKey The app key of the third-party Dropbox API user app that will be associated with all API calls. To -/// create an app or to locate your app's app key, please visit the App Console here: -/// https://www.dropbox.com/developers/apps. -/// -+ (void)setupWithTeamAppKeyDesktop:(NSString *)appKey; - -/// -/// Stores the team transport config info for desktop. If any access token already exists, initializes an authorized -/// shared `DBTeamClient` instance. -/// -/// This method should be used in the single Dropbox user case. If any stored OAuth tokens exist, one will arbitrarily -/// be retrieved and used to authenticate API calls. You can customize some network calling parameters using the -/// different `DBTransportDefaultConfig` constructors. This method should be called from the app delegate. -/// -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// -+ (void)setupWithTeamTransportConfigDesktop:(nullable DBTransportDefaultConfig *)transportConfig; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBClientsManager.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBClientsManager.h deleted file mode 100644 index f584e752..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBClientsManager.h +++ /dev/null @@ -1,156 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBHandlerTypes.h" -#import "DBOAuthResultCompletion.h" - -@class DBUserClient; -@class DBTeamClient; -@class DBTransportDefaultConfig; -@class DBOAuthResult; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox Clients Manager. -/// -/// This is a convenience class for typical integration cases. -/// -/// To use this class, see details in the tutorial at: -/// https://github.com/dropbox/dropbox-sdk-obj-c/blob/master/README.md. -/// -@interface DBClientsManager : NSObject - -/// -/// Accessor method for the current Dropbox API consumer app key. -/// -/// @return The app key of the current Dropbox API app. -/// -+ (nullable NSString *)appKey; - -/// -/// Accessor method for the authorized `DBUserClient` shared instance. -/// -/// @return The authorized `DBUserClient` shared instance. -/// -+ (nullable DBUserClient *)authorizedClient; - -/// -/// Multi-Dropbox account use case. Returns all current Dropbox user clients. -/// -/// @return Mapping of `tokenUid` (account ID) to authorized `DBUserClient` instance. -/// -+ (NSDictionary *)authorizedClients; - -/// -/// Accessor method for the authorized `DBTeamClient` shared instance. -/// -/// @return The the authorized `DBTeamClient` shared instance. -/// -+ (nullable DBTeamClient *)authorizedTeamClient; - -/// -/// Multi-Dropbox account use case. Returns all current Dropbox team clients. -/// -/// @return Mapping of `tokenUid` (account ID) to authorized `DBTeamClient` instance. -/// -+ (NSDictionary *)authorizedTeamClients; - -/// -/// Multi-Dropbox account use case. Creates and stores a new shared authorized user client instance with the access -/// token retrieved from storage via the supplied `tokenUid` key. -/// -/// @param tokenUid The uid of the stored access token to use to reauthorize. This uid is returned after a successful -/// progression through the OAuth flow (via `handleRedirectURL:`) in the `DBAccessToken` field of the `DBOAuthResult` -/// object. -/// -/// @returns Whether a valid token exists in storage for the supplied `tokenUid`. -/// -+ (BOOL)authorizeClientFromKeychain:(nullable NSString *)tokenUid; - -/// -/// Multi-Dropbox account use case. Creates and stores a new shared authorized team client instance with the access -/// token retrieved from storage via the supplied `tokenUid` key. -/// -/// @param tokenUid The uid of the stored access token to use to reauthorize. This uid is returned after a successful -/// progression through the OAuth flow (via `handleRedirectURLTeam:`) in the `DBAccessToken` field of the -/// `DBOAuthResult` object. -/// -/// @returns Whether a valid token exists in storage for the supplied `tokenUid`. -/// -+ (BOOL)authorizeTeamClientFromKeychain:(nullable NSString *)tokenUid; - -/// -/// Handles launching the SDK with a redirect url from an external source to authorize a user API client. -/// -/// Used after OAuth authentication has completed. A `DBUserClient` instance is initialized and the response access -/// token is saved in the `DBKeychain` class. -/// -/// @param url The auth redirect url which relaunches the SDK. -/// @param completion Completion block to pass back authorization result. -/// -/// @return Whether the URL can be handled. -/// -+ (BOOL)handleRedirectURL:(NSURL *)url completion:(DBOAuthCompletion)completion; - -/// -/// Handles launching the SDK with a redirect url from an external source to authorize a team API client. -/// -/// Used after OAuth authentication has completed. A `DBTeamClient` instance is initialized and the response access -/// token is saved in the `DBKeychain` class. -/// -/// @param url The auth redirect url which relaunches the SDK. -/// @param completion Completion block to pass back authorization result. -/// -/// @return Whether the URL can be handled. -/// -+ (BOOL)handleRedirectURLTeam:(NSURL *)url completion:(DBOAuthCompletion)completion; - -/// -/// Multi-Dropbox account use case. Sets to `nil` the active user / team shared authorized client, clears the stored -/// access token associated with the supplied `tokenUid`, and removes the assocaited client from the shared clients -/// list. -/// -/// @param tokenUid The uid of the token to clear. -/// -+ (void)unlinkAndResetClient:(NSString *)tokenUid; - -/// -/// Sets to `nil` the active user / team shared authorized client and clears all stored access tokens in `DBKeychain`. -/// -+ (void)unlinkAndResetClients; - -/// -/// Checks if performing an API v1 OAuth 1 token migration is necessary, and if so, performs it. -/// -/// This method should successfully migrate all stored access tokens in the official Dropbox Core and Sync SDKs from -/// April 2012 until present, for both iOS and OS X. The method executes its network requests off the main thread. -/// -/// Token migration is treated as an atomic operation. Either all tokens that are possible to migrate are migrated at -/// once, or none of them are. If all token conversion requests complete successfully, then the `shouldRetry` argument -/// in `responseBlock` will be `NO`. If some token conversion requests succeed and some fail, and if the failures are -/// for any reason other than network connectivity issues (e.g. token has been invalidated), then the migration will -/// continue normally, and those tokens that were unsuccessfully migrated will be skipped, and `shouldRetry` will be -/// `NO`. If any of the failures were because of network connectivity issues, none of the tokens will be migrated, and -/// `shouldRetry` will be `YES`. -/// -/// @param responseBlock The custom handler for determining whether to retry the migration. -/// @param queue The operation queue on which to execute the supplied response block (defaults to main queue, if `nil`). -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// -/// @return Whether a token migration will be performed. -/// -+ (BOOL)checkAndPerformV1TokenMigration:(DBTokenMigrationResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue - appKey:(NSString *)appKey - appSecret:(NSString *)appSecret; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomDatatypes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomDatatypes.h deleted file mode 100644 index 4cbc9d5d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomDatatypes.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Custom client-side datatypes -/// - -#import - -#import "DBHandlerTypes.h" - -@class DBASYNCPollError; -@class DBFILESCommitInfo; -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBRequestError; -@class DBTasksStorage; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stores data for a particular batch upload attempt. -/// -@interface DBBatchUploadData : NSObject - -/// The queue on which most response handling is performed. -@property (nonatomic, readonly) NSOperationQueue *queue; - -/// The queue on which we sleep until all processing is completed or the timeout is hit. -@property (nonatomic, readonly) NSOperationQueue *pollingQueue; - -/// The dispatch group that pairs upload requests with upload responses so that we can wait for all request/response -/// pairs to complete before batch committing. In this way, we can start many upload requests (for files under the chunk -/// limit), without waiting for the corresponding response. -@property (nonatomic, readonly) dispatch_group_t uploadGroup; - -/// A client-supplied parameter that maps the file urls of the files to upload to the corresponding commit info objects. -@property (nonatomic, readonly) NSDictionary *fileUrlsToCommitInfo; - -/// Mapping of urls for files that were unsuccessfully uploaded to any request errors that were encounted. -@property (atomic, readonly) NSMutableDictionary *fileUrlsToRequestErrors; - -/// List of finish args (which include commit info, cursor, etc.) which the SDK maintains and passes to -/// `upload_session/finish_batch`. -@property (atomic, strong) NSMutableArray *finishArgs; - -/// The progress block that is periodically executed once a file upload is complete. -@property (nonatomic, readonly) DBProgressBlock _Nullable progressBlock; - -/// The response block that is executed once all file uploads and the final batch commit is complete. -@property (nonatomic, readonly) DBBatchUploadResponseBlock responseBlock; - -/// The total size of all the files to upload. Used to return progress data to the client. -@property (nonatomic) NSUInteger totalUploadSize; - -/// The total size of all the file content upload so far. Used to return progress data to the client. -@property (nonatomic) NSUInteger totalUploadedSoFar; - -/// The flag that determines whether upload continues or not. -@property (atomic) BOOL cancel; - -/// The container object that stores all upload / download task objects for cancelling. -@property (nonatomic, strong) DBTasksStorage *taskStorage; - -/// -/// Full constructor. -/// -/// @param fileUrlsToCommitInfo A client-supplied parameter that maps the file urls of the files to upload to the -/// corresponding commit info objects. -/// @param progressBlock The progress block that is periodically executed once a file upload is complete. -/// @param responseBlock The response block that is executed once all file uploads and the final batch commit is -/// complete. -/// @param queue The queue on which most response handling is performed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommitInfo:(NSDictionary *)fileUrlsToCommitInfo - progressBlock:(DBProgressBlock _Nullable)progressBlock - responseBlock:(DBBatchUploadResponseBlock)responseBlock - queue:(NSOperationQueue *)queue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomRoutes.h deleted file mode 100644 index 2cb85dbb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomRoutes.h +++ /dev/null @@ -1,55 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -/// -/// Custom client-side routes -/// - -#import - -#import "DBFILESUserAuthRoutes.h" -#import "DBHandlerTypes.h" - -@class DBBatchUploadTask; -@class DBFILESCommitInfo; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Extension of routes in the `Files` namespace. -/// -/// These routes serve as a convenience layer built on top of our auto-generated routes. -/// -@interface DBFILESUserAuthRoutes (DBCustomRoutes) - -/// -/// Batch uploads small and large files. -/// -/// This is a custom route built as a convenience layer over several Dropbox endpoints. Files will not only be batch -/// uploaded, but large files will also automatically be chunk-uploaded to the Dropbox server, for maximum efficiency. -/// -/// @note The interface of this route does not have the same structure as other routes in the SDK. Here, a special -/// `DBBatchUploadTask` object is returned. Progress and response handlers are passed in directly to the route, rather -/// than installed via this response object. -/// -/// @param fileUrlsToCommitInfo Map from the file urls of the files to upload to the corresponding commit info objects. -/// @param queue The operation queue to execute progress / response handlers on. Main queue if `nil` is passed. -/// @param progressBlock The progress block that is periodically executed once a file upload is complete. It's important -/// to note that this progress handler will update only when a file or file chunk is successfully uploaded. It will not -/// give the client any progress notifications once all of the file data is uploaded, but not yet committed. Once the -/// batch commit call is made, the client will have to simply wait for the server to commit all of the uploaded data, -/// until the response handler is called. -/// @param responseBlock The response block that is executed once all file uploads and the final batch commit is -/// complete. -/// -/// @returns Special `DBBatchUploadTask` that exposes cancellation method. -/// -- (DBBatchUploadTask *)batchUploadFiles:(NSDictionary *)fileUrlsToCommitInfo - queue:(nullable NSOperationQueue *)queue - progressBlock:(DBProgressBlock _Nullable)progressBlock - responseBlock:(DBBatchUploadResponseBlock)responseBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomTasks.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomTasks.h deleted file mode 100644 index d42d14da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBCustomTasks.h +++ /dev/null @@ -1,46 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBBatchUploadData; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox task object for custom batch upload route. -/// -/// The batch upload route is a convenience layer over several of our auto-generated API endpoints. For this reason, -/// there is less flexibility and granularity of control. Progress and response handlers are passed directly into this -/// route (rather than installed via this task object) and only `cancel` is available. This task is also specific to -/// only one endpoint, rather than an entire class (style) of endpoints. -/// -@interface DBBatchUploadTask : NSObject - -/// -/// DBBatchUploadTask full constructor. -/// -/// @param uploadData relevant to the particular batch upload request. -/// -/// @returns A DBBatchUploadTask instance. -/// -- (instancetype)initWithUploadData:(DBBatchUploadData *)uploadData; - -/// -/// Cancels the current request. -/// -- (void)cancel; - -/// -/// Determines whether there are any upload tasks still in progress. -/// -/// NOTE: This will return `NO` during the final polling / commit phase of batch upload. -/// -/// @return Whether there are any upload tasks in progress. -/// -- (BOOL)uploadsInProgress; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddPropertiesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddPropertiesArg.h deleted file mode 100644 index 6137b884..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddPropertiesArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddPropertiesArg; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPropertiesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddPropertiesArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The property groups which are to be added to a Dropbox file. No two groups -/// in the input should refer to the same template. -@property (nonatomic, readonly) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups which are to be added to a Dropbox -/// file. No two groups in the input should refer to the same template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path propertyGroups:(NSArray *)propertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddPropertiesArg` struct. -/// -@interface DBFILEPROPERTIESAddPropertiesArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddPropertiesArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddPropertiesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddPropertiesArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddPropertiesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddPropertiesArg` object. -/// -+ (DBFILEPROPERTIESAddPropertiesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddPropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddPropertiesError.h deleted file mode 100644 index d568daee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddPropertiesError.h +++ /dev/null @@ -1,293 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddPropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESAddPropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESAddPropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESAddPropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESAddPropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESAddPropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESAddPropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESAddPropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESAddPropertiesErrorUnsupportedFolder, - - /// One or more of the supplied property field values is too large. - DBFILEPROPERTIESAddPropertiesErrorPropertyFieldTooLarge, - - /// One or more of the supplied property fields does not conform to the - /// template specifications. - DBFILEPROPERTIESAddPropertiesErrorDoesNotFitTemplate, - - /// There are 2 or more property groups referring to the same templates in - /// the input. - DBFILEPROPERTIESAddPropertiesErrorDuplicatePropertyGroups, - - /// A property group associated with this template and file already exists. - DBFILEPROPERTIESAddPropertiesErrorPropertyGroupAlreadyExists, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESAddPropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_field_too_large". -/// -/// Description of the "property_field_too_large" tag state: One or more of the -/// supplied property field values is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyFieldTooLarge; - -/// -/// Initializes union class with tag state of "does_not_fit_template". -/// -/// Description of the "does_not_fit_template" tag state: One or more of the -/// supplied property fields does not conform to the template specifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDoesNotFitTemplate; - -/// -/// Initializes union class with tag state of "duplicate_property_groups". -/// -/// Description of the "duplicate_property_groups" tag state: There are 2 or -/// more property groups referring to the same templates in the input. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatePropertyGroups; - -/// -/// Initializes union class with tag state of "property_group_already_exists". -/// -/// Description of the "property_group_already_exists" tag state: A property -/// group associated with this template and file already exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupAlreadyExists; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_field_too_large". -/// -/// @return Whether the union's current tag state has value -/// "property_field_too_large". -/// -- (BOOL)isPropertyFieldTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "does_not_fit_template". -/// -/// @return Whether the union's current tag state has value -/// "does_not_fit_template". -/// -- (BOOL)isDoesNotFitTemplate; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_property_groups". -/// -/// @return Whether the union's current tag state has value -/// "duplicate_property_groups". -/// -- (BOOL)isDuplicatePropertyGroups; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_already_exists". -/// -/// @return Whether the union's current tag state has value -/// "property_group_already_exists". -/// -- (BOOL)isPropertyGroupAlreadyExists; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESAddPropertiesError` union. -/// -@interface DBFILEPROPERTIESAddPropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddPropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddPropertiesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddPropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddPropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddPropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddPropertiesError` object. -/// -+ (DBFILEPROPERTIESAddPropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddTemplateArg.h deleted file mode 100644 index 4cf80928..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddTemplateArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILEPROPERTIESPropertyGroupTemplate.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddTemplateArg; -@class DBFILEPROPERTIESPropertyFieldTemplate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddTemplateArg : DBFILEPROPERTIESPropertyGroupTemplate - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Display name for the template. Template names can be up to 256 -/// bytes. -/// @param description_ Description for the template. Template descriptions can -/// be up to 1024 bytes. -/// @param fields Definitions of the property fields associated with this -/// template. There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddTemplateArg` struct. -/// -@interface DBFILEPROPERTIESAddTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddTemplateArg` object. -/// -+ (DBFILEPROPERTIESAddTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddTemplateResult.h deleted file mode 100644 index e575f814..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESAddTemplateResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESAddTemplateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESAddTemplateResult : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddTemplateResult` struct. -/// -@interface DBFILEPROPERTIESAddTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESAddTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESAddTemplateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESAddTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESAddTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESAddTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESAddTemplateResult` object. -/// -+ (DBFILEPROPERTIESAddTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESGetTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESGetTemplateArg.h deleted file mode 100644 index f13e3807..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESGetTemplateArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESGetTemplateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESGetTemplateArg : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by route See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by route See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemplateArg` struct. -/// -@interface DBFILEPROPERTIESGetTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESGetTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESGetTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESGetTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESGetTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESGetTemplateArg` object. -/// -+ (DBFILEPROPERTIESGetTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESGetTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESGetTemplateResult.h deleted file mode 100644 index adf6f998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESGetTemplateResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILEPROPERTIESPropertyGroupTemplate.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESPropertyFieldTemplate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESGetTemplateResult : DBFILEPROPERTIESPropertyGroupTemplate - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Display name for the template. Template names can be up to 256 -/// bytes. -/// @param description_ Description for the template. Template descriptions can -/// be up to 1024 bytes. -/// @param fields Definitions of the property fields associated with this -/// template. There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemplateResult` struct. -/// -@interface DBFILEPROPERTIESGetTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESGetTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESGetTemplateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESGetTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESGetTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESGetTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESGetTemplateResult` object. -/// -+ (DBFILEPROPERTIESGetTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h deleted file mode 100644 index afcd2e87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESInvalidPropertyGroupError.h +++ /dev/null @@ -1,273 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InvalidPropertyGroupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESInvalidPropertyGroupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESInvalidPropertyGroupErrorTag` enum type represents the -/// possible tag states with which the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESInvalidPropertyGroupErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESInvalidPropertyGroupErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESInvalidPropertyGroupErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESInvalidPropertyGroupErrorOther, - - /// (no description). - DBFILEPROPERTIESInvalidPropertyGroupErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESInvalidPropertyGroupErrorUnsupportedFolder, - - /// One or more of the supplied property field values is too large. - DBFILEPROPERTIESInvalidPropertyGroupErrorPropertyFieldTooLarge, - - /// One or more of the supplied property fields does not conform to the - /// template specifications. - DBFILEPROPERTIESInvalidPropertyGroupErrorDoesNotFitTemplate, - - /// There are 2 or more property groups referring to the same templates in - /// the input. - DBFILEPROPERTIESInvalidPropertyGroupErrorDuplicatePropertyGroups, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESInvalidPropertyGroupErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_field_too_large". -/// -/// Description of the "property_field_too_large" tag state: One or more of the -/// supplied property field values is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyFieldTooLarge; - -/// -/// Initializes union class with tag state of "does_not_fit_template". -/// -/// Description of the "does_not_fit_template" tag state: One or more of the -/// supplied property fields does not conform to the template specifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDoesNotFitTemplate; - -/// -/// Initializes union class with tag state of "duplicate_property_groups". -/// -/// Description of the "duplicate_property_groups" tag state: There are 2 or -/// more property groups referring to the same templates in the input. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatePropertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_field_too_large". -/// -/// @return Whether the union's current tag state has value -/// "property_field_too_large". -/// -- (BOOL)isPropertyFieldTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "does_not_fit_template". -/// -/// @return Whether the union's current tag state has value -/// "does_not_fit_template". -/// -- (BOOL)isDoesNotFitTemplate; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_property_groups". -/// -/// @return Whether the union's current tag state has value -/// "duplicate_property_groups". -/// -- (BOOL)isDuplicatePropertyGroups; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESInvalidPropertyGroupError` -/// union. -/// -@interface DBFILEPROPERTIESInvalidPropertyGroupErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESInvalidPropertyGroupError` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESInvalidPropertyGroupError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESInvalidPropertyGroupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESInvalidPropertyGroupError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESInvalidPropertyGroupError` -/// object. -/// -+ (DBFILEPROPERTIESInvalidPropertyGroupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESListTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESListTemplateResult.h deleted file mode 100644 index 468867cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESListTemplateResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESListTemplateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESListTemplateResult : NSObject - -#pragma mark - Instance fields - -/// List of identifiers for templates added by See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly) NSArray *templateIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateIds List of identifiers for templates added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateIds:(NSArray *)templateIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTemplateResult` struct. -/// -@interface DBFILEPROPERTIESListTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESListTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESListTemplateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESListTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESListTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESListTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESListTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESListTemplateResult` object. -/// -+ (DBFILEPROPERTIESListTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLogicalOperator.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLogicalOperator.h deleted file mode 100644 index 23bf80c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLogicalOperator.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLogicalOperator; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LogicalOperator` union. -/// -/// Logical operator to join search queries together. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESLogicalOperator : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESLogicalOperatorTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESLogicalOperator` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESLogicalOperatorTag) { - /// Append a query with an "or" operator. - DBFILEPROPERTIESLogicalOperatorOrOperator, - - /// (no description). - DBFILEPROPERTIESLogicalOperatorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESLogicalOperatorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "or_operator". -/// -/// Description of the "or_operator" tag state: Append a query with an "or" -/// operator. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrOperator; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "or_operator". -/// -/// @return Whether the union's current tag state has value "or_operator". -/// -- (BOOL)isOrOperator; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESLogicalOperator` union. -/// -@interface DBFILEPROPERTIESLogicalOperatorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESLogicalOperator` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESLogicalOperator` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLogicalOperator` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESLogicalOperator *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESLogicalOperator` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLogicalOperator` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESLogicalOperator` object. -/// -+ (DBFILEPROPERTIESLogicalOperator *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLookUpPropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLookUpPropertiesError.h deleted file mode 100644 index 0f1dace2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLookUpPropertiesError.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LookUpPropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESLookUpPropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESLookUpPropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESLookUpPropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESLookUpPropertiesErrorTag) { - /// No property group was found. - DBFILEPROPERTIESLookUpPropertiesErrorPropertyGroupNotFound, - - /// (no description). - DBFILEPROPERTIESLookUpPropertiesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "property_group_not_found". -/// -/// Description of the "property_group_not_found" tag state: No property group -/// was found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_not_found". -/// -/// @return Whether the union's current tag state has value -/// "property_group_not_found". -/// -- (BOOL)isPropertyGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESLookUpPropertiesError` -/// union. -/// -@interface DBFILEPROPERTIESLookUpPropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESLookUpPropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESLookUpPropertiesError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookUpPropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESLookUpPropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESLookUpPropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookUpPropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESLookUpPropertiesError` -/// object. -/// -+ (DBFILEPROPERTIESLookUpPropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLookupError.h deleted file mode 100644 index d41b930e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESLookupError.h +++ /dev/null @@ -1,209 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESLookupErrorTag` enum type represents the possible tag -/// states with which the `DBFILEPROPERTIESLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESLookupErrorTag) { - /// (no description). - DBFILEPROPERTIESLookupErrorMalformedPath, - - /// There is nothing at the given path. - DBFILEPROPERTIESLookupErrorNotFound, - - /// We were expecting a file, but the given path refers to something that - /// isn't a file. - DBFILEPROPERTIESLookupErrorNotFile, - - /// We were expecting a folder, but the given path refers to something that - /// isn't a folder. - DBFILEPROPERTIESLookupErrorNotFolder, - - /// The file cannot be transferred because the content is restricted. For - /// example, we might restrict a file due to legal requirements. - DBFILEPROPERTIESLookupErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESLookupErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupErrorTag tag; - -/// (no description). @note Ensure the `isMalformedPath` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *malformedPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_path". -/// -/// @param malformedPath (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedPath:(NSString *)malformedPath; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: There is nothing at the given -/// path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_file". -/// -/// Description of the "not_file" tag state: We were expecting a file, but the -/// given path refers to something that isn't a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFile; - -/// -/// Initializes union class with tag state of "not_folder". -/// -/// Description of the "not_folder" tag state: We were expecting a folder, but -/// the given path refers to something that isn't a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFolder; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: The file cannot be -/// transferred because the content is restricted. For example, we might -/// restrict a file due to legal requirements. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_path". -/// -- (BOOL)isMalformedPath; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_file". -/// -/// @return Whether the union's current tag state has value "not_file". -/// -- (BOOL)isNotFile; - -/// -/// Retrieves whether the union's current tag state has value "not_folder". -/// -/// @return Whether the union's current tag state has value "not_folder". -/// -- (BOOL)isNotFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESLookupError` union. -/// -@interface DBFILEPROPERTIESLookupErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESLookupError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESLookupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESLookupError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESLookupError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESLookupError` object. -/// -+ (DBFILEPROPERTIESLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESModifyTemplateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESModifyTemplateError.h deleted file mode 100644 index 5fa504c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESModifyTemplateError.h +++ /dev/null @@ -1,245 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESModifyTemplateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ModifyTemplateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESModifyTemplateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESModifyTemplateErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESModifyTemplateError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESModifyTemplateErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESModifyTemplateErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESModifyTemplateErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESModifyTemplateErrorOther, - - /// A property field key with that name already exists in the template. - DBFILEPROPERTIESModifyTemplateErrorConflictingPropertyNames, - - /// There are too many properties in the changed template. The maximum - /// number of properties per template is 32. - DBFILEPROPERTIESModifyTemplateErrorTooManyProperties, - - /// There are too many templates for the team. - DBFILEPROPERTIESModifyTemplateErrorTooManyTemplates, - - /// The template name, description or one or more of the property field keys - /// is too large. - DBFILEPROPERTIESModifyTemplateErrorTemplateAttributeTooLarge, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESModifyTemplateErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "conflicting_property_names". -/// -/// Description of the "conflicting_property_names" tag state: A property field -/// key with that name already exists in the template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConflictingPropertyNames; - -/// -/// Initializes union class with tag state of "too_many_properties". -/// -/// Description of the "too_many_properties" tag state: There are too many -/// properties in the changed template. The maximum number of properties per -/// template is 32. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyProperties; - -/// -/// Initializes union class with tag state of "too_many_templates". -/// -/// Description of the "too_many_templates" tag state: There are too many -/// templates for the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyTemplates; - -/// -/// Initializes union class with tag state of "template_attribute_too_large". -/// -/// Description of the "template_attribute_too_large" tag state: The template -/// name, description or one or more of the property field keys is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateAttributeTooLarge; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "conflicting_property_names". -/// -/// @return Whether the union's current tag state has value -/// "conflicting_property_names". -/// -- (BOOL)isConflictingPropertyNames; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_properties". -/// -/// @return Whether the union's current tag state has value -/// "too_many_properties". -/// -- (BOOL)isTooManyProperties; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_templates". -/// -/// @return Whether the union's current tag state has value -/// "too_many_templates". -/// -- (BOOL)isTooManyTemplates; - -/// -/// Retrieves whether the union's current tag state has value -/// "template_attribute_too_large". -/// -/// @return Whether the union's current tag state has value -/// "template_attribute_too_large". -/// -- (BOOL)isTemplateAttributeTooLarge; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESModifyTemplateError` union. -/// -@interface DBFILEPROPERTIESModifyTemplateErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESModifyTemplateError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESModifyTemplateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESModifyTemplateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESModifyTemplateError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESModifyTemplateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESModifyTemplateError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESModifyTemplateError` -/// object. -/// -+ (DBFILEPROPERTIESModifyTemplateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h deleted file mode 100644 index 1953ae09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESOverwritePropertyGroupArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESOverwritePropertyGroupArg; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OverwritePropertyGroupArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESOverwritePropertyGroupArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The property groups "snapshot" updates to force apply. No two groups in the -/// input should refer to the same template. -@property (nonatomic, readonly) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups "snapshot" updates to force apply. -/// No two groups in the input should refer to the same template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path propertyGroups:(NSArray *)propertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OverwritePropertyGroupArg` struct. -/// -@interface DBFILEPROPERTIESOverwritePropertyGroupArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESOverwritePropertyGroupArg` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESOverwritePropertyGroupArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESOverwritePropertyGroupArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESOverwritePropertyGroupArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESOverwritePropertyGroupArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESOverwritePropertyGroupArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESOverwritePropertyGroupArg` -/// object. -/// -+ (DBFILEPROPERTIESOverwritePropertyGroupArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesError.h deleted file mode 100644 index 0a48153d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesError.h +++ /dev/null @@ -1,202 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESPropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesErrorTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESPropertiesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESPropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESPropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESPropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESPropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESPropertiesErrorUnsupportedFolder, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertiesError` union. -/// -@interface DBFILEPROPERTIESPropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesError` object. -/// -+ (DBFILEPROPERTIESPropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchArg.h deleted file mode 100644 index 8dc9f795..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchArg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchArg; -@class DBFILEPROPERTIESPropertiesSearchQuery; -@class DBFILEPROPERTIESTemplateFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchArg : NSObject - -#pragma mark - Instance fields - -/// Queries to search. -@property (nonatomic, readonly) NSArray *queries; - -/// Filter results to contain only properties associated with these template -/// IDs. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateFilter *templateFilter; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param queries Queries to search. -/// @param templateFilter Filter results to contain only properties associated -/// with these template IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQueries:(NSArray *)queries - templateFilter:(nullable DBFILEPROPERTIESTemplateFilter *)templateFilter; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param queries Queries to search. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQueries:(NSArray *)queries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchArg` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchArg` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h deleted file mode 100644 index 3a716b3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `propertiesSearch` or -/// `propertiesSearchContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `propertiesSearch` or -/// `propertiesSearchContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchContinueArg` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchContinueArg` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchContinueArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` API object. -/// -/// @return An instantiation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueArg` object. -/// -+ (DBFILEPROPERTIESPropertiesSearchContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h deleted file mode 100644 index 2bcef297..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchContinueError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesSearchContinueErrorTag` enum type represents -/// the possible tag states with which the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesSearchContinueErrorTag) { - /// Indicates that the cursor has been invalidated. Call `propertiesSearch` - /// to obtain a new cursor. - DBFILEPROPERTIESPropertiesSearchContinueErrorReset, - - /// (no description). - DBFILEPROPERTIESPropertiesSearchContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `propertiesSearch` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` union. -/// -@interface DBFILEPROPERTIESPropertiesSearchContinueErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchContinueError` instances. -/// -/// @param instance An instance of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchContinueError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` API object. -/// -/// @return An instantiation of the -/// `DBFILEPROPERTIESPropertiesSearchContinueError` object. -/// -+ (DBFILEPROPERTIESPropertiesSearchContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchError.h deleted file mode 100644 index 037ccccd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchError.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESPropertiesSearchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesSearchErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESPropertiesSearchError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesSearchErrorTag) { - /// (no description). - DBFILEPROPERTIESPropertiesSearchErrorPropertyGroupLookup, - - /// (no description). - DBFILEPROPERTIESPropertiesSearchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchErrorTag tag; - -/// (no description). @note Ensure the `isPropertyGroupLookup` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertyGroupLookup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "property_group_lookup". -/// -/// @param propertyGroupLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupLookup:(DBFILEPROPERTIESLookUpPropertiesError *)propertyGroupLookup; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertyGroupLookup` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "property_group_lookup". -/// -- (BOOL)isPropertyGroupLookup; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertiesSearchError` -/// union. -/// -@interface DBFILEPROPERTIESPropertiesSearchErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchError` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h deleted file mode 100644 index 134e904d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchMatch.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchMatch` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchMatch : NSObject - -#pragma mark - Instance fields - -/// The ID for the matched file or folder. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The path for the matched file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// Whether the file or folder is deleted. -@property (nonatomic, readonly) NSNumber *isDeleted; - -/// List of custom property groups associated with the file. -@property (nonatomic, readonly) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID for the matched file or folder. -/// @param path The path for the matched file or folder. -/// @param isDeleted Whether the file or folder is deleted. -/// @param propertyGroups List of custom property groups associated with the -/// file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - path:(NSString *)path - isDeleted:(NSNumber *)isDeleted - propertyGroups:(NSArray *)propertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchMatch` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchMatchSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchMatch` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchMatch` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMatch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchMatch *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchMatch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMatch` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchMatch` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchMatch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchMode.h deleted file mode 100644 index c8646351..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchMode.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertiesSearchModeTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESPropertiesSearchMode` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertiesSearchModeTag) { - /// Search for a value associated with this field name. - DBFILEPROPERTIESPropertiesSearchModeFieldName, - - /// (no description). - DBFILEPROPERTIESPropertiesSearchModeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchModeTag tag; - -/// Search for a value associated with this field name. @note Ensure the -/// `isFieldName` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *fieldName; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "field_name". -/// -/// Description of the "field_name" tag state: Search for a value associated -/// with this field name. -/// -/// @param fieldName Search for a value associated with this field name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFieldName:(NSString *)fieldName; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "field_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fieldName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "field_name". -/// -- (BOOL)isFieldName; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertiesSearchMode` -/// union. -/// -@interface DBFILEPROPERTIESPropertiesSearchModeSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchMode` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchMode` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchMode *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchMode` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchMode` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h deleted file mode 100644 index aedeb8df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchQuery.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLogicalOperator; -@class DBFILEPROPERTIESPropertiesSearchMode; -@class DBFILEPROPERTIESPropertiesSearchQuery; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchQuery` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchQuery : NSObject - -#pragma mark - Instance fields - -/// The property field value for which to search across templates. -@property (nonatomic, readonly, copy) NSString *query; - -/// The mode with which to perform the search. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertiesSearchMode *mode; - -/// The logical operator with which to append the query. -@property (nonatomic, readonly) DBFILEPROPERTIESLogicalOperator *logicalOperator; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param query The property field value for which to search across templates. -/// @param mode The mode with which to perform the search. -/// @param logicalOperator The logical operator with which to append the query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query - mode:(DBFILEPROPERTIESPropertiesSearchMode *)mode - logicalOperator:(nullable DBFILEPROPERTIESLogicalOperator *)logicalOperator; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param query The property field value for which to search across templates. -/// @param mode The mode with which to perform the search. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query mode:(DBFILEPROPERTIESPropertiesSearchMode *)mode; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchQuery` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchQuerySerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchQuery` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchQuery` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchQuery` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchQuery *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchQuery` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchQuery` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchQuery` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchQuery *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchResult.h deleted file mode 100644 index 4c078a6d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertiesSearchResult.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertiesSearchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertiesSearchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertiesSearchResult : NSObject - -#pragma mark - Instance fields - -/// A list (possibly empty) of matches for the query. -@property (nonatomic, readonly) NSArray *matches; - -/// Pass the cursor into `propertiesSearchContinue` to continue to receive -/// search results. Cursor will be null when there are no more results. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param cursor Pass the cursor into `propertiesSearchContinue` to continue to -/// receive search results. Cursor will be null when there are no more results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertiesSearchResult` struct. -/// -@interface DBFILEPROPERTIESPropertiesSearchResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertiesSearchResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertiesSearchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertiesSearchResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertiesSearchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertiesSearchResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertiesSearchResult` -/// object. -/// -+ (DBFILEPROPERTIESPropertiesSearchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyField.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyField.h deleted file mode 100644 index 171d595e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyField.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyField; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyField` struct. -/// -/// Raw key/value data to be associated with a Dropbox file. Property fields are -/// added to Dropbox files as a PropertyGroup. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyField : NSObject - -#pragma mark - Instance fields - -/// Key of the property field associated with a file and template. Keys can be -/// up to 256 bytes. -@property (nonatomic, readonly, copy) NSString *name; - -/// Value of the property field associated with a file and template. Values can -/// be up to 1024 bytes. -@property (nonatomic, readonly, copy) NSString *value; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Key of the property field associated with a file and template. -/// Keys can be up to 256 bytes. -/// @param value Value of the property field associated with a file and -/// template. Values can be up to 1024 bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name value:(NSString *)value; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyField` struct. -/// -@interface DBFILEPROPERTIESPropertyFieldSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyField` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyField` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyField` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyField *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyField` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyField` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyField` object. -/// -+ (DBFILEPROPERTIESPropertyField *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h deleted file mode 100644 index ca79ea28..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyFieldTemplate.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyFieldTemplate` struct. -/// -/// Defines how a single property field may be structured. Used exclusively by -/// PropertyGroupTemplate. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyFieldTemplate : NSObject - -#pragma mark - Instance fields - -/// Key of the property field being described. Property field keys can be up to -/// 256 bytes. -@property (nonatomic, readonly, copy) NSString *name; - -/// Description of the property field. Property field descriptions can be up to -/// 1024 bytes. -@property (nonatomic, readonly, copy) NSString *description_; - -/// Data type of the value of this property field. This type will be enforced -/// upon property creation and modifications. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertyType *type; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Key of the property field being described. Property field keys -/// can be up to 256 bytes. -/// @param description_ Description of the property field. Property field -/// descriptions can be up to 1024 bytes. -/// @param type Data type of the value of this property field. This type will be -/// enforced upon property creation and modifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - type:(DBFILEPROPERTIESPropertyType *)type; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyFieldTemplate` struct. -/// -@interface DBFILEPROPERTIESPropertyFieldTemplateSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyFieldTemplate` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyFieldTemplate` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyFieldTemplate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyFieldTemplate *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyFieldTemplate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyFieldTemplate` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyFieldTemplate` -/// object. -/// -+ (DBFILEPROPERTIESPropertyFieldTemplate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroup.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroup.h deleted file mode 100644 index 716d1674..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroup.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyGroup; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyGroup` struct. -/// -/// A subset of the property fields described by the corresponding -/// PropertyGroupTemplate. Properties are always added to a Dropbox file as a -/// PropertyGroup. The possible key names and value types in this group are -/// defined by the corresponding PropertyGroupTemplate. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyGroup : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the associated template. -@property (nonatomic, readonly, copy) NSString *templateId; - -/// The actual properties associated with the template. There can be up to 32 -/// property types per template. -@property (nonatomic, readonly) NSArray *fields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId A unique identifier for the associated template. -/// @param fields The actual properties associated with the template. There can -/// be up to 32 property types per template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId fields:(NSArray *)fields; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyGroup` struct. -/// -@interface DBFILEPROPERTIESPropertyGroupSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyGroup` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyGroup` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroup` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyGroup *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyGroup` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroup` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyGroup` object. -/// -+ (DBFILEPROPERTIESPropertyGroup *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h deleted file mode 100644 index 6a24a04c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroupTemplate.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroupTemplate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyGroupTemplate` struct. -/// -/// Defines how a property group may be structured. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyGroupTemplate : NSObject - -#pragma mark - Instance fields - -/// Display name for the template. Template names can be up to 256 bytes. -@property (nonatomic, readonly, copy) NSString *name; - -/// Description for the template. Template descriptions can be up to 1024 bytes. -@property (nonatomic, readonly, copy) NSString *description_; - -/// Definitions of the property fields associated with this template. There can -/// be up to 32 properties in a single template. -@property (nonatomic, readonly) NSArray *fields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Display name for the template. Template names can be up to 256 -/// bytes. -/// @param description_ Description for the template. Template descriptions can -/// be up to 1024 bytes. -/// @param fields Definitions of the property fields associated with this -/// template. There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyGroupTemplate` struct. -/// -@interface DBFILEPROPERTIESPropertyGroupTemplateSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyGroupTemplate` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyGroupTemplate` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupTemplate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyGroupTemplate *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyGroupTemplate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupTemplate` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyGroupTemplate` -/// object. -/// -+ (DBFILEPROPERTIESPropertyGroupTemplate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h deleted file mode 100644 index dc4e9f0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyGroupUpdate.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyGroupUpdate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyGroupUpdate` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyGroupUpdate : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for a property template. -@property (nonatomic, readonly, copy) NSString *templateId; - -/// Property fields to update. If the property field already exists, it is -/// updated. If the property field doesn't exist, the property group is added. -@property (nonatomic, readonly, nullable) NSArray *addOrUpdateFields; - -/// Property fields to remove (by name), provided they exist. -@property (nonatomic, readonly, nullable) NSArray *removeFields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId A unique identifier for a property template. -/// @param addOrUpdateFields Property fields to update. If the property field -/// already exists, it is updated. If the property field doesn't exist, the -/// property group is added. -/// @param removeFields Property fields to remove (by name), provided they -/// exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId - addOrUpdateFields:(nullable NSArray *)addOrUpdateFields - removeFields:(nullable NSArray *)removeFields; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param templateId A unique identifier for a property template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PropertyGroupUpdate` struct. -/// -@interface DBFILEPROPERTIESPropertyGroupUpdateSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyGroupUpdate` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyGroupUpdate` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupUpdate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyGroupUpdate *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyGroupUpdate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyGroupUpdate` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyGroupUpdate` -/// object. -/// -+ (DBFILEPROPERTIESPropertyGroupUpdate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyType.h deleted file mode 100644 index 40194ba7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESPropertyType.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PropertyType` union. -/// -/// Data type of the given property field added. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESPropertyType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESPropertyTypeTag` enum type represents the possible tag -/// states with which the `DBFILEPROPERTIESPropertyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESPropertyTypeTag) { - /// The associated property field will be of type string. Unicode is - /// supported. - DBFILEPROPERTIESPropertyTypeString, - - /// (no description). - DBFILEPROPERTIESPropertyTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESPropertyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "string". -/// -/// Description of the "string" tag state: The associated property field will be -/// of type string. Unicode is supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithString; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "string". -/// -/// @return Whether the union's current tag state has value "string". -/// -- (BOOL)isString; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESPropertyType` union. -/// -@interface DBFILEPROPERTIESPropertyTypeSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESPropertyType` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESPropertyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESPropertyType *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESPropertyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESPropertyType` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESPropertyType` object. -/// -+ (DBFILEPROPERTIESPropertyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemovePropertiesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemovePropertiesArg.h deleted file mode 100644 index 354d39c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemovePropertiesArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESRemovePropertiesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovePropertiesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESRemovePropertiesArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// A list of identifiers for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly) NSArray *propertyTemplateIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyTemplateIds A list of identifiers for a template created by -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path propertyTemplateIds:(NSArray *)propertyTemplateIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemovePropertiesArg` struct. -/// -@interface DBFILEPROPERTIESRemovePropertiesArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESRemovePropertiesArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESRemovePropertiesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESRemovePropertiesArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESRemovePropertiesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESRemovePropertiesArg` -/// object. -/// -+ (DBFILEPROPERTIESRemovePropertiesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemovePropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemovePropertiesError.h deleted file mode 100644 index 2e7e9f7e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemovePropertiesError.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESRemovePropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovePropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESRemovePropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESRemovePropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESRemovePropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESRemovePropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESRemovePropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESRemovePropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESRemovePropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESRemovePropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESRemovePropertiesErrorUnsupportedFolder, - - /// (no description). - DBFILEPROPERTIESRemovePropertiesErrorPropertyGroupLookup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESRemovePropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -/// (no description). @note Ensure the `isPropertyGroupLookup` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertyGroupLookup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_group_lookup". -/// -/// @param propertyGroupLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupLookup:(DBFILEPROPERTIESLookUpPropertiesError *)propertyGroupLookup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertyGroupLookup` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "property_group_lookup". -/// -- (BOOL)isPropertyGroupLookup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESRemovePropertiesError` -/// union. -/// -@interface DBFILEPROPERTIESRemovePropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESRemovePropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESRemovePropertiesError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESRemovePropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESRemovePropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemovePropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESRemovePropertiesError` -/// object. -/// -+ (DBFILEPROPERTIESRemovePropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemoveTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemoveTemplateArg.h deleted file mode 100644 index 67ccf634..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRemoveTemplateArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESRemoveTemplateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESRemoveTemplateArg : NSObject - -#pragma mark - Instance fields - -/// An identifier for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for a template created by -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveTemplateArg` struct. -/// -@interface DBFILEPROPERTIESRemoveTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESRemoveTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESRemoveTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemoveTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESRemoveTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESRemoveTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESRemoveTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESRemoveTemplateArg` object. -/// -+ (DBFILEPROPERTIESRemoveTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRouteObjects.h deleted file mode 100644 index a266b65e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESRouteObjects.h +++ /dev/null @@ -1,70 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the FileProperties namespace. Each route in the -/// FileProperties namespace has its own static object, which contains -/// information about the route. -/// -@interface DBFILEPROPERTIESRouteObjects : NSObject - -/// Accessor method for the propertiesAdd route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesAdd; - -/// Accessor method for the propertiesOverwrite route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesOverwrite; - -/// Accessor method for the propertiesRemove route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesRemove; - -/// Accessor method for the propertiesSearch route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesSearch; - -/// Accessor method for the propertiesSearchContinue route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesSearchContinue; - -/// Accessor method for the propertiesUpdate route object. -+ (DBRoute *)DBFILEPROPERTIESPropertiesUpdate; - -/// Accessor method for the templatesAddForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesAddForTeam; - -/// Accessor method for the templatesAddForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesAddForUser; - -/// Accessor method for the templatesGetForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesGetForTeam; - -/// Accessor method for the templatesGetForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesGetForUser; - -/// Accessor method for the templatesListForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesListForTeam; - -/// Accessor method for the templatesListForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesListForUser; - -/// Accessor method for the templatesRemoveForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesRemoveForTeam; - -/// Accessor method for the templatesRemoveForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesRemoveForUser; - -/// Accessor method for the templatesUpdateForTeam route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesUpdateForTeam; - -/// Accessor method for the templatesUpdateForUser route object. -+ (DBRoute *)DBFILEPROPERTIESTemplatesUpdateForUser; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTeamAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTeamAuthRoutes.h deleted file mode 100644 index fa79877c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTeamAuthRoutes.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESAddTemplateResult; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLogicalOperator; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESModifyTemplateError; -@class DBFILEPROPERTIESPropertiesSearchContinueError; -@class DBFILEPROPERTIESPropertiesSearchError; -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertiesSearchMode; -@class DBFILEPROPERTIESPropertiesSearchQuery; -@class DBFILEPROPERTIESPropertiesSearchResult; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESPropertyType; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilter; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILEPROPERTIESUpdateTemplateResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `FileProperties` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILEPROPERTIESTeamAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILEPROPERTIESTeamAuthRoutes` namespace container object -/// with a networking client. -- (instancetype)init:(id)client; - -/// -/// Add a template associated with a team. See `propertiesAdd` to add properties to a file or folder. Note: this -/// endpoint will create team-owned templates. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESAddTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesAddForTeam:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -/// -/// Get the schema for a specified template. -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesGetForTeam: - (NSString *)templateId; - -/// -/// Get the template identifiers for a team. To get the schema of each template use `templatesGetForTeam`. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesListForTeam; - -/// -/// Permanently removes the specified template created from `templatesAddForUser`. All properties associated with the -/// template will also be removed. This action cannot be undone. -/// -/// @param templateId An identifier for a template created by `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesRemoveForTeam:(NSString *)templateId; - -/// -/// Update a template associated with a team. This route can update the template name, the template description and add -/// optional properties to templates. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *)templatesUpdateForTeam: - (NSString *)templateId; - -/// -/// Update a template associated with a team. This route can update the template name, the template description and add -/// optional properties to templates. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 bytes. -/// @param description_ Description for the new template. Template descriptions can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. There can be up to 32 properties in a -/// single template. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesUpdateForTeam:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateError.h deleted file mode 100644 index ac2ef7e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateError.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateErrorTag` enum type represents the possible tag -/// states with which the `DBFILEPROPERTIESTemplateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESTemplateErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESTemplateErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESTemplateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateError` union. -/// -@interface DBFILEPROPERTIESTemplateErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateError` object. -/// -+ (DBFILEPROPERTIESTemplateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateFilter.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateFilter.h deleted file mode 100644 index 8edf7cc8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateFilter.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateFilter` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateFilter : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateFilterTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESTemplateFilter` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateFilterTag) { - /// Only templates with an ID in the supplied list will be returned (a - /// subset of templates will be returned). - DBFILEPROPERTIESTemplateFilterFilterSome, - - /// (no description). - DBFILEPROPERTIESTemplateFilterOther, - - /// No templates will be filtered from the result (all templates will be - /// returned). - DBFILEPROPERTIESTemplateFilterFilterNone, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateFilterTag tag; - -/// Only templates with an ID in the supplied list will be returned (a subset of -/// templates will be returned). @note Ensure the `isFilterSome` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *filterSome; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filter_some". -/// -/// Description of the "filter_some" tag state: Only templates with an ID in the -/// supplied list will be returned (a subset of templates will be returned). -/// -/// @param filterSome Only templates with an ID in the supplied list will be -/// returned (a subset of templates will be returned). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterSome:(NSArray *)filterSome; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "filter_none". -/// -/// Description of the "filter_none" tag state: No templates will be filtered -/// from the result (all templates will be returned). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterNone; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filter_some". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filterSome` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "filter_some". -/// -- (BOOL)isFilterSome; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "filter_none". -/// -/// @return Whether the union's current tag state has value "filter_none". -/// -- (BOOL)isFilterNone; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateFilter` union. -/// -@interface DBFILEPROPERTIESTemplateFilterSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateFilter` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateFilter` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilter` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateFilter *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateFilter` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilter` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateFilter` object. -/// -+ (DBFILEPROPERTIESTemplateFilter *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateFilterBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateFilterBase.h deleted file mode 100644 index 55bf14a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateFilterBase.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateFilterBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateFilterBase : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateFilterBaseTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESTemplateFilterBase` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateFilterBaseTag) { - /// Only templates with an ID in the supplied list will be returned (a - /// subset of templates will be returned). - DBFILEPROPERTIESTemplateFilterBaseFilterSome, - - /// (no description). - DBFILEPROPERTIESTemplateFilterBaseOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateFilterBaseTag tag; - -/// Only templates with an ID in the supplied list will be returned (a subset of -/// templates will be returned). @note Ensure the `isFilterSome` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *filterSome; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filter_some". -/// -/// Description of the "filter_some" tag state: Only templates with an ID in the -/// supplied list will be returned (a subset of templates will be returned). -/// -/// @param filterSome Only templates with an ID in the supplied list will be -/// returned (a subset of templates will be returned). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterSome:(NSArray *)filterSome; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filter_some". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filterSome` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "filter_some". -/// -- (BOOL)isFilterSome; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateFilterBase` union. -/// -@interface DBFILEPROPERTIESTemplateFilterBaseSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateFilterBase` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateFilterBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilterBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateFilterBase *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateFilterBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateFilterBase` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateFilterBase` object. -/// -+ (DBFILEPROPERTIESTemplateFilterBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateOwnerType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateOwnerType.h deleted file mode 100644 index 84e3e953..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESTemplateOwnerType.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateOwnerType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TemplateOwnerType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESTemplateOwnerType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESTemplateOwnerTypeTag` enum type represents the possible -/// tag states with which the `DBFILEPROPERTIESTemplateOwnerType` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESTemplateOwnerTypeTag) { - /// Template will be associated with a user. - DBFILEPROPERTIESTemplateOwnerTypeUser, - - /// Template will be associated with a team. - DBFILEPROPERTIESTemplateOwnerTypeTeam, - - /// (no description). - DBFILEPROPERTIESTemplateOwnerTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateOwnerTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user". -/// -/// Description of the "user" tag state: Template will be associated with a -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Template will be associated with a -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user". -/// -/// @return Whether the union's current tag state has value "user". -/// -- (BOOL)isUser; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESTemplateOwnerType` union. -/// -@interface DBFILEPROPERTIESTemplateOwnerTypeSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESTemplateOwnerType` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESTemplateOwnerType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateOwnerType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESTemplateOwnerType *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESTemplateOwnerType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESTemplateOwnerType` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESTemplateOwnerType` object. -/// -+ (DBFILEPROPERTIESTemplateOwnerType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h deleted file mode 100644 index 569f7967..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdatePropertiesArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESUpdatePropertiesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdatePropertiesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdatePropertiesArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file or folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The property groups "delta" updates to apply. -@property (nonatomic, readonly) NSArray *updatePropertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file or folder. -/// @param updatePropertyGroups The property groups "delta" updates to apply. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - updatePropertyGroups:(NSArray *)updatePropertyGroups; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdatePropertiesArg` struct. -/// -@interface DBFILEPROPERTIESUpdatePropertiesArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdatePropertiesArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdatePropertiesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdatePropertiesArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdatePropertiesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdatePropertiesArg` -/// object. -/// -+ (DBFILEPROPERTIESUpdatePropertiesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdatePropertiesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdatePropertiesError.h deleted file mode 100644 index 6df8ce25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdatePropertiesError.h +++ /dev/null @@ -1,303 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESUpdatePropertiesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdatePropertiesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdatePropertiesError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEPROPERTIESUpdatePropertiesErrorTag` enum type represents the -/// possible tag states with which the `DBFILEPROPERTIESUpdatePropertiesError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEPROPERTIESUpdatePropertiesErrorTag) { - /// Template does not exist for the given identifier. - DBFILEPROPERTIESUpdatePropertiesErrorTemplateNotFound, - - /// You do not have permission to modify this template. - DBFILEPROPERTIESUpdatePropertiesErrorRestrictedContent, - - /// (no description). - DBFILEPROPERTIESUpdatePropertiesErrorOther, - - /// (no description). - DBFILEPROPERTIESUpdatePropertiesErrorPath, - - /// This folder cannot be tagged. Tagging folders is not supported for - /// team-owned templates. - DBFILEPROPERTIESUpdatePropertiesErrorUnsupportedFolder, - - /// One or more of the supplied property field values is too large. - DBFILEPROPERTIESUpdatePropertiesErrorPropertyFieldTooLarge, - - /// One or more of the supplied property fields does not conform to the - /// template specifications. - DBFILEPROPERTIESUpdatePropertiesErrorDoesNotFitTemplate, - - /// There are 2 or more property groups referring to the same templates in - /// the input. - DBFILEPROPERTIESUpdatePropertiesErrorDuplicatePropertyGroups, - - /// (no description). - DBFILEPROPERTIESUpdatePropertiesErrorPropertyGroupLookup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEPROPERTIESUpdatePropertiesErrorTag tag; - -/// Template does not exist for the given identifier. @note Ensure the -/// `isTemplateNotFound` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *templateNotFound; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookupError *path; - -/// (no description). @note Ensure the `isPropertyGroupLookup` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertyGroupLookup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "template_not_found". -/// -/// Description of the "template_not_found" tag state: Template does not exist -/// for the given identifier. -/// -/// @param templateNotFound Template does not exist for the given identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateNotFound:(NSString *)templateNotFound; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: You do not have -/// permission to modify this template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILEPROPERTIESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_folder". -/// -/// Description of the "unsupported_folder" tag state: This folder cannot be -/// tagged. Tagging folders is not supported for team-owned templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFolder; - -/// -/// Initializes union class with tag state of "property_field_too_large". -/// -/// Description of the "property_field_too_large" tag state: One or more of the -/// supplied property field values is too large. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyFieldTooLarge; - -/// -/// Initializes union class with tag state of "does_not_fit_template". -/// -/// Description of the "does_not_fit_template" tag state: One or more of the -/// supplied property fields does not conform to the template specifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDoesNotFitTemplate; - -/// -/// Initializes union class with tag state of "duplicate_property_groups". -/// -/// Description of the "duplicate_property_groups" tag state: There are 2 or -/// more property groups referring to the same templates in the input. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatePropertyGroups; - -/// -/// Initializes union class with tag state of "property_group_lookup". -/// -/// @param propertyGroupLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertyGroupLookup:(DBFILEPROPERTIESLookUpPropertiesError *)propertyGroupLookup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "template_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "template_not_found". -/// -- (BOOL)isTemplateNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_folder". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_folder". -/// -- (BOOL)isUnsupportedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_field_too_large". -/// -/// @return Whether the union's current tag state has value -/// "property_field_too_large". -/// -- (BOOL)isPropertyFieldTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "does_not_fit_template". -/// -/// @return Whether the union's current tag state has value -/// "does_not_fit_template". -/// -- (BOOL)isDoesNotFitTemplate; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_property_groups". -/// -/// @return Whether the union's current tag state has value -/// "duplicate_property_groups". -/// -- (BOOL)isDuplicatePropertyGroups; - -/// -/// Retrieves whether the union's current tag state has value -/// "property_group_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertyGroupLookup` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "property_group_lookup". -/// -- (BOOL)isPropertyGroupLookup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEPROPERTIESUpdatePropertiesError` -/// union. -/// -@interface DBFILEPROPERTIESUpdatePropertiesErrorSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdatePropertiesError` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdatePropertiesError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdatePropertiesError *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdatePropertiesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdatePropertiesError` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdatePropertiesError` -/// object. -/// -+ (DBFILEPROPERTIESUpdatePropertiesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdateTemplateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdateTemplateArg.h deleted file mode 100644 index 8529dc84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdateTemplateArg.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESUpdateTemplateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateTemplateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdateTemplateArg : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -/// A display name for the template. template names can be up to 256 bytes. -@property (nonatomic, readonly, copy, nullable) NSString *name; - -/// Description for the new template. Template descriptions can be up to 1024 -/// bytes. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// Property field templates to be added to the group template. There can be up -/// to 32 properties in a single template. -@property (nonatomic, readonly, nullable) NSArray *addFields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 -/// bytes. -/// @param description_ Description for the new template. Template descriptions -/// can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. -/// There can be up to 32 properties in a single template. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param templateId An identifier for template added by See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateTemplateArg` struct. -/// -@interface DBFILEPROPERTIESUpdateTemplateArgSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdateTemplateArg` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdateTemplateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdateTemplateArg *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdateTemplateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateArg` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdateTemplateArg` object. -/// -+ (DBFILEPROPERTIESUpdateTemplateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdateTemplateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdateTemplateResult.h deleted file mode 100644 index 3afa2b59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUpdateTemplateResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESUpdateTemplateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateTemplateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEPROPERTIESUpdateTemplateResult : NSObject - -#pragma mark - Instance fields - -/// An identifier for template added by route See `templatesAddForUser` or -/// `templatesAddForTeam`. -@property (nonatomic, readonly, copy) NSString *templateId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param templateId An identifier for template added by route See -/// `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateId:(NSString *)templateId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateTemplateResult` struct. -/// -@interface DBFILEPROPERTIESUpdateTemplateResultSerializer : NSObject - -/// -/// Serializes `DBFILEPROPERTIESUpdateTemplateResult` instances. -/// -/// @param instance An instance of the `DBFILEPROPERTIESUpdateTemplateResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEPROPERTIESUpdateTemplateResult *)instance; - -/// -/// Deserializes `DBFILEPROPERTIESUpdateTemplateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEPROPERTIESUpdateTemplateResult` API object. -/// -/// @return An instantiation of the `DBFILEPROPERTIESUpdateTemplateResult` -/// object. -/// -+ (DBFILEPROPERTIESUpdateTemplateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUserAuthRoutes.h deleted file mode 100644 index b2368ebf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEPROPERTIESUserAuthRoutes.h +++ /dev/null @@ -1,232 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESAddTemplateResult; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLogicalOperator; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESModifyTemplateError; -@class DBFILEPROPERTIESPropertiesSearchContinueError; -@class DBFILEPROPERTIESPropertiesSearchError; -@class DBFILEPROPERTIESPropertiesSearchMatch; -@class DBFILEPROPERTIESPropertiesSearchMode; -@class DBFILEPROPERTIESPropertiesSearchQuery; -@class DBFILEPROPERTIESPropertiesSearchResult; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESPropertyType; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilter; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILEPROPERTIESUpdateTemplateResult; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `FileProperties` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILEPROPERTIESUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILEPROPERTIESUserAuthRoutes` namespace container object -/// with a networking client. -- (instancetype)init:(id)client; - -/// -/// Add property groups to a Dropbox file. See `templatesAddForUser` or `templatesAddForTeam` to create new templates. -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups which are to be added to a Dropbox file. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESAddPropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesAdd:(NSString *)path - propertyGroups:(NSArray *)propertyGroups; - -/// -/// Overwrite property groups associated with a file. This endpoint should be used instead of `propertiesUpdate` when -/// property groups are being updated via a "snapshot" instead of via a "delta". In other words, this endpoint will -/// delete all omitted fields from a property group, whereas `propertiesUpdate` will only delete fields that are -/// explicitly marked for deletion. -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups "snapshot" updates to force apply. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESInvalidPropertyGroupError` object on failure. -/// -- (DBRpcTask *) - propertiesOverwrite:(NSString *)path - propertyGroups:(NSArray *)propertyGroups; - -/// -/// Permanently removes the specified property group from the file. To remove specific property field key value pairs, -/// see `propertiesUpdate`. To update a template, see `templatesUpdateForUser` or `templatesUpdateForTeam`. To remove a -/// template, see `templatesRemoveForUser` or `templatesRemoveForTeam`. -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyTemplateIds A list of identifiers for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESRemovePropertiesError` object on failure. -/// -- (DBRpcTask *)propertiesRemove:(NSString *)path - propertyTemplateIds: - (NSArray *)propertyTemplateIds; - -/// -/// Search across property templates for particular property field values. -/// -/// @param queries Queries to search. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESPropertiesSearchResult` object on -/// success or a `DBFILEPROPERTIESPropertiesSearchError` object on failure. -/// -- (DBRpcTask *)propertiesSearch: - (NSArray *)queries; - -/// -/// Search across property templates for particular property field values. -/// -/// @param queries Queries to search. -/// @param templateFilter Filter results to contain only properties associated with these template IDs. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESPropertiesSearchResult` object on -/// success or a `DBFILEPROPERTIESPropertiesSearchError` object on failure. -/// -- (DBRpcTask *) - propertiesSearch:(NSArray *)queries - templateFilter:(nullable DBFILEPROPERTIESTemplateFilter *)templateFilter; - -/// -/// Once a cursor has been retrieved from `propertiesSearch`, use this to paginate through all search results. -/// -/// @param cursor The cursor returned by your last call to `propertiesSearch` or `propertiesSearchContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESPropertiesSearchResult` object on -/// success or a `DBFILEPROPERTIESPropertiesSearchContinueError` object on failure. -/// -- (DBRpcTask *) - propertiesSearchContinue:(NSString *)cursor; - -/// -/// Add, update or remove properties associated with the supplied file and templates. This endpoint should be used -/// instead of `propertiesOverwrite` when property groups are being updated via a "delta" instead of via a "snapshot" . -/// In other words, this endpoint will not delete any omitted fields from a property group, whereas -/// `propertiesOverwrite` will delete any fields that are omitted from a property group. -/// -/// @param path A unique identifier for the file or folder. -/// @param updatePropertyGroups The property groups "delta" updates to apply. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESUpdatePropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesUpdate:(NSString *)path - updatePropertyGroups:(NSArray *)updatePropertyGroups; - -/// -/// Add a template associated with a user. See `propertiesAdd` to add properties to a file. This endpoint can't be -/// called on a team member or admin's behalf. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESAddTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesAddForUser:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields; - -/// -/// Get the schema for a specified template. This endpoint can't be called on a team member or admin's behalf. -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesGetForUser: - (NSString *)templateId; - -/// -/// Get the template identifiers for a team. To get the schema of each template use `templatesGetForUser`. This endpoint -/// can't be called on a team member or admin's behalf. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesListForUser; - -/// -/// Permanently removes the specified template created from `templatesAddForUser`. All properties associated with the -/// template will also be removed. This action cannot be undone. -/// -/// @param templateId An identifier for a template created by `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)templatesRemoveForUser:(NSString *)templateId; - -/// -/// Update a template associated with a user. This route can update the template name, the template description and add -/// optional properties to templates. This endpoint can't be called on a team member or admin's behalf. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *)templatesUpdateForUser: - (NSString *)templateId; - -/// -/// Update a template associated with a user. This route can update the template name, the template description and add -/// optional properties to templates. This endpoint can't be called on a team member or admin's behalf. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 bytes. -/// @param description_ Description for the new template. Template descriptions can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. There can be up to 32 properties in a -/// single template. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - templatesUpdateForUser:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCountFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCountFileRequestsError.h deleted file mode 100644 index f47d37fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCountFileRequestsError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCountFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CountFileRequestsError` union. -/// -/// There was an error counting the file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCountFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSCountFileRequestsErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSCountFileRequestsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSCountFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSCountFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSCountFileRequestsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSCountFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSCountFileRequestsError` -/// union. -/// -@interface DBFILEREQUESTSCountFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCountFileRequestsError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCountFileRequestsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCountFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCountFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCountFileRequestsError` -/// object. -/// -+ (DBFILEREQUESTSCountFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCountFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCountFileRequestsResult.h deleted file mode 100644 index 329d691f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCountFileRequestsResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCountFileRequestsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CountFileRequestsResult` struct. -/// -/// Result for `count`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCountFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The number file requests owner by this user. -@property (nonatomic, readonly) NSNumber *fileRequestCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestCount The number file requests owner by this user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCount:(NSNumber *)fileRequestCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CountFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSCountFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCountFileRequestsResult` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCountFileRequestsResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCountFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCountFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCountFileRequestsResult` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCountFileRequestsResult` -/// object. -/// -+ (DBFILEREQUESTSCountFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCreateFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCreateFileRequestArgs.h deleted file mode 100644 index 151b9dd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCreateFileRequestArgs.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCreateFileRequestArgs; -@class DBFILEREQUESTSFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFileRequestArgs` struct. -/// -/// Arguments for `create`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCreateFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// The title of the file request. Must not be empty. -@property (nonatomic, readonly, copy) NSString *title; - -/// The path of the folder in the Dropbox where uploaded files will be sent. For -/// apps with the app folder permission, this will be relative to the app -/// folder. -@property (nonatomic, readonly, copy) NSString *destination; - -/// The deadline for the file request. Deadlines can only be set by Professional -/// and Business accounts. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSFileRequestDeadline *deadline; - -/// Whether or not the file request should be open. If the file request is -/// closed, it will not accept any file submissions, but it can be opened later. -@property (nonatomic, readonly) NSNumber *open; - -/// A description of the file request. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded -/// files will be sent. For apps with the app folder permission, this will be -/// relative to the app folder. -/// @param deadline The deadline for the file request. Deadlines can only be set -/// by Professional and Business accounts. -/// @param open Whether or not the file request should be open. If the file -/// request is closed, it will not accept any file submissions, but it can be -/// opened later. -/// @param description_ A description of the file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTitle:(NSString *)title - destination:(NSString *)destination - deadline:(nullable DBFILEREQUESTSFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded -/// files will be sent. For apps with the app folder permission, this will be -/// relative to the app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTitle:(NSString *)title destination:(NSString *)destination; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSCreateFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCreateFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCreateFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCreateFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCreateFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCreateFileRequestArgs` -/// object. -/// -+ (DBFILEREQUESTSCreateFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCreateFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCreateFileRequestError.h deleted file mode 100644 index 4d61a2d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSCreateFileRequestError.h +++ /dev/null @@ -1,298 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSCreateFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFileRequestError` union. -/// -/// There was an error creating the file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSCreateFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSCreateFileRequestErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSCreateFileRequestError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSCreateFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSCreateFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSCreateFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSCreateFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSCreateFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSCreateFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSCreateFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSCreateFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSCreateFileRequestErrorValidationError, - - /// File requests are not available on the specified folder. - DBFILEREQUESTSCreateFileRequestErrorInvalidLocation, - - /// The user has reached the rate limit for creating file requests. The - /// limit is currently 4000 file requests total. - DBFILEREQUESTSCreateFileRequestErrorRateLimit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSCreateFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -/// -/// Initializes union class with tag state of "invalid_location". -/// -/// Description of the "invalid_location" tag state: File requests are not -/// available on the specified folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidLocation; - -/// -/// Initializes union class with tag state of "rate_limit". -/// -/// Description of the "rate_limit" tag state: The user has reached the rate -/// limit for creating file requests. The limit is currently 4000 file requests -/// total. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_location". -/// -/// @return Whether the union's current tag state has value "invalid_location". -/// -- (BOOL)isInvalidLocation; - -/// -/// Retrieves whether the union's current tag state has value "rate_limit". -/// -/// @return Whether the union's current tag state has value "rate_limit". -/// -- (BOOL)isRateLimit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSCreateFileRequestError` -/// union. -/// -@interface DBFILEREQUESTSCreateFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSCreateFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSCreateFileRequestError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSCreateFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSCreateFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSCreateFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSCreateFileRequestError` -/// object. -/// -+ (DBFILEREQUESTSCreateFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h deleted file mode 100644 index 3f4947d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsError.h +++ /dev/null @@ -1,255 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteAllClosedFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteAllClosedFileRequestsError` union. -/// -/// There was an error deleting all closed file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSDeleteAllClosedFileRequestsErrorTag` enum type represents -/// the possible tag states with which the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSDeleteAllClosedFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSDeleteAllClosedFileRequestsErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSDeleteAllClosedFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` union. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteAllClosedFileRequestsError` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteAllClosedFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteAllClosedFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` API object. -/// -/// @return An instantiation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsError` object. -/// -+ (DBFILEREQUESTSDeleteAllClosedFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h deleted file mode 100644 index ef76760b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteAllClosedFileRequestsResult; -@class DBFILEREQUESTSFileRequest; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteAllClosedFileRequestsResult` struct. -/// -/// Result for `deleteAllClosed`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The file requests deleted for this user. -@property (nonatomic, readonly) NSArray *fileRequests; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests deleted for this user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteAllClosedFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSDeleteAllClosedFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteAllClosedFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` API object. -/// -/// @return An instantiation of the -/// `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` object. -/// -+ (DBFILEREQUESTSDeleteAllClosedFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h deleted file mode 100644 index a9c38362..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestArgs.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteFileRequestArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteFileRequestArgs` struct. -/// -/// Arguments for `delete_`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// List IDs of the file requests to delete. -@property (nonatomic, readonly) NSArray *ids; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ids List IDs of the file requests to delete. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIds:(NSArray *)ids; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSDeleteFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSDeleteFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSDeleteFileRequestArgs` -/// object. -/// -+ (DBFILEREQUESTSDeleteFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestError.h deleted file mode 100644 index 988bad06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestError.h +++ /dev/null @@ -1,276 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteFileRequestError` union. -/// -/// There was an error deleting these file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSDeleteFileRequestErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSDeleteFileRequestError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSDeleteFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSDeleteFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSDeleteFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSDeleteFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSDeleteFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSDeleteFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSDeleteFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSDeleteFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSDeleteFileRequestErrorValidationError, - - /// One or more file requests currently open. - DBFILEREQUESTSDeleteFileRequestErrorFileRequestOpen, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSDeleteFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -/// -/// Initializes union class with tag state of "file_request_open". -/// -/// Description of the "file_request_open" tag state: One or more file requests -/// currently open. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestOpen; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_open". -/// -/// @return Whether the union's current tag state has value "file_request_open". -/// -- (BOOL)isFileRequestOpen; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSDeleteFileRequestError` -/// union. -/// -@interface DBFILEREQUESTSDeleteFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSDeleteFileRequestError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSDeleteFileRequestError` -/// object. -/// -+ (DBFILEREQUESTSDeleteFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h deleted file mode 100644 index eac4f170..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSDeleteFileRequestsResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSDeleteFileRequestsResult; -@class DBFILEREQUESTSFileRequest; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteFileRequestsResult` struct. -/// -/// Result for `delete_`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSDeleteFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The file requests deleted by the request. -@property (nonatomic, readonly) NSArray *fileRequests; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests deleted by the request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSDeleteFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSDeleteFileRequestsResult` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSDeleteFileRequestsResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSDeleteFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSDeleteFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSDeleteFileRequestsResult` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSDeleteFileRequestsResult` -/// object. -/// -+ (DBFILEREQUESTSDeleteFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequest.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequest.h deleted file mode 100644 index 86cebac2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequest.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequest` struct. -/// -/// A file request https://www.dropbox.com/help/9090 for receiving files into -/// the user's Dropbox account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSFileRequest : NSObject - -#pragma mark - Instance fields - -/// The ID of the file request. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The URL of the file request. -@property (nonatomic, readonly, copy) NSString *url; - -/// The title of the file request. -@property (nonatomic, readonly, copy) NSString *title; - -/// The path of the folder in the Dropbox where uploaded files will be sent. -/// This can be null if the destination was removed. For apps with the app -/// folder permission, this will be relative to the app folder. -@property (nonatomic, readonly, copy, nullable) NSString *destination; - -/// When this file request was created. -@property (nonatomic, readonly) NSDate *created; - -/// The deadline for this file request. Only set if the request has a deadline. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSFileRequestDeadline *deadline; - -/// Whether or not the file request is open. If the file request is closed, it -/// will not accept any more file submissions. -@property (nonatomic, readonly) NSNumber *isOpen; - -/// The number of files this file request has received. -@property (nonatomic, readonly) NSNumber *fileCount; - -/// A description of the file request. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file request. -/// @param url The URL of the file request. -/// @param title The title of the file request. -/// @param created When this file request was created. -/// @param isOpen Whether or not the file request is open. If the file request -/// is closed, it will not accept any more file submissions. -/// @param fileCount The number of files this file request has received. -/// @param destination The path of the folder in the Dropbox where uploaded -/// files will be sent. This can be null if the destination was removed. For -/// apps with the app folder permission, this will be relative to the app -/// folder. -/// @param deadline The deadline for this file request. Only set if the request -/// has a deadline. -/// @param description_ A description of the file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - url:(NSString *)url - title:(NSString *)title - created:(NSDate *)created - isOpen:(NSNumber *)isOpen - fileCount:(NSNumber *)fileCount - destination:(nullable NSString *)destination - deadline:(nullable DBFILEREQUESTSFileRequestDeadline *)deadline - description_:(nullable NSString *)description_; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The ID of the file request. -/// @param url The URL of the file request. -/// @param title The title of the file request. -/// @param created When this file request was created. -/// @param isOpen Whether or not the file request is open. If the file request -/// is closed, it will not accept any more file submissions. -/// @param fileCount The number of files this file request has received. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - url:(NSString *)url - title:(NSString *)title - created:(NSDate *)created - isOpen:(NSNumber *)isOpen - fileCount:(NSNumber *)fileCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequest` struct. -/// -@interface DBFILEREQUESTSFileRequestSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSFileRequest` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSFileRequest` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequest` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSFileRequest *)instance; - -/// -/// Deserializes `DBFILEREQUESTSFileRequest` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequest` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSFileRequest` object. -/// -+ (DBFILEREQUESTSFileRequest *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequestDeadline.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequestDeadline.h deleted file mode 100644 index 1be267b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequestDeadline.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequestDeadline; -@class DBFILEREQUESTSGracePeriod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeadline` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSFileRequestDeadline : NSObject - -#pragma mark - Instance fields - -/// The deadline for this file request. -@property (nonatomic, readonly) NSDate *deadline; - -/// If set, allow uploads after the deadline has passed. These uploads will -/// be marked overdue. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSGracePeriod *allowLateUploads; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deadline The deadline for this file request. -/// @param allowLateUploads If set, allow uploads after the deadline has passed. -/// These uploads will be marked overdue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeadline:(NSDate *)deadline - allowLateUploads:(nullable DBFILEREQUESTSGracePeriod *)allowLateUploads; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deadline The deadline for this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeadline:(NSDate *)deadline; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeadline` struct. -/// -@interface DBFILEREQUESTSFileRequestDeadlineSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSFileRequestDeadline` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSFileRequestDeadline` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestDeadline` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSFileRequestDeadline *)instance; - -/// -/// Deserializes `DBFILEREQUESTSFileRequestDeadline` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestDeadline` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSFileRequestDeadline` object. -/// -+ (DBFILEREQUESTSFileRequestDeadline *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequestError.h deleted file mode 100644 index 896e996d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSFileRequestError.h +++ /dev/null @@ -1,252 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestError` union. -/// -/// There is an error with the file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSFileRequestErrorTag` enum type represents the possible -/// tag states with which the `DBFILEREQUESTSFileRequestError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSFileRequestErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSFileRequestError` union. -/// -@interface DBFILEREQUESTSFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSFileRequestError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSFileRequestError` object. -/// -+ (DBFILEREQUESTSFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGeneralFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGeneralFileRequestsError.h deleted file mode 100644 index cc0793bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGeneralFileRequestsError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGeneralFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GeneralFileRequestsError` union. -/// -/// There is an error accessing the file requests functionality. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGeneralFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSGeneralFileRequestsErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSGeneralFileRequestsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSGeneralFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSGeneralFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSGeneralFileRequestsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSGeneralFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSGeneralFileRequestsError` -/// union. -/// -@interface DBFILEREQUESTSGeneralFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGeneralFileRequestsError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGeneralFileRequestsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGeneralFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGeneralFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGeneralFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGeneralFileRequestsError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGeneralFileRequestsError` -/// object. -/// -+ (DBFILEREQUESTSGeneralFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGetFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGetFileRequestArgs.h deleted file mode 100644 index 76180e13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGetFileRequestArgs.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGetFileRequestArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileRequestArgs` struct. -/// -/// Arguments for `get`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGetFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// The ID of the file request to retrieve. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file request to retrieve. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSGetFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGetFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGetFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGetFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGetFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGetFileRequestArgs` object. -/// -+ (DBFILEREQUESTSGetFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGetFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGetFileRequestError.h deleted file mode 100644 index 58cbc59a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGetFileRequestError.h +++ /dev/null @@ -1,253 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGetFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileRequestError` union. -/// -/// There was an error retrieving the specified file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGetFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSGetFileRequestErrorTag` enum type represents the possible -/// tag states with which the `DBFILEREQUESTSGetFileRequestError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSGetFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSGetFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSGetFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSGetFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSGetFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSGetFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSGetFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSGetFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSGetFileRequestErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSGetFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSGetFileRequestError` union. -/// -@interface DBFILEREQUESTSGetFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGetFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGetFileRequestError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGetFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGetFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGetFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGetFileRequestError` object. -/// -+ (DBFILEREQUESTSGetFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGracePeriod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGracePeriod.h deleted file mode 100644 index f7fcf589..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSGracePeriod.h +++ /dev/null @@ -1,182 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSGracePeriod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GracePeriod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSGracePeriod : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSGracePeriodTag` enum type represents the possible tag -/// states with which the `DBFILEREQUESTSGracePeriod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSGracePeriodTag) { - /// (no description). - DBFILEREQUESTSGracePeriodOneDay, - - /// (no description). - DBFILEREQUESTSGracePeriodTwoDays, - - /// (no description). - DBFILEREQUESTSGracePeriodSevenDays, - - /// (no description). - DBFILEREQUESTSGracePeriodThirtyDays, - - /// (no description). - DBFILEREQUESTSGracePeriodAlways, - - /// (no description). - DBFILEREQUESTSGracePeriodOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSGracePeriodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "one_day". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOneDay; - -/// -/// Initializes union class with tag state of "two_days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoDays; - -/// -/// Initializes union class with tag state of "seven_days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSevenDays; - -/// -/// Initializes union class with tag state of "thirty_days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithThirtyDays; - -/// -/// Initializes union class with tag state of "always". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlways; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "one_day". -/// -/// @return Whether the union's current tag state has value "one_day". -/// -- (BOOL)isOneDay; - -/// -/// Retrieves whether the union's current tag state has value "two_days". -/// -/// @return Whether the union's current tag state has value "two_days". -/// -- (BOOL)isTwoDays; - -/// -/// Retrieves whether the union's current tag state has value "seven_days". -/// -/// @return Whether the union's current tag state has value "seven_days". -/// -- (BOOL)isSevenDays; - -/// -/// Retrieves whether the union's current tag state has value "thirty_days". -/// -/// @return Whether the union's current tag state has value "thirty_days". -/// -- (BOOL)isThirtyDays; - -/// -/// Retrieves whether the union's current tag state has value "always". -/// -/// @return Whether the union's current tag state has value "always". -/// -- (BOOL)isAlways; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSGracePeriod` union. -/// -@interface DBFILEREQUESTSGracePeriodSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSGracePeriod` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSGracePeriod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGracePeriod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSGracePeriod *)instance; - -/// -/// Deserializes `DBFILEREQUESTSGracePeriod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSGracePeriod` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSGracePeriod` object. -/// -+ (DBFILEREQUESTSGracePeriod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsArg.h deleted file mode 100644 index ad95374b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsArg` struct. -/// -/// Arguments for `list`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsArg : NSObject - -#pragma mark - Instance fields - -/// The maximum number of file requests that should be returned per request. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximum number of file requests that should be returned per -/// request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsArg` struct. -/// -@interface DBFILEREQUESTSListFileRequestsArgSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsArg` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsArg *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsArg` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsArg` object. -/// -+ (DBFILEREQUESTSListFileRequestsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h deleted file mode 100644 index a1d6cdfa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by the previous API call specified in the endpoint -/// description. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by the previous API call specified in the -/// endpoint description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsContinueArg` struct. -/// -@interface DBFILEREQUESTSListFileRequestsContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsContinueArg` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSListFileRequestsContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsContinueArg *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueArg` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsContinueArg` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsContinueError.h deleted file mode 100644 index 088f0291..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsContinueError.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsContinueError` union. -/// -/// There was an error retrieving the file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSListFileRequestsContinueErrorTag` enum type represents -/// the possible tag states with which the -/// `DBFILEREQUESTSListFileRequestsContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSListFileRequestsContinueErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSListFileRequestsContinueErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSListFileRequestsContinueErrorOther, - - /// The cursor is invalid. - DBFILEREQUESTSListFileRequestsContinueErrorInvalidCursor, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSListFileRequestsContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBFILEREQUESTSListFileRequestsContinueError` union. -/// -@interface DBFILEREQUESTSListFileRequestsContinueErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsContinueError` instances. -/// -/// @param instance An instance of the -/// `DBFILEREQUESTSListFileRequestsContinueError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsContinueError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsContinueError` API object. -/// -/// @return An instantiation of the -/// `DBFILEREQUESTSListFileRequestsContinueError` object. -/// -+ (DBFILEREQUESTSListFileRequestsContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsError.h deleted file mode 100644 index c43ccb8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsError.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSListFileRequestsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsError` union. -/// -/// There was an error retrieving the file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSListFileRequestsErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSListFileRequestsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSListFileRequestsErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSListFileRequestsErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSListFileRequestsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSListFileRequestsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSListFileRequestsError` union. -/// -@interface DBFILEREQUESTSListFileRequestsErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsError` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsResult.h deleted file mode 100644 index 11bf04cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSListFileRequestsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsResult` struct. -/// -/// Result for `list`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsResult : NSObject - -#pragma mark - Instance fields - -/// The file requests owned by this user. Apps with the app folder permission -/// will only see file requests in their app folder. -@property (nonatomic, readonly) NSArray *fileRequests; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests owned by this user. Apps with the app -/// folder permission will only see file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsResult` struct. -/// -@interface DBFILEREQUESTSListFileRequestsResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsResult` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsResult *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsResult` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsResult` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsV2Result.h deleted file mode 100644 index 5ae0a931..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSListFileRequestsV2Result.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSListFileRequestsV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileRequestsV2Result` struct. -/// -/// Result for `list` and `listContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSListFileRequestsV2Result : NSObject - -#pragma mark - Instance fields - -/// The file requests owned by this user. Apps with the app folder permission -/// will only see file requests in their app folder. -@property (nonatomic, readonly) NSArray *fileRequests; - -/// Pass the cursor into `listContinue` to obtain additional file requests. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional file requests that have not been returned -/// yet. An additional call to :route:list/continue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequests The file requests owned by this user. Apps with the app -/// folder permission will only see file requests in their app folder. -/// @param cursor Pass the cursor into `listContinue` to obtain additional file -/// requests. -/// @param hasMore Is true if there are additional file requests that have not -/// been returned yet. An additional call to :route:list/continue` can retrieve -/// them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests:(NSArray *)fileRequests - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileRequestsV2Result` struct. -/// -@interface DBFILEREQUESTSListFileRequestsV2ResultSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSListFileRequestsV2Result` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSListFileRequestsV2Result` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSListFileRequestsV2Result *)instance; - -/// -/// Deserializes `DBFILEREQUESTSListFileRequestsV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSListFileRequestsV2Result` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSListFileRequestsV2Result` -/// object. -/// -+ (DBFILEREQUESTSListFileRequestsV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSRouteObjects.h deleted file mode 100644 index 4c38d4f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSRouteObjects.h +++ /dev/null @@ -1,49 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the FileRequests namespace. Each route in the -/// FileRequests namespace has its own static object, which contains information -/// about the route. -/// -@interface DBFILEREQUESTSRouteObjects : NSObject - -/// Accessor method for the count route object. -+ (DBRoute *)DBFILEREQUESTSCount; - -/// Accessor method for the create route object. -+ (DBRoute *)DBFILEREQUESTSCreate; - -/// Accessor method for the delete_ route object. -+ (DBRoute *)DBFILEREQUESTSDelete_; - -/// Accessor method for the deleteAllClosed route object. -+ (DBRoute *)DBFILEREQUESTSDeleteAllClosed; - -/// Accessor method for the get route object. -+ (DBRoute *)DBFILEREQUESTSGet; - -/// Accessor method for the list route object. -+ (DBRoute *)DBFILEREQUESTSList; - -/// Accessor method for the listV2 route object. -+ (DBRoute *)DBFILEREQUESTSListV2; - -/// Accessor method for the listContinue route object. -+ (DBRoute *)DBFILEREQUESTSListContinue; - -/// Accessor method for the update route object. -+ (DBRoute *)DBFILEREQUESTSUpdate; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h deleted file mode 100644 index d9b50f72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestArgs.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSUpdateFileRequestArgs; -@class DBFILEREQUESTSUpdateFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileRequestArgs` struct. -/// -/// Arguments for `update`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSUpdateFileRequestArgs : NSObject - -#pragma mark - Instance fields - -/// The ID of the file request to update. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The new title of the file request. Must not be empty. -@property (nonatomic, readonly, copy, nullable) NSString *title; - -/// The new path of the folder in the Dropbox where uploaded files will be sent. -/// For apps with the app folder permission, this will be relative to the app -/// folder. -@property (nonatomic, readonly, copy, nullable) NSString *destination; - -/// The new deadline for the file request. Deadlines can only be set by -/// Professional and Business accounts. -@property (nonatomic, readonly) DBFILEREQUESTSUpdateFileRequestDeadline *deadline; - -/// Whether to set this file request as open or closed. -@property (nonatomic, readonly, nullable) NSNumber *open; - -/// The description of the file request. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file request to update. -/// @param title The new title of the file request. Must not be empty. -/// @param destination The new path of the folder in the Dropbox where uploaded -/// files will be sent. For apps with the app folder permission, this will be -/// relative to the app folder. -/// @param deadline The new deadline for the file request. Deadlines can only be -/// set by Professional and Business accounts. -/// @param open Whether to set this file request as open or closed. -/// @param description_ The description of the file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - title:(nullable NSString *)title - destination:(nullable NSString *)destination - deadline:(nullable DBFILEREQUESTSUpdateFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The ID of the file request to update. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFileRequestArgs` struct. -/// -@interface DBFILEREQUESTSUpdateFileRequestArgsSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSUpdateFileRequestArgs` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSUpdateFileRequestArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSUpdateFileRequestArgs *)instance; - -/// -/// Deserializes `DBFILEREQUESTSUpdateFileRequestArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestArgs` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSUpdateFileRequestArgs` -/// object. -/// -+ (DBFILEREQUESTSUpdateFileRequestArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h deleted file mode 100644 index 40efbcf2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestDeadline.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSFileRequestDeadline; -@class DBFILEREQUESTSUpdateFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileRequestDeadline` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSUpdateFileRequestDeadline : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSUpdateFileRequestDeadlineTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSUpdateFileRequestDeadlineTag) { - /// Do not change the file request's deadline. - DBFILEREQUESTSUpdateFileRequestDeadlineNoUpdate, - - /// If null, the file request's deadline is cleared. - DBFILEREQUESTSUpdateFileRequestDeadlineUpdate, - - /// (no description). - DBFILEREQUESTSUpdateFileRequestDeadlineOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSUpdateFileRequestDeadlineTag tag; - -/// If null, the file request's deadline is cleared. @note Ensure the `isUpdate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, nullable) DBFILEREQUESTSFileRequestDeadline *update; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_update". -/// -/// Description of the "no_update" tag state: Do not change the file request's -/// deadline. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoUpdate; - -/// -/// Initializes union class with tag state of "update". -/// -/// Description of the "update" tag state: If null, the file request's deadline -/// is cleared. -/// -/// @param update If null, the file request's deadline is cleared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdate:(nullable DBFILEREQUESTSFileRequestDeadline *)update; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_update". -/// -/// @return Whether the union's current tag state has value "no_update". -/// -- (BOOL)isNoUpdate; - -/// -/// Retrieves whether the union's current tag state has value "update". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `update` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "update". -/// -- (BOOL)isUpdate; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// union. -/// -@interface DBFILEREQUESTSUpdateFileRequestDeadlineSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSUpdateFileRequestDeadline` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestDeadline` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSUpdateFileRequestDeadline *)instance; - -/// -/// Deserializes `DBFILEREQUESTSUpdateFileRequestDeadline` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestDeadline` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSUpdateFileRequestDeadline` -/// object. -/// -+ (DBFILEREQUESTSUpdateFileRequestDeadline *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestError.h deleted file mode 100644 index 7be0eacc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUpdateFileRequestError.h +++ /dev/null @@ -1,255 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEREQUESTSUpdateFileRequestError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileRequestError` union. -/// -/// There is an error updating the file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILEREQUESTSUpdateFileRequestError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILEREQUESTSUpdateFileRequestErrorTag` enum type represents the -/// possible tag states with which the `DBFILEREQUESTSUpdateFileRequestError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILEREQUESTSUpdateFileRequestErrorTag) { - /// This user's Dropbox Business team doesn't allow file requests. - DBFILEREQUESTSUpdateFileRequestErrorDisabledForTeam, - - /// (no description). - DBFILEREQUESTSUpdateFileRequestErrorOther, - - /// This file request ID was not found. - DBFILEREQUESTSUpdateFileRequestErrorNotFound, - - /// The specified path is not a folder. - DBFILEREQUESTSUpdateFileRequestErrorNotAFolder, - - /// This file request is not accessible to this app. Apps with the app - /// folder permission can only access file requests in their app folder. - DBFILEREQUESTSUpdateFileRequestErrorAppLacksAccess, - - /// This user doesn't have permission to access or modify this file request. - DBFILEREQUESTSUpdateFileRequestErrorNoPermission, - - /// This user's email address is not verified. File requests are only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILEREQUESTSUpdateFileRequestErrorEmailUnverified, - - /// There was an error validating the request. For example, the title was - /// invalid, or there were disallowed characters in the destination path. - DBFILEREQUESTSUpdateFileRequestErrorValidationError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILEREQUESTSUpdateFileRequestErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled_for_team". -/// -/// Description of the "disabled_for_team" tag state: This user's Dropbox -/// Business team doesn't allow file requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledForTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: This file request ID was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_a_folder". -/// -/// Description of the "not_a_folder" tag state: The specified path is not a -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAFolder; - -/// -/// Initializes union class with tag state of "app_lacks_access". -/// -/// Description of the "app_lacks_access" tag state: This file request is not -/// accessible to this app. Apps with the app folder permission can only access -/// file requests in their app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLacksAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: This user doesn't have -/// permission to access or modify this file request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. File requests are only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "validation_error". -/// -/// Description of the "validation_error" tag state: There was an error -/// validating the request. For example, the title was invalid, or there were -/// disallowed characters in the destination path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValidationError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_for_team". -/// -/// @return Whether the union's current tag state has value "disabled_for_team". -/// -- (BOOL)isDisabledForTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_a_folder". -/// -/// @return Whether the union's current tag state has value "not_a_folder". -/// -- (BOOL)isNotAFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_lacks_access". -/// -/// @return Whether the union's current tag state has value "app_lacks_access". -/// -- (BOOL)isAppLacksAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "validation_error". -/// -/// @return Whether the union's current tag state has value "validation_error". -/// -- (BOOL)isValidationError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILEREQUESTSUpdateFileRequestError` -/// union. -/// -@interface DBFILEREQUESTSUpdateFileRequestErrorSerializer : NSObject - -/// -/// Serializes `DBFILEREQUESTSUpdateFileRequestError` instances. -/// -/// @param instance An instance of the `DBFILEREQUESTSUpdateFileRequestError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILEREQUESTSUpdateFileRequestError *)instance; - -/// -/// Deserializes `DBFILEREQUESTSUpdateFileRequestError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILEREQUESTSUpdateFileRequestError` API object. -/// -/// @return An instantiation of the `DBFILEREQUESTSUpdateFileRequestError` -/// object. -/// -+ (DBFILEREQUESTSUpdateFileRequestError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUserAuthRoutes.h deleted file mode 100644 index ab44751a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILEREQUESTSUserAuthRoutes.h +++ /dev/null @@ -1,201 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBFILEREQUESTSCountFileRequestsError; -@class DBFILEREQUESTSCountFileRequestsResult; -@class DBFILEREQUESTSCreateFileRequestError; -@class DBFILEREQUESTSDeleteAllClosedFileRequestsError; -@class DBFILEREQUESTSDeleteAllClosedFileRequestsResult; -@class DBFILEREQUESTSDeleteFileRequestError; -@class DBFILEREQUESTSDeleteFileRequestsResult; -@class DBFILEREQUESTSFileRequest; -@class DBFILEREQUESTSFileRequestDeadline; -@class DBFILEREQUESTSGetFileRequestError; -@class DBFILEREQUESTSGracePeriod; -@class DBFILEREQUESTSListFileRequestsContinueError; -@class DBFILEREQUESTSListFileRequestsError; -@class DBFILEREQUESTSListFileRequestsResult; -@class DBFILEREQUESTSListFileRequestsV2Result; -@class DBFILEREQUESTSUpdateFileRequestDeadline; -@class DBFILEREQUESTSUpdateFileRequestError; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `FileRequests` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILEREQUESTSUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILEREQUESTSUserAuthRoutes` namespace container object -/// with a networking client. -- (instancetype)init:(id)client; - -/// -/// Returns the total number of file requests owned by this user. Includes both open and closed file requests. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSCountFileRequestsResult` object on -/// success or a `DBFILEREQUESTSCountFileRequestsError` object on failure. -/// -- (DBRpcTask *)count; - -/// -/// Creates a file request for this user. -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app -/// folder permission, this will be relative to the app folder. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSCreateFileRequestError` object on failure. -/// -- (DBRpcTask *)create:(NSString *)title - destination:(NSString *)destination; - -/// -/// Creates a file request for this user. -/// -/// @param title The title of the file request. Must not be empty. -/// @param destination The path of the folder in the Dropbox where uploaded files will be sent. For apps with the app -/// folder permission, this will be relative to the app folder. -/// @param deadline The deadline for the file request. Deadlines can only be set by Professional and Business accounts. -/// @param open Whether or not the file request should be open. If the file request is closed, it will not accept any -/// file submissions, but it can be opened later. -/// @param description_ A description of the file request. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSCreateFileRequestError` object on failure. -/// -- (DBRpcTask *) - create:(NSString *)title - destination:(NSString *)destination - deadline:(nullable DBFILEREQUESTSFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -/// -/// Delete a batch of closed file requests. -/// -/// @param ids List IDs of the file requests to delete. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSDeleteFileRequestsResult` object on -/// success or a `DBFILEREQUESTSDeleteFileRequestError` object on failure. -/// -- (DBRpcTask *)delete_: - (NSArray *)ids; - -/// -/// Delete all closed file requests owned by this user. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSDeleteAllClosedFileRequestsResult` -/// object on success or a `DBFILEREQUESTSDeleteAllClosedFileRequestsError` object on failure. -/// -- (DBRpcTask *) - deleteAllClosed; - -/// -/// Returns the specified file request. -/// -/// @param id_ The ID of the file request to retrieve. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSGetFileRequestError` object on failure. -/// -- (DBRpcTask *)get:(NSString *)id_; - -/// -/// Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return -/// file requests with destinations in the app folder. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsResult` object on -/// success or a `DBFILEREQUESTSListFileRequestsError` object on failure. -/// -- (DBRpcTask *)list; - -/// -/// Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return -/// file requests with destinations in the app folder. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsV2Result` object on -/// success or a `DBFILEREQUESTSListFileRequestsError` object on failure. -/// -- (DBRpcTask *)listV2; - -/// -/// Returns a list of file requests owned by this user. For apps with the app folder permission, this will only return -/// file requests with destinations in the app folder. -/// -/// @param limit The maximum number of file requests that should be returned per request. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsV2Result` object on -/// success or a `DBFILEREQUESTSListFileRequestsError` object on failure. -/// -- (DBRpcTask *)listV2: - (nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `list`, use this to paginate through all file requests. The cursor must come -/// from a previous call to `list` or `listContinue`. -/// -/// @param cursor The cursor returned by the previous API call specified in the endpoint description. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSListFileRequestsV2Result` object on -/// success or a `DBFILEREQUESTSListFileRequestsContinueError` object on failure. -/// -- (DBRpcTask *)listContinue: - (NSString *)cursor; - -/// -/// Update a file request. -/// -/// @param id_ The ID of the file request to update. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSUpdateFileRequestError` object on failure. -/// -- (DBRpcTask *)update:(NSString *)id_; - -/// -/// Update a file request. -/// -/// @param id_ The ID of the file request to update. -/// @param title The new title of the file request. Must not be empty. -/// @param destination The new path of the folder in the Dropbox where uploaded files will be sent. For apps with the -/// app folder permission, this will be relative to the app folder. -/// @param deadline The new deadline for the file request. Deadlines can only be set by Professional and Business -/// accounts. -/// @param open Whether to set this file request as open or closed. -/// @param description_ The description of the file request. -/// -/// @return Through the response callback, the caller will receive a `DBFILEREQUESTSFileRequest` object on success or a -/// `DBFILEREQUESTSUpdateFileRequestError` object on failure. -/// -- (DBRpcTask *) - update:(NSString *)id_ - title:(nullable NSString *)title - destination:(nullable NSString *)destination - deadline:(nullable DBFILEREQUESTSUpdateFileRequestDeadline *)deadline - open:(nullable NSNumber *)open - description_:(nullable NSString *)description_; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAddTagArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAddTagArg.h deleted file mode 100644 index 998acd2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAddTagArg.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESAddTagArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTagArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAddTagArg : NSObject - -#pragma mark - Instance fields - -/// Path to the item to be tagged. -@property (nonatomic, readonly, copy) NSString *path; - -/// The value of the tag to add. Will be automatically converted to lowercase -/// letters. -@property (nonatomic, readonly, copy) NSString *tagText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path to the item to be tagged. -/// @param tagText The value of the tag to add. Will be automatically converted -/// to lowercase letters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path tagText:(NSString *)tagText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddTagArg` struct. -/// -@interface DBFILESAddTagArgSerializer : NSObject - -/// -/// Serializes `DBFILESAddTagArg` instances. -/// -/// @param instance An instance of the `DBFILESAddTagArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAddTagArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAddTagArg *)instance; - -/// -/// Deserializes `DBFILESAddTagArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAddTagArg` API object. -/// -/// @return An instantiation of the `DBFILESAddTagArg` object. -/// -+ (DBFILESAddTagArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAddTagError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAddTagError.h deleted file mode 100644 index 87d8fad3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAddTagError.h +++ /dev/null @@ -1,144 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESAddTagError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddTagError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAddTagError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESAddTagErrorTag` enum type represents the possible tag states -/// with which the `DBFILESAddTagError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESAddTagErrorTag) { - /// (no description). - DBFILESAddTagErrorPath, - - /// (no description). - DBFILESAddTagErrorOther, - - /// The item already has the maximum supported number of tags. - DBFILESAddTagErrorTooManyTags, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESAddTagErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "too_many_tags". -/// -/// Description of the "too_many_tags" tag state: The item already has the -/// maximum supported number of tags. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyTags; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "too_many_tags". -/// -/// @return Whether the union's current tag state has value "too_many_tags". -/// -- (BOOL)isTooManyTags; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESAddTagError` union. -/// -@interface DBFILESAddTagErrorSerializer : NSObject - -/// -/// Serializes `DBFILESAddTagError` instances. -/// -/// @param instance An instance of the `DBFILESAddTagError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAddTagError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAddTagError *)instance; - -/// -/// Deserializes `DBFILESAddTagError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAddTagError` API object. -/// -/// @return An instantiation of the `DBFILESAddTagError` object. -/// -+ (DBFILESAddTagError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAlphaGetMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAlphaGetMetadataArg.h deleted file mode 100644 index eb0d46ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAlphaGetMetadataArg.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESGetMetadataArg.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILESAlphaGetMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlphaGetMetadataArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAlphaGetMetadataArg : DBFILESGetMetadataArg - -#pragma mark - Instance fields - -/// If set to a valid list of template IDs, `propertyGroups` in -/// `DBFILESFileMetadata` is set for files with custom properties. -@property (nonatomic, readonly, nullable) NSArray *includePropertyTemplates; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of a file or folder on Dropbox. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set -/// for photo and video. -/// @param includeDeleted If true, DeletedMetadata will be returned for deleted -/// file or folder, otherwise `notFound` in `DBFILESLookupError` will be -/// returned. -/// @param includeHasExplicitSharedMembers If true, the results will include a -/// flag for each file indicating whether or not that file has any explicit -/// members. -/// @param includePropertyGroups If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set if there exists property -/// data associated with the file and each of the listed templates. -/// @param includePropertyTemplates If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set for files with custom -/// properties. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includePropertyTemplates:(nullable NSArray *)includePropertyTemplates; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of a file or folder on Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AlphaGetMetadataArg` struct. -/// -@interface DBFILESAlphaGetMetadataArgSerializer : NSObject - -/// -/// Serializes `DBFILESAlphaGetMetadataArg` instances. -/// -/// @param instance An instance of the `DBFILESAlphaGetMetadataArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAlphaGetMetadataArg *)instance; - -/// -/// Deserializes `DBFILESAlphaGetMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataArg` API object. -/// -/// @return An instantiation of the `DBFILESAlphaGetMetadataArg` object. -/// -+ (DBFILESAlphaGetMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAlphaGetMetadataError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAlphaGetMetadataError.h deleted file mode 100644 index ddb5910d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAlphaGetMetadataError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILESAlphaGetMetadataError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlphaGetMetadataError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESAlphaGetMetadataError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESAlphaGetMetadataErrorTag` enum type represents the possible tag -/// states with which the `DBFILESAlphaGetMetadataError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESAlphaGetMetadataErrorTag) { - /// (no description). - DBFILESAlphaGetMetadataErrorPath, - - /// (no description). - DBFILESAlphaGetMetadataErrorPropertiesError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESAlphaGetMetadataErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// (no description). @note Ensure the `isPropertiesError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESLookUpPropertiesError *propertiesError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "properties_error". -/// -/// @param propertiesError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertiesError:(DBFILEPROPERTIESLookUpPropertiesError *)propertiesError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "properties_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertiesError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "properties_error". -/// -- (BOOL)isPropertiesError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESAlphaGetMetadataError` union. -/// -@interface DBFILESAlphaGetMetadataErrorSerializer : NSObject - -/// -/// Serializes `DBFILESAlphaGetMetadataError` instances. -/// -/// @param instance An instance of the `DBFILESAlphaGetMetadataError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESAlphaGetMetadataError *)instance; - -/// -/// Deserializes `DBFILESAlphaGetMetadataError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESAlphaGetMetadataError` API object. -/// -/// @return An instantiation of the `DBFILESAlphaGetMetadataError` object. -/// -+ (DBFILESAlphaGetMetadataError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAppAuthRoutes.h deleted file mode 100644 index d81d5a95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESAppAuthRoutes.h +++ /dev/null @@ -1,436 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCPollError; -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILESAddTagError; -@class DBFILESAlphaGetMetadataError; -@class DBFILESBaseTagError; -@class DBFILESCommitInfo; -@class DBFILESCreateFolderBatchError; -@class DBFILESCreateFolderBatchJobStatus; -@class DBFILESCreateFolderBatchLaunch; -@class DBFILESCreateFolderBatchResult; -@class DBFILESCreateFolderError; -@class DBFILESCreateFolderResult; -@class DBFILESDeleteArg; -@class DBFILESDeleteBatchError; -@class DBFILESDeleteBatchJobStatus; -@class DBFILESDeleteBatchLaunch; -@class DBFILESDeleteBatchResult; -@class DBFILESDeleteError; -@class DBFILESDeleteResult; -@class DBFILESDownloadError; -@class DBFILESDownloadZipError; -@class DBFILESDownloadZipResult; -@class DBFILESExportError; -@class DBFILESExportInfo; -@class DBFILESExportMetadata; -@class DBFILESExportResult; -@class DBFILESFileCategory; -@class DBFILESFileLockMetadata; -@class DBFILESFileMetadata; -@class DBFILESFileSharingInfo; -@class DBFILESFileStatus; -@class DBFILESFolderMetadata; -@class DBFILESFolderSharingInfo; -@class DBFILESGetCopyReferenceError; -@class DBFILESGetCopyReferenceResult; -@class DBFILESGetMetadataError; -@class DBFILESGetTagsResult; -@class DBFILESGetTemporaryLinkError; -@class DBFILESGetTemporaryLinkResult; -@class DBFILESGetTemporaryUploadLinkResult; -@class DBFILESGetThumbnailBatchError; -@class DBFILESGetThumbnailBatchResult; -@class DBFILESGetThumbnailBatchResultEntry; -@class DBFILESImportFormat; -@class DBFILESListFolderContinueError; -@class DBFILESListFolderError; -@class DBFILESListFolderGetLatestCursorResult; -@class DBFILESListFolderLongpollError; -@class DBFILESListFolderLongpollResult; -@class DBFILESListFolderResult; -@class DBFILESListRevisionsError; -@class DBFILESListRevisionsMode; -@class DBFILESListRevisionsResult; -@class DBFILESLockConflictError; -@class DBFILESLockFileArg; -@class DBFILESLockFileBatchResult; -@class DBFILESLockFileError; -@class DBFILESLockFileResultEntry; -@class DBFILESLookupError; -@class DBFILESMediaInfo; -@class DBFILESMetadata; -@class DBFILESMinimalFileLinkMetadata; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESPaperCreateError; -@class DBFILESPaperCreateResult; -@class DBFILESPaperDocUpdatePolicy; -@class DBFILESPaperUpdateError; -@class DBFILESPaperUpdateResult; -@class DBFILESPathOrLink; -@class DBFILESPathToTags; -@class DBFILESPreviewError; -@class DBFILESPreviewResult; -@class DBFILESRelocationBatchError; -@class DBFILESRelocationBatchJobStatus; -@class DBFILESRelocationBatchLaunch; -@class DBFILESRelocationBatchResult; -@class DBFILESRelocationBatchV2JobStatus; -@class DBFILESRelocationBatchV2Launch; -@class DBFILESRelocationBatchV2Result; -@class DBFILESRelocationError; -@class DBFILESRelocationPath; -@class DBFILESRelocationResult; -@class DBFILESRemoveTagError; -@class DBFILESRestoreError; -@class DBFILESSaveCopyReferenceError; -@class DBFILESSaveCopyReferenceResult; -@class DBFILESSaveUrlError; -@class DBFILESSaveUrlJobStatus; -@class DBFILESSaveUrlResult; -@class DBFILESSearchError; -@class DBFILESSearchMatch; -@class DBFILESSearchMatchFieldOptions; -@class DBFILESSearchMatchV2; -@class DBFILESSearchMode; -@class DBFILESSearchOptions; -@class DBFILESSearchOrderBy; -@class DBFILESSearchResult; -@class DBFILESSearchV2Result; -@class DBFILESSharedLink; -@class DBFILESSharedLinkFileInfo; -@class DBFILESSymlinkInfo; -@class DBFILESThumbnailArg; -@class DBFILESThumbnailError; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; -@class DBFILESThumbnailV2Error; -@class DBFILESUnlockFileArg; -@class DBFILESUploadError; -@class DBFILESUploadSessionAppendError; -@class DBFILESUploadSessionCursor; -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchLaunch; -@class DBFILESUploadSessionFinishBatchResult; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBFILESUploadSessionFinishError; -@class DBFILESUploadSessionLookupError; -@class DBFILESUploadSessionOffsetError; -@class DBFILESUploadSessionStartBatchResult; -@class DBFILESUploadSessionStartError; -@class DBFILESUploadSessionStartResult; -@class DBFILESUploadSessionType; -@class DBFILESUploadWriteFailed; -@class DBFILESWriteError; -@class DBFILESWriteMode; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Files` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILESAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILESAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailV2Data: - (DBFILESPathOrLink *)resource; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *)listFolder:(NSString *)path; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied recursively to all subfolders and the response -/// will contain contents of all subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. This parameter -/// will no longer have an effect starting December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files and folders that used to exist but were -/// deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includeMountedFolders If true, the results will include entries under mounted folders which includes app -/// folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This is an approximate number and there can -/// be slightly more entries returned in some cases. -/// @param sharedLink A shared link to list the contents of. If the link is password-protected, the password must be -/// provided. If this field is present, `path` in `DBFILESListFolderArg` will be relative to root of the shared link. -/// Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not downloadable, i.e. Google Docs. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *) - listFolder:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// Once a cursor has been retrieved from `listFolder`, use this to paginate through all files and retrieve updates to -/// the folder, following the same rules as documented for `listFolder`. -/// -/// @param cursor The cursor returned by your last call to `listFolder` or `listFolderContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderContinueError` object on failure. -/// -- (DBRpcTask *)listFolderContinue:(NSString *)cursor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESBaseTagError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESBaseTagError.h deleted file mode 100644 index ee4a88ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESBaseTagError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESBaseTagError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BaseTagError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESBaseTagError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESBaseTagErrorTag` enum type represents the possible tag states -/// with which the `DBFILESBaseTagError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESBaseTagErrorTag) { - /// (no description). - DBFILESBaseTagErrorPath, - - /// (no description). - DBFILESBaseTagErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESBaseTagErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESBaseTagError` union. -/// -@interface DBFILESBaseTagErrorSerializer : NSObject - -/// -/// Serializes `DBFILESBaseTagError` instances. -/// -/// @param instance An instance of the `DBFILESBaseTagError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESBaseTagError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESBaseTagError *)instance; - -/// -/// Deserializes `DBFILESBaseTagError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESBaseTagError` API object. -/// -/// @return An instantiation of the `DBFILESBaseTagError` object. -/// -+ (DBFILESBaseTagError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCommitInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCommitInfo.h deleted file mode 100644 index e03288dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCommitInfo.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESCommitInfo; -@class DBFILESWriteMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CommitInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCommitInfo : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to save the file. -@property (nonatomic, readonly, copy) NSString *path; - -/// Selects what to do if the file already exists. -@property (nonatomic, readonly) DBFILESWriteMode *mode; - -/// If there's a conflict, as determined by mode, have the Dropbox server try to -/// autorename the file to avoid conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -/// The value to store as the clientModified timestamp. Dropbox automatically -/// records the time at which the file was written to the Dropbox servers. It -/// can also record an additional timestamp, provided by Dropbox desktop -/// clients, mobile clients, and API apps of when the file was actually created -/// or modified. -@property (nonatomic, readonly, nullable) NSDate *clientModified; - -/// Normally, users are made aware of any file modifications in their Dropbox -/// account via notifications in the client software. If true, this tells the -/// clients that this modification shouldn't result in a user notification. -@property (nonatomic, readonly) NSNumber *mute; - -/// List of custom properties to add to file. -@property (nonatomic, readonly, nullable) NSArray *propertyGroups; - -/// Be more strict about how each WriteMode detects conflict. For example, -/// always return a conflict error when mode = `update` in `DBFILESWriteMode` -/// and the given "rev" doesn't match the existing file's "rev", even if the -/// existing file has been deleted. This also forces a conflict even when the -/// target path refers to a file with identical contents. -@property (nonatomic, readonly) NSNumber *strictConflict; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to save the file. -/// @param mode Selects what to do if the file already exists. -/// @param autorename If there's a conflict, as determined by mode, have the -/// Dropbox server try to autorename the file to avoid conflict. -/// @param clientModified The value to store as the clientModified timestamp. -/// Dropbox automatically records the time at which the file was written to the -/// Dropbox servers. It can also record an additional timestamp, provided by -/// Dropbox desktop clients, mobile clients, and API apps of when the file was -/// actually created or modified. -/// @param mute Normally, users are made aware of any file modifications in -/// their Dropbox account via notifications in the client software. If true, -/// this tells the clients that this modification shouldn't result in a user -/// notification. -/// @param propertyGroups List of custom properties to add to file. -/// @param strictConflict Be more strict about how each WriteMode detects -/// conflict. For example, always return a conflict error when mode = `update` -/// in `DBFILESWriteMode` and the given "rev" doesn't match the existing file's -/// "rev", even if the existing file has been deleted. This also forces a -/// conflict even when the target path refers to a file with identical contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to save the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CommitInfo` struct. -/// -@interface DBFILESCommitInfoSerializer : NSObject - -/// -/// Serializes `DBFILESCommitInfo` instances. -/// -/// @param instance An instance of the `DBFILESCommitInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCommitInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCommitInfo *)instance; - -/// -/// Deserializes `DBFILESCommitInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCommitInfo` API object. -/// -/// @return An instantiation of the `DBFILESCommitInfo` object. -/// -+ (DBFILESCommitInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESContentSyncSetting.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESContentSyncSetting.h deleted file mode 100644 index f6721ed5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESContentSyncSetting.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESContentSyncSetting; -@class DBFILESSyncSetting; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentSyncSetting` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESContentSyncSetting : NSObject - -#pragma mark - Instance fields - -/// Id of the item this setting is applied to. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Setting for this item. -@property (nonatomic, readonly) DBFILESSyncSetting *syncSetting; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ Id of the item this setting is applied to. -/// @param syncSetting Setting for this item. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ syncSetting:(DBFILESSyncSetting *)syncSetting; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentSyncSetting` struct. -/// -@interface DBFILESContentSyncSettingSerializer : NSObject - -/// -/// Serializes `DBFILESContentSyncSetting` instances. -/// -/// @param instance An instance of the `DBFILESContentSyncSetting` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESContentSyncSetting` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESContentSyncSetting *)instance; - -/// -/// Deserializes `DBFILESContentSyncSetting` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESContentSyncSetting` API object. -/// -/// @return An instantiation of the `DBFILESContentSyncSetting` object. -/// -+ (DBFILESContentSyncSetting *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESContentSyncSettingArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESContentSyncSettingArg.h deleted file mode 100644 index a23eb7bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESContentSyncSettingArg.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESContentSyncSettingArg; -@class DBFILESSyncSettingArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentSyncSettingArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESContentSyncSettingArg : NSObject - -#pragma mark - Instance fields - -/// Id of the item this setting is applied to. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Setting for this item. -@property (nonatomic, readonly) DBFILESSyncSettingArg *syncSetting; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ Id of the item this setting is applied to. -/// @param syncSetting Setting for this item. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ syncSetting:(DBFILESSyncSettingArg *)syncSetting; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentSyncSettingArg` struct. -/// -@interface DBFILESContentSyncSettingArgSerializer : NSObject - -/// -/// Serializes `DBFILESContentSyncSettingArg` instances. -/// -/// @param instance An instance of the `DBFILESContentSyncSettingArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESContentSyncSettingArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESContentSyncSettingArg *)instance; - -/// -/// Deserializes `DBFILESContentSyncSettingArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESContentSyncSettingArg` API object. -/// -/// @return An instantiation of the `DBFILESContentSyncSettingArg` object. -/// -+ (DBFILESContentSyncSettingArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderArg.h deleted file mode 100644 index 7ae9a864..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderArg.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to create. -@property (nonatomic, readonly, copy) NSString *path; - -/// If there's a conflict, have the Dropbox server try to autorename the folder -/// to avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to create. -/// @param autorename If there's a conflict, have the Dropbox server try to -/// autorename the folder to avoid the conflict. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path autorename:(nullable NSNumber *)autorename; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to create. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderArg` struct. -/// -@interface DBFILESCreateFolderArgSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderArg` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderArg *)instance; - -/// -/// Deserializes `DBFILESCreateFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderArg` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderArg` object. -/// -+ (DBFILESCreateFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchArg.h deleted file mode 100644 index f005736b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchArg.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of paths to be created in the user's Dropbox. Duplicate path arguments -/// in the batch are considered only once. -@property (nonatomic, readonly) NSArray *paths; - -/// If there's a conflict, have the Dropbox server try to autorename the folder -/// to avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -/// Whether to force the create to happen asynchronously. -@property (nonatomic, readonly) NSNumber *forceAsync; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate -/// path arguments in the batch are considered only once. -/// @param autorename If there's a conflict, have the Dropbox server try to -/// autorename the folder to avoid the conflict. -/// @param forceAsync Whether to force the create to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaths:(NSArray *)paths - autorename:(nullable NSNumber *)autorename - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate -/// path arguments in the batch are considered only once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaths:(NSArray *)paths; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderBatchArg` struct. -/// -@interface DBFILESCreateFolderBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchArg *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchArg` object. -/// -+ (DBFILESCreateFolderBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchError.h deleted file mode 100644 index 22b2dac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESCreateFolderBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchErrorTag) { - /// The operation would involve too many files or folders. - DBFILESCreateFolderBatchErrorTooManyFiles, - - /// (no description). - DBFILESCreateFolderBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// too many files or folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchError` union. -/// -@interface DBFILESCreateFolderBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchError` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchError *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchError` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchError` object. -/// -+ (DBFILESCreateFolderBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchJobStatus.h deleted file mode 100644 index 3c674a4a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchJobStatus.h +++ /dev/null @@ -1,178 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchError; -@class DBFILESCreateFolderBatchJobStatus; -@class DBFILESCreateFolderBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchJobStatusTag` enum type represents the possible -/// tag states with which the `DBFILESCreateFolderBatchJobStatus` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESCreateFolderBatchJobStatusInProgress, - - /// The batch create folder has finished. - DBFILESCreateFolderBatchJobStatusComplete, - - /// The batch create folder has failed. - DBFILESCreateFolderBatchJobStatusFailed, - - /// (no description). - DBFILESCreateFolderBatchJobStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchJobStatusTag tag; - -/// The batch create folder has finished. @note Ensure the `isComplete` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderBatchResult *complete; - -/// The batch create folder has failed. @note Ensure the `isFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderBatchError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The batch create folder has -/// finished. -/// -/// @param complete The batch create folder has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESCreateFolderBatchResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The batch create folder has failed. -/// -/// @param failed The batch create folder has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESCreateFolderBatchError *)failed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchJobStatus` union. -/// -@interface DBFILESCreateFolderBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchJobStatus` object. -/// -+ (DBFILESCreateFolderBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchLaunch.h deleted file mode 100644 index 31ad4103..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchLaunch.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchLaunch; -@class DBFILESCreateFolderBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchLaunch` union. -/// -/// Result returned by `createFolderBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchLaunchTag` enum type represents the possible -/// tag states with which the `DBFILESCreateFolderBatchLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESCreateFolderBatchLaunchAsyncJobId, - - /// (no description). - DBFILESCreateFolderBatchLaunchComplete, - - /// (no description). - DBFILESCreateFolderBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESCreateFolderBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchLaunch` union. -/// -@interface DBFILESCreateFolderBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchLaunch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchLaunch` object. -/// -+ (DBFILESCreateFolderBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchResult.h deleted file mode 100644 index b05d68be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchResult; -@class DBFILESCreateFolderBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each entry in `paths` in `DBFILESCreateFolderBatchArg` will appear at the -/// same position inside `entries` in `DBFILESCreateFolderBatchResult`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in `paths` in `DBFILESCreateFolderBatchArg` will -/// appear at the same position inside `entries` in -/// `DBFILESCreateFolderBatchResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderBatchResult` struct. -/// -@interface DBFILESCreateFolderBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchResult *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchResult` object. -/// -+ (DBFILESCreateFolderBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchResultEntry.h deleted file mode 100644 index 4b3713e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderBatchResultEntry.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderBatchResultEntry; -@class DBFILESCreateFolderEntryError; -@class DBFILESCreateFolderEntryResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderBatchResultEntryTag` enum type represents the -/// possible tag states with which the `DBFILESCreateFolderBatchResultEntry` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderBatchResultEntryTag) { - /// (no description). - DBFILESCreateFolderBatchResultEntrySuccess, - - /// (no description). - DBFILESCreateFolderBatchResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderEntryResult *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESCreateFolderEntryError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESCreateFolderEntryResult *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESCreateFolderEntryError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderBatchResultEntry` union. -/// -@interface DBFILESCreateFolderBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESCreateFolderBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderBatchResultEntry` -/// object. -/// -+ (DBFILESCreateFolderBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderEntryError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderEntryError.h deleted file mode 100644 index bff1f97a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderEntryError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderEntryError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderEntryError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderEntryError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderEntryErrorTag` enum type represents the possible tag -/// states with which the `DBFILESCreateFolderEntryError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderEntryErrorTag) { - /// (no description). - DBFILESCreateFolderEntryErrorPath, - - /// (no description). - DBFILESCreateFolderEntryErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderEntryErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderEntryError` union. -/// -@interface DBFILESCreateFolderEntryErrorSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderEntryError` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderEntryError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderEntryError *)instance; - -/// -/// Deserializes `DBFILESCreateFolderEntryError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryError` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderEntryError` object. -/// -+ (DBFILESCreateFolderEntryError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderEntryResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderEntryResult.h deleted file mode 100644 index 0dfc6e32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderEntryResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderEntryResult; -@class DBFILESFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderEntryResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderEntryResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the created folder. -@property (nonatomic, readonly) DBFILESFolderMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the created folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFolderMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderEntryResult` struct. -/// -@interface DBFILESCreateFolderEntryResultSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderEntryResult` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderEntryResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderEntryResult *)instance; - -/// -/// Deserializes `DBFILESCreateFolderEntryResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderEntryResult` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderEntryResult` object. -/// -+ (DBFILESCreateFolderEntryResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderError.h deleted file mode 100644 index 129fee11..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderError.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESCreateFolderErrorTag` enum type represents the possible tag -/// states with which the `DBFILESCreateFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESCreateFolderErrorTag) { - /// (no description). - DBFILESCreateFolderErrorPath, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESCreateFolderErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESCreateFolderError` union. -/// -@interface DBFILESCreateFolderErrorSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderError` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderError *)instance; - -/// -/// Deserializes `DBFILESCreateFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderError` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderError` object. -/// -+ (DBFILESCreateFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderResult.h deleted file mode 100644 index f828e8ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESCreateFolderResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESCreateFolderResult; -@class DBFILESFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESCreateFolderResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Metadata of the created folder. -@property (nonatomic, readonly) DBFILESFolderMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the created folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFolderMetadata *)metadata; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderResult` struct. -/// -@interface DBFILESCreateFolderResultSerializer : NSObject - -/// -/// Serializes `DBFILESCreateFolderResult` instances. -/// -/// @param instance An instance of the `DBFILESCreateFolderResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESCreateFolderResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESCreateFolderResult *)instance; - -/// -/// Deserializes `DBFILESCreateFolderResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESCreateFolderResult` API object. -/// -/// @return An instantiation of the `DBFILESCreateFolderResult` object. -/// -+ (DBFILESCreateFolderResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteArg.h deleted file mode 100644 index b9b16a46..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteArg.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to delete. -@property (nonatomic, readonly, copy) NSString *path; - -/// Perform delete if given "rev" matches the existing file's latest "rev". This -/// field does not support deleting a folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentRev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's -/// latest "rev". This field does not support deleting a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path parentRev:(nullable NSString *)parentRev; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteArg` struct. -/// -@interface DBFILESDeleteArgSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteArg` instances. -/// -/// @param instance An instance of the `DBFILESDeleteArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteArg *)instance; - -/// -/// Deserializes `DBFILESDeleteArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteArg` API object. -/// -/// @return An instantiation of the `DBFILESDeleteArg` object. -/// -+ (DBFILESDeleteArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchArg.h deleted file mode 100644 index cda516a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteArg; -@class DBFILESDeleteBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteBatchArg` struct. -/// -@interface DBFILESDeleteBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchArg *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchArg` object. -/// -+ (DBFILESDeleteBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchError.h deleted file mode 100644 index 7709a612..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchErrorTag) { - /// Use `tooManyWriteOperations` in `DBFILESDeleteError`. `deleteBatch` now - /// provides smaller granularity about which entry has failed because of - /// this. - DBFILESDeleteBatchErrorTooManyWriteOperations, - - /// (no description). - DBFILESDeleteBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: Use -/// `tooManyWriteOperations` in `DBFILESDeleteError`. `deleteBatch` now provides -/// smaller granularity about which entry has failed because of this. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchError` union. -/// -@interface DBFILESDeleteBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchError` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchError *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchError` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchError` object. -/// -+ (DBFILESDeleteBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchJobStatus.h deleted file mode 100644 index decedeeb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchJobStatus.h +++ /dev/null @@ -1,175 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchError; -@class DBFILESDeleteBatchJobStatus; -@class DBFILESDeleteBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchJobStatusTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESDeleteBatchJobStatusInProgress, - - /// The batch delete has finished. - DBFILESDeleteBatchJobStatusComplete, - - /// The batch delete has failed. - DBFILESDeleteBatchJobStatusFailed, - - /// (no description). - DBFILESDeleteBatchJobStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchJobStatusTag tag; - -/// The batch delete has finished. @note Ensure the `isComplete` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchResult *complete; - -/// The batch delete has failed. @note Ensure the `isFailed` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The batch delete has finished. -/// -/// @param complete The batch delete has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESDeleteBatchResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The batch delete has failed. -/// -/// @param failed The batch delete has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESDeleteBatchError *)failed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchJobStatus` union. -/// -@interface DBFILESDeleteBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchJobStatus` object. -/// -+ (DBFILESDeleteBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchLaunch.h deleted file mode 100644 index 1a406b6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchLaunch.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchLaunch; -@class DBFILESDeleteBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchLaunch` union. -/// -/// Result returned by `deleteBatch` that may either launch an asynchronous job -/// or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchLaunchTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESDeleteBatchLaunchAsyncJobId, - - /// (no description). - DBFILESDeleteBatchLaunchComplete, - - /// (no description). - DBFILESDeleteBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESDeleteBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchLaunch` union. -/// -@interface DBFILESDeleteBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchLaunch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchLaunch` object. -/// -+ (DBFILESDeleteBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResult.h deleted file mode 100644 index 8464350f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchResult; -@class DBFILESDeleteBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each entry in `entries` in `DBFILESDeleteBatchArg` will appear at the same -/// position inside `entries` in `DBFILESDeleteBatchResult`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in `entries` in `DBFILESDeleteBatchArg` will -/// appear at the same position inside `entries` in `DBFILESDeleteBatchResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteBatchResult` struct. -/// -@interface DBFILESDeleteBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchResult *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchResult` object. -/// -+ (DBFILESDeleteBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResultData.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResultData.h deleted file mode 100644 index ab36ef2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResultData.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchResultData; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchResultData` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchResultData : NSObject - -#pragma mark - Instance fields - -/// Metadata of the deleted object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the deleted object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteBatchResultData` struct. -/// -@interface DBFILESDeleteBatchResultDataSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchResultData` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchResultData` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultData` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchResultData *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchResultData` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultData` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchResultData` object. -/// -+ (DBFILESDeleteBatchResultData *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResultEntry.h deleted file mode 100644 index 217b2450..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteBatchResultEntry.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteBatchResultData; -@class DBFILESDeleteBatchResultEntry; -@class DBFILESDeleteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteBatchResultEntryTag` enum type represents the possible tag -/// states with which the `DBFILESDeleteBatchResultEntry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteBatchResultEntryTag) { - /// (no description). - DBFILESDeleteBatchResultEntrySuccess, - - /// (no description). - DBFILESDeleteBatchResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteBatchResultData *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESDeleteError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESDeleteBatchResultData *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESDeleteError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteBatchResultEntry` union. -/// -@interface DBFILESDeleteBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESDeleteBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESDeleteBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESDeleteBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESDeleteBatchResultEntry` object. -/// -+ (DBFILESDeleteBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteError.h deleted file mode 100644 index 4caff4db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteError.h +++ /dev/null @@ -1,194 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteError; -@class DBFILESLookupError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDeleteErrorTag` enum type represents the possible tag states -/// with which the `DBFILESDeleteError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDeleteErrorTag) { - /// (no description). - DBFILESDeleteErrorPathLookup, - - /// (no description). - DBFILESDeleteErrorPathWrite, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESDeleteErrorTooManyWriteOperations, - - /// There are too many files in one request. Please retry with fewer files. - DBFILESDeleteErrorTooManyFiles, - - /// (no description). - DBFILESDeleteErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDeleteErrorTag tag; - -/// (no description). @note Ensure the `isPathLookup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *pathLookup; - -/// (no description). @note Ensure the `isPathWrite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *pathWrite; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path_lookup". -/// -/// @param pathLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathLookup:(DBFILESLookupError *)pathLookup; - -/// -/// Initializes union class with tag state of "path_write". -/// -/// @param pathWrite (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathWrite:(DBFILESWriteError *)pathWrite; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: There are too many files in -/// one request. Please retry with fewer files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_lookup". -/// -- (BOOL)isPathLookup; - -/// -/// Retrieves whether the union's current tag state has value "path_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_write". -/// -- (BOOL)isPathWrite; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDeleteError` union. -/// -@interface DBFILESDeleteErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteError` instances. -/// -/// @param instance An instance of the `DBFILESDeleteError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteError *)instance; - -/// -/// Deserializes `DBFILESDeleteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteError` API object. -/// -/// @return An instantiation of the `DBFILESDeleteError` object. -/// -+ (DBFILESDeleteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteResult.h deleted file mode 100644 index d9bf05be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeleteResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDeleteResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeleteResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Metadata of the deleted object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the deleted object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteResult` struct. -/// -@interface DBFILESDeleteResultSerializer : NSObject - -/// -/// Serializes `DBFILESDeleteResult` instances. -/// -/// @param instance An instance of the `DBFILESDeleteResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeleteResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeleteResult *)instance; - -/// -/// Deserializes `DBFILESDeleteResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeleteResult` API object. -/// -/// @return An instantiation of the `DBFILESDeleteResult` object. -/// -+ (DBFILESDeleteResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeletedMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeletedMetadata.h deleted file mode 100644 index 56506169..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDeletedMetadata.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDeletedMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeletedMetadata` struct. -/// -/// Indicates that there used to be a file or folder at this path, but it no -/// longer exists. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDeletedMetadata : DBFILESMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeletedMetadata` struct. -/// -@interface DBFILESDeletedMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESDeletedMetadata` instances. -/// -/// @param instance An instance of the `DBFILESDeletedMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDeletedMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDeletedMetadata *)instance; - -/// -/// Deserializes `DBFILESDeletedMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDeletedMetadata` API object. -/// -/// @return An instantiation of the `DBFILESDeletedMetadata` object. -/// -+ (DBFILESDeletedMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDimensions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDimensions.h deleted file mode 100644 index cfe0f366..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDimensions.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Dimensions` struct. -/// -/// Dimensions for a photo or video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDimensions : NSObject - -#pragma mark - Instance fields - -/// Height of the photo/video. -@property (nonatomic, readonly) NSNumber *height; - -/// Width of the photo/video. -@property (nonatomic, readonly) NSNumber *width; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param height Height of the photo/video. -/// @param width Width of the photo/video. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHeight:(NSNumber *)height width:(NSNumber *)width; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Dimensions` struct. -/// -@interface DBFILESDimensionsSerializer : NSObject - -/// -/// Serializes `DBFILESDimensions` instances. -/// -/// @param instance An instance of the `DBFILESDimensions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDimensions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDimensions *)instance; - -/// -/// Deserializes `DBFILESDimensions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDimensions` API object. -/// -/// @return An instantiation of the `DBFILESDimensions` object. -/// -+ (DBFILESDimensions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadArg.h deleted file mode 100644 index 1c8c5bd7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadArg.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadArg : NSObject - -#pragma mark - Instance fields - -/// The path of the file to download. -@property (nonatomic, readonly, copy) NSString *path; - -/// Please specify revision in path instead. -@property (nonatomic, readonly, copy, nullable) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path rev:(nullable NSString *)rev; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of the file to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DownloadArg` struct. -/// -@interface DBFILESDownloadArgSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadArg` instances. -/// -/// @param instance An instance of the `DBFILESDownloadArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadArg *)instance; - -/// -/// Deserializes `DBFILESDownloadArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadArg` API object. -/// -/// @return An instantiation of the `DBFILESDownloadArg` object. -/// -+ (DBFILESDownloadArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadError.h deleted file mode 100644 index 27893ae4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadError.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDownloadErrorTag` enum type represents the possible tag states -/// with which the `DBFILESDownloadError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDownloadErrorTag) { - /// (no description). - DBFILESDownloadErrorPath, - - /// This file type cannot be downloaded directly; use `export` instead. - DBFILESDownloadErrorUnsupportedFile, - - /// (no description). - DBFILESDownloadErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDownloadErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_file". -/// -/// Description of the "unsupported_file" tag state: This file type cannot be -/// downloaded directly; use `export` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFile; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_file". -/// -/// @return Whether the union's current tag state has value "unsupported_file". -/// -- (BOOL)isUnsupportedFile; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDownloadError` union. -/// -@interface DBFILESDownloadErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadError` instances. -/// -/// @param instance An instance of the `DBFILESDownloadError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadError *)instance; - -/// -/// Deserializes `DBFILESDownloadError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadError` API object. -/// -/// @return An instantiation of the `DBFILESDownloadError` object. -/// -+ (DBFILESDownloadError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipArg.h deleted file mode 100644 index 4d23f063..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadZipArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadZipArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadZipArg : NSObject - -#pragma mark - Instance fields - -/// The path of the folder to download. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the folder to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DownloadZipArg` struct. -/// -@interface DBFILESDownloadZipArgSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadZipArg` instances. -/// -/// @param instance An instance of the `DBFILESDownloadZipArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadZipArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadZipArg *)instance; - -/// -/// Deserializes `DBFILESDownloadZipArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadZipArg` API object. -/// -/// @return An instantiation of the `DBFILESDownloadZipArg` object. -/// -+ (DBFILESDownloadZipArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipError.h deleted file mode 100644 index 8646ac78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipError.h +++ /dev/null @@ -1,164 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadZipError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadZipError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadZipError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESDownloadZipErrorTag` enum type represents the possible tag -/// states with which the `DBFILESDownloadZipError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESDownloadZipErrorTag) { - /// (no description). - DBFILESDownloadZipErrorPath, - - /// The folder or a file is too large to download. - DBFILESDownloadZipErrorTooLarge, - - /// The folder has too many files to download. - DBFILESDownloadZipErrorTooManyFiles, - - /// (no description). - DBFILESDownloadZipErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESDownloadZipErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "too_large". -/// -/// Description of the "too_large" tag state: The folder or a file is too large -/// to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooLarge; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The folder has too many files -/// to download. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "too_large". -/// -/// @return Whether the union's current tag state has value "too_large". -/// -- (BOOL)isTooLarge; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESDownloadZipError` union. -/// -@interface DBFILESDownloadZipErrorSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadZipError` instances. -/// -/// @param instance An instance of the `DBFILESDownloadZipError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadZipError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadZipError *)instance; - -/// -/// Deserializes `DBFILESDownloadZipError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadZipError` API object. -/// -/// @return An instantiation of the `DBFILESDownloadZipError` object. -/// -+ (DBFILESDownloadZipError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipResult.h deleted file mode 100644 index 333d6469..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESDownloadZipResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDownloadZipResult; -@class DBFILESFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadZipResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESDownloadZipResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBFILESFolderMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFolderMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DownloadZipResult` struct. -/// -@interface DBFILESDownloadZipResultSerializer : NSObject - -/// -/// Serializes `DBFILESDownloadZipResult` instances. -/// -/// @param instance An instance of the `DBFILESDownloadZipResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESDownloadZipResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESDownloadZipResult *)instance; - -/// -/// Deserializes `DBFILESDownloadZipResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESDownloadZipResult` API object. -/// -/// @return An instantiation of the `DBFILESDownloadZipResult` object. -/// -+ (DBFILESDownloadZipResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportArg.h deleted file mode 100644 index d1176bca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportArg : NSObject - -#pragma mark - Instance fields - -/// The path of the file to be exported. -@property (nonatomic, readonly, copy) NSString *path; - -/// The file format to which the file should be exported. This must be one of -/// the formats listed in the file's export_options returned by `getMetadata`. -/// If none is specified, the default format (specified in export_as in file -/// metadata) will be used. -@property (nonatomic, readonly, copy, nullable) NSString *exportFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. -/// This must be one of the formats listed in the file's export_options returned -/// by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path exportFormat:(nullable NSString *)exportFormat; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of the file to be exported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportArg` struct. -/// -@interface DBFILESExportArgSerializer : NSObject - -/// -/// Serializes `DBFILESExportArg` instances. -/// -/// @param instance An instance of the `DBFILESExportArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportArg *)instance; - -/// -/// Deserializes `DBFILESExportArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportArg` API object. -/// -/// @return An instantiation of the `DBFILESExportArg` object. -/// -+ (DBFILESExportArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportError.h deleted file mode 100644 index 72b386cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESExportErrorTag` enum type represents the possible tag states -/// with which the `DBFILESExportError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESExportErrorTag) { - /// (no description). - DBFILESExportErrorPath, - - /// This file type cannot be exported. Use `download` instead. - DBFILESExportErrorNonExportable, - - /// The specified export format is not a valid option for this file type. - DBFILESExportErrorInvalidExportFormat, - - /// The exportable content is not yet available. Please retry later. - DBFILESExportErrorRetryError, - - /// (no description). - DBFILESExportErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESExportErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "non_exportable". -/// -/// Description of the "non_exportable" tag state: This file type cannot be -/// exported. Use `download` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNonExportable; - -/// -/// Initializes union class with tag state of "invalid_export_format". -/// -/// Description of the "invalid_export_format" tag state: The specified export -/// format is not a valid option for this file type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidExportFormat; - -/// -/// Initializes union class with tag state of "retry_error". -/// -/// Description of the "retry_error" tag state: The exportable content is not -/// yet available. Please retry later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRetryError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "non_exportable". -/// -/// @return Whether the union's current tag state has value "non_exportable". -/// -- (BOOL)isNonExportable; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_export_format". -/// -/// @return Whether the union's current tag state has value -/// "invalid_export_format". -/// -- (BOOL)isInvalidExportFormat; - -/// -/// Retrieves whether the union's current tag state has value "retry_error". -/// -/// @return Whether the union's current tag state has value "retry_error". -/// -- (BOOL)isRetryError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESExportError` union. -/// -@interface DBFILESExportErrorSerializer : NSObject - -/// -/// Serializes `DBFILESExportError` instances. -/// -/// @param instance An instance of the `DBFILESExportError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportError *)instance; - -/// -/// Deserializes `DBFILESExportError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportError` API object. -/// -/// @return An instantiation of the `DBFILESExportError` object. -/// -+ (DBFILESExportError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportInfo.h deleted file mode 100644 index 82442d13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportInfo.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportInfo` struct. -/// -/// Export information for a file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportInfo : NSObject - -#pragma mark - Instance fields - -/// Format to which the file can be exported to. -@property (nonatomic, readonly, copy, nullable) NSString *exportAs; - -/// Additional formats to which the file can be exported. These values can be -/// specified as the export_format in /files/export. -@property (nonatomic, readonly, nullable) NSArray *exportOptions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param exportAs Format to which the file can be exported to. -/// @param exportOptions Additional formats to which the file can be exported. -/// These values can be specified as the export_format in /files/export. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportAs:(nullable NSString *)exportAs - exportOptions:(nullable NSArray *)exportOptions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportInfo` struct. -/// -@interface DBFILESExportInfoSerializer : NSObject - -/// -/// Serializes `DBFILESExportInfo` instances. -/// -/// @param instance An instance of the `DBFILESExportInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportInfo *)instance; - -/// -/// Deserializes `DBFILESExportInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportInfo` API object. -/// -/// @return An instantiation of the `DBFILESExportInfo` object. -/// -+ (DBFILESExportInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportMetadata.h deleted file mode 100644 index 52d6d437..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportMetadata.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportMetadata : NSObject - -#pragma mark - Instance fields - -/// The last component of the path (including extension). This never contains a -/// slash. -@property (nonatomic, readonly, copy) NSString *name; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -/// A hash based on the exported file content. This field can be used to verify -/// data integrity. Similar to content hash. For more information see our -/// Content hash https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *exportHash; - -/// If the file is a Paper doc, this gives the latest doc revision which can be -/// used in `paperUpdate`. -@property (nonatomic, readonly, nullable) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param size The file size in bytes. -/// @param exportHash A hash based on the exported file content. This field can -/// be used to verify data integrity. Similar to content hash. For more -/// information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param paperRevision If the file is a Paper doc, this gives the latest doc -/// revision which can be used in `paperUpdate`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - size:(NSNumber *)size - exportHash:(nullable NSString *)exportHash - paperRevision:(nullable NSNumber *)paperRevision; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param size The file size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name size:(NSNumber *)size; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMetadata` struct. -/// -@interface DBFILESExportMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESExportMetadata` instances. -/// -/// @param instance An instance of the `DBFILESExportMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportMetadata *)instance; - -/// -/// Deserializes `DBFILESExportMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportMetadata` API object. -/// -/// @return An instantiation of the `DBFILESExportMetadata` object. -/// -+ (DBFILESExportMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportResult.h deleted file mode 100644 index 76bf5afe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESExportResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESExportMetadata; -@class DBFILESExportResult; -@class DBFILESFileMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESExportResult : NSObject - -#pragma mark - Instance fields - -/// Metadata for the exported version of the file. -@property (nonatomic, readonly) DBFILESExportMetadata *exportMetadata; - -/// Metadata for the original file. -@property (nonatomic, readonly) DBFILESFileMetadata *fileMetadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param exportMetadata Metadata for the exported version of the file. -/// @param fileMetadata Metadata for the original file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMetadata:(DBFILESExportMetadata *)exportMetadata - fileMetadata:(DBFILESFileMetadata *)fileMetadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportResult` struct. -/// -@interface DBFILESExportResultSerializer : NSObject - -/// -/// Serializes `DBFILESExportResult` instances. -/// -/// @param instance An instance of the `DBFILESExportResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESExportResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESExportResult *)instance; - -/// -/// Deserializes `DBFILESExportResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESExportResult` API object. -/// -/// @return An instantiation of the `DBFILESExportResult` object. -/// -+ (DBFILESExportResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileCategory.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileCategory.h deleted file mode 100644 index 94a5a461..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileCategory.h +++ /dev/null @@ -1,288 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileCategory; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCategory` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileCategory : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESFileCategoryTag` enum type represents the possible tag states -/// with which the `DBFILESFileCategory` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESFileCategoryTag) { - /// jpg, png, gif, and more. - DBFILESFileCategoryImage, - - /// doc, docx, txt, and more. - DBFILESFileCategoryDocument, - - /// pdf. - DBFILESFileCategoryPdf, - - /// xlsx, xls, csv, and more. - DBFILESFileCategorySpreadsheet, - - /// ppt, pptx, key, and more. - DBFILESFileCategoryPresentation, - - /// mp3, wav, mid, and more. - DBFILESFileCategoryAudio, - - /// mov, wmv, mp4, and more. - DBFILESFileCategoryVideo, - - /// dropbox folder. - DBFILESFileCategoryFolder, - - /// dropbox paper doc. - DBFILESFileCategoryPaper, - - /// any file not in one of the categories above. - DBFILESFileCategoryOthers, - - /// (no description). - DBFILESFileCategoryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESFileCategoryTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "image". -/// -/// Description of the "image" tag state: jpg, png, gif, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImage; - -/// -/// Initializes union class with tag state of "document". -/// -/// Description of the "document" tag state: doc, docx, txt, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocument; - -/// -/// Initializes union class with tag state of "pdf". -/// -/// Description of the "pdf" tag state: pdf. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPdf; - -/// -/// Initializes union class with tag state of "spreadsheet". -/// -/// Description of the "spreadsheet" tag state: xlsx, xls, csv, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSpreadsheet; - -/// -/// Initializes union class with tag state of "presentation". -/// -/// Description of the "presentation" tag state: ppt, pptx, key, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPresentation; - -/// -/// Initializes union class with tag state of "audio". -/// -/// Description of the "audio" tag state: mp3, wav, mid, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudio; - -/// -/// Initializes union class with tag state of "video". -/// -/// Description of the "video" tag state: mov, wmv, mp4, and more. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithVideo; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: dropbox folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder; - -/// -/// Initializes union class with tag state of "paper". -/// -/// Description of the "paper" tag state: dropbox paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaper; - -/// -/// Initializes union class with tag state of "others". -/// -/// Description of the "others" tag state: any file not in one of the categories -/// above. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOthers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "image". -/// -/// @return Whether the union's current tag state has value "image". -/// -- (BOOL)isImage; - -/// -/// Retrieves whether the union's current tag state has value "document". -/// -/// @return Whether the union's current tag state has value "document". -/// -- (BOOL)isDocument; - -/// -/// Retrieves whether the union's current tag state has value "pdf". -/// -/// @return Whether the union's current tag state has value "pdf". -/// -- (BOOL)isPdf; - -/// -/// Retrieves whether the union's current tag state has value "spreadsheet". -/// -/// @return Whether the union's current tag state has value "spreadsheet". -/// -- (BOOL)isSpreadsheet; - -/// -/// Retrieves whether the union's current tag state has value "presentation". -/// -/// @return Whether the union's current tag state has value "presentation". -/// -- (BOOL)isPresentation; - -/// -/// Retrieves whether the union's current tag state has value "audio". -/// -/// @return Whether the union's current tag state has value "audio". -/// -- (BOOL)isAudio; - -/// -/// Retrieves whether the union's current tag state has value "video". -/// -/// @return Whether the union's current tag state has value "video". -/// -- (BOOL)isVideo; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves whether the union's current tag state has value "paper". -/// -/// @return Whether the union's current tag state has value "paper". -/// -- (BOOL)isPaper; - -/// -/// Retrieves whether the union's current tag state has value "others". -/// -/// @return Whether the union's current tag state has value "others". -/// -- (BOOL)isOthers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESFileCategory` union. -/// -@interface DBFILESFileCategorySerializer : NSObject - -/// -/// Serializes `DBFILESFileCategory` instances. -/// -/// @param instance An instance of the `DBFILESFileCategory` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileCategory` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileCategory *)instance; - -/// -/// Deserializes `DBFILESFileCategory` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileCategory` API object. -/// -/// @return An instantiation of the `DBFILESFileCategory` object. -/// -+ (DBFILESFileCategory *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLock.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLock.h deleted file mode 100644 index 11fbd356..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLock.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLock; -@class DBFILESFileLockContent; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLock` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileLock : NSObject - -#pragma mark - Instance fields - -/// The lock description. -@property (nonatomic, readonly) DBFILESFileLockContent *content; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param content The lock description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContent:(DBFILESFileLockContent *)content; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLock` struct. -/// -@interface DBFILESFileLockSerializer : NSObject - -/// -/// Serializes `DBFILESFileLock` instances. -/// -/// @param instance An instance of the `DBFILESFileLock` API object. -/// -/// @return A json-compatible dictionary representation of the `DBFILESFileLock` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileLock *)instance; - -/// -/// Deserializes `DBFILESFileLock` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileLock` API object. -/// -/// @return An instantiation of the `DBFILESFileLock` object. -/// -+ (DBFILESFileLock *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLockContent.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLockContent.h deleted file mode 100644 index 71999931..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLockContent.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLockContent; -@class DBFILESSingleUserLock; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockContent` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileLockContent : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESFileLockContentTag` enum type represents the possible tag states -/// with which the `DBFILESFileLockContent` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESFileLockContentTag) { - /// Empty type to indicate no lock. - DBFILESFileLockContentUnlocked, - - /// A lock held by a single user. - DBFILESFileLockContentSingleUser, - - /// (no description). - DBFILESFileLockContentOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESFileLockContentTag tag; - -/// A lock held by a single user. @note Ensure the `isSingleUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSingleUserLock *singleUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unlocked". -/// -/// Description of the "unlocked" tag state: Empty type to indicate no lock. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlocked; - -/// -/// Initializes union class with tag state of "single_user". -/// -/// Description of the "single_user" tag state: A lock held by a single user. -/// -/// @param singleUser A lock held by a single user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSingleUser:(DBFILESSingleUserLock *)singleUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "unlocked". -/// -/// @return Whether the union's current tag state has value "unlocked". -/// -- (BOOL)isUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "single_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `singleUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "single_user". -/// -- (BOOL)isSingleUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESFileLockContent` union. -/// -@interface DBFILESFileLockContentSerializer : NSObject - -/// -/// Serializes `DBFILESFileLockContent` instances. -/// -/// @param instance An instance of the `DBFILESFileLockContent` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileLockContent` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileLockContent *)instance; - -/// -/// Deserializes `DBFILESFileLockContent` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileLockContent` API object. -/// -/// @return An instantiation of the `DBFILESFileLockContent` object. -/// -+ (DBFILESFileLockContent *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLockMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLockMetadata.h deleted file mode 100644 index ec4128f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileLockMetadata.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLockMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileLockMetadata : NSObject - -#pragma mark - Instance fields - -/// True if caller holds the file lock. -@property (nonatomic, readonly, nullable) NSNumber *isLockholder; - -/// The display name of the lock holder. -@property (nonatomic, readonly, copy, nullable) NSString *lockholderName; - -/// The account ID of the lock holder if known. -@property (nonatomic, readonly, copy, nullable) NSString *lockholderAccountId; - -/// The timestamp of the lock was created. -@property (nonatomic, readonly, nullable) NSDate *created; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isLockholder True if caller holds the file lock. -/// @param lockholderName The display name of the lock holder. -/// @param lockholderAccountId The account ID of the lock holder if known. -/// @param created The timestamp of the lock was created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsLockholder:(nullable NSNumber *)isLockholder - lockholderName:(nullable NSString *)lockholderName - lockholderAccountId:(nullable NSString *)lockholderAccountId - created:(nullable NSDate *)created; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockMetadata` struct. -/// -@interface DBFILESFileLockMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESFileLockMetadata` instances. -/// -/// @param instance An instance of the `DBFILESFileLockMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileLockMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileLockMetadata *)instance; - -/// -/// Deserializes `DBFILESFileLockMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileLockMetadata` API object. -/// -/// @return An instantiation of the `DBFILESFileLockMetadata` object. -/// -+ (DBFILESFileLockMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileMetadata.h deleted file mode 100644 index 76468935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileMetadata.h +++ /dev/null @@ -1,227 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESExportInfo; -@class DBFILESFileLockMetadata; -@class DBFILESFileMetadata; -@class DBFILESFileSharingInfo; -@class DBFILESMediaInfo; -@class DBFILESSymlinkInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileMetadata : DBFILESMetadata - -#pragma mark - Instance fields - -/// A unique identifier for the file. -@property (nonatomic, readonly, copy) NSString *id_; - -/// For files, this is the modification time set by the desktop client when the -/// file was added to Dropbox. Since this time is not verified (the Dropbox -/// server stores whatever the desktop client sends up), this should only be -/// used for display purposes (such as sorting) and not, for example, to -/// determine if a file has changed or not. -@property (nonatomic, readonly) NSDate *clientModified; - -/// The last time the file was modified on Dropbox. -@property (nonatomic, readonly) NSDate *serverModified; - -/// A unique identifier for the current revision of a file. This field is the -/// same rev as elsewhere in the API and can be used to detect changes and avoid -/// conflicts. -@property (nonatomic, readonly, copy) NSString *rev; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -/// Additional information if the file is a photo or video. This field will not -/// be set on entries returned by `listFolder`, `listFolderContinue`, or -/// `getThumbnailBatch`, starting December 2, 2019. -@property (nonatomic, readonly, nullable) DBFILESMediaInfo *mediaInfo; - -/// Set if this file is a symlink. -@property (nonatomic, readonly, nullable) DBFILESSymlinkInfo *symlinkInfo; - -/// Set if this file is contained in a shared folder. -@property (nonatomic, readonly, nullable) DBFILESFileSharingInfo *sharingInfo; - -/// If true, file can be downloaded directly; else the file must be exported. -@property (nonatomic, readonly) NSNumber *isDownloadable; - -/// Information about format this file can be exported to. This filed must be -/// set if isDownloadable is set to false. -@property (nonatomic, readonly, nullable) DBFILESExportInfo *exportInfo; - -/// Additional information if the file has custom properties with the property -/// template specified. -@property (nonatomic, readonly, nullable) NSArray *propertyGroups; - -/// This flag will only be present if include_has_explicit_shared_members is -/// true in `listFolder` or `getMetadata`. If this flag is present, it will be -/// true if this file has any explicit shared members. This is different from -/// sharing_info in that this could be true in the case where a file has -/// explicit members but is not contained within a shared folder. -@property (nonatomic, readonly, nullable) NSNumber *hasExplicitSharedMembers; - -/// A hash of the file content. This field can be used to verify data integrity. -/// For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -/// If present, the metadata associated with the file's current lock. -@property (nonatomic, readonly, nullable) DBFILESFileLockMetadata *fileLockInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the file. -/// @param clientModified For files, this is the modification time set by the -/// desktop client when the file was added to Dropbox. Since this time is not -/// verified (the Dropbox server stores whatever the desktop client sends up), -/// this should only be used for display purposes (such as sorting) and not, for -/// example, to determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// @param mediaInfo Additional information if the file is a photo or video. -/// This field will not be set on entries returned by `listFolder`, -/// `listFolderContinue`, or `getThumbnailBatch`, starting December 2, 2019. -/// @param symlinkInfo Set if this file is a symlink. -/// @param sharingInfo Set if this file is contained in a shared folder. -/// @param isDownloadable If true, file can be downloaded directly; else the -/// file must be exported. -/// @param exportInfo Information about format this file can be exported to. -/// This filed must be set if isDownloadable is set to false. -/// @param propertyGroups Additional information if the file has custom -/// properties with the property template specified. -/// @param hasExplicitSharedMembers This flag will only be present if -/// include_has_explicit_shared_members is true in `listFolder` or -/// `getMetadata`. If this flag is present, it will be true if this file has -/// any explicit shared members. This is different from sharing_info in that -/// this could be true in the case where a file has explicit members but is not -/// contained within a shared folder. -/// @param contentHash A hash of the file content. This field can be used to -/// verify data integrity. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param fileLockInfo If present, the metadata associated with the file's -/// current lock. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - id_:(NSString *)id_ - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl - mediaInfo:(nullable DBFILESMediaInfo *)mediaInfo - symlinkInfo:(nullable DBFILESSymlinkInfo *)symlinkInfo - sharingInfo:(nullable DBFILESFileSharingInfo *)sharingInfo - isDownloadable:(nullable NSNumber *)isDownloadable - exportInfo:(nullable DBFILESExportInfo *)exportInfo - propertyGroups:(nullable NSArray *)propertyGroups - hasExplicitSharedMembers:(nullable NSNumber *)hasExplicitSharedMembers - contentHash:(nullable NSString *)contentHash - fileLockInfo:(nullable DBFILESFileLockMetadata *)fileLockInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the file. -/// @param clientModified For files, this is the modification time set by the -/// desktop client when the file was added to Dropbox. Since this time is not -/// verified (the Dropbox server stores whatever the desktop client sends up), -/// this should only be used for display purposes (such as sorting) and not, for -/// example, to determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - id_:(NSString *)id_ - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMetadata` struct. -/// -@interface DBFILESFileMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESFileMetadata` instances. -/// -/// @param instance An instance of the `DBFILESFileMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileMetadata *)instance; - -/// -/// Deserializes `DBFILESFileMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileMetadata` API object. -/// -/// @return An instantiation of the `DBFILESFileMetadata` object. -/// -+ (DBFILESFileMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileOpsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileOpsResult.h deleted file mode 100644 index 958542c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileOpsResult.h +++ /dev/null @@ -1,70 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileOpsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileOpsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileOpsResult : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileOpsResult` struct. -/// -@interface DBFILESFileOpsResultSerializer : NSObject - -/// -/// Serializes `DBFILESFileOpsResult` instances. -/// -/// @param instance An instance of the `DBFILESFileOpsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileOpsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileOpsResult *)instance; - -/// -/// Deserializes `DBFILESFileOpsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileOpsResult` API object. -/// -/// @return An instantiation of the `DBFILESFileOpsResult` object. -/// -+ (DBFILESFileOpsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileSharingInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileSharingInfo.h deleted file mode 100644 index 4fa67851..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileSharingInfo.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESSharingInfo.h" -#import "DBSerializableProtocol.h" - -@class DBFILESFileSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileSharingInfo` struct. -/// -/// Sharing info for a file which is contained by a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileSharingInfo : DBFILESSharingInfo - -#pragma mark - Instance fields - -/// ID of shared folder that holds this file. -@property (nonatomic, readonly, copy) NSString *parentSharedFolderId; - -/// The last user who modified the file. This field will be null if the user's -/// account has been deleted. -@property (nonatomic, readonly, copy, nullable) NSString *modifiedBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// @param parentSharedFolderId ID of shared folder that holds this file. -/// @param modifiedBy The last user who modified the file. This field will be -/// null if the user's account has been deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly - parentSharedFolderId:(NSString *)parentSharedFolderId - modifiedBy:(nullable NSString *)modifiedBy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// @param parentSharedFolderId ID of shared folder that holds this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly parentSharedFolderId:(NSString *)parentSharedFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileSharingInfo` struct. -/// -@interface DBFILESFileSharingInfoSerializer : NSObject - -/// -/// Serializes `DBFILESFileSharingInfo` instances. -/// -/// @param instance An instance of the `DBFILESFileSharingInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileSharingInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileSharingInfo *)instance; - -/// -/// Deserializes `DBFILESFileSharingInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileSharingInfo` API object. -/// -/// @return An instantiation of the `DBFILESFileSharingInfo` object. -/// -+ (DBFILESFileSharingInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileStatus.h deleted file mode 100644 index c697cfd0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFileStatus.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFileStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESFileStatusTag` enum type represents the possible tag states with -/// which the `DBFILESFileStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESFileStatusTag) { - /// (no description). - DBFILESFileStatusActive, - - /// (no description). - DBFILESFileStatusDeleted, - - /// (no description). - DBFILESFileStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESFileStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "deleted". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleted; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "deleted". -/// -/// @return Whether the union's current tag state has value "deleted". -/// -- (BOOL)isDeleted; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESFileStatus` union. -/// -@interface DBFILESFileStatusSerializer : NSObject - -/// -/// Serializes `DBFILESFileStatus` instances. -/// -/// @param instance An instance of the `DBFILESFileStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFileStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFileStatus *)instance; - -/// -/// Deserializes `DBFILESFileStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFileStatus` API object. -/// -/// @return An instantiation of the `DBFILESFileStatus` object. -/// -+ (DBFILESFileStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFolderMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFolderMetadata.h deleted file mode 100644 index aaf31b73..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFolderMetadata.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESFolderMetadata; -@class DBFILESFolderSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFolderMetadata : DBFILESMetadata - -#pragma mark - Instance fields - -/// A unique identifier for the folder. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Please use sharingInfo instead. -@property (nonatomic, readonly, copy, nullable) NSString *sharedFolderId; - -/// Set if the folder is contained in a shared folder or is a shared folder -/// mount point. -@property (nonatomic, readonly, nullable) DBFILESFolderSharingInfo *sharingInfo; - -/// Additional information if the file has custom properties with the property -/// template specified. Note that only properties associated with user-owned -/// templates, not team-owned templates, can be attached to folders. -@property (nonatomic, readonly, nullable) NSArray *propertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the folder. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// @param sharedFolderId Please use sharingInfo instead. -/// @param sharingInfo Set if the folder is contained in a shared folder or is a -/// shared folder mount point. -/// @param propertyGroups Additional information if the file has custom -/// properties with the property template specified. Note that only properties -/// associated with user-owned templates, not team-owned templates, can be -/// attached to folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - id_:(NSString *)id_ - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl - sharedFolderId:(nullable NSString *)sharedFolderId - sharingInfo:(nullable DBFILESFolderSharingInfo *)sharingInfo - propertyGroups:(nullable NSArray *)propertyGroups; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param id_ A unique identifier for the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name id_:(NSString *)id_; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderMetadata` struct. -/// -@interface DBFILESFolderMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESFolderMetadata` instances. -/// -/// @param instance An instance of the `DBFILESFolderMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFolderMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFolderMetadata *)instance; - -/// -/// Deserializes `DBFILESFolderMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFolderMetadata` API object. -/// -/// @return An instantiation of the `DBFILESFolderMetadata` object. -/// -+ (DBFILESFolderMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFolderSharingInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFolderSharingInfo.h deleted file mode 100644 index f6b94c3d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESFolderSharingInfo.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESSharingInfo.h" -#import "DBSerializableProtocol.h" - -@class DBFILESFolderSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderSharingInfo` struct. -/// -/// Sharing info for a folder which is contained in a shared folder or is a -/// shared folder mount point. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESFolderSharingInfo : DBFILESSharingInfo - -#pragma mark - Instance fields - -/// Set if the folder is contained by a shared folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// If this folder is a shared folder mount point, the ID of the shared folder -/// mounted at this location. -@property (nonatomic, readonly, copy, nullable) NSString *sharedFolderId; - -/// Specifies that the folder can only be traversed and the user can only see a -/// limited subset of the contents of this folder because they don't have read -/// access to this folder. They do, however, have access to some sub folder. -@property (nonatomic, readonly) NSNumber *traverseOnly; - -/// Specifies that the folder cannot be accessed by the user. -@property (nonatomic, readonly) NSNumber *noAccess; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// @param parentSharedFolderId Set if the folder is contained by a shared -/// folder. -/// @param sharedFolderId If this folder is a shared folder mount point, the ID -/// of the shared folder mounted at this location. -/// @param traverseOnly Specifies that the folder can only be traversed and the -/// user can only see a limited subset of the contents of this folder because -/// they don't have read access to this folder. They do, however, have access to -/// some sub folder. -/// @param noAccess Specifies that the folder cannot be accessed by the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - sharedFolderId:(nullable NSString *)sharedFolderId - traverseOnly:(nullable NSNumber *)traverseOnly - noAccess:(nullable NSNumber *)noAccess; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderSharingInfo` struct. -/// -@interface DBFILESFolderSharingInfoSerializer : NSObject - -/// -/// Serializes `DBFILESFolderSharingInfo` instances. -/// -/// @param instance An instance of the `DBFILESFolderSharingInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESFolderSharingInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESFolderSharingInfo *)instance; - -/// -/// Deserializes `DBFILESFolderSharingInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESFolderSharingInfo` API object. -/// -/// @return An instantiation of the `DBFILESFolderSharingInfo` object. -/// -+ (DBFILESFolderSharingInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceArg.h deleted file mode 100644 index 4331aa87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetCopyReferenceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetCopyReferenceArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetCopyReferenceArg : NSObject - -#pragma mark - Instance fields - -/// The path to the file or folder you want to get a copy reference to. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the file or folder you want to get a copy reference -/// to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetCopyReferenceArg` struct. -/// -@interface DBFILESGetCopyReferenceArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetCopyReferenceArg` instances. -/// -/// @param instance An instance of the `DBFILESGetCopyReferenceArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetCopyReferenceArg *)instance; - -/// -/// Deserializes `DBFILESGetCopyReferenceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceArg` API object. -/// -/// @return An instantiation of the `DBFILESGetCopyReferenceArg` object. -/// -+ (DBFILESGetCopyReferenceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceError.h deleted file mode 100644 index d7a00818..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetCopyReferenceError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetCopyReferenceError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetCopyReferenceError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetCopyReferenceErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetCopyReferenceError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetCopyReferenceErrorTag) { - /// (no description). - DBFILESGetCopyReferenceErrorPath, - - /// (no description). - DBFILESGetCopyReferenceErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetCopyReferenceErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetCopyReferenceError` union. -/// -@interface DBFILESGetCopyReferenceErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetCopyReferenceError` instances. -/// -/// @param instance An instance of the `DBFILESGetCopyReferenceError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetCopyReferenceError *)instance; - -/// -/// Deserializes `DBFILESGetCopyReferenceError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceError` API object. -/// -/// @return An instantiation of the `DBFILESGetCopyReferenceError` object. -/// -+ (DBFILESGetCopyReferenceError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceResult.h deleted file mode 100644 index 852ca108..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetCopyReferenceResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetCopyReferenceResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetCopyReferenceResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetCopyReferenceResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the file or folder. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -/// A copy reference to the file or folder. -@property (nonatomic, readonly, copy) NSString *dCopyReference; - -/// The expiration date of the copy reference. This value is currently set to be -/// far enough in the future so that expiration is effectively not an issue. -@property (nonatomic, readonly) NSDate *expires; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the file or folder. -/// @param dCopyReference A copy reference to the file or folder. -/// @param expires The expiration date of the copy reference. This value is -/// currently set to be far enough in the future so that expiration is -/// effectively not an issue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata - dCopyReference:(NSString *)dCopyReference - expires:(NSDate *)expires; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetCopyReferenceResult` struct. -/// -@interface DBFILESGetCopyReferenceResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetCopyReferenceResult` instances. -/// -/// @param instance An instance of the `DBFILESGetCopyReferenceResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetCopyReferenceResult *)instance; - -/// -/// Deserializes `DBFILESGetCopyReferenceResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetCopyReferenceResult` API object. -/// -/// @return An instantiation of the `DBFILESGetCopyReferenceResult` object. -/// -+ (DBFILESGetCopyReferenceResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetMetadataArg.h deleted file mode 100644 index af496faf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetMetadataArg.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILESGetMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMetadataArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetMetadataArg : NSObject - -#pragma mark - Instance fields - -/// The path of a file or folder on Dropbox. -@property (nonatomic, readonly, copy) NSString *path; - -/// If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. -@property (nonatomic, readonly) NSNumber *includeMediaInfo; - -/// If true, DeletedMetadata will be returned for deleted file or folder, -/// otherwise `notFound` in `DBFILESLookupError` will be returned. -@property (nonatomic, readonly) NSNumber *includeDeleted; - -/// If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -@property (nonatomic, readonly) NSNumber *includeHasExplicitSharedMembers; - -/// If set to a valid list of template IDs, `propertyGroups` in -/// `DBFILESFileMetadata` is set if there exists property data associated with -/// the file and each of the listed templates. -@property (nonatomic, readonly, nullable) DBFILEPROPERTIESTemplateFilterBase *includePropertyGroups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of a file or folder on Dropbox. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set -/// for photo and video. -/// @param includeDeleted If true, DeletedMetadata will be returned for deleted -/// file or folder, otherwise `notFound` in `DBFILESLookupError` will be -/// returned. -/// @param includeHasExplicitSharedMembers If true, the results will include a -/// flag for each file indicating whether or not that file has any explicit -/// members. -/// @param includePropertyGroups If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set if there exists property -/// data associated with the file and each of the listed templates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of a file or folder on Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetMetadataArg` struct. -/// -@interface DBFILESGetMetadataArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetMetadataArg` instances. -/// -/// @param instance An instance of the `DBFILESGetMetadataArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetMetadataArg *)instance; - -/// -/// Deserializes `DBFILESGetMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetMetadataArg` API object. -/// -/// @return An instantiation of the `DBFILESGetMetadataArg` object. -/// -+ (DBFILESGetMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetMetadataError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetMetadataError.h deleted file mode 100644 index a2fc61f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetMetadataError.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetMetadataError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMetadataError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetMetadataError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetMetadataErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetMetadataError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetMetadataErrorTag) { - /// (no description). - DBFILESGetMetadataErrorPath, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetMetadataErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetMetadataError` union. -/// -@interface DBFILESGetMetadataErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetMetadataError` instances. -/// -/// @param instance An instance of the `DBFILESGetMetadataError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetMetadataError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetMetadataError *)instance; - -/// -/// Deserializes `DBFILESGetMetadataError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetMetadataError` API object. -/// -/// @return An instantiation of the `DBFILESGetMetadataError` object. -/// -+ (DBFILESGetMetadataError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTagsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTagsArg.h deleted file mode 100644 index 510bffc9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTagsArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTagsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTagsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTagsArg : NSObject - -#pragma mark - Instance fields - -/// Path to the items. -@property (nonatomic, readonly) NSArray *paths; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param paths Path to the items. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaths:(NSArray *)paths; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTagsArg` struct. -/// -@interface DBFILESGetTagsArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetTagsArg` instances. -/// -/// @param instance An instance of the `DBFILESGetTagsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTagsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTagsArg *)instance; - -/// -/// Deserializes `DBFILESGetTagsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTagsArg` API object. -/// -/// @return An instantiation of the `DBFILESGetTagsArg` object. -/// -+ (DBFILESGetTagsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTagsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTagsResult.h deleted file mode 100644 index 9cafb762..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTagsResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTagsResult; -@class DBFILESPathToTags; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTagsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTagsResult : NSObject - -#pragma mark - Instance fields - -/// List of paths and their corresponding tags. -@property (nonatomic, readonly) NSArray *pathsToTags; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param pathsToTags List of paths and their corresponding tags. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathsToTags:(NSArray *)pathsToTags; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTagsResult` struct. -/// -@interface DBFILESGetTagsResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetTagsResult` instances. -/// -/// @param instance An instance of the `DBFILESGetTagsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTagsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTagsResult *)instance; - -/// -/// Deserializes `DBFILESGetTagsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTagsResult` API object. -/// -/// @return An instantiation of the `DBFILESGetTagsResult` object. -/// -+ (DBFILESGetTagsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkArg.h deleted file mode 100644 index 2c0ab61b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTemporaryLinkArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryLinkArg : NSObject - -#pragma mark - Instance fields - -/// The path to the file you want a temporary link to. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the file you want a temporary link to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryLinkArg` struct. -/// -@interface DBFILESGetTemporaryLinkArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryLinkArg` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryLinkArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryLinkArg *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkArg` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryLinkArg` object. -/// -+ (DBFILESGetTemporaryLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkError.h deleted file mode 100644 index 54e56099..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkError.h +++ /dev/null @@ -1,197 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTemporaryLinkError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetTemporaryLinkErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetTemporaryLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetTemporaryLinkErrorTag) { - /// (no description). - DBFILESGetTemporaryLinkErrorPath, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBFILESGetTemporaryLinkErrorEmailNotVerified, - - /// Cannot get temporary link to this file type; use `export` instead. - DBFILESGetTemporaryLinkErrorUnsupportedFile, - - /// The user is not allowed to request a temporary link to the specified - /// file. For example, this can occur if the file is restricted or if the - /// user's links are banned - /// https://help.dropbox.com/files-folders/share/banned-links. - DBFILESGetTemporaryLinkErrorNotAllowed, - - /// (no description). - DBFILESGetTemporaryLinkErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetTemporaryLinkErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "email_not_verified". -/// -/// Description of the "email_not_verified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailNotVerified; - -/// -/// Initializes union class with tag state of "unsupported_file". -/// -/// Description of the "unsupported_file" tag state: Cannot get temporary link -/// to this file type; use `export` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedFile; - -/// -/// Initializes union class with tag state of "not_allowed". -/// -/// Description of the "not_allowed" tag state: The user is not allowed to -/// request a temporary link to the specified file. For example, this can occur -/// if the file is restricted or if the user's links are banned -/// https://help.dropbox.com/files-folders/share/banned-links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAllowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "email_not_verified". -/// -- (BOOL)isEmailNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_file". -/// -/// @return Whether the union's current tag state has value "unsupported_file". -/// -- (BOOL)isUnsupportedFile; - -/// -/// Retrieves whether the union's current tag state has value "not_allowed". -/// -/// @return Whether the union's current tag state has value "not_allowed". -/// -- (BOOL)isNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetTemporaryLinkError` union. -/// -@interface DBFILESGetTemporaryLinkErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryLinkError` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryLinkError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryLinkError *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkError` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryLinkError` object. -/// -+ (DBFILESGetTemporaryLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkResult.h deleted file mode 100644 index 987a42c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryLinkResult.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESGetTemporaryLinkResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryLinkResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryLinkResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the file. -@property (nonatomic, readonly) DBFILESFileMetadata *metadata; - -/// The temporary link which can be used to stream content the file. -@property (nonatomic, readonly, copy) NSString *link; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the file. -/// @param link The temporary link which can be used to stream content the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFileMetadata *)metadata link:(NSString *)link; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryLinkResult` struct. -/// -@interface DBFILESGetTemporaryLinkResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryLinkResult` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryLinkResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryLinkResult *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryLinkResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryLinkResult` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryLinkResult` object. -/// -+ (DBFILESGetTemporaryLinkResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryUploadLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryUploadLinkArg.h deleted file mode 100644 index b2af59c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryUploadLinkArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCommitInfo; -@class DBFILESGetTemporaryUploadLinkArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryUploadLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryUploadLinkArg : NSObject - -#pragma mark - Instance fields - -/// Contains the path and other optional modifiers for the future upload commit. -/// Equivalent to the parameters provided to `upload`. -@property (nonatomic, readonly) DBFILESCommitInfo *commitInfo; - -/// How long before this link expires, in seconds. Attempting to start an -/// upload with this link longer than this period of time after link creation -/// will result in an error. -@property (nonatomic, readonly) NSNumber *duration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commitInfo Contains the path and other optional modifiers for the -/// future upload commit. Equivalent to the parameters provided to `upload`. -/// @param duration How long before this link expires, in seconds. Attempting -/// to start an upload with this link longer than this period of time after -/// link creation will result in an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommitInfo:(DBFILESCommitInfo *)commitInfo duration:(nullable NSNumber *)duration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param commitInfo Contains the path and other optional modifiers for the -/// future upload commit. Equivalent to the parameters provided to `upload`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommitInfo:(DBFILESCommitInfo *)commitInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryUploadLinkArg` struct. -/// -@interface DBFILESGetTemporaryUploadLinkArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryUploadLinkArg` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryUploadLinkArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryUploadLinkArg *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryUploadLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkArg` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryUploadLinkArg` object. -/// -+ (DBFILESGetTemporaryUploadLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryUploadLinkResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryUploadLinkResult.h deleted file mode 100644 index a454c8a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetTemporaryUploadLinkResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetTemporaryUploadLinkResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTemporaryUploadLinkResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetTemporaryUploadLinkResult : NSObject - -#pragma mark - Instance fields - -/// The temporary link which can be used to stream a file to a Dropbox location. -@property (nonatomic, readonly, copy) NSString *link; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param link The temporary link which can be used to stream a file to a -/// Dropbox location. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLink:(NSString *)link; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTemporaryUploadLinkResult` struct. -/// -@interface DBFILESGetTemporaryUploadLinkResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetTemporaryUploadLinkResult` instances. -/// -/// @param instance An instance of the `DBFILESGetTemporaryUploadLinkResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetTemporaryUploadLinkResult *)instance; - -/// -/// Deserializes `DBFILESGetTemporaryUploadLinkResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetTemporaryUploadLinkResult` API object. -/// -/// @return An instantiation of the `DBFILESGetTemporaryUploadLinkResult` -/// object. -/// -+ (DBFILESGetTemporaryUploadLinkResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchArg.h deleted file mode 100644 index e8ff7535..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchArg; -@class DBFILESThumbnailArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchArg` struct. -/// -/// Arguments for `getThumbnailBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of files to get thumbnails. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of files to get thumbnails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetThumbnailBatchArg` struct. -/// -@interface DBFILESGetThumbnailBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchArg *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchArg` object. -/// -+ (DBFILESGetThumbnailBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchError.h deleted file mode 100644 index 43496c4a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetThumbnailBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESGetThumbnailBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetThumbnailBatchErrorTag) { - /// The operation involves more than 25 files. - DBFILESGetThumbnailBatchErrorTooManyFiles, - - /// (no description). - DBFILESGetThumbnailBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetThumbnailBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation involves more -/// than 25 files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetThumbnailBatchError` union. -/// -@interface DBFILESGetThumbnailBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchError` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchError *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchError` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchError` object. -/// -+ (DBFILESGetThumbnailBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResult.h deleted file mode 100644 index cfc3ce63..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchResult; -@class DBFILESGetThumbnailBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchResult : NSObject - -#pragma mark - Instance fields - -/// List of files and their thumbnails. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of files and their thumbnails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetThumbnailBatchResult` struct. -/// -@interface DBFILESGetThumbnailBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchResult *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchResult` object. -/// -+ (DBFILESGetThumbnailBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResultData.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResultData.h deleted file mode 100644 index 5dd519b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResultData.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESGetThumbnailBatchResultData; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchResultData` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchResultData : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBFILESFileMetadata *metadata; - -/// A string containing the base64-encoded thumbnail data for this file. -@property (nonatomic, readonly, copy) NSString *thumbnail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata (no description). -/// @param thumbnail A string containing the base64-encoded thumbnail data for -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESFileMetadata *)metadata thumbnail:(NSString *)thumbnail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetThumbnailBatchResultData` struct. -/// -@interface DBFILESGetThumbnailBatchResultDataSerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchResultData` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchResultData` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultData` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchResultData *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchResultData` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultData` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchResultData` object. -/// -+ (DBFILESGetThumbnailBatchResultData *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResultEntry.h deleted file mode 100644 index 4ab498e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGetThumbnailBatchResultEntry.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGetThumbnailBatchResultData; -@class DBFILESGetThumbnailBatchResultEntry; -@class DBFILESThumbnailError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetThumbnailBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGetThumbnailBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESGetThumbnailBatchResultEntryTag` enum type represents the -/// possible tag states with which the `DBFILESGetThumbnailBatchResultEntry` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESGetThumbnailBatchResultEntryTag) { - /// (no description). - DBFILESGetThumbnailBatchResultEntrySuccess, - - /// The result for this file if it was an error. - DBFILESGetThumbnailBatchResultEntryFailure, - - /// (no description). - DBFILESGetThumbnailBatchResultEntryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESGetThumbnailBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESGetThumbnailBatchResultData *success; - -/// The result for this file if it was an error. @note Ensure the `isFailure` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESThumbnailError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESGetThumbnailBatchResultData *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// Description of the "failure" tag state: The result for this file if it was -/// an error. -/// -/// @param failure The result for this file if it was an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESThumbnailError *)failure; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESGetThumbnailBatchResultEntry` union. -/// -@interface DBFILESGetThumbnailBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESGetThumbnailBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESGetThumbnailBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGetThumbnailBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESGetThumbnailBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGetThumbnailBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESGetThumbnailBatchResultEntry` -/// object. -/// -+ (DBFILESGetThumbnailBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGpsCoordinates.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGpsCoordinates.h deleted file mode 100644 index 81bb9fe1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESGpsCoordinates.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESGpsCoordinates; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GpsCoordinates` struct. -/// -/// GPS coordinates for a photo or video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESGpsCoordinates : NSObject - -#pragma mark - Instance fields - -/// Latitude of the GPS coordinates. -@property (nonatomic, readonly) NSNumber *latitude; - -/// Longitude of the GPS coordinates. -@property (nonatomic, readonly) NSNumber *longitude; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param latitude Latitude of the GPS coordinates. -/// @param longitude Longitude of the GPS coordinates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLatitude:(NSNumber *)latitude longitude:(NSNumber *)longitude; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GpsCoordinates` struct. -/// -@interface DBFILESGpsCoordinatesSerializer : NSObject - -/// -/// Serializes `DBFILESGpsCoordinates` instances. -/// -/// @param instance An instance of the `DBFILESGpsCoordinates` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESGpsCoordinates` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESGpsCoordinates *)instance; - -/// -/// Deserializes `DBFILESGpsCoordinates` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESGpsCoordinates` API object. -/// -/// @return An instantiation of the `DBFILESGpsCoordinates` object. -/// -+ (DBFILESGpsCoordinates *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESHighlightSpan.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESHighlightSpan.h deleted file mode 100644 index f0e4ec5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESHighlightSpan.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESHighlightSpan; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HighlightSpan` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESHighlightSpan : NSObject - -#pragma mark - Instance fields - -/// String to be determined whether it should be highlighted or not. -@property (nonatomic, readonly, copy) NSString *highlightStr; - -/// The string should be highlighted or not. -@property (nonatomic, readonly) NSNumber *isHighlighted; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param highlightStr String to be determined whether it should be highlighted -/// or not. -/// @param isHighlighted The string should be highlighted or not. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHighlightStr:(NSString *)highlightStr isHighlighted:(NSNumber *)isHighlighted; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `HighlightSpan` struct. -/// -@interface DBFILESHighlightSpanSerializer : NSObject - -/// -/// Serializes `DBFILESHighlightSpan` instances. -/// -/// @param instance An instance of the `DBFILESHighlightSpan` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESHighlightSpan` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESHighlightSpan *)instance; - -/// -/// Deserializes `DBFILESHighlightSpan` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESHighlightSpan` API object. -/// -/// @return An instantiation of the `DBFILESHighlightSpan` object. -/// -+ (DBFILESHighlightSpan *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESImportFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESImportFormat.h deleted file mode 100644 index 018ea0cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESImportFormat.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESImportFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ImportFormat` union. -/// -/// The import format of the incoming Paper doc content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESImportFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESImportFormatTag` enum type represents the possible tag states -/// with which the `DBFILESImportFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESImportFormatTag) { - /// The provided data is interpreted as standard HTML. - DBFILESImportFormatHtml, - - /// The provided data is interpreted as markdown. - DBFILESImportFormatMarkdown, - - /// The provided data is interpreted as plain text. - DBFILESImportFormatPlainText, - - /// (no description). - DBFILESImportFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESImportFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "html". -/// -/// Description of the "html" tag state: The provided data is interpreted as -/// standard HTML. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// Description of the "markdown" tag state: The provided data is interpreted as -/// markdown. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "plain_text". -/// -/// Description of the "plain_text" tag state: The provided data is interpreted -/// as plain text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlainText; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "plain_text". -/// -/// @return Whether the union's current tag state has value "plain_text". -/// -- (BOOL)isPlainText; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESImportFormat` union. -/// -@interface DBFILESImportFormatSerializer : NSObject - -/// -/// Serializes `DBFILESImportFormat` instances. -/// -/// @param instance An instance of the `DBFILESImportFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESImportFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESImportFormat *)instance; - -/// -/// Deserializes `DBFILESImportFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESImportFormat` API object. -/// -/// @return An instantiation of the `DBFILESImportFormat` object. -/// -+ (DBFILESImportFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderArg.h deleted file mode 100644 index 3c260b37..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderArg.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILESListFolderArg; -@class DBFILESSharedLink; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderArg : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the file. -@property (nonatomic, readonly, copy) NSString *path; - -/// If true, the list folder operation will be applied recursively to all -/// subfolders and the response will contain contents of all subfolders. -@property (nonatomic, readonly) NSNumber *recursive; - -/// If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. -/// This parameter will no longer have an effect starting December 2, 2019. -@property (nonatomic, readonly) NSNumber *includeMediaInfo; - -/// If true, the results will include entries for files and folders that used to -/// exist but were deleted. -@property (nonatomic, readonly) NSNumber *includeDeleted; - -/// If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -@property (nonatomic, readonly) NSNumber *includeHasExplicitSharedMembers; - -/// If true, the results will include entries under mounted folders which -/// includes app folder, shared folder and team folder. -@property (nonatomic, readonly) NSNumber *includeMountedFolders; - -/// The maximum number of results to return per request. Note: This is an -/// approximate number and there can be slightly more entries returned in some -/// cases. -@property (nonatomic, readonly, nullable) NSNumber *limit; - -/// A shared link to list the contents of. If the link is password-protected, -/// the password must be provided. If this field is present, `path` in -/// `DBFILESListFolderArg` will be relative to root of the shared link. Only -/// non-recursive mode is supported for shared link. -@property (nonatomic, readonly, nullable) DBFILESSharedLink *sharedLink; - -/// If set to a valid list of template IDs, `propertyGroups` in -/// `DBFILESFileMetadata` is set if there exists property data associated with -/// the file and each of the listed templates. -@property (nonatomic, readonly, nullable) DBFILEPROPERTIESTemplateFilterBase *includePropertyGroups; - -/// If true, include files that are not downloadable, i.e. Google Docs. -@property (nonatomic, readonly) NSNumber *includeNonDownloadableFiles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied -/// recursively to all subfolders and the response will contain contents of all -/// subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set -/// for photo and video. This parameter will no longer have an effect starting -/// December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files -/// and folders that used to exist but were deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a -/// flag for each file indicating whether or not that file has any explicit -/// members. -/// @param includeMountedFolders If true, the results will include entries under -/// mounted folders which includes app folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This -/// is an approximate number and there can be slightly more entries returned in -/// some cases. -/// @param sharedLink A shared link to list the contents of. If the link is -/// password-protected, the password must be provided. If this field is present, -/// `path` in `DBFILESListFolderArg` will be relative to root of the shared -/// link. Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, -/// `propertyGroups` in `DBFILESFileMetadata` is set if there exists property -/// data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not -/// downloadable, i.e. Google Docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path A unique identifier for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderArg` struct. -/// -@interface DBFILESListFolderArgSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderArg` instances. -/// -/// @param instance An instance of the `DBFILESListFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderArg *)instance; - -/// -/// Deserializes `DBFILESListFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderArg` API object. -/// -/// @return An instantiation of the `DBFILESListFolderArg` object. -/// -+ (DBFILESListFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderContinueArg.h deleted file mode 100644 index d2cc44e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `listFolder` or -/// `listFolderContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `listFolder` or -/// `listFolderContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderContinueArg` struct. -/// -@interface DBFILESListFolderContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderContinueArg` instances. -/// -/// @param instance An instance of the `DBFILESListFolderContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderContinueArg *)instance; - -/// -/// Deserializes `DBFILESListFolderContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueArg` API object. -/// -/// @return An instantiation of the `DBFILESListFolderContinueArg` object. -/// -+ (DBFILESListFolderContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderContinueError.h deleted file mode 100644 index 503ac21d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderContinueError.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderContinueError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListFolderContinueErrorTag` enum type represents the possible -/// tag states with which the `DBFILESListFolderContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListFolderContinueErrorTag) { - /// (no description). - DBFILESListFolderContinueErrorPath, - - /// Indicates that the cursor has been invalidated. Call `listFolder` to - /// obtain a new cursor. - DBFILESListFolderContinueErrorReset, - - /// (no description). - DBFILESListFolderContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListFolderContinueErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `listFolder` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListFolderContinueError` union. -/// -@interface DBFILESListFolderContinueErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderContinueError` instances. -/// -/// @param instance An instance of the `DBFILESListFolderContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderContinueError *)instance; - -/// -/// Deserializes `DBFILESListFolderContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderContinueError` API object. -/// -/// @return An instantiation of the `DBFILESListFolderContinueError` object. -/// -+ (DBFILESListFolderContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderError.h deleted file mode 100644 index b63b13a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderError.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESTemplateError; -@class DBFILESListFolderError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListFolderErrorTag` enum type represents the possible tag states -/// with which the `DBFILESListFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListFolderErrorTag) { - /// (no description). - DBFILESListFolderErrorPath, - - /// (no description). - DBFILESListFolderErrorTemplateError, - - /// (no description). - DBFILESListFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListFolderErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// (no description). @note Ensure the `isTemplateError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESTemplateError *templateError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "template_error". -/// -/// @param templateError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemplateError:(DBFILEPROPERTIESTemplateError *)templateError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "template_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `templateError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "template_error". -/// -- (BOOL)isTemplateError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListFolderError` union. -/// -@interface DBFILESListFolderErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderError` instances. -/// -/// @param instance An instance of the `DBFILESListFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderError *)instance; - -/// -/// Deserializes `DBFILESListFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderError` API object. -/// -/// @return An instantiation of the `DBFILESListFolderError` object. -/// -+ (DBFILESListFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderGetLatestCursorResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderGetLatestCursorResult.h deleted file mode 100644 index 2b049cd0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderGetLatestCursorResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderGetLatestCursorResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderGetLatestCursorResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderGetLatestCursorResult : NSObject - -#pragma mark - Instance fields - -/// Pass the cursor into `listFolderContinue` to see what's changed in the -/// folder since your previous query. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Pass the cursor into `listFolderContinue` to see what's -/// changed in the folder since your previous query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderGetLatestCursorResult` struct. -/// -@interface DBFILESListFolderGetLatestCursorResultSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderGetLatestCursorResult` instances. -/// -/// @param instance An instance of the `DBFILESListFolderGetLatestCursorResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderGetLatestCursorResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderGetLatestCursorResult *)instance; - -/// -/// Deserializes `DBFILESListFolderGetLatestCursorResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderGetLatestCursorResult` API object. -/// -/// @return An instantiation of the `DBFILESListFolderGetLatestCursorResult` -/// object. -/// -+ (DBFILESListFolderGetLatestCursorResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollArg.h deleted file mode 100644 index 22932158..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollArg.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderLongpollArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderLongpollArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderLongpollArg : NSObject - -#pragma mark - Instance fields - -/// A cursor as returned by `listFolder` or `listFolderContinue`. Cursors -/// retrieved by setting `includeMediaInfo` in `DBFILESListFolderArg` to true -/// are not supported. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// A timeout in seconds. The request will block for at most this length of -/// time, plus up to 90 seconds of random jitter added to avoid the thundering -/// herd problem. Care should be taken when using this parameter, as some -/// network infrastructure does not support long timeouts. -@property (nonatomic, readonly) NSNumber *timeout; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. -/// Cursors retrieved by setting `includeMediaInfo` in `DBFILESListFolderArg` to -/// true are not supported. -/// @param timeout A timeout in seconds. The request will block for at most this -/// length of time, plus up to 90 seconds of random jitter added to avoid the -/// thundering herd problem. Care should be taken when using this parameter, as -/// some network infrastructure does not support long timeouts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor timeout:(nullable NSNumber *)timeout; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. -/// Cursors retrieved by setting `includeMediaInfo` in `DBFILESListFolderArg` to -/// true are not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderLongpollArg` struct. -/// -@interface DBFILESListFolderLongpollArgSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderLongpollArg` instances. -/// -/// @param instance An instance of the `DBFILESListFolderLongpollArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderLongpollArg *)instance; - -/// -/// Deserializes `DBFILESListFolderLongpollArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollArg` API object. -/// -/// @return An instantiation of the `DBFILESListFolderLongpollArg` object. -/// -+ (DBFILESListFolderLongpollArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollError.h deleted file mode 100644 index 79b2b482..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderLongpollError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderLongpollError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderLongpollError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListFolderLongpollErrorTag` enum type represents the possible -/// tag states with which the `DBFILESListFolderLongpollError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListFolderLongpollErrorTag) { - /// Indicates that the cursor has been invalidated. Call `listFolder` to - /// obtain a new cursor. - DBFILESListFolderLongpollErrorReset, - - /// (no description). - DBFILESListFolderLongpollErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListFolderLongpollErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `listFolder` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListFolderLongpollError` union. -/// -@interface DBFILESListFolderLongpollErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderLongpollError` instances. -/// -/// @param instance An instance of the `DBFILESListFolderLongpollError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderLongpollError *)instance; - -/// -/// Deserializes `DBFILESListFolderLongpollError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollError` API object. -/// -/// @return An instantiation of the `DBFILESListFolderLongpollError` object. -/// -+ (DBFILESListFolderLongpollError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollResult.h deleted file mode 100644 index fe578cea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderLongpollResult.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderLongpollResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderLongpollResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderLongpollResult : NSObject - -#pragma mark - Instance fields - -/// Indicates whether new changes are available. If true, call -/// `listFolderContinue` to retrieve the changes. -@property (nonatomic, readonly) NSNumber *changes; - -/// If present, backoff for at least this many seconds before calling -/// `listFolderLongpoll` again. -@property (nonatomic, readonly, nullable) NSNumber *backoff; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param changes Indicates whether new changes are available. If true, call -/// `listFolderContinue` to retrieve the changes. -/// @param backoff If present, backoff for at least this many seconds before -/// calling `listFolderLongpoll` again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChanges:(NSNumber *)changes backoff:(nullable NSNumber *)backoff; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param changes Indicates whether new changes are available. If true, call -/// `listFolderContinue` to retrieve the changes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChanges:(NSNumber *)changes; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderLongpollResult` struct. -/// -@interface DBFILESListFolderLongpollResultSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderLongpollResult` instances. -/// -/// @param instance An instance of the `DBFILESListFolderLongpollResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderLongpollResult *)instance; - -/// -/// Deserializes `DBFILESListFolderLongpollResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderLongpollResult` API object. -/// -/// @return An instantiation of the `DBFILESListFolderLongpollResult` object. -/// -+ (DBFILESListFolderLongpollResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderResult.h deleted file mode 100644 index 1cdb223b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListFolderResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListFolderResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListFolderResult : NSObject - -#pragma mark - Instance fields - -/// The files and (direct) subfolders in the folder. -@property (nonatomic, readonly) NSArray *entries; - -/// Pass the cursor into `listFolderContinue` to see what's changed in the -/// folder since your previous query. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// If true, then there are more entries available. Pass the cursor to -/// `listFolderContinue` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries The files and (direct) subfolders in the folder. -/// @param cursor Pass the cursor into `listFolderContinue` to see what's -/// changed in the folder since your previous query. -/// @param hasMore If true, then there are more entries available. Pass the -/// cursor to `listFolderContinue` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderResult` struct. -/// -@interface DBFILESListFolderResultSerializer : NSObject - -/// -/// Serializes `DBFILESListFolderResult` instances. -/// -/// @param instance An instance of the `DBFILESListFolderResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListFolderResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListFolderResult *)instance; - -/// -/// Deserializes `DBFILESListFolderResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListFolderResult` API object. -/// -/// @return An instantiation of the `DBFILESListFolderResult` object. -/// -+ (DBFILESListFolderResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsArg.h deleted file mode 100644 index 32334bea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListRevisionsArg; -@class DBFILESListRevisionsMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsArg : NSObject - -#pragma mark - Instance fields - -/// The path to the file you want to see the revisions of. -@property (nonatomic, readonly, copy) NSString *path; - -/// Determines the behavior of the API in listing the revisions for a given file -/// path or id. -@property (nonatomic, readonly) DBFILESListRevisionsMode *mode; - -/// The maximum number of revision entries returned. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the file you want to see the revisions of. -/// @param mode Determines the behavior of the API in listing the revisions for -/// a given file path or id. -/// @param limit The maximum number of revision entries returned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - mode:(nullable DBFILESListRevisionsMode *)mode - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to the file you want to see the revisions of. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListRevisionsArg` struct. -/// -@interface DBFILESListRevisionsArgSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsArg` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsArg *)instance; - -/// -/// Deserializes `DBFILESListRevisionsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsArg` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsArg` object. -/// -+ (DBFILESListRevisionsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsError.h deleted file mode 100644 index d1d41bb7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListRevisionsError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListRevisionsErrorTag` enum type represents the possible tag -/// states with which the `DBFILESListRevisionsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListRevisionsErrorTag) { - /// (no description). - DBFILESListRevisionsErrorPath, - - /// (no description). - DBFILESListRevisionsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListRevisionsErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListRevisionsError` union. -/// -@interface DBFILESListRevisionsErrorSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsError` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsError *)instance; - -/// -/// Deserializes `DBFILESListRevisionsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsError` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsError` object. -/// -+ (DBFILESListRevisionsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsMode.h deleted file mode 100644 index cf6419f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsMode.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESListRevisionsMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESListRevisionsModeTag` enum type represents the possible tag -/// states with which the `DBFILESListRevisionsMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESListRevisionsModeTag) { - /// Returns revisions with the same file path as identified by the latest - /// file entry at the given file path or id. - DBFILESListRevisionsModePath, - - /// Returns revisions with the same file id as identified by the latest file - /// entry at the given file path or id. - DBFILESListRevisionsModeId_, - - /// (no description). - DBFILESListRevisionsModeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESListRevisionsModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: Returns revisions with the same file -/// path as identified by the latest file entry at the given file path or id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath; - -/// -/// Initializes union class with tag state of "id". -/// -/// Description of the "id" tag state: Returns revisions with the same file id -/// as identified by the latest file entry at the given file path or id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "id". -/// -/// @return Whether the union's current tag state has value "id". -/// -- (BOOL)isId_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESListRevisionsMode` union. -/// -@interface DBFILESListRevisionsModeSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsMode` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsMode *)instance; - -/// -/// Deserializes `DBFILESListRevisionsMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsMode` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsMode` object. -/// -+ (DBFILESListRevisionsMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsResult.h deleted file mode 100644 index 4763b972..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESListRevisionsResult.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESListRevisionsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListRevisionsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESListRevisionsResult : NSObject - -#pragma mark - Instance fields - -/// If the file identified by the latest revision in the response is either -/// deleted or moved. -@property (nonatomic, readonly) NSNumber *isDeleted; - -/// The time of deletion if the file was deleted. -@property (nonatomic, readonly, nullable) NSDate *serverDeleted; - -/// The revisions for the file. Only revisions that are not deleted will show up -/// here. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isDeleted If the file identified by the latest revision in the -/// response is either deleted or moved. -/// @param entries The revisions for the file. Only revisions that are not -/// deleted will show up here. -/// @param serverDeleted The time of deletion if the file was deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsDeleted:(NSNumber *)isDeleted - entries:(NSArray *)entries - serverDeleted:(nullable NSDate *)serverDeleted; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param isDeleted If the file identified by the latest revision in the -/// response is either deleted or moved. -/// @param entries The revisions for the file. Only revisions that are not -/// deleted will show up here. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsDeleted:(NSNumber *)isDeleted entries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListRevisionsResult` struct. -/// -@interface DBFILESListRevisionsResultSerializer : NSObject - -/// -/// Serializes `DBFILESListRevisionsResult` instances. -/// -/// @param instance An instance of the `DBFILESListRevisionsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESListRevisionsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESListRevisionsResult *)instance; - -/// -/// Deserializes `DBFILESListRevisionsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESListRevisionsResult` API object. -/// -/// @return An instantiation of the `DBFILESListRevisionsResult` object. -/// -+ (DBFILESListRevisionsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockConflictError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockConflictError.h deleted file mode 100644 index da625137..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockConflictError.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLock; -@class DBFILESLockConflictError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockConflictError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockConflictError : NSObject - -#pragma mark - Instance fields - -/// The lock that caused the conflict. -@property (nonatomic, readonly) DBFILESFileLock *lock; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param lock The lock that caused the conflict. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLock:(DBFILESFileLock *)lock; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockConflictError` struct. -/// -@interface DBFILESLockConflictErrorSerializer : NSObject - -/// -/// Serializes `DBFILESLockConflictError` instances. -/// -/// @param instance An instance of the `DBFILESLockConflictError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockConflictError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockConflictError *)instance; - -/// -/// Deserializes `DBFILESLockConflictError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockConflictError` API object. -/// -/// @return An instantiation of the `DBFILESLockConflictError` object. -/// -+ (DBFILESLockConflictError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileArg.h deleted file mode 100644 index e5a11e52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to a file. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileArg` struct. -/// -@interface DBFILESLockFileArgSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileArg` instances. -/// -/// @param instance An instance of the `DBFILESLockFileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileArg *)instance; - -/// -/// Deserializes `DBFILESLockFileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileArg` API object. -/// -/// @return An instantiation of the `DBFILESLockFileArg` object. -/// -+ (DBFILESLockFileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileBatchArg.h deleted file mode 100644 index c5bf79dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileBatchArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileArg; -@class DBFILESLockFileBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of 'entries'. Each 'entry' contains a path of the file which will be -/// locked or queried. Duplicate path arguments in the batch are considered only -/// once. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file -/// which will be locked or queried. Duplicate path arguments in the batch are -/// considered only once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileBatchArg` struct. -/// -@interface DBFILESLockFileBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESLockFileBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileBatchArg *)instance; - -/// -/// Deserializes `DBFILESLockFileBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESLockFileBatchArg` object. -/// -+ (DBFILESLockFileBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileBatchResult.h deleted file mode 100644 index bdbbf4bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileBatchResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileBatchResult; -@class DBFILESLockFileResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each Entry in the 'entries' will have '.tag' with the operation status (e.g. -/// success), the metadata for the file and the lock state after the operation. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each Entry in the 'entries' will have '.tag' with the -/// operation status (e.g. success), the metadata for the file and the lock -/// state after the operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileBatchResult` struct. -/// -@interface DBFILESLockFileBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESLockFileBatchResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileBatchResult *)instance; - -/// -/// Deserializes `DBFILESLockFileBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESLockFileBatchResult` object. -/// -+ (DBFILESLockFileBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileError.h deleted file mode 100644 index 66f51790..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileError.h +++ /dev/null @@ -1,290 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockConflictError; -@class DBFILESLockFileError; -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESLockFileErrorTag` enum type represents the possible tag states -/// with which the `DBFILESLockFileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESLockFileErrorTag) { - /// Could not find the specified resource. - DBFILESLockFileErrorPathLookup, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESLockFileErrorTooManyWriteOperations, - - /// There are too many files in one request. Please retry with fewer files. - DBFILESLockFileErrorTooManyFiles, - - /// The user does not have permissions to change the lock state or access - /// the file. - DBFILESLockFileErrorNoWritePermission, - - /// Item is a type that cannot be locked. - DBFILESLockFileErrorCannotBeLocked, - - /// Requested file is not currently shared. - DBFILESLockFileErrorFileNotShared, - - /// The user action conflicts with an existing lock on the file. - DBFILESLockFileErrorLockConflict, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESLockFileErrorInternalError, - - /// (no description). - DBFILESLockFileErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESLockFileErrorTag tag; - -/// Could not find the specified resource. @note Ensure the `isPathLookup` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESLookupError *pathLookup; - -/// The user action conflicts with an existing lock on the file. @note Ensure -/// the `isLockConflict` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLockConflictError *lockConflict; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path_lookup". -/// -/// Description of the "path_lookup" tag state: Could not find the specified -/// resource. -/// -/// @param pathLookup Could not find the specified resource. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathLookup:(DBFILESLookupError *)pathLookup; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: There are too many files in -/// one request. Please retry with fewer files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "no_write_permission". -/// -/// Description of the "no_write_permission" tag state: The user does not have -/// permissions to change the lock state or access the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoWritePermission; - -/// -/// Initializes union class with tag state of "cannot_be_locked". -/// -/// Description of the "cannot_be_locked" tag state: Item is a type that cannot -/// be locked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotBeLocked; - -/// -/// Initializes union class with tag state of "file_not_shared". -/// -/// Description of the "file_not_shared" tag state: Requested file is not -/// currently shared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileNotShared; - -/// -/// Initializes union class with tag state of "lock_conflict". -/// -/// Description of the "lock_conflict" tag state: The user action conflicts with -/// an existing lock on the file. -/// -/// @param lockConflict The user action conflicts with an existing lock on the -/// file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLockConflict:(DBFILESLockConflictError *)lockConflict; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_lookup". -/// -- (BOOL)isPathLookup; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_write_permission". -/// -/// @return Whether the union's current tag state has value -/// "no_write_permission". -/// -- (BOOL)isNoWritePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_be_locked". -/// -/// @return Whether the union's current tag state has value "cannot_be_locked". -/// -- (BOOL)isCannotBeLocked; - -/// -/// Retrieves whether the union's current tag state has value "file_not_shared". -/// -/// @return Whether the union's current tag state has value "file_not_shared". -/// -- (BOOL)isFileNotShared; - -/// -/// Retrieves whether the union's current tag state has value "lock_conflict". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `lockConflict` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "lock_conflict". -/// -- (BOOL)isLockConflict; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESLockFileError` union. -/// -@interface DBFILESLockFileErrorSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileError` instances. -/// -/// @param instance An instance of the `DBFILESLockFileError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileError *)instance; - -/// -/// Deserializes `DBFILESLockFileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileError` API object. -/// -/// @return An instantiation of the `DBFILESLockFileError` object. -/// -+ (DBFILESLockFileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileResult.h deleted file mode 100644 index 3e835137..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileResult.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileLock; -@class DBFILESLockFileResult; -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileResult : NSObject - -#pragma mark - Instance fields - -/// Metadata of the file. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -/// The file lock state after the operation. -@property (nonatomic, readonly) DBFILESFileLock *lock; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the file. -/// @param lock The file lock state after the operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata lock:(DBFILESFileLock *)lock; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LockFileResult` struct. -/// -@interface DBFILESLockFileResultSerializer : NSObject - -/// -/// Serializes `DBFILESLockFileResult` instances. -/// -/// @param instance An instance of the `DBFILESLockFileResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileResult *)instance; - -/// -/// Deserializes `DBFILESLockFileResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileResult` API object. -/// -/// @return An instantiation of the `DBFILESLockFileResult` object. -/// -+ (DBFILESLockFileResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileResultEntry.h deleted file mode 100644 index 72407705..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLockFileResultEntry.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLockFileError; -@class DBFILESLockFileResult; -@class DBFILESLockFileResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockFileResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLockFileResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESLockFileResultEntryTag` enum type represents the possible tag -/// states with which the `DBFILESLockFileResultEntry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESLockFileResultEntryTag) { - /// (no description). - DBFILESLockFileResultEntrySuccess, - - /// (no description). - DBFILESLockFileResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESLockFileResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLockFileResult *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLockFileError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESLockFileResult *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESLockFileError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESLockFileResultEntry` union. -/// -@interface DBFILESLockFileResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESLockFileResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESLockFileResultEntry` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLockFileResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLockFileResultEntry *)instance; - -/// -/// Deserializes `DBFILESLockFileResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLockFileResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESLockFileResultEntry` object. -/// -+ (DBFILESLockFileResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLookupError.h deleted file mode 100644 index 3ff80466..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESLookupError.h +++ /dev/null @@ -1,265 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESLookupErrorTag` enum type represents the possible tag states -/// with which the `DBFILESLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESLookupErrorTag) { - /// The given path does not satisfy the required path format. Please refer - /// to the Path formats documentation - /// https://www.dropbox.com/developers/documentation/http/documentation#path-formats - /// for more information. - DBFILESLookupErrorMalformedPath, - - /// There is nothing at the given path. - DBFILESLookupErrorNotFound, - - /// We were expecting a file, but the given path refers to something that - /// isn't a file. - DBFILESLookupErrorNotFile, - - /// We were expecting a folder, but the given path refers to something that - /// isn't a folder. - DBFILESLookupErrorNotFolder, - - /// The file cannot be transferred because the content is restricted. For - /// example, we might restrict a file due to legal requirements. - DBFILESLookupErrorRestrictedContent, - - /// This operation is not supported for this content type. - DBFILESLookupErrorUnsupportedContentType, - - /// The given path is locked. - DBFILESLookupErrorLocked, - - /// (no description). - DBFILESLookupErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESLookupErrorTag tag; - -/// The given path does not satisfy the required path format. Please refer to -/// the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. @note Ensure the `isMalformedPath` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *malformedPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_path". -/// -/// Description of the "malformed_path" tag state: The given path does not -/// satisfy the required path format. Please refer to the Path formats -/// documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @param malformedPath The given path does not satisfy the required path -/// format. Please refer to the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedPath:(nullable NSString *)malformedPath; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: There is nothing at the given -/// path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "not_file". -/// -/// Description of the "not_file" tag state: We were expecting a file, but the -/// given path refers to something that isn't a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFile; - -/// -/// Initializes union class with tag state of "not_folder". -/// -/// Description of the "not_folder" tag state: We were expecting a folder, but -/// the given path refers to something that isn't a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFolder; - -/// -/// Initializes union class with tag state of "restricted_content". -/// -/// Description of the "restricted_content" tag state: The file cannot be -/// transferred because the content is restricted. For example, we might -/// restrict a file due to legal requirements. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedContent; - -/// -/// Initializes union class with tag state of "unsupported_content_type". -/// -/// Description of the "unsupported_content_type" tag state: This operation is -/// not supported for this content type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedContentType; - -/// -/// Initializes union class with tag state of "locked". -/// -/// Description of the "locked" tag state: The given path is locked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_path". -/// -- (BOOL)isMalformedPath; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "not_file". -/// -/// @return Whether the union's current tag state has value "not_file". -/// -- (BOOL)isNotFile; - -/// -/// Retrieves whether the union's current tag state has value "not_folder". -/// -/// @return Whether the union's current tag state has value "not_folder". -/// -- (BOOL)isNotFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_content". -/// -/// @return Whether the union's current tag state has value -/// "restricted_content". -/// -- (BOOL)isRestrictedContent; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_content_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_content_type". -/// -- (BOOL)isUnsupportedContentType; - -/// -/// Retrieves whether the union's current tag state has value "locked". -/// -/// @return Whether the union's current tag state has value "locked". -/// -- (BOOL)isLocked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESLookupError` union. -/// -@interface DBFILESLookupErrorSerializer : NSObject - -/// -/// Serializes `DBFILESLookupError` instances. -/// -/// @param instance An instance of the `DBFILESLookupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESLookupError *)instance; - -/// -/// Deserializes `DBFILESLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESLookupError` API object. -/// -/// @return An instantiation of the `DBFILESLookupError` object. -/// -+ (DBFILESLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMediaInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMediaInfo.h deleted file mode 100644 index 57b73039..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMediaInfo.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMediaInfo; -@class DBFILESMediaMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MediaInfo` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMediaInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMediaInfoTag` enum type represents the possible tag states with -/// which the `DBFILESMediaInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMediaInfoTag) { - /// Indicate the photo/video is still under processing and metadata is not - /// available yet. - DBFILESMediaInfoPending, - - /// The metadata for the photo/video. - DBFILESMediaInfoMetadata, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMediaInfoTag tag; - -/// The metadata for the photo/video. @note Ensure the `isMetadata` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMediaMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "pending". -/// -/// Description of the "pending" tag state: Indicate the photo/video is still -/// under processing and metadata is not available yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPending; - -/// -/// Initializes union class with tag state of "metadata". -/// -/// Description of the "metadata" tag state: The metadata for the photo/video. -/// -/// @param metadata The metadata for the photo/video. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMediaMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "pending". -/// -/// @return Whether the union's current tag state has value "pending". -/// -- (BOOL)isPending; - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMediaInfo` union. -/// -@interface DBFILESMediaInfoSerializer : NSObject - -/// -/// Serializes `DBFILESMediaInfo` instances. -/// -/// @param instance An instance of the `DBFILESMediaInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMediaInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMediaInfo *)instance; - -/// -/// Deserializes `DBFILESMediaInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMediaInfo` API object. -/// -/// @return An instantiation of the `DBFILESMediaInfo` object. -/// -+ (DBFILESMediaInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMediaMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMediaMetadata.h deleted file mode 100644 index 14474efd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMediaMetadata.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; -@class DBFILESGpsCoordinates; -@class DBFILESMediaMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MediaMetadata` struct. -/// -/// Metadata for a photo or video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMediaMetadata : NSObject - -#pragma mark - Instance fields - -/// Dimension of the photo/video. -@property (nonatomic, readonly, nullable) DBFILESDimensions *dimensions; - -/// The GPS coordinate of the photo/video. -@property (nonatomic, readonly, nullable) DBFILESGpsCoordinates *location; - -/// The timestamp when the photo/video is taken. -@property (nonatomic, readonly, nullable) NSDate *timeTaken; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dimensions Dimension of the photo/video. -/// @param location The GPS coordinate of the photo/video. -/// @param timeTaken The timestamp when the photo/video is taken. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensions:(nullable DBFILESDimensions *)dimensions - location:(nullable DBFILESGpsCoordinates *)location - timeTaken:(nullable NSDate *)timeTaken; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MediaMetadata` struct. -/// -@interface DBFILESMediaMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESMediaMetadata` instances. -/// -/// @param instance An instance of the `DBFILESMediaMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMediaMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMediaMetadata *)instance; - -/// -/// Deserializes `DBFILESMediaMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMediaMetadata` API object. -/// -/// @return An instantiation of the `DBFILESMediaMetadata` object. -/// -+ (DBFILESMediaMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMetadata.h deleted file mode 100644 index 4cfe2ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMetadata.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Metadata` struct. -/// -/// Metadata for a file or folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMetadata : NSObject - -#pragma mark - Instance fields - -/// The last component of the path (including extension). This never contains a -/// slash. -@property (nonatomic, readonly, copy) NSString *name; - -/// The lowercased full path in the user's Dropbox. This always starts with a -/// slash. This field will be null if the file or folder is not mounted. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// The cased path to be used for display purposes only. In rare instances the -/// casing will not correctly match the user's filesystem, but this behavior -/// will match the path provided in the Core API v1, and at least the last path -/// component will have the correct casing. Changes to only the casing of paths -/// won't be returned by `listFolderContinue`. This field will be null if the -/// file or folder is not mounted. -@property (nonatomic, readonly, copy, nullable) NSString *pathDisplay; - -/// Please use `parentSharedFolderId` in `DBFILESFileSharingInfo` or -/// `parentSharedFolderId` in `DBFILESFolderSharingInfo` instead. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// The preview URL of the file. -@property (nonatomic, readonly, copy, nullable) NSString *previewUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will be null if the file or folder is not -/// mounted. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1, and at -/// least the last path component will have the correct casing. Changes to only -/// the casing of paths won't be returned by `listFolderContinue`. This field -/// will be null if the file or folder is not mounted. -/// @param parentSharedFolderId Please use `parentSharedFolderId` in -/// `DBFILESFileSharingInfo` or `parentSharedFolderId` in -/// `DBFILESFolderSharingInfo` instead. -/// @param previewUrl The preview URL of the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - pathLower:(nullable NSString *)pathLower - pathDisplay:(nullable NSString *)pathDisplay - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - previewUrl:(nullable NSString *)previewUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The last component of the path (including extension). This never -/// contains a slash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Metadata` struct. -/// -@interface DBFILESMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESMetadata` instances. -/// -/// @param instance An instance of the `DBFILESMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the `DBFILESMetadata` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMetadata *)instance; - -/// -/// Deserializes `DBFILESMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMetadata` API object. -/// -/// @return An instantiation of the `DBFILESMetadata` object. -/// -+ (DBFILESMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMetadataV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMetadataV2.h deleted file mode 100644 index 22811903..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMetadataV2.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESMetadataV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MetadataV2` union. -/// -/// Metadata for a file, folder or other resource types. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMetadataV2 : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMetadataV2Tag` enum type represents the possible tag states with -/// which the `DBFILESMetadataV2` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMetadataV2Tag) { - /// (no description). - DBFILESMetadataV2Metadata, - - /// (no description). - DBFILESMetadataV2Other, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMetadataV2Tag tag; - -/// (no description). @note Ensure the `isMetadata` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "metadata". -/// -/// @param metadata (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMetadataV2` union. -/// -@interface DBFILESMetadataV2Serializer : NSObject - -/// -/// Serializes `DBFILESMetadataV2` instances. -/// -/// @param instance An instance of the `DBFILESMetadataV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMetadataV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMetadataV2 *)instance; - -/// -/// Deserializes `DBFILESMetadataV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMetadataV2` API object. -/// -/// @return An instantiation of the `DBFILESMetadataV2` object. -/// -+ (DBFILESMetadataV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMinimalFileLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMinimalFileLinkMetadata.h deleted file mode 100644 index c48552fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMinimalFileLinkMetadata.h +++ /dev/null @@ -1,112 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMinimalFileLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MinimalFileLinkMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMinimalFileLinkMetadata : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// Unique identifier for the linked file. -@property (nonatomic, readonly, copy, nullable) NSString *id_; - -/// Full path in the user's Dropbox. This always starts with a slash. This field -/// will only be present only if the linked file is in the authenticated user's -/// Dropbox. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// A unique identifier for the current revision of a file. This field is the -/// same rev as elsewhere in the API and can be used to detect changes and avoid -/// conflicts. -@property (nonatomic, readonly, copy) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param id_ Unique identifier for the linked file. -/// @param path Full path in the user's Dropbox. This always starts with a -/// slash. This field will only be present only if the linked file is in the -/// authenticated user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - rev:(NSString *)rev - id_:(nullable NSString *)id_ - path:(nullable NSString *)path; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url rev:(NSString *)rev; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MinimalFileLinkMetadata` struct. -/// -@interface DBFILESMinimalFileLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESMinimalFileLinkMetadata` instances. -/// -/// @param instance An instance of the `DBFILESMinimalFileLinkMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMinimalFileLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMinimalFileLinkMetadata *)instance; - -/// -/// Deserializes `DBFILESMinimalFileLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMinimalFileLinkMetadata` API object. -/// -/// @return An instantiation of the `DBFILESMinimalFileLinkMetadata` object. -/// -+ (DBFILESMinimalFileLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveBatchArg.h deleted file mode 100644 index 232846e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveBatchArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESRelocationBatchArgBase.h" -#import "DBSerializableProtocol.h" - -@class DBFILESMoveBatchArg; -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MoveBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMoveBatchArg : DBFILESRelocationBatchArgBase - -#pragma mark - Instance fields - -/// Allow moves by owner even if it would result in an ownership transfer for -/// the content being moved. This does not apply to copies. -@property (nonatomic, readonly) NSNumber *allowOwnershipTransfer; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox -/// server try to autorename that file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result -/// in an ownership transfer for the content being moved. This does not apply to -/// copies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MoveBatchArg` struct. -/// -@interface DBFILESMoveBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESMoveBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESMoveBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMoveBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMoveBatchArg *)instance; - -/// -/// Deserializes `DBFILESMoveBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMoveBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESMoveBatchArg` object. -/// -+ (DBFILESMoveBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveIntoFamilyError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveIntoFamilyError.h deleted file mode 100644 index a93ddb2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveIntoFamilyError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMoveIntoFamilyError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MoveIntoFamilyError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMoveIntoFamilyError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMoveIntoFamilyErrorTag` enum type represents the possible tag -/// states with which the `DBFILESMoveIntoFamilyError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMoveIntoFamilyErrorTag) { - /// Moving shared folder into Family Room folder is not allowed. - DBFILESMoveIntoFamilyErrorIsSharedFolder, - - /// (no description). - DBFILESMoveIntoFamilyErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMoveIntoFamilyErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "is_shared_folder". -/// -/// Description of the "is_shared_folder" tag state: Moving shared folder into -/// Family Room folder is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsSharedFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "is_shared_folder". -/// -/// @return Whether the union's current tag state has value "is_shared_folder". -/// -- (BOOL)isIsSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMoveIntoFamilyError` union. -/// -@interface DBFILESMoveIntoFamilyErrorSerializer : NSObject - -/// -/// Serializes `DBFILESMoveIntoFamilyError` instances. -/// -/// @param instance An instance of the `DBFILESMoveIntoFamilyError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMoveIntoFamilyError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMoveIntoFamilyError *)instance; - -/// -/// Deserializes `DBFILESMoveIntoFamilyError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMoveIntoFamilyError` API object. -/// -/// @return An instantiation of the `DBFILESMoveIntoFamilyError` object. -/// -+ (DBFILESMoveIntoFamilyError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveIntoVaultError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveIntoVaultError.h deleted file mode 100644 index b629b3ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESMoveIntoVaultError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMoveIntoVaultError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MoveIntoVaultError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESMoveIntoVaultError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESMoveIntoVaultErrorTag` enum type represents the possible tag -/// states with which the `DBFILESMoveIntoVaultError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESMoveIntoVaultErrorTag) { - /// Moving shared folder into Vault is not allowed. - DBFILESMoveIntoVaultErrorIsSharedFolder, - - /// (no description). - DBFILESMoveIntoVaultErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESMoveIntoVaultErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "is_shared_folder". -/// -/// Description of the "is_shared_folder" tag state: Moving shared folder into -/// Vault is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsSharedFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "is_shared_folder". -/// -/// @return Whether the union's current tag state has value "is_shared_folder". -/// -- (BOOL)isIsSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESMoveIntoVaultError` union. -/// -@interface DBFILESMoveIntoVaultErrorSerializer : NSObject - -/// -/// Serializes `DBFILESMoveIntoVaultError` instances. -/// -/// @param instance An instance of the `DBFILESMoveIntoVaultError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESMoveIntoVaultError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESMoveIntoVaultError *)instance; - -/// -/// Deserializes `DBFILESMoveIntoVaultError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESMoveIntoVaultError` API object. -/// -/// @return An instantiation of the `DBFILESMoveIntoVaultError` object. -/// -+ (DBFILESMoveIntoVaultError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperContentError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperContentError.h deleted file mode 100644 index fdd1b252..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperContentError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperContentError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperContentError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperContentErrorTag` enum type represents the possible tag -/// states with which the `DBFILESPaperContentError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperContentErrorTag) { - /// Your account does not have permissions to edit Paper docs. - DBFILESPaperContentErrorInsufficientPermissions, - - /// The provided content was malformed and cannot be imported to Paper. - DBFILESPaperContentErrorContentMalformed, - - /// The Paper doc would be too large, split the content into multiple docs. - DBFILESPaperContentErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBFILESPaperContentErrorImageSizeExceeded, - - /// (no description). - DBFILESPaperContentErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperContentErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to edit Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The Paper doc would be -/// too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperContentError` union. -/// -@interface DBFILESPaperContentErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPaperContentError` instances. -/// -/// @param instance An instance of the `DBFILESPaperContentError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperContentError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperContentError *)instance; - -/// -/// Deserializes `DBFILESPaperContentError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperContentError` API object. -/// -/// @return An instantiation of the `DBFILESPaperContentError` object. -/// -+ (DBFILESPaperContentError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateArg.h deleted file mode 100644 index 4d71ee98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESImportFormat; -@class DBFILESPaperCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperCreateArg : NSObject - -#pragma mark - Instance fields - -/// The fully qualified path to the location in the user's Dropbox where the -/// Paper Doc should be created. This should include the document's title and -/// end with .paper. -@property (nonatomic, readonly, copy) NSString *path; - -/// The format of the provided data. -@property (nonatomic, readonly) DBFILESImportFormat *importFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The fully qualified path to the location in the user's Dropbox -/// where the Paper Doc should be created. This should include the document's -/// title and end with .paper. -/// @param importFormat The format of the provided data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path importFormat:(DBFILESImportFormat *)importFormat; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperCreateArg` struct. -/// -@interface DBFILESPaperCreateArgSerializer : NSObject - -/// -/// Serializes `DBFILESPaperCreateArg` instances. -/// -/// @param instance An instance of the `DBFILESPaperCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperCreateArg *)instance; - -/// -/// Deserializes `DBFILESPaperCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperCreateArg` API object. -/// -/// @return An instantiation of the `DBFILESPaperCreateArg` object. -/// -+ (DBFILESPaperCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateError.h deleted file mode 100644 index 05feeeb7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateError.h +++ /dev/null @@ -1,269 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperCreateErrorTag` enum type represents the possible tag -/// states with which the `DBFILESPaperCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperCreateErrorTag) { - /// Your account does not have permissions to edit Paper docs. - DBFILESPaperCreateErrorInsufficientPermissions, - - /// The provided content was malformed and cannot be imported to Paper. - DBFILESPaperCreateErrorContentMalformed, - - /// The Paper doc would be too large, split the content into multiple docs. - DBFILESPaperCreateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBFILESPaperCreateErrorImageSizeExceeded, - - /// (no description). - DBFILESPaperCreateErrorOther, - - /// The file could not be saved to the specified location. - DBFILESPaperCreateErrorInvalidPath, - - /// The user's email must be verified to create Paper docs. - DBFILESPaperCreateErrorEmailUnverified, - - /// The file path must end in .paper. - DBFILESPaperCreateErrorInvalidFileExtension, - - /// Paper is disabled for your team. - DBFILESPaperCreateErrorPaperDisabled, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to edit Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The Paper doc would be -/// too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_path". -/// -/// Description of the "invalid_path" tag state: The file could not be saved to -/// the specified location. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidPath; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: The user's email must be -/// verified to create Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "invalid_file_extension". -/// -/// Description of the "invalid_file_extension" tag state: The file path must -/// end in .paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFileExtension; - -/// -/// Initializes union class with tag state of "paper_disabled". -/// -/// Description of the "paper_disabled" tag state: Paper is disabled for your -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDisabled; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "invalid_path". -/// -/// @return Whether the union's current tag state has value "invalid_path". -/// -- (BOOL)isInvalidPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_file_extension". -/// -/// @return Whether the union's current tag state has value -/// "invalid_file_extension". -/// -- (BOOL)isInvalidFileExtension; - -/// -/// Retrieves whether the union's current tag state has value "paper_disabled". -/// -/// @return Whether the union's current tag state has value "paper_disabled". -/// -- (BOOL)isPaperDisabled; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperCreateError` union. -/// -@interface DBFILESPaperCreateErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPaperCreateError` instances. -/// -/// @param instance An instance of the `DBFILESPaperCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperCreateError *)instance; - -/// -/// Deserializes `DBFILESPaperCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperCreateError` API object. -/// -/// @return An instantiation of the `DBFILESPaperCreateError` object. -/// -+ (DBFILESPaperCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateResult.h deleted file mode 100644 index 3b584ab3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperCreateResult.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperCreateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperCreateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperCreateResult : NSObject - -#pragma mark - Instance fields - -/// URL to open the Paper Doc. -@property (nonatomic, readonly, copy) NSString *url; - -/// The fully qualified path the Paper Doc was actually created at. -@property (nonatomic, readonly, copy) NSString *resultPath; - -/// The id to use in Dropbox APIs when referencing the Paper Doc. -@property (nonatomic, readonly, copy) NSString *fileId; - -/// The current doc revision. -@property (nonatomic, readonly) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL to open the Paper Doc. -/// @param resultPath The fully qualified path the Paper Doc was actually -/// created at. -/// @param fileId The id to use in Dropbox APIs when referencing the Paper Doc. -/// @param paperRevision The current doc revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - resultPath:(NSString *)resultPath - fileId:(NSString *)fileId - paperRevision:(NSNumber *)paperRevision; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperCreateResult` struct. -/// -@interface DBFILESPaperCreateResultSerializer : NSObject - -/// -/// Serializes `DBFILESPaperCreateResult` instances. -/// -/// @param instance An instance of the `DBFILESPaperCreateResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperCreateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperCreateResult *)instance; - -/// -/// Deserializes `DBFILESPaperCreateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperCreateResult` API object. -/// -/// @return An instantiation of the `DBFILESPaperCreateResult` object. -/// -+ (DBFILESPaperCreateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperDocUpdatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperDocUpdatePolicy.h deleted file mode 100644 index 395ea229..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperDocUpdatePolicy.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperDocUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdatePolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperDocUpdatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperDocUpdatePolicyTag` enum type represents the possible tag -/// states with which the `DBFILESPaperDocUpdatePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperDocUpdatePolicyTag) { - /// Sets the doc content to the provided content if the provided - /// paper_revision matches the latest doc revision. Otherwise, returns an - /// error. - DBFILESPaperDocUpdatePolicyUpdate, - - /// Sets the doc content to the provided content without checking - /// paper_revision. - DBFILESPaperDocUpdatePolicyOverwrite, - - /// Adds the provided content to the beginning of the doc without checking - /// paper_revision. - DBFILESPaperDocUpdatePolicyPrepend, - - /// Adds the provided content to the end of the doc without checking - /// paper_revision. - DBFILESPaperDocUpdatePolicyAppend, - - /// (no description). - DBFILESPaperDocUpdatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperDocUpdatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "update". -/// -/// Description of the "update" tag state: Sets the doc content to the provided -/// content if the provided paper_revision matches the latest doc revision. -/// Otherwise, returns an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdate; - -/// -/// Initializes union class with tag state of "overwrite". -/// -/// Description of the "overwrite" tag state: Sets the doc content to the -/// provided content without checking paper_revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverwrite; - -/// -/// Initializes union class with tag state of "prepend". -/// -/// Description of the "prepend" tag state: Adds the provided content to the -/// beginning of the doc without checking paper_revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrepend; - -/// -/// Initializes union class with tag state of "append". -/// -/// Description of the "append" tag state: Adds the provided content to the end -/// of the doc without checking paper_revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppend; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "update". -/// -/// @return Whether the union's current tag state has value "update". -/// -- (BOOL)isUpdate; - -/// -/// Retrieves whether the union's current tag state has value "overwrite". -/// -/// @return Whether the union's current tag state has value "overwrite". -/// -- (BOOL)isOverwrite; - -/// -/// Retrieves whether the union's current tag state has value "prepend". -/// -/// @return Whether the union's current tag state has value "prepend". -/// -- (BOOL)isPrepend; - -/// -/// Retrieves whether the union's current tag state has value "append". -/// -/// @return Whether the union's current tag state has value "append". -/// -- (BOOL)isAppend; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperDocUpdatePolicy` union. -/// -@interface DBFILESPaperDocUpdatePolicySerializer : NSObject - -/// -/// Serializes `DBFILESPaperDocUpdatePolicy` instances. -/// -/// @param instance An instance of the `DBFILESPaperDocUpdatePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperDocUpdatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperDocUpdatePolicy *)instance; - -/// -/// Deserializes `DBFILESPaperDocUpdatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperDocUpdatePolicy` API object. -/// -/// @return An instantiation of the `DBFILESPaperDocUpdatePolicy` object. -/// -+ (DBFILESPaperDocUpdatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateArg.h deleted file mode 100644 index ae2c2ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateArg.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESImportFormat; -@class DBFILESPaperDocUpdatePolicy; -@class DBFILESPaperUpdateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperUpdateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperUpdateArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to update. The path must correspond to a Paper -/// doc or an error will be returned. -@property (nonatomic, readonly, copy) NSString *path; - -/// The format of the provided data. -@property (nonatomic, readonly) DBFILESImportFormat *importFormat; - -/// How the provided content should be applied to the doc. -@property (nonatomic, readonly) DBFILESPaperDocUpdatePolicy *docUpdatePolicy; - -/// The latest doc revision. Required when doc_update_policy is update. This -/// value must match the current revision of the doc or error revision_mismatch -/// will be returned. -@property (nonatomic, readonly, nullable) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to update. The path must correspond -/// to a Paper doc or an error will be returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the -/// doc. -/// @param paperRevision The latest doc revision. Required when -/// doc_update_policy is update. This value must match the current revision of -/// the doc or error revision_mismatch will be returned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to update. The path must correspond -/// to a Paper doc or an error will be returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the -/// doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperUpdateArg` struct. -/// -@interface DBFILESPaperUpdateArgSerializer : NSObject - -/// -/// Serializes `DBFILESPaperUpdateArg` instances. -/// -/// @param instance An instance of the `DBFILESPaperUpdateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperUpdateArg *)instance; - -/// -/// Deserializes `DBFILESPaperUpdateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateArg` API object. -/// -/// @return An instantiation of the `DBFILESPaperUpdateArg` object. -/// -+ (DBFILESPaperUpdateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateError.h deleted file mode 100644 index 2f377475..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateError.h +++ /dev/null @@ -1,274 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESPaperUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPaperUpdateErrorTag` enum type represents the possible tag -/// states with which the `DBFILESPaperUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPaperUpdateErrorTag) { - /// Your account does not have permissions to edit Paper docs. - DBFILESPaperUpdateErrorInsufficientPermissions, - - /// The provided content was malformed and cannot be imported to Paper. - DBFILESPaperUpdateErrorContentMalformed, - - /// The Paper doc would be too large, split the content into multiple docs. - DBFILESPaperUpdateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBFILESPaperUpdateErrorImageSizeExceeded, - - /// (no description). - DBFILESPaperUpdateErrorOther, - - /// (no description). - DBFILESPaperUpdateErrorPath, - - /// The provided revision does not match the document head. - DBFILESPaperUpdateErrorRevisionMismatch, - - /// This operation is not allowed on archived Paper docs. - DBFILESPaperUpdateErrorDocArchived, - - /// This operation is not allowed on deleted Paper docs. - DBFILESPaperUpdateErrorDocDeleted, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPaperUpdateErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to edit Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The Paper doc would be -/// too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "revision_mismatch". -/// -/// Description of the "revision_mismatch" tag state: The provided revision does -/// not match the document head. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevisionMismatch; - -/// -/// Initializes union class with tag state of "doc_archived". -/// -/// Description of the "doc_archived" tag state: This operation is not allowed -/// on archived Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocArchived; - -/// -/// Initializes union class with tag state of "doc_deleted". -/// -/// Description of the "doc_deleted" tag state: This operation is not allowed on -/// deleted Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocDeleted; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "revision_mismatch". -/// -/// @return Whether the union's current tag state has value "revision_mismatch". -/// -- (BOOL)isRevisionMismatch; - -/// -/// Retrieves whether the union's current tag state has value "doc_archived". -/// -/// @return Whether the union's current tag state has value "doc_archived". -/// -- (BOOL)isDocArchived; - -/// -/// Retrieves whether the union's current tag state has value "doc_deleted". -/// -/// @return Whether the union's current tag state has value "doc_deleted". -/// -- (BOOL)isDocDeleted; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPaperUpdateError` union. -/// -@interface DBFILESPaperUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPaperUpdateError` instances. -/// -/// @param instance An instance of the `DBFILESPaperUpdateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperUpdateError *)instance; - -/// -/// Deserializes `DBFILESPaperUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateError` API object. -/// -/// @return An instantiation of the `DBFILESPaperUpdateError` object. -/// -+ (DBFILESPaperUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateResult.h deleted file mode 100644 index 2b13136b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPaperUpdateResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPaperUpdateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperUpdateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPaperUpdateResult : NSObject - -#pragma mark - Instance fields - -/// The current doc revision. -@property (nonatomic, readonly) NSNumber *paperRevision; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param paperRevision The current doc revision. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperRevision:(NSNumber *)paperRevision; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperUpdateResult` struct. -/// -@interface DBFILESPaperUpdateResultSerializer : NSObject - -/// -/// Serializes `DBFILESPaperUpdateResult` instances. -/// -/// @param instance An instance of the `DBFILESPaperUpdateResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPaperUpdateResult *)instance; - -/// -/// Deserializes `DBFILESPaperUpdateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPaperUpdateResult` API object. -/// -/// @return An instantiation of the `DBFILESPaperUpdateResult` object. -/// -+ (DBFILESPaperUpdateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPathOrLink.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPathOrLink.h deleted file mode 100644 index 9d6ca900..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPathOrLink.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPathOrLink; -@class DBFILESSharedLinkFileInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathOrLink` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPathOrLink : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPathOrLinkTag` enum type represents the possible tag states with -/// which the `DBFILESPathOrLink` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPathOrLinkTag) { - /// (no description). - DBFILESPathOrLinkPath, - - /// (no description). - DBFILESPathOrLinkLink, - - /// (no description). - DBFILESPathOrLinkOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPathOrLinkTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *path; - -/// (no description). @note Ensure the `isLink` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSharedLinkFileInfo *link; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -/// -/// Initializes union class with tag state of "link". -/// -/// @param link (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLink:(DBFILESSharedLinkFileInfo *)link; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `link` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "link". -/// -- (BOOL)isLink; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPathOrLink` union. -/// -@interface DBFILESPathOrLinkSerializer : NSObject - -/// -/// Serializes `DBFILESPathOrLink` instances. -/// -/// @param instance An instance of the `DBFILESPathOrLink` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPathOrLink` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPathOrLink *)instance; - -/// -/// Deserializes `DBFILESPathOrLink` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPathOrLink` API object. -/// -/// @return An instantiation of the `DBFILESPathOrLink` object. -/// -+ (DBFILESPathOrLink *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPathToTags.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPathToTags.h deleted file mode 100644 index 5e43347c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPathToTags.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPathToTags; -@class DBFILESTag; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathToTags` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPathToTags : NSObject - -#pragma mark - Instance fields - -/// Path of the item. -@property (nonatomic, readonly, copy) NSString *path; - -/// Tags assigned to this item. -@property (nonatomic, readonly) NSArray *tags; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path of the item. -/// @param tags Tags assigned to this item. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path tags:(NSArray *)tags; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PathToTags` struct. -/// -@interface DBFILESPathToTagsSerializer : NSObject - -/// -/// Serializes `DBFILESPathToTags` instances. -/// -/// @param instance An instance of the `DBFILESPathToTags` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPathToTags` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPathToTags *)instance; - -/// -/// Deserializes `DBFILESPathToTags` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPathToTags` API object. -/// -/// @return An instantiation of the `DBFILESPathToTags` object. -/// -+ (DBFILESPathToTags *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPhotoMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPhotoMetadata.h deleted file mode 100644 index 61fe5495..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPhotoMetadata.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMediaMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; -@class DBFILESGpsCoordinates; -@class DBFILESPhotoMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PhotoMetadata` struct. -/// -/// Metadata for a photo. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPhotoMetadata : DBFILESMediaMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dimensions Dimension of the photo/video. -/// @param location The GPS coordinate of the photo/video. -/// @param timeTaken The timestamp when the photo/video is taken. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensions:(nullable DBFILESDimensions *)dimensions - location:(nullable DBFILESGpsCoordinates *)location - timeTaken:(nullable NSDate *)timeTaken; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PhotoMetadata` struct. -/// -@interface DBFILESPhotoMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESPhotoMetadata` instances. -/// -/// @param instance An instance of the `DBFILESPhotoMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPhotoMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPhotoMetadata *)instance; - -/// -/// Deserializes `DBFILESPhotoMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPhotoMetadata` API object. -/// -/// @return An instantiation of the `DBFILESPhotoMetadata` object. -/// -+ (DBFILESPhotoMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewArg.h deleted file mode 100644 index 974cd3be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewArg.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPreviewArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PreviewArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPreviewArg : NSObject - -#pragma mark - Instance fields - -/// The path of the file to preview. -@property (nonatomic, readonly, copy) NSString *path; - -/// Please specify revision in path instead. -@property (nonatomic, readonly, copy, nullable) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path rev:(nullable NSString *)rev; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path of the file to preview. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PreviewArg` struct. -/// -@interface DBFILESPreviewArgSerializer : NSObject - -/// -/// Serializes `DBFILESPreviewArg` instances. -/// -/// @param instance An instance of the `DBFILESPreviewArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPreviewArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPreviewArg *)instance; - -/// -/// Deserializes `DBFILESPreviewArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPreviewArg` API object. -/// -/// @return An instantiation of the `DBFILESPreviewArg` object. -/// -+ (DBFILESPreviewArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewError.h deleted file mode 100644 index d0d4c835..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewError.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESPreviewError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PreviewError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPreviewError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESPreviewErrorTag` enum type represents the possible tag states -/// with which the `DBFILESPreviewError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESPreviewErrorTag) { - /// An error occurs when downloading metadata for the file. - DBFILESPreviewErrorPath, - - /// This preview generation is still in progress and the file is not ready - /// for preview yet. - DBFILESPreviewErrorInProgress, - - /// The file extension is not supported preview generation. - DBFILESPreviewErrorUnsupportedExtension, - - /// The file content is not supported for preview generation. - DBFILESPreviewErrorUnsupportedContent, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESPreviewErrorTag tag; - -/// An error occurs when downloading metadata for the file. @note Ensure the -/// `isPath` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: An error occurs when downloading -/// metadata for the file. -/// -/// @param path An error occurs when downloading metadata for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: This preview generation is still -/// in progress and the file is not ready for preview yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "unsupported_extension". -/// -/// Description of the "unsupported_extension" tag state: The file extension is -/// not supported preview generation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedExtension; - -/// -/// Initializes union class with tag state of "unsupported_content". -/// -/// Description of the "unsupported_content" tag state: The file content is not -/// supported for preview generation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedContent; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_extension". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_extension". -/// -- (BOOL)isUnsupportedExtension; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_content". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_content". -/// -- (BOOL)isUnsupportedContent; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESPreviewError` union. -/// -@interface DBFILESPreviewErrorSerializer : NSObject - -/// -/// Serializes `DBFILESPreviewError` instances. -/// -/// @param instance An instance of the `DBFILESPreviewError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPreviewError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPreviewError *)instance; - -/// -/// Deserializes `DBFILESPreviewError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPreviewError` API object. -/// -/// @return An instantiation of the `DBFILESPreviewError` object. -/// -+ (DBFILESPreviewError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewResult.h deleted file mode 100644 index 320b4e98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESPreviewResult.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESMinimalFileLinkMetadata; -@class DBFILESPreviewResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PreviewResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESPreviewResult : NSObject - -#pragma mark - Instance fields - -/// Metadata corresponding to the file received as an argument. Will be -/// populated if the endpoint is called with a path (ReadPath). -@property (nonatomic, readonly, nullable) DBFILESFileMetadata *fileMetadata; - -/// Minimal metadata corresponding to the file received as an argument. Will be -/// populated if the endpoint is called using a shared link -/// (SharedLinkFileInfo). -@property (nonatomic, readonly, nullable) DBFILESMinimalFileLinkMetadata *linkMetadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileMetadata Metadata corresponding to the file received as an -/// argument. Will be populated if the endpoint is called with a path -/// (ReadPath). -/// @param linkMetadata Minimal metadata corresponding to the file received as -/// an argument. Will be populated if the endpoint is called using a shared link -/// (SharedLinkFileInfo). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMetadata:(nullable DBFILESFileMetadata *)fileMetadata - linkMetadata:(nullable DBFILESMinimalFileLinkMetadata *)linkMetadata; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PreviewResult` struct. -/// -@interface DBFILESPreviewResultSerializer : NSObject - -/// -/// Serializes `DBFILESPreviewResult` instances. -/// -/// @param instance An instance of the `DBFILESPreviewResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESPreviewResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESPreviewResult *)instance; - -/// -/// Deserializes `DBFILESPreviewResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESPreviewResult` API object. -/// -/// @return An instantiation of the `DBFILESPreviewResult` object. -/// -+ (DBFILESPreviewResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationArg.h deleted file mode 100644 index 4daf85d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationArg.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESRelocationPath.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationArg : DBFILESRelocationPath - -#pragma mark - Instance fields - -/// This flag has no effect. -@property (nonatomic, readonly) NSNumber *allowSharedFolder; - -/// If there's a conflict, have the Dropbox server try to autorename the file to -/// avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -/// Allow moves by owner even if it would result in an ownership transfer for -/// the content being moved. This does not apply to copies. -@property (nonatomic, readonly) NSNumber *allowOwnershipTransfer; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fromPath Path in the user's Dropbox to be copied or moved. -/// @param toPath Path in the user's Dropbox that is the destination. -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to -/// autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result -/// in an ownership transfer for the content being moved. This does not apply to -/// copies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromPath:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param fromPath Path in the user's Dropbox to be copied or moved. -/// @param toPath Path in the user's Dropbox that is the destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromPath:(NSString *)fromPath toPath:(NSString *)toPath; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationArg` struct. -/// -@interface DBFILESRelocationArgSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationArg` instances. -/// -/// @param instance An instance of the `DBFILESRelocationArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationArg *)instance; - -/// -/// Deserializes `DBFILESRelocationArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationArg` API object. -/// -/// @return An instantiation of the `DBFILESRelocationArg` object. -/// -+ (DBFILESRelocationArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchArg.h deleted file mode 100644 index 64c58839..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchArg.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESRelocationBatchArgBase.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchArg; -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchArg : DBFILESRelocationBatchArgBase - -#pragma mark - Instance fields - -/// This flag has no effect. -@property (nonatomic, readonly) NSNumber *allowSharedFolder; - -/// Allow moves by owner even if it would result in an ownership transfer for -/// the content being moved. This does not apply to copies. -@property (nonatomic, readonly) NSNumber *allowOwnershipTransfer; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox -/// server try to autorename that file to avoid the conflict. -/// @param allowSharedFolder This flag has no effect. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result -/// in an ownership transfer for the content being moved. This does not apply to -/// copies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchArg` struct. -/// -@interface DBFILESRelocationBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchArg *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchArg` object. -/// -+ (DBFILESRelocationBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchArgBase.h deleted file mode 100644 index efaa4c19..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchArgBase.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchArgBase; -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchArgBase : NSObject - -#pragma mark - Instance fields - -/// List of entries to be moved or copied. Each entry is RelocationPath. -@property (nonatomic, readonly) NSArray *entries; - -/// If there's a conflict with any file, have the Dropbox server try to -/// autorename that file to avoid the conflict. -@property (nonatomic, readonly) NSNumber *autorename; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox -/// server try to autorename that file to avoid the conflict. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries autorename:(nullable NSNumber *)autorename; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of entries to be moved or copied. Each entry is -/// RelocationPath. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchArgBase` struct. -/// -@interface DBFILESRelocationBatchArgBaseSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchArgBase` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchArgBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchArgBase *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchArgBase` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchArgBase` object. -/// -+ (DBFILESRelocationBatchArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchError.h deleted file mode 100644 index 2f453afb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchError.h +++ /dev/null @@ -1,475 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESRelocationBatchError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchErrorTag` enum type represents the possible tag -/// states with which the `DBFILESRelocationBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchErrorTag) { - /// (no description). - DBFILESRelocationBatchErrorFromLookup, - - /// (no description). - DBFILESRelocationBatchErrorFromWrite, - - /// (no description). - DBFILESRelocationBatchErrorTo, - - /// Shared folders can't be copied. - DBFILESRelocationBatchErrorCantCopySharedFolder, - - /// Your move operation would result in nested shared folders. This is not - /// allowed. - DBFILESRelocationBatchErrorCantNestSharedFolder, - - /// You cannot move a folder into itself. - DBFILESRelocationBatchErrorCantMoveFolderIntoItself, - - /// The operation would involve more than 10,000 files and folders. - DBFILESRelocationBatchErrorTooManyFiles, - - /// There are duplicated/nested paths among `fromPath` in - /// `DBFILESRelocationArg` and `toPath` in `DBFILESRelocationArg`. - DBFILESRelocationBatchErrorDuplicatedOrNestedPaths, - - /// Your move operation would result in an ownership transfer. You may - /// reissue the request with the field `allowOwnershipTransfer` in - /// `DBFILESRelocationArg` to true. - DBFILESRelocationBatchErrorCantTransferOwnership, - - /// The current user does not have enough space to move or copy the files. - DBFILESRelocationBatchErrorInsufficientQuota, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESRelocationBatchErrorInternalError, - - /// Can't move the shared folder to the given destination. - DBFILESRelocationBatchErrorCantMoveSharedFolder, - - /// Some content cannot be moved into Vault under certain circumstances, see - /// detailed error. - DBFILESRelocationBatchErrorCantMoveIntoVault, - - /// Some content cannot be moved into the Family Room folder under certain - /// circumstances, see detailed error. - DBFILESRelocationBatchErrorCantMoveIntoFamily, - - /// (no description). - DBFILESRelocationBatchErrorOther, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESRelocationBatchErrorTooManyWriteOperations, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchErrorTag tag; - -/// (no description). @note Ensure the `isFromLookup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *fromLookup; - -/// (no description). @note Ensure the `isFromWrite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *fromWrite; - -/// (no description). @note Ensure the `isTo` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *to; - -/// Some content cannot be moved into Vault under certain circumstances, see -/// detailed error. @note Ensure the `isCantMoveIntoVault` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMoveIntoVaultError *cantMoveIntoVault; - -/// Some content cannot be moved into the Family Room folder under certain -/// circumstances, see detailed error. @note Ensure the `isCantMoveIntoFamily` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESMoveIntoFamilyError *cantMoveIntoFamily; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_lookup". -/// -/// @param fromLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromLookup:(DBFILESLookupError *)fromLookup; - -/// -/// Initializes union class with tag state of "from_write". -/// -/// @param fromWrite (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromWrite:(DBFILESWriteError *)fromWrite; - -/// -/// Initializes union class with tag state of "to". -/// -/// @param to (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTo:(DBFILESWriteError *)to; - -/// -/// Initializes union class with tag state of "cant_copy_shared_folder". -/// -/// Description of the "cant_copy_shared_folder" tag state: Shared folders can't -/// be copied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantCopySharedFolder; - -/// -/// Initializes union class with tag state of "cant_nest_shared_folder". -/// -/// Description of the "cant_nest_shared_folder" tag state: Your move operation -/// would result in nested shared folders. This is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantNestSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_folder_into_itself". -/// -/// Description of the "cant_move_folder_into_itself" tag state: You cannot move -/// a folder into itself. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveFolderIntoItself; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// more than 10,000 files and folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "duplicated_or_nested_paths". -/// -/// Description of the "duplicated_or_nested_paths" tag state: There are -/// duplicated/nested paths among `fromPath` in `DBFILESRelocationArg` and -/// `toPath` in `DBFILESRelocationArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatedOrNestedPaths; - -/// -/// Initializes union class with tag state of "cant_transfer_ownership". -/// -/// Description of the "cant_transfer_ownership" tag state: Your move operation -/// would result in an ownership transfer. You may reissue the request with the -/// field `allowOwnershipTransfer` in `DBFILESRelocationArg` to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantTransferOwnership; - -/// -/// Initializes union class with tag state of "insufficient_quota". -/// -/// Description of the "insufficient_quota" tag state: The current user does not -/// have enough space to move or copy the files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientQuota; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "cant_move_shared_folder". -/// -/// Description of the "cant_move_shared_folder" tag state: Can't move the -/// shared folder to the given destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_into_vault". -/// -/// Description of the "cant_move_into_vault" tag state: Some content cannot be -/// moved into Vault under certain circumstances, see detailed error. -/// -/// @param cantMoveIntoVault Some content cannot be moved into Vault under -/// certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoVault:(DBFILESMoveIntoVaultError *)cantMoveIntoVault; - -/// -/// Initializes union class with tag state of "cant_move_into_family". -/// -/// Description of the "cant_move_into_family" tag state: Some content cannot be -/// moved into the Family Room folder under certain circumstances, see detailed -/// error. -/// -/// @param cantMoveIntoFamily Some content cannot be moved into the Family Room -/// folder under certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoFamily:(DBFILESMoveIntoFamilyError *)cantMoveIntoFamily; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_lookup". -/// -- (BOOL)isFromLookup; - -/// -/// Retrieves whether the union's current tag state has value "from_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_write". -/// -- (BOOL)isFromWrite; - -/// -/// Retrieves whether the union's current tag state has value "to". -/// -/// @note Call this method and ensure it returns true before accessing the `to` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "to". -/// -- (BOOL)isTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -- (BOOL)isCantCopySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -- (BOOL)isCantNestSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -- (BOOL)isCantMoveFolderIntoItself; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -/// @return Whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -- (BOOL)isDuplicatedOrNestedPaths; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -/// @return Whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -- (BOOL)isCantTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_quota". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_quota". -/// -- (BOOL)isInsufficientQuota; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -- (BOOL)isCantMoveSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_vault". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoVault` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_vault". -/// -- (BOOL)isCantMoveIntoVault; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_family". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoFamily` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_family". -/// -- (BOOL)isCantMoveIntoFamily; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchError` union. -/// -@interface DBFILESRelocationBatchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchError` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchError *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchError` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchError` object. -/// -+ (DBFILESRelocationBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchErrorEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchErrorEntry.h deleted file mode 100644 index 51045fc7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchErrorEntry.h +++ /dev/null @@ -1,177 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchErrorEntry; -@class DBFILESRelocationError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchErrorEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchErrorEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchErrorEntryTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchErrorEntry` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchErrorEntryTag) { - /// User errors that retry won't help. - DBFILESRelocationBatchErrorEntryRelocationError, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESRelocationBatchErrorEntryInternalError, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESRelocationBatchErrorEntryTooManyWriteOperations, - - /// (no description). - DBFILESRelocationBatchErrorEntryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchErrorEntryTag tag; - -/// User errors that retry won't help. @note Ensure the `isRelocationError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESRelocationError *relocationError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "relocation_error". -/// -/// Description of the "relocation_error" tag state: User errors that retry -/// won't help. -/// -/// @param relocationError User errors that retry won't help. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocationError:(DBFILESRelocationError *)relocationError; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "relocation_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `relocationError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "relocation_error". -/// -- (BOOL)isRelocationError; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchErrorEntry` union. -/// -@interface DBFILESRelocationBatchErrorEntrySerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchErrorEntry` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchErrorEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchErrorEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchErrorEntry *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchErrorEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchErrorEntry` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchErrorEntry` object. -/// -+ (DBFILESRelocationBatchErrorEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchJobStatus.h deleted file mode 100644 index 26bfdce5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchJobStatus.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchError; -@class DBFILESRelocationBatchJobStatus; -@class DBFILESRelocationBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchJobStatusTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESRelocationBatchJobStatusInProgress, - - /// The copy or move batch job has finished. - DBFILESRelocationBatchJobStatusComplete, - - /// The copy or move batch job has failed with exception. - DBFILESRelocationBatchJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchJobStatusTag tag; - -/// The copy or move batch job has finished. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESRelocationBatchResult *complete; - -/// The copy or move batch job has failed with exception. @note Ensure the -/// `isFailed` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The copy or move batch job has -/// finished. -/// -/// @param complete The copy or move batch job has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The copy or move batch job has failed -/// with exception. -/// -/// @param failed The copy or move batch job has failed with exception. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESRelocationBatchError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchJobStatus` union. -/// -@interface DBFILESRelocationBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchJobStatus` object. -/// -+ (DBFILESRelocationBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchLaunch.h deleted file mode 100644 index 8c98beda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchLaunch.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchLaunch; -@class DBFILESRelocationBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchLaunch` union. -/// -/// Result returned by `dCopyBatch` or `moveBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchLaunchTag` enum type represents the possible tag -/// states with which the `DBFILESRelocationBatchLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESRelocationBatchLaunchAsyncJobId, - - /// (no description). - DBFILESRelocationBatchLaunchComplete, - - /// (no description). - DBFILESRelocationBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchLaunch` union. -/// -@interface DBFILESRelocationBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchLaunch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchLaunch` object. -/// -+ (DBFILESRelocationBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResult.h deleted file mode 100644 index 6e2a0ba2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchResult; -@class DBFILESRelocationBatchResultData; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchResult` struct. -/// -@interface DBFILESRelocationBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchResult *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchResult` object. -/// -+ (DBFILESRelocationBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResultData.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResultData.h deleted file mode 100644 index 212c85f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResultData.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESRelocationBatchResultData; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchResultData` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchResultData : NSObject - -#pragma mark - Instance fields - -/// Metadata of the relocated object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the relocated object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchResultData` struct. -/// -@interface DBFILESRelocationBatchResultDataSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchResultData` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchResultData` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultData` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchResultData *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchResultData` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultData` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchResultData` object. -/// -+ (DBFILESRelocationBatchResultData *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResultEntry.h deleted file mode 100644 index 3deb14d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchResultEntry.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESRelocationBatchErrorEntry; -@class DBFILESRelocationBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchResultEntryTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchResultEntry` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchResultEntryTag) { - /// (no description). - DBFILESRelocationBatchResultEntrySuccess, - - /// (no description). - DBFILESRelocationBatchResultEntryFailure, - - /// (no description). - DBFILESRelocationBatchResultEntryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMetadata *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchErrorEntry *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESMetadata *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESRelocationBatchErrorEntry *)failure; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchResultEntry` union. -/// -@interface DBFILESRelocationBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchResultEntry` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchResultEntry` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchResultEntry` object. -/// -+ (DBFILESRelocationBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2JobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2JobStatus.h deleted file mode 100644 index 733adbdf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2JobStatus.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchV2JobStatus; -@class DBFILESRelocationBatchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchV2JobStatus` union. -/// -/// Result returned by `dCopyBatchCheck` or `moveBatchCheck` that may either be -/// in progress or completed with result for each entry. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchV2JobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchV2JobStatusTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchV2JobStatus` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchV2JobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESRelocationBatchV2JobStatusInProgress, - - /// The copy or move batch job has finished. - DBFILESRelocationBatchV2JobStatusComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchV2JobStatusTag tag; - -/// The copy or move batch job has finished. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESRelocationBatchV2Result *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The copy or move batch job has -/// finished. -/// -/// @param complete The copy or move batch job has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchV2Result *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchV2JobStatus` union. -/// -@interface DBFILESRelocationBatchV2JobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchV2JobStatus` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchV2JobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2JobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchV2JobStatus *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchV2JobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2JobStatus` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchV2JobStatus` object. -/// -+ (DBFILESRelocationBatchV2JobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2Launch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2Launch.h deleted file mode 100644 index 58198ef1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2Launch.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchV2Launch; -@class DBFILESRelocationBatchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchV2Launch` union. -/// -/// Result returned by `dCopyBatch` or `moveBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchV2Launch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationBatchV2LaunchTag` enum type represents the possible -/// tag states with which the `DBFILESRelocationBatchV2Launch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationBatchV2LaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESRelocationBatchV2LaunchAsyncJobId, - - /// (no description). - DBFILESRelocationBatchV2LaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationBatchV2LaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESRelocationBatchV2Result *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESRelocationBatchV2Result *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationBatchV2Launch` union. -/// -@interface DBFILESRelocationBatchV2LaunchSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchV2Launch` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchV2Launch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Launch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchV2Launch *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchV2Launch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Launch` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchV2Launch` object. -/// -+ (DBFILESRelocationBatchV2Launch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2Result.h deleted file mode 100644 index e155c0b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationBatchV2Result.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationBatchResultEntry; -@class DBFILESRelocationBatchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationBatchV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationBatchV2Result : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Each entry in CopyBatchArg.entries or `entries` in `DBFILESMoveBatchArg` -/// will appear at the same position inside `entries` in -/// `DBFILESRelocationBatchV2Result`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in CopyBatchArg.entries or `entries` in -/// `DBFILESMoveBatchArg` will appear at the same position inside `entries` in -/// `DBFILESRelocationBatchV2Result`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationBatchV2Result` struct. -/// -@interface DBFILESRelocationBatchV2ResultSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationBatchV2Result` instances. -/// -/// @param instance An instance of the `DBFILESRelocationBatchV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationBatchV2Result *)instance; - -/// -/// Deserializes `DBFILESRelocationBatchV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationBatchV2Result` API object. -/// -/// @return An instantiation of the `DBFILESRelocationBatchV2Result` object. -/// -+ (DBFILESRelocationBatchV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationError.h deleted file mode 100644 index ad02e7aa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationError.h +++ /dev/null @@ -1,452 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESRelocationError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRelocationErrorTag` enum type represents the possible tag states -/// with which the `DBFILESRelocationError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRelocationErrorTag) { - /// (no description). - DBFILESRelocationErrorFromLookup, - - /// (no description). - DBFILESRelocationErrorFromWrite, - - /// (no description). - DBFILESRelocationErrorTo, - - /// Shared folders can't be copied. - DBFILESRelocationErrorCantCopySharedFolder, - - /// Your move operation would result in nested shared folders. This is not - /// allowed. - DBFILESRelocationErrorCantNestSharedFolder, - - /// You cannot move a folder into itself. - DBFILESRelocationErrorCantMoveFolderIntoItself, - - /// The operation would involve more than 10,000 files and folders. - DBFILESRelocationErrorTooManyFiles, - - /// There are duplicated/nested paths among `fromPath` in - /// `DBFILESRelocationArg` and `toPath` in `DBFILESRelocationArg`. - DBFILESRelocationErrorDuplicatedOrNestedPaths, - - /// Your move operation would result in an ownership transfer. You may - /// reissue the request with the field `allowOwnershipTransfer` in - /// `DBFILESRelocationArg` to true. - DBFILESRelocationErrorCantTransferOwnership, - - /// The current user does not have enough space to move or copy the files. - DBFILESRelocationErrorInsufficientQuota, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBFILESRelocationErrorInternalError, - - /// Can't move the shared folder to the given destination. - DBFILESRelocationErrorCantMoveSharedFolder, - - /// Some content cannot be moved into Vault under certain circumstances, see - /// detailed error. - DBFILESRelocationErrorCantMoveIntoVault, - - /// Some content cannot be moved into the Family Room folder under certain - /// circumstances, see detailed error. - DBFILESRelocationErrorCantMoveIntoFamily, - - /// (no description). - DBFILESRelocationErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRelocationErrorTag tag; - -/// (no description). @note Ensure the `isFromLookup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *fromLookup; - -/// (no description). @note Ensure the `isFromWrite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *fromWrite; - -/// (no description). @note Ensure the `isTo` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *to; - -/// Some content cannot be moved into Vault under certain circumstances, see -/// detailed error. @note Ensure the `isCantMoveIntoVault` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESMoveIntoVaultError *cantMoveIntoVault; - -/// Some content cannot be moved into the Family Room folder under certain -/// circumstances, see detailed error. @note Ensure the `isCantMoveIntoFamily` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESMoveIntoFamilyError *cantMoveIntoFamily; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_lookup". -/// -/// @param fromLookup (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromLookup:(DBFILESLookupError *)fromLookup; - -/// -/// Initializes union class with tag state of "from_write". -/// -/// @param fromWrite (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromWrite:(DBFILESWriteError *)fromWrite; - -/// -/// Initializes union class with tag state of "to". -/// -/// @param to (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTo:(DBFILESWriteError *)to; - -/// -/// Initializes union class with tag state of "cant_copy_shared_folder". -/// -/// Description of the "cant_copy_shared_folder" tag state: Shared folders can't -/// be copied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantCopySharedFolder; - -/// -/// Initializes union class with tag state of "cant_nest_shared_folder". -/// -/// Description of the "cant_nest_shared_folder" tag state: Your move operation -/// would result in nested shared folders. This is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantNestSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_folder_into_itself". -/// -/// Description of the "cant_move_folder_into_itself" tag state: You cannot move -/// a folder into itself. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveFolderIntoItself; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// more than 10,000 files and folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "duplicated_or_nested_paths". -/// -/// Description of the "duplicated_or_nested_paths" tag state: There are -/// duplicated/nested paths among `fromPath` in `DBFILESRelocationArg` and -/// `toPath` in `DBFILESRelocationArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicatedOrNestedPaths; - -/// -/// Initializes union class with tag state of "cant_transfer_ownership". -/// -/// Description of the "cant_transfer_ownership" tag state: Your move operation -/// would result in an ownership transfer. You may reissue the request with the -/// field `allowOwnershipTransfer` in `DBFILESRelocationArg` to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantTransferOwnership; - -/// -/// Initializes union class with tag state of "insufficient_quota". -/// -/// Description of the "insufficient_quota" tag state: The current user does not -/// have enough space to move or copy the files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientQuota; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "cant_move_shared_folder". -/// -/// Description of the "cant_move_shared_folder" tag state: Can't move the -/// shared folder to the given destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveSharedFolder; - -/// -/// Initializes union class with tag state of "cant_move_into_vault". -/// -/// Description of the "cant_move_into_vault" tag state: Some content cannot be -/// moved into Vault under certain circumstances, see detailed error. -/// -/// @param cantMoveIntoVault Some content cannot be moved into Vault under -/// certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoVault:(DBFILESMoveIntoVaultError *)cantMoveIntoVault; - -/// -/// Initializes union class with tag state of "cant_move_into_family". -/// -/// Description of the "cant_move_into_family" tag state: Some content cannot be -/// moved into the Family Room folder under certain circumstances, see detailed -/// error. -/// -/// @param cantMoveIntoFamily Some content cannot be moved into the Family Room -/// folder under certain circumstances, see detailed error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantMoveIntoFamily:(DBFILESMoveIntoFamilyError *)cantMoveIntoFamily; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_lookup". -/// -- (BOOL)isFromLookup; - -/// -/// Retrieves whether the union's current tag state has value "from_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fromWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "from_write". -/// -- (BOOL)isFromWrite; - -/// -/// Retrieves whether the union's current tag state has value "to". -/// -/// @note Call this method and ensure it returns true before accessing the `to` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "to". -/// -- (BOOL)isTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_copy_shared_folder". -/// -- (BOOL)isCantCopySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_nest_shared_folder". -/// -- (BOOL)isCantNestSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_folder_into_itself". -/// -- (BOOL)isCantMoveFolderIntoItself; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -/// @return Whether the union's current tag state has value -/// "duplicated_or_nested_paths". -/// -- (BOOL)isDuplicatedOrNestedPaths; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -/// @return Whether the union's current tag state has value -/// "cant_transfer_ownership". -/// -- (BOOL)isCantTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_quota". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_quota". -/// -- (BOOL)isInsufficientQuota; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "cant_move_shared_folder". -/// -- (BOOL)isCantMoveSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_vault". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoVault` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_vault". -/// -- (BOOL)isCantMoveIntoVault; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_move_into_family". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cantMoveIntoFamily` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "cant_move_into_family". -/// -- (BOOL)isCantMoveIntoFamily; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRelocationError` union. -/// -@interface DBFILESRelocationErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationError` instances. -/// -/// @param instance An instance of the `DBFILESRelocationError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationError *)instance; - -/// -/// Deserializes `DBFILESRelocationError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationError` API object. -/// -/// @return An instantiation of the `DBFILESRelocationError` object. -/// -+ (DBFILESRelocationError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationPath.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationPath.h deleted file mode 100644 index 23632d94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationPath.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRelocationPath; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationPath` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationPath : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to be copied or moved. -@property (nonatomic, readonly, copy) NSString *fromPath; - -/// Path in the user's Dropbox that is the destination. -@property (nonatomic, readonly, copy) NSString *toPath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fromPath Path in the user's Dropbox to be copied or moved. -/// @param toPath Path in the user's Dropbox that is the destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromPath:(NSString *)fromPath toPath:(NSString *)toPath; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationPath` struct. -/// -@interface DBFILESRelocationPathSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationPath` instances. -/// -/// @param instance An instance of the `DBFILESRelocationPath` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationPath` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationPath *)instance; - -/// -/// Deserializes `DBFILESRelocationPath` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationPath` API object. -/// -/// @return An instantiation of the `DBFILESRelocationPath` object. -/// -+ (DBFILESRelocationPath *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationResult.h deleted file mode 100644 index a4387b56..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRelocationResult.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESFileOpsResult.h" -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESRelocationResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocationResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRelocationResult : DBFILESFileOpsResult - -#pragma mark - Instance fields - -/// Metadata of the relocated object. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata Metadata of the relocated object. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocationResult` struct. -/// -@interface DBFILESRelocationResultSerializer : NSObject - -/// -/// Serializes `DBFILESRelocationResult` instances. -/// -/// @param instance An instance of the `DBFILESRelocationResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRelocationResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRelocationResult *)instance; - -/// -/// Deserializes `DBFILESRelocationResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRelocationResult` API object. -/// -/// @return An instantiation of the `DBFILESRelocationResult` object. -/// -+ (DBFILESRelocationResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRemoveTagArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRemoveTagArg.h deleted file mode 100644 index c2837626..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRemoveTagArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRemoveTagArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveTagArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRemoveTagArg : NSObject - -#pragma mark - Instance fields - -/// Path to the item to tag. -@property (nonatomic, readonly, copy) NSString *path; - -/// The tag to remove. Will be automatically converted to lowercase letters. -@property (nonatomic, readonly, copy) NSString *tagText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path to the item to tag. -/// @param tagText The tag to remove. Will be automatically converted to -/// lowercase letters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path tagText:(NSString *)tagText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveTagArg` struct. -/// -@interface DBFILESRemoveTagArgSerializer : NSObject - -/// -/// Serializes `DBFILESRemoveTagArg` instances. -/// -/// @param instance An instance of the `DBFILESRemoveTagArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRemoveTagArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRemoveTagArg *)instance; - -/// -/// Deserializes `DBFILESRemoveTagArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRemoveTagArg` API object. -/// -/// @return An instantiation of the `DBFILESRemoveTagArg` object. -/// -+ (DBFILESRemoveTagArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRemoveTagError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRemoveTagError.h deleted file mode 100644 index 78fdf550..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRemoveTagError.h +++ /dev/null @@ -1,144 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESRemoveTagError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveTagError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRemoveTagError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRemoveTagErrorTag` enum type represents the possible tag states -/// with which the `DBFILESRemoveTagError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRemoveTagErrorTag) { - /// (no description). - DBFILESRemoveTagErrorPath, - - /// (no description). - DBFILESRemoveTagErrorOther, - - /// That tag doesn't exist at this path. - DBFILESRemoveTagErrorTagNotPresent, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRemoveTagErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "tag_not_present". -/// -/// Description of the "tag_not_present" tag state: That tag doesn't exist at -/// this path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTagNotPresent; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "tag_not_present". -/// -/// @return Whether the union's current tag state has value "tag_not_present". -/// -- (BOOL)isTagNotPresent; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRemoveTagError` union. -/// -@interface DBFILESRemoveTagErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRemoveTagError` instances. -/// -/// @param instance An instance of the `DBFILESRemoveTagError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRemoveTagError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRemoveTagError *)instance; - -/// -/// Deserializes `DBFILESRemoveTagError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRemoveTagError` API object. -/// -/// @return An instantiation of the `DBFILESRemoveTagError` object. -/// -+ (DBFILESRemoveTagError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRestoreArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRestoreArg.h deleted file mode 100644 index c5b40ba8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRestoreArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESRestoreArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RestoreArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRestoreArg : NSObject - -#pragma mark - Instance fields - -/// The path to save the restored file. -@property (nonatomic, readonly, copy) NSString *path; - -/// The revision to restore. -@property (nonatomic, readonly, copy) NSString *rev; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to save the restored file. -/// @param rev The revision to restore. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path rev:(NSString *)rev; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RestoreArg` struct. -/// -@interface DBFILESRestoreArgSerializer : NSObject - -/// -/// Serializes `DBFILESRestoreArg` instances. -/// -/// @param instance An instance of the `DBFILESRestoreArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRestoreArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRestoreArg *)instance; - -/// -/// Deserializes `DBFILESRestoreArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRestoreArg` API object. -/// -/// @return An instantiation of the `DBFILESRestoreArg` object. -/// -+ (DBFILESRestoreArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRestoreError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRestoreError.h deleted file mode 100644 index 65a71e51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRestoreError.h +++ /dev/null @@ -1,202 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESRestoreError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RestoreError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESRestoreError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESRestoreErrorTag` enum type represents the possible tag states -/// with which the `DBFILESRestoreError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESRestoreErrorTag) { - /// An error occurs when downloading metadata for the file. - DBFILESRestoreErrorPathLookup, - - /// An error occurs when trying to restore the file to that path. - DBFILESRestoreErrorPathWrite, - - /// The revision is invalid. It may not exist or may point to a deleted - /// file. - DBFILESRestoreErrorInvalidRevision, - - /// The restore is currently executing, but has not yet completed. - DBFILESRestoreErrorInProgress, - - /// (no description). - DBFILESRestoreErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESRestoreErrorTag tag; - -/// An error occurs when downloading metadata for the file. @note Ensure the -/// `isPathLookup` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *pathLookup; - -/// An error occurs when trying to restore the file to that path. @note Ensure -/// the `isPathWrite` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *pathWrite; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path_lookup". -/// -/// Description of the "path_lookup" tag state: An error occurs when downloading -/// metadata for the file. -/// -/// @param pathLookup An error occurs when downloading metadata for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathLookup:(DBFILESLookupError *)pathLookup; - -/// -/// Initializes union class with tag state of "path_write". -/// -/// Description of the "path_write" tag state: An error occurs when trying to -/// restore the file to that path. -/// -/// @param pathWrite An error occurs when trying to restore the file to that -/// path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPathWrite:(DBFILESWriteError *)pathWrite; - -/// -/// Initializes union class with tag state of "invalid_revision". -/// -/// Description of the "invalid_revision" tag state: The revision is invalid. It -/// may not exist or may point to a deleted file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidRevision; - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The restore is currently -/// executing, but has not yet completed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path_lookup". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathLookup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_lookup". -/// -- (BOOL)isPathLookup; - -/// -/// Retrieves whether the union's current tag state has value "path_write". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pathWrite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path_write". -/// -- (BOOL)isPathWrite; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_revision". -/// -/// @return Whether the union's current tag state has value "invalid_revision". -/// -- (BOOL)isInvalidRevision; - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESRestoreError` union. -/// -@interface DBFILESRestoreErrorSerializer : NSObject - -/// -/// Serializes `DBFILESRestoreError` instances. -/// -/// @param instance An instance of the `DBFILESRestoreError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESRestoreError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESRestoreError *)instance; - -/// -/// Deserializes `DBFILESRestoreError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESRestoreError` API object. -/// -/// @return An instantiation of the `DBFILESRestoreError` object. -/// -+ (DBFILESRestoreError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRouteObjects.h deleted file mode 100644 index 0cfef3f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESRouteObjects.h +++ /dev/null @@ -1,229 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Files namespace. Each route in the Files -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBFILESRouteObjects : NSObject - -/// Accessor method for the alphaGetMetadata route object. -+ (DBRoute *)DBFILESAlphaGetMetadata; - -/// Accessor method for the alphaUpload route object. -+ (DBRoute *)DBFILESAlphaUpload; - -/// Accessor method for the dCopy route object. -+ (DBRoute *)DBFILESDCopy; - -/// Accessor method for the dCopyV2 route object. -+ (DBRoute *)DBFILESDCopyV2; - -/// Accessor method for the dCopyBatch route object. -+ (DBRoute *)DBFILESDCopyBatch; - -/// Accessor method for the dCopyBatchV2 route object. -+ (DBRoute *)DBFILESDCopyBatchV2; - -/// Accessor method for the dCopyBatchCheck route object. -+ (DBRoute *)DBFILESDCopyBatchCheck; - -/// Accessor method for the dCopyBatchCheckV2 route object. -+ (DBRoute *)DBFILESDCopyBatchCheckV2; - -/// Accessor method for the dCopyReferenceGet route object. -+ (DBRoute *)DBFILESDCopyReferenceGet; - -/// Accessor method for the dCopyReferenceSave route object. -+ (DBRoute *)DBFILESDCopyReferenceSave; - -/// Accessor method for the createFolder route object. -+ (DBRoute *)DBFILESCreateFolder; - -/// Accessor method for the createFolderV2 route object. -+ (DBRoute *)DBFILESCreateFolderV2; - -/// Accessor method for the createFolderBatch route object. -+ (DBRoute *)DBFILESCreateFolderBatch; - -/// Accessor method for the createFolderBatchCheck route object. -+ (DBRoute *)DBFILESCreateFolderBatchCheck; - -/// Accessor method for the delete_ route object. -+ (DBRoute *)DBFILESDelete_; - -/// Accessor method for the delete_V2 route object. -+ (DBRoute *)DBFILESDelete_V2; - -/// Accessor method for the deleteBatch route object. -+ (DBRoute *)DBFILESDeleteBatch; - -/// Accessor method for the deleteBatchCheck route object. -+ (DBRoute *)DBFILESDeleteBatchCheck; - -/// Accessor method for the download route object. -+ (DBRoute *)DBFILESDownload; - -/// Accessor method for the downloadZip route object. -+ (DBRoute *)DBFILESDownloadZip; - -/// Accessor method for the export route object. -+ (DBRoute *)DBFILESExport; - -/// Accessor method for the getFileLockBatch route object. -+ (DBRoute *)DBFILESGetFileLockBatch; - -/// Accessor method for the getMetadata route object. -+ (DBRoute *)DBFILESGetMetadata; - -/// Accessor method for the getPreview route object. -+ (DBRoute *)DBFILESGetPreview; - -/// Accessor method for the getTemporaryLink route object. -+ (DBRoute *)DBFILESGetTemporaryLink; - -/// Accessor method for the getTemporaryUploadLink route object. -+ (DBRoute *)DBFILESGetTemporaryUploadLink; - -/// Accessor method for the getThumbnail route object. -+ (DBRoute *)DBFILESGetThumbnail; - -/// Accessor method for the getThumbnailV2 route object. -+ (DBRoute *)DBFILESGetThumbnailV2; - -/// Accessor method for the getThumbnailBatch route object. -+ (DBRoute *)DBFILESGetThumbnailBatch; - -/// Accessor method for the listFolder route object. -+ (DBRoute *)DBFILESListFolder; - -/// Accessor method for the listFolderContinue route object. -+ (DBRoute *)DBFILESListFolderContinue; - -/// Accessor method for the listFolderGetLatestCursor route object. -+ (DBRoute *)DBFILESListFolderGetLatestCursor; - -/// Accessor method for the listFolderLongpoll route object. -+ (DBRoute *)DBFILESListFolderLongpoll; - -/// Accessor method for the listRevisions route object. -+ (DBRoute *)DBFILESListRevisions; - -/// Accessor method for the lockFileBatch route object. -+ (DBRoute *)DBFILESLockFileBatch; - -/// Accessor method for the move route object. -+ (DBRoute *)DBFILESMove; - -/// Accessor method for the moveV2 route object. -+ (DBRoute *)DBFILESMoveV2; - -/// Accessor method for the moveBatch route object. -+ (DBRoute *)DBFILESMoveBatch; - -/// Accessor method for the moveBatchV2 route object. -+ (DBRoute *)DBFILESMoveBatchV2; - -/// Accessor method for the moveBatchCheck route object. -+ (DBRoute *)DBFILESMoveBatchCheck; - -/// Accessor method for the moveBatchCheckV2 route object. -+ (DBRoute *)DBFILESMoveBatchCheckV2; - -/// Accessor method for the paperCreate route object. -+ (DBRoute *)DBFILESPaperCreate; - -/// Accessor method for the paperUpdate route object. -+ (DBRoute *)DBFILESPaperUpdate; - -/// Accessor method for the permanentlyDelete route object. -+ (DBRoute *)DBFILESPermanentlyDelete; - -/// Accessor method for the propertiesAdd route object. -+ (DBRoute *)DBFILESPropertiesAdd; - -/// Accessor method for the propertiesOverwrite route object. -+ (DBRoute *)DBFILESPropertiesOverwrite; - -/// Accessor method for the propertiesRemove route object. -+ (DBRoute *)DBFILESPropertiesRemove; - -/// Accessor method for the propertiesTemplateGet route object. -+ (DBRoute *)DBFILESPropertiesTemplateGet; - -/// Accessor method for the propertiesTemplateList route object. -+ (DBRoute *)DBFILESPropertiesTemplateList; - -/// Accessor method for the propertiesUpdate route object. -+ (DBRoute *)DBFILESPropertiesUpdate; - -/// Accessor method for the restore route object. -+ (DBRoute *)DBFILESRestore; - -/// Accessor method for the saveUrl route object. -+ (DBRoute *)DBFILESSaveUrl; - -/// Accessor method for the saveUrlCheckJobStatus route object. -+ (DBRoute *)DBFILESSaveUrlCheckJobStatus; - -/// Accessor method for the search route object. -+ (DBRoute *)DBFILESSearch; - -/// Accessor method for the searchV2 route object. -+ (DBRoute *)DBFILESSearchV2; - -/// Accessor method for the searchContinueV2 route object. -+ (DBRoute *)DBFILESSearchContinueV2; - -/// Accessor method for the tagsAdd route object. -+ (DBRoute *)DBFILESTagsAdd; - -/// Accessor method for the tagsGet route object. -+ (DBRoute *)DBFILESTagsGet; - -/// Accessor method for the tagsRemove route object. -+ (DBRoute *)DBFILESTagsRemove; - -/// Accessor method for the unlockFileBatch route object. -+ (DBRoute *)DBFILESUnlockFileBatch; - -/// Accessor method for the upload route object. -+ (DBRoute *)DBFILESUpload; - -/// Accessor method for the uploadSessionAppend route object. -+ (DBRoute *)DBFILESUploadSessionAppend; - -/// Accessor method for the uploadSessionAppendV2 route object. -+ (DBRoute *)DBFILESUploadSessionAppendV2; - -/// Accessor method for the uploadSessionFinish route object. -+ (DBRoute *)DBFILESUploadSessionFinish; - -/// Accessor method for the uploadSessionFinishBatch route object. -+ (DBRoute *)DBFILESUploadSessionFinishBatch; - -/// Accessor method for the uploadSessionFinishBatchV2 route object. -+ (DBRoute *)DBFILESUploadSessionFinishBatchV2; - -/// Accessor method for the uploadSessionFinishBatchCheck route object. -+ (DBRoute *)DBFILESUploadSessionFinishBatchCheck; - -/// Accessor method for the uploadSessionStart route object. -+ (DBRoute *)DBFILESUploadSessionStart; - -/// Accessor method for the uploadSessionStartBatch route object. -+ (DBRoute *)DBFILESUploadSessionStartBatch; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceArg.h deleted file mode 100644 index b2240bcc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveCopyReferenceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveCopyReferenceArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveCopyReferenceArg : NSObject - -#pragma mark - Instance fields - -/// A copy reference returned by `dCopyReferenceGet`. -@property (nonatomic, readonly, copy) NSString *dCopyReference; - -/// Path in the user's Dropbox that is the destination. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dCopyReference A copy reference returned by `dCopyReferenceGet`. -/// @param path Path in the user's Dropbox that is the destination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDCopyReference:(NSString *)dCopyReference path:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SaveCopyReferenceArg` struct. -/// -@interface DBFILESSaveCopyReferenceArgSerializer : NSObject - -/// -/// Serializes `DBFILESSaveCopyReferenceArg` instances. -/// -/// @param instance An instance of the `DBFILESSaveCopyReferenceArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveCopyReferenceArg *)instance; - -/// -/// Deserializes `DBFILESSaveCopyReferenceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceArg` API object. -/// -/// @return An instantiation of the `DBFILESSaveCopyReferenceArg` object. -/// -+ (DBFILESSaveCopyReferenceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceError.h deleted file mode 100644 index b2c094de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceError.h +++ /dev/null @@ -1,210 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveCopyReferenceError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveCopyReferenceError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveCopyReferenceError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveCopyReferenceErrorTag` enum type represents the possible tag -/// states with which the `DBFILESSaveCopyReferenceError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveCopyReferenceErrorTag) { - /// (no description). - DBFILESSaveCopyReferenceErrorPath, - - /// The copy reference is invalid. - DBFILESSaveCopyReferenceErrorInvalidCopyReference, - - /// You don't have permission to save the given copy reference. Please make - /// sure this app is same app which created the copy reference and the - /// source user is still linked to the app. - DBFILESSaveCopyReferenceErrorNoPermission, - - /// The file referenced by the copy reference cannot be found. - DBFILESSaveCopyReferenceErrorNotFound, - - /// The operation would involve more than 10,000 files and folders. - DBFILESSaveCopyReferenceErrorTooManyFiles, - - /// (no description). - DBFILESSaveCopyReferenceErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveCopyReferenceErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "invalid_copy_reference". -/// -/// Description of the "invalid_copy_reference" tag state: The copy reference is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCopyReference; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: You don't have permission to -/// save the given copy reference. Please make sure this app is same app which -/// created the copy reference and the source user is still linked to the app. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The file referenced by the copy -/// reference cannot be found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: The operation would involve -/// more than 10,000 files and folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_copy_reference". -/// -/// @return Whether the union's current tag state has value -/// "invalid_copy_reference". -/// -- (BOOL)isInvalidCopyReference; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveCopyReferenceError` union. -/// -@interface DBFILESSaveCopyReferenceErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSaveCopyReferenceError` instances. -/// -/// @param instance An instance of the `DBFILESSaveCopyReferenceError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveCopyReferenceError *)instance; - -/// -/// Deserializes `DBFILESSaveCopyReferenceError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceError` API object. -/// -/// @return An instantiation of the `DBFILESSaveCopyReferenceError` object. -/// -+ (DBFILESSaveCopyReferenceError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceResult.h deleted file mode 100644 index 33c1fd48..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveCopyReferenceResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESSaveCopyReferenceResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveCopyReferenceResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveCopyReferenceResult : NSObject - -#pragma mark - Instance fields - -/// The metadata of the saved file or folder in the user's Dropbox. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata The metadata of the saved file or folder in the user's -/// Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SaveCopyReferenceResult` struct. -/// -@interface DBFILESSaveCopyReferenceResultSerializer : NSObject - -/// -/// Serializes `DBFILESSaveCopyReferenceResult` instances. -/// -/// @param instance An instance of the `DBFILESSaveCopyReferenceResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveCopyReferenceResult *)instance; - -/// -/// Deserializes `DBFILESSaveCopyReferenceResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveCopyReferenceResult` API object. -/// -/// @return An instantiation of the `DBFILESSaveCopyReferenceResult` object. -/// -+ (DBFILESSaveCopyReferenceResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlArg.h deleted file mode 100644 index 4e2a4a84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveUrlArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlArg : NSObject - -#pragma mark - Instance fields - -/// The path in Dropbox where the URL will be saved to. -@property (nonatomic, readonly, copy) NSString *path; - -/// The URL to be saved. -@property (nonatomic, readonly, copy) NSString *url; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path in Dropbox where the URL will be saved to. -/// @param url The URL to be saved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path url:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SaveUrlArg` struct. -/// -@interface DBFILESSaveUrlArgSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlArg` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlArg *)instance; - -/// -/// Deserializes `DBFILESSaveUrlArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlArg` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlArg` object. -/// -+ (DBFILESSaveUrlArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlError.h deleted file mode 100644 index 6d2fb5a0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlError.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSaveUrlError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveUrlErrorTag` enum type represents the possible tag states -/// with which the `DBFILESSaveUrlError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveUrlErrorTag) { - /// (no description). - DBFILESSaveUrlErrorPath, - - /// Failed downloading the given URL. The URL may be password-protected and - /// the password provided was incorrect, or the link may be disabled. - DBFILESSaveUrlErrorDownloadFailed, - - /// The given URL is invalid. - DBFILESSaveUrlErrorInvalidUrl, - - /// The file where the URL is saved to no longer exists. - DBFILESSaveUrlErrorNotFound, - - /// (no description). - DBFILESSaveUrlErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveUrlErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "download_failed". -/// -/// Description of the "download_failed" tag state: Failed downloading the given -/// URL. The URL may be password-protected and the password provided was -/// incorrect, or the link may be disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDownloadFailed; - -/// -/// Initializes union class with tag state of "invalid_url". -/// -/// Description of the "invalid_url" tag state: The given URL is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUrl; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The file where the URL is saved to -/// no longer exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "download_failed". -/// -/// @return Whether the union's current tag state has value "download_failed". -/// -- (BOOL)isDownloadFailed; - -/// -/// Retrieves whether the union's current tag state has value "invalid_url". -/// -/// @return Whether the union's current tag state has value "invalid_url". -/// -- (BOOL)isInvalidUrl; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveUrlError` union. -/// -@interface DBFILESSaveUrlErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlError` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlError *)instance; - -/// -/// Deserializes `DBFILESSaveUrlError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlError` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlError` object. -/// -+ (DBFILESSaveUrlError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlJobStatus.h deleted file mode 100644 index 558a8d55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlJobStatus.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESSaveUrlError; -@class DBFILESSaveUrlJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveUrlJobStatusTag` enum type represents the possible tag -/// states with which the `DBFILESSaveUrlJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveUrlJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESSaveUrlJobStatusInProgress, - - /// Metadata of the file where the URL is saved to. - DBFILESSaveUrlJobStatusComplete, - - /// (no description). - DBFILESSaveUrlJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveUrlJobStatusTag tag; - -/// Metadata of the file where the URL is saved to. @note Ensure the -/// `isComplete` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESFileMetadata *complete; - -/// (no description). @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSaveUrlError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: Metadata of the file where the URL -/// is saved to. -/// -/// @param complete Metadata of the file where the URL is saved to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESFileMetadata *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// @param failed (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBFILESSaveUrlError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveUrlJobStatus` union. -/// -@interface DBFILESSaveUrlJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlJobStatus` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlJobStatus *)instance; - -/// -/// Deserializes `DBFILESSaveUrlJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlJobStatus` object. -/// -+ (DBFILESSaveUrlJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlResult.h deleted file mode 100644 index fda90fad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSaveUrlResult.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESSaveUrlResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SaveUrlResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSaveUrlResult : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSaveUrlResultTag` enum type represents the possible tag states -/// with which the `DBFILESSaveUrlResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSaveUrlResultTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESSaveUrlResultAsyncJobId, - - /// Metadata of the file where the URL is saved to. - DBFILESSaveUrlResultComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSaveUrlResultTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// Metadata of the file where the URL is saved to. @note Ensure the -/// `isComplete` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBFILESFileMetadata *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: Metadata of the file where the URL -/// is saved to. -/// -/// @param complete Metadata of the file where the URL is saved to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESFileMetadata *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSaveUrlResult` union. -/// -@interface DBFILESSaveUrlResultSerializer : NSObject - -/// -/// Serializes `DBFILESSaveUrlResult` instances. -/// -/// @param instance An instance of the `DBFILESSaveUrlResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSaveUrlResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSaveUrlResult *)instance; - -/// -/// Deserializes `DBFILESSaveUrlResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSaveUrlResult` API object. -/// -/// @return An instantiation of the `DBFILESSaveUrlResult` object. -/// -+ (DBFILESSaveUrlResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchArg.h deleted file mode 100644 index 609b252e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchArg.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchArg; -@class DBFILESSearchMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchArg : NSObject - -#pragma mark - Instance fields - -/// The path in the user's Dropbox to search. Should probably be a folder. -@property (nonatomic, readonly, copy) NSString *path; - -/// The string to search for. Query string may be rewritten to improve relevance -/// of results. The string is split on spaces into multiple tokens. For file -/// name searching, the last token is used for prefix matching (i.e. "bat c" -/// matches "bat cave" but not "batman car"). -@property (nonatomic, readonly, copy) NSString *query; - -/// The starting index within the search results (used for paging). -@property (nonatomic, readonly) NSNumber *start; - -/// The maximum number of search results to return. -@property (nonatomic, readonly) NSNumber *maxResults; - -/// The search mode (filename, filename_and_content, or deleted_filename). Note -/// that searching file content is only available for Dropbox Business accounts. -@property (nonatomic, readonly) DBFILESSearchMode *mode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path in the user's Dropbox to search. Should probably be a -/// folder. -/// @param query The string to search for. Query string may be rewritten to -/// improve relevance of results. The string is split on spaces into multiple -/// tokens. For file name searching, the last token is used for prefix matching -/// (i.e. "bat c" matches "bat cave" but not "batman car"). -/// @param start The starting index within the search results (used for paging). -/// @param maxResults The maximum number of search results to return. -/// @param mode The search mode (filename, filename_and_content, or -/// deleted_filename). Note that searching file content is only available for -/// Dropbox Business accounts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - query:(NSString *)query - start:(nullable NSNumber *)start - maxResults:(nullable NSNumber *)maxResults - mode:(nullable DBFILESSearchMode *)mode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path in the user's Dropbox to search. Should probably be a -/// folder. -/// @param query The string to search for. Query string may be rewritten to -/// improve relevance of results. The string is split on spaces into multiple -/// tokens. For file name searching, the last token is used for prefix matching -/// (i.e. "bat c" matches "bat cave" but not "batman car"). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path query:(NSString *)query; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchArg` struct. -/// -@interface DBFILESSearchArgSerializer : NSObject - -/// -/// Serializes `DBFILESSearchArg` instances. -/// -/// @param instance An instance of the `DBFILESSearchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchArg *)instance; - -/// -/// Deserializes `DBFILESSearchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchArg` API object. -/// -/// @return An instantiation of the `DBFILESSearchArg` object. -/// -+ (DBFILESSearchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchError.h deleted file mode 100644 index c556d22a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchError.h +++ /dev/null @@ -1,171 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESSearchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchErrorTag` enum type represents the possible tag states -/// with which the `DBFILESSearchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchErrorTag) { - /// (no description). - DBFILESSearchErrorPath, - - /// (no description). - DBFILESSearchErrorInvalidArgument, - - /// Something went wrong, please try again. - DBFILESSearchErrorInternalError, - - /// (no description). - DBFILESSearchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// (no description). @note Ensure the `isInvalidArgument` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *invalidArgument; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "invalid_argument". -/// -/// @param invalidArgument (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidArgument:(nullable NSString *)invalidArgument; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong, please -/// try again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_argument". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidArgument` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_argument". -/// -- (BOOL)isInvalidArgument; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchError` union. -/// -@interface DBFILESSearchErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSearchError` instances. -/// -/// @param instance An instance of the `DBFILESSearchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchError *)instance; - -/// -/// Deserializes `DBFILESSearchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchError` API object. -/// -/// @return An instantiation of the `DBFILESSearchError` object. -/// -+ (DBFILESSearchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatch.h deleted file mode 100644 index a55d4b49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatch.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESMetadata; -@class DBFILESSearchMatch; -@class DBFILESSearchMatchType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatch` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatch : NSObject - -#pragma mark - Instance fields - -/// The type of the match. -@property (nonatomic, readonly) DBFILESSearchMatchType *matchType; - -/// The metadata for the matched file or folder. -@property (nonatomic, readonly) DBFILESMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matchType The type of the match. -/// @param metadata The metadata for the matched file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatchType:(DBFILESSearchMatchType *)matchType metadata:(DBFILESMetadata *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchMatch` struct. -/// -@interface DBFILESSearchMatchSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMatch` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatch *)instance; - -/// -/// Deserializes `DBFILESSearchMatch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatch` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatch` object. -/// -+ (DBFILESSearchMatch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchFieldOptions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchFieldOptions.h deleted file mode 100644 index e9d38693..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchFieldOptions.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchFieldOptions; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchFieldOptions` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchFieldOptions : NSObject - -#pragma mark - Instance fields - -/// Whether to include highlight span from file title. -@property (nonatomic, readonly) NSNumber *includeHighlights; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param includeHighlights Whether to include highlight span from file title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncludeHighlights:(nullable NSNumber *)includeHighlights; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchMatchFieldOptions` struct. -/// -@interface DBFILESSearchMatchFieldOptionsSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchFieldOptions` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchFieldOptions` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchFieldOptions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchFieldOptions *)instance; - -/// -/// Deserializes `DBFILESSearchMatchFieldOptions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchFieldOptions` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchFieldOptions` object. -/// -+ (DBFILESSearchMatchFieldOptions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchType.h deleted file mode 100644 index 029f159d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchType.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchType` union. -/// -/// Indicates what type of match was found for a given item. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchMatchTypeTag` enum type represents the possible tag states -/// with which the `DBFILESSearchMatchType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchMatchTypeTag) { - /// This item was matched on its file or folder name. - DBFILESSearchMatchTypeFilename, - - /// This item was matched based on its file contents. - DBFILESSearchMatchTypeContent, - - /// This item was matched based on both its contents and its file name. - DBFILESSearchMatchTypeBoth, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchMatchTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filename". -/// -/// Description of the "filename" tag state: This item was matched on its file -/// or folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilename; - -/// -/// Initializes union class with tag state of "content". -/// -/// Description of the "content" tag state: This item was matched based on its -/// file contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContent; - -/// -/// Initializes union class with tag state of "both". -/// -/// Description of the "both" tag state: This item was matched based on both its -/// contents and its file name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBoth; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filename". -/// -/// @return Whether the union's current tag state has value "filename". -/// -- (BOOL)isFilename; - -/// -/// Retrieves whether the union's current tag state has value "content". -/// -/// @return Whether the union's current tag state has value "content". -/// -- (BOOL)isContent; - -/// -/// Retrieves whether the union's current tag state has value "both". -/// -/// @return Whether the union's current tag state has value "both". -/// -- (BOOL)isBoth; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchMatchType` union. -/// -@interface DBFILESSearchMatchTypeSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchType` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchType *)instance; - -/// -/// Deserializes `DBFILESSearchMatchType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchType` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchType` object. -/// -+ (DBFILESSearchMatchType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchTypeV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchTypeV2.h deleted file mode 100644 index a545d76e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchTypeV2.h +++ /dev/null @@ -1,181 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchTypeV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchTypeV2` union. -/// -/// Indicates what type of match was found for a given item. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchTypeV2 : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchMatchTypeV2Tag` enum type represents the possible tag -/// states with which the `DBFILESSearchMatchTypeV2` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchMatchTypeV2Tag) { - /// This item was matched on its file or folder name. - DBFILESSearchMatchTypeV2Filename, - - /// This item was matched based on its file contents. - DBFILESSearchMatchTypeV2FileContent, - - /// This item was matched based on both its contents and its file name. - DBFILESSearchMatchTypeV2FilenameAndContent, - - /// This item was matched on image content. - DBFILESSearchMatchTypeV2ImageContent, - - /// (no description). - DBFILESSearchMatchTypeV2Other, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchMatchTypeV2Tag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filename". -/// -/// Description of the "filename" tag state: This item was matched on its file -/// or folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilename; - -/// -/// Initializes union class with tag state of "file_content". -/// -/// Description of the "file_content" tag state: This item was matched based on -/// its file contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileContent; - -/// -/// Initializes union class with tag state of "filename_and_content". -/// -/// Description of the "filename_and_content" tag state: This item was matched -/// based on both its contents and its file name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilenameAndContent; - -/// -/// Initializes union class with tag state of "image_content". -/// -/// Description of the "image_content" tag state: This item was matched on image -/// content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageContent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filename". -/// -/// @return Whether the union's current tag state has value "filename". -/// -- (BOOL)isFilename; - -/// -/// Retrieves whether the union's current tag state has value "file_content". -/// -/// @return Whether the union's current tag state has value "file_content". -/// -- (BOOL)isFileContent; - -/// -/// Retrieves whether the union's current tag state has value -/// "filename_and_content". -/// -/// @return Whether the union's current tag state has value -/// "filename_and_content". -/// -- (BOOL)isFilenameAndContent; - -/// -/// Retrieves whether the union's current tag state has value "image_content". -/// -/// @return Whether the union's current tag state has value "image_content". -/// -- (BOOL)isImageContent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchMatchTypeV2` union. -/// -@interface DBFILESSearchMatchTypeV2Serializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchTypeV2` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchTypeV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchTypeV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchTypeV2 *)instance; - -/// -/// Deserializes `DBFILESSearchMatchTypeV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchTypeV2` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchTypeV2` object. -/// -+ (DBFILESSearchMatchTypeV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchV2.h deleted file mode 100644 index 9abd21c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMatchV2.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESHighlightSpan; -@class DBFILESMetadataV2; -@class DBFILESSearchMatchTypeV2; -@class DBFILESSearchMatchV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMatchV2` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMatchV2 : NSObject - -#pragma mark - Instance fields - -/// The metadata for the matched file or folder. -@property (nonatomic, readonly) DBFILESMetadataV2 *metadata; - -/// The type of the match. -@property (nonatomic, readonly, nullable) DBFILESSearchMatchTypeV2 *matchType; - -/// The list of HighlightSpan determines which parts of the file title should be -/// highlighted. -@property (nonatomic, readonly, nullable) NSArray *highlightSpans; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param metadata The metadata for the matched file or folder. -/// @param matchType The type of the match. -/// @param highlightSpans The list of HighlightSpan determines which parts of -/// the file title should be highlighted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadataV2 *)metadata - matchType:(nullable DBFILESSearchMatchTypeV2 *)matchType - highlightSpans:(nullable NSArray *)highlightSpans; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param metadata The metadata for the matched file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBFILESMetadataV2 *)metadata; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchMatchV2` struct. -/// -@interface DBFILESSearchMatchV2Serializer : NSObject - -/// -/// Serializes `DBFILESSearchMatchV2` instances. -/// -/// @param instance An instance of the `DBFILESSearchMatchV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMatchV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMatchV2 *)instance; - -/// -/// Deserializes `DBFILESSearchMatchV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMatchV2` API object. -/// -/// @return An instantiation of the `DBFILESSearchMatchV2` object. -/// -+ (DBFILESSearchMatchV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMode.h deleted file mode 100644 index cc6b4962..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchMode.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchModeTag` enum type represents the possible tag states with -/// which the `DBFILESSearchMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchModeTag) { - /// Search file and folder names. - DBFILESSearchModeFilename, - - /// Search file and folder names as well as file contents. - DBFILESSearchModeFilenameAndContent, - - /// Search for deleted file and folder names. - DBFILESSearchModeDeletedFilename, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "filename". -/// -/// Description of the "filename" tag state: Search file and folder names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilename; - -/// -/// Initializes union class with tag state of "filename_and_content". -/// -/// Description of the "filename_and_content" tag state: Search file and folder -/// names as well as file contents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilenameAndContent; - -/// -/// Initializes union class with tag state of "deleted_filename". -/// -/// Description of the "deleted_filename" tag state: Search for deleted file and -/// folder names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeletedFilename; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "filename". -/// -/// @return Whether the union's current tag state has value "filename". -/// -- (BOOL)isFilename; - -/// -/// Retrieves whether the union's current tag state has value -/// "filename_and_content". -/// -/// @return Whether the union's current tag state has value -/// "filename_and_content". -/// -- (BOOL)isFilenameAndContent; - -/// -/// Retrieves whether the union's current tag state has value -/// "deleted_filename". -/// -/// @return Whether the union's current tag state has value "deleted_filename". -/// -- (BOOL)isDeletedFilename; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchMode` union. -/// -@interface DBFILESSearchModeSerializer : NSObject - -/// -/// Serializes `DBFILESSearchMode` instances. -/// -/// @param instance An instance of the `DBFILESSearchMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchMode *)instance; - -/// -/// Deserializes `DBFILESSearchMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchMode` API object. -/// -/// @return An instantiation of the `DBFILESSearchMode` object. -/// -+ (DBFILESSearchMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchOptions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchOptions.h deleted file mode 100644 index b687015f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchOptions.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileCategory; -@class DBFILESFileStatus; -@class DBFILESSearchOptions; -@class DBFILESSearchOrderBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchOptions` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchOptions : NSObject - -#pragma mark - Instance fields - -/// Scopes the search to a path in the user's Dropbox. Searches the entire -/// Dropbox if not specified. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// The maximum number of search results to return. -@property (nonatomic, readonly) NSNumber *maxResults; - -/// Specified property of the order of search results. By default, results are -/// sorted by relevance. -@property (nonatomic, readonly, nullable) DBFILESSearchOrderBy *orderBy; - -/// Restricts search to the given file status. -@property (nonatomic, readonly) DBFILESFileStatus *fileStatus; - -/// Restricts search to only match on filenames. -@property (nonatomic, readonly) NSNumber *filenameOnly; - -/// Restricts search to only the extensions specified. Only supported for active -/// file search. -@property (nonatomic, readonly, nullable) NSArray *fileExtensions; - -/// Restricts search to only the file categories specified. Only supported for -/// active file search. -@property (nonatomic, readonly, nullable) NSArray *fileCategories; - -/// Restricts results to the given account id. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Scopes the search to a path in the user's Dropbox. Searches the -/// entire Dropbox if not specified. -/// @param maxResults The maximum number of search results to return. -/// @param orderBy Specified property of the order of search results. By -/// default, results are sorted by relevance. -/// @param fileStatus Restricts search to the given file status. -/// @param filenameOnly Restricts search to only match on filenames. -/// @param fileExtensions Restricts search to only the extensions specified. -/// Only supported for active file search. -/// @param fileCategories Restricts search to only the file categories -/// specified. Only supported for active file search. -/// @param accountId Restricts results to the given account id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path - maxResults:(nullable NSNumber *)maxResults - orderBy:(nullable DBFILESSearchOrderBy *)orderBy - fileStatus:(nullable DBFILESFileStatus *)fileStatus - filenameOnly:(nullable NSNumber *)filenameOnly - fileExtensions:(nullable NSArray *)fileExtensions - fileCategories:(nullable NSArray *)fileCategories - accountId:(nullable NSString *)accountId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchOptions` struct. -/// -@interface DBFILESSearchOptionsSerializer : NSObject - -/// -/// Serializes `DBFILESSearchOptions` instances. -/// -/// @param instance An instance of the `DBFILESSearchOptions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchOptions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchOptions *)instance; - -/// -/// Deserializes `DBFILESSearchOptions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchOptions` API object. -/// -/// @return An instantiation of the `DBFILESSearchOptions` object. -/// -+ (DBFILESSearchOptions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchOrderBy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchOrderBy.h deleted file mode 100644 index b2c65332..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchOrderBy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchOrderBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchOrderBy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchOrderBy : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSearchOrderByTag` enum type represents the possible tag states -/// with which the `DBFILESSearchOrderBy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSearchOrderByTag) { - /// (no description). - DBFILESSearchOrderByRelevance, - - /// (no description). - DBFILESSearchOrderByLastModifiedTime, - - /// (no description). - DBFILESSearchOrderByOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSearchOrderByTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "relevance". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelevance; - -/// -/// Initializes union class with tag state of "last_modified_time". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLastModifiedTime; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "relevance". -/// -/// @return Whether the union's current tag state has value "relevance". -/// -- (BOOL)isRelevance; - -/// -/// Retrieves whether the union's current tag state has value -/// "last_modified_time". -/// -/// @return Whether the union's current tag state has value -/// "last_modified_time". -/// -- (BOOL)isLastModifiedTime; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSearchOrderBy` union. -/// -@interface DBFILESSearchOrderBySerializer : NSObject - -/// -/// Serializes `DBFILESSearchOrderBy` instances. -/// -/// @param instance An instance of the `DBFILESSearchOrderBy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchOrderBy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchOrderBy *)instance; - -/// -/// Deserializes `DBFILESSearchOrderBy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchOrderBy` API object. -/// -/// @return An instantiation of the `DBFILESSearchOrderBy` object. -/// -+ (DBFILESSearchOrderBy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchResult.h deleted file mode 100644 index 3fbdd3de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchResult.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatch; -@class DBFILESSearchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchResult : NSObject - -#pragma mark - Instance fields - -/// A list (possibly empty) of matches for the query. -@property (nonatomic, readonly) NSArray *matches; - -/// Used for paging. If true, indicates there is another page of results -/// available that can be fetched by calling `search` again. -@property (nonatomic, readonly) NSNumber *more; - -/// Used for paging. Value to set the start argument to when calling `search` to -/// fetch the next page of results. -@property (nonatomic, readonly) NSNumber *start; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param more Used for paging. If true, indicates there is another page of -/// results available that can be fetched by calling `search` again. -/// @param start Used for paging. Value to set the start argument to when -/// calling `search` to fetch the next page of results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches more:(NSNumber *)more start:(NSNumber *)start; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchResult` struct. -/// -@interface DBFILESSearchResultSerializer : NSObject - -/// -/// Serializes `DBFILESSearchResult` instances. -/// -/// @param instance An instance of the `DBFILESSearchResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchResult *)instance; - -/// -/// Deserializes `DBFILESSearchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchResult` API object. -/// -/// @return An instantiation of the `DBFILESSearchResult` object. -/// -+ (DBFILESSearchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2Arg.h deleted file mode 100644 index f23a0f1f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2Arg.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchFieldOptions; -@class DBFILESSearchOptions; -@class DBFILESSearchV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchV2Arg : NSObject - -#pragma mark - Instance fields - -/// The string to search for. May match across multiple fields based on the -/// request arguments. -@property (nonatomic, readonly, copy) NSString *query; - -/// Options for more targeted search results. -@property (nonatomic, readonly, nullable) DBFILESSearchOptions *options; - -/// Options for search results match fields. -@property (nonatomic, readonly, nullable) DBFILESSearchMatchFieldOptions *matchFieldOptions; - -/// Deprecated and moved this option to SearchMatchFieldOptions. -@property (nonatomic, readonly, nullable) NSNumber *includeHighlights; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param query The string to search for. May match across multiple fields -/// based on the request arguments. -/// @param options Options for more targeted search results. -/// @param matchFieldOptions Options for search results match fields. -/// @param includeHighlights Deprecated and moved this option to -/// SearchMatchFieldOptions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query - options:(nullable DBFILESSearchOptions *)options - matchFieldOptions:(nullable DBFILESSearchMatchFieldOptions *)matchFieldOptions - includeHighlights:(nullable NSNumber *)includeHighlights; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param query The string to search for. May match across multiple fields -/// based on the request arguments. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQuery:(NSString *)query; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchV2Arg` struct. -/// -@interface DBFILESSearchV2ArgSerializer : NSObject - -/// -/// Serializes `DBFILESSearchV2Arg` instances. -/// -/// @param instance An instance of the `DBFILESSearchV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchV2Arg *)instance; - -/// -/// Deserializes `DBFILESSearchV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchV2Arg` API object. -/// -/// @return An instantiation of the `DBFILESSearchV2Arg` object. -/// -+ (DBFILESSearchV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2ContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2ContinueArg.h deleted file mode 100644 index 50c9992b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2ContinueArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchV2ContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchV2ContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchV2ContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `search`. Used to fetch the next -/// page of results. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `search`. Used to -/// fetch the next page of results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchV2ContinueArg` struct. -/// -@interface DBFILESSearchV2ContinueArgSerializer : NSObject - -/// -/// Serializes `DBFILESSearchV2ContinueArg` instances. -/// -/// @param instance An instance of the `DBFILESSearchV2ContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchV2ContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchV2ContinueArg *)instance; - -/// -/// Deserializes `DBFILESSearchV2ContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchV2ContinueArg` API object. -/// -/// @return An instantiation of the `DBFILESSearchV2ContinueArg` object. -/// -+ (DBFILESSearchV2ContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2Result.h deleted file mode 100644 index 6e18daeb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSearchV2Result.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSearchMatchV2; -@class DBFILESSearchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SearchV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSearchV2Result : NSObject - -#pragma mark - Instance fields - -/// A list (possibly empty) of matches for the query. -@property (nonatomic, readonly) NSArray *matches; - -/// Used for paging. If true, indicates there is another page of results -/// available that can be fetched by calling `searchContinue` with the cursor. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `searchContinue` to fetch the next page of results. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param hasMore Used for paging. If true, indicates there is another page of -/// results available that can be fetched by calling `searchContinue` with the -/// cursor. -/// @param cursor Pass the cursor into `searchContinue` to fetch the next page -/// of results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param matches A list (possibly empty) of matches for the query. -/// @param hasMore Used for paging. If true, indicates there is another page of -/// results available that can be fetched by calling `searchContinue` with the -/// cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMatches:(NSArray *)matches hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SearchV2Result` struct. -/// -@interface DBFILESSearchV2ResultSerializer : NSObject - -/// -/// Serializes `DBFILESSearchV2Result` instances. -/// -/// @param instance An instance of the `DBFILESSearchV2Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSearchV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSearchV2Result *)instance; - -/// -/// Deserializes `DBFILESSearchV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSearchV2Result` API object. -/// -/// @return An instantiation of the `DBFILESSearchV2Result` object. -/// -+ (DBFILESSearchV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharedLink.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharedLink.h deleted file mode 100644 index c4fc1b0a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharedLink.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSharedLink; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLink` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSharedLink : NSObject - -#pragma mark - Instance fields - -/// Shared link url. -@property (nonatomic, readonly, copy) NSString *url; - -/// Password for the shared link. -@property (nonatomic, readonly, copy, nullable) NSString *password; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url Shared link url. -/// @param password Password for the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url password:(nullable NSString *)password; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url Shared link url. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLink` struct. -/// -@interface DBFILESSharedLinkSerializer : NSObject - -/// -/// Serializes `DBFILESSharedLink` instances. -/// -/// @param instance An instance of the `DBFILESSharedLink` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSharedLink` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSharedLink *)instance; - -/// -/// Deserializes `DBFILESSharedLink` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSharedLink` API object. -/// -/// @return An instantiation of the `DBFILESSharedLink` object. -/// -+ (DBFILESSharedLink *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharedLinkFileInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharedLinkFileInfo.h deleted file mode 100644 index bdcf75f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharedLinkFileInfo.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSharedLinkFileInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkFileInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSharedLinkFileInfo : NSObject - -#pragma mark - Instance fields - -/// The shared link corresponding to either a file or shared link to a folder. -/// If it is for a folder shared link, we use the path param to determine for -/// which file in the folder the view is for. -@property (nonatomic, readonly, copy) NSString *url; - -/// The path corresponding to a file in a shared link to a folder. Required for -/// shared links to folders. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// Password for the shared link. Required for password-protected shared links -/// to files unless it can be read from a cookie. -@property (nonatomic, readonly, copy, nullable) NSString *password; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url The shared link corresponding to either a file or shared link to -/// a folder. If it is for a folder shared link, we use the path param to -/// determine for which file in the folder the view is for. -/// @param path The path corresponding to a file in a shared link to a folder. -/// Required for shared links to folders. -/// @param password Password for the shared link. Required for -/// password-protected shared links to files unless it can be read from a -/// cookie. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url path:(nullable NSString *)path password:(nullable NSString *)password; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url The shared link corresponding to either a file or shared link to -/// a folder. If it is for a folder shared link, we use the path param to -/// determine for which file in the folder the view is for. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkFileInfo` struct. -/// -@interface DBFILESSharedLinkFileInfoSerializer : NSObject - -/// -/// Serializes `DBFILESSharedLinkFileInfo` instances. -/// -/// @param instance An instance of the `DBFILESSharedLinkFileInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSharedLinkFileInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSharedLinkFileInfo *)instance; - -/// -/// Deserializes `DBFILESSharedLinkFileInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSharedLinkFileInfo` API object. -/// -/// @return An instantiation of the `DBFILESSharedLinkFileInfo` object. -/// -+ (DBFILESSharedLinkFileInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharingInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharingInfo.h deleted file mode 100644 index dd648aa5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSharingInfo.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSharingInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingInfo` struct. -/// -/// Sharing info for a file or folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSharingInfo : NSObject - -#pragma mark - Instance fields - -/// True if the file or folder is inside a read-only shared folder. -@property (nonatomic, readonly) NSNumber *readOnly; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param readOnly True if the file or folder is inside a read-only shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReadOnly:(NSNumber *)readOnly; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingInfo` struct. -/// -@interface DBFILESSharingInfoSerializer : NSObject - -/// -/// Serializes `DBFILESSharingInfo` instances. -/// -/// @param instance An instance of the `DBFILESSharingInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSharingInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSharingInfo *)instance; - -/// -/// Deserializes `DBFILESSharingInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSharingInfo` API object. -/// -/// @return An instantiation of the `DBFILESSharingInfo` object. -/// -+ (DBFILESSharingInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSingleUserLock.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSingleUserLock.h deleted file mode 100644 index b7f74390..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSingleUserLock.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSingleUserLock; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SingleUserLock` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSingleUserLock : NSObject - -#pragma mark - Instance fields - -/// The time the lock was created. -@property (nonatomic, readonly) NSDate *created; - -/// The account ID of the lock holder if known. -@property (nonatomic, readonly, copy) NSString *lockHolderAccountId; - -/// The id of the team of the account holder if it exists. -@property (nonatomic, readonly, copy, nullable) NSString *lockHolderTeamId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param created The time the lock was created. -/// @param lockHolderAccountId The account ID of the lock holder if known. -/// @param lockHolderTeamId The id of the team of the account holder if it -/// exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated:(NSDate *)created - lockHolderAccountId:(NSString *)lockHolderAccountId - lockHolderTeamId:(nullable NSString *)lockHolderTeamId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param created The time the lock was created. -/// @param lockHolderAccountId The account ID of the lock holder if known. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated:(NSDate *)created lockHolderAccountId:(NSString *)lockHolderAccountId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SingleUserLock` struct. -/// -@interface DBFILESSingleUserLockSerializer : NSObject - -/// -/// Serializes `DBFILESSingleUserLock` instances. -/// -/// @param instance An instance of the `DBFILESSingleUserLock` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSingleUserLock` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSingleUserLock *)instance; - -/// -/// Deserializes `DBFILESSingleUserLock` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSingleUserLock` API object. -/// -/// @return An instantiation of the `DBFILESSingleUserLock` object. -/// -+ (DBFILESSingleUserLock *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSymlinkInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSymlinkInfo.h deleted file mode 100644 index e69cecd5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSymlinkInfo.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSymlinkInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SymlinkInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSymlinkInfo : NSObject - -#pragma mark - Instance fields - -/// The target this symlink points to. -@property (nonatomic, readonly, copy) NSString *target; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param target The target this symlink points to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTarget:(NSString *)target; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SymlinkInfo` struct. -/// -@interface DBFILESSymlinkInfoSerializer : NSObject - -/// -/// Serializes `DBFILESSymlinkInfo` instances. -/// -/// @param instance An instance of the `DBFILESSymlinkInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSymlinkInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSymlinkInfo *)instance; - -/// -/// Deserializes `DBFILESSymlinkInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSymlinkInfo` API object. -/// -/// @return An instantiation of the `DBFILESSymlinkInfo` object. -/// -+ (DBFILESSymlinkInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSetting.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSetting.h deleted file mode 100644 index b9ea29e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSetting.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSetting; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SyncSetting` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSyncSetting : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSyncSettingTag` enum type represents the possible tag states -/// with which the `DBFILESSyncSetting` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSyncSettingTag) { - /// On first sync to members' computers, the specified folder will follow - /// its parent folder's setting or otherwise follow default sync behavior. - DBFILESSyncSettingDefault_, - - /// On first sync to members' computers, the specified folder will be set to - /// not sync with selective sync. - DBFILESSyncSettingNotSynced, - - /// The specified folder's not_synced setting is inactive due to its - /// location or other configuration changes. It will follow its parent - /// folder's setting. - DBFILESSyncSettingNotSyncedInactive, - - /// (no description). - DBFILESSyncSettingOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSyncSettingTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: On first sync to members' computers, -/// the specified folder will follow its parent folder's setting or otherwise -/// follow default sync behavior. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "not_synced". -/// -/// Description of the "not_synced" tag state: On first sync to members' -/// computers, the specified folder will be set to not sync with selective sync. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotSynced; - -/// -/// Initializes union class with tag state of "not_synced_inactive". -/// -/// Description of the "not_synced_inactive" tag state: The specified folder's -/// not_synced setting is inactive due to its location or other configuration -/// changes. It will follow its parent folder's setting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotSyncedInactive; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "not_synced". -/// -/// @return Whether the union's current tag state has value "not_synced". -/// -- (BOOL)isNotSynced; - -/// -/// Retrieves whether the union's current tag state has value -/// "not_synced_inactive". -/// -/// @return Whether the union's current tag state has value -/// "not_synced_inactive". -/// -- (BOOL)isNotSyncedInactive; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSyncSetting` union. -/// -@interface DBFILESSyncSettingSerializer : NSObject - -/// -/// Serializes `DBFILESSyncSetting` instances. -/// -/// @param instance An instance of the `DBFILESSyncSetting` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSyncSetting` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSyncSetting *)instance; - -/// -/// Deserializes `DBFILESSyncSetting` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSyncSetting` API object. -/// -/// @return An instantiation of the `DBFILESSyncSetting` object. -/// -+ (DBFILESSyncSetting *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSettingArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSettingArg.h deleted file mode 100644 index d7ab9c23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSettingArg.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SyncSettingArg` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSyncSettingArg : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSyncSettingArgTag` enum type represents the possible tag states -/// with which the `DBFILESSyncSettingArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSyncSettingArgTag) { - /// On first sync to members' computers, the specified folder will follow - /// its parent folder's setting or otherwise follow default sync behavior. - DBFILESSyncSettingArgDefault_, - - /// On first sync to members' computers, the specified folder will be set to - /// not sync with selective sync. - DBFILESSyncSettingArgNotSynced, - - /// (no description). - DBFILESSyncSettingArgOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSyncSettingArgTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: On first sync to members' computers, -/// the specified folder will follow its parent folder's setting or otherwise -/// follow default sync behavior. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "not_synced". -/// -/// Description of the "not_synced" tag state: On first sync to members' -/// computers, the specified folder will be set to not sync with selective sync. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotSynced; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "not_synced". -/// -/// @return Whether the union's current tag state has value "not_synced". -/// -- (BOOL)isNotSynced; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSyncSettingArg` union. -/// -@interface DBFILESSyncSettingArgSerializer : NSObject - -/// -/// Serializes `DBFILESSyncSettingArg` instances. -/// -/// @param instance An instance of the `DBFILESSyncSettingArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSyncSettingArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSyncSettingArg *)instance; - -/// -/// Deserializes `DBFILESSyncSettingArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSyncSettingArg` API object. -/// -/// @return An instantiation of the `DBFILESSyncSettingArg` object. -/// -+ (DBFILESSyncSettingArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSettingsError.h deleted file mode 100644 index 14e7863d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESSyncSettingsError.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESSyncSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SyncSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESSyncSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESSyncSettingsErrorTag` enum type represents the possible tag -/// states with which the `DBFILESSyncSettingsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESSyncSettingsErrorTag) { - /// (no description). - DBFILESSyncSettingsErrorPath, - - /// Setting this combination of sync settings simultaneously is not - /// supported. - DBFILESSyncSettingsErrorUnsupportedCombination, - - /// The specified configuration is not supported. - DBFILESSyncSettingsErrorUnsupportedConfiguration, - - /// (no description). - DBFILESSyncSettingsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESSyncSettingsErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_combination". -/// -/// Description of the "unsupported_combination" tag state: Setting this -/// combination of sync settings simultaneously is not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedCombination; - -/// -/// Initializes union class with tag state of "unsupported_configuration". -/// -/// Description of the "unsupported_configuration" tag state: The specified -/// configuration is not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedConfiguration; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_combination". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_combination". -/// -- (BOOL)isUnsupportedCombination; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_configuration". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_configuration". -/// -- (BOOL)isUnsupportedConfiguration; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESSyncSettingsError` union. -/// -@interface DBFILESSyncSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBFILESSyncSettingsError` instances. -/// -/// @param instance An instance of the `DBFILESSyncSettingsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESSyncSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESSyncSettingsError *)instance; - -/// -/// Deserializes `DBFILESSyncSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESSyncSettingsError` API object. -/// -/// @return An instantiation of the `DBFILESSyncSettingsError` object. -/// -+ (DBFILESSyncSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESTag.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESTag.h deleted file mode 100644 index afaa4b20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESTag.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESTag; -@class DBFILESUserGeneratedTag; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Tag` union. -/// -/// Tag that can be added in multiple ways. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESTag : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESTagTag` enum type represents the possible tag states with which -/// the `DBFILESTag` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESTagTag) { - /// Tag generated by the user. - DBFILESTagUserGeneratedTag, - - /// (no description). - DBFILESTagOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESTagTag tag; - -/// Tag generated by the user. @note Ensure the `isUserGeneratedTag` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUserGeneratedTag *userGeneratedTag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_generated_tag". -/// -/// Description of the "user_generated_tag" tag state: Tag generated by the -/// user. -/// -/// @param userGeneratedTag Tag generated by the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserGeneratedTag:(DBFILESUserGeneratedTag *)userGeneratedTag; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "user_generated_tag". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userGeneratedTag` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_generated_tag". -/// -- (BOOL)isUserGeneratedTag; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESTag` union. -/// -@interface DBFILESTagSerializer : NSObject - -/// -/// Serializes `DBFILESTag` instances. -/// -/// @param instance An instance of the `DBFILESTag` API object. -/// -/// @return A json-compatible dictionary representation of the `DBFILESTag` API -/// object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESTag *)instance; - -/// -/// Deserializes `DBFILESTag` instances. -/// -/// @param dict A json-compatible dictionary representation of the `DBFILESTag` -/// API object. -/// -/// @return An instantiation of the `DBFILESTag` object. -/// -+ (DBFILESTag *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailArg.h deleted file mode 100644 index eb0a22c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailArg; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailArg : NSObject - -#pragma mark - Instance fields - -/// The path to the image file you want to thumbnail. -@property (nonatomic, readonly, copy) NSString *path; - -/// The format for the thumbnail image, jpeg (default) or png. For images that -/// are photos, jpeg should be preferred, while png is better for screenshots -/// and digital arts. -@property (nonatomic, readonly) DBFILESThumbnailFormat *format; - -/// The size for the thumbnail image. -@property (nonatomic, readonly) DBFILESThumbnailSize *size; - -/// How to resize and crop the image to achieve the desired size. -@property (nonatomic, readonly) DBFILESThumbnailMode *mode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For -/// images that are photos, jpeg should be preferred, while png is better for -/// screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to the image file you want to thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ThumbnailArg` struct. -/// -@interface DBFILESThumbnailArgSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailArg` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailArg *)instance; - -/// -/// Deserializes `DBFILESThumbnailArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailArg` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailArg` object. -/// -+ (DBFILESThumbnailArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailError.h deleted file mode 100644 index 5c689be4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailError.h +++ /dev/null @@ -1,175 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESThumbnailError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailErrorTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailErrorTag) { - /// An error occurs when downloading metadata for the image. - DBFILESThumbnailErrorPath, - - /// The file extension doesn't allow conversion to a thumbnail. - DBFILESThumbnailErrorUnsupportedExtension, - - /// The image cannot be converted to a thumbnail. - DBFILESThumbnailErrorUnsupportedImage, - - /// An error occurs during thumbnail conversion. - DBFILESThumbnailErrorConversionError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailErrorTag tag; - -/// An error occurs when downloading metadata for the image. @note Ensure the -/// `isPath` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: An error occurs when downloading -/// metadata for the image. -/// -/// @param path An error occurs when downloading metadata for the image. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_extension". -/// -/// Description of the "unsupported_extension" tag state: The file extension -/// doesn't allow conversion to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedExtension; - -/// -/// Initializes union class with tag state of "unsupported_image". -/// -/// Description of the "unsupported_image" tag state: The image cannot be -/// converted to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedImage; - -/// -/// Initializes union class with tag state of "conversion_error". -/// -/// Description of the "conversion_error" tag state: An error occurs during -/// thumbnail conversion. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConversionError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_extension". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_extension". -/// -- (BOOL)isUnsupportedExtension; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_image". -/// -/// @return Whether the union's current tag state has value "unsupported_image". -/// -- (BOOL)isUnsupportedImage; - -/// -/// Retrieves whether the union's current tag state has value -/// "conversion_error". -/// -/// @return Whether the union's current tag state has value "conversion_error". -/// -- (BOOL)isConversionError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailError` union. -/// -@interface DBFILESThumbnailErrorSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailError` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailError *)instance; - -/// -/// Deserializes `DBFILESThumbnailError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailError` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailError` object. -/// -+ (DBFILESThumbnailError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailFormat.h deleted file mode 100644 index 857480ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailFormat.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailFormat` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailFormatTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailFormatTag) { - /// (no description). - DBFILESThumbnailFormatJpeg, - - /// (no description). - DBFILESThumbnailFormatPng, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "jpeg". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithJpeg; - -/// -/// Initializes union class with tag state of "png". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPng; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "jpeg". -/// -/// @return Whether the union's current tag state has value "jpeg". -/// -- (BOOL)isJpeg; - -/// -/// Retrieves whether the union's current tag state has value "png". -/// -/// @return Whether the union's current tag state has value "png". -/// -- (BOOL)isPng; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailFormat` union. -/// -@interface DBFILESThumbnailFormatSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailFormat` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailFormat *)instance; - -/// -/// Deserializes `DBFILESThumbnailFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailFormat` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailFormat` object. -/// -+ (DBFILESThumbnailFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailMode.h deleted file mode 100644 index bc041095..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailMode.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailModeTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailModeTag) { - /// Scale down the image to fit within the given size. - DBFILESThumbnailModeStrict, - - /// Scale down the image to fit within the given size or its transpose. - DBFILESThumbnailModeBestfit, - - /// Scale down the image to completely cover the given size or its - /// transpose. - DBFILESThumbnailModeFitoneBestfit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "strict". -/// -/// Description of the "strict" tag state: Scale down the image to fit within -/// the given size. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStrict; - -/// -/// Initializes union class with tag state of "bestfit". -/// -/// Description of the "bestfit" tag state: Scale down the image to fit within -/// the given size or its transpose. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBestfit; - -/// -/// Initializes union class with tag state of "fitone_bestfit". -/// -/// Description of the "fitone_bestfit" tag state: Scale down the image to -/// completely cover the given size or its transpose. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFitoneBestfit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "strict". -/// -/// @return Whether the union's current tag state has value "strict". -/// -- (BOOL)isStrict; - -/// -/// Retrieves whether the union's current tag state has value "bestfit". -/// -/// @return Whether the union's current tag state has value "bestfit". -/// -- (BOOL)isBestfit; - -/// -/// Retrieves whether the union's current tag state has value "fitone_bestfit". -/// -/// @return Whether the union's current tag state has value "fitone_bestfit". -/// -- (BOOL)isFitoneBestfit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailMode` union. -/// -@interface DBFILESThumbnailModeSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailMode` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailMode *)instance; - -/// -/// Deserializes `DBFILESThumbnailMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailMode` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailMode` object. -/// -+ (DBFILESThumbnailMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailSize.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailSize.h deleted file mode 100644 index c9b9d3ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailSize.h +++ /dev/null @@ -1,251 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESThumbnailSize; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailSize` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailSize : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailSizeTag` enum type represents the possible tag states -/// with which the `DBFILESThumbnailSize` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailSizeTag) { - /// 32 by 32 px. - DBFILESThumbnailSizeW32h32, - - /// 64 by 64 px. - DBFILESThumbnailSizeW64h64, - - /// 128 by 128 px. - DBFILESThumbnailSizeW128h128, - - /// 256 by 256 px. - DBFILESThumbnailSizeW256h256, - - /// 480 by 320 px. - DBFILESThumbnailSizeW480h320, - - /// 640 by 480 px. - DBFILESThumbnailSizeW640h480, - - /// 960 by 640 px. - DBFILESThumbnailSizeW960h640, - - /// 1024 by 768 px. - DBFILESThumbnailSizeW1024h768, - - /// 2048 by 1536 px. - DBFILESThumbnailSizeW2048h1536, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailSizeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "w32h32". -/// -/// Description of the "w32h32" tag state: 32 by 32 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW32h32; - -/// -/// Initializes union class with tag state of "w64h64". -/// -/// Description of the "w64h64" tag state: 64 by 64 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW64h64; - -/// -/// Initializes union class with tag state of "w128h128". -/// -/// Description of the "w128h128" tag state: 128 by 128 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW128h128; - -/// -/// Initializes union class with tag state of "w256h256". -/// -/// Description of the "w256h256" tag state: 256 by 256 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW256h256; - -/// -/// Initializes union class with tag state of "w480h320". -/// -/// Description of the "w480h320" tag state: 480 by 320 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW480h320; - -/// -/// Initializes union class with tag state of "w640h480". -/// -/// Description of the "w640h480" tag state: 640 by 480 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW640h480; - -/// -/// Initializes union class with tag state of "w960h640". -/// -/// Description of the "w960h640" tag state: 960 by 640 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW960h640; - -/// -/// Initializes union class with tag state of "w1024h768". -/// -/// Description of the "w1024h768" tag state: 1024 by 768 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW1024h768; - -/// -/// Initializes union class with tag state of "w2048h1536". -/// -/// Description of the "w2048h1536" tag state: 2048 by 1536 px. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithW2048h1536; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "w32h32". -/// -/// @return Whether the union's current tag state has value "w32h32". -/// -- (BOOL)isW32h32; - -/// -/// Retrieves whether the union's current tag state has value "w64h64". -/// -/// @return Whether the union's current tag state has value "w64h64". -/// -- (BOOL)isW64h64; - -/// -/// Retrieves whether the union's current tag state has value "w128h128". -/// -/// @return Whether the union's current tag state has value "w128h128". -/// -- (BOOL)isW128h128; - -/// -/// Retrieves whether the union's current tag state has value "w256h256". -/// -/// @return Whether the union's current tag state has value "w256h256". -/// -- (BOOL)isW256h256; - -/// -/// Retrieves whether the union's current tag state has value "w480h320". -/// -/// @return Whether the union's current tag state has value "w480h320". -/// -- (BOOL)isW480h320; - -/// -/// Retrieves whether the union's current tag state has value "w640h480". -/// -/// @return Whether the union's current tag state has value "w640h480". -/// -- (BOOL)isW640h480; - -/// -/// Retrieves whether the union's current tag state has value "w960h640". -/// -/// @return Whether the union's current tag state has value "w960h640". -/// -- (BOOL)isW960h640; - -/// -/// Retrieves whether the union's current tag state has value "w1024h768". -/// -/// @return Whether the union's current tag state has value "w1024h768". -/// -- (BOOL)isW1024h768; - -/// -/// Retrieves whether the union's current tag state has value "w2048h1536". -/// -/// @return Whether the union's current tag state has value "w2048h1536". -/// -- (BOOL)isW2048h1536; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailSize` union. -/// -@interface DBFILESThumbnailSizeSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailSize` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailSize` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailSize` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailSize *)instance; - -/// -/// Deserializes `DBFILESThumbnailSize` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailSize` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailSize` object. -/// -+ (DBFILESThumbnailSize *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailV2Arg.h deleted file mode 100644 index f8ff9a29..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailV2Arg.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESPathOrLink; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; -@class DBFILESThumbnailV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailV2Arg : NSObject - -#pragma mark - Instance fields - -/// Information specifying which file to preview. This could be a path to a -/// file, a shared link pointing to a file, or a shared link pointing to a -/// folder, with a relative path. -@property (nonatomic, readonly) DBFILESPathOrLink *resource; - -/// The format for the thumbnail image, jpeg (default) or png. For images that -/// are photos, jpeg should be preferred, while png is better for screenshots -/// and digital arts. -@property (nonatomic, readonly) DBFILESThumbnailFormat *format; - -/// The size for the thumbnail image. -@property (nonatomic, readonly) DBFILESThumbnailSize *size; - -/// How to resize and crop the image to achieve the desired size. -@property (nonatomic, readonly) DBFILESThumbnailMode *mode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param resource Information specifying which file to preview. This could be -/// a path to a file, a shared link pointing to a file, or a shared link -/// pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For -/// images that are photos, jpeg should be preferred, while png is better for -/// screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResource:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param resource Information specifying which file to preview. This could be -/// a path to a file, a shared link pointing to a file, or a shared link -/// pointing to a folder, with a relative path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResource:(DBFILESPathOrLink *)resource; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ThumbnailV2Arg` struct. -/// -@interface DBFILESThumbnailV2ArgSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailV2Arg` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailV2Arg *)instance; - -/// -/// Deserializes `DBFILESThumbnailV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Arg` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailV2Arg` object. -/// -+ (DBFILESThumbnailV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailV2Error.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailV2Error.h deleted file mode 100644 index 0546c997..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESThumbnailV2Error.h +++ /dev/null @@ -1,231 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBFILESThumbnailV2Error; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ThumbnailV2Error` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESThumbnailV2Error : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESThumbnailV2ErrorTag` enum type represents the possible tag -/// states with which the `DBFILESThumbnailV2Error` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESThumbnailV2ErrorTag) { - /// An error occurred when downloading metadata for the image. - DBFILESThumbnailV2ErrorPath, - - /// The file extension doesn't allow conversion to a thumbnail. - DBFILESThumbnailV2ErrorUnsupportedExtension, - - /// The image cannot be converted to a thumbnail. - DBFILESThumbnailV2ErrorUnsupportedImage, - - /// An error occurred during thumbnail conversion. - DBFILESThumbnailV2ErrorConversionError, - - /// Access to this shared link is forbidden. - DBFILESThumbnailV2ErrorAccessDenied, - - /// The shared link does not exist. - DBFILESThumbnailV2ErrorNotFound, - - /// (no description). - DBFILESThumbnailV2ErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESThumbnailV2ErrorTag tag; - -/// An error occurred when downloading metadata for the image. @note Ensure the -/// `isPath` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: An error occurred when downloading -/// metadata for the image. -/// -/// @param path An error occurred when downloading metadata for the image. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "unsupported_extension". -/// -/// Description of the "unsupported_extension" tag state: The file extension -/// doesn't allow conversion to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedExtension; - -/// -/// Initializes union class with tag state of "unsupported_image". -/// -/// Description of the "unsupported_image" tag state: The image cannot be -/// converted to a thumbnail. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedImage; - -/// -/// Initializes union class with tag state of "conversion_error". -/// -/// Description of the "conversion_error" tag state: An error occurred during -/// thumbnail conversion. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConversionError; - -/// -/// Initializes union class with tag state of "access_denied". -/// -/// Description of the "access_denied" tag state: Access to this shared link is -/// forbidden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessDenied; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The shared link does not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_extension". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_extension". -/// -- (BOOL)isUnsupportedExtension; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_image". -/// -/// @return Whether the union's current tag state has value "unsupported_image". -/// -- (BOOL)isUnsupportedImage; - -/// -/// Retrieves whether the union's current tag state has value -/// "conversion_error". -/// -/// @return Whether the union's current tag state has value "conversion_error". -/// -- (BOOL)isConversionError; - -/// -/// Retrieves whether the union's current tag state has value "access_denied". -/// -/// @return Whether the union's current tag state has value "access_denied". -/// -- (BOOL)isAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESThumbnailV2Error` union. -/// -@interface DBFILESThumbnailV2ErrorSerializer : NSObject - -/// -/// Serializes `DBFILESThumbnailV2Error` instances. -/// -/// @param instance An instance of the `DBFILESThumbnailV2Error` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Error` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESThumbnailV2Error *)instance; - -/// -/// Deserializes `DBFILESThumbnailV2Error` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESThumbnailV2Error` API object. -/// -/// @return An instantiation of the `DBFILESThumbnailV2Error` object. -/// -+ (DBFILESThumbnailV2Error *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUnlockFileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUnlockFileArg.h deleted file mode 100644 index a469d41c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUnlockFileArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUnlockFileArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnlockFileArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUnlockFileArg : NSObject - -#pragma mark - Instance fields - -/// Path in the user's Dropbox to a file. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnlockFileArg` struct. -/// -@interface DBFILESUnlockFileArgSerializer : NSObject - -/// -/// Serializes `DBFILESUnlockFileArg` instances. -/// -/// @param instance An instance of the `DBFILESUnlockFileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUnlockFileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUnlockFileArg *)instance; - -/// -/// Deserializes `DBFILESUnlockFileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUnlockFileArg` API object. -/// -/// @return An instantiation of the `DBFILESUnlockFileArg` object. -/// -+ (DBFILESUnlockFileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUnlockFileBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUnlockFileBatchArg.h deleted file mode 100644 index 655f85f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUnlockFileBatchArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUnlockFileArg; -@class DBFILESUnlockFileBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnlockFileBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUnlockFileBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of 'entries'. Each 'entry' contains a path of the file which will be -/// unlocked. Duplicate path arguments in the batch are considered only once. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file -/// which will be unlocked. Duplicate path arguments in the batch are considered -/// only once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnlockFileBatchArg` struct. -/// -@interface DBFILESUnlockFileBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESUnlockFileBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESUnlockFileBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUnlockFileBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUnlockFileBatchArg *)instance; - -/// -/// Deserializes `DBFILESUnlockFileBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUnlockFileBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESUnlockFileBatchArg` object. -/// -+ (DBFILESUnlockFileBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadArg.h deleted file mode 100644 index 7d4ff38a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadArg.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESCommitInfo.h" -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILESUploadArg; -@class DBFILESWriteMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadArg : DBFILESCommitInfo - -#pragma mark - Instance fields - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path in the user's Dropbox to save the file. -/// @param mode Selects what to do if the file already exists. -/// @param autorename If there's a conflict, as determined by mode, have the -/// Dropbox server try to autorename the file to avoid conflict. -/// @param clientModified The value to store as the clientModified timestamp. -/// Dropbox automatically records the time at which the file was written to the -/// Dropbox servers. It can also record an additional timestamp, provided by -/// Dropbox desktop clients, mobile clients, and API apps of when the file was -/// actually created or modified. -/// @param mute Normally, users are made aware of any file modifications in -/// their Dropbox account via notifications in the client software. If true, -/// this tells the clients that this modification shouldn't result in a user -/// notification. -/// @param propertyGroups List of custom properties to add to file. -/// @param strictConflict Be more strict about how each WriteMode detects -/// conflict. For example, always return a conflict error when mode = `update` -/// in `DBFILESWriteMode` and the given "rev" doesn't match the existing file's -/// "rev", even if the existing file has been deleted. This also forces a -/// conflict even when the target path refers to a file with identical contents. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path in the user's Dropbox to save the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadArg` struct. -/// -@interface DBFILESUploadArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadArg *)instance; - -/// -/// Deserializes `DBFILESUploadArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadArg` object. -/// -+ (DBFILESUploadArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadError.h deleted file mode 100644 index 38ed93fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadError.h +++ /dev/null @@ -1,206 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILESUploadError; -@class DBFILESUploadWriteFailed; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadErrorTag` enum type represents the possible tag states -/// with which the `DBFILESUploadError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadErrorTag) { - /// Unable to save the uploaded contents to a file. - DBFILESUploadErrorPath, - - /// The supplied property group is invalid. The file has uploaded without - /// property groups. - DBFILESUploadErrorPropertiesError, - - /// The request payload must be at most 150 MB. - DBFILESUploadErrorPayloadTooLarge, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadErrorContentHashMismatch, - - /// (no description). - DBFILESUploadErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadErrorTag tag; - -/// Unable to save the uploaded contents to a file. @note Ensure the `isPath` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESUploadWriteFailed *path; - -/// The supplied property group is invalid. The file has uploaded without -/// property groups. @note Ensure the `isPropertiesError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESInvalidPropertyGroupError *propertiesError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: Unable to save the uploaded contents to -/// a file. -/// -/// @param path Unable to save the uploaded contents to a file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESUploadWriteFailed *)path; - -/// -/// Initializes union class with tag state of "properties_error". -/// -/// Description of the "properties_error" tag state: The supplied property group -/// is invalid. The file has uploaded without property groups. -/// -/// @param propertiesError The supplied property group is invalid. The file has -/// uploaded without property groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertiesError:(DBFILEPROPERTIESInvalidPropertyGroupError *)propertiesError; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "properties_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertiesError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "properties_error". -/// -- (BOOL)isPropertiesError; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadError` union. -/// -@interface DBFILESUploadErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadError` instances. -/// -/// @param instance An instance of the `DBFILESUploadError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadError *)instance; - -/// -/// Deserializes `DBFILESUploadError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadError` API object. -/// -/// @return An instantiation of the `DBFILESUploadError` object. -/// -+ (DBFILESUploadError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionAppendArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionAppendArg.h deleted file mode 100644 index 9defd0af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionAppendArg.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionAppendArg; -@class DBFILESUploadSessionCursor; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionAppendArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionAppendArg : NSObject - -#pragma mark - Instance fields - -/// Contains the upload session ID and the offset. -@property (nonatomic, readonly) DBFILESUploadSessionCursor *cursor; - -/// If true, the current session will be closed, at which point you won't be -/// able to call `uploadSessionAppend` anymore with the current session. -@property (nonatomic, readonly) NSNumber *close; - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you -/// won't be able to call `uploadSessionAppend` anymore with the current -/// session. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param cursor Contains the upload session ID and the offset. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionAppendArg` struct. -/// -@interface DBFILESUploadSessionAppendArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionAppendArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionAppendArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionAppendArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionAppendArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionAppendArg` object. -/// -+ (DBFILESUploadSessionAppendArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionAppendError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionAppendError.h deleted file mode 100644 index 8c03022c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionAppendError.h +++ /dev/null @@ -1,317 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionAppendError; -@class DBFILESUploadSessionOffsetError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionAppendError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionAppendError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionAppendErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionAppendError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionAppendErrorTag) { - /// The upload session ID was not found or has expired. Upload sessions are - /// valid for 7 days. - DBFILESUploadSessionAppendErrorNotFound, - - /// The specified offset was incorrect. See the value for the correct - /// offset. This error may occur when a previous request was received and - /// processed successfully but the client did not receive the response, e.g. - /// due to a network error. - DBFILESUploadSessionAppendErrorIncorrectOffset, - - /// You are attempting to append data to an upload session that has already - /// been closed (i.e. committed). - DBFILESUploadSessionAppendErrorClosed, - - /// The session must be closed before calling upload_session/finish_batch. - DBFILESUploadSessionAppendErrorNotClosed, - - /// You can not append to the upload session because the size of a file - /// should not reach the max file size limit (i.e. 350GB). - DBFILESUploadSessionAppendErrorTooLarge, - - /// For concurrent upload sessions, offset needs to be multiple of 4194304 - /// bytes. - DBFILESUploadSessionAppendErrorConcurrentSessionInvalidOffset, - - /// For concurrent upload sessions, only chunks with size multiple of - /// 4194304 bytes can be uploaded. - DBFILESUploadSessionAppendErrorConcurrentSessionInvalidDataSize, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionAppendErrorPayloadTooLarge, - - /// (no description). - DBFILESUploadSessionAppendErrorOther, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadSessionAppendErrorContentHashMismatch, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionAppendErrorTag tag; - -/// The specified offset was incorrect. See the value for the correct offset. -/// This error may occur when a previous request was received and processed -/// successfully but the client did not receive the response, e.g. due to a -/// network error. @note Ensure the `isIncorrectOffset` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionOffsetError *incorrectOffset; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The upload session ID was not -/// found or has expired. Upload sessions are valid for 7 days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "incorrect_offset". -/// -/// Description of the "incorrect_offset" tag state: The specified offset was -/// incorrect. See the value for the correct offset. This error may occur when a -/// previous request was received and processed successfully but the client did -/// not receive the response, e.g. due to a network error. -/// -/// @param incorrectOffset The specified offset was incorrect. See the value for -/// the correct offset. This error may occur when a previous request was -/// received and processed successfully but the client did not receive the -/// response, e.g. due to a network error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncorrectOffset:(DBFILESUploadSessionOffsetError *)incorrectOffset; - -/// -/// Initializes union class with tag state of "closed". -/// -/// Description of the "closed" tag state: You are attempting to append data to -/// an upload session that has already been closed (i.e. committed). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClosed; - -/// -/// Initializes union class with tag state of "not_closed". -/// -/// Description of the "not_closed" tag state: The session must be closed before -/// calling upload_session/finish_batch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotClosed; - -/// -/// Initializes union class with tag state of "too_large". -/// -/// Description of the "too_large" tag state: You can not append to the upload -/// session because the size of a file should not reach the max file size limit -/// (i.e. 350GB). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooLarge; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_offset". -/// -/// Description of the "concurrent_session_invalid_offset" tag state: For -/// concurrent upload sessions, offset needs to be multiple of 4194304 bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidOffset; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_data_size". -/// -/// Description of the "concurrent_session_invalid_data_size" tag state: For -/// concurrent upload sessions, only chunks with size multiple of 4194304 bytes -/// can be uploaded. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidDataSize; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "incorrect_offset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `incorrectOffset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "incorrect_offset". -/// -- (BOOL)isIncorrectOffset; - -/// -/// Retrieves whether the union's current tag state has value "closed". -/// -/// @return Whether the union's current tag state has value "closed". -/// -- (BOOL)isClosed; - -/// -/// Retrieves whether the union's current tag state has value "not_closed". -/// -/// @return Whether the union's current tag state has value "not_closed". -/// -- (BOOL)isNotClosed; - -/// -/// Retrieves whether the union's current tag state has value "too_large". -/// -/// @return Whether the union's current tag state has value "too_large". -/// -- (BOOL)isTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -- (BOOL)isConcurrentSessionInvalidOffset; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -- (BOOL)isConcurrentSessionInvalidDataSize; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionAppendError` union. -/// -@interface DBFILESUploadSessionAppendErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionAppendError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionAppendError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionAppendError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionAppendError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionAppendError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionAppendError` object. -/// -+ (DBFILESUploadSessionAppendError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionCursor.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionCursor.h deleted file mode 100644 index 94a9bdc0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionCursor.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionCursor; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionCursor` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionCursor : NSObject - -#pragma mark - Instance fields - -/// The upload session ID (returned by `uploadSessionStart`). -@property (nonatomic, readonly, copy) NSString *sessionId; - -/// Offset in bytes at which data should be appended. We use this to make sure -/// upload data isn't lost or duplicated in the event of a network error. -@property (nonatomic, readonly) NSNumber *offset; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this -/// to make sure upload data isn't lost or duplicated in the event of a network -/// error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId offset:(NSNumber *)offset; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionCursor` struct. -/// -@interface DBFILESUploadSessionCursorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionCursor` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionCursor` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionCursor` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionCursor *)instance; - -/// -/// Deserializes `DBFILESUploadSessionCursor` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionCursor` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionCursor` object. -/// -+ (DBFILESUploadSessionCursor *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishArg.h deleted file mode 100644 index 8dc96712..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishArg.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESCommitInfo; -@class DBFILESUploadSessionCursor; -@class DBFILESUploadSessionFinishArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishArg : NSObject - -#pragma mark - Instance fields - -/// Contains the upload session ID and the offset. -@property (nonatomic, readonly) DBFILESUploadSessionCursor *cursor; - -/// Contains the path and other optional modifiers for the commit. -@property (nonatomic, readonly) DBFILESCommitInfo *commit; - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(DBFILESUploadSessionCursor *)cursor commit:(DBFILESCommitInfo *)commit; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionFinishArg` struct. -/// -@interface DBFILESUploadSessionFinishArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishArg` object. -/// -+ (DBFILESUploadSessionFinishArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchArg.h deleted file mode 100644 index a6d3853b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchArg : NSObject - -#pragma mark - Instance fields - -/// Commit information for each file in the batch. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Commit information for each file in the batch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionFinishBatchArg` struct. -/// -@interface DBFILESUploadSessionFinishBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchArg` object. -/// -+ (DBFILESUploadSessionFinishBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchJobStatus.h deleted file mode 100644 index 1cd2c39e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchJobStatus.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishBatchJobStatusTag` enum type represents the -/// possible tag states with which the -/// `DBFILESUploadSessionFinishBatchJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishBatchJobStatusTag) { - /// The asynchronous job is still in progress. - DBFILESUploadSessionFinishBatchJobStatusInProgress, - - /// The `uploadSessionFinishBatch` has finished. - DBFILESUploadSessionFinishBatchJobStatusComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchJobStatusTag tag; - -/// The `uploadSessionFinishBatch` has finished. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The `uploadSessionFinishBatch` has -/// finished. -/// -/// @param complete The `uploadSessionFinishBatch` has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESUploadSessionFinishBatchResult *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishBatchJobStatus` -/// union. -/// -@interface DBFILESUploadSessionFinishBatchJobStatusSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchJobStatus` instances. -/// -/// @param instance An instance of the -/// `DBFILESUploadSessionFinishBatchJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchJobStatus *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchJobStatus` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchJobStatus` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchLaunch.h deleted file mode 100644 index c6cae961..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchLaunch.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishBatchLaunch; -@class DBFILESUploadSessionFinishBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchLaunch` union. -/// -/// Result returned by `uploadSessionFinishBatch` that may either launch an -/// asynchronous job or complete synchronously. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishBatchLaunchTag` enum type represents the -/// possible tag states with which the `DBFILESUploadSessionFinishBatchLaunch` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishBatchLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBFILESUploadSessionFinishBatchLaunchAsyncJobId, - - /// (no description). - DBFILESUploadSessionFinishBatchLaunchComplete, - - /// (no description). - DBFILESUploadSessionFinishBatchLaunchOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchResult *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBFILESUploadSessionFinishBatchResult *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishBatchLaunch` -/// union. -/// -@interface DBFILESUploadSessionFinishBatchLaunchSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchLaunch` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishBatchLaunch` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchLaunch *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchLaunch` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchLaunch` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchResult.h deleted file mode 100644 index ab585ec8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionFinishBatchResult; -@class DBFILESUploadSessionFinishBatchResultEntry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchResult : NSObject - -#pragma mark - Instance fields - -/// Each entry in `entries` in `DBFILESUploadSessionFinishBatchArg` will appear -/// at the same position inside `entries` in -/// `DBFILESUploadSessionFinishBatchResult`. -@property (nonatomic, readonly) NSArray *entries; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Each entry in `entries` in -/// `DBFILESUploadSessionFinishBatchArg` will appear at the same position inside -/// `entries` in `DBFILESUploadSessionFinishBatchResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionFinishBatchResult` struct. -/// -@interface DBFILESUploadSessionFinishBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchResult *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchResult` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchResultEntry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchResultEntry.h deleted file mode 100644 index a4d26673..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishBatchResultEntry.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESFileMetadata; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBFILESUploadSessionFinishError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishBatchResultEntry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishBatchResultEntry : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishBatchResultEntryTag` enum type represents the -/// possible tag states with which the -/// `DBFILESUploadSessionFinishBatchResultEntry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishBatchResultEntryTag) { - /// (no description). - DBFILESUploadSessionFinishBatchResultEntrySuccess, - - /// (no description). - DBFILESUploadSessionFinishBatchResultEntryFailure, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishBatchResultEntryTag tag; - -/// (no description). @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESFileMetadata *success; - -/// (no description). @note Ensure the `isFailure` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionFinishError *failure; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param success (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBFILESFileMetadata *)success; - -/// -/// Initializes union class with tag state of "failure". -/// -/// @param failure (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailure:(DBFILESUploadSessionFinishError *)failure; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "failure". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failure` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failure". -/// -- (BOOL)isFailure; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishBatchResultEntry` -/// union. -/// -@interface DBFILESUploadSessionFinishBatchResultEntrySerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishBatchResultEntry` instances. -/// -/// @param instance An instance of the -/// `DBFILESUploadSessionFinishBatchResultEntry` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResultEntry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishBatchResultEntry *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishBatchResultEntry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishBatchResultEntry` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishBatchResultEntry` -/// object. -/// -+ (DBFILESUploadSessionFinishBatchResultEntry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishError.h deleted file mode 100644 index 03edc56d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionFinishError.h +++ /dev/null @@ -1,362 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILESUploadSessionFinishError; -@class DBFILESUploadSessionLookupError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionFinishError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionFinishError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionFinishErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionFinishError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionFinishErrorTag) { - /// The session arguments are incorrect; the value explains the reason. - DBFILESUploadSessionFinishErrorLookupFailed, - - /// Unable to save the uploaded contents to a file. Data has already been - /// appended to the upload session. Please retry with empty data body and - /// updated offset. - DBFILESUploadSessionFinishErrorPath, - - /// The supplied property group is invalid. The file has uploaded without - /// property groups. - DBFILESUploadSessionFinishErrorPropertiesError, - - /// The batch request commits files into too many different shared folders. - /// Please limit your batch request to files contained in a single shared - /// folder. - DBFILESUploadSessionFinishErrorTooManySharedFolderTargets, - - /// There are too many write operations happening in the user's Dropbox. You - /// should retry uploading this file. - DBFILESUploadSessionFinishErrorTooManyWriteOperations, - - /// Uploading data not allowed when finishing concurrent upload session. - DBFILESUploadSessionFinishErrorConcurrentSessionDataNotAllowed, - - /// Concurrent upload sessions need to be closed before finishing. - DBFILESUploadSessionFinishErrorConcurrentSessionNotClosed, - - /// Not all pieces of data were uploaded before trying to finish the - /// session. - DBFILESUploadSessionFinishErrorConcurrentSessionMissingData, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionFinishErrorPayloadTooLarge, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadSessionFinishErrorContentHashMismatch, - - /// (no description). - DBFILESUploadSessionFinishErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionFinishErrorTag tag; - -/// The session arguments are incorrect; the value explains the reason. @note -/// Ensure the `isLookupFailed` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionLookupError *lookupFailed; - -/// Unable to save the uploaded contents to a file. Data has already been -/// appended to the upload session. Please retry with empty data body and -/// updated offset. @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteError *path; - -/// The supplied property group is invalid. The file has uploaded without -/// property groups. @note Ensure the `isPropertiesError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILEPROPERTIESInvalidPropertyGroupError *propertiesError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "lookup_failed". -/// -/// Description of the "lookup_failed" tag state: The session arguments are -/// incorrect; the value explains the reason. -/// -/// @param lookupFailed The session arguments are incorrect; the value explains -/// the reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLookupFailed:(DBFILESUploadSessionLookupError *)lookupFailed; - -/// -/// Initializes union class with tag state of "path". -/// -/// Description of the "path" tag state: Unable to save the uploaded contents to -/// a file. Data has already been appended to the upload session. Please retry -/// with empty data body and updated offset. -/// -/// @param path Unable to save the uploaded contents to a file. Data has already -/// been appended to the upload session. Please retry with empty data body and -/// updated offset. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESWriteError *)path; - -/// -/// Initializes union class with tag state of "properties_error". -/// -/// Description of the "properties_error" tag state: The supplied property group -/// is invalid. The file has uploaded without property groups. -/// -/// @param propertiesError The supplied property group is invalid. The file has -/// uploaded without property groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPropertiesError:(DBFILEPROPERTIESInvalidPropertyGroupError *)propertiesError; - -/// -/// Initializes union class with tag state of "too_many_shared_folder_targets". -/// -/// Description of the "too_many_shared_folder_targets" tag state: The batch -/// request commits files into too many different shared folders. Please limit -/// your batch request to files contained in a single shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManySharedFolderTargets; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations happening in the user's Dropbox. You should retry uploading -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_data_not_allowed". -/// -/// Description of the "concurrent_session_data_not_allowed" tag state: -/// Uploading data not allowed when finishing concurrent upload session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionDataNotAllowed; - -/// -/// Initializes union class with tag state of "concurrent_session_not_closed". -/// -/// Description of the "concurrent_session_not_closed" tag state: Concurrent -/// upload sessions need to be closed before finishing. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionNotClosed; - -/// -/// Initializes union class with tag state of "concurrent_session_missing_data". -/// -/// Description of the "concurrent_session_missing_data" tag state: Not all -/// pieces of data were uploaded before trying to finish the session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionMissingData; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "lookup_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `lookupFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "lookup_failed". -/// -- (BOOL)isLookupFailed; - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "properties_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `propertiesError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "properties_error". -/// -- (BOOL)isPropertiesError; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_shared_folder_targets". -/// -/// @return Whether the union's current tag state has value -/// "too_many_shared_folder_targets". -/// -- (BOOL)isTooManySharedFolderTargets; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -- (BOOL)isConcurrentSessionDataNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_not_closed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_not_closed". -/// -- (BOOL)isConcurrentSessionNotClosed; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_missing_data". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_missing_data". -/// -- (BOOL)isConcurrentSessionMissingData; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionFinishError` union. -/// -@interface DBFILESUploadSessionFinishErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionFinishError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionFinishError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionFinishError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionFinishError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionFinishError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionFinishError` object. -/// -+ (DBFILESUploadSessionFinishError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionLookupError.h deleted file mode 100644 index 6ad35d65..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionLookupError.h +++ /dev/null @@ -1,294 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionLookupError; -@class DBFILESUploadSessionOffsetError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionLookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionLookupErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionLookupErrorTag) { - /// The upload session ID was not found or has expired. Upload sessions are - /// valid for 7 days. - DBFILESUploadSessionLookupErrorNotFound, - - /// The specified offset was incorrect. See the value for the correct - /// offset. This error may occur when a previous request was received and - /// processed successfully but the client did not receive the response, e.g. - /// due to a network error. - DBFILESUploadSessionLookupErrorIncorrectOffset, - - /// You are attempting to append data to an upload session that has already - /// been closed (i.e. committed). - DBFILESUploadSessionLookupErrorClosed, - - /// The session must be closed before calling upload_session/finish_batch. - DBFILESUploadSessionLookupErrorNotClosed, - - /// You can not append to the upload session because the size of a file - /// should not reach the max file size limit (i.e. 350GB). - DBFILESUploadSessionLookupErrorTooLarge, - - /// For concurrent upload sessions, offset needs to be multiple of 4194304 - /// bytes. - DBFILESUploadSessionLookupErrorConcurrentSessionInvalidOffset, - - /// For concurrent upload sessions, only chunks with size multiple of - /// 4194304 bytes can be uploaded. - DBFILESUploadSessionLookupErrorConcurrentSessionInvalidDataSize, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionLookupErrorPayloadTooLarge, - - /// (no description). - DBFILESUploadSessionLookupErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionLookupErrorTag tag; - -/// The specified offset was incorrect. See the value for the correct offset. -/// This error may occur when a previous request was received and processed -/// successfully but the client did not receive the response, e.g. due to a -/// network error. @note Ensure the `isIncorrectOffset` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESUploadSessionOffsetError *incorrectOffset; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The upload session ID was not -/// found or has expired. Upload sessions are valid for 7 days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound; - -/// -/// Initializes union class with tag state of "incorrect_offset". -/// -/// Description of the "incorrect_offset" tag state: The specified offset was -/// incorrect. See the value for the correct offset. This error may occur when a -/// previous request was received and processed successfully but the client did -/// not receive the response, e.g. due to a network error. -/// -/// @param incorrectOffset The specified offset was incorrect. See the value for -/// the correct offset. This error may occur when a previous request was -/// received and processed successfully but the client did not receive the -/// response, e.g. due to a network error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncorrectOffset:(DBFILESUploadSessionOffsetError *)incorrectOffset; - -/// -/// Initializes union class with tag state of "closed". -/// -/// Description of the "closed" tag state: You are attempting to append data to -/// an upload session that has already been closed (i.e. committed). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClosed; - -/// -/// Initializes union class with tag state of "not_closed". -/// -/// Description of the "not_closed" tag state: The session must be closed before -/// calling upload_session/finish_batch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotClosed; - -/// -/// Initializes union class with tag state of "too_large". -/// -/// Description of the "too_large" tag state: You can not append to the upload -/// session because the size of a file should not reach the max file size limit -/// (i.e. 350GB). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooLarge; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_offset". -/// -/// Description of the "concurrent_session_invalid_offset" tag state: For -/// concurrent upload sessions, offset needs to be multiple of 4194304 bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidOffset; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_invalid_data_size". -/// -/// Description of the "concurrent_session_invalid_data_size" tag state: For -/// concurrent upload sessions, only chunks with size multiple of 4194304 bytes -/// can be uploaded. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionInvalidDataSize; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "incorrect_offset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `incorrectOffset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "incorrect_offset". -/// -- (BOOL)isIncorrectOffset; - -/// -/// Retrieves whether the union's current tag state has value "closed". -/// -/// @return Whether the union's current tag state has value "closed". -/// -- (BOOL)isClosed; - -/// -/// Retrieves whether the union's current tag state has value "not_closed". -/// -/// @return Whether the union's current tag state has value "not_closed". -/// -- (BOOL)isNotClosed; - -/// -/// Retrieves whether the union's current tag state has value "too_large". -/// -/// @return Whether the union's current tag state has value "too_large". -/// -- (BOOL)isTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_offset". -/// -- (BOOL)isConcurrentSessionInvalidOffset; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_invalid_data_size". -/// -- (BOOL)isConcurrentSessionInvalidDataSize; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionLookupError` union. -/// -@interface DBFILESUploadSessionLookupErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionLookupError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionLookupError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionLookupError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionLookupError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionLookupError` object. -/// -+ (DBFILESUploadSessionLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionOffsetError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionOffsetError.h deleted file mode 100644 index 610842c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionOffsetError.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionOffsetError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionOffsetError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionOffsetError : NSObject - -#pragma mark - Instance fields - -/// The offset up to which data has been collected. -@property (nonatomic, readonly) NSNumber *correctOffset; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param correctOffset The offset up to which data has been collected. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCorrectOffset:(NSNumber *)correctOffset; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionOffsetError` struct. -/// -@interface DBFILESUploadSessionOffsetErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionOffsetError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionOffsetError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionOffsetError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionOffsetError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionOffsetError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionOffsetError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionOffsetError` object. -/// -+ (DBFILESUploadSessionOffsetError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartArg.h deleted file mode 100644 index c859d2c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartArg; -@class DBFILESUploadSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartArg : NSObject - -#pragma mark - Instance fields - -/// If true, the current session will be closed, at which point you won't be -/// able to call `uploadSessionAppend` anymore with the current session. -@property (nonatomic, readonly) NSNumber *close; - -/// Type of upload session you want to start. If not specified, default is -/// `sequential` in `DBFILESUploadSessionType`. -@property (nonatomic, readonly, nullable) DBFILESUploadSessionType *sessionType; - -/// A hash of the file content uploaded in this call. If provided and the -/// uploaded content does not match this hash, an error will be returned. For -/// more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy, nullable) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param close If true, the current session will be closed, at which point you -/// won't be able to call `uploadSessionAppend` anymore with the current -/// session. -/// @param sessionType Type of upload session you want to start. If not -/// specified, default is `sequential` in `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If -/// provided and the uploaded content does not match this hash, an error will be -/// returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClose:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartArg` struct. -/// -@interface DBFILESUploadSessionStartArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartArg` object. -/// -+ (DBFILESUploadSessionStartArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartBatchArg.h deleted file mode 100644 index 6568ea3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartBatchArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartBatchArg; -@class DBFILESUploadSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartBatchArg : NSObject - -#pragma mark - Instance fields - -/// Type of upload session you want to start. If not specified, default is -/// `sequential` in `DBFILESUploadSessionType`. -@property (nonatomic, readonly, nullable) DBFILESUploadSessionType *sessionType; - -/// The number of upload sessions to start. -@property (nonatomic, readonly) NSNumber *numSessions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param numSessions The number of upload sessions to start. -/// @param sessionType Type of upload session you want to start. If not -/// specified, default is `sequential` in `DBFILESUploadSessionType`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumSessions:(NSNumber *)numSessions - sessionType:(nullable DBFILESUploadSessionType *)sessionType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param numSessions The number of upload sessions to start. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumSessions:(NSNumber *)numSessions; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartBatchArg` struct. -/// -@interface DBFILESUploadSessionStartBatchArgSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartBatchArg` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartBatchArg *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchArg` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartBatchArg` object. -/// -+ (DBFILESUploadSessionStartBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartBatchResult.h deleted file mode 100644 index 455c2d4b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartBatchResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartBatchResult : NSObject - -#pragma mark - Instance fields - -/// A List of unique identifiers for the upload session. Pass each session_id to -/// `uploadSessionAppend` and `uploadSessionFinish`. -@property (nonatomic, readonly) NSArray *sessionIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionIds A List of unique identifiers for the upload session. Pass -/// each session_id to `uploadSessionAppend` and `uploadSessionFinish`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionIds:(NSArray *)sessionIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartBatchResult` struct. -/// -@interface DBFILESUploadSessionStartBatchResultSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartBatchResult` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartBatchResult *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartBatchResult` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartBatchResult` -/// object. -/// -+ (DBFILESUploadSessionStartBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartError.h deleted file mode 100644 index ba3e5bb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartError.h +++ /dev/null @@ -1,188 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionStartErrorTag` enum type represents the possible -/// tag states with which the `DBFILESUploadSessionStartError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionStartErrorTag) { - /// Uploading data not allowed when starting concurrent upload session. - DBFILESUploadSessionStartErrorConcurrentSessionDataNotAllowed, - - /// Can not start a closed concurrent upload session. - DBFILESUploadSessionStartErrorConcurrentSessionCloseNotAllowed, - - /// The request payload must be at most 150 MB. - DBFILESUploadSessionStartErrorPayloadTooLarge, - - /// The content received by the Dropbox server in this call does not match - /// the provided content hash. - DBFILESUploadSessionStartErrorContentHashMismatch, - - /// (no description). - DBFILESUploadSessionStartErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionStartErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "concurrent_session_data_not_allowed". -/// -/// Description of the "concurrent_session_data_not_allowed" tag state: -/// Uploading data not allowed when starting concurrent upload session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionDataNotAllowed; - -/// -/// Initializes union class with tag state of -/// "concurrent_session_close_not_allowed". -/// -/// Description of the "concurrent_session_close_not_allowed" tag state: Can not -/// start a closed concurrent upload session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrentSessionCloseNotAllowed; - -/// -/// Initializes union class with tag state of "payload_too_large". -/// -/// Description of the "payload_too_large" tag state: The request payload must -/// be at most 150 MB. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPayloadTooLarge; - -/// -/// Initializes union class with tag state of "content_hash_mismatch". -/// -/// Description of the "content_hash_mismatch" tag state: The content received -/// by the Dropbox server in this call does not match the provided content hash. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentHashMismatch; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_data_not_allowed". -/// -- (BOOL)isConcurrentSessionDataNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "concurrent_session_close_not_allowed". -/// -/// @return Whether the union's current tag state has value -/// "concurrent_session_close_not_allowed". -/// -- (BOOL)isConcurrentSessionCloseNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "payload_too_large". -/// -/// @return Whether the union's current tag state has value "payload_too_large". -/// -- (BOOL)isPayloadTooLarge; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_hash_mismatch". -/// -/// @return Whether the union's current tag state has value -/// "content_hash_mismatch". -/// -- (BOOL)isContentHashMismatch; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionStartError` union. -/// -@interface DBFILESUploadSessionStartErrorSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartError` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartError *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartError` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartError` object. -/// -+ (DBFILESUploadSessionStartError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartResult.h deleted file mode 100644 index f3c6a944..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionStartResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionStartResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionStartResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionStartResult : NSObject - -#pragma mark - Instance fields - -/// A unique identifier for the upload session. Pass this to -/// `uploadSessionAppend` and `uploadSessionFinish`. -@property (nonatomic, readonly, copy) NSString *sessionId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId A unique identifier for the upload session. Pass this to -/// `uploadSessionAppend` and `uploadSessionFinish`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadSessionStartResult` struct. -/// -@interface DBFILESUploadSessionStartResultSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionStartResult` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionStartResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionStartResult *)instance; - -/// -/// Deserializes `DBFILESUploadSessionStartResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionStartResult` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionStartResult` object. -/// -+ (DBFILESUploadSessionStartResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionType.h deleted file mode 100644 index 435d989d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadSessionType.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadSessionType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadSessionType : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESUploadSessionTypeTag` enum type represents the possible tag -/// states with which the `DBFILESUploadSessionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESUploadSessionTypeTag) { - /// Pieces of data are uploaded sequentially one after another. This is the - /// default behavior. - DBFILESUploadSessionTypeSequential, - - /// Pieces of data can be uploaded in concurrent RPCs in any order. - DBFILESUploadSessionTypeConcurrent, - - /// (no description). - DBFILESUploadSessionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESUploadSessionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "sequential". -/// -/// Description of the "sequential" tag state: Pieces of data are uploaded -/// sequentially one after another. This is the default behavior. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSequential; - -/// -/// Initializes union class with tag state of "concurrent". -/// -/// Description of the "concurrent" tag state: Pieces of data can be uploaded in -/// concurrent RPCs in any order. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConcurrent; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "sequential". -/// -/// @return Whether the union's current tag state has value "sequential". -/// -- (BOOL)isSequential; - -/// -/// Retrieves whether the union's current tag state has value "concurrent". -/// -/// @return Whether the union's current tag state has value "concurrent". -/// -- (BOOL)isConcurrent; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESUploadSessionType` union. -/// -@interface DBFILESUploadSessionTypeSerializer : NSObject - -/// -/// Serializes `DBFILESUploadSessionType` instances. -/// -/// @param instance An instance of the `DBFILESUploadSessionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadSessionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadSessionType *)instance; - -/// -/// Deserializes `DBFILESUploadSessionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadSessionType` API object. -/// -/// @return An instantiation of the `DBFILESUploadSessionType` object. -/// -+ (DBFILESUploadSessionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadWriteFailed.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadWriteFailed.h deleted file mode 100644 index 0b6f4ae7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUploadWriteFailed.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUploadWriteFailed; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadWriteFailed` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUploadWriteFailed : NSObject - -#pragma mark - Instance fields - -/// The reason why the file couldn't be saved. -@property (nonatomic, readonly) DBFILESWriteError *reason; - -/// The upload session ID; data has already been uploaded to the corresponding -/// upload session and this ID may be used to retry the commit with -/// `uploadSessionFinish`. -@property (nonatomic, readonly, copy) NSString *uploadSessionId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param reason The reason why the file couldn't be saved. -/// @param uploadSessionId The upload session ID; data has already been uploaded -/// to the corresponding upload session and this ID may be used to retry the -/// commit with `uploadSessionFinish`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReason:(DBFILESWriteError *)reason uploadSessionId:(NSString *)uploadSessionId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UploadWriteFailed` struct. -/// -@interface DBFILESUploadWriteFailedSerializer : NSObject - -/// -/// Serializes `DBFILESUploadWriteFailed` instances. -/// -/// @param instance An instance of the `DBFILESUploadWriteFailed` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUploadWriteFailed` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUploadWriteFailed *)instance; - -/// -/// Deserializes `DBFILESUploadWriteFailed` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUploadWriteFailed` API object. -/// -/// @return An instantiation of the `DBFILESUploadWriteFailed` object. -/// -+ (DBFILESUploadWriteFailed *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUserAuthRoutes.h deleted file mode 100644 index a02adeb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUserAuthRoutes.h +++ /dev/null @@ -1,3168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCPollError; -@class DBFILEPROPERTIESAddPropertiesError; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESInvalidPropertyGroupError; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESLookUpPropertiesError; -@class DBFILEPROPERTIESLookupError; -@class DBFILEPROPERTIESPropertyField; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyGroup; -@class DBFILEPROPERTIESPropertyGroupUpdate; -@class DBFILEPROPERTIESRemovePropertiesError; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESTemplateFilterBase; -@class DBFILEPROPERTIESUpdatePropertiesError; -@class DBFILESAddTagError; -@class DBFILESAlphaGetMetadataError; -@class DBFILESBaseTagError; -@class DBFILESCommitInfo; -@class DBFILESCreateFolderBatchError; -@class DBFILESCreateFolderBatchJobStatus; -@class DBFILESCreateFolderBatchLaunch; -@class DBFILESCreateFolderBatchResult; -@class DBFILESCreateFolderError; -@class DBFILESCreateFolderResult; -@class DBFILESDeleteArg; -@class DBFILESDeleteBatchError; -@class DBFILESDeleteBatchJobStatus; -@class DBFILESDeleteBatchLaunch; -@class DBFILESDeleteBatchResult; -@class DBFILESDeleteError; -@class DBFILESDeleteResult; -@class DBFILESDownloadError; -@class DBFILESDownloadZipError; -@class DBFILESDownloadZipResult; -@class DBFILESExportError; -@class DBFILESExportInfo; -@class DBFILESExportMetadata; -@class DBFILESExportResult; -@class DBFILESFileCategory; -@class DBFILESFileLockMetadata; -@class DBFILESFileMetadata; -@class DBFILESFileSharingInfo; -@class DBFILESFileStatus; -@class DBFILESFolderMetadata; -@class DBFILESFolderSharingInfo; -@class DBFILESGetCopyReferenceError; -@class DBFILESGetCopyReferenceResult; -@class DBFILESGetMetadataError; -@class DBFILESGetTagsResult; -@class DBFILESGetTemporaryLinkError; -@class DBFILESGetTemporaryLinkResult; -@class DBFILESGetTemporaryUploadLinkResult; -@class DBFILESGetThumbnailBatchError; -@class DBFILESGetThumbnailBatchResult; -@class DBFILESGetThumbnailBatchResultEntry; -@class DBFILESImportFormat; -@class DBFILESListFolderContinueError; -@class DBFILESListFolderError; -@class DBFILESListFolderGetLatestCursorResult; -@class DBFILESListFolderLongpollError; -@class DBFILESListFolderLongpollResult; -@class DBFILESListFolderResult; -@class DBFILESListRevisionsError; -@class DBFILESListRevisionsMode; -@class DBFILESListRevisionsResult; -@class DBFILESLockConflictError; -@class DBFILESLockFileArg; -@class DBFILESLockFileBatchResult; -@class DBFILESLockFileError; -@class DBFILESLockFileResultEntry; -@class DBFILESLookupError; -@class DBFILESMediaInfo; -@class DBFILESMetadata; -@class DBFILESMinimalFileLinkMetadata; -@class DBFILESMoveIntoFamilyError; -@class DBFILESMoveIntoVaultError; -@class DBFILESPaperCreateError; -@class DBFILESPaperCreateResult; -@class DBFILESPaperDocUpdatePolicy; -@class DBFILESPaperUpdateError; -@class DBFILESPaperUpdateResult; -@class DBFILESPathOrLink; -@class DBFILESPathToTags; -@class DBFILESPreviewError; -@class DBFILESPreviewResult; -@class DBFILESRelocationBatchError; -@class DBFILESRelocationBatchJobStatus; -@class DBFILESRelocationBatchLaunch; -@class DBFILESRelocationBatchResult; -@class DBFILESRelocationBatchV2JobStatus; -@class DBFILESRelocationBatchV2Launch; -@class DBFILESRelocationBatchV2Result; -@class DBFILESRelocationError; -@class DBFILESRelocationPath; -@class DBFILESRelocationResult; -@class DBFILESRemoveTagError; -@class DBFILESRestoreError; -@class DBFILESSaveCopyReferenceError; -@class DBFILESSaveCopyReferenceResult; -@class DBFILESSaveUrlError; -@class DBFILESSaveUrlJobStatus; -@class DBFILESSaveUrlResult; -@class DBFILESSearchError; -@class DBFILESSearchMatch; -@class DBFILESSearchMatchFieldOptions; -@class DBFILESSearchMatchV2; -@class DBFILESSearchMode; -@class DBFILESSearchOptions; -@class DBFILESSearchOrderBy; -@class DBFILESSearchResult; -@class DBFILESSearchV2Result; -@class DBFILESSharedLink; -@class DBFILESSharedLinkFileInfo; -@class DBFILESSymlinkInfo; -@class DBFILESThumbnailArg; -@class DBFILESThumbnailError; -@class DBFILESThumbnailFormat; -@class DBFILESThumbnailMode; -@class DBFILESThumbnailSize; -@class DBFILESThumbnailV2Error; -@class DBFILESUnlockFileArg; -@class DBFILESUploadError; -@class DBFILESUploadSessionAppendError; -@class DBFILESUploadSessionCursor; -@class DBFILESUploadSessionFinishArg; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchLaunch; -@class DBFILESUploadSessionFinishBatchResult; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBFILESUploadSessionFinishError; -@class DBFILESUploadSessionLookupError; -@class DBFILESUploadSessionOffsetError; -@class DBFILESUploadSessionStartBatchResult; -@class DBFILESUploadSessionStartError; -@class DBFILESUploadSessionStartResult; -@class DBFILESUploadSessionType; -@class DBFILESUploadWriteFailed; -@class DBFILESWriteError; -@class DBFILESWriteMode; -@class DBNilObject; - -@protocol DBTransportClient; - -/// -/// Routes for the `Files` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBFILESUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBFILESUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// DEPRECATED: Returns the metadata for a file or folder. This is an alpha endpoint compatible with the properties API. -/// Note: Metadata for the root folder is unsupported. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESAlphaGetMetadataError` object on failure. -/// -- (DBRpcTask *)alphaGetMetadata:(NSString *)path - __deprecated_msg("alphaGetMetadata is deprecated. Use getMetadata."); - -/// -/// DEPRECATED: Returns the metadata for a file or folder. This is an alpha endpoint compatible with the properties API. -/// Note: Metadata for the root folder is unsupported. -/// -/// @param includePropertyTemplates If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set for files with custom properties. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESAlphaGetMetadataError` object on failure. -/// -- (DBRpcTask *) - alphaGetMetadata:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includePropertyTemplates:(nullable NSArray *)includePropertyTemplates - __deprecated_msg("alphaGetMetadata is deprecated. Use getMetadata."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)alphaUploadUrl:(NSString *)path - inputUrl:(NSString *)inputUrl - __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - alphaUploadUrl:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)alphaUploadData:(NSString *)path - inputData:(NSData *)inputData - __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - alphaUploadData:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)alphaUploadStream:(NSString *)path - inputStream:(NSInputStream *)inputStream - __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Create a new file with the contents provided in the request. Note that the behavior of this alpha -/// endpoint is unstable and subject to change. Do not use this to upload a file larger than 150 MB. Instead, create an -/// upload session with `uploadSessionStart`. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - alphaUploadStream:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream __deprecated_msg("alphaUpload is deprecated. Use upload."); - -/// -/// DEPRECATED: Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be copied. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopy:(NSString *)fromPath - toPath:(NSString *)toPath - __deprecated_msg("dCopy is deprecated. Use dCopy."); - -/// -/// DEPRECATED: Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be copied. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopy:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("dCopy is deprecated. Use dCopy."); - -/// -/// Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be copied. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopyV2:(NSString *)fromPath - toPath:(NSString *)toPath; - -/// -/// Copy a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be copied. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)dCopyV2:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// DEPRECATED: Copy multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async copy job in background. Please use `dCopyBatchCheck` to check the job -/// status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatch:(NSArray *)entries - __deprecated_msg("dCopyBatch is deprecated. Use dCopyBatch."); - -/// -/// DEPRECATED: Copy multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async copy job in background. Please use `dCopyBatchCheck` to check the job -/// status. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatch:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("dCopyBatch is deprecated. Use dCopyBatch."); - -/// -/// Copy multiple files or folders to different locations at once in the user's Dropbox. This route will replace -/// `dCopyBatch`. The main difference is this route will return status for each entry, while `dCopyBatch` raises failure -/// if any entry fails. This route will either finish synchronously, or return a job ID and do the async copy job in -/// background. Please use `dCopyBatchCheck` to check the job status. -/// -/// @param entries List of entries to be moved or copied. Each entry is RelocationPath. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatchV2: - (NSArray *)entries; - -/// -/// Copy multiple files or folders to different locations at once in the user's Dropbox. This route will replace -/// `dCopyBatch`. The main difference is this route will return status for each entry, while `dCopyBatch` raises failure -/// if any entry fails. This route will either finish synchronously, or return a job ID and do the async copy job in -/// background. Please use `dCopyBatchCheck` to check the job status. -/// -/// @param entries List of entries to be moved or copied. Each entry is RelocationPath. -/// @param autorename If there's a conflict with any file, have the Dropbox server try to autorename that file to avoid -/// the conflict. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)dCopyBatchV2:(NSArray *)entries - autorename:(nullable NSNumber *)autorename; - -/// -/// DEPRECATED: Returns the status of an asynchronous job for `dCopyBatch`. If success, it returns list of results for -/// each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)dCopyBatchCheck:(NSString *)asyncJobId - __deprecated_msg("dCopyBatchCheck is deprecated. Use dCopyBatchCheck."); - -/// -/// Returns the status of an asynchronous job for `dCopyBatch`. It returns list of results for each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2JobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)dCopyBatchCheckV2:(NSString *)asyncJobId; - -/// -/// Get a copy reference to a file or folder. This reference string can be used to save that file or folder to another -/// user's Dropbox by passing it to `dCopyReferenceSave`. -/// -/// @param path The path to the file or folder you want to get a copy reference to. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetCopyReferenceResult` object on success -/// or a `DBFILESGetCopyReferenceError` object on failure. -/// -- (DBRpcTask *)dCopyReferenceGet:(NSString *)path; - -/// -/// Save a copy reference returned by `dCopyReferenceGet` to the user's Dropbox. -/// -/// @param dCopyReference A copy reference returned by `dCopyReferenceGet`. -/// @param path Path in the user's Dropbox that is the destination. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSaveCopyReferenceResult` object on success -/// or a `DBFILESSaveCopyReferenceError` object on failure. -/// -- (DBRpcTask *)dCopyReferenceSave: - (NSString *)dCopyReference - path:(NSString *)path; - -/// -/// DEPRECATED: Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFolderMetadata` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolder:(NSString *)path - __deprecated_msg("createFolder is deprecated. Use createFolder."); - -/// -/// DEPRECATED: Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFolderMetadata` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolder:(NSString *)path - autorename:(nullable NSNumber *)autorename - __deprecated_msg("createFolder is deprecated. Use createFolder."); - -/// -/// Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderResult` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolderV2:(NSString *)path; - -/// -/// Create a folder at a given path. -/// -/// @param path Path in the user's Dropbox to create. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderResult` object on success or a -/// `DBFILESCreateFolderError` object on failure. -/// -- (DBRpcTask *)createFolderV2:(NSString *)path - autorename:(nullable NSNumber *)autorename; - -/// -/// Create multiple folders at once. This route is asynchronous for large batches, which returns a job ID immediately -/// and runs the create folder batch asynchronously. Otherwise, creates the folders and returns the result synchronously -/// for smaller inputs. You can force asynchronous behaviour by using the `forceAsync` in `DBFILESCreateFolderBatchArg` -/// flag. Use `createFolderBatchCheck` to check the job status. -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered -/// only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderBatchLaunch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)createFolderBatch:(NSArray *)paths; - -/// -/// Create multiple folders at once. This route is asynchronous for large batches, which returns a job ID immediately -/// and runs the create folder batch asynchronously. Otherwise, creates the folders and returns the result synchronously -/// for smaller inputs. You can force asynchronous behaviour by using the `forceAsync` in `DBFILESCreateFolderBatchArg` -/// flag. Use `createFolderBatchCheck` to check the job status. -/// -/// @param paths List of paths to be created in the user's Dropbox. Duplicate path arguments in the batch are considered -/// only once. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the folder to avoid the conflict. -/// @param forceAsync Whether to force the create to happen asynchronously. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderBatchLaunch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)createFolderBatch:(NSArray *)paths - autorename:(nullable NSNumber *)autorename - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Returns the status of an asynchronous job for `createFolderBatch`. If success, it returns list of result for each -/// entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESCreateFolderBatchJobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)createFolderBatchCheck:(NSString *)asyncJobId; - -/// -/// DEPRECATED: Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted -/// too. A successful response indicates that the file or folder was deleted. The returned metadata will be the -/// corresponding FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_:(NSString *)path - __deprecated_msg("delete_ is deprecated. Use delete_."); - -/// -/// DEPRECATED: Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted -/// too. A successful response indicates that the file or folder was deleted. The returned metadata will be the -/// corresponding FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's latest "rev". This field does not support -/// deleting a folder. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_:(NSString *)path - parentRev:(nullable NSString *)parentRev - __deprecated_msg("delete_ is deprecated. Use delete_."); - -/// -/// Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A -/// successful response indicates that the file or folder was deleted. The returned metadata will be the corresponding -/// FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteResult` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_V2:(NSString *)path; - -/// -/// Delete the file or folder at a given path. If the path is a folder, all its contents will be deleted too. A -/// successful response indicates that the file or folder was deleted. The returned metadata will be the corresponding -/// FileMetadata or FolderMetadata for the item at time of deletion, and not a DeletedMetadata object. -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's latest "rev". This field does not support -/// deleting a folder. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteResult` object on success or a -/// `DBFILESDeleteError` object on failure. -/// -- (DBRpcTask *)delete_V2:(NSString *)path - parentRev:(nullable NSString *)parentRev; - -/// -/// Delete multiple files/folders at once. This route is asynchronous, which returns a job ID immediately and runs the -/// delete batch asynchronously. Use `deleteBatchCheck` to check the job status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteBatchLaunch` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)deleteBatch:(NSArray *)entries; - -/// -/// Returns the status of an asynchronous job for `deleteBatch`. If success, it returns list of result for each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDeleteBatchJobStatus` object on success or -/// a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)deleteBatchCheck:(NSString *)asyncJobId; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadUrlTask *)downloadUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path - rev:(nullable NSString *)rev; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a file from a user's Dropbox. -/// -/// @param path The path of the file to download. -/// @param rev Please specify revision in path instead. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESDownloadError` object on failure. -/// -- (DBDownloadDataTask *)downloadData:(NSString *)path - rev:(nullable NSString *)rev - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadUrlTask *)downloadZipUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadUrlTask *)downloadZipUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadDataTask *)downloadZipData:(NSString *)path; - -/// -/// Download a folder from the user's Dropbox, as a zip file. The folder must be less than 20 GB in size and any single -/// file within must be less than 4 GB in size. The resulting zip must have fewer than 10,000 total file and folder -/// entries, including the top level folder. The input cannot be a single file. Note: this endpoint does not support -/// HTTP range requests. -/// -/// @param path The path of the folder to download. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESDownloadZipResult` object on success or a -/// `DBFILESDownloadZipError` object on failure. -/// -- (DBDownloadDataTask *) - downloadZipData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - exportFormat:(nullable NSString *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadUrlTask *)exportUrl:(NSString *)path - exportFormat:(nullable NSString *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path - exportFormat:(nullable NSString *)exportFormat; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Export a file from a user's Dropbox. This route only supports exporting files that cannot be downloaded directly -/// and whose `fileMetadata` in `DBFILESExportResult` has `exportAs` in `DBFILESExportInfo` populated. -/// -/// @param path The path of the file to be exported. -/// @param exportFormat The file format to which the file should be exported. This must be one of the formats listed in -/// the file's export_options returned by `getMetadata`. If none is specified, the default format (specified in -/// export_as in file metadata) will be used. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESExportResult` object on success or a -/// `DBFILESExportError` object on failure. -/// -- (DBDownloadDataTask *)exportData:(NSString *)path - exportFormat:(nullable NSString *)exportFormat - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Return the lock metadata for the given list of paths. -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. -/// Duplicate path arguments in the batch are considered only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESLockFileBatchResult` object on success or a -/// `DBFILESLockFileError` object on failure. -/// -- (DBRpcTask *)getFileLockBatch: - (NSArray *)entries; - -/// -/// Returns the metadata for a file or folder. Note: Metadata for the root folder is unsupported. -/// -/// @param path The path of a file or folder on Dropbox. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESGetMetadataError` object on failure. -/// -- (DBRpcTask *)getMetadata:(NSString *)path; - -/// -/// Returns the metadata for a file or folder. Note: Metadata for the root folder is unsupported. -/// -/// @param path The path of a file or folder on Dropbox. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. -/// @param includeDeleted If true, DeletedMetadata will be returned for deleted file or folder, otherwise `notFound` in -/// `DBFILESLookupError` will be returned. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESGetMetadataError` object on failure. -/// -- (DBRpcTask *) - getMetadata:(NSString *)path - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadUrlTask *)getPreviewUrl:(NSString *)path - rev:(nullable NSString *)rev - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path - rev:(nullable NSString *)rev; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a preview for a file. Currently, PDF previews are generated for files with the following extensions: .ai, .doc, -/// .docm, .docx, .eps, .gdoc, .gslides, .odp, .odt, .pps, .ppsm, .ppsx, .ppt, .pptm, .pptx, .rtf. HTML previews are -/// generated for files with the following extensions: .csv, .ods, .xls, .xlsm, .gsheet, .xlsx. Other formats will -/// return an unsupported extension error. -/// -/// @param path The path of the file to preview. -/// @param rev Please specify revision in path instead. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESPreviewError` object on failure. -/// -- (DBDownloadDataTask *)getPreviewData:(NSString *)path - rev:(nullable NSString *)rev - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a temporary link to stream content of a file. This link will expire in four hours and afterwards you will get -/// 410 Gone. This URL should not be used to display content directly in the browser. The Content-Type of the link is -/// determined automatically by the file's mime type. -/// -/// @param path The path to the file you want a temporary link to. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTemporaryLinkResult` object on success -/// or a `DBFILESGetTemporaryLinkError` object on failure. -/// -- (DBRpcTask *)getTemporaryLink:(NSString *)path; - -/// -/// Get a one-time use temporary upload link to upload a file to a Dropbox location. This endpoint acts as a delayed -/// `upload`. The returned temporary upload link may be used to make a POST request with the data to be uploaded. The -/// upload will then be perfomed with the CommitInfo previously provided to `getTemporaryUploadLink` but evaluated only -/// upon consumption. Hence, errors stemming from invalid CommitInfo with respect to the state of the user's Dropbox -/// will only be communicated at consumption time. Additionally, these errors are surfaced as generic HTTP 409 Conflict -/// responses, potentially hiding issue details. The maximum temporary upload link duration is 4 hours. Upon consumption -/// or expiration, a new link will have to be generated. Multiple links may exist for a specific upload path at any -/// given time. The POST request on the temporary upload link must have its Content-Type set to -/// "application/octet-stream". Example temporary upload link consumption request: curl -X POST -/// https://content.dropboxapi.com/apitul/1/bNi2uIYF51cVBND --header "Content-Type: application/octet-stream" -/// --data-binary @local_file.txt A successful temporary upload link consumption request returns the content hash of -/// the uploaded data in JSON format. Example successful temporary upload link consumption response: {"content-hash": -/// "599d71033d700ac892a0e48fa61b125d2f5994"} An unsuccessful temporary upload link consumption request returns any of -/// the following status codes: HTTP 400 Bad Request: Content-Type is not one of application/octet-stream and -/// text/plain or request is invalid. HTTP 409 Conflict: The temporary upload link does not exist or is currently -/// unavailable, the upload failed, or another error happened. HTTP 410 Gone: The temporary upload link is expired or -/// consumed. Example unsuccessful temporary upload link consumption response: Temporary upload link has been recently -/// consumed. -/// -/// @param commitInfo Contains the path and other optional modifiers for the future upload commit. Equivalent to the -/// parameters provided to `upload`. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTemporaryUploadLinkResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)getTemporaryUploadLink: - (DBFILESCommitInfo *)commitInfo; - -/// -/// Get a one-time use temporary upload link to upload a file to a Dropbox location. This endpoint acts as a delayed -/// `upload`. The returned temporary upload link may be used to make a POST request with the data to be uploaded. The -/// upload will then be perfomed with the CommitInfo previously provided to `getTemporaryUploadLink` but evaluated only -/// upon consumption. Hence, errors stemming from invalid CommitInfo with respect to the state of the user's Dropbox -/// will only be communicated at consumption time. Additionally, these errors are surfaced as generic HTTP 409 Conflict -/// responses, potentially hiding issue details. The maximum temporary upload link duration is 4 hours. Upon consumption -/// or expiration, a new link will have to be generated. Multiple links may exist for a specific upload path at any -/// given time. The POST request on the temporary upload link must have its Content-Type set to -/// "application/octet-stream". Example temporary upload link consumption request: curl -X POST -/// https://content.dropboxapi.com/apitul/1/bNi2uIYF51cVBND --header "Content-Type: application/octet-stream" -/// --data-binary @local_file.txt A successful temporary upload link consumption request returns the content hash of -/// the uploaded data in JSON format. Example successful temporary upload link consumption response: {"content-hash": -/// "599d71033d700ac892a0e48fa61b125d2f5994"} An unsuccessful temporary upload link consumption request returns any of -/// the following status codes: HTTP 400 Bad Request: Content-Type is not one of application/octet-stream and -/// text/plain or request is invalid. HTTP 409 Conflict: The temporary upload link does not exist or is currently -/// unavailable, the upload failed, or another error happened. HTTP 410 Gone: The temporary upload link is expired or -/// consumed. Example unsuccessful temporary upload link consumption response: Temporary upload link has been recently -/// consumed. -/// -/// @param commitInfo Contains the path and other optional modifiers for the future upload commit. Equivalent to the -/// parameters provided to `upload`. -/// @param duration How long before this link expires, in seconds. Attempting to start an upload with this link longer -/// than this period of time after link creation will result in an error. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTemporaryUploadLinkResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *) - getTemporaryUploadLink:(DBFILESCommitInfo *)commitInfo - duration:(nullable NSNumber *)duration; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailUrl:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailUrl:(NSString *)path - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailUrl:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailData:(NSString *)path; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailData:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailData:(NSString *)path - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param path The path to the image file you want to thumbnail. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESThumbnailError` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailData:(NSString *)path - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *)getThumbnailV2Url: - (DBFILESPathOrLink *)resource - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadUrlTask *) - getThumbnailV2Url:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *)getThumbnailV2Data: - (DBFILESPathOrLink *)resource; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get a thumbnail for an image. This method currently supports files with the following file extensions: jpg, jpeg, -/// png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger than 20MB in size won't be converted to a thumbnail. -/// -/// @param resource Information specifying which file to preview. This could be a path to a file, a shared link pointing -/// to a file, or a shared link pointing to a folder, with a relative path. -/// @param format The format for the thumbnail image, jpeg (default) or png. For images that are photos, jpeg should be -/// preferred, while png is better for screenshots and digital arts. -/// @param size The size for the thumbnail image. -/// @param mode How to resize and crop the image to achieve the desired size. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPreviewResult` object on success or a -/// `DBFILESThumbnailV2Error` object on failure. -/// -- (DBDownloadDataTask *) - getThumbnailV2Data:(DBFILESPathOrLink *)resource - format:(nullable DBFILESThumbnailFormat *)format - size:(nullable DBFILESThumbnailSize *)size - mode:(nullable DBFILESThumbnailMode *)mode - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get thumbnails for a list of images. We allow up to 25 thumbnails in a single batch. This method currently supports -/// files with the following file extensions: jpg, jpeg, png, tiff, tif, gif, webp, ppm and bmp. Photos that are larger -/// than 20MB in size won't be converted to a thumbnail. -/// -/// @param entries List of files to get thumbnails. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetThumbnailBatchResult` object on success -/// or a `DBFILESGetThumbnailBatchError` object on failure. -/// -- (DBRpcTask *)getThumbnailBatch: - (NSArray *)entries; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *)listFolder:(NSString *)path; - -/// -/// Starts returning the contents of a folder. If the result's `hasMore` in `DBFILESListFolderResult` field is true, -/// call `listFolderContinue` with the returned `cursor` in `DBFILESListFolderResult` to retrieve more entries. If -/// you're using `recursive` in `DBFILESListFolderArg` set to true to keep a local cache of the contents of a Dropbox -/// account, iterate through each entry in order and process them as follows to keep your local state in sync: For each -/// FileMetadata, store the new entry at the given path in your local state. If the required parent folders don't exist -/// yet, create them. If there's already something else at the given path, replace it and remove all its children. For -/// each FolderMetadata, store the new entry at the given path in your local state. If the required parent folders don't -/// exist yet, create them. If there's already something else at the given path, replace it but leave the children as -/// they are. Check the new entry's `readOnly` in `DBFILESFolderSharingInfo` and set all its children's read-only -/// statuses to match. For each DeletedMetadata, if your local state has something at the given path, remove it and all -/// its children. If there's nothing at the given path, ignore this entry. Note: auth.RateLimitError may be returned if -/// multiple `listFolder` or `listFolderContinue` calls with same parameters are made simultaneously by same API app for -/// same user. If your app implements retry logic, please hold off the retry until the previous request finishes. -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied recursively to all subfolders and the response -/// will contain contents of all subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. This parameter -/// will no longer have an effect starting December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files and folders that used to exist but were -/// deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includeMountedFolders If true, the results will include entries under mounted folders which includes app -/// folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This is an approximate number and there can -/// be slightly more entries returned in some cases. -/// @param sharedLink A shared link to list the contents of. If the link is password-protected, the password must be -/// provided. If this field is present, `path` in `DBFILESListFolderArg` will be relative to root of the shared link. -/// Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not downloadable, i.e. Google Docs. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *) - listFolder:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// Once a cursor has been retrieved from `listFolder`, use this to paginate through all files and retrieve updates to -/// the folder, following the same rules as documented for `listFolder`. -/// -/// @param cursor The cursor returned by your last call to `listFolder` or `listFolderContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderResult` object on success or a -/// `DBFILESListFolderContinueError` object on failure. -/// -- (DBRpcTask *)listFolderContinue:(NSString *)cursor; - -/// -/// A way to quickly get a cursor for the folder's state. Unlike `listFolder`, `listFolderGetLatestCursor` doesn't -/// return any entries. This endpoint is for app which only needs to know about new files and modifications and doesn't -/// need to know about files that already exist in Dropbox. -/// -/// @param path A unique identifier for the file. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderGetLatestCursorResult` object on -/// success or a `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *)listFolderGetLatestCursor: - (NSString *)path; - -/// -/// A way to quickly get a cursor for the folder's state. Unlike `listFolder`, `listFolderGetLatestCursor` doesn't -/// return any entries. This endpoint is for app which only needs to know about new files and modifications and doesn't -/// need to know about files that already exist in Dropbox. -/// -/// @param path A unique identifier for the file. -/// @param recursive If true, the list folder operation will be applied recursively to all subfolders and the response -/// will contain contents of all subfolders. -/// @param includeMediaInfo If true, `mediaInfo` in `DBFILESFileMetadata` is set for photo and video. This parameter -/// will no longer have an effect starting December 2, 2019. -/// @param includeDeleted If true, the results will include entries for files and folders that used to exist but were -/// deleted. -/// @param includeHasExplicitSharedMembers If true, the results will include a flag for each file indicating whether or -/// not that file has any explicit members. -/// @param includeMountedFolders If true, the results will include entries under mounted folders which includes app -/// folder, shared folder and team folder. -/// @param limit The maximum number of results to return per request. Note: This is an approximate number and there can -/// be slightly more entries returned in some cases. -/// @param sharedLink A shared link to list the contents of. If the link is password-protected, the password must be -/// provided. If this field is present, `path` in `DBFILESListFolderArg` will be relative to root of the shared link. -/// Only non-recursive mode is supported for shared link. -/// @param includePropertyGroups If set to a valid list of template IDs, `propertyGroups` in `DBFILESFileMetadata` is -/// set if there exists property data associated with the file and each of the listed templates. -/// @param includeNonDownloadableFiles If true, include files that are not downloadable, i.e. Google Docs. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderGetLatestCursorResult` object on -/// success or a `DBFILESListFolderError` object on failure. -/// -- (DBRpcTask *) - listFolderGetLatestCursor:(NSString *)path - recursive:(nullable NSNumber *)recursive - includeMediaInfo:(nullable NSNumber *)includeMediaInfo - includeDeleted:(nullable NSNumber *)includeDeleted - includeHasExplicitSharedMembers:(nullable NSNumber *)includeHasExplicitSharedMembers - includeMountedFolders:(nullable NSNumber *)includeMountedFolders - limit:(nullable NSNumber *)limit - sharedLink:(nullable DBFILESSharedLink *)sharedLink - includePropertyGroups:(nullable DBFILEPROPERTIESTemplateFilterBase *)includePropertyGroups - includeNonDownloadableFiles:(nullable NSNumber *)includeNonDownloadableFiles; - -/// -/// A longpoll endpoint to wait for changes on an account. In conjunction with `listFolderContinue`, this call gives you -/// a low-latency way to monitor an account for file changes. The connection will block until there are changes -/// available or a timeout occurs. This endpoint is useful mostly for client-side apps. If you're looking for -/// server-side notifications, check out our webhooks documentation -/// https://www.dropbox.com/developers/reference/webhooks. -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. Cursors retrieved by setting -/// `includeMediaInfo` in `DBFILESListFolderArg` to true are not supported. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderLongpollResult` object on success -/// or a `DBFILESListFolderLongpollError` object on failure. -/// -- (DBRpcTask *)listFolderLongpoll: - (NSString *)cursor; - -/// -/// A longpoll endpoint to wait for changes on an account. In conjunction with `listFolderContinue`, this call gives you -/// a low-latency way to monitor an account for file changes. The connection will block until there are changes -/// available or a timeout occurs. This endpoint is useful mostly for client-side apps. If you're looking for -/// server-side notifications, check out our webhooks documentation -/// https://www.dropbox.com/developers/reference/webhooks. -/// -/// @param cursor A cursor as returned by `listFolder` or `listFolderContinue`. Cursors retrieved by setting -/// `includeMediaInfo` in `DBFILESListFolderArg` to true are not supported. -/// @param timeout A timeout in seconds. The request will block for at most this length of time, plus up to 90 seconds -/// of random jitter added to avoid the thundering herd problem. Care should be taken when using this parameter, as some -/// network infrastructure does not support long timeouts. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListFolderLongpollResult` object on success -/// or a `DBFILESListFolderLongpollError` object on failure. -/// -- (DBRpcTask *) - listFolderLongpoll:(NSString *)cursor - timeout:(nullable NSNumber *)timeout; - -/// -/// Returns revisions for files based on a file path or a file id. The file path or file id is identified from the -/// latest file entry at the given file path or id. This end point allows your app to query either by file path or file -/// id by setting the mode parameter appropriately. In the `path` in `DBFILESListRevisionsMode` (default) mode, all -/// revisions at the same file path as the latest file entry are returned. If revisions with the same file id are -/// desired, then mode must be set to `id_` in `DBFILESListRevisionsMode`. The `id_` in `DBFILESListRevisionsMode` mode -/// is useful to retrieve revisions for a given file across moves or renames. -/// -/// @param path The path to the file you want to see the revisions of. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListRevisionsResult` object on success or a -/// `DBFILESListRevisionsError` object on failure. -/// -- (DBRpcTask *)listRevisions:(NSString *)path; - -/// -/// Returns revisions for files based on a file path or a file id. The file path or file id is identified from the -/// latest file entry at the given file path or id. This end point allows your app to query either by file path or file -/// id by setting the mode parameter appropriately. In the `path` in `DBFILESListRevisionsMode` (default) mode, all -/// revisions at the same file path as the latest file entry are returned. If revisions with the same file id are -/// desired, then mode must be set to `id_` in `DBFILESListRevisionsMode`. The `id_` in `DBFILESListRevisionsMode` mode -/// is useful to retrieve revisions for a given file across moves or renames. -/// -/// @param path The path to the file you want to see the revisions of. -/// @param mode Determines the behavior of the API in listing the revisions for a given file path or id. -/// @param limit The maximum number of revision entries returned. -/// -/// @return Through the response callback, the caller will receive a `DBFILESListRevisionsResult` object on success or a -/// `DBFILESListRevisionsError` object on failure. -/// -- (DBRpcTask *) - listRevisions:(NSString *)path - mode:(nullable DBFILESListRevisionsMode *)mode - limit:(nullable NSNumber *)limit; - -/// -/// Lock the files at the given paths. A locked file will be writable only by the lock holder. A successful response -/// indicates that the file has been locked. Returns a list of the locked file paths and their metadata after this -/// operation. -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file which will be locked or queried. -/// Duplicate path arguments in the batch are considered only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESLockFileBatchResult` object on success or a -/// `DBFILESLockFileError` object on failure. -/// -- (DBRpcTask *)lockFileBatch: - (NSArray *)entries; - -/// -/// DEPRECATED: Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be moved. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)move:(NSString *)fromPath - toPath:(NSString *)toPath - __deprecated_msg("move is deprecated. Use move."); - -/// -/// DEPRECATED: Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all -/// its contents will be moved. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESMetadata` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)move:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("move is deprecated. Use move."); - -/// -/// Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be moved. Note that we do not currently support case-only renaming. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)moveV2:(NSString *)fromPath - toPath:(NSString *)toPath; - -/// -/// Move a file or folder to a different location in the user's Dropbox. If the source path is a folder all its contents -/// will be moved. Note that we do not currently support case-only renaming. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param autorename If there's a conflict, have the Dropbox server try to autorename the file to avoid the conflict. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationResult` object on success or a -/// `DBFILESRelocationError` object on failure. -/// -- (DBRpcTask *)moveV2:(NSString *)fromPath - toPath:(NSString *)toPath - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// DEPRECATED: Move multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async moving job in background. Please use `moveBatchCheck` to check the job -/// status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)moveBatch:(NSArray *)entries - __deprecated_msg("moveBatch is deprecated. Use moveBatch."); - -/// -/// DEPRECATED: Move multiple files or folders to different locations at once in the user's Dropbox. This route will -/// return job ID immediately and do the async moving job in background. Please use `moveBatchCheck` to check the job -/// status. -/// -/// @param allowSharedFolder This flag has no effect. -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchLaunch` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)moveBatch:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowSharedFolder:(nullable NSNumber *)allowSharedFolder - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer - __deprecated_msg("moveBatch is deprecated. Use moveBatch."); - -/// -/// Move multiple files or folders to different locations at once in the user's Dropbox. Note that we do not currently -/// support case-only renaming. This route will replace `moveBatch`. The main difference is this route will return -/// status for each entry, while `moveBatch` raises failure if any entry fails. This route will either finish -/// synchronously, or return a job ID and do the async move job in background. Please use `moveBatchCheck` to check the -/// job status. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)moveBatchV2:(NSArray *)entries; - -/// -/// Move multiple files or folders to different locations at once in the user's Dropbox. Note that we do not currently -/// support case-only renaming. This route will replace `moveBatch`. The main difference is this route will return -/// status for each entry, while `moveBatch` raises failure if any entry fails. This route will either finish -/// synchronously, or return a job ID and do the async move job in background. Please use `moveBatchCheck` to check the -/// job status. -/// -/// @param allowOwnershipTransfer Allow moves by owner even if it would result in an ownership transfer for the content -/// being moved. This does not apply to copies. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2Launch` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)moveBatchV2:(NSArray *)entries - autorename:(nullable NSNumber *)autorename - allowOwnershipTransfer:(nullable NSNumber *)allowOwnershipTransfer; - -/// -/// DEPRECATED: Returns the status of an asynchronous job for `moveBatch`. If success, it returns list of results for -/// each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)moveBatchCheck:(NSString *)asyncJobId - __deprecated_msg("moveBatchCheck is deprecated. Use moveBatchCheck."); - -/// -/// Returns the status of an asynchronous job for `moveBatch`. It returns list of results for each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESRelocationBatchV2JobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)moveBatchCheckV2:(NSString *)asyncJobId; - -/// -/// Creates a new Paper doc with the provided content. -/// -/// @param path The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. -/// This should include the document's title and end with .paper. -/// @param importFormat The format of the provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperCreateResult` object on success or a -/// `DBFILESPaperCreateError` object on failure. -/// -- (DBUploadTask *)paperCreateUrl:(NSString *)path - importFormat: - (DBFILESImportFormat *)importFormat - inputUrl:(NSString *)inputUrl; - -/// -/// Creates a new Paper doc with the provided content. -/// -/// @param path The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. -/// This should include the document's title and end with .paper. -/// @param importFormat The format of the provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperCreateResult` object on success or a -/// `DBFILESPaperCreateError` object on failure. -/// -- (DBUploadTask *)paperCreateData:(NSString *)path - importFormat: - (DBFILESImportFormat *)importFormat - inputData:(NSData *)inputData; - -/// -/// Creates a new Paper doc with the provided content. -/// -/// @param path The fully qualified path to the location in the user's Dropbox where the Paper Doc should be created. -/// This should include the document's title and end with .paper. -/// @param importFormat The format of the provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperCreateResult` object on success or a -/// `DBFILESPaperCreateError` object on failure. -/// -- (DBUploadTask *)paperCreateStream:(NSString *)path - importFormat: - (DBFILESImportFormat *)importFormat - inputStream:(NSInputStream *)inputStream; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateUrl:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - inputUrl:(NSString *)inputUrl; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param paperRevision The latest doc revision. Required when doc_update_policy is update. This value must match the -/// current revision of the doc or error revision_mismatch will be returned. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateUrl:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision - inputUrl:(NSString *)inputUrl; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateData:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - inputData:(NSData *)inputData; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param paperRevision The latest doc revision. Required when doc_update_policy is update. This value must match the -/// current revision of the doc or error revision_mismatch will be returned. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateData:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision - inputData:(NSData *)inputData; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateStream:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - inputStream:(NSInputStream *)inputStream; - -/// -/// Updates an existing Paper doc with the provided content. -/// -/// @param path Path in the user's Dropbox to update. The path must correspond to a Paper doc or an error will be -/// returned. -/// @param importFormat The format of the provided data. -/// @param docUpdatePolicy How the provided content should be applied to the doc. -/// @param paperRevision The latest doc revision. Required when doc_update_policy is update. This value must match the -/// current revision of the doc or error revision_mismatch will be returned. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESPaperUpdateResult` object on success or a -/// `DBFILESPaperUpdateError` object on failure. -/// -- (DBUploadTask *) - paperUpdateStream:(NSString *)path - importFormat:(DBFILESImportFormat *)importFormat - docUpdatePolicy:(DBFILESPaperDocUpdatePolicy *)docUpdatePolicy - paperRevision:(nullable NSNumber *)paperRevision - inputStream:(NSInputStream *)inputStream; - -/// -/// Permanently delete the file or folder at a given path (see https://www.dropbox.com/en/help/40). If the given file or -/// folder is not yet deleted, this route will first delete it. It is possible for this route to successfully delete, -/// then fail to permanently delete. Note: This endpoint is only available for Dropbox Business apps. -/// -/// @param path Path in the user's Dropbox to delete. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `DBFILESDeleteError` -/// object on failure. -/// -- (DBRpcTask *)permanentlyDelete:(NSString *)path; - -/// -/// Permanently delete the file or folder at a given path (see https://www.dropbox.com/en/help/40). If the given file or -/// folder is not yet deleted, this route will first delete it. It is possible for this route to successfully delete, -/// then fail to permanently delete. Note: This endpoint is only available for Dropbox Business apps. -/// -/// @param path Path in the user's Dropbox to delete. -/// @param parentRev Perform delete if given "rev" matches the existing file's latest "rev". This field does not support -/// deleting a folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `DBFILESDeleteError` -/// object on failure. -/// -- (DBRpcTask *)permanentlyDelete:(NSString *)path - parentRev:(nullable NSString *)parentRev; - -/// -/// DEPRECATED: The propertiesAdd route -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups which are to be added to a Dropbox file. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESAddPropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesAdd:(NSString *)path - propertyGroups:(NSArray *)propertyGroups - __deprecated_msg("propertiesAdd is deprecated."); - -/// -/// DEPRECATED: The propertiesOverwrite route -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyGroups The property groups "snapshot" updates to force apply. No two groups in the input should -/// refer to the same template. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESInvalidPropertyGroupError` object on failure. -/// -- (DBRpcTask *) - propertiesOverwrite:(NSString *)path - propertyGroups:(NSArray *)propertyGroups - __deprecated_msg("propertiesOverwrite is deprecated."); - -/// -/// DEPRECATED: The propertiesRemove route -/// -/// @param path A unique identifier for the file or folder. -/// @param propertyTemplateIds A list of identifiers for a template created by `templatesAddForUser` or -/// `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESRemovePropertiesError` object on failure. -/// -- (DBRpcTask *)propertiesRemove:(NSString *)path - propertyTemplateIds: - (NSArray *)propertyTemplateIds - __deprecated_msg("propertiesRemove is deprecated."); - -/// -/// DEPRECATED: The propertiesTemplateGet route -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)propertiesTemplateGet: - (NSString *)templateId __deprecated_msg("propertiesTemplateGet is deprecated."); - -/// -/// DEPRECATED: The propertiesTemplateList route -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateList __deprecated_msg("propertiesTemplateList is deprecated."); - -/// -/// DEPRECATED: The propertiesUpdate route -/// -/// @param path A unique identifier for the file or folder. -/// @param updatePropertyGroups The property groups "delta" updates to apply. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILEPROPERTIESUpdatePropertiesError` object on failure. -/// -- (DBRpcTask *) - propertiesUpdate:(NSString *)path - updatePropertyGroups:(NSArray *)updatePropertyGroups - __deprecated_msg("propertiesUpdate is deprecated."); - -/// -/// Restore a specific revision of a file to the given path. -/// -/// @param path The path to save the restored file. -/// @param rev The revision to restore. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESRestoreError` object on failure. -/// -- (DBRpcTask *)restore:(NSString *)path rev:(NSString *)rev; - -/// -/// Save the data from a specified URL into a file in user's Dropbox. Note that the transfer from the URL must complete -/// within 15 minutes, or the operation will time out and the job will fail. If the given path already exists, the file -/// will be renamed to avoid the conflict (e.g. myfile (1).txt). -/// -/// @param path The path in Dropbox where the URL will be saved to. -/// @param url The URL to be saved. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSaveUrlResult` object on success or a -/// `DBFILESSaveUrlError` object on failure. -/// -- (DBRpcTask *)saveUrl:(NSString *)path url:(NSString *)url; - -/// -/// Check the status of a `saveUrl` job. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSaveUrlJobStatus` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)saveUrlCheckJobStatus:(NSString *)asyncJobId; - -/// -/// DEPRECATED: Searches for files and folders. Note: Recent changes will be reflected in search results within a few -/// seconds and older revisions of existing files may still match your query for up to a few days. -/// -/// @param path The path in the user's Dropbox to search. Should probably be a folder. -/// @param query The string to search for. Query string may be rewritten to improve relevance of results. The string is -/// split on spaces into multiple tokens. For file name searching, the last token is used for prefix matching (i.e. "bat -/// c" matches "bat cave" but not "batman car"). -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchResult` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)search:(NSString *)path - query:(NSString *)query - __deprecated_msg("search is deprecated. Use search."); - -/// -/// DEPRECATED: Searches for files and folders. Note: Recent changes will be reflected in search results within a few -/// seconds and older revisions of existing files may still match your query for up to a few days. -/// -/// @param path The path in the user's Dropbox to search. Should probably be a folder. -/// @param query The string to search for. Query string may be rewritten to improve relevance of results. The string is -/// split on spaces into multiple tokens. For file name searching, the last token is used for prefix matching (i.e. "bat -/// c" matches "bat cave" but not "batman car"). -/// @param start The starting index within the search results (used for paging). -/// @param maxResults The maximum number of search results to return. -/// @param mode The search mode (filename, filename_and_content, or deleted_filename). Note that searching file content -/// is only available for Dropbox Business accounts. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchResult` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)search:(NSString *)path - query:(NSString *)query - start:(nullable NSNumber *)start - maxResults:(nullable NSNumber *)maxResults - mode:(nullable DBFILESSearchMode *)mode - __deprecated_msg("search is deprecated. Use search."); - -/// -/// Searches for files and folders. Note: `search` along with `searchContinue` can only be used to retrieve a maximum of -/// 10,000 matches. Recent changes may not immediately be reflected in search results due to a short delay in indexing. -/// Duplicate results may be returned across pages. Some results may not be returned. -/// -/// @param query The string to search for. May match across multiple fields based on the request arguments. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchV2Result` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)searchV2:(NSString *)query; - -/// -/// Searches for files and folders. Note: `search` along with `searchContinue` can only be used to retrieve a maximum of -/// 10,000 matches. Recent changes may not immediately be reflected in search results due to a short delay in indexing. -/// Duplicate results may be returned across pages. Some results may not be returned. -/// -/// @param query The string to search for. May match across multiple fields based on the request arguments. -/// @param options Options for more targeted search results. -/// @param matchFieldOptions Options for search results match fields. -/// @param includeHighlights Deprecated and moved this option to SearchMatchFieldOptions. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchV2Result` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)searchV2:(NSString *)query - options:(nullable DBFILESSearchOptions *)options - matchFieldOptions: - (nullable DBFILESSearchMatchFieldOptions *)matchFieldOptions - includeHighlights:(nullable NSNumber *)includeHighlights; - -/// -/// Fetches the next page of search results returned from `search`. Note: `search` along with `searchContinue` can only -/// be used to retrieve a maximum of 10,000 matches. Recent changes may not immediately be reflected in search results -/// due to a short delay in indexing. Duplicate results may be returned across pages. Some results may not be returned. -/// -/// @param cursor The cursor returned by your last call to `search`. Used to fetch the next page of results. -/// -/// @return Through the response callback, the caller will receive a `DBFILESSearchV2Result` object on success or a -/// `DBFILESSearchError` object on failure. -/// -- (DBRpcTask *)searchContinueV2:(NSString *)cursor; - -/// -/// Add a tag to an item. A tag is a string. The strings are automatically converted to lowercase letters. No more than -/// 20 tags can be added to a given item. -/// -/// @param path Path to the item to be tagged. -/// @param tagText The value of the tag to add. Will be automatically converted to lowercase letters. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a `DBFILESAddTagError` -/// object on failure. -/// -- (DBRpcTask *)tagsAdd:(NSString *)path tagText:(NSString *)tagText; - -/// -/// Get list of tags assigned to items. -/// -/// @param paths Path to the items. -/// -/// @return Through the response callback, the caller will receive a `DBFILESGetTagsResult` object on success or a -/// `DBFILESBaseTagError` object on failure. -/// -- (DBRpcTask *)tagsGet:(NSArray *)paths; - -/// -/// Remove a tag from an item. -/// -/// @param path Path to the item to tag. -/// @param tagText The tag to remove. Will be automatically converted to lowercase letters. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESRemoveTagError` object on failure. -/// -- (DBRpcTask *)tagsRemove:(NSString *)path tagText:(NSString *)tagText; - -/// -/// Unlock the files at the given paths. A locked file can only be unlocked by the lock holder or, if a business -/// account, a team admin. A successful response indicates that the file has been unlocked. Returns a list of the -/// unlocked file paths and their metadata after this operation. -/// -/// @param entries List of 'entries'. Each 'entry' contains a path of the file which will be unlocked. Duplicate path -/// arguments in the batch are considered only once. -/// -/// @return Through the response callback, the caller will receive a `DBFILESLockFileBatchResult` object on success or a -/// `DBFILESLockFileError` object on failure. -/// -- (DBRpcTask *)unlockFileBatch: - (NSArray *)entries; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)uploadUrl:(NSString *)path inputUrl:(NSString *)inputUrl; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - uploadUrl:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)uploadData:(NSString *)path - inputData:(NSData *)inputData; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - uploadData:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *)uploadStream:(NSString *)path - inputStream:(NSInputStream *)inputStream; - -/// -/// Create a new file with the contents provided in the request. Do not use this to upload a file larger than 150 MB. -/// Instead, create an upload session with `uploadSessionStart`. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadError` object on failure. -/// -- (DBUploadTask *) - uploadStream:(NSString *)path - mode:(nullable DBFILESWriteMode *)mode - autorename:(nullable NSNumber *)autorename - clientModified:(nullable NSDate *)clientModified - mute:(nullable NSNumber *)mute - propertyGroups:(nullable NSArray *)propertyGroups - strictConflict:(nullable NSNumber *)strictConflict - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// DEPRECATED: Append more data to an upload session. A single request should not upload more than 150 MB. The maximum -/// size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or -/// duplicated in the event of a network error. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendUrl:(NSString *)sessionId - offset:(NSNumber *)offset - inputUrl:(NSString *)inputUrl - __deprecated_msg("uploadSessionAppend is deprecated. Use uploadSessionAppend."); - -/// -/// DEPRECATED: Append more data to an upload session. A single request should not upload more than 150 MB. The maximum -/// size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or -/// duplicated in the event of a network error. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendData:(NSString *)sessionId - offset:(NSNumber *)offset - inputData:(NSData *)inputData - __deprecated_msg("uploadSessionAppend is deprecated. Use uploadSessionAppend."); - -/// -/// DEPRECATED: Append more data to an upload session. A single request should not upload more than 150 MB. The maximum -/// size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will count as data transport -/// calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. For more -/// information, see the Data transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionId The upload session ID (returned by `uploadSessionStart`). -/// @param offset Offset in bytes at which data should be appended. We use this to make sure upload data isn't lost or -/// duplicated in the event of a network error. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendStream:(NSString *)sessionId - offset:(NSNumber *)offset - inputStream: - (NSInputStream *)inputStream - __deprecated_msg("uploadSessionAppend is deprecated. Use uploadSessionAppend."); - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendV2Url: - (DBFILESUploadSessionCursor *)cursor - inputUrl:(NSString *)inputUrl; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Url:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *)uploadSessionAppendV2Data: - (DBFILESUploadSessionCursor *)cursor - inputData:(NSData *)inputData; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Data:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Stream:(DBFILESUploadSessionCursor *)cursor - inputStream:(NSInputStream *)inputStream; - -/// -/// Append more data to an upload session. When the parameter close is set, this call will close the session. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. Calls to this endpoint will count as data transport calls for any Dropbox Business teams with a limit on the -/// number of data transport calls allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBFILESUploadSessionAppendError` object on failure. -/// -- (DBUploadTask *) - uploadSessionAppendV2Stream:(DBFILESUploadSessionCursor *)cursor - close:(nullable NSNumber *)close - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishUrl:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - inputUrl:(NSString *)inputUrl; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishUrl:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishData:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - inputData:(NSData *)inputData; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishData:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishStream:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - inputStream:(NSInputStream *)inputStream; - -/// -/// Finish an upload session and save the uploaded data to the given file path. A single request should not upload more -/// than 150 MB. The maximum size of a file one can upload to an upload session is 350 GB. Calls to this endpoint will -/// count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param cursor Contains the upload session ID and the offset. -/// @param commit Contains the path and other optional modifiers for the commit. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESFileMetadata` object on success or a -/// `DBFILESUploadSessionFinishError` object on failure. -/// -- (DBUploadTask *) - uploadSessionFinishStream:(DBFILESUploadSessionCursor *)cursor - commit:(DBFILESCommitInfo *)commit - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// DEPRECATED: This route helps you commit many files at once into a user's Dropbox. Use `uploadSessionStart` and -/// `uploadSessionAppend` to upload file contents. We recommend uploading many files in parallel to increase throughput. -/// Once the file contents have been uploaded, rather than calling `uploadSessionFinish`, use this route to finish all -/// your upload sessions in a single request. `close` in `DBFILESUploadSessionStartArg` or `close` in -/// `DBFILESUploadSessionAppendArg` needs to be true for the last `uploadSessionStart` or `uploadSessionAppend` call. -/// The maximum size of a file one can upload to an upload session is 350 GB. This route will return a job_id -/// immediately and do the async commit job in background. Use `uploadSessionFinishBatchCheck` to check the job status. -/// For the same account, this route should be executed serially. That means you should not start the next job before -/// current job finishes. We allow up to 1000 entries in a single request. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param entries Commit information for each file in the batch. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionFinishBatchLaunch` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)uploadSessionFinishBatch: - (NSArray *)entries - __deprecated_msg("uploadSessionFinishBatch is deprecated. Use uploadSessionFinishBatch."); - -/// -/// This route helps you commit many files at once into a user's Dropbox. Use `uploadSessionStart` and -/// `uploadSessionAppend` to upload file contents. We recommend uploading many files in parallel to increase throughput. -/// Once the file contents have been uploaded, rather than calling `uploadSessionFinish`, use this route to finish all -/// your upload sessions in a single request. `close` in `DBFILESUploadSessionStartArg` or `close` in -/// `DBFILESUploadSessionAppendArg` needs to be true for the last `uploadSessionStart` or `uploadSessionAppend` call of -/// each upload session. The maximum size of a file one can upload to an upload session is 350 GB. We allow up to 1000 -/// entries in a single request. Calls to this endpoint will count as data transport calls for any Dropbox Business -/// teams with a limit on the number of data transport calls allowed per month. For more information, see the Data -/// transport limit page https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param entries Commit information for each file in the batch. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionFinishBatchResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)uploadSessionFinishBatchV2: - (NSArray *)entries; - -/// -/// Returns the status of an asynchronous job for `uploadSessionFinishBatch`. If success, it returns list of result for -/// each entry. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionFinishBatchJobStatus` object -/// on success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)uploadSessionFinishBatchCheck: - (NSString *)asyncJobId; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *)uploadSessionStartUrl: - (NSString *)inputUrl; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *) - uploadSessionStartUrl:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash - inputUrl:(NSString *)inputUrl; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *)uploadSessionStartData: - (NSData *)inputData; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *) - uploadSessionStartData:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash - inputData:(NSData *)inputData; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *)uploadSessionStartStream: - (NSInputStream *)inputStream; - -/// -/// Upload sessions allow you to upload a single file in one or more requests, for example where the size of the file is -/// greater than 150 MB. This call starts a new upload session with the given data. You can then use -/// `uploadSessionAppend` to add more data and `uploadSessionFinish` to save all the data to a file in Dropbox. A single -/// request should not upload more than 150 MB. The maximum size of a file one can upload to an upload session is 350 -/// GB. An upload session can be used for a maximum of 7 days. Attempting to use an `sessionId` in -/// `DBFILESUploadSessionStartResult` with `uploadSessionAppend` or `uploadSessionFinish` more than 7 days after its -/// creation will return a `notFound` in `DBFILESUploadSessionLookupError`. Calls to this endpoint will count as data -/// transport calls for any Dropbox Business teams with a limit on the number of data transport calls allowed per month. -/// For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. By default, upload sessions require you to send -/// content of the file in sequential order via consecutive `uploadSessionStart`, `uploadSessionAppend`, -/// `uploadSessionFinish` calls. For better performance, you can instead optionally use a `concurrent` in -/// `DBFILESUploadSessionType` upload session. To start a new concurrent session, set `sessionType` in -/// `DBFILESUploadSessionStartArg` to `concurrent` in `DBFILESUploadSessionType`. After that, you can send file data in -/// concurrent `uploadSessionAppend` requests. Finally finish the session with `uploadSessionFinish`. There are couple -/// of constraints with concurrent sessions to make them work. You can not send data with `uploadSessionStart` or -/// `uploadSessionFinish` call, only with `uploadSessionAppend` call. Also data uploaded in `uploadSessionAppend` call -/// must be multiple of 4194304 bytes (except for last `uploadSessionAppend` with `close` in -/// `DBFILESUploadSessionStartArg` to true, that may contain any remaining data). -/// -/// @param close If true, the current session will be closed, at which point you won't be able to call -/// `uploadSessionAppend` anymore with the current session. -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param contentHash A hash of the file content uploaded in this call. If provided and the uploaded content does not -/// match this hash, an error will be returned. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartResult` object on success -/// or a `DBFILESUploadSessionStartError` object on failure. -/// -- (DBUploadTask *) - uploadSessionStartStream:(nullable NSNumber *)close - sessionType:(nullable DBFILESUploadSessionType *)sessionType - contentHash:(nullable NSString *)contentHash - inputStream:(NSInputStream *)inputStream; - -/// -/// This route starts batch of upload_sessions. Please refer to `upload_session/start` usage. Calls to this endpoint -/// will count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param numSessions The number of upload sessions to start. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartBatchResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)uploadSessionStartBatch:(NSNumber *)numSessions; - -/// -/// This route starts batch of upload_sessions. Please refer to `upload_session/start` usage. Calls to this endpoint -/// will count as data transport calls for any Dropbox Business teams with a limit on the number of data transport calls -/// allowed per month. For more information, see the Data transport limit page -/// https://www.dropbox.com/developers/reference/data-transport-limit. -/// -/// @param sessionType Type of upload session you want to start. If not specified, default is `sequential` in -/// `DBFILESUploadSessionType`. -/// @param numSessions The number of upload sessions to start. -/// -/// @return Through the response callback, the caller will receive a `DBFILESUploadSessionStartBatchResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *) - uploadSessionStartBatch:(NSNumber *)numSessions - sessionType:(nullable DBFILESUploadSessionType *)sessionType; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUserGeneratedTag.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUserGeneratedTag.h deleted file mode 100644 index 1c3ec998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESUserGeneratedTag.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESUserGeneratedTag; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserGeneratedTag` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESUserGeneratedTag : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *tagText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param tagText (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTagText:(NSString *)tagText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserGeneratedTag` struct. -/// -@interface DBFILESUserGeneratedTagSerializer : NSObject - -/// -/// Serializes `DBFILESUserGeneratedTag` instances. -/// -/// @param instance An instance of the `DBFILESUserGeneratedTag` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESUserGeneratedTag` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESUserGeneratedTag *)instance; - -/// -/// Deserializes `DBFILESUserGeneratedTag` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESUserGeneratedTag` API object. -/// -/// @return An instantiation of the `DBFILESUserGeneratedTag` object. -/// -+ (DBFILESUserGeneratedTag *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESVideoMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESVideoMetadata.h deleted file mode 100644 index b56e3a3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESVideoMetadata.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBFILESMediaMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBFILESDimensions; -@class DBFILESGpsCoordinates; -@class DBFILESVideoMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `VideoMetadata` struct. -/// -/// Metadata for a video. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESVideoMetadata : DBFILESMediaMetadata - -#pragma mark - Instance fields - -/// The duration of the video in milliseconds. -@property (nonatomic, readonly, nullable) NSNumber *duration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dimensions Dimension of the photo/video. -/// @param location The GPS coordinate of the photo/video. -/// @param timeTaken The timestamp when the photo/video is taken. -/// @param duration The duration of the video in milliseconds. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDimensions:(nullable DBFILESDimensions *)dimensions - location:(nullable DBFILESGpsCoordinates *)location - timeTaken:(nullable NSDate *)timeTaken - duration:(nullable NSNumber *)duration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `VideoMetadata` struct. -/// -@interface DBFILESVideoMetadataSerializer : NSObject - -/// -/// Serializes `DBFILESVideoMetadata` instances. -/// -/// @param instance An instance of the `DBFILESVideoMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESVideoMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESVideoMetadata *)instance; - -/// -/// Deserializes `DBFILESVideoMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESVideoMetadata` API object. -/// -/// @return An instantiation of the `DBFILESVideoMetadata` object. -/// -+ (DBFILESVideoMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteConflictError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteConflictError.h deleted file mode 100644 index 96d4de94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteConflictError.h +++ /dev/null @@ -1,156 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESWriteConflictError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WriteConflictError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESWriteConflictError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESWriteConflictErrorTag` enum type represents the possible tag -/// states with which the `DBFILESWriteConflictError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESWriteConflictErrorTag) { - /// There's a file in the way. - DBFILESWriteConflictErrorFile, - - /// There's a folder in the way. - DBFILESWriteConflictErrorFolder, - - /// There's a file at an ancestor path, so we couldn't create the required - /// parent folders. - DBFILESWriteConflictErrorFileAncestor, - - /// (no description). - DBFILESWriteConflictErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESWriteConflictErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file". -/// -/// Description of the "file" tag state: There's a file in the way. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: There's a folder in the way. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder; - -/// -/// Initializes union class with tag state of "file_ancestor". -/// -/// Description of the "file_ancestor" tag state: There's a file at an ancestor -/// path, so we couldn't create the required parent folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAncestor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file". -/// -/// @return Whether the union's current tag state has value "file". -/// -- (BOOL)isFile; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves whether the union's current tag state has value "file_ancestor". -/// -/// @return Whether the union's current tag state has value "file_ancestor". -/// -- (BOOL)isFileAncestor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESWriteConflictError` union. -/// -@interface DBFILESWriteConflictErrorSerializer : NSObject - -/// -/// Serializes `DBFILESWriteConflictError` instances. -/// -/// @param instance An instance of the `DBFILESWriteConflictError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESWriteConflictError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESWriteConflictError *)instance; - -/// -/// Deserializes `DBFILESWriteConflictError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESWriteConflictError` API object. -/// -/// @return An instantiation of the `DBFILESWriteConflictError` object. -/// -+ (DBFILESWriteConflictError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteError.h deleted file mode 100644 index 75170130..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteError.h +++ /dev/null @@ -1,300 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESWriteConflictError; -@class DBFILESWriteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WriteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESWriteError : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESWriteErrorTag` enum type represents the possible tag states with -/// which the `DBFILESWriteError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESWriteErrorTag) { - /// The given path does not satisfy the required path format. Please refer - /// to the Path formats documentation - /// https://www.dropbox.com/developers/documentation/http/documentation#path-formats - /// for more information. - DBFILESWriteErrorMalformedPath, - - /// Couldn't write to the target path because there was something in the - /// way. - DBFILESWriteErrorConflict, - - /// The user doesn't have permissions to write to the target location. - DBFILESWriteErrorNoWritePermission, - - /// The user doesn't have enough available space (bytes) to write more data. - DBFILESWriteErrorInsufficientSpace, - - /// Dropbox will not save the file or folder because of its name. - DBFILESWriteErrorDisallowedName, - - /// This endpoint cannot move or delete team folders. - DBFILESWriteErrorTeamFolder, - - /// This file operation is not allowed at this path. - DBFILESWriteErrorOperationSuppressed, - - /// There are too many write operations in user's Dropbox. Please retry this - /// request. - DBFILESWriteErrorTooManyWriteOperations, - - /// (no description). - DBFILESWriteErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESWriteErrorTag tag; - -/// The given path does not satisfy the required path format. Please refer to -/// the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. @note Ensure the `isMalformedPath` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *malformedPath; - -/// Couldn't write to the target path because there was something in the way. -/// @note Ensure the `isConflict` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESWriteConflictError *conflict; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_path". -/// -/// Description of the "malformed_path" tag state: The given path does not -/// satisfy the required path format. Please refer to the Path formats -/// documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @param malformedPath The given path does not satisfy the required path -/// format. Please refer to the Path formats documentation -/// https://www.dropbox.com/developers/documentation/http/documentation#path-formats -/// for more information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedPath:(nullable NSString *)malformedPath; - -/// -/// Initializes union class with tag state of "conflict". -/// -/// Description of the "conflict" tag state: Couldn't write to the target path -/// because there was something in the way. -/// -/// @param conflict Couldn't write to the target path because there was -/// something in the way. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConflict:(DBFILESWriteConflictError *)conflict; - -/// -/// Initializes union class with tag state of "no_write_permission". -/// -/// Description of the "no_write_permission" tag state: The user doesn't have -/// permissions to write to the target location. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoWritePermission; - -/// -/// Initializes union class with tag state of "insufficient_space". -/// -/// Description of the "insufficient_space" tag state: The user doesn't have -/// enough available space (bytes) to write more data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientSpace; - -/// -/// Initializes union class with tag state of "disallowed_name". -/// -/// Description of the "disallowed_name" tag state: Dropbox will not save the -/// file or folder because of its name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedName; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This endpoint cannot move or -/// delete team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "operation_suppressed". -/// -/// Description of the "operation_suppressed" tag state: This file operation is -/// not allowed at this path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOperationSuppressed; - -/// -/// Initializes union class with tag state of "too_many_write_operations". -/// -/// Description of the "too_many_write_operations" tag state: There are too many -/// write operations in user's Dropbox. Please retry this request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyWriteOperations; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_path". -/// -- (BOOL)isMalformedPath; - -/// -/// Retrieves whether the union's current tag state has value "conflict". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `conflict` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "conflict". -/// -- (BOOL)isConflict; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_write_permission". -/// -/// @return Whether the union's current tag state has value -/// "no_write_permission". -/// -- (BOOL)isNoWritePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_space". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_space". -/// -- (BOOL)isInsufficientSpace; - -/// -/// Retrieves whether the union's current tag state has value "disallowed_name". -/// -/// @return Whether the union's current tag state has value "disallowed_name". -/// -- (BOOL)isDisallowedName; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "operation_suppressed". -/// -/// @return Whether the union's current tag state has value -/// "operation_suppressed". -/// -- (BOOL)isOperationSuppressed; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_write_operations". -/// -/// @return Whether the union's current tag state has value -/// "too_many_write_operations". -/// -- (BOOL)isTooManyWriteOperations; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESWriteError` union. -/// -@interface DBFILESWriteErrorSerializer : NSObject - -/// -/// Serializes `DBFILESWriteError` instances. -/// -/// @param instance An instance of the `DBFILESWriteError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESWriteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESWriteError *)instance; - -/// -/// Deserializes `DBFILESWriteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESWriteError` API object. -/// -/// @return An instantiation of the `DBFILESWriteError` object. -/// -+ (DBFILESWriteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteMode.h deleted file mode 100644 index 6e1098a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBFILESWriteMode.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESWriteMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WriteMode` union. -/// -/// Your intent when writing a file to some path. This is used to determine what -/// constitutes a conflict and what the autorename strategy is. In some -/// situations, the conflict behavior is identical: (a) If the target path -/// doesn't refer to anything, the file is always written; no conflict. (b) If -/// the target path refers to a folder, it's always a conflict. (c) If the -/// target path refers to a file with identical contents, nothing gets written; -/// no conflict. The conflict checking differs in the case where there's a file -/// at the target path with contents different from the contents you're trying -/// to write. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBFILESWriteMode : NSObject - -#pragma mark - Instance fields - -/// The `DBFILESWriteModeTag` enum type represents the possible tag states with -/// which the `DBFILESWriteMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBFILESWriteModeTag) { - /// Do not overwrite an existing file if there is a conflict. The autorename - /// strategy is to append a number to the file name. For example, - /// "document.txt" might become "document (2).txt". - DBFILESWriteModeAdd, - - /// Always overwrite the existing file. The autorename strategy is the same - /// as it is for add. - DBFILESWriteModeOverwrite, - - /// Overwrite if the given "rev" matches the existing file's "rev". The - /// supplied value should be the latest known "rev" of the file, for - /// example, from FileMetadata, from when the file was last downloaded by - /// the app. This will cause the file on the Dropbox servers to be - /// overwritten if the given "rev" matches the existing file's current "rev" - /// on the Dropbox servers. The autorename strategy is to append the string - /// "conflicted copy" to the file name. For example, "document.txt" might - /// become "document (conflicted copy).txt" or "document (Panda's conflicted - /// copy).txt". - DBFILESWriteModeUpdate, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBFILESWriteModeTag tag; - -/// Overwrite if the given "rev" matches the existing file's "rev". The supplied -/// value should be the latest known "rev" of the file, for example, from -/// FileMetadata, from when the file was last downloaded by the app. This will -/// cause the file on the Dropbox servers to be overwritten if the given "rev" -/// matches the existing file's current "rev" on the Dropbox servers. The -/// autorename strategy is to append the string "conflicted copy" to the file -/// name. For example, "document.txt" might become "document (conflicted -/// copy).txt" or "document (Panda's conflicted copy).txt". @note Ensure the -/// `isUpdate` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *update; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "add". -/// -/// Description of the "add" tag state: Do not overwrite an existing file if -/// there is a conflict. The autorename strategy is to append a number to the -/// file name. For example, "document.txt" might become "document (2).txt". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdd; - -/// -/// Initializes union class with tag state of "overwrite". -/// -/// Description of the "overwrite" tag state: Always overwrite the existing -/// file. The autorename strategy is the same as it is for add. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverwrite; - -/// -/// Initializes union class with tag state of "update". -/// -/// Description of the "update" tag state: Overwrite if the given "rev" matches -/// the existing file's "rev". The supplied value should be the latest known -/// "rev" of the file, for example, from FileMetadata, from when the file was -/// last downloaded by the app. This will cause the file on the Dropbox servers -/// to be overwritten if the given "rev" matches the existing file's current -/// "rev" on the Dropbox servers. The autorename strategy is to append the -/// string "conflicted copy" to the file name. For example, "document.txt" might -/// become "document (conflicted copy).txt" or "document (Panda's conflicted -/// copy).txt". -/// -/// @param update Overwrite if the given "rev" matches the existing file's -/// "rev". The supplied value should be the latest known "rev" of the file, for -/// example, from FileMetadata, from when the file was last downloaded by the -/// app. This will cause the file on the Dropbox servers to be overwritten if -/// the given "rev" matches the existing file's current "rev" on the Dropbox -/// servers. The autorename strategy is to append the string "conflicted copy" -/// to the file name. For example, "document.txt" might become "document -/// (conflicted copy).txt" or "document (Panda's conflicted copy).txt". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdate:(NSString *)update; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "add". -/// -/// @return Whether the union's current tag state has value "add". -/// -- (BOOL)isAdd; - -/// -/// Retrieves whether the union's current tag state has value "overwrite". -/// -/// @return Whether the union's current tag state has value "overwrite". -/// -- (BOOL)isOverwrite; - -/// -/// Retrieves whether the union's current tag state has value "update". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `update` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "update". -/// -- (BOOL)isUpdate; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBFILESWriteMode` union. -/// -@interface DBFILESWriteModeSerializer : NSObject - -/// -/// Serializes `DBFILESWriteMode` instances. -/// -/// @param instance An instance of the `DBFILESWriteMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBFILESWriteMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBFILESWriteMode *)instance; - -/// -/// Deserializes `DBFILESWriteMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBFILESWriteMode` API object. -/// -/// @return An instantiation of the `DBFILESWriteMode` object. -/// -+ (DBFILESWriteMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBGlobalErrorResponseHandler.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBGlobalErrorResponseHandler.h deleted file mode 100644 index 84e5219d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBGlobalErrorResponseHandler.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBRequestError; -@class DBTask; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Allows for consistent, global handling of route-specific error types, as well as general network errors. -/// -/// Normally, error handling is done on a request-by-request basis, in the supplied response handler. However, it is -/// convenient to handle some error behavior consistently, regardless of the request or the endpoint. An example of this -/// might be implementing retry logic for all rate-limiting errors, regardless of their source. For implementing global -/// error handling for general networking errors like rate-limiting, one of the `registerNetworkErrorResponseBlock:` -/// methods should be used. For implementing global error handling for route-specific errors, one of the -/// `registerRouteErrorResponseBlock:` methods should be used. -/// -/// For the route-specific error handling, you may supply either the direct route error type, or any type that the route -/// error type contains as an instance field (or an instance field of an instance field, and so on). -/// -/// @note These globally supplied response handlers will be executed *in place* of the original request-specific -/// response handler. At most one global response handler will be executed, with the prioirty going to the general -/// network -/// response handler, followed by the handler that is associated directly with the route's error response type, followed -/// by the handler associated with the first matching instance field. -/// -@interface DBGlobalErrorResponseHandler : NSObject - -// Global response handler for route-specific errors. The first parameter is the route specific error to handle. The -// second paramater is the general network error to handle. The third parameter is the SDK wrapper task used to restart -// the request, if necessary. -typedef void (^DBRouteErrorResponseBlock)(id _Nullable routeError, DBRequestError *networkError, DBTask *restartTask); - -// Global response handler for general network errors. The first parameter is the general network error to handle. The -// second parameter is the SDK wrapper task used to restart the request, if necessary. -typedef void (^DBNetworkErrorResponseBlock)(DBRequestError *networkError, DBTask *restartTask); - -/// -/// Convenience method for registering a global error handler for a specific route error type. -/// -/// @param routeErrorResponseBlock The response block for globally handling the route error. -/// @param routeErrorType The error type with which to associate the supplied response block. Note, this method searches -/// the route error type's instance fields recursively, so this error type may potentially match not only the route -/// error type, but any of its instance fields, and its instance fields' instance fields, and so on. -/// -+ (void)registerRouteErrorResponseBlock:(DBRouteErrorResponseBlock)routeErrorResponseBlock - routeErrorType:(Class)routeErrorType; - -/// -/// Registers a global error handler for a specific route error type. -/// -/// @param routeErrorResponseBlock The response block for globally handling the route error. -/// @param routeErrorType The error type with which to associate the supplied response block. Note, this method searches -/// the route error type's instance fields recursively, so this error type may potentially match not only the route -/// error type, but any of its instance fields, and its instance fields' instance fields, and so on. -/// @param queue The operation queue on which to execute the supplied global response handler. -/// -+ (void)registerRouteErrorResponseBlock:(DBRouteErrorResponseBlock)routeErrorResponseBlock - routeErrorType:(Class)routeErrorType - queue:(nullable NSOperationQueue *)queue; - -/// -/// Removes the global error handler associated with the supplied error type. -/// -/// routeErrorType The associated error type of the response handler to be removed. -/// -+ (void)removeRouteErrorResponseBlockWithRouteErrorType:(Class)routeErrorType; - -/// -/// Convenience method for registering a single global error handler for handling general network errors. -/// -/// @note Only one block at a time may be set for handling all general network errors. -/// -/// @param networkErrorResponseBlock The response block for globally handling network errors. -/// -+ (void)registerNetworkErrorResponseBlock:(DBNetworkErrorResponseBlock)networkErrorResponseBlock; - -/// -/// Registers a single global error handler for handling general network errors. -/// -/// @note Only one block at a time may be set for handling all general network errors. -/// -/// @param networkErrorResponseBlock The response block for globally handling network errors. -/// @param queue The operation queue on which to execute the supplied global response handler. -/// -+ (void)registerNetworkErrorResponseBlock:(DBNetworkErrorResponseBlock)networkErrorResponseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Removes the single global error handler for general network errors. -/// -+ (void)removeNetworkErrorResponseBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBHandlerTypes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBHandlerTypes.h deleted file mode 100644 index cd4cf862..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBHandlerTypes.h +++ /dev/null @@ -1,45 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Public handler types. -/// - -#import - -@class DBASYNCPollError; -@class DBFILESUploadSessionFinishBatchJobStatus; -@class DBFILESUploadSessionFinishBatchResultEntry; -@class DBRequestError; - -NS_ASSUME_NONNULL_BEGIN - -/// The progress block to be executed in the event of a request update. The first argument is the number of bytes -/// downloaded. The second argument is the number of total bytes downloaded. And the third argument is the number of -/// total bytes expected to be downloaded. -typedef void (^DBProgressBlock)(int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite); - -/// Special custom response block for batch upload. The first argument is a mapping of client-side NSURLs to batch -/// upload result entries (each of which indicates the success / failure of the upload for the corresponding file). This -/// object will be nonnull if the final call to `/upload_session/finish_batch/check` is successful. The second argument -/// is the route-specific error from `/upload_session/finish_batch/check`, which is generally not able to be handled at -/// runtime, but instead should be used for debugging purposes. This object will be nonnull if there is a route-specific -/// error from the call to `/upload_session/finish_batch/check`. The third argument is the general request error from -/// `/upload_session/finish_batch/check`. This object will be nonnull if there is a request error from the call to -/// `/upload_session/finish_batch/check`. The fourth argument is a mapping of client-side NSURLs to general request -/// errors, which occured during the upload of the corresponding file. -typedef void (^DBBatchUploadResponseBlock)( - NSDictionary *_Nullable fileUrlsToBatchResultEntries, - DBASYNCPollError *_Nullable finishBatchRouteError, DBRequestError *_Nullable finishBatchRequestError, - NSDictionary *fileUrlsToRequestErrors); - -/// Special custom response block for performing SDK token migration between API v1 tokens and API v2 tokens. First -/// argument indicates whether the migration should be attempted again (primarily when there was no active network -/// connection). The second argument indicates whether the supplied app key and / or secret is invalid for some or -/// all tokens. The third argument is a list of token data for each token that was unsuccessfully migrated. Each -/// element in the list is a list of length 4, where the first element is the Dropbox user ID, the second element -/// is the OAuth 1 access token, the third element is the OAuth 1 access token secret, and the fourth element -/// is the consumer app key that was stored with the token. -typedef void (^DBTokenMigrationResponseBlock)(BOOL shouldRetry, BOOL invalidAppKeyOrSecret, - NSArray *> *unsuccessfullyMigratedTokenData); - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBLoadingStatusDelegate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBLoadingStatusDelegate.h deleted file mode 100644 index 4f2ebea1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBLoadingStatusDelegate.h +++ /dev/null @@ -1,21 +0,0 @@ -/// -/// Copyright (c) 2020 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// Protocol for handling loading status during auth flow. -/// Implementing class could show custom UX to reflect loading status. -@protocol DBLoadingStatusDelegate - -/// Called when auth flow is loading/waiting for some data. e.g. Waiting for a network request to finish. -- (void)showLoading; - -/// Called when auth flow finishes loading/waiting. e.g. A network request finished. -- (void)dismissLoading; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthDesktop-macOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthDesktop-macOS.h deleted file mode 100644 index cc7c3fb7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthDesktop-macOS.h +++ /dev/null @@ -1,45 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import -#import - -#import "DBLoadingStatusDelegate.h" -#import "DBSharedApplicationProtocol.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Platform-specific (here, macOS) shared application. -/// -/// Renders OAuth flow and implements `DBSharedApplication` protocol. -/// -@interface DBDesktopSharedApplication : NSObject - -/// Delegate to handle loading status during auth flow. -@property (nonatomic, readwrite, weak) id loadingStatusDelegate; - -/// Returns the shared instance of `DBDesktopSharedApplication`. -+ (nullable DBDesktopSharedApplication *)desktopSharedApplication; - -/// Sets the shared instance of `DBDesktopSharedApplication`. -+ (void)setDesktopSharedApplication:(DBDesktopSharedApplication *)desktopSharedApplication; - -/// -/// Full constructor. -/// -/// @param sharedApplication The `NSWorkspace` with which to render the OAuth flow. -/// @param controller The `NSViewController` with which to render the OAuth flow. The controller reference is weakly -/// held. -/// @param openURL A wrapper around app-extension unsafe `openURL` call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedApplication:(NSWorkspace *)sharedApplication - controller:(NSViewController *)controller - openURL:(void (^_Nonnull)(NSURL *))openURL; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthManager.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthManager.h deleted file mode 100644 index bb7759fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthManager.h +++ /dev/null @@ -1,290 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBOAuthResultCompletion.h" -#import - -@class DBAccessToken; -@class DBOAuthPKCESession; -@class DBOAuthResult; -@class DBScopeRequest; -@protocol DBSharedApplication; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - Access token class - -/// -/// A Dropbox OAuth2 access token. -/// -/// Stores a unique identifying key for storing in `DBKeychain`. -/// -@interface DBAccessToken : NSObject - -/// The OAuth2 access token. -@property (nonatomic, readonly, copy) NSString *accessToken; - -/// The unique identifier of the access token used for storing in `DBKeychain`. Either the `account_id` (if user app) or -/// the `team_id` if (team app). -@property (nonatomic, readonly, copy) NSString *uid; - -/// The refresh token if accessToken is short-lived. -@property (nonatomic, readonly, copy, nullable) NSString *refreshToken; - -/// The expiration time of the (short-lived) accessToken. -@property (nonatomic, readonly, assign) NSTimeInterval tokenExpirationTimestamp; - -/// Creates a `DBAccessToken` object for a long-lived access token. -/// -/// @param accessToken The OAuth2 access token retrieved from the auth flow. -/// @param uid The unique identifier used to store in `DBKeychain`. -/// -/// @return A `DBAccessToken` object. -+ (DBAccessToken *)createWithLongLivedAccessToken:(NSString *)accessToken uid:(NSString *)uid; - -/// Creates a `DBAccessToken` object for a short-lived access token. -/// -/// @param accessToken The OAuth2 access token retrieved from the auth flow. -/// @param uid The unique identifier used to store in `DBKeychain`. -/// @param refreshToken The refresh token if accessToken is short-lived. -/// @param tokenExpirationTimestamp The expiration time of the (short-lived) accessToken. -/// -/// @return A `DBAccessToken` object. -+ (DBAccessToken *)createWithShortLivedAccessToken:(NSString *)accessToken - uid:(NSString *)uid - refreshToken:(nullable NSString *)refreshToken - tokenExpirationTimestamp:(NSTimeInterval)tokenExpirationTimestamp; - -/// Convenience method for initWithAccessToken:uid:refreshToken:tokenExpirationTimestamp: with -/// refreshToken set to nil and tokenExpirationTimestamp set to 0. -- (instancetype)initWithAccessToken:(NSString *)accessToken uid:(NSString *)uid; - -/// -/// DBAccessToken full constructor. -/// -/// @param accessToken The OAuth2 access token retrieved from the auth flow. -/// @param uid The unique identifier used to store in `DBKeychain`. -/// @param refreshToken The refresh token if accessToken is short-lived. -/// @param tokenExpirationTimestamp The expiration time of the (short-lived) accessToken. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - uid:(NSString *)uid - refreshToken:(nullable NSString *)refreshToken - tokenExpirationTimestamp:(NSTimeInterval)tokenExpirationTimestamp; - -@end - -@protocol DBAccessTokenRefreshing - -/// Refreshes a (short-lived) access token for a given DBAccessToken. -/// -/// @param accessToken A `DBAccessToken` object. -/// @param scopes An array of scopes to be granted for the refreshed access token. -/// The requested scope MUST NOT include any scope not originally granted. -/// Useful if users want to reduce the granted scopes for the new access token. -/// Pass in an empty array if you don't want to change scopes of the access token. -/// @param queue The queue where completion block will be called from. -/// @param completion A `DBOAuthCompletion` block to notify caller the result. -- (void)refreshAccessToken:(DBAccessToken *)accessToken - scopes:(NSArray *)scopes - queue:(nullable dispatch_queue_t)queue - completion:(nullable DBOAuthCompletion)completion; - -@end - -#pragma mark - OAuth manager base - -/// -/// Platform-neutral manager for performing OAuth linking. -/// -/// @note OAuth flow webviews localize to environment locale. -/// -/// -@interface DBOAuthManager : NSObject { -@protected - NSString *_appKey; - NSURL *_redirectURL; - NSURL *_cancelURL; - NSString *_host; - NSMutableArray *_urls; - DBOAuthPKCESession *_authSession; -} - -/// Sets the locale of the OAuth flow webpages. If `nil`, then defaults to device locale. -@property (nonatomic, strong) NSLocale *locale; - -#pragma mark - Shared instance accessors and mutators - -/// -/// Accessor method for `DBOAuthManager` shared instance. -/// -/// Shared instance is used to authenticate users through OAuth2, save access tokens, and retrieve access tokens. -/// -/// @return The `DBOAuthManager` shared instance. -/// -+ (nullable DBOAuthManager *)sharedOAuthManager; - -/// -/// Mutator method for `DBOAuthManager` shared instance. -/// -/// Shared instance is used to authenticate users through OAuth2, save access tokens, and retrieve access tokens. -/// -/// @param sharedOAuthManager The updated reference to the `DBOAuthManager` shared instance. -/// -+ (void)setSharedOAuthManager:(DBOAuthManager *)sharedOAuthManager; - -#pragma mark - Constructors - -/// -/// `DBOAuthManager` convenience constructor. -/// -/// @param appKey The app key from the developer console that identifies this app. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey; - -/// -/// `DBOAuthManager` convenience constructor. -/// -/// @param appKey The app key from the developer console that identifies this app. -/// @param host The host of the OAuth web flow. Leave nil to use default host. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey host:(nullable NSString *)host; - -/// -/// `DBOAuthManager` full constructor. -/// -/// @param appKey The app key from the developer console that identifies this app. -/// @param host The host of the OAuth web flow. Leave nil to use default host. -/// @param redirectURL The redirect url of the OAuth web flow. Default to "db-://2/token" -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - host:(nullable NSString *)host - redirectURL:(nullable NSString *)redirectURL; - -#pragma mark - Auth flow methods - -/// -/// Commences the authorization flow (platform-neutral). -/// -/// Interfaces with platform-specific rendering logic via the `DBSharedApplication` protocol. -/// -/// -/// @param sharedApplication A platform-neutral shared application abstraction for rendering auth flow. -/// -- (void)authorizeFromSharedApplication:(id)sharedApplication; - -/// -/// Commences the authorization flow (platform-neutral). -/// -/// Interfaces with platform-specific rendering logic via the `DBSharedApplication` protocol. -/// -/// @param sharedApplication A platform-neutral shared application abstraction for rendering auth flow. -/// @param usePkce Whether to use OAuth2 code flow with PKCE. -/// @param scopeRequest The ScopeRequest, only used in code flow with PKCE. -/// -- (void)authorizeFromSharedApplication:(id)sharedApplication - usePkce:(BOOL)usePkce - scopeRequest:(nullable DBScopeRequest *)scopeRequest; - -/// -/// Handles a redirect back into the application (from whichever auth flow was being used). -/// -/// @param url The redirect URL to attempt to handle. -/// @param completion Completion block for oauth result, called with `nil` if SDK cannot handle the redirect URL, -/// otherwise an instance of `DBOAuthResult`. -/// -/// @return Whether the URL can be handled. -/// -- (BOOL)handleRedirectURL:(NSURL *)url completion:(DBOAuthCompletion)completion; - -#pragma mark - Keychain methods - -/// -/// Saves an access token to the `DBKeychain` class. -/// -/// @param accessToken The access token to save. -/// -/// @return Whether the save operation succeeded. -/// -- (BOOL)storeAccessToken:(DBAccessToken *)accessToken; - -/// -/// Utility function to return an arbitrary access token from the `DBKeychain` class, if any exist. -/// -/// @return the "first" access token found, if any, otherwise nil. -/// -- (nullable DBAccessToken *)retrieveFirstAccessToken; - -/// -/// Retrieves the access token for a particular user from the `DBKeychain` class. -/// -/// @param tokenUid The uid of the access token to retrieve. -/// -/// @return An access token if present, otherwise nil. -/// -- (nullable DBAccessToken *)retrieveAccessToken:(NSString *)tokenUid; - -/// -/// Retrieves all stored access tokens from the `DBKeychain` class. -/// -/// @return a dictionary mapping token uids to their access tokens. -/// -- (NSDictionary *)retrieveAllAccessTokens; - -/// -/// Checks if there are any stored access tokens in the `DBKeychain` class. -/// -/// @return Whether there are stored access tokens. -/// -- (BOOL)hasStoredAccessTokens; - -/// -/// Deletes a specific access tokens from the `DBKeychain` class. -/// -/// @param tokenUid The uid of the access token to delete. -/// -/// @return Whether the delete operation succeeded. -/// -- (BOOL)clearStoredAccessToken:(NSString *)tokenUid; - -/// -/// Deletes all stored access tokens in the `DBKeychain` class. -/// -/// @return Whether the batch deletion operation succeeded. -/// -- (BOOL)clearStoredAccessTokens; - -/// -/// When YES users will not be able to sign up for a Dropbox account via the authorization page. Instead, the -/// authorization page will show a link to the Dropbox iOS app in the App Store. This is was originally intended for use -/// when necessary for compliance with App Store policies. -/// -/// Default value is YES. -/// -/// NOTE: Recent App Store policy suggests that sign up is now allowed, so it should be safe to enable signup. However -/// we are keeping the parameter and defaulting to YES to allow SDK users to make the appropriate decision for their -/// apps. -@property (nonatomic, assign) BOOL disableSignup; - -/// -/// When YES, users who use the web auth flow (NOT dbapp delegated auth) will be forced to sign in from scratch. -/// When NO, there is saved session data from the SafariViewController that can be used across signin attempts. -/// This is intended for use with multi-account applications for App Store compliance, since -/// adding a second account would shortcut the username/password entry page and use the first account's credentials. -/// -/// Default value is NO, which is consistent with historical behavior. -/// -@property (nonatomic, assign) BOOL webAuthShouldForceReauthentication; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthResult.h deleted file mode 100644 index f7a09ead..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthResult.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBAccessToken; -@class DBOAuthResult; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Union result type from OAuth linking attempt. -/// -@interface DBOAuthResult : NSObject - -#pragma mark - Tag type definition - -/// The `DBAuthResultTag` enum type represents the possible tag states that the DBOAuthResult union can exist in. -typedef NS_ENUM(NSInteger, DBOAuthResultTag) { - /// The authorization succeeded. Includes a `DBAccessToken`. - DBAuthSuccess, - - /// The authorization failed. Includes an `OAuth2Error` and a descriptive message. - DBAuthError, - - /// The authorization was manually canceled by the user. - DBAuthCancel, -}; - -/// Represents the possible error types that can be returned from OAuth linking. -/// Includes errors from both Implicit Grant (See RFC6749 4.2.2.1) and Extension Grants (See RFC6749 5.2), -/// and a couple of SDK defined errors outside of OAuth2 specification. -typedef NS_ENUM(NSInteger, DBOAuthErrorType) { - /// The client is not authorized to request an access token using this method. - DBAuthUnauthorizedClient, - - /// The resource owner or authorization server denied the request. - DBAuthAccessDenied, - - /// The authorization server does not support obtaining an access token using - /// this method. - DBAuthUnsupportedResponseType, - - /// The requested scope is invalid, unknown, or malformed. - DBAuthInvalidScope, - - /// The authorization server encountered an unexpected condition that prevented it from fulfilling the request. - DBAuthServerError, - - /// The authorization server is currently unable to handle the request due to a temporary overloading or maintenance - /// of the server. - DBAuthTemporarilyUnavailable, - - /// The request is missing a required parameter, includes an unsupported parameter value (other than grant type), - /// repeats a parameter, includes multiple credentials, utilizes more than one mechanism for authenticating the - /// client, or is otherwise malformed. - DBAuthInvalidRequest, - - /// Client authentication failed (e.g., unknown client, no client authentication included, or unsupported - /// authentication method). - DBAuthInvalidClient, - - /// The provided authorization grant (e.g., authorization code, resource owner credentials) or refresh token is - /// invalid, expired, revoked, does not match the redirection URI used in the authorization request, - /// or was issued to another client. - DBAuthInvalidGrant, - - /// The authorization grant type is not supported by the authorization server. - DBAuthUnsupportedGrantType, - - /// The state param received from the authorization server does not match the state param stored by the SDK. - DBAuthInconsistentState, - - /// Some other error (outside of the OAuth2 specification) - DBAuthUnknown, -}; - -#pragma mark - Instance variables - -/// Represents the `DBOAuthResult` object's current tag state. -@property (nonatomic, readonly) DBOAuthResultTag tag; - -/// The access token that is retrieved in the event of a successful OAuth authorization. -/// @note Ensure the `isSuccess` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBAccessToken *accessToken; - -/// The type of OAuth error that is returned in the event of an unsuccessful OAuth authorization. -/// @note Ensure the `isError` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBOAuthErrorType errorType; - -/// The error description string associated with the `DBAuthErrorType` that is returned in the event of an unsuccessful -/// OAuth authorization. -/// @note Ensure the `isError` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *errorDescription; - -/// The `NSError` form of the error result. -/// @note Ensure the `isError` method returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSError *nsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// @param accessToken The `DBAccessToken` (`account_id` / `team_id` and OAuth token pair) retrieved from the -/// authorization flow. -/// -/// @return An initialized `DBOAuthResult` instance. -/// -- (instancetype)initWithSuccess:(DBAccessToken *)accessToken; - -/// -/// Initializes union class with tag state of "error". -/// -/// @param errorType The string identifier of the OAuth error type (lookup performed in errorTypeLookup dict). -/// @param errorDescription A short description of the error that occured during the authorization flow. -/// -/// @return An initialized `DBOAuthResult` instance. -/// -- (instancetype)initWithError:(NSString *)errorType errorDescription:(nullable NSString *)errorDescription; - -/// -/// Initializes union class with tag state of "cancel". -/// -/// @return An initialized `DBOAuthResult` instance. -/// -- (instancetype)initWithCancel; - -/// -/// Factory method to create union class with tag state of "error" and unknown error type. -/// -/// @param errorDescription A short description of the error that occured during the authorization flow. -/// -/// @return An initialized `DBOAuthResult` instance. -/// -+ (DBOAuthResult *)unknownErrorWithErrorDescription:(nullable NSString *)errorDescription; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "error". -/// -/// @return Whether the union's current tag state has value "error". -/// -- (BOOL)isError; - -/// -/// Retrieves whether the union's current tag state has value "cancel". -/// -/// @return Whether the union's current tag state has value "cancel". -/// -- (BOOL)isCancel; - -#pragma mark - Tag name method - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag -/// state. -/// -- (NSString *)tagName; - -#pragma mark - Description method - -/// -/// Description method. -/// -/// @return A human-readable representation of the current object. -/// -- (NSString *)description; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthResultCompletion.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthResultCompletion.h deleted file mode 100644 index 9d898a36..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOAuthResultCompletion.h +++ /dev/null @@ -1,14 +0,0 @@ -/// -/// Copyright (c) 2020 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBOAuthResult; - -NS_ASSUME_NONNULL_BEGIN - -/// Callback block for oauth result. -typedef void (^DBOAuthCompletion)(DBOAuthResult *_Nullable); - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDOpenIdError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDOpenIdError.h deleted file mode 100644 index 3b3be834..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDOpenIdError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDOpenIdError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OpenIdError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDOpenIdError : NSObject - -#pragma mark - Instance fields - -/// The `DBOPENIDOpenIdErrorTag` enum type represents the possible tag states -/// with which the `DBOPENIDOpenIdError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBOPENIDOpenIdErrorTag) { - /// Missing openid claims for the associated access token. - DBOPENIDOpenIdErrorIncorrectOpenidScopes, - - /// (no description). - DBOPENIDOpenIdErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBOPENIDOpenIdErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "incorrect_openid_scopes". -/// -/// Description of the "incorrect_openid_scopes" tag state: Missing openid -/// claims for the associated access token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncorrectOpenidScopes; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "incorrect_openid_scopes". -/// -/// @return Whether the union's current tag state has value -/// "incorrect_openid_scopes". -/// -- (BOOL)isIncorrectOpenidScopes; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBOPENIDOpenIdError` union. -/// -@interface DBOPENIDOpenIdErrorSerializer : NSObject - -/// -/// Serializes `DBOPENIDOpenIdError` instances. -/// -/// @param instance An instance of the `DBOPENIDOpenIdError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDOpenIdError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDOpenIdError *)instance; - -/// -/// Deserializes `DBOPENIDOpenIdError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDOpenIdError` API object. -/// -/// @return An instantiation of the `DBOPENIDOpenIdError` object. -/// -+ (DBOPENIDOpenIdError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDRouteObjects.h deleted file mode 100644 index 7aa7cd32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDRouteObjects.h +++ /dev/null @@ -1,25 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Openid namespace. Each route in the Openid -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBOPENIDRouteObjects : NSObject - -/// Accessor method for the userinfo route object. -+ (DBRoute *)DBOPENIDUserinfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserAuthRoutes.h deleted file mode 100644 index 72a8d10b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserAuthRoutes.h +++ /dev/null @@ -1,46 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBNilObject; -@class DBOPENIDOpenIdError; -@class DBOPENIDUserInfoError; -@class DBOPENIDUserInfoResult; - -@protocol DBTransportClient; - -/// -/// Routes for the `Openid` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBOPENIDUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBOPENIDUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// This route is used for refreshing the info that is found in the id_token during the OIDC flow. This route doesn't -/// require any arguments and will use the scopes approved for the given access token. -/// -/// -/// @return Through the response callback, the caller will receive a `DBOPENIDUserInfoResult` object on success or a -/// `DBOPENIDUserInfoError` object on failure. -/// -- (DBRpcTask *)userinfo; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoArgs.h deleted file mode 100644 index 4a681744..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoArgs.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDUserInfoArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoArgs` struct. -/// -/// No Parameters -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDUserInfoArgs : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfoArgs` struct. -/// -@interface DBOPENIDUserInfoArgsSerializer : NSObject - -/// -/// Serializes `DBOPENIDUserInfoArgs` instances. -/// -/// @param instance An instance of the `DBOPENIDUserInfoArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDUserInfoArgs *)instance; - -/// -/// Deserializes `DBOPENIDUserInfoArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoArgs` API object. -/// -/// @return An instantiation of the `DBOPENIDUserInfoArgs` object. -/// -+ (DBOPENIDUserInfoArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoError.h deleted file mode 100644 index 6f5c6431..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDOpenIdError; -@class DBOPENIDUserInfoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDUserInfoError : NSObject - -#pragma mark - Instance fields - -/// The `DBOPENIDUserInfoErrorTag` enum type represents the possible tag states -/// with which the `DBOPENIDUserInfoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBOPENIDUserInfoErrorTag) { - /// (no description). - DBOPENIDUserInfoErrorOpenidError, - - /// (no description). - DBOPENIDUserInfoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBOPENIDUserInfoErrorTag tag; - -/// (no description). @note Ensure the `isOpenidError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBOPENIDOpenIdError *openidError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "openid_error". -/// -/// @param openidError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenidError:(DBOPENIDOpenIdError *)openidError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "openid_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `openidError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "openid_error". -/// -- (BOOL)isOpenidError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBOPENIDUserInfoError` union. -/// -@interface DBOPENIDUserInfoErrorSerializer : NSObject - -/// -/// Serializes `DBOPENIDUserInfoError` instances. -/// -/// @param instance An instance of the `DBOPENIDUserInfoError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDUserInfoError *)instance; - -/// -/// Deserializes `DBOPENIDUserInfoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoError` API object. -/// -/// @return An instantiation of the `DBOPENIDUserInfoError` object. -/// -+ (DBOPENIDUserInfoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoResult.h deleted file mode 100644 index 59de922e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBOPENIDUserInfoResult.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBOPENIDUserInfoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBOPENIDUserInfoResult : NSObject - -#pragma mark - Instance fields - -/// Last name of user. -@property (nonatomic, readonly, copy, nullable) NSString *familyName; - -/// First name of user. -@property (nonatomic, readonly, copy, nullable) NSString *givenName; - -/// Email address of user. -@property (nonatomic, readonly, copy, nullable) NSString *email; - -/// If user is email verified. -@property (nonatomic, readonly, nullable) NSNumber *emailVerified; - -/// Issuer of token (in this case Dropbox). -@property (nonatomic, readonly, copy) NSString *iss; - -/// An identifier for the user. This is the Dropbox account_id, a string value -/// such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc. -@property (nonatomic, readonly, copy) NSString *sub; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param familyName Last name of user. -/// @param givenName First name of user. -/// @param email Email address of user. -/// @param emailVerified If user is email verified. -/// @param iss Issuer of token (in this case Dropbox). -/// @param sub An identifier for the user. This is the Dropbox account_id, a -/// string value such as dbid:AAH4f99T0taONIb-OurWxbNQ6ywGRopQngc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFamilyName:(nullable NSString *)familyName - givenName:(nullable NSString *)givenName - email:(nullable NSString *)email - emailVerified:(nullable NSNumber *)emailVerified - iss:(nullable NSString *)iss - sub:(nullable NSString *)sub; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfoResult` struct. -/// -@interface DBOPENIDUserInfoResultSerializer : NSObject - -/// -/// Serializes `DBOPENIDUserInfoResult` instances. -/// -/// @param instance An instance of the `DBOPENIDUserInfoResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBOPENIDUserInfoResult *)instance; - -/// -/// Deserializes `DBOPENIDUserInfoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBOPENIDUserInfoResult` API object. -/// -/// @return An instantiation of the `DBOPENIDUserInfoResult` object. -/// -+ (DBOPENIDUserInfoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddMember.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddMember.h deleted file mode 100644 index c4d6c1cc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddMember.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERAddMember; -@class DBPAPERPaperDocPermissionLevel; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddMember` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddMember : NSObject - -#pragma mark - Instance fields - -/// Permission for the user. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *permissionLevel; - -/// User which should be added to the Paper doc. Specify only email address or -/// Dropbox account ID. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// @param permissionLevel Permission for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - permissionLevel:(nullable DBPAPERPaperDocPermissionLevel *)permissionLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param member User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddMember` struct. -/// -@interface DBPAPERAddMemberSerializer : NSObject - -/// -/// Serializes `DBPAPERAddMember` instances. -/// -/// @param instance An instance of the `DBPAPERAddMember` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddMember` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddMember *)instance; - -/// -/// Deserializes `DBPAPERAddMember` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddMember` API object. -/// -/// @return An instantiation of the `DBPAPERAddMember` object. -/// -+ (DBPAPERAddMember *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUser.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUser.h deleted file mode 100644 index 32d94ec4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUser.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERAddMember; -@class DBPAPERAddPaperDocUser; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPaperDocUser` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddPaperDocUser : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// User which should be added to the Paper doc. Specify only email address or -/// Dropbox account ID. -@property (nonatomic, readonly) NSArray *members; - -/// A personal message that will be emailed to each successfully added member. -@property (nonatomic, readonly, copy, nullable) NSString *customMessage; - -/// Clients should set this to true if no email message shall be sent to added -/// users. -@property (nonatomic, readonly) NSNumber *quiet; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param members User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// @param customMessage A personal message that will be emailed to each -/// successfully added member. -/// @param quiet Clients should set this to true if no email message shall be -/// sent to added users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param docId The Paper doc ID. -/// @param members User which should be added to the Paper doc. Specify only -/// email address or Dropbox account ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId members:(NSArray *)members; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddPaperDocUser` struct. -/// -@interface DBPAPERAddPaperDocUserSerializer : NSObject - -/// -/// Serializes `DBPAPERAddPaperDocUser` instances. -/// -/// @param instance An instance of the `DBPAPERAddPaperDocUser` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUser` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddPaperDocUser *)instance; - -/// -/// Deserializes `DBPAPERAddPaperDocUser` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUser` API object. -/// -/// @return An instantiation of the `DBPAPERAddPaperDocUser` object. -/// -+ (DBPAPERAddPaperDocUser *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUserMemberResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUserMemberResult.h deleted file mode 100644 index f2a863da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUserMemberResult.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERAddPaperDocUserMemberResult; -@class DBPAPERAddPaperDocUserResult; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPaperDocUserMemberResult` struct. -/// -/// Per-member result for `docsUsersAdd`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddPaperDocUserMemberResult : NSObject - -#pragma mark - Instance fields - -/// One of specified input members. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The outcome of the action on this member. -@property (nonatomic, readonly) DBPAPERAddPaperDocUserResult *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member One of specified input members. -/// @param result The outcome of the action on this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member result:(DBPAPERAddPaperDocUserResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddPaperDocUserMemberResult` struct. -/// -@interface DBPAPERAddPaperDocUserMemberResultSerializer : NSObject - -/// -/// Serializes `DBPAPERAddPaperDocUserMemberResult` instances. -/// -/// @param instance An instance of the `DBPAPERAddPaperDocUserMemberResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserMemberResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddPaperDocUserMemberResult *)instance; - -/// -/// Deserializes `DBPAPERAddPaperDocUserMemberResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserMemberResult` API object. -/// -/// @return An instantiation of the `DBPAPERAddPaperDocUserMemberResult` object. -/// -+ (DBPAPERAddPaperDocUserMemberResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUserResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUserResult.h deleted file mode 100644 index 299df130..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERAddPaperDocUserResult.h +++ /dev/null @@ -1,248 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERAddPaperDocUserResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddPaperDocUserResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERAddPaperDocUserResult : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERAddPaperDocUserResultTag` enum type represents the possible tag -/// states with which the `DBPAPERAddPaperDocUserResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERAddPaperDocUserResultTag) { - /// User was successfully added to the Paper doc. - DBPAPERAddPaperDocUserResultSuccess, - - /// Something unexpected happened when trying to add the user to the Paper - /// doc. - DBPAPERAddPaperDocUserResultUnknownError, - - /// The Paper doc can be shared only with team members. - DBPAPERAddPaperDocUserResultSharingOutsideTeamDisabled, - - /// The daily limit of how many users can be added to the Paper doc was - /// reached. - DBPAPERAddPaperDocUserResultDailyLimitReached, - - /// Owner's permissions cannot be changed. - DBPAPERAddPaperDocUserResultUserIsOwner, - - /// User data could not be retrieved. Clients should retry. - DBPAPERAddPaperDocUserResultFailedUserDataRetrieval, - - /// This user already has the correct permission to the Paper doc. - DBPAPERAddPaperDocUserResultPermissionAlreadyGranted, - - /// (no description). - DBPAPERAddPaperDocUserResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERAddPaperDocUserResultTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: User was successfully added to the -/// Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: Something unexpected happened -/// when trying to add the user to the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError; - -/// -/// Initializes union class with tag state of "sharing_outside_team_disabled". -/// -/// Description of the "sharing_outside_team_disabled" tag state: The Paper doc -/// can be shared only with team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingOutsideTeamDisabled; - -/// -/// Initializes union class with tag state of "daily_limit_reached". -/// -/// Description of the "daily_limit_reached" tag state: The daily limit of how -/// many users can be added to the Paper doc was reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDailyLimitReached; - -/// -/// Initializes union class with tag state of "user_is_owner". -/// -/// Description of the "user_is_owner" tag state: Owner's permissions cannot be -/// changed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserIsOwner; - -/// -/// Initializes union class with tag state of "failed_user_data_retrieval". -/// -/// Description of the "failed_user_data_retrieval" tag state: User data could -/// not be retrieved. Clients should retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailedUserDataRetrieval; - -/// -/// Initializes union class with tag state of "permission_already_granted". -/// -/// Description of the "permission_already_granted" tag state: This user already -/// has the correct permission to the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionAlreadyGranted; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_outside_team_disabled". -/// -/// @return Whether the union's current tag state has value -/// "sharing_outside_team_disabled". -/// -- (BOOL)isSharingOutsideTeamDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "daily_limit_reached". -/// -/// @return Whether the union's current tag state has value -/// "daily_limit_reached". -/// -- (BOOL)isDailyLimitReached; - -/// -/// Retrieves whether the union's current tag state has value "user_is_owner". -/// -/// @return Whether the union's current tag state has value "user_is_owner". -/// -- (BOOL)isUserIsOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "failed_user_data_retrieval". -/// -/// @return Whether the union's current tag state has value -/// "failed_user_data_retrieval". -/// -- (BOOL)isFailedUserDataRetrieval; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_already_granted". -/// -/// @return Whether the union's current tag state has value -/// "permission_already_granted". -/// -- (BOOL)isPermissionAlreadyGranted; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERAddPaperDocUserResult` union. -/// -@interface DBPAPERAddPaperDocUserResultSerializer : NSObject - -/// -/// Serializes `DBPAPERAddPaperDocUserResult` instances. -/// -/// @param instance An instance of the `DBPAPERAddPaperDocUserResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERAddPaperDocUserResult *)instance; - -/// -/// Deserializes `DBPAPERAddPaperDocUserResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERAddPaperDocUserResult` API object. -/// -/// @return An instantiation of the `DBPAPERAddPaperDocUserResult` object. -/// -+ (DBPAPERAddPaperDocUserResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERCursor.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERCursor.h deleted file mode 100644 index 8c2bcee3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERCursor.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Cursor` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERCursor : NSObject - -#pragma mark - Instance fields - -/// The actual cursor value. -@property (nonatomic, readonly, copy) NSString *value; - -/// Expiration time of value. Some cursors might have expiration time assigned. -/// This is a UTC value after which the cursor is no longer valid and the API -/// starts returning an error. If cursor expires a new one needs to be obtained -/// and pagination needs to be restarted. Some cursors might be short-lived some -/// cursors might be long-lived. This really depends on the sorting type and -/// order, e.g.: 1. on one hand, listing docs created by the user, sorted by the -/// created time ascending will have undefinite expiration because the results -/// cannot change while the iteration is happening. This cursor would be -/// suitable for long term polling. 2. on the other hand, listing docs sorted by -/// the last modified time will have a very short expiration as docs do get -/// modified very often and the modified time can be changed while the iteration -/// is happening thus altering the results. -@property (nonatomic, readonly, nullable) NSDate *expiration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param value The actual cursor value. -/// @param expiration Expiration time of value. Some cursors might have -/// expiration time assigned. This is a UTC value after which the cursor is no -/// longer valid and the API starts returning an error. If cursor expires a new -/// one needs to be obtained and pagination needs to be restarted. Some cursors -/// might be short-lived some cursors might be long-lived. This really depends -/// on the sorting type and order, e.g.: 1. on one hand, listing docs created by -/// the user, sorted by the created time ascending will have undefinite -/// expiration because the results cannot change while the iteration is -/// happening. This cursor would be suitable for long term polling. 2. on the -/// other hand, listing docs sorted by the last modified time will have a very -/// short expiration as docs do get modified very often and the modified time -/// can be changed while the iteration is happening thus altering the results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValue:(NSString *)value expiration:(nullable NSDate *)expiration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param value The actual cursor value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValue:(NSString *)value; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Cursor` struct. -/// -@interface DBPAPERCursorSerializer : NSObject - -/// -/// Serializes `DBPAPERCursor` instances. -/// -/// @param instance An instance of the `DBPAPERCursor` API object. -/// -/// @return A json-compatible dictionary representation of the `DBPAPERCursor` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERCursor *)instance; - -/// -/// Deserializes `DBPAPERCursor` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERCursor` API object. -/// -/// @return An instantiation of the `DBPAPERCursor` object. -/// -+ (DBPAPERCursor *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERDocLookupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERDocLookupError.h deleted file mode 100644 index 39a2657f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERDocLookupError.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERDocLookupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DocLookupError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERDocLookupError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERDocLookupErrorTag` enum type represents the possible tag states -/// with which the `DBPAPERDocLookupError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERDocLookupErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERDocLookupErrorInsufficientPermissions, - - /// (no description). - DBPAPERDocLookupErrorOther, - - /// The required doc was not found. - DBPAPERDocLookupErrorDocNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERDocLookupErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "doc_not_found". -/// -/// Description of the "doc_not_found" tag state: The required doc was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "doc_not_found". -/// -/// @return Whether the union's current tag state has value "doc_not_found". -/// -- (BOOL)isDocNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERDocLookupError` union. -/// -@interface DBPAPERDocLookupErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERDocLookupError` instances. -/// -/// @param instance An instance of the `DBPAPERDocLookupError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERDocLookupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERDocLookupError *)instance; - -/// -/// Deserializes `DBPAPERDocLookupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERDocLookupError` API object. -/// -/// @return An instantiation of the `DBPAPERDocLookupError` object. -/// -+ (DBPAPERDocLookupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERDocSubscriptionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERDocSubscriptionLevel.h deleted file mode 100644 index f62daed0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERDocSubscriptionLevel.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERDocSubscriptionLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DocSubscriptionLevel` union. -/// -/// The subscription level of a Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERDocSubscriptionLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERDocSubscriptionLevelTag` enum type represents the possible tag -/// states with which the `DBPAPERDocSubscriptionLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERDocSubscriptionLevelTag) { - /// No change email messages unless you're the creator. - DBPAPERDocSubscriptionLevelDefault_, - - /// Ignored: Not shown in pad lists or activity and no email message is - /// sent. - DBPAPERDocSubscriptionLevelIgnore, - - /// Subscribed: Shown in pad lists and activity and change email messages - /// are sent. - DBPAPERDocSubscriptionLevelEvery, - - /// Unsubscribed: Shown in pad lists, but not in activity and no change - /// email messages are sent. - DBPAPERDocSubscriptionLevelNoEmail, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERDocSubscriptionLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: No change email messages unless -/// you're the creator. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "ignore". -/// -/// Description of the "ignore" tag state: Ignored: Not shown in pad lists or -/// activity and no email message is sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIgnore; - -/// -/// Initializes union class with tag state of "every". -/// -/// Description of the "every" tag state: Subscribed: Shown in pad lists and -/// activity and change email messages are sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEvery; - -/// -/// Initializes union class with tag state of "no_email". -/// -/// Description of the "no_email" tag state: Unsubscribed: Shown in pad lists, -/// but not in activity and no change email messages are sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoEmail; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "ignore". -/// -/// @return Whether the union's current tag state has value "ignore". -/// -- (BOOL)isIgnore; - -/// -/// Retrieves whether the union's current tag state has value "every". -/// -/// @return Whether the union's current tag state has value "every". -/// -- (BOOL)isEvery; - -/// -/// Retrieves whether the union's current tag state has value "no_email". -/// -/// @return Whether the union's current tag state has value "no_email". -/// -- (BOOL)isNoEmail; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERDocSubscriptionLevel` union. -/// -@interface DBPAPERDocSubscriptionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERDocSubscriptionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERDocSubscriptionLevel` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERDocSubscriptionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERDocSubscriptionLevel *)instance; - -/// -/// Deserializes `DBPAPERDocSubscriptionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERDocSubscriptionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERDocSubscriptionLevel` object. -/// -+ (DBPAPERDocSubscriptionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERExportFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERExportFormat.h deleted file mode 100644 index 9cc8dc6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERExportFormat.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERExportFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportFormat` union. -/// -/// The desired export format of the Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERExportFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERExportFormatTag` enum type represents the possible tag states -/// with which the `DBPAPERExportFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERExportFormatTag) { - /// The HTML export format. - DBPAPERExportFormatHtml, - - /// The markdown export format. - DBPAPERExportFormatMarkdown, - - /// (no description). - DBPAPERExportFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERExportFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "html". -/// -/// Description of the "html" tag state: The HTML export format. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// Description of the "markdown" tag state: The markdown export format. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERExportFormat` union. -/// -@interface DBPAPERExportFormatSerializer : NSObject - -/// -/// Serializes `DBPAPERExportFormat` instances. -/// -/// @param instance An instance of the `DBPAPERExportFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERExportFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERExportFormat *)instance; - -/// -/// Deserializes `DBPAPERExportFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERExportFormat` API object. -/// -/// @return An instantiation of the `DBPAPERExportFormat` object. -/// -+ (DBPAPERExportFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolder.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolder.h deleted file mode 100644 index 0f024e10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolder.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolder; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Folder` struct. -/// -/// Data structure representing a Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFolder : NSObject - -#pragma mark - Instance fields - -/// Paper folder ID. This ID uniquely identifies the folder. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Paper folder name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ Paper folder ID. This ID uniquely identifies the folder. -/// @param name Paper folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Folder` struct. -/// -@interface DBPAPERFolderSerializer : NSObject - -/// -/// Serializes `DBPAPERFolder` instances. -/// -/// @param instance An instance of the `DBPAPERFolder` API object. -/// -/// @return A json-compatible dictionary representation of the `DBPAPERFolder` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFolder *)instance; - -/// -/// Deserializes `DBPAPERFolder` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFolder` API object. -/// -/// @return An instantiation of the `DBPAPERFolder` object. -/// -+ (DBPAPERFolder *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolderSharingPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolderSharingPolicyType.h deleted file mode 100644 index fb3e79de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolderSharingPolicyType.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolderSharingPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderSharingPolicyType` union. -/// -/// The sharing policy of a Paper folder. The sharing policy of subfolders is -/// inherited from the root folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFolderSharingPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERFolderSharingPolicyTypeTag` enum type represents the possible -/// tag states with which the `DBPAPERFolderSharingPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERFolderSharingPolicyTypeTag) { - /// Everyone in your team and anyone directly invited can access this - /// folder. - DBPAPERFolderSharingPolicyTypeTeam, - - /// Only people directly invited can access this folder. - DBPAPERFolderSharingPolicyTypeInviteOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERFolderSharingPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Everyone in your team and anyone -/// directly invited can access this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Only people directly invited can -/// access this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERFolderSharingPolicyType` union. -/// -@interface DBPAPERFolderSharingPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBPAPERFolderSharingPolicyType` instances. -/// -/// @param instance An instance of the `DBPAPERFolderSharingPolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERFolderSharingPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFolderSharingPolicyType *)instance; - -/// -/// Deserializes `DBPAPERFolderSharingPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFolderSharingPolicyType` API object. -/// -/// @return An instantiation of the `DBPAPERFolderSharingPolicyType` object. -/// -+ (DBPAPERFolderSharingPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolderSubscriptionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolderSubscriptionLevel.h deleted file mode 100644 index f8840c44..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFolderSubscriptionLevel.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolderSubscriptionLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderSubscriptionLevel` union. -/// -/// The subscription level of a Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFolderSubscriptionLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERFolderSubscriptionLevelTag` enum type represents the possible -/// tag states with which the `DBPAPERFolderSubscriptionLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERFolderSubscriptionLevelTag) { - /// Not shown in activity, no email messages. - DBPAPERFolderSubscriptionLevelNone, - - /// Shown in activity, no email messages. - DBPAPERFolderSubscriptionLevelActivityOnly, - - /// Shown in activity, daily email messages. - DBPAPERFolderSubscriptionLevelDailyEmails, - - /// Shown in activity, weekly email messages. - DBPAPERFolderSubscriptionLevelWeeklyEmails, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERFolderSubscriptionLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "none". -/// -/// Description of the "none" tag state: Not shown in activity, no email -/// messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "activity_only". -/// -/// Description of the "activity_only" tag state: Shown in activity, no email -/// messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActivityOnly; - -/// -/// Initializes union class with tag state of "daily_emails". -/// -/// Description of the "daily_emails" tag state: Shown in activity, daily email -/// messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDailyEmails; - -/// -/// Initializes union class with tag state of "weekly_emails". -/// -/// Description of the "weekly_emails" tag state: Shown in activity, weekly -/// email messages. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWeeklyEmails; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "activity_only". -/// -/// @return Whether the union's current tag state has value "activity_only". -/// -- (BOOL)isActivityOnly; - -/// -/// Retrieves whether the union's current tag state has value "daily_emails". -/// -/// @return Whether the union's current tag state has value "daily_emails". -/// -- (BOOL)isDailyEmails; - -/// -/// Retrieves whether the union's current tag state has value "weekly_emails". -/// -/// @return Whether the union's current tag state has value "weekly_emails". -/// -- (BOOL)isWeeklyEmails; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERFolderSubscriptionLevel` union. -/// -@interface DBPAPERFolderSubscriptionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERFolderSubscriptionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERFolderSubscriptionLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERFolderSubscriptionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFolderSubscriptionLevel *)instance; - -/// -/// Deserializes `DBPAPERFolderSubscriptionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFolderSubscriptionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERFolderSubscriptionLevel` object. -/// -+ (DBPAPERFolderSubscriptionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFoldersContainingPaperDoc.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFoldersContainingPaperDoc.h deleted file mode 100644 index 8090596d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERFoldersContainingPaperDoc.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERFolder; -@class DBPAPERFolderSharingPolicyType; -@class DBPAPERFoldersContainingPaperDoc; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FoldersContainingPaperDoc` struct. -/// -/// Metadata about Paper folders containing the specififed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERFoldersContainingPaperDoc : NSObject - -#pragma mark - Instance fields - -/// The sharing policy of the folder containing the Paper doc. -@property (nonatomic, readonly, nullable) DBPAPERFolderSharingPolicyType *folderSharingPolicyType; - -/// The folder path. If present the first folder is the root folder. -@property (nonatomic, readonly, nullable) NSArray *folders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderSharingPolicyType The sharing policy of the folder containing -/// the Paper doc. -/// @param folders The folder path. If present the first folder is the root -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderSharingPolicyType:(nullable DBPAPERFolderSharingPolicyType *)folderSharingPolicyType - folders:(nullable NSArray *)folders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FoldersContainingPaperDoc` struct. -/// -@interface DBPAPERFoldersContainingPaperDocSerializer : NSObject - -/// -/// Serializes `DBPAPERFoldersContainingPaperDoc` instances. -/// -/// @param instance An instance of the `DBPAPERFoldersContainingPaperDoc` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERFoldersContainingPaperDoc` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERFoldersContainingPaperDoc *)instance; - -/// -/// Deserializes `DBPAPERFoldersContainingPaperDoc` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERFoldersContainingPaperDoc` API object. -/// -/// @return An instantiation of the `DBPAPERFoldersContainingPaperDoc` object. -/// -+ (DBPAPERFoldersContainingPaperDoc *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERImportFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERImportFormat.h deleted file mode 100644 index 558522ca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERImportFormat.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERImportFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ImportFormat` union. -/// -/// The import format of the incoming data. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERImportFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERImportFormatTag` enum type represents the possible tag states -/// with which the `DBPAPERImportFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERImportFormatTag) { - /// The provided data is interpreted as standard HTML. - DBPAPERImportFormatHtml, - - /// The provided data is interpreted as markdown. The first line of the - /// provided document will be used as the doc title. - DBPAPERImportFormatMarkdown, - - /// The provided data is interpreted as plain text. The first line of the - /// provided document will be used as the doc title. - DBPAPERImportFormatPlainText, - - /// (no description). - DBPAPERImportFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERImportFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "html". -/// -/// Description of the "html" tag state: The provided data is interpreted as -/// standard HTML. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// Description of the "markdown" tag state: The provided data is interpreted as -/// markdown. The first line of the provided document will be used as the doc -/// title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "plain_text". -/// -/// Description of the "plain_text" tag state: The provided data is interpreted -/// as plain text. The first line of the provided document will be used as the -/// doc title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlainText; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "plain_text". -/// -/// @return Whether the union's current tag state has value "plain_text". -/// -- (BOOL)isPlainText; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERImportFormat` union. -/// -@interface DBPAPERImportFormatSerializer : NSObject - -/// -/// Serializes `DBPAPERImportFormat` instances. -/// -/// @param instance An instance of the `DBPAPERImportFormat` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERImportFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERImportFormat *)instance; - -/// -/// Deserializes `DBPAPERImportFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERImportFormat` API object. -/// -/// @return An instantiation of the `DBPAPERImportFormat` object. -/// -+ (DBPAPERImportFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERInviteeInfoWithPermissionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERInviteeInfoWithPermissionLevel.h deleted file mode 100644 index 199767b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERInviteeInfoWithPermissionLevel.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERInviteeInfoWithPermissionLevel; -@class DBPAPERPaperDocPermissionLevel; -@class DBSHARINGInviteeInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteeInfoWithPermissionLevel` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERInviteeInfoWithPermissionLevel : NSObject - -#pragma mark - Instance fields - -/// Email address invited to the Paper doc. -@property (nonatomic, readonly) DBSHARINGInviteeInfo *invitee; - -/// Permission level for the invitee. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *permissionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitee Email address invited to the Paper doc. -/// @param permissionLevel Permission level for the invitee. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitee:(DBSHARINGInviteeInfo *)invitee - permissionLevel:(DBPAPERPaperDocPermissionLevel *)permissionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteeInfoWithPermissionLevel` struct. -/// -@interface DBPAPERInviteeInfoWithPermissionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERInviteeInfoWithPermissionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERInviteeInfoWithPermissionLevel` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERInviteeInfoWithPermissionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERInviteeInfoWithPermissionLevel *)instance; - -/// -/// Deserializes `DBPAPERInviteeInfoWithPermissionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERInviteeInfoWithPermissionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERInviteeInfoWithPermissionLevel` -/// object. -/// -+ (DBPAPERInviteeInfoWithPermissionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListDocsCursorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListDocsCursorError.h deleted file mode 100644 index 4e1ddc23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListDocsCursorError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListDocsCursorError; -@class DBPAPERPaperApiCursorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListDocsCursorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListDocsCursorError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListDocsCursorErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERListDocsCursorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListDocsCursorErrorTag) { - /// (no description). - DBPAPERListDocsCursorErrorCursorError, - - /// (no description). - DBPAPERListDocsCursorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListDocsCursorErrorTag tag; - -/// (no description). @note Ensure the `isCursorError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBPAPERPaperApiCursorError *cursorError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "cursor_error". -/// -/// @param cursorError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursorError:(DBPAPERPaperApiCursorError *)cursorError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "cursor_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cursorError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "cursor_error". -/// -- (BOOL)isCursorError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListDocsCursorError` union. -/// -@interface DBPAPERListDocsCursorErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERListDocsCursorError` instances. -/// -/// @param instance An instance of the `DBPAPERListDocsCursorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListDocsCursorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListDocsCursorError *)instance; - -/// -/// Deserializes `DBPAPERListDocsCursorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListDocsCursorError` API object. -/// -/// @return An instantiation of the `DBPAPERListDocsCursorError` object. -/// -+ (DBPAPERListDocsCursorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsArgs.h deleted file mode 100644 index da817dde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsArgs.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsArgs; -@class DBPAPERListPaperDocsFilterBy; -@class DBPAPERListPaperDocsSortBy; -@class DBPAPERListPaperDocsSortOrder; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsArgs : NSObject - -#pragma mark - Instance fields - -/// Allows user to specify how the Paper docs should be filtered. -@property (nonatomic, readonly) DBPAPERListPaperDocsFilterBy *filterBy; - -/// Allows user to specify how the Paper docs should be sorted. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortBy *sortBy; - -/// Allows user to specify the sort order of the result. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortOrder *sortOrder; - -/// Size limit per batch. The maximum number of docs that can be retrieved per -/// batch is 1000. Higher value results in invalid arguments error. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param filterBy Allows user to specify how the Paper docs should be -/// filtered. -/// @param sortBy Allows user to specify how the Paper docs should be sorted. -/// @param sortOrder Allows user to specify the sort order of the result. -/// @param limit Size limit per batch. The maximum number of docs that can be -/// retrieved per batch is 1000. Higher value results in invalid arguments -/// error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilterBy:(nullable DBPAPERListPaperDocsFilterBy *)filterBy - sortBy:(nullable DBPAPERListPaperDocsSortBy *)sortBy - sortOrder:(nullable DBPAPERListPaperDocsSortOrder *)sortOrder - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListPaperDocsArgs` struct. -/// -@interface DBPAPERListPaperDocsArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsArgs *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsArgs` object. -/// -+ (DBPAPERListPaperDocsArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsContinueArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsContinueArgs.h deleted file mode 100644 index 5d06ef5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsContinueArgs.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsContinueArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsContinueArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsContinueArgs : NSObject - -#pragma mark - Instance fields - -/// The cursor obtained from `docsList` or `docsListContinue`. Allows for -/// pagination. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor obtained from `docsList` or `docsListContinue`. -/// Allows for pagination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListPaperDocsContinueArgs` struct. -/// -@interface DBPAPERListPaperDocsContinueArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsContinueArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsContinueArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsContinueArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsContinueArgs *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsContinueArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsContinueArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsContinueArgs` object. -/// -+ (DBPAPERListPaperDocsContinueArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsFilterBy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsFilterBy.h deleted file mode 100644 index 7ee189d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsFilterBy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsFilterBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsFilterBy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsFilterBy : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListPaperDocsFilterByTag` enum type represents the possible tag -/// states with which the `DBPAPERListPaperDocsFilterBy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListPaperDocsFilterByTag) { - /// Fetches all Paper doc IDs that the user has ever accessed. - DBPAPERListPaperDocsFilterByDocsAccessed, - - /// Fetches only the Paper doc IDs that the user has created. - DBPAPERListPaperDocsFilterByDocsCreated, - - /// (no description). - DBPAPERListPaperDocsFilterByOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListPaperDocsFilterByTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "docs_accessed". -/// -/// Description of the "docs_accessed" tag state: Fetches all Paper doc IDs that -/// the user has ever accessed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocsAccessed; - -/// -/// Initializes union class with tag state of "docs_created". -/// -/// Description of the "docs_created" tag state: Fetches only the Paper doc IDs -/// that the user has created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocsCreated; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "docs_accessed". -/// -/// @return Whether the union's current tag state has value "docs_accessed". -/// -- (BOOL)isDocsAccessed; - -/// -/// Retrieves whether the union's current tag state has value "docs_created". -/// -/// @return Whether the union's current tag state has value "docs_created". -/// -- (BOOL)isDocsCreated; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListPaperDocsFilterBy` union. -/// -@interface DBPAPERListPaperDocsFilterBySerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsFilterBy` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsFilterBy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsFilterBy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsFilterBy *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsFilterBy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsFilterBy` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsFilterBy` object. -/// -+ (DBPAPERListPaperDocsFilterBy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsResponse.h deleted file mode 100644 index d39439e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsResponse.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; -@class DBPAPERListPaperDocsResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsResponse : NSObject - -#pragma mark - Instance fields - -/// The list of Paper doc IDs that can be used to access the given Paper docs or -/// supplied to other API methods. The list is sorted in the order specified by -/// the initial call to `docsList`. -@property (nonatomic, readonly) NSArray *docIds; - -/// Pass the cursor into `docsListContinue` to paginate through all files. The -/// cursor preserves all properties as specified in the original call to -/// `docsList`. -@property (nonatomic, readonly) DBPAPERCursor *cursor; - -/// Will be set to True if a subsequent call with the provided cursor to -/// `docsListContinue` returns immediately with some results. If set to False -/// please allow some delay before making another call to `docsListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docIds The list of Paper doc IDs that can be used to access the given -/// Paper docs or supplied to other API methods. The list is sorted in the order -/// specified by the initial call to `docsList`. -/// @param cursor Pass the cursor into `docsListContinue` to paginate through -/// all files. The cursor preserves all properties as specified in the original -/// call to `docsList`. -/// @param hasMore Will be set to True if a subsequent call with the provided -/// cursor to `docsListContinue` returns immediately with some results. If set -/// to False please allow some delay before making another call to -/// `docsListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocIds:(NSArray *)docIds cursor:(DBPAPERCursor *)cursor hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListPaperDocsResponse` struct. -/// -@interface DBPAPERListPaperDocsResponseSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsResponse` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsResponse *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsResponse` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsResponse` object. -/// -+ (DBPAPERListPaperDocsResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsSortBy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsSortBy.h deleted file mode 100644 index e8dfa5e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsSortBy.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsSortBy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsSortBy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsSortBy : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListPaperDocsSortByTag` enum type represents the possible tag -/// states with which the `DBPAPERListPaperDocsSortBy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListPaperDocsSortByTag) { - /// Sorts the Paper docs by the time they were last accessed. - DBPAPERListPaperDocsSortByAccessed, - - /// Sorts the Paper docs by the time they were last modified. - DBPAPERListPaperDocsSortByModified, - - /// Sorts the Paper docs by the creation time. - DBPAPERListPaperDocsSortByCreated, - - /// (no description). - DBPAPERListPaperDocsSortByOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortByTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "accessed". -/// -/// Description of the "accessed" tag state: Sorts the Paper docs by the time -/// they were last accessed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessed; - -/// -/// Initializes union class with tag state of "modified". -/// -/// Description of the "modified" tag state: Sorts the Paper docs by the time -/// they were last modified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithModified; - -/// -/// Initializes union class with tag state of "created". -/// -/// Description of the "created" tag state: Sorts the Paper docs by the creation -/// time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "accessed". -/// -/// @return Whether the union's current tag state has value "accessed". -/// -- (BOOL)isAccessed; - -/// -/// Retrieves whether the union's current tag state has value "modified". -/// -/// @return Whether the union's current tag state has value "modified". -/// -- (BOOL)isModified; - -/// -/// Retrieves whether the union's current tag state has value "created". -/// -/// @return Whether the union's current tag state has value "created". -/// -- (BOOL)isCreated; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListPaperDocsSortBy` union. -/// -@interface DBPAPERListPaperDocsSortBySerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsSortBy` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsSortBy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortBy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsSortBy *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsSortBy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortBy` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsSortBy` object. -/// -+ (DBPAPERListPaperDocsSortBy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsSortOrder.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsSortOrder.h deleted file mode 100644 index a5918ca5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListPaperDocsSortOrder.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListPaperDocsSortOrder; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListPaperDocsSortOrder` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListPaperDocsSortOrder : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListPaperDocsSortOrderTag` enum type represents the possible tag -/// states with which the `DBPAPERListPaperDocsSortOrder` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListPaperDocsSortOrderTag) { - /// Sorts the search result in ascending order. - DBPAPERListPaperDocsSortOrderAscending, - - /// Sorts the search result in descending order. - DBPAPERListPaperDocsSortOrderDescending, - - /// (no description). - DBPAPERListPaperDocsSortOrderOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListPaperDocsSortOrderTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "ascending". -/// -/// Description of the "ascending" tag state: Sorts the search result in -/// ascending order. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAscending; - -/// -/// Initializes union class with tag state of "descending". -/// -/// Description of the "descending" tag state: Sorts the search result in -/// descending order. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescending; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "ascending". -/// -/// @return Whether the union's current tag state has value "ascending". -/// -- (BOOL)isAscending; - -/// -/// Retrieves whether the union's current tag state has value "descending". -/// -/// @return Whether the union's current tag state has value "descending". -/// -- (BOOL)isDescending; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListPaperDocsSortOrder` union. -/// -@interface DBPAPERListPaperDocsSortOrderSerializer : NSObject - -/// -/// Serializes `DBPAPERListPaperDocsSortOrder` instances. -/// -/// @param instance An instance of the `DBPAPERListPaperDocsSortOrder` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortOrder` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListPaperDocsSortOrder *)instance; - -/// -/// Deserializes `DBPAPERListPaperDocsSortOrder` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListPaperDocsSortOrder` API object. -/// -/// @return An instantiation of the `DBPAPERListPaperDocsSortOrder` object. -/// -+ (DBPAPERListPaperDocsSortOrder *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersCursorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersCursorError.h deleted file mode 100644 index e4645ccc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersCursorError.h +++ /dev/null @@ -1,172 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersCursorError; -@class DBPAPERPaperApiCursorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersCursorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersCursorError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERListUsersCursorErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERListUsersCursorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERListUsersCursorErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERListUsersCursorErrorInsufficientPermissions, - - /// (no description). - DBPAPERListUsersCursorErrorOther, - - /// The required doc was not found. - DBPAPERListUsersCursorErrorDocNotFound, - - /// (no description). - DBPAPERListUsersCursorErrorCursorError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERListUsersCursorErrorTag tag; - -/// (no description). @note Ensure the `isCursorError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBPAPERPaperApiCursorError *cursorError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "doc_not_found". -/// -/// Description of the "doc_not_found" tag state: The required doc was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocNotFound; - -/// -/// Initializes union class with tag state of "cursor_error". -/// -/// @param cursorError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursorError:(DBPAPERPaperApiCursorError *)cursorError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "doc_not_found". -/// -/// @return Whether the union's current tag state has value "doc_not_found". -/// -- (BOOL)isDocNotFound; - -/// -/// Retrieves whether the union's current tag state has value "cursor_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cursorError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "cursor_error". -/// -- (BOOL)isCursorError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERListUsersCursorError` union. -/// -@interface DBPAPERListUsersCursorErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersCursorError` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersCursorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersCursorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersCursorError *)instance; - -/// -/// Deserializes `DBPAPERListUsersCursorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersCursorError` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersCursorError` object. -/// -+ (DBPAPERListUsersCursorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderArgs.h deleted file mode 100644 index 5b344a8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderArgs.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnFolderArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnFolderArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnFolderArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// Size limit per batch. The maximum number of users that can be retrieved per -/// batch is 1000. Higher value results in invalid arguments error. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param limit Size limit per batch. The maximum number of users that can be -/// retrieved per batch is 1000. Higher value results in invalid arguments -/// error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param docId The Paper doc ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnFolderArgs` struct. -/// -@interface DBPAPERListUsersOnFolderArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnFolderArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnFolderArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnFolderArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnFolderArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnFolderArgs` object. -/// -+ (DBPAPERListUsersOnFolderArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderContinueArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderContinueArgs.h deleted file mode 100644 index 82f2b572..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderContinueArgs.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnFolderContinueArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnFolderContinueArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnFolderContinueArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The cursor obtained from `docsFolderUsersList` or -/// `docsFolderUsersListContinue`. Allows for pagination. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param cursor The cursor obtained from `docsFolderUsersList` or -/// `docsFolderUsersListContinue`. Allows for pagination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId cursor:(NSString *)cursor; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnFolderContinueArgs` struct. -/// -@interface DBPAPERListUsersOnFolderContinueArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnFolderContinueArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnFolderContinueArgs` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderContinueArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnFolderContinueArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnFolderContinueArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderContinueArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnFolderContinueArgs` -/// object. -/// -+ (DBPAPERListUsersOnFolderContinueArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderResponse.h deleted file mode 100644 index 3cd4e118..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnFolderResponse.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; -@class DBPAPERListUsersOnFolderResponse; -@class DBSHARINGInviteeInfo; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnFolderResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnFolderResponse : NSObject - -#pragma mark - Instance fields - -/// List of email addresses that are invited on the Paper folder. -@property (nonatomic, readonly) NSArray *invitees; - -/// List of users that are invited on the Paper folder. -@property (nonatomic, readonly) NSArray *users; - -/// Pass the cursor into `docsFolderUsersListContinue` to paginate through all -/// users. The cursor preserves all properties as specified in the original call -/// to `docsFolderUsersList`. -@property (nonatomic, readonly) DBPAPERCursor *cursor; - -/// Will be set to True if a subsequent call with the provided cursor to -/// `docsFolderUsersListContinue` returns immediately with some results. If set -/// to False please allow some delay before making another call to -/// `docsFolderUsersListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitees List of email addresses that are invited on the Paper -/// folder. -/// @param users List of users that are invited on the Paper folder. -/// @param cursor Pass the cursor into `docsFolderUsersListContinue` to paginate -/// through all users. The cursor preserves all properties as specified in the -/// original call to `docsFolderUsersList`. -/// @param hasMore Will be set to True if a subsequent call with the provided -/// cursor to `docsFolderUsersListContinue` returns immediately with some -/// results. If set to False please allow some delay before making another call -/// to `docsFolderUsersListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitees:(NSArray *)invitees - users:(NSArray *)users - cursor:(DBPAPERCursor *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnFolderResponse` struct. -/// -@interface DBPAPERListUsersOnFolderResponseSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnFolderResponse` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnFolderResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnFolderResponse *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnFolderResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnFolderResponse` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnFolderResponse` object. -/// -+ (DBPAPERListUsersOnFolderResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocArgs.h deleted file mode 100644 index 0aaebcda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocArgs.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnPaperDocArgs; -@class DBPAPERUserOnPaperDocFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnPaperDocArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnPaperDocArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// Size limit per batch. The maximum number of users that can be retrieved per -/// batch is 1000. Higher value results in invalid arguments error. -@property (nonatomic, readonly) NSNumber *limit; - -/// Specify this attribute if you want to obtain users that have already -/// accessed the Paper doc. -@property (nonatomic, readonly) DBPAPERUserOnPaperDocFilter *filterBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param limit Size limit per batch. The maximum number of users that can be -/// retrieved per batch is 1000. Higher value results in invalid arguments -/// error. -/// @param filterBy Specify this attribute if you want to obtain users that have -/// already accessed the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId - limit:(nullable NSNumber *)limit - filterBy:(nullable DBPAPERUserOnPaperDocFilter *)filterBy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param docId The Paper doc ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnPaperDocArgs` struct. -/// -@interface DBPAPERListUsersOnPaperDocArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnPaperDocArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnPaperDocArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnPaperDocArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnPaperDocArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnPaperDocArgs` object. -/// -+ (DBPAPERListUsersOnPaperDocArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocContinueArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocContinueArgs.h deleted file mode 100644 index 722065b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocContinueArgs.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERListUsersOnPaperDocContinueArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnPaperDocContinueArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnPaperDocContinueArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The cursor obtained from `docsUsersList` or `docsUsersListContinue`. Allows -/// for pagination. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param cursor The cursor obtained from `docsUsersList` or -/// `docsUsersListContinue`. Allows for pagination. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId cursor:(NSString *)cursor; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnPaperDocContinueArgs` struct. -/// -@interface DBPAPERListUsersOnPaperDocContinueArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnPaperDocContinueArgs` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnPaperDocContinueArgs` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocContinueArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnPaperDocContinueArgs *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnPaperDocContinueArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocContinueArgs` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnPaperDocContinueArgs` -/// object. -/// -+ (DBPAPERListUsersOnPaperDocContinueArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocResponse.h deleted file mode 100644 index ff8d3db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERListUsersOnPaperDocResponse.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERCursor; -@class DBPAPERInviteeInfoWithPermissionLevel; -@class DBPAPERListUsersOnPaperDocResponse; -@class DBPAPERUserInfoWithPermissionLevel; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListUsersOnPaperDocResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERListUsersOnPaperDocResponse : NSObject - -#pragma mark - Instance fields - -/// List of email addresses with their respective permission levels that are -/// invited on the Paper doc. -@property (nonatomic, readonly) NSArray *invitees; - -/// List of users with their respective permission levels that are invited on -/// the Paper folder. -@property (nonatomic, readonly) NSArray *users; - -/// The Paper doc owner. This field is populated on every single response. -@property (nonatomic, readonly) DBSHARINGUserInfo *docOwner; - -/// Pass the cursor into `docsUsersListContinue` to paginate through all users. -/// The cursor preserves all properties as specified in the original call to -/// `docsUsersList`. -@property (nonatomic, readonly) DBPAPERCursor *cursor; - -/// Will be set to True if a subsequent call with the provided cursor to -/// `docsUsersListContinue` returns immediately with some results. If set to -/// False please allow some delay before making another call to -/// `docsUsersListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitees List of email addresses with their respective permission -/// levels that are invited on the Paper doc. -/// @param users List of users with their respective permission levels that are -/// invited on the Paper folder. -/// @param docOwner The Paper doc owner. This field is populated on every single -/// response. -/// @param cursor Pass the cursor into `docsUsersListContinue` to paginate -/// through all users. The cursor preserves all properties as specified in the -/// original call to `docsUsersList`. -/// @param hasMore Will be set to True if a subsequent call with the provided -/// cursor to `docsUsersListContinue` returns immediately with some results. If -/// set to False please allow some delay before making another call to -/// `docsUsersListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitees:(NSArray *)invitees - users:(NSArray *)users - docOwner:(DBSHARINGUserInfo *)docOwner - cursor:(DBPAPERCursor *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListUsersOnPaperDocResponse` struct. -/// -@interface DBPAPERListUsersOnPaperDocResponseSerializer : NSObject - -/// -/// Serializes `DBPAPERListUsersOnPaperDocResponse` instances. -/// -/// @param instance An instance of the `DBPAPERListUsersOnPaperDocResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERListUsersOnPaperDocResponse *)instance; - -/// -/// Deserializes `DBPAPERListUsersOnPaperDocResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERListUsersOnPaperDocResponse` API object. -/// -/// @return An instantiation of the `DBPAPERListUsersOnPaperDocResponse` object. -/// -+ (DBPAPERListUsersOnPaperDocResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperApiBaseError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperApiBaseError.h deleted file mode 100644 index 2b30ee1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperApiBaseError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperApiBaseError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperApiBaseError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperApiBaseError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperApiBaseErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperApiBaseError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperApiBaseErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperApiBaseErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperApiBaseErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperApiBaseErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperApiBaseError` union. -/// -@interface DBPAPERPaperApiBaseErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperApiBaseError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperApiBaseError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperApiBaseError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperApiBaseError *)instance; - -/// -/// Deserializes `DBPAPERPaperApiBaseError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperApiBaseError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperApiBaseError` object. -/// -+ (DBPAPERPaperApiBaseError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperApiCursorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperApiCursorError.h deleted file mode 100644 index 08041dc3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperApiCursorError.h +++ /dev/null @@ -1,181 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperApiCursorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperApiCursorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperApiCursorError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperApiCursorErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperApiCursorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperApiCursorErrorTag) { - /// The provided cursor is expired. - DBPAPERPaperApiCursorErrorExpiredCursor, - - /// The provided cursor is invalid. - DBPAPERPaperApiCursorErrorInvalidCursor, - - /// The provided cursor contains invalid user. - DBPAPERPaperApiCursorErrorWrongUserInCursor, - - /// Indicates that the cursor has been invalidated. Call the corresponding - /// non-continue endpoint to obtain a new cursor. - DBPAPERPaperApiCursorErrorReset, - - /// (no description). - DBPAPERPaperApiCursorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperApiCursorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "expired_cursor". -/// -/// Description of the "expired_cursor" tag state: The provided cursor is -/// expired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExpiredCursor; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The provided cursor is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "wrong_user_in_cursor". -/// -/// Description of the "wrong_user_in_cursor" tag state: The provided cursor -/// contains invalid user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWrongUserInCursor; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call the corresponding non-continue endpoint to obtain a new -/// cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "expired_cursor". -/// -/// @return Whether the union's current tag state has value "expired_cursor". -/// -- (BOOL)isExpiredCursor; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value -/// "wrong_user_in_cursor". -/// -/// @return Whether the union's current tag state has value -/// "wrong_user_in_cursor". -/// -- (BOOL)isWrongUserInCursor; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperApiCursorError` union. -/// -@interface DBPAPERPaperApiCursorErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperApiCursorError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperApiCursorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperApiCursorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperApiCursorError *)instance; - -/// -/// Deserializes `DBPAPERPaperApiCursorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperApiCursorError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperApiCursorError` object. -/// -+ (DBPAPERPaperApiCursorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateArgs.h deleted file mode 100644 index 1cc9e681..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateArgs.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERImportFormat; -@class DBPAPERPaperDocCreateArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocCreateArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocCreateArgs : NSObject - -#pragma mark - Instance fields - -/// The Paper folder ID where the Paper document should be created. The API user -/// has to have write access to this folder or error is thrown. -@property (nonatomic, readonly, copy, nullable) NSString *parentFolderId; - -/// The format of provided data. -@property (nonatomic, readonly) DBPAPERImportFormat *importFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param importFormat The format of provided data. -/// @param parentFolderId The Paper folder ID where the Paper document should be -/// created. The API user has to have write access to this folder or error is -/// thrown. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImportFormat:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param importFormat The format of provided data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImportFormat:(DBPAPERImportFormat *)importFormat; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocCreateArgs` struct. -/// -@interface DBPAPERPaperDocCreateArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocCreateArgs` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocCreateArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocCreateArgs *)instance; - -/// -/// Deserializes `DBPAPERPaperDocCreateArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateArgs` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocCreateArgs` object. -/// -+ (DBPAPERPaperDocCreateArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateError.h deleted file mode 100644 index 698d0750..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateError.h +++ /dev/null @@ -1,214 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocCreateErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperDocCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocCreateErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperDocCreateErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperDocCreateErrorOther, - - /// The provided content was malformed and cannot be imported to Paper. - DBPAPERPaperDocCreateErrorContentMalformed, - - /// The specified Paper folder is cannot be found. - DBPAPERPaperDocCreateErrorFolderNotFound, - - /// The newly created Paper doc would be too large. Please split the content - /// into multiple docs. - DBPAPERPaperDocCreateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBPAPERPaperDocCreateErrorImageSizeExceeded, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "folder_not_found". -/// -/// Description of the "folder_not_found" tag state: The specified Paper folder -/// is cannot be found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNotFound; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The newly created Paper -/// doc would be too large. Please split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_not_found". -/// -/// @return Whether the union's current tag state has value "folder_not_found". -/// -- (BOOL)isFolderNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocCreateError` union. -/// -@interface DBPAPERPaperDocCreateErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocCreateError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocCreateError *)instance; - -/// -/// Deserializes `DBPAPERPaperDocCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocCreateError` object. -/// -+ (DBPAPERPaperDocCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateUpdateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateUpdateResult.h deleted file mode 100644 index d9c06d09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocCreateUpdateResult.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocCreateUpdateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocCreateUpdateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocCreateUpdateResult : NSObject - -#pragma mark - Instance fields - -/// Doc ID of the newly created doc. -@property (nonatomic, readonly, copy) NSString *docId; - -/// The Paper doc revision. Simply an ever increasing number. -@property (nonatomic, readonly) NSNumber *revision; - -/// The Paper doc title. -@property (nonatomic, readonly, copy) NSString *title; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId Doc ID of the newly created doc. -/// @param revision The Paper doc revision. Simply an ever increasing number. -/// @param title The Paper doc title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId revision:(NSNumber *)revision title:(NSString *)title; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocCreateUpdateResult` struct. -/// -@interface DBPAPERPaperDocCreateUpdateResultSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocCreateUpdateResult` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocCreateUpdateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateUpdateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocCreateUpdateResult *)instance; - -/// -/// Deserializes `DBPAPERPaperDocCreateUpdateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocCreateUpdateResult` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocCreateUpdateResult` object. -/// -+ (DBPAPERPaperDocCreateUpdateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocExport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocExport.h deleted file mode 100644 index 3c5d4279..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocExport.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERExportFormat; -@class DBPAPERPaperDocExport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocExport` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocExport : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBPAPERExportFormat *exportFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param exportFormat (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId exportFormat:(DBPAPERExportFormat *)exportFormat; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocExport` struct. -/// -@interface DBPAPERPaperDocExportSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocExport` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocExport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocExport *)instance; - -/// -/// Deserializes `DBPAPERPaperDocExport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExport` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocExport` object. -/// -+ (DBPAPERPaperDocExport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocExportResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocExportResult.h deleted file mode 100644 index 8a21313d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocExportResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocExportResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocExportResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocExportResult : NSObject - -#pragma mark - Instance fields - -/// The Paper doc owner's email address. -@property (nonatomic, readonly, copy) NSString *owner; - -/// The Paper doc title. -@property (nonatomic, readonly, copy) NSString *title; - -/// The Paper doc revision. Simply an ever increasing number. -@property (nonatomic, readonly) NSNumber *revision; - -/// MIME type of the export. This corresponds to ExportFormat specified in the -/// request. -@property (nonatomic, readonly, copy) NSString *mimeType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param owner The Paper doc owner's email address. -/// @param title The Paper doc title. -/// @param revision The Paper doc revision. Simply an ever increasing number. -/// @param mimeType MIME type of the export. This corresponds to ExportFormat -/// specified in the request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner:(NSString *)owner - title:(NSString *)title - revision:(NSNumber *)revision - mimeType:(NSString *)mimeType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocExportResult` struct. -/// -@interface DBPAPERPaperDocExportResultSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocExportResult` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocExportResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExportResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocExportResult *)instance; - -/// -/// Deserializes `DBPAPERPaperDocExportResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocExportResult` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocExportResult` object. -/// -+ (DBPAPERPaperDocExportResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocPermissionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocPermissionLevel.h deleted file mode 100644 index 1fd0e599..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocPermissionLevel.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocPermissionLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocPermissionLevel` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocPermissionLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocPermissionLevelTag` enum type represents the possible -/// tag states with which the `DBPAPERPaperDocPermissionLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocPermissionLevelTag) { - /// User will be granted edit permissions. - DBPAPERPaperDocPermissionLevelEdit, - - /// User will be granted view and comment permissions. - DBPAPERPaperDocPermissionLevelViewAndComment, - - /// (no description). - DBPAPERPaperDocPermissionLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "edit". -/// -/// Description of the "edit" tag state: User will be granted edit permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEdit; - -/// -/// Initializes union class with tag state of "view_and_comment". -/// -/// Description of the "view_and_comment" tag state: User will be granted view -/// and comment permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewAndComment; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "edit". -/// -/// @return Whether the union's current tag state has value "edit". -/// -- (BOOL)isEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "view_and_comment". -/// -/// @return Whether the union's current tag state has value "view_and_comment". -/// -- (BOOL)isViewAndComment; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocPermissionLevel` union. -/// -@interface DBPAPERPaperDocPermissionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocPermissionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocPermissionLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocPermissionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocPermissionLevel *)instance; - -/// -/// Deserializes `DBPAPERPaperDocPermissionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocPermissionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocPermissionLevel` object. -/// -+ (DBPAPERPaperDocPermissionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocSharingPolicy.h deleted file mode 100644 index e0753c6c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocSharingPolicy.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocSharingPolicy; -@class DBPAPERSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocSharingPolicy` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocSharingPolicy : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The default sharing policy to be set for the Paper doc. -@property (nonatomic, readonly) DBPAPERSharingPolicy *sharingPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param sharingPolicy The default sharing policy to be set for the Paper doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId sharingPolicy:(DBPAPERSharingPolicy *)sharingPolicy; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocSharingPolicy` struct. -/// -@interface DBPAPERPaperDocSharingPolicySerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocSharingPolicy` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocSharingPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocSharingPolicy *)instance; - -/// -/// Deserializes `DBPAPERPaperDocSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocSharingPolicy` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocSharingPolicy` object. -/// -+ (DBPAPERPaperDocSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdateArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdateArgs.h deleted file mode 100644 index e53b1d9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdateArgs.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERImportFormat; -@class DBPAPERPaperDocUpdateArgs; -@class DBPAPERPaperDocUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdateArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocUpdateArgs : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// The policy used for the current update call. -@property (nonatomic, readonly) DBPAPERPaperDocUpdatePolicy *docUpdatePolicy; - -/// The latest doc revision. This value must match the head revision or an error -/// code will be returned. This is to prevent colliding writes. -@property (nonatomic, readonly) NSNumber *revision; - -/// The format of provided data. -@property (nonatomic, readonly) DBPAPERImportFormat *importFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head -/// revision or an error code will be returned. This is to prevent colliding -/// writes. -/// @param importFormat The format of provided data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUpdateArgs` struct. -/// -@interface DBPAPERPaperDocUpdateArgsSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocUpdateArgs` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocUpdateArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocUpdateArgs *)instance; - -/// -/// Deserializes `DBPAPERPaperDocUpdateArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateArgs` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocUpdateArgs` object. -/// -+ (DBPAPERPaperDocUpdateArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdateError.h deleted file mode 100644 index 5bf354b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdateError.h +++ /dev/null @@ -1,274 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocUpdateErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperDocUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocUpdateErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperDocUpdateErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperDocUpdateErrorOther, - - /// The required doc was not found. - DBPAPERPaperDocUpdateErrorDocNotFound, - - /// The provided content was malformed and cannot be imported to Paper. - DBPAPERPaperDocUpdateErrorContentMalformed, - - /// The provided revision does not match the document head. - DBPAPERPaperDocUpdateErrorRevisionMismatch, - - /// The newly created Paper doc would be too large, split the content into - /// multiple docs. - DBPAPERPaperDocUpdateErrorDocLengthExceeded, - - /// The imported document contains an image that is too large. The current - /// limit is 1MB. This only applies to HTML with data URI. - DBPAPERPaperDocUpdateErrorImageSizeExceeded, - - /// This operation is not allowed on archived Paper docs. - DBPAPERPaperDocUpdateErrorDocArchived, - - /// This operation is not allowed on deleted Paper docs. - DBPAPERPaperDocUpdateErrorDocDeleted, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "doc_not_found". -/// -/// Description of the "doc_not_found" tag state: The required doc was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocNotFound; - -/// -/// Initializes union class with tag state of "content_malformed". -/// -/// Description of the "content_malformed" tag state: The provided content was -/// malformed and cannot be imported to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentMalformed; - -/// -/// Initializes union class with tag state of "revision_mismatch". -/// -/// Description of the "revision_mismatch" tag state: The provided revision does -/// not match the document head. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevisionMismatch; - -/// -/// Initializes union class with tag state of "doc_length_exceeded". -/// -/// Description of the "doc_length_exceeded" tag state: The newly created Paper -/// doc would be too large, split the content into multiple docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocLengthExceeded; - -/// -/// Initializes union class with tag state of "image_size_exceeded". -/// -/// Description of the "image_size_exceeded" tag state: The imported document -/// contains an image that is too large. The current limit is 1MB. This only -/// applies to HTML with data URI. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImageSizeExceeded; - -/// -/// Initializes union class with tag state of "doc_archived". -/// -/// Description of the "doc_archived" tag state: This operation is not allowed -/// on archived Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocArchived; - -/// -/// Initializes union class with tag state of "doc_deleted". -/// -/// Description of the "doc_deleted" tag state: This operation is not allowed on -/// deleted Paper docs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocDeleted; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "doc_not_found". -/// -/// @return Whether the union's current tag state has value "doc_not_found". -/// -- (BOOL)isDocNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_malformed". -/// -/// @return Whether the union's current tag state has value "content_malformed". -/// -- (BOOL)isContentMalformed; - -/// -/// Retrieves whether the union's current tag state has value -/// "revision_mismatch". -/// -/// @return Whether the union's current tag state has value "revision_mismatch". -/// -- (BOOL)isRevisionMismatch; - -/// -/// Retrieves whether the union's current tag state has value -/// "doc_length_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "doc_length_exceeded". -/// -- (BOOL)isDocLengthExceeded; - -/// -/// Retrieves whether the union's current tag state has value -/// "image_size_exceeded". -/// -/// @return Whether the union's current tag state has value -/// "image_size_exceeded". -/// -- (BOOL)isImageSizeExceeded; - -/// -/// Retrieves whether the union's current tag state has value "doc_archived". -/// -/// @return Whether the union's current tag state has value "doc_archived". -/// -- (BOOL)isDocArchived; - -/// -/// Retrieves whether the union's current tag state has value "doc_deleted". -/// -/// @return Whether the union's current tag state has value "doc_deleted". -/// -- (BOOL)isDocDeleted; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocUpdateError` union. -/// -@interface DBPAPERPaperDocUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocUpdateError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocUpdateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocUpdateError *)instance; - -/// -/// Deserializes `DBPAPERPaperDocUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdateError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocUpdateError` object. -/// -+ (DBPAPERPaperDocUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdatePolicy.h deleted file mode 100644 index 9f057496..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperDocUpdatePolicy.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUpdatePolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperDocUpdatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperDocUpdatePolicyTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperDocUpdatePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperDocUpdatePolicyTag) { - /// The content will be appended to the doc. - DBPAPERPaperDocUpdatePolicyAppend, - - /// The content will be prepended to the doc. The doc title will not be - /// affected. - DBPAPERPaperDocUpdatePolicyPrepend, - - /// The document will be overwitten at the head with the provided content. - DBPAPERPaperDocUpdatePolicyOverwriteAll, - - /// (no description). - DBPAPERPaperDocUpdatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperDocUpdatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "append". -/// -/// Description of the "append" tag state: The content will be appended to the -/// doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppend; - -/// -/// Initializes union class with tag state of "prepend". -/// -/// Description of the "prepend" tag state: The content will be prepended to the -/// doc. The doc title will not be affected. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrepend; - -/// -/// Initializes union class with tag state of "overwrite_all". -/// -/// Description of the "overwrite_all" tag state: The document will be -/// overwitten at the head with the provided content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverwriteAll; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "append". -/// -/// @return Whether the union's current tag state has value "append". -/// -- (BOOL)isAppend; - -/// -/// Retrieves whether the union's current tag state has value "prepend". -/// -/// @return Whether the union's current tag state has value "prepend". -/// -- (BOOL)isPrepend; - -/// -/// Retrieves whether the union's current tag state has value "overwrite_all". -/// -/// @return Whether the union's current tag state has value "overwrite_all". -/// -- (BOOL)isOverwriteAll; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperDocUpdatePolicy` union. -/// -@interface DBPAPERPaperDocUpdatePolicySerializer : NSObject - -/// -/// Serializes `DBPAPERPaperDocUpdatePolicy` instances. -/// -/// @param instance An instance of the `DBPAPERPaperDocUpdatePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperDocUpdatePolicy *)instance; - -/// -/// Deserializes `DBPAPERPaperDocUpdatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperDocUpdatePolicy` API object. -/// -/// @return An instantiation of the `DBPAPERPaperDocUpdatePolicy` object. -/// -+ (DBPAPERPaperDocUpdatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateArg.h deleted file mode 100644 index b31e7470..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateArg.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperFolderCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperFolderCreateArg : NSObject - -#pragma mark - Instance fields - -/// The name of the new Paper folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The encrypted Paper folder Id where the new Paper folder should be created. -/// The API user has to have write access to this folder or error is thrown. If -/// not supplied, the new folder will be created at top level. -@property (nonatomic, readonly, copy, nullable) NSString *parentFolderId; - -/// Whether the folder to be created should be a team folder. This value will be -/// ignored if parent_folder_id is supplied, as the new folder will inherit the -/// type (private or team folder) from its parent. We will by default create a -/// top-level private folder if both parent_folder_id and is_team_folder are not -/// supplied. -@property (nonatomic, readonly, nullable) NSNumber *isTeamFolder; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of the new Paper folder. -/// @param parentFolderId The encrypted Paper folder Id where the new Paper -/// folder should be created. The API user has to have write access to this -/// folder or error is thrown. If not supplied, the new folder will be created -/// at top level. -/// @param isTeamFolder Whether the folder to be created should be a team -/// folder. This value will be ignored if parent_folder_id is supplied, as the -/// new folder will inherit the type (private or team folder) from its parent. -/// We will by default create a top-level private folder if both -/// parent_folder_id and is_team_folder are not supplied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - parentFolderId:(nullable NSString *)parentFolderId - isTeamFolder:(nullable NSNumber *)isTeamFolder; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The name of the new Paper folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderCreateArg` struct. -/// -@interface DBPAPERPaperFolderCreateArgSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperFolderCreateArg` instances. -/// -/// @param instance An instance of the `DBPAPERPaperFolderCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperFolderCreateArg *)instance; - -/// -/// Deserializes `DBPAPERPaperFolderCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateArg` API object. -/// -/// @return An instantiation of the `DBPAPERPaperFolderCreateArg` object. -/// -+ (DBPAPERPaperFolderCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateError.h deleted file mode 100644 index e4b6bf3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateError.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperFolderCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperFolderCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERPaperFolderCreateErrorTag` enum type represents the possible tag -/// states with which the `DBPAPERPaperFolderCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERPaperFolderCreateErrorTag) { - /// Your account does not have permissions to perform this action. This may - /// be due to it only having access to Paper as files in the Dropbox - /// filesystem. For more information, refer to the Paper Migration Guide - /// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. - DBPAPERPaperFolderCreateErrorInsufficientPermissions, - - /// (no description). - DBPAPERPaperFolderCreateErrorOther, - - /// The specified parent Paper folder cannot be found. - DBPAPERPaperFolderCreateErrorFolderNotFound, - - /// The folder id cannot be decrypted to valid folder id. - DBPAPERPaperFolderCreateErrorInvalidFolderId, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERPaperFolderCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: Your account does -/// not have permissions to perform this action. This may be due to it only -/// having access to Paper as files in the Dropbox filesystem. For more -/// information, refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "folder_not_found". -/// -/// Description of the "folder_not_found" tag state: The specified parent Paper -/// folder cannot be found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNotFound; - -/// -/// Initializes union class with tag state of "invalid_folder_id". -/// -/// Description of the "invalid_folder_id" tag state: The folder id cannot be -/// decrypted to valid folder id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_not_found". -/// -/// @return Whether the union's current tag state has value "folder_not_found". -/// -- (BOOL)isFolderNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_folder_id". -/// -/// @return Whether the union's current tag state has value "invalid_folder_id". -/// -- (BOOL)isInvalidFolderId; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERPaperFolderCreateError` union. -/// -@interface DBPAPERPaperFolderCreateErrorSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperFolderCreateError` instances. -/// -/// @param instance An instance of the `DBPAPERPaperFolderCreateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperFolderCreateError *)instance; - -/// -/// Deserializes `DBPAPERPaperFolderCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateError` API object. -/// -/// @return An instantiation of the `DBPAPERPaperFolderCreateError` object. -/// -+ (DBPAPERPaperFolderCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateResult.h deleted file mode 100644 index bf15c7f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERPaperFolderCreateResult.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperFolderCreateResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderCreateResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERPaperFolderCreateResult : NSObject - -#pragma mark - Instance fields - -/// Folder ID of the newly created folder. -@property (nonatomic, readonly, copy) NSString *folderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderId Folder ID of the newly created folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderId:(NSString *)folderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderCreateResult` struct. -/// -@interface DBPAPERPaperFolderCreateResultSerializer : NSObject - -/// -/// Serializes `DBPAPERPaperFolderCreateResult` instances. -/// -/// @param instance An instance of the `DBPAPERPaperFolderCreateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERPaperFolderCreateResult *)instance; - -/// -/// Deserializes `DBPAPERPaperFolderCreateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERPaperFolderCreateResult` API object. -/// -/// @return An instantiation of the `DBPAPERPaperFolderCreateResult` object. -/// -+ (DBPAPERPaperFolderCreateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRefPaperDoc.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRefPaperDoc.h deleted file mode 100644 index 837d73e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRefPaperDoc.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERRefPaperDoc; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RefPaperDoc` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERRefPaperDoc : NSObject - -#pragma mark - Instance fields - -/// The Paper doc ID. -@property (nonatomic, readonly, copy) NSString *docId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RefPaperDoc` struct. -/// -@interface DBPAPERRefPaperDocSerializer : NSObject - -/// -/// Serializes `DBPAPERRefPaperDoc` instances. -/// -/// @param instance An instance of the `DBPAPERRefPaperDoc` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERRefPaperDoc` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERRefPaperDoc *)instance; - -/// -/// Deserializes `DBPAPERRefPaperDoc` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERRefPaperDoc` API object. -/// -/// @return An instantiation of the `DBPAPERRefPaperDoc` object. -/// -+ (DBPAPERRefPaperDoc *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRemovePaperDocUser.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRemovePaperDocUser.h deleted file mode 100644 index 33f72aad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRemovePaperDocUser.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBPAPERRefPaperDoc.h" -#import "DBSerializableProtocol.h" - -@class DBPAPERRemovePaperDocUser; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovePaperDocUser` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERRemovePaperDocUser : DBPAPERRefPaperDoc - -#pragma mark - Instance fields - -/// User which should be removed from the Paper doc. Specify only email address -/// or Dropbox account ID. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId The Paper doc ID. -/// @param member User which should be removed from the Paper doc. Specify only -/// email address or Dropbox account ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId member:(DBSHARINGMemberSelector *)member; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemovePaperDocUser` struct. -/// -@interface DBPAPERRemovePaperDocUserSerializer : NSObject - -/// -/// Serializes `DBPAPERRemovePaperDocUser` instances. -/// -/// @param instance An instance of the `DBPAPERRemovePaperDocUser` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERRemovePaperDocUser` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERRemovePaperDocUser *)instance; - -/// -/// Deserializes `DBPAPERRemovePaperDocUser` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERRemovePaperDocUser` API object. -/// -/// @return An instantiation of the `DBPAPERRemovePaperDocUser` object. -/// -+ (DBPAPERRemovePaperDocUser *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRouteObjects.h deleted file mode 100644 index baeac4bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERRouteObjects.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Paper namespace. Each route in the Paper -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBPAPERRouteObjects : NSObject - -/// Accessor method for the docsArchive route object. -+ (DBRoute *)DBPAPERDocsArchive; - -/// Accessor method for the docsCreate route object. -+ (DBRoute *)DBPAPERDocsCreate; - -/// Accessor method for the docsDownload route object. -+ (DBRoute *)DBPAPERDocsDownload; - -/// Accessor method for the docsFolderUsersList route object. -+ (DBRoute *)DBPAPERDocsFolderUsersList; - -/// Accessor method for the docsFolderUsersListContinue route object. -+ (DBRoute *)DBPAPERDocsFolderUsersListContinue; - -/// Accessor method for the docsGetFolderInfo route object. -+ (DBRoute *)DBPAPERDocsGetFolderInfo; - -/// Accessor method for the docsList route object. -+ (DBRoute *)DBPAPERDocsList; - -/// Accessor method for the docsListContinue route object. -+ (DBRoute *)DBPAPERDocsListContinue; - -/// Accessor method for the docsPermanentlyDelete route object. -+ (DBRoute *)DBPAPERDocsPermanentlyDelete; - -/// Accessor method for the docsSharingPolicyGet route object. -+ (DBRoute *)DBPAPERDocsSharingPolicyGet; - -/// Accessor method for the docsSharingPolicySet route object. -+ (DBRoute *)DBPAPERDocsSharingPolicySet; - -/// Accessor method for the docsUpdate route object. -+ (DBRoute *)DBPAPERDocsUpdate; - -/// Accessor method for the docsUsersAdd route object. -+ (DBRoute *)DBPAPERDocsUsersAdd; - -/// Accessor method for the docsUsersList route object. -+ (DBRoute *)DBPAPERDocsUsersList; - -/// Accessor method for the docsUsersListContinue route object. -+ (DBRoute *)DBPAPERDocsUsersListContinue; - -/// Accessor method for the docsUsersRemove route object. -+ (DBRoute *)DBPAPERDocsUsersRemove; - -/// Accessor method for the foldersCreate route object. -+ (DBRoute *)DBPAPERFoldersCreate; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingPolicy.h deleted file mode 100644 index 13086e0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingPolicy.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERSharingPolicy; -@class DBPAPERSharingPublicPolicyType; -@class DBPAPERSharingTeamPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingPolicy` struct. -/// -/// Sharing policy of Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERSharingPolicy : NSObject - -#pragma mark - Instance fields - -/// This value applies to the non-team members. -@property (nonatomic, readonly, nullable) DBPAPERSharingPublicPolicyType *publicSharingPolicy; - -/// This value applies to the team members only. The value is null for all -/// personal accounts. -@property (nonatomic, readonly, nullable) DBPAPERSharingTeamPolicyType *teamSharingPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param publicSharingPolicy This value applies to the non-team members. -/// @param teamSharingPolicy This value applies to the team members only. The -/// value is null for all personal accounts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublicSharingPolicy:(nullable DBPAPERSharingPublicPolicyType *)publicSharingPolicy - teamSharingPolicy:(nullable DBPAPERSharingTeamPolicyType *)teamSharingPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingPolicy` struct. -/// -@interface DBPAPERSharingPolicySerializer : NSObject - -/// -/// Serializes `DBPAPERSharingPolicy` instances. -/// -/// @param instance An instance of the `DBPAPERSharingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERSharingPolicy *)instance; - -/// -/// Deserializes `DBPAPERSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERSharingPolicy` API object. -/// -/// @return An instantiation of the `DBPAPERSharingPolicy` object. -/// -+ (DBPAPERSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingPublicPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingPublicPolicyType.h deleted file mode 100644 index 8abb8133..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingPublicPolicyType.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERSharingPublicPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingPublicPolicyType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERSharingPublicPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERSharingPublicPolicyTypeTag` enum type represents the possible -/// tag states with which the `DBPAPERSharingPublicPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERSharingPublicPolicyTypeTag) { - /// Users who have a link to this doc can edit it. - DBPAPERSharingPublicPolicyTypePeopleWithLinkCanEdit, - - /// Users who have a link to this doc can view and comment on it. - DBPAPERSharingPublicPolicyTypePeopleWithLinkCanViewAndComment, - - /// Users must be explicitly invited to this doc. - DBPAPERSharingPublicPolicyTypeInviteOnly, - - /// Value used to indicate that doc sharing is enabled only within team. - DBPAPERSharingPublicPolicyTypeDisabled, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERSharingPublicPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "people_with_link_can_edit". -/// -/// Description of the "people_with_link_can_edit" tag state: Users who have a -/// link to this doc can edit it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanEdit; - -/// -/// Initializes union class with tag state of -/// "people_with_link_can_view_and_comment". -/// -/// Description of the "people_with_link_can_view_and_comment" tag state: Users -/// who have a link to this doc can view and comment on it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanViewAndComment; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Users must be explicitly invited -/// to this doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Value used to indicate that doc -/// sharing is enabled only within team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -- (BOOL)isPeopleWithLinkCanEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -- (BOOL)isPeopleWithLinkCanViewAndComment; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERSharingPublicPolicyType` union. -/// -@interface DBPAPERSharingPublicPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBPAPERSharingPublicPolicyType` instances. -/// -/// @param instance An instance of the `DBPAPERSharingPublicPolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERSharingPublicPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERSharingPublicPolicyType *)instance; - -/// -/// Deserializes `DBPAPERSharingPublicPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERSharingPublicPolicyType` API object. -/// -/// @return An instantiation of the `DBPAPERSharingPublicPolicyType` object. -/// -+ (DBPAPERSharingPublicPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingTeamPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingTeamPolicyType.h deleted file mode 100644 index 4ecdfddd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERSharingTeamPolicyType.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERSharingTeamPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingTeamPolicyType` union. -/// -/// The sharing policy type of the Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERSharingTeamPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERSharingTeamPolicyTypeTag` enum type represents the possible tag -/// states with which the `DBPAPERSharingTeamPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERSharingTeamPolicyTypeTag) { - /// Users who have a link to this doc can edit it. - DBPAPERSharingTeamPolicyTypePeopleWithLinkCanEdit, - - /// Users who have a link to this doc can view and comment on it. - DBPAPERSharingTeamPolicyTypePeopleWithLinkCanViewAndComment, - - /// Users must be explicitly invited to this doc. - DBPAPERSharingTeamPolicyTypeInviteOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERSharingTeamPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "people_with_link_can_edit". -/// -/// Description of the "people_with_link_can_edit" tag state: Users who have a -/// link to this doc can edit it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanEdit; - -/// -/// Initializes union class with tag state of -/// "people_with_link_can_view_and_comment". -/// -/// Description of the "people_with_link_can_view_and_comment" tag state: Users -/// who have a link to this doc can view and comment on it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPeopleWithLinkCanViewAndComment; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Users must be explicitly invited -/// to this doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_edit". -/// -- (BOOL)isPeopleWithLinkCanEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -/// @return Whether the union's current tag state has value -/// "people_with_link_can_view_and_comment". -/// -- (BOOL)isPeopleWithLinkCanViewAndComment; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERSharingTeamPolicyType` union. -/// -@interface DBPAPERSharingTeamPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBPAPERSharingTeamPolicyType` instances. -/// -/// @param instance An instance of the `DBPAPERSharingTeamPolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERSharingTeamPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERSharingTeamPolicyType *)instance; - -/// -/// Deserializes `DBPAPERSharingTeamPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERSharingTeamPolicyType` API object. -/// -/// @return An instantiation of the `DBPAPERSharingTeamPolicyType` object. -/// -+ (DBPAPERSharingTeamPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserAuthRoutes.h deleted file mode 100644 index a84cd05e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserAuthRoutes.h +++ /dev/null @@ -1,664 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBNilObject; -@class DBPAPERAddMember; -@class DBPAPERAddPaperDocUserMemberResult; -@class DBPAPERAddPaperDocUserResult; -@class DBPAPERCursor; -@class DBPAPERDocLookupError; -@class DBPAPERExportFormat; -@class DBPAPERFolder; -@class DBPAPERFolderSharingPolicyType; -@class DBPAPERFoldersContainingPaperDoc; -@class DBPAPERImportFormat; -@class DBPAPERInviteeInfoWithPermissionLevel; -@class DBPAPERListDocsCursorError; -@class DBPAPERListPaperDocsFilterBy; -@class DBPAPERListPaperDocsResponse; -@class DBPAPERListPaperDocsSortBy; -@class DBPAPERListPaperDocsSortOrder; -@class DBPAPERListUsersCursorError; -@class DBPAPERListUsersOnFolderResponse; -@class DBPAPERListUsersOnPaperDocResponse; -@class DBPAPERPaperApiCursorError; -@class DBPAPERPaperDocCreateError; -@class DBPAPERPaperDocCreateUpdateResult; -@class DBPAPERPaperDocExportResult; -@class DBPAPERPaperDocPermissionLevel; -@class DBPAPERPaperDocUpdateError; -@class DBPAPERPaperDocUpdatePolicy; -@class DBPAPERPaperFolderCreateError; -@class DBPAPERPaperFolderCreateResult; -@class DBPAPERSharingPolicy; -@class DBPAPERSharingPublicPolicyType; -@class DBPAPERSharingTeamPolicyType; -@class DBPAPERUserInfoWithPermissionLevel; -@class DBPAPERUserOnPaperDocFilter; -@class DBSHARINGInviteeInfo; -@class DBSHARINGMemberSelector; -@class DBSHARINGUserInfo; - -@protocol DBTransportClient; - -/// -/// Routes for the `Paper` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBPAPERUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBPAPERUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// DEPRECATED: Marks the given Paper doc as archived. This action can be performed or undone by anyone with edit -/// permissions to the doc. Note that this endpoint will continue to work for content created by users on the older -/// version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. This endpoint will be retired -/// in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsArchive:(NSString *)docId - __deprecated_msg("docsArchive is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param importFormat The format of provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateUrl:(DBPAPERImportFormat *)importFormat - inputUrl:(NSString *)inputUrl __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param parentFolderId The Paper folder ID where the Paper document should be created. The API user has to have write -/// access to this folder or error is thrown. -/// @param importFormat The format of provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateUrl:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId - inputUrl:(NSString *)inputUrl __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param importFormat The format of provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateData:(DBPAPERImportFormat *)importFormat - inputData:(NSData *)inputData __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param parentFolderId The Paper folder ID where the Paper document should be created. The API user has to have write -/// access to this folder or error is thrown. -/// @param importFormat The format of provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateData:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId - inputData:(NSData *)inputData __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param importFormat The format of provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateStream:(DBPAPERImportFormat *)importFormat - inputStream:(NSInputStream *)inputStream __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Creates a new Paper doc with the provided content. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param parentFolderId The Paper folder ID where the Paper document should be created. The API user has to have write -/// access to this folder or error is thrown. -/// @param importFormat The format of provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocCreateError` object on failure. -/// -- (DBUploadTask *) - docsCreateStream:(DBPAPERImportFormat *)importFormat - parentFolderId:(nullable NSString *)parentFolderId - inputStream:(NSInputStream *)inputStream __deprecated_msg("docsCreate is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadUrlTask *) - docsDownloadUrl:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadUrlTask *) - docsDownloadUrl:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadDataTask *) - docsDownloadData:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Exports and downloads Paper doc either as HTML or markdown. Note that this endpoint will continue to -/// work for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocExportResult` object on success or -/// a `DBPAPERDocLookupError` object on failure. -/// -- (DBDownloadDataTask *) - docsDownloadData:(NSString *)docId - exportFormat:(DBPAPERExportFormat *)exportFormat - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd __deprecated_msg("docsDownload is deprecated."); - -/// -/// DEPRECATED: Lists the users who are explicitly invited to the Paper folder in which the Paper doc is contained. For -/// private folders all users (including owner) shared on the folder are listed and for team folders all non-team users -/// shared on the folder are returned. Note that this endpoint will continue to work for content created by users on the -/// older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper Migration -/// Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnFolderResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsFolderUsersList:(NSString *)docId - __deprecated_msg("docsFolderUsersList is deprecated."); - -/// -/// DEPRECATED: Lists the users who are explicitly invited to the Paper folder in which the Paper doc is contained. For -/// private folders all users (including owner) shared on the folder are listed and for team folders all non-team users -/// shared on the folder are returned. Note that this endpoint will continue to work for content created by users on the -/// older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper Migration -/// Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param limit Size limit per batch. The maximum number of users that can be retrieved per batch is 1000. Higher value -/// results in invalid arguments error. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnFolderResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsFolderUsersList:(NSString *)docId - limit: - (nullable NSNumber *)limit - __deprecated_msg("docsFolderUsersList is deprecated."); - -/// -/// DEPRECATED: Once a cursor has been retrieved from `docsFolderUsersList`, use this to paginate through all users on -/// the Paper folder. Note that this endpoint will continue to work for content created by users on the older version of -/// Paper. To check which version of Paper a user is on, use /users/features/get_values. If the paper_as_files feature -/// is enabled, then the user is running the new version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param cursor The cursor obtained from `docsFolderUsersList` or `docsFolderUsersListContinue`. Allows for -/// pagination. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnFolderResponse` object on -/// success or a `DBPAPERListUsersCursorError` object on failure. -/// -- (DBRpcTask *) - docsFolderUsersListContinue:(NSString *)docId - cursor:(NSString *)cursor __deprecated_msg("docsFolderUsersListContinue is deprecated."); - -/// -/// DEPRECATED: Retrieves folder information for the given Paper doc. This includes: - folder sharing policy; -/// permissions for subfolders are set by the top-level folder. - full 'filepath', i.e. the list of folders (both -/// folderId and folderName) from the root folder to the folder directly containing the Paper doc. If the Paper doc -/// is not in any folder (aka unfiled) the response will be empty. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERFoldersContainingPaperDoc` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsGetFolderInfo:(NSString *)docId - __deprecated_msg("docsGetFolderInfo is deprecated."); - -/// -/// DEPRECATED: Return the list of all Paper docs according to the argument specifications. To iterate over through the -/// full pagination, pass the cursor to `docsListContinue`. Note that this endpoint will continue to work for content -/// created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListPaperDocsResponse` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)docsList __deprecated_msg("docsList is deprecated."); - -/// -/// DEPRECATED: Return the list of all Paper docs according to the argument specifications. To iterate over through the -/// full pagination, pass the cursor to `docsListContinue`. Note that this endpoint will continue to work for content -/// created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param filterBy Allows user to specify how the Paper docs should be filtered. -/// @param sortBy Allows user to specify how the Paper docs should be sorted. -/// @param sortOrder Allows user to specify the sort order of the result. -/// @param limit Size limit per batch. The maximum number of docs that can be retrieved per batch is 1000. Higher value -/// results in invalid arguments error. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListPaperDocsResponse` object on success or -/// a `void` object on failure. -/// -- (DBRpcTask *)docsList:(nullable DBPAPERListPaperDocsFilterBy *)filterBy - sortBy:(nullable DBPAPERListPaperDocsSortBy *)sortBy - sortOrder: - (nullable DBPAPERListPaperDocsSortOrder *)sortOrder - limit:(nullable NSNumber *)limit - __deprecated_msg("docsList is deprecated."); - -/// -/// DEPRECATED: Once a cursor has been retrieved from `docsList`, use this to paginate through all Paper doc. Note that -/// this endpoint will continue to work for content created by users on the older version of Paper. To check which -/// version of Paper a user is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the -/// user is running the new version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param cursor The cursor obtained from `docsList` or `docsListContinue`. Allows for pagination. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListPaperDocsResponse` object on success or -/// a `DBPAPERListDocsCursorError` object on failure. -/// -- (DBRpcTask *)docsListContinue:(NSString *)cursor - __deprecated_msg("docsListContinue is deprecated."); - -/// -/// DEPRECATED: Permanently deletes the given Paper doc. This operation is final as the doc cannot be recovered. This -/// action can be performed only by the doc owner. Note that this endpoint will continue to work for content created by -/// users on the older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. -/// If the paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper -/// Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsPermanentlyDelete:(NSString *)docId - __deprecated_msg("docsPermanentlyDelete is deprecated."); - -/// -/// DEPRECATED: Gets the default sharing policy for the given Paper doc. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param docId The Paper doc ID. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERSharingPolicy` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsSharingPolicyGet:(NSString *)docId - __deprecated_msg("docsSharingPolicyGet is deprecated."); - -/// -/// DEPRECATED: Sets the default sharing policy for the given Paper doc. The default 'team_sharing_policy' can be -/// changed only by teams, omit this field for personal accounts. The 'public_sharing_policy' policy can't be set to the -/// value 'disabled' because this setting can be changed only via the team admin console. Note that this endpoint will -/// continue to work for content created by users on the older version of Paper. To check which version of Paper a user -/// is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new -/// version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param sharingPolicy The default sharing policy to be set for the Paper doc. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsSharingPolicySet:(NSString *)docId - sharingPolicy:(DBPAPERSharingPolicy *)sharingPolicy - __deprecated_msg("docsSharingPolicySet is deprecated."); - -/// -/// DEPRECATED: Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head revision or an error code will be returned. -/// This is to prevent colliding writes. -/// @param importFormat The format of provided data. -/// @param inputUrl The file to upload, as an NSString * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocUpdateError` object on failure. -/// -- (DBUploadTask *) - docsUpdateUrl:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat - inputUrl:(NSString *)inputUrl __deprecated_msg("docsUpdate is deprecated."); - -/// -/// DEPRECATED: Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head revision or an error code will be returned. -/// This is to prevent colliding writes. -/// @param importFormat The format of provided data. -/// @param inputData The file to upload, as an NSData * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocUpdateError` object on failure. -/// -- (DBUploadTask *) - docsUpdateData:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat - inputData:(NSData *)inputData __deprecated_msg("docsUpdate is deprecated."); - -/// -/// DEPRECATED: Updates an existing Paper doc with the provided content. Note that this endpoint will continue to work -/// for content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. This endpoint will be retired in September 2020. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for more information. -/// -/// @param docUpdatePolicy The policy used for the current update call. -/// @param revision The latest doc revision. This value must match the head revision or an error code will be returned. -/// This is to prevent colliding writes. -/// @param importFormat The format of provided data. -/// @param inputStream The file to upload, as an NSInputStream * object. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperDocCreateUpdateResult` object on -/// success or a `DBPAPERPaperDocUpdateError` object on failure. -/// -- (DBUploadTask *) - docsUpdateStream:(NSString *)docId - docUpdatePolicy:(DBPAPERPaperDocUpdatePolicy *)docUpdatePolicy - revision:(NSNumber *)revision - importFormat:(DBPAPERImportFormat *)importFormat - inputStream:(NSInputStream *)inputStream __deprecated_msg("docsUpdate is deprecated."); - -/// -/// DEPRECATED: Allows an owner or editor to add users to a Paper doc or change their permissions using their email -/// address or Dropbox account ID. The doc owner's permissions cannot be changed. Note that this endpoint will continue -/// to work for content created by users on the older version of Paper. To check which version of Paper a user is on, -/// use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version -/// of Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide -/// for migration information. -/// -/// @param members User which should be added to the Paper doc. Specify only email address or Dropbox account ID. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *, DBPAPERDocLookupError *> *) - docsUsersAdd:(NSString *)docId - members:(NSArray *)members __deprecated_msg("docsUsersAdd is deprecated."); - -/// -/// DEPRECATED: Allows an owner or editor to add users to a Paper doc or change their permissions using their email -/// address or Dropbox account ID. The doc owner's permissions cannot be changed. Note that this endpoint will continue -/// to work for content created by users on the older version of Paper. To check which version of Paper a user is on, -/// use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version -/// of Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide -/// for migration information. -/// -/// @param members User which should be added to the Paper doc. Specify only email address or Dropbox account ID. -/// @param customMessage A personal message that will be emailed to each successfully added member. -/// @param quiet Clients should set this to true if no email message shall be sent to added users. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *, DBPAPERDocLookupError *> *) - docsUsersAdd:(NSString *)docId - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet __deprecated_msg("docsUsersAdd is deprecated."); - -/// -/// DEPRECATED: Lists all users who visited the Paper doc or users with explicit access. This call excludes users who -/// have been removed. The list is sorted by the date of the visit or the share date. The list will include both users, -/// the explicitly shared ones as well as those who came in using the Paper url link. Note that this endpoint will -/// continue to work for content created by users on the older version of Paper. To check which version of Paper a user -/// is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new -/// version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnPaperDocResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsUsersList:(NSString *)docId - __deprecated_msg("docsUsersList is deprecated."); - -/// -/// DEPRECATED: Lists all users who visited the Paper doc or users with explicit access. This call excludes users who -/// have been removed. The list is sorted by the date of the visit or the share date. The list will include both users, -/// the explicitly shared ones as well as those who came in using the Paper url link. Note that this endpoint will -/// continue to work for content created by users on the older version of Paper. To check which version of Paper a user -/// is on, use /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new -/// version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param limit Size limit per batch. The maximum number of users that can be retrieved per batch is 1000. Higher value -/// results in invalid arguments error. -/// @param filterBy Specify this attribute if you want to obtain users that have already accessed the Paper doc. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnPaperDocResponse` object on -/// success or a `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *) - docsUsersList:(NSString *)docId - limit:(nullable NSNumber *)limit - filterBy:(nullable DBPAPERUserOnPaperDocFilter *)filterBy __deprecated_msg("docsUsersList is deprecated."); - -/// -/// DEPRECATED: Once a cursor has been retrieved from `docsUsersList`, use this to paginate through all users on the -/// Paper doc. Note that this endpoint will continue to work for content created by users on the older version of Paper. -/// To check which version of Paper a user is on, use /users/features/get_values. If the paper_as_files feature is -/// enabled, then the user is running the new version of Paper. Refer to the Paper Migration Guide -/// https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param cursor The cursor obtained from `docsUsersList` or `docsUsersListContinue`. Allows for pagination. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERListUsersOnPaperDocResponse` object on -/// success or a `DBPAPERListUsersCursorError` object on failure. -/// -- (DBRpcTask *) - docsUsersListContinue:(NSString *)docId - cursor:(NSString *)cursor __deprecated_msg("docsUsersListContinue is deprecated."); - -/// -/// DEPRECATED: Allows an owner or editor to remove users from a Paper doc using their email address or Dropbox account -/// ID. The doc owner cannot be removed. Note that this endpoint will continue to work for content created by users on -/// the older version of Paper. To check which version of Paper a user is on, use /users/features/get_values. If the -/// paper_as_files feature is enabled, then the user is running the new version of Paper. Refer to the Paper Migration -/// Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for migration information. -/// -/// @param member User which should be removed from the Paper doc. Specify only email address or Dropbox account ID. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBPAPERDocLookupError` object on failure. -/// -- (DBRpcTask *)docsUsersRemove:(NSString *)docId - member:(DBSHARINGMemberSelector *)member - __deprecated_msg("docsUsersRemove is deprecated."); - -/// -/// DEPRECATED: Create a new Paper folder with the provided info. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param name The name of the new Paper folder. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperFolderCreateResult` object on success -/// or a `DBPAPERPaperFolderCreateError` object on failure. -/// -- (DBRpcTask *)foldersCreate:(NSString *)name - __deprecated_msg("foldersCreate is deprecated."); - -/// -/// DEPRECATED: Create a new Paper folder with the provided info. Note that this endpoint will continue to work for -/// content created by users on the older version of Paper. To check which version of Paper a user is on, use -/// /users/features/get_values. If the paper_as_files feature is enabled, then the user is running the new version of -/// Paper. Refer to the Paper Migration Guide https://www.dropbox.com/lp/developers/reference/paper-migration-guide for -/// migration information. -/// -/// @param name The name of the new Paper folder. -/// @param parentFolderId The encrypted Paper folder Id where the new Paper folder should be created. The API user has -/// to have write access to this folder or error is thrown. If not supplied, the new folder will be created at top -/// level. -/// @param isTeamFolder Whether the folder to be created should be a team folder. This value will be ignored if -/// parent_folder_id is supplied, as the new folder will inherit the type (private or team folder) from its parent. We -/// will by default create a top-level private folder if both parent_folder_id and is_team_folder are not supplied. -/// -/// @return Through the response callback, the caller will receive a `DBPAPERPaperFolderCreateResult` object on success -/// or a `DBPAPERPaperFolderCreateError` object on failure. -/// -- (DBRpcTask *) - foldersCreate:(NSString *)name - parentFolderId:(nullable NSString *)parentFolderId - isTeamFolder:(nullable NSNumber *)isTeamFolder __deprecated_msg("foldersCreate is deprecated."); - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserInfoWithPermissionLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserInfoWithPermissionLevel.h deleted file mode 100644 index 131bac1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserInfoWithPermissionLevel.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERPaperDocPermissionLevel; -@class DBPAPERUserInfoWithPermissionLevel; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfoWithPermissionLevel` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERUserInfoWithPermissionLevel : NSObject - -#pragma mark - Instance fields - -/// User shared on the Paper doc. -@property (nonatomic, readonly) DBSHARINGUserInfo *user; - -/// Permission level for the user. -@property (nonatomic, readonly) DBPAPERPaperDocPermissionLevel *permissionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user User shared on the Paper doc. -/// @param permissionLevel Permission level for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBSHARINGUserInfo *)user - permissionLevel:(DBPAPERPaperDocPermissionLevel *)permissionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfoWithPermissionLevel` struct. -/// -@interface DBPAPERUserInfoWithPermissionLevelSerializer : NSObject - -/// -/// Serializes `DBPAPERUserInfoWithPermissionLevel` instances. -/// -/// @param instance An instance of the `DBPAPERUserInfoWithPermissionLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERUserInfoWithPermissionLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERUserInfoWithPermissionLevel *)instance; - -/// -/// Deserializes `DBPAPERUserInfoWithPermissionLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERUserInfoWithPermissionLevel` API object. -/// -/// @return An instantiation of the `DBPAPERUserInfoWithPermissionLevel` object. -/// -+ (DBPAPERUserInfoWithPermissionLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserOnPaperDocFilter.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserOnPaperDocFilter.h deleted file mode 100644 index dbf18a0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBPAPERUserOnPaperDocFilter.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBPAPERUserOnPaperDocFilter; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserOnPaperDocFilter` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBPAPERUserOnPaperDocFilter : NSObject - -#pragma mark - Instance fields - -/// The `DBPAPERUserOnPaperDocFilterTag` enum type represents the possible tag -/// states with which the `DBPAPERUserOnPaperDocFilter` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBPAPERUserOnPaperDocFilterTag) { - /// all users who have visited the Paper doc. - DBPAPERUserOnPaperDocFilterVisited, - - /// All uses who are shared on the Paper doc. This includes all users who - /// have visited the Paper doc as well as those who have not. - DBPAPERUserOnPaperDocFilterShared, - - /// (no description). - DBPAPERUserOnPaperDocFilterOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBPAPERUserOnPaperDocFilterTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "visited". -/// -/// Description of the "visited" tag state: all users who have visited the Paper -/// doc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithVisited; - -/// -/// Initializes union class with tag state of "shared". -/// -/// Description of the "shared" tag state: All uses who are shared on the Paper -/// doc. This includes all users who have visited the Paper doc as well as those -/// who have not. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShared; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "visited". -/// -/// @return Whether the union's current tag state has value "visited". -/// -- (BOOL)isVisited; - -/// -/// Retrieves whether the union's current tag state has value "shared". -/// -/// @return Whether the union's current tag state has value "shared". -/// -- (BOOL)isShared; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBPAPERUserOnPaperDocFilter` union. -/// -@interface DBPAPERUserOnPaperDocFilterSerializer : NSObject - -/// -/// Serializes `DBPAPERUserOnPaperDocFilter` instances. -/// -/// @param instance An instance of the `DBPAPERUserOnPaperDocFilter` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBPAPERUserOnPaperDocFilter` API object. -/// -+ (nullable NSDictionary *)serialize:(DBPAPERUserOnPaperDocFilter *)instance; - -/// -/// Deserializes `DBPAPERUserOnPaperDocFilter` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBPAPERUserOnPaperDocFilter` API object. -/// -/// @return An instantiation of the `DBPAPERUserOnPaperDocFilter` object. -/// -+ (DBPAPERUserOnPaperDocFilter *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBRequestErrors.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBRequestErrors.h deleted file mode 100644 index 23eb66d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBRequestErrors.h +++ /dev/null @@ -1,803 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -@class DBAUTHAccessError; -@class DBAUTHAuthError; -@class DBAUTHRateLimitError; -@class DBCOMMONPathRootError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - Error Parameters - -/// A wrapper objct that has a localized human-readable error message and the locale. -@interface DBLocalizedUserMessage : NSObject - -/// Localized, human-readable text. -@property (nonatomic, readonly, copy) NSString *text; -// IETF BCP 47 language tag of text locale. -@property (nonatomic, readonly, copy) NSString *locale; - -- (instancetype)init NS_UNAVAILABLE; - -/// -/// DBLocalizedUserMessage full constructor. -/// -/// @param text The localized, human-readable text. -/// @param locale The IETF BCP 47 language tag of text locale. -/// -/// @return An initialized DBLocalizedUserMessage instance. -/// -- (instancetype)initWithText:(NSString *)text locale:(NSString *)locale; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBLocalizedUserMessage object. -/// -- (NSString *)description; - -@end - -#pragma mark - HTTP error - -/// -/// Http request error. -/// -/// Contains relevant information regarding a failed network request. All error types except for DBClientError extend -/// this class as children. Initialized in the event of a generic, unidentified HTTP error. -/// -@interface DBRequestHttpError : NSObject - -/// The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with Dropbox's SDKs and -/// API. Please include the value of this field when submitting technical support inquiries to Dropbox. -@property (nonatomic, readonly, copy) NSString *requestId; - -/// The HTTP response status code of the request. -@property (nonatomic, readonly) NSNumber *statusCode; - -/// A string representation of the error body received in the reponse. If for a route-specific error, this field will be -/// the value of the "error_summary" key. -@property (nonatomic, readonly, copy) NSString *errorContent; - -/// An object containing a localized human-readable error message that is optionally returned from some API endpoints. -@property (nonatomic, readonly, strong, nullable) DBLocalizedUserMessage *userMessage; - -/// -/// DBRequestHttpError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized DBRequestHttpError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestHttpError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Bad Input error - -/// -/// Bad Input request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 400 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestBadInputError : DBRequestHttpError - -/// -/// DBRequestBadInputError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized DBRequestBadInputError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestBadInputError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Auth error - -/// -/// Auth request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 401 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestAuthError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 401 auth -/// error. -@property (nonatomic, readonly) DBAUTHAuthError *structuredAuthError; - -/// -/// DBRequestAuthError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAuthError The structured object returned by the Dropbox API in the event of a 401 auth error. -/// -/// @return An initialized DBRequestAuthError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAuthError:(DBAUTHAuthError *)structuredAuthError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestAuthError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Access error - -/// -/// Access request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 403 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestAccessError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 403 access error. -@property (nonatomic, readonly) DBAUTHAccessError *structuredAccessError; - -/// -/// DBRequestAccessError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAccessError The structured object returned by the Dropbox API in the event of a 403 access error. -/// -/// @return An initialized DBRequestAccessError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAccessError:(DBAUTHAccessError *)structuredAccessError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestAccessError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Path Root error - -/// -/// Path Root request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 422 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestPathRootError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 422 path root error. -@property (nonatomic, readonly) DBCOMMONPathRootError *structuredPathRootError; - -/// -/// DBRequestPathRootError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredPathRootError The structured object returned by the Dropbox API in the event of a 422 path root -/// error. -/// -/// @return An initialized DBRequestPathRootError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredPathRootError:(DBCOMMONPathRootError *)structuredPathRootError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestAccessError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Rate limit error - -/// -/// Rate limit request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 429 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestRateLimitError : DBRequestHttpError - -/// The structured object returned by the Dropbox API in the event of a 429 rate-limit error. -@property (nonatomic, readonly) DBAUTHRateLimitError *structuredRateLimitError; - -/// The number of seconds to wait before making any additional requests in the event of a rate-limit error. -@property (nonatomic, readonly) NSNumber *backoff; - -/// -/// DBRequestRateLimitError full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredRateLimitError The structured object returned by the Dropbox API in the event of a 429 rate-limit -/// error. -/// @param backoff The number of seconds to wait before making any additional requests in the event of a rate-limit -/// error. -/// -/// @return An initialized DBRequestRateLimitError instance. -/// -- (instancetype)init:(NSString *)requestId - statusCode:(NSNumber *)statusCode - errorContent:(NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredRateLimitError:(DBAUTHRateLimitError *)structuredRateLimitError - backoff:(NSNumber *)backoff; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current DBRequestRateLimitError object. -/// -- (NSString *)description; - -@end - -#pragma mark - Internal Server error - -/// -/// Internal Server request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of an HTTP 500 response. -/// Extends DBRequestHttpError. -/// -@interface DBRequestInternalServerError : DBRequestHttpError - -/// -/// Description method. -/// -/// @return A human-readable representation of the current `DBRequestInternalServerError` object. -/// -- (NSString *)description; - -@end - -#pragma mark - Client error - -/// -/// Client side request error. -/// -/// Contains relevant information regarding a failed network request. Initialized in the event of a client-side error, -/// like an invalid url host, or making a request when not connected to the internet. -/// -@interface DBRequestClientError : NSObject - -/// The client-side `NSError` object returned from the failed response. -@property (nonatomic, readonly) NSError *nsError; - -/// -/// `DBRequestClientError` full constructor. -/// -/// An example of such an error might be if you attempt to make a request and are not connected to the internet. -/// -/// @param nsError The client-side `NSError` object returned from the failed response. -/// -/// @return An initialized `DBRequestClientError` instance. -/// -- (instancetype)init:(NSError *)nsError; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current `DBRequestClientError` object. -/// -- (NSString *)description; - -@end - -#pragma mark - DBRequestError generic error - -/// -/// Base class for generic network request error (as opposed to route-specific -/// error). -/// -/// This class is represented almost like a Stone "Union" object. As one object, it can represent a number of error -/// "states" (see all of the values of `DBRequestErrorType`). To handle each error type, call each of the -/// `is` methods until you determine the current tag state, then call the corresponding `as` -/// method to return an instance of the appropriate error type. -/// -/// For example: -/// -/// @code -/// ``` -/// if ([dbxError isHTTPError]) { -/// DBHttpError *httpError = [dbxError asHttpError]; -/// } else if ([dbxError isBadInputError]) { ........ -/// ``` -/// @endcode -/// -@interface DBRequestError : NSObject - -#pragma mark - Tag type definition - -/// Represents the possible error types that can be returned from network requests. -typedef NS_ENUM(NSInteger, DBRequestErrorTag) { - /// Errors produced at the HTTP layer. - DBRequestErrorHttp, - - /// Errors due to bad input parameters to an API Operation. - DBRequestErrorBadInput, - - /// Errors due to invalid authentication credentials. - DBRequestErrorAuth, - - /// Errors due to invalid authentication credentials. - DBRequestErrorPathRoot, - - /// Errors due to invalid permission to access. - DBRequestErrorAccess, - - /// Error caused by rate limiting. - DBRequestErrorRateLimit, - - /// Errors due to a problem on Dropbox. - DBRequestErrorInternalServer, - - /// Errors due to a problem on the client-side of the SDK. - DBRequestErrorClient, -}; - -#pragma mark - Instance variables - -/// Current state of the `DBRequestError` object type. -@property (nonatomic, readonly) DBRequestErrorTag tag; - -/// The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with Dropbox's SDKs and -/// API. Please include the value of this field when submitting technical support inquiries to Dropbox. -@property (nonatomic, readonly, copy, nullable) NSString *requestId; - -/// The HTTP response status code of the request. -@property (nonatomic, readonly, nullable) NSNumber *statusCode; - -/// A string representation of the error body received in the reponse. If for a route-specific error, this field will be -/// the value of the "error_summary" key. -@property (nonatomic, readonly, copy, nullable) NSString *errorContent; - -/// An object containing a localized human-readable error message that is optionally returned from some API endpoints. -@property (nonatomic, readonly, strong, nullable) DBLocalizedUserMessage *userMessage; - -/// The structured object returned by the Dropbox API in the event of a 401 auth error. -@property (nonatomic, readonly, nullable) DBAUTHAuthError *structuredAuthError; - -/// The structured object returned by the Dropbox API in the event of a 403 access error. -@property (nonatomic, readonly, nullable) DBAUTHAccessError *structuredAccessError; - -/// The structured object returned by the Dropbox API in the event of a 422 path root error. -@property (nonatomic, readonly, nullable) DBCOMMONPathRootError *structuredPathRootError; - -/// The structured object returned by the Dropbox API in the event of a 429 rate-limit error. -@property (nonatomic, readonly, nullable) DBAUTHRateLimitError *structuredRateLimitError; - -/// The number of seconds to wait before making any additional requests in the event of a rate-limit error. -@property (nonatomic, readonly, nullable) NSNumber *backoff; - -/// The client-side `NSError` object returned from the failed response. -@property (nonatomic, readonly, nullable) NSError *nsError; - -#pragma mark - Constructors - -/// -/// `DBRequestError` convenience constructor. -/// -/// Initializes the `DBRequestError` object with all the required state for representing a generic HTTP error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized `DBRequestError` instance with HTTP error state. -/// -- (instancetype)initAsHttpError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing a Bad Input error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// -/// @return An initialized `DBRequestError` instance with Bad Input error state. -/// -- (instancetype)initAsBadInputError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an Auth -/// error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAuthError The structured object returned by the Dropbox API in the event of a 401 auth error. -/// -/// @return An initialized `DBRequestError` instance with Auth error state. -/// -- (instancetype)initAsAuthError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAuthError:(DBAUTHAuthError *)structuredAuthError; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an Access -/// error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAccessError The structured object returned by the Dropbox API in the event of a 403 access error. -/// -/// @return An initialized `DBRequestError` instance with Auth error state. -/// -- (instancetype)initAsAccessError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAccessError:(DBAUTHAccessError *)structuredAccessError; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing a Path Root error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredPathRootError The structured object returned by the Dropbox API in the event of a 422 path root -/// error. -/// -/// @return An initialized `DBRequestError` instance with Auth error state. -/// -- (instancetype)initAsPathRootError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredPathRootError:(DBCOMMONPathRootError *)structuredPathRootError; - -/// -/// DBRequestError convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing a -/// Rate Limit error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredRateLimitError The structured object returned by the Dropbox API in the event of a 429 rate-limit -/// error. -/// @param backoff The number of seconds to wait before making any additional requests in the event of a rate-limit -/// error. -/// -/// @return An initialized `DBRequestError` instance with Rate Limit error state. -/// -- (instancetype)initAsRateLimitError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredRateLimitError:(DBAUTHRateLimitError *)structuredRateLimitError - backoff:(NSNumber *)backoff; - -/// -/// `DBRequestError` convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an -/// Internal Server error. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// route-specific error, this field will be the value of the "error_summary" key. -/// -/// @return An initialized `DBRequestError` instance with Internal Server error state. -/// -- (instancetype)initAsInternalServerError:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage; - -/// -/// `DBRequestError` convenience constructor. -/// -/// Initializes the `DBRequestError` with all the required state for representing an "OS" error. An example of such an -/// error might be if you attempt to make a request and are not connected to the internet. -/// -/// @param nsError The client-side `NSError` object returned from the failed response. -/// -/// -/// @return An initialized `DBRequestError` instance with Client error state. -/// -- (instancetype)initAsClientError:(nullable NSError *)nsError; - -/// -/// `DBRequestError` full constructor. -/// -/// @param requestId The Dropbox request id of the network call. This is useful to Dropbox for debugging issues with -/// Dropbox's SDKs and API. -/// @param statusCode The HTTP response status code of the request. -/// @param errorContent A string representation of the error body received in the reponse. If for a route-specific -/// error, this field will be the value of the "error_summary" key. -/// @param userMessage An error message object that is optionally returned from some API endpoints. -/// @param structuredAuthError The structured object returned by the Dropbox API in the event of a 401 auth error. -/// @param structuredAccessError The structured object returned by the Dropbox API in the event of a 403 access error. -/// @param structuredPathRootError The structured object returned by the Dropbox API in the event of a 422 path root -/// error. -/// @param structuredRateLimitError The structured object returned by the Dropbox API in the event of a 429 rate-limit -/// error. -/// @param backoff The number of seconds to wait before making any additional requests in the event of a rate-limit -/// error. -/// @param nsError The client-side NSError object returned from the failed response. -/// -/// @return An initialized `DBRequestError` instance. -/// -- (instancetype)init:(DBRequestErrorTag)tag - requestId:(nullable NSString *)requestId - statusCode:(nullable NSNumber *)statusCode - errorContent:(nullable NSString *)errorContent - userMessage:(nullable DBLocalizedUserMessage *)userMessage - structuredAuthError:(nullable DBAUTHAuthError *)structuredAuthError - structuredAccessError:(nullable DBAUTHAccessError *)structuredAccessError - structuredPathRootError:(nullable DBCOMMONPathRootError *)structuredPathRootError - structuredRateLimitError:(nullable DBAUTHRateLimitError *)structuredRateLimitError - backoff:(nullable NSNumber *)backoff - nsError:(nullable NSError *)nsError; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the error's current tag state has value "http_error". -/// -/// @return Whether the union's current tag state has value "http_error". -/// -- (BOOL)isHttpError; - -/// -/// Retrieves whether the error's current tag state has value "bad_input_error". -/// -/// @return Whether the union's current tag state has value "bad_input_error". -/// -- (BOOL)isBadInputError; - -/// -/// Retrieves whether the error's current tag state has value "auth_error". -/// -/// @return Whether the union's current tag state has value "auth_error". -/// -- (BOOL)isAuthError; - -/// -/// Retrieves whether the error's current tag state has value "access_error". -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the error's current tag state has value "path_root_error". -/// -/// @return Whether the union's current tag state has value "path_root_error". -/// -- (BOOL)isPathRootError; - -/// -/// Retrieves whether the error's current tag state has value "rate_limit_error". -/// -/// @return Whether the union's current tag state has value "rate_limit_error". -/// -- (BOOL)isRateLimitError; - -/// -/// Retrieves whether the error's current tag state has value "internal_server_error". -/// -/// @return Whether the union's current tag state has value "internal_server_error". -/// -- (BOOL)isInternalServerError; - -/// -/// Retrieves whether the error's current tag state has value "client_error". -/// -/// @return Whether the union's current tag state has value "client_error". -/// -- (BOOL)isClientError; - -#pragma mark - Error subtype retrieval methods - -/// -/// Creates a `DBRequestHttpError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "http_error". Should only use after -/// checking if `isHttpError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestHttpError` instance. -/// -- (DBRequestHttpError *)asHttpError; - -/// -/// Creates a `DBRequestBadInputError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "bad_input_error". Should only use -/// after checking if `isBadInputError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestBadInputError`. -/// -- (DBRequestBadInputError *)asBadInputError; - -/// -/// Creates a DBRequestAuthError instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "auth_error". Should only use after -/// checking if `isAuthError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestAuthError` instance. -/// -- (DBRequestAuthError *)asAuthError; - -/// -/// Creates a DBRequestAccessError instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "auth_error". Should only use after -/// checking if `isAccessError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestAccessError` instance. -/// -- (DBRequestAccessError *)asAccessError; - -/// -/// Creates a DBRequestAccessError instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "auth_error". Should only use after -/// checking if `isAccessError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestAccessError` instance. -/// -- (DBRequestPathRootError *)asPathRootError; - -/// -/// Creates a `DBRequestRateLimitError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "rate_limit_error". Should only use -/// after checking if `isRateLimitError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestRateLimitError` instance. -/// -- (DBRequestRateLimitError *)asRateLimitError; - -/// -/// Creates a `DBRequestInternalServerError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "internal_server_error". Should only -/// use after checking if `isInternalServerError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBHttpError` instance. -/// -- (DBRequestInternalServerError *)asInternalServerError; - -/// -/// Creates a `DBRequestClientError` instance based on the data in the current `DBRequestError` instance. -/// -/// @note Will throw error if current `DBRequestError` instance tag state is not "client_error". Should only use after -/// checking if `isClientError` returns true for the current `DBRequestError` instance. -/// -/// @return An initialized `DBRequestClientError` instance. -/// -- (DBRequestClientError *)asClientError; - -#pragma mark - Tag name method - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the `DBRequestError` object's current tag state. -/// -- (NSString *)tagName; - -#pragma mark - Description method - -/// -/// Description method. -/// -/// @return A human-readable representation of the current `DBRequestError` object. -/// -- (NSString *)description; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKConstants.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKConstants.h deleted file mode 100644 index 9020f979..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKConstants.h +++ /dev/null @@ -1,13 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -/// Constants for the SDK should go here. - -#import - -extern NSString *const kDBSDKVersion; -extern NSString *const kDBSDKDefaultUserAgentPrefix; -extern NSString *const kDBSDKForegroundSessionId; -extern NSString *const kDBSDKBackgroundSessionId; -extern NSString *const kDBSDKCSRFKey; diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImports-macOS.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImports-macOS.h deleted file mode 100644 index 86ca8477..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImports-macOS.h +++ /dev/null @@ -1,6 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBClientsManager+DesktopAuth-macOS.h" -#import "DBOAuthDesktop-macOS.h" diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImportsGenerated.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImportsGenerated.h deleted file mode 100644 index 6a33bbcd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImportsGenerated.h +++ /dev/null @@ -1,2136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -/// Import autogenerated files - -// Routes -#import "DBACCOUNTUserAuthRoutes.h" -#import "DBACCOUNTRouteObjects.h" -#import "DBAUTHAppAuthRoutes.h" -#import "DBAUTHUserAuthRoutes.h" -#import "DBAUTHRouteObjects.h" -#import "DBCHECKAppAuthRoutes.h" -#import "DBCHECKUserAuthRoutes.h" -#import "DBCHECKRouteObjects.h" -#import "DBCONTACTSUserAuthRoutes.h" -#import "DBCONTACTSRouteObjects.h" -#import "DBFILEPROPERTIESTeamAuthRoutes.h" -#import "DBFILEPROPERTIESUserAuthRoutes.h" -#import "DBFILEPROPERTIESRouteObjects.h" -#import "DBFILEREQUESTSUserAuthRoutes.h" -#import "DBFILEREQUESTSRouteObjects.h" -#import "DBFILESAppAuthRoutes.h" -#import "DBFILESUserAuthRoutes.h" -#import "DBFILESRouteObjects.h" -#import "DBOPENIDUserAuthRoutes.h" -#import "DBOPENIDRouteObjects.h" -#import "DBPAPERUserAuthRoutes.h" -#import "DBPAPERRouteObjects.h" -#import "DBSHARINGAppAuthRoutes.h" -#import "DBSHARINGUserAuthRoutes.h" -#import "DBSHARINGRouteObjects.h" -#import "DBTEAMTeamAuthRoutes.h" -#import "DBTEAMRouteObjects.h" -#import "DBTEAMLOGTeamAuthRoutes.h" -#import "DBTEAMLOGRouteObjects.h" -#import "DBUSERSUserAuthRoutes.h" -#import "DBUSERSRouteObjects.h" - - -// `Account` namespace types - -#import "DBACCOUNTPhotoSourceArg.h" -#import "DBACCOUNTSetProfilePhotoArg.h" -#import "DBACCOUNTSetProfilePhotoError.h" -#import "DBACCOUNTSetProfilePhotoResult.h" - - -// `Async` namespace types - -#import "DBASYNCLaunchEmptyResult.h" -#import "DBASYNCLaunchResultBase.h" -#import "DBASYNCPollArg.h" -#import "DBASYNCPollEmptyResult.h" -#import "DBASYNCPollError.h" -#import "DBASYNCPollResultBase.h" - - -// `Auth` namespace types - -#import "DBAUTHAccessError.h" -#import "DBAUTHAuthError.h" -#import "DBAUTHInvalidAccountTypeError.h" -#import "DBAUTHPaperAccessError.h" -#import "DBAUTHRateLimitError.h" -#import "DBAUTHRateLimitReason.h" -#import "DBAUTHTokenFromOAuth1Arg.h" -#import "DBAUTHTokenFromOAuth1Error.h" -#import "DBAUTHTokenFromOAuth1Result.h" -#import "DBAUTHTokenScopeError.h" - - -// `Check` namespace types - -#import "DBCHECKEchoArg.h" -#import "DBCHECKEchoResult.h" - - -// `Common` namespace types - -#import "DBCOMMONPathRoot.h" -#import "DBCOMMONPathRootError.h" -#import "DBCOMMONRootInfo.h" -#import "DBCOMMONTeamRootInfo.h" -#import "DBCOMMONUserRootInfo.h" - - -// `Contacts` namespace types - -#import "DBCONTACTSDeleteManualContactsArg.h" -#import "DBCONTACTSDeleteManualContactsError.h" - - -// `FileProperties` namespace types - -#import "DBFILEPROPERTIESAddPropertiesArg.h" -#import "DBFILEPROPERTIESAddPropertiesError.h" -#import "DBFILEPROPERTIESAddTemplateArg.h" -#import "DBFILEPROPERTIESAddTemplateResult.h" -#import "DBFILEPROPERTIESGetTemplateArg.h" -#import "DBFILEPROPERTIESGetTemplateResult.h" -#import "DBFILEPROPERTIESInvalidPropertyGroupError.h" -#import "DBFILEPROPERTIESListTemplateResult.h" -#import "DBFILEPROPERTIESLogicalOperator.h" -#import "DBFILEPROPERTIESLookUpPropertiesError.h" -#import "DBFILEPROPERTIESLookupError.h" -#import "DBFILEPROPERTIESModifyTemplateError.h" -#import "DBFILEPROPERTIESOverwritePropertyGroupArg.h" -#import "DBFILEPROPERTIESPropertiesError.h" -#import "DBFILEPROPERTIESPropertiesSearchArg.h" -#import "DBFILEPROPERTIESPropertiesSearchContinueArg.h" -#import "DBFILEPROPERTIESPropertiesSearchContinueError.h" -#import "DBFILEPROPERTIESPropertiesSearchError.h" -#import "DBFILEPROPERTIESPropertiesSearchMatch.h" -#import "DBFILEPROPERTIESPropertiesSearchMode.h" -#import "DBFILEPROPERTIESPropertiesSearchQuery.h" -#import "DBFILEPROPERTIESPropertiesSearchResult.h" -#import "DBFILEPROPERTIESPropertyField.h" -#import "DBFILEPROPERTIESPropertyFieldTemplate.h" -#import "DBFILEPROPERTIESPropertyGroup.h" -#import "DBFILEPROPERTIESPropertyGroupTemplate.h" -#import "DBFILEPROPERTIESPropertyGroupUpdate.h" -#import "DBFILEPROPERTIESPropertyType.h" -#import "DBFILEPROPERTIESRemovePropertiesArg.h" -#import "DBFILEPROPERTIESRemovePropertiesError.h" -#import "DBFILEPROPERTIESRemoveTemplateArg.h" -#import "DBFILEPROPERTIESTemplateError.h" -#import "DBFILEPROPERTIESTemplateFilter.h" -#import "DBFILEPROPERTIESTemplateFilterBase.h" -#import "DBFILEPROPERTIESTemplateOwnerType.h" -#import "DBFILEPROPERTIESUpdatePropertiesArg.h" -#import "DBFILEPROPERTIESUpdatePropertiesError.h" -#import "DBFILEPROPERTIESUpdateTemplateArg.h" -#import "DBFILEPROPERTIESUpdateTemplateResult.h" - - -// `FileRequests` namespace types - -#import "DBFILEREQUESTSCountFileRequestsError.h" -#import "DBFILEREQUESTSCountFileRequestsResult.h" -#import "DBFILEREQUESTSCreateFileRequestArgs.h" -#import "DBFILEREQUESTSCreateFileRequestError.h" -#import "DBFILEREQUESTSDeleteAllClosedFileRequestsError.h" -#import "DBFILEREQUESTSDeleteAllClosedFileRequestsResult.h" -#import "DBFILEREQUESTSDeleteFileRequestArgs.h" -#import "DBFILEREQUESTSDeleteFileRequestError.h" -#import "DBFILEREQUESTSDeleteFileRequestsResult.h" -#import "DBFILEREQUESTSFileRequest.h" -#import "DBFILEREQUESTSFileRequestDeadline.h" -#import "DBFILEREQUESTSFileRequestError.h" -#import "DBFILEREQUESTSGeneralFileRequestsError.h" -#import "DBFILEREQUESTSGetFileRequestArgs.h" -#import "DBFILEREQUESTSGetFileRequestError.h" -#import "DBFILEREQUESTSGracePeriod.h" -#import "DBFILEREQUESTSListFileRequestsArg.h" -#import "DBFILEREQUESTSListFileRequestsContinueArg.h" -#import "DBFILEREQUESTSListFileRequestsContinueError.h" -#import "DBFILEREQUESTSListFileRequestsError.h" -#import "DBFILEREQUESTSListFileRequestsResult.h" -#import "DBFILEREQUESTSListFileRequestsV2Result.h" -#import "DBFILEREQUESTSUpdateFileRequestArgs.h" -#import "DBFILEREQUESTSUpdateFileRequestDeadline.h" -#import "DBFILEREQUESTSUpdateFileRequestError.h" - - -// `Files` namespace types - -#import "DBFILESAddTagArg.h" -#import "DBFILESAddTagError.h" -#import "DBFILESAlphaGetMetadataArg.h" -#import "DBFILESAlphaGetMetadataError.h" -#import "DBFILESBaseTagError.h" -#import "DBFILESCommitInfo.h" -#import "DBFILESContentSyncSetting.h" -#import "DBFILESContentSyncSettingArg.h" -#import "DBFILESCreateFolderArg.h" -#import "DBFILESCreateFolderBatchArg.h" -#import "DBFILESCreateFolderBatchError.h" -#import "DBFILESCreateFolderBatchJobStatus.h" -#import "DBFILESCreateFolderBatchLaunch.h" -#import "DBFILESCreateFolderBatchResult.h" -#import "DBFILESCreateFolderBatchResultEntry.h" -#import "DBFILESCreateFolderEntryError.h" -#import "DBFILESCreateFolderEntryResult.h" -#import "DBFILESCreateFolderError.h" -#import "DBFILESCreateFolderResult.h" -#import "DBFILESDeleteArg.h" -#import "DBFILESDeleteBatchArg.h" -#import "DBFILESDeleteBatchError.h" -#import "DBFILESDeleteBatchJobStatus.h" -#import "DBFILESDeleteBatchLaunch.h" -#import "DBFILESDeleteBatchResult.h" -#import "DBFILESDeleteBatchResultData.h" -#import "DBFILESDeleteBatchResultEntry.h" -#import "DBFILESDeleteError.h" -#import "DBFILESDeleteResult.h" -#import "DBFILESDeletedMetadata.h" -#import "DBFILESDimensions.h" -#import "DBFILESDownloadArg.h" -#import "DBFILESDownloadError.h" -#import "DBFILESDownloadZipArg.h" -#import "DBFILESDownloadZipError.h" -#import "DBFILESDownloadZipResult.h" -#import "DBFILESExportArg.h" -#import "DBFILESExportError.h" -#import "DBFILESExportInfo.h" -#import "DBFILESExportMetadata.h" -#import "DBFILESExportResult.h" -#import "DBFILESFileCategory.h" -#import "DBFILESFileLock.h" -#import "DBFILESFileLockContent.h" -#import "DBFILESFileLockMetadata.h" -#import "DBFILESFileMetadata.h" -#import "DBFILESFileOpsResult.h" -#import "DBFILESFileSharingInfo.h" -#import "DBFILESFileStatus.h" -#import "DBFILESFolderMetadata.h" -#import "DBFILESFolderSharingInfo.h" -#import "DBFILESGetCopyReferenceArg.h" -#import "DBFILESGetCopyReferenceError.h" -#import "DBFILESGetCopyReferenceResult.h" -#import "DBFILESGetMetadataArg.h" -#import "DBFILESGetMetadataError.h" -#import "DBFILESGetTagsArg.h" -#import "DBFILESGetTagsResult.h" -#import "DBFILESGetTemporaryLinkArg.h" -#import "DBFILESGetTemporaryLinkError.h" -#import "DBFILESGetTemporaryLinkResult.h" -#import "DBFILESGetTemporaryUploadLinkArg.h" -#import "DBFILESGetTemporaryUploadLinkResult.h" -#import "DBFILESGetThumbnailBatchArg.h" -#import "DBFILESGetThumbnailBatchError.h" -#import "DBFILESGetThumbnailBatchResult.h" -#import "DBFILESGetThumbnailBatchResultData.h" -#import "DBFILESGetThumbnailBatchResultEntry.h" -#import "DBFILESGpsCoordinates.h" -#import "DBFILESHighlightSpan.h" -#import "DBFILESImportFormat.h" -#import "DBFILESListFolderArg.h" -#import "DBFILESListFolderContinueArg.h" -#import "DBFILESListFolderContinueError.h" -#import "DBFILESListFolderError.h" -#import "DBFILESListFolderGetLatestCursorResult.h" -#import "DBFILESListFolderLongpollArg.h" -#import "DBFILESListFolderLongpollError.h" -#import "DBFILESListFolderLongpollResult.h" -#import "DBFILESListFolderResult.h" -#import "DBFILESListRevisionsArg.h" -#import "DBFILESListRevisionsError.h" -#import "DBFILESListRevisionsMode.h" -#import "DBFILESListRevisionsResult.h" -#import "DBFILESLockConflictError.h" -#import "DBFILESLockFileArg.h" -#import "DBFILESLockFileBatchArg.h" -#import "DBFILESLockFileBatchResult.h" -#import "DBFILESLockFileError.h" -#import "DBFILESLockFileResult.h" -#import "DBFILESLockFileResultEntry.h" -#import "DBFILESLookupError.h" -#import "DBFILESMediaInfo.h" -#import "DBFILESMediaMetadata.h" -#import "DBFILESMetadata.h" -#import "DBFILESMetadataV2.h" -#import "DBFILESMinimalFileLinkMetadata.h" -#import "DBFILESMoveBatchArg.h" -#import "DBFILESMoveIntoFamilyError.h" -#import "DBFILESMoveIntoVaultError.h" -#import "DBFILESPaperContentError.h" -#import "DBFILESPaperCreateArg.h" -#import "DBFILESPaperCreateError.h" -#import "DBFILESPaperCreateResult.h" -#import "DBFILESPaperDocUpdatePolicy.h" -#import "DBFILESPaperUpdateArg.h" -#import "DBFILESPaperUpdateError.h" -#import "DBFILESPaperUpdateResult.h" -#import "DBFILESPathOrLink.h" -#import "DBFILESPathToTags.h" -#import "DBFILESPhotoMetadata.h" -#import "DBFILESPreviewArg.h" -#import "DBFILESPreviewError.h" -#import "DBFILESPreviewResult.h" -#import "DBFILESRelocationArg.h" -#import "DBFILESRelocationBatchArg.h" -#import "DBFILESRelocationBatchArgBase.h" -#import "DBFILESRelocationBatchError.h" -#import "DBFILESRelocationBatchErrorEntry.h" -#import "DBFILESRelocationBatchJobStatus.h" -#import "DBFILESRelocationBatchLaunch.h" -#import "DBFILESRelocationBatchResult.h" -#import "DBFILESRelocationBatchResultData.h" -#import "DBFILESRelocationBatchResultEntry.h" -#import "DBFILESRelocationBatchV2JobStatus.h" -#import "DBFILESRelocationBatchV2Launch.h" -#import "DBFILESRelocationBatchV2Result.h" -#import "DBFILESRelocationError.h" -#import "DBFILESRelocationPath.h" -#import "DBFILESRelocationResult.h" -#import "DBFILESRemoveTagArg.h" -#import "DBFILESRemoveTagError.h" -#import "DBFILESRestoreArg.h" -#import "DBFILESRestoreError.h" -#import "DBFILESSaveCopyReferenceArg.h" -#import "DBFILESSaveCopyReferenceError.h" -#import "DBFILESSaveCopyReferenceResult.h" -#import "DBFILESSaveUrlArg.h" -#import "DBFILESSaveUrlError.h" -#import "DBFILESSaveUrlJobStatus.h" -#import "DBFILESSaveUrlResult.h" -#import "DBFILESSearchArg.h" -#import "DBFILESSearchError.h" -#import "DBFILESSearchMatch.h" -#import "DBFILESSearchMatchFieldOptions.h" -#import "DBFILESSearchMatchType.h" -#import "DBFILESSearchMatchTypeV2.h" -#import "DBFILESSearchMatchV2.h" -#import "DBFILESSearchMode.h" -#import "DBFILESSearchOptions.h" -#import "DBFILESSearchOrderBy.h" -#import "DBFILESSearchResult.h" -#import "DBFILESSearchV2Arg.h" -#import "DBFILESSearchV2ContinueArg.h" -#import "DBFILESSearchV2Result.h" -#import "DBFILESSharedLink.h" -#import "DBFILESSharedLinkFileInfo.h" -#import "DBFILESSharingInfo.h" -#import "DBFILESSingleUserLock.h" -#import "DBFILESSymlinkInfo.h" -#import "DBFILESSyncSetting.h" -#import "DBFILESSyncSettingArg.h" -#import "DBFILESSyncSettingsError.h" -#import "DBFILESTag.h" -#import "DBFILESThumbnailArg.h" -#import "DBFILESThumbnailError.h" -#import "DBFILESThumbnailFormat.h" -#import "DBFILESThumbnailMode.h" -#import "DBFILESThumbnailSize.h" -#import "DBFILESThumbnailV2Arg.h" -#import "DBFILESThumbnailV2Error.h" -#import "DBFILESUnlockFileArg.h" -#import "DBFILESUnlockFileBatchArg.h" -#import "DBFILESUploadArg.h" -#import "DBFILESUploadError.h" -#import "DBFILESUploadSessionAppendArg.h" -#import "DBFILESUploadSessionAppendError.h" -#import "DBFILESUploadSessionCursor.h" -#import "DBFILESUploadSessionFinishArg.h" -#import "DBFILESUploadSessionFinishBatchArg.h" -#import "DBFILESUploadSessionFinishBatchJobStatus.h" -#import "DBFILESUploadSessionFinishBatchLaunch.h" -#import "DBFILESUploadSessionFinishBatchResult.h" -#import "DBFILESUploadSessionFinishBatchResultEntry.h" -#import "DBFILESUploadSessionFinishError.h" -#import "DBFILESUploadSessionLookupError.h" -#import "DBFILESUploadSessionOffsetError.h" -#import "DBFILESUploadSessionStartArg.h" -#import "DBFILESUploadSessionStartBatchArg.h" -#import "DBFILESUploadSessionStartBatchResult.h" -#import "DBFILESUploadSessionStartError.h" -#import "DBFILESUploadSessionStartResult.h" -#import "DBFILESUploadSessionType.h" -#import "DBFILESUploadWriteFailed.h" -#import "DBFILESUserGeneratedTag.h" -#import "DBFILESVideoMetadata.h" -#import "DBFILESWriteConflictError.h" -#import "DBFILESWriteError.h" -#import "DBFILESWriteMode.h" - - -// `Openid` namespace types - -#import "DBOPENIDOpenIdError.h" -#import "DBOPENIDUserInfoArgs.h" -#import "DBOPENIDUserInfoError.h" -#import "DBOPENIDUserInfoResult.h" - - -// `Paper` namespace types - -#import "DBPAPERAddMember.h" -#import "DBPAPERAddPaperDocUser.h" -#import "DBPAPERAddPaperDocUserMemberResult.h" -#import "DBPAPERAddPaperDocUserResult.h" -#import "DBPAPERCursor.h" -#import "DBPAPERDocLookupError.h" -#import "DBPAPERDocSubscriptionLevel.h" -#import "DBPAPERExportFormat.h" -#import "DBPAPERFolder.h" -#import "DBPAPERFolderSharingPolicyType.h" -#import "DBPAPERFolderSubscriptionLevel.h" -#import "DBPAPERFoldersContainingPaperDoc.h" -#import "DBPAPERImportFormat.h" -#import "DBPAPERInviteeInfoWithPermissionLevel.h" -#import "DBPAPERListDocsCursorError.h" -#import "DBPAPERListPaperDocsArgs.h" -#import "DBPAPERListPaperDocsContinueArgs.h" -#import "DBPAPERListPaperDocsFilterBy.h" -#import "DBPAPERListPaperDocsResponse.h" -#import "DBPAPERListPaperDocsSortBy.h" -#import "DBPAPERListPaperDocsSortOrder.h" -#import "DBPAPERListUsersCursorError.h" -#import "DBPAPERListUsersOnFolderArgs.h" -#import "DBPAPERListUsersOnFolderContinueArgs.h" -#import "DBPAPERListUsersOnFolderResponse.h" -#import "DBPAPERListUsersOnPaperDocArgs.h" -#import "DBPAPERListUsersOnPaperDocContinueArgs.h" -#import "DBPAPERListUsersOnPaperDocResponse.h" -#import "DBPAPERPaperApiBaseError.h" -#import "DBPAPERPaperApiCursorError.h" -#import "DBPAPERPaperDocCreateArgs.h" -#import "DBPAPERPaperDocCreateError.h" -#import "DBPAPERPaperDocCreateUpdateResult.h" -#import "DBPAPERPaperDocExport.h" -#import "DBPAPERPaperDocExportResult.h" -#import "DBPAPERPaperDocPermissionLevel.h" -#import "DBPAPERPaperDocSharingPolicy.h" -#import "DBPAPERPaperDocUpdateArgs.h" -#import "DBPAPERPaperDocUpdateError.h" -#import "DBPAPERPaperDocUpdatePolicy.h" -#import "DBPAPERPaperFolderCreateArg.h" -#import "DBPAPERPaperFolderCreateError.h" -#import "DBPAPERPaperFolderCreateResult.h" -#import "DBPAPERRefPaperDoc.h" -#import "DBPAPERRemovePaperDocUser.h" -#import "DBPAPERSharingPolicy.h" -#import "DBPAPERSharingPublicPolicyType.h" -#import "DBPAPERSharingTeamPolicyType.h" -#import "DBPAPERUserInfoWithPermissionLevel.h" -#import "DBPAPERUserOnPaperDocFilter.h" - - -// `SecondaryEmails` namespace types - -#import "DBSECONDARYEMAILSSecondaryEmail.h" - - -// `SeenState` namespace types - -#import "DBSEENSTATEPlatformType.h" - - -// `Sharing` namespace types - -#import "DBSHARINGAccessInheritance.h" -#import "DBSHARINGAccessLevel.h" -#import "DBSHARINGAclUpdatePolicy.h" -#import "DBSHARINGAddFileMemberArgs.h" -#import "DBSHARINGAddFileMemberError.h" -#import "DBSHARINGAddFolderMemberArg.h" -#import "DBSHARINGAddFolderMemberError.h" -#import "DBSHARINGAddMember.h" -#import "DBSHARINGAddMemberSelectorError.h" -#import "DBSHARINGAlphaResolvedVisibility.h" -#import "DBSHARINGAudienceExceptionContentInfo.h" -#import "DBSHARINGAudienceExceptions.h" -#import "DBSHARINGAudienceRestrictingSharedFolder.h" -#import "DBSHARINGCollectionLinkMetadata.h" -#import "DBSHARINGCreateSharedLinkArg.h" -#import "DBSHARINGCreateSharedLinkError.h" -#import "DBSHARINGCreateSharedLinkWithSettingsArg.h" -#import "DBSHARINGCreateSharedLinkWithSettingsError.h" -#import "DBSHARINGExpectedSharedContentLinkMetadata.h" -#import "DBSHARINGFileAction.h" -#import "DBSHARINGFileErrorResult.h" -#import "DBSHARINGFileLinkMetadata.h" -#import "DBSHARINGFileMemberActionError.h" -#import "DBSHARINGFileMemberActionIndividualResult.h" -#import "DBSHARINGFileMemberActionResult.h" -#import "DBSHARINGFileMemberRemoveActionResult.h" -#import "DBSHARINGFilePermission.h" -#import "DBSHARINGFolderAction.h" -#import "DBSHARINGFolderLinkMetadata.h" -#import "DBSHARINGFolderPermission.h" -#import "DBSHARINGFolderPolicy.h" -#import "DBSHARINGGetFileMetadataArg.h" -#import "DBSHARINGGetFileMetadataBatchArg.h" -#import "DBSHARINGGetFileMetadataBatchResult.h" -#import "DBSHARINGGetFileMetadataError.h" -#import "DBSHARINGGetFileMetadataIndividualResult.h" -#import "DBSHARINGGetMetadataArgs.h" -#import "DBSHARINGGetSharedLinkFileError.h" -#import "DBSHARINGGetSharedLinkMetadataArg.h" -#import "DBSHARINGGetSharedLinksArg.h" -#import "DBSHARINGGetSharedLinksError.h" -#import "DBSHARINGGetSharedLinksResult.h" -#import "DBSHARINGGroupInfo.h" -#import "DBSHARINGGroupMembershipInfo.h" -#import "DBSHARINGInsufficientPlan.h" -#import "DBSHARINGInsufficientQuotaAmounts.h" -#import "DBSHARINGInviteeInfo.h" -#import "DBSHARINGInviteeMembershipInfo.h" -#import "DBSHARINGJobError.h" -#import "DBSHARINGJobStatus.h" -#import "DBSHARINGLinkAccessLevel.h" -#import "DBSHARINGLinkAction.h" -#import "DBSHARINGLinkAudience.h" -#import "DBSHARINGLinkAudienceDisallowedReason.h" -#import "DBSHARINGLinkAudienceOption.h" -#import "DBSHARINGLinkExpiry.h" -#import "DBSHARINGLinkMetadata.h" -#import "DBSHARINGLinkPassword.h" -#import "DBSHARINGLinkPermission.h" -#import "DBSHARINGLinkPermissions.h" -#import "DBSHARINGLinkSettings.h" -#import "DBSHARINGListFileMembersArg.h" -#import "DBSHARINGListFileMembersBatchArg.h" -#import "DBSHARINGListFileMembersBatchResult.h" -#import "DBSHARINGListFileMembersContinueArg.h" -#import "DBSHARINGListFileMembersContinueError.h" -#import "DBSHARINGListFileMembersCountResult.h" -#import "DBSHARINGListFileMembersError.h" -#import "DBSHARINGListFileMembersIndividualResult.h" -#import "DBSHARINGListFilesArg.h" -#import "DBSHARINGListFilesContinueArg.h" -#import "DBSHARINGListFilesContinueError.h" -#import "DBSHARINGListFilesResult.h" -#import "DBSHARINGListFolderMembersArgs.h" -#import "DBSHARINGListFolderMembersContinueArg.h" -#import "DBSHARINGListFolderMembersContinueError.h" -#import "DBSHARINGListFolderMembersCursorArg.h" -#import "DBSHARINGListFoldersArgs.h" -#import "DBSHARINGListFoldersContinueArg.h" -#import "DBSHARINGListFoldersContinueError.h" -#import "DBSHARINGListFoldersResult.h" -#import "DBSHARINGListSharedLinksArg.h" -#import "DBSHARINGListSharedLinksError.h" -#import "DBSHARINGListSharedLinksResult.h" -#import "DBSHARINGMemberAccessLevelResult.h" -#import "DBSHARINGMemberAction.h" -#import "DBSHARINGMemberPermission.h" -#import "DBSHARINGMemberPolicy.h" -#import "DBSHARINGMemberSelector.h" -#import "DBSHARINGMembershipInfo.h" -#import "DBSHARINGModifySharedLinkSettingsArgs.h" -#import "DBSHARINGModifySharedLinkSettingsError.h" -#import "DBSHARINGMountFolderArg.h" -#import "DBSHARINGMountFolderError.h" -#import "DBSHARINGParentFolderAccessInfo.h" -#import "DBSHARINGPathLinkMetadata.h" -#import "DBSHARINGPendingUploadMode.h" -#import "DBSHARINGPermissionDeniedReason.h" -#import "DBSHARINGRelinquishFileMembershipArg.h" -#import "DBSHARINGRelinquishFileMembershipError.h" -#import "DBSHARINGRelinquishFolderMembershipArg.h" -#import "DBSHARINGRelinquishFolderMembershipError.h" -#import "DBSHARINGRemoveFileMemberArg.h" -#import "DBSHARINGRemoveFileMemberError.h" -#import "DBSHARINGRemoveFolderMemberArg.h" -#import "DBSHARINGRemoveFolderMemberError.h" -#import "DBSHARINGRemoveMemberJobStatus.h" -#import "DBSHARINGRequestedLinkAccessLevel.h" -#import "DBSHARINGRequestedVisibility.h" -#import "DBSHARINGResolvedVisibility.h" -#import "DBSHARINGRevokeSharedLinkArg.h" -#import "DBSHARINGRevokeSharedLinkError.h" -#import "DBSHARINGSetAccessInheritanceArg.h" -#import "DBSHARINGSetAccessInheritanceError.h" -#import "DBSHARINGShareFolderArg.h" -#import "DBSHARINGShareFolderArgBase.h" -#import "DBSHARINGShareFolderError.h" -#import "DBSHARINGShareFolderErrorBase.h" -#import "DBSHARINGShareFolderJobStatus.h" -#import "DBSHARINGShareFolderLaunch.h" -#import "DBSHARINGSharePathError.h" -#import "DBSHARINGSharedContentLinkMetadata.h" -#import "DBSHARINGSharedContentLinkMetadataBase.h" -#import "DBSHARINGSharedFileMembers.h" -#import "DBSHARINGSharedFileMetadata.h" -#import "DBSHARINGSharedFolderAccessError.h" -#import "DBSHARINGSharedFolderMemberError.h" -#import "DBSHARINGSharedFolderMembers.h" -#import "DBSHARINGSharedFolderMetadata.h" -#import "DBSHARINGSharedFolderMetadataBase.h" -#import "DBSHARINGSharedLinkAccessFailureReason.h" -#import "DBSHARINGSharedLinkAlreadyExistsMetadata.h" -#import "DBSHARINGSharedLinkError.h" -#import "DBSHARINGSharedLinkMetadata.h" -#import "DBSHARINGSharedLinkPolicy.h" -#import "DBSHARINGSharedLinkSettings.h" -#import "DBSHARINGSharedLinkSettingsError.h" -#import "DBSHARINGSharingFileAccessError.h" -#import "DBSHARINGSharingUserError.h" -#import "DBSHARINGTeamMemberInfo.h" -#import "DBSHARINGTransferFolderArg.h" -#import "DBSHARINGTransferFolderError.h" -#import "DBSHARINGUnmountFolderArg.h" -#import "DBSHARINGUnmountFolderError.h" -#import "DBSHARINGUnshareFileArg.h" -#import "DBSHARINGUnshareFileError.h" -#import "DBSHARINGUnshareFolderArg.h" -#import "DBSHARINGUnshareFolderError.h" -#import "DBSHARINGUpdateFileMemberArgs.h" -#import "DBSHARINGUpdateFolderMemberArg.h" -#import "DBSHARINGUpdateFolderMemberError.h" -#import "DBSHARINGUpdateFolderPolicyArg.h" -#import "DBSHARINGUpdateFolderPolicyError.h" -#import "DBSHARINGUserFileMembershipInfo.h" -#import "DBSHARINGUserInfo.h" -#import "DBSHARINGUserMembershipInfo.h" -#import "DBSHARINGViewerInfoPolicy.h" -#import "DBSHARINGVisibility.h" -#import "DBSHARINGVisibilityPolicy.h" -#import "DBSHARINGVisibilityPolicyDisallowedReason.h" - - -// `Team` namespace types - -#import "DBTEAMActiveWebSession.h" -#import "DBTEAMAddSecondaryEmailResult.h" -#import "DBTEAMAddSecondaryEmailsArg.h" -#import "DBTEAMAddSecondaryEmailsError.h" -#import "DBTEAMAddSecondaryEmailsResult.h" -#import "DBTEAMAdminTier.h" -#import "DBTEAMApiApp.h" -#import "DBTEAMBaseDfbReport.h" -#import "DBTEAMBaseTeamFolderError.h" -#import "DBTEAMCustomQuotaError.h" -#import "DBTEAMCustomQuotaResult.h" -#import "DBTEAMCustomQuotaUsersArg.h" -#import "DBTEAMDateRange.h" -#import "DBTEAMDateRangeError.h" -#import "DBTEAMDeleteSecondaryEmailResult.h" -#import "DBTEAMDeleteSecondaryEmailsArg.h" -#import "DBTEAMDeleteSecondaryEmailsResult.h" -#import "DBTEAMDesktopClientSession.h" -#import "DBTEAMDesktopPlatform.h" -#import "DBTEAMDeviceSession.h" -#import "DBTEAMDeviceSessionArg.h" -#import "DBTEAMDevicesActive.h" -#import "DBTEAMExcludedUsersListArg.h" -#import "DBTEAMExcludedUsersListContinueArg.h" -#import "DBTEAMExcludedUsersListContinueError.h" -#import "DBTEAMExcludedUsersListError.h" -#import "DBTEAMExcludedUsersListResult.h" -#import "DBTEAMExcludedUsersUpdateArg.h" -#import "DBTEAMExcludedUsersUpdateError.h" -#import "DBTEAMExcludedUsersUpdateResult.h" -#import "DBTEAMExcludedUsersUpdateStatus.h" -#import "DBTEAMFeature.h" -#import "DBTEAMFeatureValue.h" -#import "DBTEAMFeaturesGetValuesBatchArg.h" -#import "DBTEAMFeaturesGetValuesBatchError.h" -#import "DBTEAMFeaturesGetValuesBatchResult.h" -#import "DBTEAMGetActivityReport.h" -#import "DBTEAMGetDevicesReport.h" -#import "DBTEAMGetMembershipReport.h" -#import "DBTEAMGetStorageReport.h" -#import "DBTEAMGroupAccessType.h" -#import "DBTEAMGroupCreateArg.h" -#import "DBTEAMGroupCreateError.h" -#import "DBTEAMGroupDeleteError.h" -#import "DBTEAMGroupFullInfo.h" -#import "DBTEAMGroupMemberInfo.h" -#import "DBTEAMGroupMemberSelector.h" -#import "DBTEAMGroupMemberSelectorError.h" -#import "DBTEAMGroupMemberSetAccessTypeError.h" -#import "DBTEAMGroupMembersAddArg.h" -#import "DBTEAMGroupMembersAddError.h" -#import "DBTEAMGroupMembersChangeResult.h" -#import "DBTEAMGroupMembersRemoveArg.h" -#import "DBTEAMGroupMembersRemoveError.h" -#import "DBTEAMGroupMembersSelector.h" -#import "DBTEAMGroupMembersSelectorError.h" -#import "DBTEAMGroupMembersSetAccessTypeArg.h" -#import "DBTEAMGroupSelector.h" -#import "DBTEAMGroupSelectorError.h" -#import "DBTEAMGroupSelectorWithTeamGroupError.h" -#import "DBTEAMGroupUpdateArgs.h" -#import "DBTEAMGroupUpdateError.h" -#import "DBTEAMGroupsGetInfoError.h" -#import "DBTEAMGroupsGetInfoItem.h" -#import "DBTEAMGroupsListArg.h" -#import "DBTEAMGroupsListContinueArg.h" -#import "DBTEAMGroupsListContinueError.h" -#import "DBTEAMGroupsListResult.h" -#import "DBTEAMGroupsMembersListArg.h" -#import "DBTEAMGroupsMembersListContinueArg.h" -#import "DBTEAMGroupsMembersListContinueError.h" -#import "DBTEAMGroupsMembersListResult.h" -#import "DBTEAMGroupsPollError.h" -#import "DBTEAMGroupsSelector.h" -#import "DBTEAMHasTeamFileEventsValue.h" -#import "DBTEAMHasTeamSelectiveSyncValue.h" -#import "DBTEAMHasTeamSharedDropboxValue.h" -#import "DBTEAMIncludeMembersArg.h" -#import "DBTEAMLegalHoldHeldRevisionMetadata.h" -#import "DBTEAMLegalHoldPolicy.h" -#import "DBTEAMLegalHoldStatus.h" -#import "DBTEAMLegalHoldsError.h" -#import "DBTEAMLegalHoldsGetPolicyArg.h" -#import "DBTEAMLegalHoldsGetPolicyError.h" -#import "DBTEAMLegalHoldsListHeldRevisionResult.h" -#import "DBTEAMLegalHoldsListHeldRevisionsArg.h" -#import "DBTEAMLegalHoldsListHeldRevisionsContinueArg.h" -#import "DBTEAMLegalHoldsListHeldRevisionsContinueError.h" -#import "DBTEAMLegalHoldsListHeldRevisionsError.h" -#import "DBTEAMLegalHoldsListPoliciesArg.h" -#import "DBTEAMLegalHoldsListPoliciesError.h" -#import "DBTEAMLegalHoldsListPoliciesResult.h" -#import "DBTEAMLegalHoldsPolicyCreateArg.h" -#import "DBTEAMLegalHoldsPolicyCreateError.h" -#import "DBTEAMLegalHoldsPolicyReleaseArg.h" -#import "DBTEAMLegalHoldsPolicyReleaseError.h" -#import "DBTEAMLegalHoldsPolicyUpdateArg.h" -#import "DBTEAMLegalHoldsPolicyUpdateError.h" -#import "DBTEAMListMemberAppsArg.h" -#import "DBTEAMListMemberAppsError.h" -#import "DBTEAMListMemberAppsResult.h" -#import "DBTEAMListMemberDevicesArg.h" -#import "DBTEAMListMemberDevicesError.h" -#import "DBTEAMListMemberDevicesResult.h" -#import "DBTEAMListMembersAppsArg.h" -#import "DBTEAMListMembersAppsError.h" -#import "DBTEAMListMembersAppsResult.h" -#import "DBTEAMListMembersDevicesArg.h" -#import "DBTEAMListMembersDevicesError.h" -#import "DBTEAMListMembersDevicesResult.h" -#import "DBTEAMListTeamAppsArg.h" -#import "DBTEAMListTeamAppsError.h" -#import "DBTEAMListTeamAppsResult.h" -#import "DBTEAMListTeamDevicesArg.h" -#import "DBTEAMListTeamDevicesError.h" -#import "DBTEAMListTeamDevicesResult.h" -#import "DBTEAMMemberAccess.h" -#import "DBTEAMMemberAddArg.h" -#import "DBTEAMMemberAddArgBase.h" -#import "DBTEAMMemberAddResult.h" -#import "DBTEAMMemberAddResultBase.h" -#import "DBTEAMMemberAddV2Arg.h" -#import "DBTEAMMemberAddV2Result.h" -#import "DBTEAMMemberDevices.h" -#import "DBTEAMMemberLinkedApps.h" -#import "DBTEAMMemberProfile.h" -#import "DBTEAMMemberSelectorError.h" -#import "DBTEAMMembersAddArg.h" -#import "DBTEAMMembersAddArgBase.h" -#import "DBTEAMMembersAddJobStatus.h" -#import "DBTEAMMembersAddJobStatusV2Result.h" -#import "DBTEAMMembersAddLaunch.h" -#import "DBTEAMMembersAddLaunchV2Result.h" -#import "DBTEAMMembersAddV2Arg.h" -#import "DBTEAMMembersDataTransferArg.h" -#import "DBTEAMMembersDeactivateArg.h" -#import "DBTEAMMembersDeactivateBaseArg.h" -#import "DBTEAMMembersDeactivateError.h" -#import "DBTEAMMembersDeleteProfilePhotoArg.h" -#import "DBTEAMMembersDeleteProfilePhotoError.h" -#import "DBTEAMMembersGetAvailableTeamMemberRolesResult.h" -#import "DBTEAMMembersGetInfoArgs.h" -#import "DBTEAMMembersGetInfoError.h" -#import "DBTEAMMembersGetInfoItem.h" -#import "DBTEAMMembersGetInfoItemBase.h" -#import "DBTEAMMembersGetInfoItemV2.h" -#import "DBTEAMMembersGetInfoV2Arg.h" -#import "DBTEAMMembersGetInfoV2Result.h" -#import "DBTEAMMembersInfo.h" -#import "DBTEAMMembersListArg.h" -#import "DBTEAMMembersListContinueArg.h" -#import "DBTEAMMembersListContinueError.h" -#import "DBTEAMMembersListError.h" -#import "DBTEAMMembersListResult.h" -#import "DBTEAMMembersListV2Result.h" -#import "DBTEAMMembersRecoverArg.h" -#import "DBTEAMMembersRecoverError.h" -#import "DBTEAMMembersRemoveArg.h" -#import "DBTEAMMembersRemoveError.h" -#import "DBTEAMMembersSendWelcomeError.h" -#import "DBTEAMMembersSetPermissions2Arg.h" -#import "DBTEAMMembersSetPermissions2Error.h" -#import "DBTEAMMembersSetPermissions2Result.h" -#import "DBTEAMMembersSetPermissionsArg.h" -#import "DBTEAMMembersSetPermissionsError.h" -#import "DBTEAMMembersSetPermissionsResult.h" -#import "DBTEAMMembersSetProfileArg.h" -#import "DBTEAMMembersSetProfileError.h" -#import "DBTEAMMembersSetProfilePhotoArg.h" -#import "DBTEAMMembersSetProfilePhotoError.h" -#import "DBTEAMMembersSuspendError.h" -#import "DBTEAMMembersTransferFilesError.h" -#import "DBTEAMMembersTransferFormerMembersFilesError.h" -#import "DBTEAMMembersUnsuspendArg.h" -#import "DBTEAMMembersUnsuspendError.h" -#import "DBTEAMMobileClientPlatform.h" -#import "DBTEAMMobileClientSession.h" -#import "DBTEAMNamespaceMetadata.h" -#import "DBTEAMNamespaceType.h" -#import "DBTEAMRemoveCustomQuotaResult.h" -#import "DBTEAMRemovedStatus.h" -#import "DBTEAMResendSecondaryEmailResult.h" -#import "DBTEAMResendVerificationEmailArg.h" -#import "DBTEAMResendVerificationEmailResult.h" -#import "DBTEAMRevokeDesktopClientArg.h" -#import "DBTEAMRevokeDeviceSessionArg.h" -#import "DBTEAMRevokeDeviceSessionBatchArg.h" -#import "DBTEAMRevokeDeviceSessionBatchError.h" -#import "DBTEAMRevokeDeviceSessionBatchResult.h" -#import "DBTEAMRevokeDeviceSessionError.h" -#import "DBTEAMRevokeDeviceSessionStatus.h" -#import "DBTEAMRevokeLinkedApiAppArg.h" -#import "DBTEAMRevokeLinkedApiAppBatchArg.h" -#import "DBTEAMRevokeLinkedAppBatchError.h" -#import "DBTEAMRevokeLinkedAppBatchResult.h" -#import "DBTEAMRevokeLinkedAppError.h" -#import "DBTEAMRevokeLinkedAppStatus.h" -#import "DBTEAMSetCustomQuotaArg.h" -#import "DBTEAMSetCustomQuotaError.h" -#import "DBTEAMSharingAllowlistAddArgs.h" -#import "DBTEAMSharingAllowlistAddError.h" -#import "DBTEAMSharingAllowlistAddResponse.h" -#import "DBTEAMSharingAllowlistListArg.h" -#import "DBTEAMSharingAllowlistListContinueArg.h" -#import "DBTEAMSharingAllowlistListContinueError.h" -#import "DBTEAMSharingAllowlistListError.h" -#import "DBTEAMSharingAllowlistListResponse.h" -#import "DBTEAMSharingAllowlistRemoveArgs.h" -#import "DBTEAMSharingAllowlistRemoveError.h" -#import "DBTEAMSharingAllowlistRemoveResponse.h" -#import "DBTEAMStorageBucket.h" -#import "DBTEAMTeamFolderAccessError.h" -#import "DBTEAMTeamFolderActivateError.h" -#import "DBTEAMTeamFolderArchiveArg.h" -#import "DBTEAMTeamFolderArchiveError.h" -#import "DBTEAMTeamFolderArchiveJobStatus.h" -#import "DBTEAMTeamFolderArchiveLaunch.h" -#import "DBTEAMTeamFolderCreateArg.h" -#import "DBTEAMTeamFolderCreateError.h" -#import "DBTEAMTeamFolderGetInfoItem.h" -#import "DBTEAMTeamFolderIdArg.h" -#import "DBTEAMTeamFolderIdListArg.h" -#import "DBTEAMTeamFolderInvalidStatusError.h" -#import "DBTEAMTeamFolderListArg.h" -#import "DBTEAMTeamFolderListContinueArg.h" -#import "DBTEAMTeamFolderListContinueError.h" -#import "DBTEAMTeamFolderListError.h" -#import "DBTEAMTeamFolderListResult.h" -#import "DBTEAMTeamFolderMetadata.h" -#import "DBTEAMTeamFolderPermanentlyDeleteError.h" -#import "DBTEAMTeamFolderRenameArg.h" -#import "DBTEAMTeamFolderRenameError.h" -#import "DBTEAMTeamFolderStatus.h" -#import "DBTEAMTeamFolderTeamSharedDropboxError.h" -#import "DBTEAMTeamFolderUpdateSyncSettingsArg.h" -#import "DBTEAMTeamFolderUpdateSyncSettingsError.h" -#import "DBTEAMTeamGetInfoResult.h" -#import "DBTEAMTeamMemberInfo.h" -#import "DBTEAMTeamMemberInfoV2.h" -#import "DBTEAMTeamMemberInfoV2Result.h" -#import "DBTEAMTeamMemberProfile.h" -#import "DBTEAMTeamMemberRole.h" -#import "DBTEAMTeamMemberStatus.h" -#import "DBTEAMTeamMembershipType.h" -#import "DBTEAMTeamNamespacesListArg.h" -#import "DBTEAMTeamNamespacesListContinueArg.h" -#import "DBTEAMTeamNamespacesListContinueError.h" -#import "DBTEAMTeamNamespacesListError.h" -#import "DBTEAMTeamNamespacesListResult.h" -#import "DBTEAMTeamReportFailureReason.h" -#import "DBTEAMTokenGetAuthenticatedAdminError.h" -#import "DBTEAMTokenGetAuthenticatedAdminResult.h" -#import "DBTEAMUploadApiRateLimitValue.h" -#import "DBTEAMUserAddResult.h" -#import "DBTEAMUserCustomQuotaArg.h" -#import "DBTEAMUserCustomQuotaResult.h" -#import "DBTEAMUserDeleteEmailsResult.h" -#import "DBTEAMUserDeleteResult.h" -#import "DBTEAMUserResendEmailsResult.h" -#import "DBTEAMUserResendResult.h" -#import "DBTEAMUserSecondaryEmailsArg.h" -#import "DBTEAMUserSecondaryEmailsResult.h" -#import "DBTEAMUserSelectorArg.h" -#import "DBTEAMUserSelectorError.h" -#import "DBTEAMUsersSelectorArg.h" - - -// `TeamCommon` namespace types - -#import "DBTEAMCOMMONGroupManagementType.h" -#import "DBTEAMCOMMONGroupSummary.h" -#import "DBTEAMCOMMONGroupType.h" -#import "DBTEAMCOMMONMemberSpaceLimitType.h" -#import "DBTEAMCOMMONTimeRange.h" - - -// `TeamLog` namespace types - -#import "DBTEAMLOGAccessMethodLogInfo.h" -#import "DBTEAMLOGAccountCaptureAvailability.h" -#import "DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h" -#import "DBTEAMLOGAccountCaptureChangeAvailabilityType.h" -#import "DBTEAMLOGAccountCaptureChangePolicyDetails.h" -#import "DBTEAMLOGAccountCaptureChangePolicyType.h" -#import "DBTEAMLOGAccountCaptureMigrateAccountDetails.h" -#import "DBTEAMLOGAccountCaptureMigrateAccountType.h" -#import "DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h" -#import "DBTEAMLOGAccountCaptureNotificationEmailsSentType.h" -#import "DBTEAMLOGAccountCaptureNotificationType.h" -#import "DBTEAMLOGAccountCapturePolicy.h" -#import "DBTEAMLOGAccountCaptureRelinquishAccountDetails.h" -#import "DBTEAMLOGAccountCaptureRelinquishAccountType.h" -#import "DBTEAMLOGAccountLockOrUnlockedDetails.h" -#import "DBTEAMLOGAccountLockOrUnlockedType.h" -#import "DBTEAMLOGAccountState.h" -#import "DBTEAMLOGActionDetails.h" -#import "DBTEAMLOGActorLogInfo.h" -#import "DBTEAMLOGAdminAlertCategoryEnum.h" -#import "DBTEAMLOGAdminAlertGeneralStateEnum.h" -#import "DBTEAMLOGAdminAlertSeverityEnum.h" -#import "DBTEAMLOGAdminAlertingAlertConfiguration.h" -#import "DBTEAMLOGAdminAlertingAlertSensitivity.h" -#import "DBTEAMLOGAdminAlertingAlertStateChangedDetails.h" -#import "DBTEAMLOGAdminAlertingAlertStateChangedType.h" -#import "DBTEAMLOGAdminAlertingAlertStatePolicy.h" -#import "DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h" -#import "DBTEAMLOGAdminAlertingChangedAlertConfigType.h" -#import "DBTEAMLOGAdminAlertingTriggeredAlertDetails.h" -#import "DBTEAMLOGAdminAlertingTriggeredAlertType.h" -#import "DBTEAMLOGAdminConsoleAppPermission.h" -#import "DBTEAMLOGAdminConsoleAppPolicy.h" -#import "DBTEAMLOGAdminEmailRemindersChangedDetails.h" -#import "DBTEAMLOGAdminEmailRemindersChangedType.h" -#import "DBTEAMLOGAdminEmailRemindersPolicy.h" -#import "DBTEAMLOGAdminRole.h" -#import "DBTEAMLOGAlertRecipientsSettingType.h" -#import "DBTEAMLOGAllowDownloadDisabledDetails.h" -#import "DBTEAMLOGAllowDownloadDisabledType.h" -#import "DBTEAMLOGAllowDownloadEnabledDetails.h" -#import "DBTEAMLOGAllowDownloadEnabledType.h" -#import "DBTEAMLOGApiSessionLogInfo.h" -#import "DBTEAMLOGAppBlockedByPermissionsDetails.h" -#import "DBTEAMLOGAppBlockedByPermissionsType.h" -#import "DBTEAMLOGAppLinkTeamDetails.h" -#import "DBTEAMLOGAppLinkTeamType.h" -#import "DBTEAMLOGAppLinkUserDetails.h" -#import "DBTEAMLOGAppLinkUserType.h" -#import "DBTEAMLOGAppLogInfo.h" -#import "DBTEAMLOGAppPermissionsChangedDetails.h" -#import "DBTEAMLOGAppPermissionsChangedType.h" -#import "DBTEAMLOGAppUnlinkTeamDetails.h" -#import "DBTEAMLOGAppUnlinkTeamType.h" -#import "DBTEAMLOGAppUnlinkUserDetails.h" -#import "DBTEAMLOGAppUnlinkUserType.h" -#import "DBTEAMLOGApplyNamingConventionDetails.h" -#import "DBTEAMLOGApplyNamingConventionType.h" -#import "DBTEAMLOGAssetLogInfo.h" -#import "DBTEAMLOGBackupAdminInvitationSentDetails.h" -#import "DBTEAMLOGBackupAdminInvitationSentType.h" -#import "DBTEAMLOGBackupInvitationOpenedDetails.h" -#import "DBTEAMLOGBackupInvitationOpenedType.h" -#import "DBTEAMLOGBackupStatus.h" -#import "DBTEAMLOGBinderAddPageDetails.h" -#import "DBTEAMLOGBinderAddPageType.h" -#import "DBTEAMLOGBinderAddSectionDetails.h" -#import "DBTEAMLOGBinderAddSectionType.h" -#import "DBTEAMLOGBinderRemovePageDetails.h" -#import "DBTEAMLOGBinderRemovePageType.h" -#import "DBTEAMLOGBinderRemoveSectionDetails.h" -#import "DBTEAMLOGBinderRemoveSectionType.h" -#import "DBTEAMLOGBinderRenamePageDetails.h" -#import "DBTEAMLOGBinderRenamePageType.h" -#import "DBTEAMLOGBinderRenameSectionDetails.h" -#import "DBTEAMLOGBinderRenameSectionType.h" -#import "DBTEAMLOGBinderReorderPageDetails.h" -#import "DBTEAMLOGBinderReorderPageType.h" -#import "DBTEAMLOGBinderReorderSectionDetails.h" -#import "DBTEAMLOGBinderReorderSectionType.h" -#import "DBTEAMLOGCameraUploadsPolicy.h" -#import "DBTEAMLOGCameraUploadsPolicyChangedDetails.h" -#import "DBTEAMLOGCameraUploadsPolicyChangedType.h" -#import "DBTEAMLOGCaptureTranscriptPolicy.h" -#import "DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h" -#import "DBTEAMLOGCaptureTranscriptPolicyChangedType.h" -#import "DBTEAMLOGCertificate.h" -#import "DBTEAMLOGChangeLinkExpirationPolicy.h" -#import "DBTEAMLOGChangedEnterpriseAdminRoleDetails.h" -#import "DBTEAMLOGChangedEnterpriseAdminRoleType.h" -#import "DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h" -#import "DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h" -#import "DBTEAMLOGClassificationChangePolicyDetails.h" -#import "DBTEAMLOGClassificationChangePolicyType.h" -#import "DBTEAMLOGClassificationCreateReportDetails.h" -#import "DBTEAMLOGClassificationCreateReportFailDetails.h" -#import "DBTEAMLOGClassificationCreateReportFailType.h" -#import "DBTEAMLOGClassificationCreateReportType.h" -#import "DBTEAMLOGClassificationPolicyEnumWrapper.h" -#import "DBTEAMLOGClassificationType.h" -#import "DBTEAMLOGCollectionShareDetails.h" -#import "DBTEAMLOGCollectionShareType.h" -#import "DBTEAMLOGComputerBackupPolicy.h" -#import "DBTEAMLOGComputerBackupPolicyChangedDetails.h" -#import "DBTEAMLOGComputerBackupPolicyChangedType.h" -#import "DBTEAMLOGConnectedTeamName.h" -#import "DBTEAMLOGContentAdministrationPolicyChangedDetails.h" -#import "DBTEAMLOGContentAdministrationPolicyChangedType.h" -#import "DBTEAMLOGContentPermanentDeletePolicy.h" -#import "DBTEAMLOGContextLogInfo.h" -#import "DBTEAMLOGCreateFolderDetails.h" -#import "DBTEAMLOGCreateFolderType.h" -#import "DBTEAMLOGCreateTeamInviteLinkDetails.h" -#import "DBTEAMLOGCreateTeamInviteLinkType.h" -#import "DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h" -#import "DBTEAMLOGDataPlacementRestrictionChangePolicyType.h" -#import "DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h" -#import "DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h" -#import "DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h" -#import "DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h" -#import "DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h" -#import "DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h" -#import "DBTEAMLOGDefaultLinkExpirationDaysPolicy.h" -#import "DBTEAMLOGDeleteTeamInviteLinkDetails.h" -#import "DBTEAMLOGDeleteTeamInviteLinkType.h" -#import "DBTEAMLOGDesktopDeviceSessionLogInfo.h" -#import "DBTEAMLOGDesktopSessionLogInfo.h" -#import "DBTEAMLOGDeviceApprovalsAddExceptionDetails.h" -#import "DBTEAMLOGDeviceApprovalsAddExceptionType.h" -#import "DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h" -#import "DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h" -#import "DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeOverageActionType.h" -#import "DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h" -#import "DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h" -#import "DBTEAMLOGDeviceApprovalsPolicy.h" -#import "DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h" -#import "DBTEAMLOGDeviceApprovalsRemoveExceptionType.h" -#import "DBTEAMLOGDeviceChangeIpDesktopDetails.h" -#import "DBTEAMLOGDeviceChangeIpDesktopType.h" -#import "DBTEAMLOGDeviceChangeIpMobileDetails.h" -#import "DBTEAMLOGDeviceChangeIpMobileType.h" -#import "DBTEAMLOGDeviceChangeIpWebDetails.h" -#import "DBTEAMLOGDeviceChangeIpWebType.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkFailType.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h" -#import "DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h" -#import "DBTEAMLOGDeviceLinkFailDetails.h" -#import "DBTEAMLOGDeviceLinkFailType.h" -#import "DBTEAMLOGDeviceLinkSuccessDetails.h" -#import "DBTEAMLOGDeviceLinkSuccessType.h" -#import "DBTEAMLOGDeviceManagementDisabledDetails.h" -#import "DBTEAMLOGDeviceManagementDisabledType.h" -#import "DBTEAMLOGDeviceManagementEnabledDetails.h" -#import "DBTEAMLOGDeviceManagementEnabledType.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" -#import "DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h" -#import "DBTEAMLOGDeviceSyncBackupStatusChangedType.h" -#import "DBTEAMLOGDeviceType.h" -#import "DBTEAMLOGDeviceUnlinkDetails.h" -#import "DBTEAMLOGDeviceUnlinkPolicy.h" -#import "DBTEAMLOGDeviceUnlinkType.h" -#import "DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h" -#import "DBTEAMLOGDirectoryRestrictionsAddMembersType.h" -#import "DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h" -#import "DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h" -#import "DBTEAMLOGDisabledDomainInvitesDetails.h" -#import "DBTEAMLOGDisabledDomainInvitesType.h" -#import "DBTEAMLOGDispositionActionType.h" -#import "DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h" -#import "DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h" -#import "DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h" -#import "DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h" -#import "DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h" -#import "DBTEAMLOGDomainInvitesEmailExistingUsersType.h" -#import "DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h" -#import "DBTEAMLOGDomainInvitesRequestToJoinTeamType.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h" -#import "DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h" -#import "DBTEAMLOGDomainVerificationAddDomainFailDetails.h" -#import "DBTEAMLOGDomainVerificationAddDomainFailType.h" -#import "DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h" -#import "DBTEAMLOGDomainVerificationAddDomainSuccessType.h" -#import "DBTEAMLOGDomainVerificationRemoveDomainDetails.h" -#import "DBTEAMLOGDomainVerificationRemoveDomainType.h" -#import "DBTEAMLOGDownloadPolicyType.h" -#import "DBTEAMLOGDropboxPasswordsExportedDetails.h" -#import "DBTEAMLOGDropboxPasswordsExportedType.h" -#import "DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h" -#import "DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h" -#import "DBTEAMLOGDropboxPasswordsPolicy.h" -#import "DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h" -#import "DBTEAMLOGDropboxPasswordsPolicyChangedType.h" -#import "DBTEAMLOGDurationLogInfo.h" -#import "DBTEAMLOGEmailIngestPolicy.h" -#import "DBTEAMLOGEmailIngestPolicyChangedDetails.h" -#import "DBTEAMLOGEmailIngestPolicyChangedType.h" -#import "DBTEAMLOGEmailIngestReceiveFileDetails.h" -#import "DBTEAMLOGEmailIngestReceiveFileType.h" -#import "DBTEAMLOGEmmAddExceptionDetails.h" -#import "DBTEAMLOGEmmAddExceptionType.h" -#import "DBTEAMLOGEmmChangePolicyDetails.h" -#import "DBTEAMLOGEmmChangePolicyType.h" -#import "DBTEAMLOGEmmCreateExceptionsReportDetails.h" -#import "DBTEAMLOGEmmCreateExceptionsReportType.h" -#import "DBTEAMLOGEmmCreateUsageReportDetails.h" -#import "DBTEAMLOGEmmCreateUsageReportType.h" -#import "DBTEAMLOGEmmErrorDetails.h" -#import "DBTEAMLOGEmmErrorType.h" -#import "DBTEAMLOGEmmRefreshAuthTokenDetails.h" -#import "DBTEAMLOGEmmRefreshAuthTokenType.h" -#import "DBTEAMLOGEmmRemoveExceptionDetails.h" -#import "DBTEAMLOGEmmRemoveExceptionType.h" -#import "DBTEAMLOGEnabledDomainInvitesDetails.h" -#import "DBTEAMLOGEnabledDomainInvitesType.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionDetails.h" -#import "DBTEAMLOGEndedEnterpriseAdminSessionType.h" -#import "DBTEAMLOGEnforceLinkPasswordPolicy.h" -#import "DBTEAMLOGEnterpriseSettingsLockingDetails.h" -#import "DBTEAMLOGEnterpriseSettingsLockingType.h" -#import "DBTEAMLOGEventCategory.h" -#import "DBTEAMLOGEventDetails.h" -#import "DBTEAMLOGEventType.h" -#import "DBTEAMLOGEventTypeArg.h" -#import "DBTEAMLOGExportMembersReportDetails.h" -#import "DBTEAMLOGExportMembersReportFailDetails.h" -#import "DBTEAMLOGExportMembersReportFailType.h" -#import "DBTEAMLOGExportMembersReportType.h" -#import "DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h" -#import "DBTEAMLOGExtendedVersionHistoryChangePolicyType.h" -#import "DBTEAMLOGExtendedVersionHistoryPolicy.h" -#import "DBTEAMLOGExternalDriveBackupEligibilityStatus.h" -#import "DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h" -#import "DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h" -#import "DBTEAMLOGExternalDriveBackupPolicy.h" -#import "DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h" -#import "DBTEAMLOGExternalDriveBackupPolicyChangedType.h" -#import "DBTEAMLOGExternalDriveBackupStatus.h" -#import "DBTEAMLOGExternalDriveBackupStatusChangedDetails.h" -#import "DBTEAMLOGExternalDriveBackupStatusChangedType.h" -#import "DBTEAMLOGExternalSharingCreateReportDetails.h" -#import "DBTEAMLOGExternalSharingCreateReportType.h" -#import "DBTEAMLOGExternalSharingReportFailedDetails.h" -#import "DBTEAMLOGExternalSharingReportFailedType.h" -#import "DBTEAMLOGExternalUserLogInfo.h" -#import "DBTEAMLOGFailureDetailsLogInfo.h" -#import "DBTEAMLOGFedAdminRole.h" -#import "DBTEAMLOGFedExtraDetails.h" -#import "DBTEAMLOGFedHandshakeAction.h" -#import "DBTEAMLOGFederationStatusChangeAdditionalInfo.h" -#import "DBTEAMLOGFileAddCommentDetails.h" -#import "DBTEAMLOGFileAddCommentType.h" -#import "DBTEAMLOGFileAddDetails.h" -#import "DBTEAMLOGFileAddFromAutomationDetails.h" -#import "DBTEAMLOGFileAddFromAutomationType.h" -#import "DBTEAMLOGFileAddType.h" -#import "DBTEAMLOGFileChangeCommentSubscriptionDetails.h" -#import "DBTEAMLOGFileChangeCommentSubscriptionType.h" -#import "DBTEAMLOGFileCommentNotificationPolicy.h" -#import "DBTEAMLOGFileCommentsChangePolicyDetails.h" -#import "DBTEAMLOGFileCommentsChangePolicyType.h" -#import "DBTEAMLOGFileCommentsPolicy.h" -#import "DBTEAMLOGFileCopyDetails.h" -#import "DBTEAMLOGFileCopyType.h" -#import "DBTEAMLOGFileDeleteCommentDetails.h" -#import "DBTEAMLOGFileDeleteCommentType.h" -#import "DBTEAMLOGFileDeleteDetails.h" -#import "DBTEAMLOGFileDeleteType.h" -#import "DBTEAMLOGFileDownloadDetails.h" -#import "DBTEAMLOGFileDownloadType.h" -#import "DBTEAMLOGFileEditCommentDetails.h" -#import "DBTEAMLOGFileEditCommentType.h" -#import "DBTEAMLOGFileEditDetails.h" -#import "DBTEAMLOGFileEditType.h" -#import "DBTEAMLOGFileGetCopyReferenceDetails.h" -#import "DBTEAMLOGFileGetCopyReferenceType.h" -#import "DBTEAMLOGFileLikeCommentDetails.h" -#import "DBTEAMLOGFileLikeCommentType.h" -#import "DBTEAMLOGFileLockingLockStatusChangedDetails.h" -#import "DBTEAMLOGFileLockingLockStatusChangedType.h" -#import "DBTEAMLOGFileLockingPolicyChangedDetails.h" -#import "DBTEAMLOGFileLockingPolicyChangedType.h" -#import "DBTEAMLOGFileLogInfo.h" -#import "DBTEAMLOGFileMoveDetails.h" -#import "DBTEAMLOGFileMoveType.h" -#import "DBTEAMLOGFileOrFolderLogInfo.h" -#import "DBTEAMLOGFilePermanentlyDeleteDetails.h" -#import "DBTEAMLOGFilePermanentlyDeleteType.h" -#import "DBTEAMLOGFilePreviewDetails.h" -#import "DBTEAMLOGFilePreviewType.h" -#import "DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h" -#import "DBTEAMLOGFileProviderMigrationPolicyChangedType.h" -#import "DBTEAMLOGFileRenameDetails.h" -#import "DBTEAMLOGFileRenameType.h" -#import "DBTEAMLOGFileRequestChangeDetails.h" -#import "DBTEAMLOGFileRequestChangeType.h" -#import "DBTEAMLOGFileRequestCloseDetails.h" -#import "DBTEAMLOGFileRequestCloseType.h" -#import "DBTEAMLOGFileRequestCreateDetails.h" -#import "DBTEAMLOGFileRequestCreateType.h" -#import "DBTEAMLOGFileRequestDeadline.h" -#import "DBTEAMLOGFileRequestDeleteDetails.h" -#import "DBTEAMLOGFileRequestDeleteType.h" -#import "DBTEAMLOGFileRequestDetails.h" -#import "DBTEAMLOGFileRequestReceiveFileDetails.h" -#import "DBTEAMLOGFileRequestReceiveFileType.h" -#import "DBTEAMLOGFileRequestsChangePolicyDetails.h" -#import "DBTEAMLOGFileRequestsChangePolicyType.h" -#import "DBTEAMLOGFileRequestsEmailsEnabledDetails.h" -#import "DBTEAMLOGFileRequestsEmailsEnabledType.h" -#import "DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h" -#import "DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h" -#import "DBTEAMLOGFileRequestsPolicy.h" -#import "DBTEAMLOGFileResolveCommentDetails.h" -#import "DBTEAMLOGFileResolveCommentType.h" -#import "DBTEAMLOGFileRestoreDetails.h" -#import "DBTEAMLOGFileRestoreType.h" -#import "DBTEAMLOGFileRevertDetails.h" -#import "DBTEAMLOGFileRevertType.h" -#import "DBTEAMLOGFileRollbackChangesDetails.h" -#import "DBTEAMLOGFileRollbackChangesType.h" -#import "DBTEAMLOGFileSaveCopyReferenceDetails.h" -#import "DBTEAMLOGFileSaveCopyReferenceType.h" -#import "DBTEAMLOGFileTransfersFileAddDetails.h" -#import "DBTEAMLOGFileTransfersFileAddType.h" -#import "DBTEAMLOGFileTransfersPolicy.h" -#import "DBTEAMLOGFileTransfersPolicyChangedDetails.h" -#import "DBTEAMLOGFileTransfersPolicyChangedType.h" -#import "DBTEAMLOGFileTransfersTransferDeleteDetails.h" -#import "DBTEAMLOGFileTransfersTransferDeleteType.h" -#import "DBTEAMLOGFileTransfersTransferDownloadDetails.h" -#import "DBTEAMLOGFileTransfersTransferDownloadType.h" -#import "DBTEAMLOGFileTransfersTransferSendDetails.h" -#import "DBTEAMLOGFileTransfersTransferSendType.h" -#import "DBTEAMLOGFileTransfersTransferViewDetails.h" -#import "DBTEAMLOGFileTransfersTransferViewType.h" -#import "DBTEAMLOGFileUnlikeCommentDetails.h" -#import "DBTEAMLOGFileUnlikeCommentType.h" -#import "DBTEAMLOGFileUnresolveCommentDetails.h" -#import "DBTEAMLOGFileUnresolveCommentType.h" -#import "DBTEAMLOGFolderLinkRestrictionPolicy.h" -#import "DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h" -#import "DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h" -#import "DBTEAMLOGFolderLogInfo.h" -#import "DBTEAMLOGFolderOverviewDescriptionChangedDetails.h" -#import "DBTEAMLOGFolderOverviewDescriptionChangedType.h" -#import "DBTEAMLOGFolderOverviewItemPinnedDetails.h" -#import "DBTEAMLOGFolderOverviewItemPinnedType.h" -#import "DBTEAMLOGFolderOverviewItemUnpinnedDetails.h" -#import "DBTEAMLOGFolderOverviewItemUnpinnedType.h" -#import "DBTEAMLOGGeoLocationLogInfo.h" -#import "DBTEAMLOGGetTeamEventsArg.h" -#import "DBTEAMLOGGetTeamEventsContinueArg.h" -#import "DBTEAMLOGGetTeamEventsContinueError.h" -#import "DBTEAMLOGGetTeamEventsError.h" -#import "DBTEAMLOGGetTeamEventsResult.h" -#import "DBTEAMLOGGoogleSsoChangePolicyDetails.h" -#import "DBTEAMLOGGoogleSsoChangePolicyType.h" -#import "DBTEAMLOGGoogleSsoPolicy.h" -#import "DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h" -#import "DBTEAMLOGGovernancePolicyAddFolderFailedType.h" -#import "DBTEAMLOGGovernancePolicyAddFoldersDetails.h" -#import "DBTEAMLOGGovernancePolicyAddFoldersType.h" -#import "DBTEAMLOGGovernancePolicyContentDisposedDetails.h" -#import "DBTEAMLOGGovernancePolicyContentDisposedType.h" -#import "DBTEAMLOGGovernancePolicyCreateDetails.h" -#import "DBTEAMLOGGovernancePolicyCreateType.h" -#import "DBTEAMLOGGovernancePolicyDeleteDetails.h" -#import "DBTEAMLOGGovernancePolicyDeleteType.h" -#import "DBTEAMLOGGovernancePolicyEditDetailsDetails.h" -#import "DBTEAMLOGGovernancePolicyEditDetailsType.h" -#import "DBTEAMLOGGovernancePolicyEditDurationDetails.h" -#import "DBTEAMLOGGovernancePolicyEditDurationType.h" -#import "DBTEAMLOGGovernancePolicyExportCreatedDetails.h" -#import "DBTEAMLOGGovernancePolicyExportCreatedType.h" -#import "DBTEAMLOGGovernancePolicyExportRemovedDetails.h" -#import "DBTEAMLOGGovernancePolicyExportRemovedType.h" -#import "DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h" -#import "DBTEAMLOGGovernancePolicyRemoveFoldersType.h" -#import "DBTEAMLOGGovernancePolicyReportCreatedDetails.h" -#import "DBTEAMLOGGovernancePolicyReportCreatedType.h" -#import "DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h" -#import "DBTEAMLOGGovernancePolicyZipPartDownloadedType.h" -#import "DBTEAMLOGGroupAddExternalIdDetails.h" -#import "DBTEAMLOGGroupAddExternalIdType.h" -#import "DBTEAMLOGGroupAddMemberDetails.h" -#import "DBTEAMLOGGroupAddMemberType.h" -#import "DBTEAMLOGGroupChangeExternalIdDetails.h" -#import "DBTEAMLOGGroupChangeExternalIdType.h" -#import "DBTEAMLOGGroupChangeManagementTypeDetails.h" -#import "DBTEAMLOGGroupChangeManagementTypeType.h" -#import "DBTEAMLOGGroupChangeMemberRoleDetails.h" -#import "DBTEAMLOGGroupChangeMemberRoleType.h" -#import "DBTEAMLOGGroupCreateDetails.h" -#import "DBTEAMLOGGroupCreateType.h" -#import "DBTEAMLOGGroupDeleteDetails.h" -#import "DBTEAMLOGGroupDeleteType.h" -#import "DBTEAMLOGGroupDescriptionUpdatedDetails.h" -#import "DBTEAMLOGGroupDescriptionUpdatedType.h" -#import "DBTEAMLOGGroupJoinPolicy.h" -#import "DBTEAMLOGGroupJoinPolicyUpdatedDetails.h" -#import "DBTEAMLOGGroupJoinPolicyUpdatedType.h" -#import "DBTEAMLOGGroupLogInfo.h" -#import "DBTEAMLOGGroupMovedDetails.h" -#import "DBTEAMLOGGroupMovedType.h" -#import "DBTEAMLOGGroupRemoveExternalIdDetails.h" -#import "DBTEAMLOGGroupRemoveExternalIdType.h" -#import "DBTEAMLOGGroupRemoveMemberDetails.h" -#import "DBTEAMLOGGroupRemoveMemberType.h" -#import "DBTEAMLOGGroupRenameDetails.h" -#import "DBTEAMLOGGroupRenameType.h" -#import "DBTEAMLOGGroupUserManagementChangePolicyDetails.h" -#import "DBTEAMLOGGroupUserManagementChangePolicyType.h" -#import "DBTEAMLOGGuestAdminChangeStatusDetails.h" -#import "DBTEAMLOGGuestAdminChangeStatusType.h" -#import "DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h" -#import "DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h" -#import "DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h" -#import "DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h" -#import "DBTEAMLOGIdentifierType.h" -#import "DBTEAMLOGIntegrationConnectedDetails.h" -#import "DBTEAMLOGIntegrationConnectedType.h" -#import "DBTEAMLOGIntegrationDisconnectedDetails.h" -#import "DBTEAMLOGIntegrationDisconnectedType.h" -#import "DBTEAMLOGIntegrationPolicy.h" -#import "DBTEAMLOGIntegrationPolicyChangedDetails.h" -#import "DBTEAMLOGIntegrationPolicyChangedType.h" -#import "DBTEAMLOGInviteAcceptanceEmailPolicy.h" -#import "DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h" -#import "DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h" -#import "DBTEAMLOGInviteMethod.h" -#import "DBTEAMLOGJoinTeamDetails.h" -#import "DBTEAMLOGLabelType.h" -#import "DBTEAMLOGLegacyDeviceSessionLogInfo.h" -#import "DBTEAMLOGLegalHoldsActivateAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsActivateAHoldType.h" -#import "DBTEAMLOGLegalHoldsAddMembersDetails.h" -#import "DBTEAMLOGLegalHoldsAddMembersType.h" -#import "DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h" -#import "DBTEAMLOGLegalHoldsChangeHoldDetailsType.h" -#import "DBTEAMLOGLegalHoldsChangeHoldNameDetails.h" -#import "DBTEAMLOGLegalHoldsChangeHoldNameType.h" -#import "DBTEAMLOGLegalHoldsExportAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsExportAHoldType.h" -#import "DBTEAMLOGLegalHoldsExportCancelledDetails.h" -#import "DBTEAMLOGLegalHoldsExportCancelledType.h" -#import "DBTEAMLOGLegalHoldsExportDownloadedDetails.h" -#import "DBTEAMLOGLegalHoldsExportDownloadedType.h" -#import "DBTEAMLOGLegalHoldsExportRemovedDetails.h" -#import "DBTEAMLOGLegalHoldsExportRemovedType.h" -#import "DBTEAMLOGLegalHoldsReleaseAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsReleaseAHoldType.h" -#import "DBTEAMLOGLegalHoldsRemoveMembersDetails.h" -#import "DBTEAMLOGLegalHoldsRemoveMembersType.h" -#import "DBTEAMLOGLegalHoldsReportAHoldDetails.h" -#import "DBTEAMLOGLegalHoldsReportAHoldType.h" -#import "DBTEAMLOGLinkedDeviceLogInfo.h" -#import "DBTEAMLOGLockStatus.h" -#import "DBTEAMLOGLoginFailDetails.h" -#import "DBTEAMLOGLoginFailType.h" -#import "DBTEAMLOGLoginMethod.h" -#import "DBTEAMLOGLoginSuccessDetails.h" -#import "DBTEAMLOGLoginSuccessType.h" -#import "DBTEAMLOGLogoutDetails.h" -#import "DBTEAMLOGLogoutType.h" -#import "DBTEAMLOGMemberAddExternalIdDetails.h" -#import "DBTEAMLOGMemberAddExternalIdType.h" -#import "DBTEAMLOGMemberAddNameDetails.h" -#import "DBTEAMLOGMemberAddNameType.h" -#import "DBTEAMLOGMemberChangeAdminRoleDetails.h" -#import "DBTEAMLOGMemberChangeAdminRoleType.h" -#import "DBTEAMLOGMemberChangeEmailDetails.h" -#import "DBTEAMLOGMemberChangeEmailType.h" -#import "DBTEAMLOGMemberChangeExternalIdDetails.h" -#import "DBTEAMLOGMemberChangeExternalIdType.h" -#import "DBTEAMLOGMemberChangeMembershipTypeDetails.h" -#import "DBTEAMLOGMemberChangeMembershipTypeType.h" -#import "DBTEAMLOGMemberChangeNameDetails.h" -#import "DBTEAMLOGMemberChangeNameType.h" -#import "DBTEAMLOGMemberChangeResellerRoleDetails.h" -#import "DBTEAMLOGMemberChangeResellerRoleType.h" -#import "DBTEAMLOGMemberChangeStatusDetails.h" -#import "DBTEAMLOGMemberChangeStatusType.h" -#import "DBTEAMLOGMemberDeleteManualContactsDetails.h" -#import "DBTEAMLOGMemberDeleteManualContactsType.h" -#import "DBTEAMLOGMemberDeleteProfilePhotoDetails.h" -#import "DBTEAMLOGMemberDeleteProfilePhotoType.h" -#import "DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h" -#import "DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h" -#import "DBTEAMLOGMemberRemoveActionType.h" -#import "DBTEAMLOGMemberRemoveExternalIdDetails.h" -#import "DBTEAMLOGMemberRemoveExternalIdType.h" -#import "DBTEAMLOGMemberRequestsChangePolicyDetails.h" -#import "DBTEAMLOGMemberRequestsChangePolicyType.h" -#import "DBTEAMLOGMemberRequestsPolicy.h" -#import "DBTEAMLOGMemberSendInvitePolicy.h" -#import "DBTEAMLOGMemberSendInvitePolicyChangedDetails.h" -#import "DBTEAMLOGMemberSendInvitePolicyChangedType.h" -#import "DBTEAMLOGMemberSetProfilePhotoDetails.h" -#import "DBTEAMLOGMemberSetProfilePhotoType.h" -#import "DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h" -#import "DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsAddExceptionType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangePolicyType.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsChangeStatusType.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h" -#import "DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h" -#import "DBTEAMLOGMemberStatus.h" -#import "DBTEAMLOGMemberSuggestDetails.h" -#import "DBTEAMLOGMemberSuggestType.h" -#import "DBTEAMLOGMemberSuggestionsChangePolicyDetails.h" -#import "DBTEAMLOGMemberSuggestionsChangePolicyType.h" -#import "DBTEAMLOGMemberSuggestionsPolicy.h" -#import "DBTEAMLOGMemberTransferAccountContentsDetails.h" -#import "DBTEAMLOGMemberTransferAccountContentsType.h" -#import "DBTEAMLOGMemberTransferredInternalFields.h" -#import "DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h" -#import "DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h" -#import "DBTEAMLOGMicrosoftOfficeAddinPolicy.h" -#import "DBTEAMLOGMissingDetails.h" -#import "DBTEAMLOGMobileDeviceSessionLogInfo.h" -#import "DBTEAMLOGMobileSessionLogInfo.h" -#import "DBTEAMLOGNamespaceRelativePathLogInfo.h" -#import "DBTEAMLOGNetworkControlChangePolicyDetails.h" -#import "DBTEAMLOGNetworkControlChangePolicyType.h" -#import "DBTEAMLOGNetworkControlPolicy.h" -#import "DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h" -#import "DBTEAMLOGNoExpirationLinkGenCreateReportType.h" -#import "DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h" -#import "DBTEAMLOGNoExpirationLinkGenReportFailedType.h" -#import "DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h" -#import "DBTEAMLOGNoPasswordLinkGenCreateReportType.h" -#import "DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h" -#import "DBTEAMLOGNoPasswordLinkGenReportFailedType.h" -#import "DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h" -#import "DBTEAMLOGNoPasswordLinkViewCreateReportType.h" -#import "DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h" -#import "DBTEAMLOGNoPasswordLinkViewReportFailedType.h" -#import "DBTEAMLOGNonTeamMemberLogInfo.h" -#import "DBTEAMLOGNonTrustedTeamDetails.h" -#import "DBTEAMLOGNoteAclInviteOnlyDetails.h" -#import "DBTEAMLOGNoteAclInviteOnlyType.h" -#import "DBTEAMLOGNoteAclLinkDetails.h" -#import "DBTEAMLOGNoteAclLinkType.h" -#import "DBTEAMLOGNoteAclTeamLinkDetails.h" -#import "DBTEAMLOGNoteAclTeamLinkType.h" -#import "DBTEAMLOGNoteShareReceiveDetails.h" -#import "DBTEAMLOGNoteShareReceiveType.h" -#import "DBTEAMLOGNoteSharedDetails.h" -#import "DBTEAMLOGNoteSharedType.h" -#import "DBTEAMLOGObjectLabelAddedDetails.h" -#import "DBTEAMLOGObjectLabelAddedType.h" -#import "DBTEAMLOGObjectLabelRemovedDetails.h" -#import "DBTEAMLOGObjectLabelRemovedType.h" -#import "DBTEAMLOGObjectLabelUpdatedValueDetails.h" -#import "DBTEAMLOGObjectLabelUpdatedValueType.h" -#import "DBTEAMLOGOpenNoteSharedDetails.h" -#import "DBTEAMLOGOpenNoteSharedType.h" -#import "DBTEAMLOGOrganizationDetails.h" -#import "DBTEAMLOGOrganizationName.h" -#import "DBTEAMLOGOrganizeFolderWithTidyDetails.h" -#import "DBTEAMLOGOrganizeFolderWithTidyType.h" -#import "DBTEAMLOGOriginLogInfo.h" -#import "DBTEAMLOGOutdatedLinkViewCreateReportDetails.h" -#import "DBTEAMLOGOutdatedLinkViewCreateReportType.h" -#import "DBTEAMLOGOutdatedLinkViewReportFailedDetails.h" -#import "DBTEAMLOGOutdatedLinkViewReportFailedType.h" -#import "DBTEAMLOGPaperAccessType.h" -#import "DBTEAMLOGPaperAdminExportStartDetails.h" -#import "DBTEAMLOGPaperAdminExportStartType.h" -#import "DBTEAMLOGPaperChangeDeploymentPolicyDetails.h" -#import "DBTEAMLOGPaperChangeDeploymentPolicyType.h" -#import "DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h" -#import "DBTEAMLOGPaperChangeMemberLinkPolicyType.h" -#import "DBTEAMLOGPaperChangeMemberPolicyDetails.h" -#import "DBTEAMLOGPaperChangeMemberPolicyType.h" -#import "DBTEAMLOGPaperChangePolicyDetails.h" -#import "DBTEAMLOGPaperChangePolicyType.h" -#import "DBTEAMLOGPaperContentAddMemberDetails.h" -#import "DBTEAMLOGPaperContentAddMemberType.h" -#import "DBTEAMLOGPaperContentAddToFolderDetails.h" -#import "DBTEAMLOGPaperContentAddToFolderType.h" -#import "DBTEAMLOGPaperContentArchiveDetails.h" -#import "DBTEAMLOGPaperContentArchiveType.h" -#import "DBTEAMLOGPaperContentCreateDetails.h" -#import "DBTEAMLOGPaperContentCreateType.h" -#import "DBTEAMLOGPaperContentPermanentlyDeleteDetails.h" -#import "DBTEAMLOGPaperContentPermanentlyDeleteType.h" -#import "DBTEAMLOGPaperContentRemoveFromFolderDetails.h" -#import "DBTEAMLOGPaperContentRemoveFromFolderType.h" -#import "DBTEAMLOGPaperContentRemoveMemberDetails.h" -#import "DBTEAMLOGPaperContentRemoveMemberType.h" -#import "DBTEAMLOGPaperContentRenameDetails.h" -#import "DBTEAMLOGPaperContentRenameType.h" -#import "DBTEAMLOGPaperContentRestoreDetails.h" -#import "DBTEAMLOGPaperContentRestoreType.h" -#import "DBTEAMLOGPaperDefaultFolderPolicy.h" -#import "DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h" -#import "DBTEAMLOGPaperDefaultFolderPolicyChangedType.h" -#import "DBTEAMLOGPaperDesktopPolicy.h" -#import "DBTEAMLOGPaperDesktopPolicyChangedDetails.h" -#import "DBTEAMLOGPaperDesktopPolicyChangedType.h" -#import "DBTEAMLOGPaperDocAddCommentDetails.h" -#import "DBTEAMLOGPaperDocAddCommentType.h" -#import "DBTEAMLOGPaperDocChangeMemberRoleDetails.h" -#import "DBTEAMLOGPaperDocChangeMemberRoleType.h" -#import "DBTEAMLOGPaperDocChangeSharingPolicyDetails.h" -#import "DBTEAMLOGPaperDocChangeSharingPolicyType.h" -#import "DBTEAMLOGPaperDocChangeSubscriptionDetails.h" -#import "DBTEAMLOGPaperDocChangeSubscriptionType.h" -#import "DBTEAMLOGPaperDocDeleteCommentDetails.h" -#import "DBTEAMLOGPaperDocDeleteCommentType.h" -#import "DBTEAMLOGPaperDocDeletedDetails.h" -#import "DBTEAMLOGPaperDocDeletedType.h" -#import "DBTEAMLOGPaperDocDownloadDetails.h" -#import "DBTEAMLOGPaperDocDownloadType.h" -#import "DBTEAMLOGPaperDocEditCommentDetails.h" -#import "DBTEAMLOGPaperDocEditCommentType.h" -#import "DBTEAMLOGPaperDocEditDetails.h" -#import "DBTEAMLOGPaperDocEditType.h" -#import "DBTEAMLOGPaperDocFollowedDetails.h" -#import "DBTEAMLOGPaperDocFollowedType.h" -#import "DBTEAMLOGPaperDocMentionDetails.h" -#import "DBTEAMLOGPaperDocMentionType.h" -#import "DBTEAMLOGPaperDocOwnershipChangedDetails.h" -#import "DBTEAMLOGPaperDocOwnershipChangedType.h" -#import "DBTEAMLOGPaperDocRequestAccessDetails.h" -#import "DBTEAMLOGPaperDocRequestAccessType.h" -#import "DBTEAMLOGPaperDocResolveCommentDetails.h" -#import "DBTEAMLOGPaperDocResolveCommentType.h" -#import "DBTEAMLOGPaperDocRevertDetails.h" -#import "DBTEAMLOGPaperDocRevertType.h" -#import "DBTEAMLOGPaperDocSlackShareDetails.h" -#import "DBTEAMLOGPaperDocSlackShareType.h" -#import "DBTEAMLOGPaperDocTeamInviteDetails.h" -#import "DBTEAMLOGPaperDocTeamInviteType.h" -#import "DBTEAMLOGPaperDocTrashedDetails.h" -#import "DBTEAMLOGPaperDocTrashedType.h" -#import "DBTEAMLOGPaperDocUnresolveCommentDetails.h" -#import "DBTEAMLOGPaperDocUnresolveCommentType.h" -#import "DBTEAMLOGPaperDocUntrashedDetails.h" -#import "DBTEAMLOGPaperDocUntrashedType.h" -#import "DBTEAMLOGPaperDocViewDetails.h" -#import "DBTEAMLOGPaperDocViewType.h" -#import "DBTEAMLOGPaperDocumentLogInfo.h" -#import "DBTEAMLOGPaperDownloadFormat.h" -#import "DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h" -#import "DBTEAMLOGPaperEnabledUsersGroupAdditionType.h" -#import "DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h" -#import "DBTEAMLOGPaperEnabledUsersGroupRemovalType.h" -#import "DBTEAMLOGPaperExternalViewAllowDetails.h" -#import "DBTEAMLOGPaperExternalViewAllowType.h" -#import "DBTEAMLOGPaperExternalViewDefaultTeamDetails.h" -#import "DBTEAMLOGPaperExternalViewDefaultTeamType.h" -#import "DBTEAMLOGPaperExternalViewForbidDetails.h" -#import "DBTEAMLOGPaperExternalViewForbidType.h" -#import "DBTEAMLOGPaperFolderChangeSubscriptionDetails.h" -#import "DBTEAMLOGPaperFolderChangeSubscriptionType.h" -#import "DBTEAMLOGPaperFolderDeletedDetails.h" -#import "DBTEAMLOGPaperFolderDeletedType.h" -#import "DBTEAMLOGPaperFolderFollowedDetails.h" -#import "DBTEAMLOGPaperFolderFollowedType.h" -#import "DBTEAMLOGPaperFolderLogInfo.h" -#import "DBTEAMLOGPaperFolderTeamInviteDetails.h" -#import "DBTEAMLOGPaperFolderTeamInviteType.h" -#import "DBTEAMLOGPaperMemberPolicy.h" -#import "DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h" -#import "DBTEAMLOGPaperPublishedLinkChangePermissionType.h" -#import "DBTEAMLOGPaperPublishedLinkCreateDetails.h" -#import "DBTEAMLOGPaperPublishedLinkCreateType.h" -#import "DBTEAMLOGPaperPublishedLinkDisabledDetails.h" -#import "DBTEAMLOGPaperPublishedLinkDisabledType.h" -#import "DBTEAMLOGPaperPublishedLinkViewDetails.h" -#import "DBTEAMLOGPaperPublishedLinkViewType.h" -#import "DBTEAMLOGParticipantLogInfo.h" -#import "DBTEAMLOGPassPolicy.h" -#import "DBTEAMLOGPasswordChangeDetails.h" -#import "DBTEAMLOGPasswordChangeType.h" -#import "DBTEAMLOGPasswordResetAllDetails.h" -#import "DBTEAMLOGPasswordResetAllType.h" -#import "DBTEAMLOGPasswordResetDetails.h" -#import "DBTEAMLOGPasswordResetType.h" -#import "DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h" -#import "DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h" -#import "DBTEAMLOGPathLogInfo.h" -#import "DBTEAMLOGPendingSecondaryEmailAddedDetails.h" -#import "DBTEAMLOGPendingSecondaryEmailAddedType.h" -#import "DBTEAMLOGPermanentDeleteChangePolicyDetails.h" -#import "DBTEAMLOGPermanentDeleteChangePolicyType.h" -#import "DBTEAMLOGPlacementRestriction.h" -#import "DBTEAMLOGPolicyType.h" -#import "DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h" -#import "DBTEAMLOGPrimaryTeamRequestCanceledDetails.h" -#import "DBTEAMLOGPrimaryTeamRequestExpiredDetails.h" -#import "DBTEAMLOGPrimaryTeamRequestReminderDetails.h" -#import "DBTEAMLOGQuickActionType.h" -#import "DBTEAMLOGRansomwareAlertCreateReportDetails.h" -#import "DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h" -#import "DBTEAMLOGRansomwareAlertCreateReportFailedType.h" -#import "DBTEAMLOGRansomwareAlertCreateReportType.h" -#import "DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h" -#import "DBTEAMLOGRansomwareRestoreProcessCompletedType.h" -#import "DBTEAMLOGRansomwareRestoreProcessStartedDetails.h" -#import "DBTEAMLOGRansomwareRestoreProcessStartedType.h" -#import "DBTEAMLOGRecipientsConfiguration.h" -#import "DBTEAMLOGRelocateAssetReferencesLogInfo.h" -#import "DBTEAMLOGReplayFileDeleteDetails.h" -#import "DBTEAMLOGReplayFileDeleteType.h" -#import "DBTEAMLOGReplayFileSharedLinkCreatedDetails.h" -#import "DBTEAMLOGReplayFileSharedLinkCreatedType.h" -#import "DBTEAMLOGReplayFileSharedLinkModifiedDetails.h" -#import "DBTEAMLOGReplayFileSharedLinkModifiedType.h" -#import "DBTEAMLOGReplayProjectTeamAddDetails.h" -#import "DBTEAMLOGReplayProjectTeamAddType.h" -#import "DBTEAMLOGReplayProjectTeamDeleteDetails.h" -#import "DBTEAMLOGReplayProjectTeamDeleteType.h" -#import "DBTEAMLOGResellerLogInfo.h" -#import "DBTEAMLOGResellerRole.h" -#import "DBTEAMLOGResellerSupportChangePolicyDetails.h" -#import "DBTEAMLOGResellerSupportChangePolicyType.h" -#import "DBTEAMLOGResellerSupportPolicy.h" -#import "DBTEAMLOGResellerSupportSessionEndDetails.h" -#import "DBTEAMLOGResellerSupportSessionEndType.h" -#import "DBTEAMLOGResellerSupportSessionStartDetails.h" -#import "DBTEAMLOGResellerSupportSessionStartType.h" -#import "DBTEAMLOGRewindFolderDetails.h" -#import "DBTEAMLOGRewindFolderType.h" -#import "DBTEAMLOGRewindPolicy.h" -#import "DBTEAMLOGRewindPolicyChangedDetails.h" -#import "DBTEAMLOGRewindPolicyChangedType.h" -#import "DBTEAMLOGSecondaryEmailDeletedDetails.h" -#import "DBTEAMLOGSecondaryEmailDeletedType.h" -#import "DBTEAMLOGSecondaryEmailVerifiedDetails.h" -#import "DBTEAMLOGSecondaryEmailVerifiedType.h" -#import "DBTEAMLOGSecondaryMailsPolicy.h" -#import "DBTEAMLOGSecondaryMailsPolicyChangedDetails.h" -#import "DBTEAMLOGSecondaryMailsPolicyChangedType.h" -#import "DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h" -#import "DBTEAMLOGSecondaryTeamRequestCanceledDetails.h" -#import "DBTEAMLOGSecondaryTeamRequestExpiredDetails.h" -#import "DBTEAMLOGSecondaryTeamRequestReminderDetails.h" -#import "DBTEAMLOGSendForSignaturePolicy.h" -#import "DBTEAMLOGSendForSignaturePolicyChangedDetails.h" -#import "DBTEAMLOGSendForSignaturePolicyChangedType.h" -#import "DBTEAMLOGSessionLogInfo.h" -#import "DBTEAMLOGSfAddGroupDetails.h" -#import "DBTEAMLOGSfAddGroupType.h" -#import "DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h" -#import "DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h" -#import "DBTEAMLOGSfExternalInviteWarnDetails.h" -#import "DBTEAMLOGSfExternalInviteWarnType.h" -#import "DBTEAMLOGSfFbInviteChangeRoleDetails.h" -#import "DBTEAMLOGSfFbInviteChangeRoleType.h" -#import "DBTEAMLOGSfFbInviteDetails.h" -#import "DBTEAMLOGSfFbInviteType.h" -#import "DBTEAMLOGSfFbUninviteDetails.h" -#import "DBTEAMLOGSfFbUninviteType.h" -#import "DBTEAMLOGSfInviteGroupDetails.h" -#import "DBTEAMLOGSfInviteGroupType.h" -#import "DBTEAMLOGSfTeamGrantAccessDetails.h" -#import "DBTEAMLOGSfTeamGrantAccessType.h" -#import "DBTEAMLOGSfTeamInviteChangeRoleDetails.h" -#import "DBTEAMLOGSfTeamInviteChangeRoleType.h" -#import "DBTEAMLOGSfTeamInviteDetails.h" -#import "DBTEAMLOGSfTeamInviteType.h" -#import "DBTEAMLOGSfTeamJoinDetails.h" -#import "DBTEAMLOGSfTeamJoinFromOobLinkDetails.h" -#import "DBTEAMLOGSfTeamJoinFromOobLinkType.h" -#import "DBTEAMLOGSfTeamJoinType.h" -#import "DBTEAMLOGSfTeamUninviteDetails.h" -#import "DBTEAMLOGSfTeamUninviteType.h" -#import "DBTEAMLOGSharedContentAddInviteesDetails.h" -#import "DBTEAMLOGSharedContentAddInviteesType.h" -#import "DBTEAMLOGSharedContentAddLinkExpiryDetails.h" -#import "DBTEAMLOGSharedContentAddLinkExpiryType.h" -#import "DBTEAMLOGSharedContentAddLinkPasswordDetails.h" -#import "DBTEAMLOGSharedContentAddLinkPasswordType.h" -#import "DBTEAMLOGSharedContentAddMemberDetails.h" -#import "DBTEAMLOGSharedContentAddMemberType.h" -#import "DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h" -#import "DBTEAMLOGSharedContentChangeDownloadsPolicyType.h" -#import "DBTEAMLOGSharedContentChangeInviteeRoleDetails.h" -#import "DBTEAMLOGSharedContentChangeInviteeRoleType.h" -#import "DBTEAMLOGSharedContentChangeLinkAudienceDetails.h" -#import "DBTEAMLOGSharedContentChangeLinkAudienceType.h" -#import "DBTEAMLOGSharedContentChangeLinkExpiryDetails.h" -#import "DBTEAMLOGSharedContentChangeLinkExpiryType.h" -#import "DBTEAMLOGSharedContentChangeLinkPasswordDetails.h" -#import "DBTEAMLOGSharedContentChangeLinkPasswordType.h" -#import "DBTEAMLOGSharedContentChangeMemberRoleDetails.h" -#import "DBTEAMLOGSharedContentChangeMemberRoleType.h" -#import "DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h" -#import "DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h" -#import "DBTEAMLOGSharedContentClaimInvitationDetails.h" -#import "DBTEAMLOGSharedContentClaimInvitationType.h" -#import "DBTEAMLOGSharedContentCopyDetails.h" -#import "DBTEAMLOGSharedContentCopyType.h" -#import "DBTEAMLOGSharedContentDownloadDetails.h" -#import "DBTEAMLOGSharedContentDownloadType.h" -#import "DBTEAMLOGSharedContentRelinquishMembershipDetails.h" -#import "DBTEAMLOGSharedContentRelinquishMembershipType.h" -#import "DBTEAMLOGSharedContentRemoveInviteesDetails.h" -#import "DBTEAMLOGSharedContentRemoveInviteesType.h" -#import "DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h" -#import "DBTEAMLOGSharedContentRemoveLinkExpiryType.h" -#import "DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h" -#import "DBTEAMLOGSharedContentRemoveLinkPasswordType.h" -#import "DBTEAMLOGSharedContentRemoveMemberDetails.h" -#import "DBTEAMLOGSharedContentRemoveMemberType.h" -#import "DBTEAMLOGSharedContentRequestAccessDetails.h" -#import "DBTEAMLOGSharedContentRequestAccessType.h" -#import "DBTEAMLOGSharedContentRestoreInviteesDetails.h" -#import "DBTEAMLOGSharedContentRestoreInviteesType.h" -#import "DBTEAMLOGSharedContentRestoreMemberDetails.h" -#import "DBTEAMLOGSharedContentRestoreMemberType.h" -#import "DBTEAMLOGSharedContentUnshareDetails.h" -#import "DBTEAMLOGSharedContentUnshareType.h" -#import "DBTEAMLOGSharedContentViewDetails.h" -#import "DBTEAMLOGSharedContentViewType.h" -#import "DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeLinkPolicyType.h" -#import "DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h" -#import "DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h" -#import "DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h" -#import "DBTEAMLOGSharedFolderChangeMembersPolicyType.h" -#import "DBTEAMLOGSharedFolderCreateDetails.h" -#import "DBTEAMLOGSharedFolderCreateType.h" -#import "DBTEAMLOGSharedFolderDeclineInvitationDetails.h" -#import "DBTEAMLOGSharedFolderDeclineInvitationType.h" -#import "DBTEAMLOGSharedFolderMembersInheritancePolicy.h" -#import "DBTEAMLOGSharedFolderMountDetails.h" -#import "DBTEAMLOGSharedFolderMountType.h" -#import "DBTEAMLOGSharedFolderNestDetails.h" -#import "DBTEAMLOGSharedFolderNestType.h" -#import "DBTEAMLOGSharedFolderTransferOwnershipDetails.h" -#import "DBTEAMLOGSharedFolderTransferOwnershipType.h" -#import "DBTEAMLOGSharedFolderUnmountDetails.h" -#import "DBTEAMLOGSharedFolderUnmountType.h" -#import "DBTEAMLOGSharedLinkAccessLevel.h" -#import "DBTEAMLOGSharedLinkAddExpiryDetails.h" -#import "DBTEAMLOGSharedLinkAddExpiryType.h" -#import "DBTEAMLOGSharedLinkChangeExpiryDetails.h" -#import "DBTEAMLOGSharedLinkChangeExpiryType.h" -#import "DBTEAMLOGSharedLinkChangeVisibilityDetails.h" -#import "DBTEAMLOGSharedLinkChangeVisibilityType.h" -#import "DBTEAMLOGSharedLinkCopyDetails.h" -#import "DBTEAMLOGSharedLinkCopyType.h" -#import "DBTEAMLOGSharedLinkCreateDetails.h" -#import "DBTEAMLOGSharedLinkCreateType.h" -#import "DBTEAMLOGSharedLinkDisableDetails.h" -#import "DBTEAMLOGSharedLinkDisableType.h" -#import "DBTEAMLOGSharedLinkDownloadDetails.h" -#import "DBTEAMLOGSharedLinkDownloadType.h" -#import "DBTEAMLOGSharedLinkRemoveExpiryDetails.h" -#import "DBTEAMLOGSharedLinkRemoveExpiryType.h" -#import "DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAddExpirationType.h" -#import "DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAddPasswordType.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h" -#import "DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h" -#import "DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h" -#import "DBTEAMLOGSharedLinkSettingsChangeAudienceType.h" -#import "DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h" -#import "DBTEAMLOGSharedLinkSettingsChangeExpirationType.h" -#import "DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h" -#import "DBTEAMLOGSharedLinkSettingsChangePasswordType.h" -#import "DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h" -#import "DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h" -#import "DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h" -#import "DBTEAMLOGSharedLinkSettingsRemovePasswordType.h" -#import "DBTEAMLOGSharedLinkShareDetails.h" -#import "DBTEAMLOGSharedLinkShareType.h" -#import "DBTEAMLOGSharedLinkViewDetails.h" -#import "DBTEAMLOGSharedLinkViewType.h" -#import "DBTEAMLOGSharedLinkVisibility.h" -#import "DBTEAMLOGSharedNoteOpenedDetails.h" -#import "DBTEAMLOGSharedNoteOpenedType.h" -#import "DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h" -#import "DBTEAMLOGSharingChangeFolderJoinPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h" -#import "DBTEAMLOGSharingChangeLinkPolicyDetails.h" -#import "DBTEAMLOGSharingChangeLinkPolicyType.h" -#import "DBTEAMLOGSharingChangeMemberPolicyDetails.h" -#import "DBTEAMLOGSharingChangeMemberPolicyType.h" -#import "DBTEAMLOGSharingFolderJoinPolicy.h" -#import "DBTEAMLOGSharingLinkPolicy.h" -#import "DBTEAMLOGSharingMemberPolicy.h" -#import "DBTEAMLOGShmodelDisableDownloadsDetails.h" -#import "DBTEAMLOGShmodelDisableDownloadsType.h" -#import "DBTEAMLOGShmodelEnableDownloadsDetails.h" -#import "DBTEAMLOGShmodelEnableDownloadsType.h" -#import "DBTEAMLOGShmodelGroupShareDetails.h" -#import "DBTEAMLOGShmodelGroupShareType.h" -#import "DBTEAMLOGShowcaseAccessGrantedDetails.h" -#import "DBTEAMLOGShowcaseAccessGrantedType.h" -#import "DBTEAMLOGShowcaseAddMemberDetails.h" -#import "DBTEAMLOGShowcaseAddMemberType.h" -#import "DBTEAMLOGShowcaseArchivedDetails.h" -#import "DBTEAMLOGShowcaseArchivedType.h" -#import "DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h" -#import "DBTEAMLOGShowcaseChangeDownloadPolicyType.h" -#import "DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h" -#import "DBTEAMLOGShowcaseChangeEnabledPolicyType.h" -#import "DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h" -#import "DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h" -#import "DBTEAMLOGShowcaseCreatedDetails.h" -#import "DBTEAMLOGShowcaseCreatedType.h" -#import "DBTEAMLOGShowcaseDeleteCommentDetails.h" -#import "DBTEAMLOGShowcaseDeleteCommentType.h" -#import "DBTEAMLOGShowcaseDocumentLogInfo.h" -#import "DBTEAMLOGShowcaseDownloadPolicy.h" -#import "DBTEAMLOGShowcaseEditCommentDetails.h" -#import "DBTEAMLOGShowcaseEditCommentType.h" -#import "DBTEAMLOGShowcaseEditedDetails.h" -#import "DBTEAMLOGShowcaseEditedType.h" -#import "DBTEAMLOGShowcaseEnabledPolicy.h" -#import "DBTEAMLOGShowcaseExternalSharingPolicy.h" -#import "DBTEAMLOGShowcaseFileAddedDetails.h" -#import "DBTEAMLOGShowcaseFileAddedType.h" -#import "DBTEAMLOGShowcaseFileDownloadDetails.h" -#import "DBTEAMLOGShowcaseFileDownloadType.h" -#import "DBTEAMLOGShowcaseFileRemovedDetails.h" -#import "DBTEAMLOGShowcaseFileRemovedType.h" -#import "DBTEAMLOGShowcaseFileViewDetails.h" -#import "DBTEAMLOGShowcaseFileViewType.h" -#import "DBTEAMLOGShowcasePermanentlyDeletedDetails.h" -#import "DBTEAMLOGShowcasePermanentlyDeletedType.h" -#import "DBTEAMLOGShowcasePostCommentDetails.h" -#import "DBTEAMLOGShowcasePostCommentType.h" -#import "DBTEAMLOGShowcaseRemoveMemberDetails.h" -#import "DBTEAMLOGShowcaseRemoveMemberType.h" -#import "DBTEAMLOGShowcaseRenamedDetails.h" -#import "DBTEAMLOGShowcaseRenamedType.h" -#import "DBTEAMLOGShowcaseRequestAccessDetails.h" -#import "DBTEAMLOGShowcaseRequestAccessType.h" -#import "DBTEAMLOGShowcaseResolveCommentDetails.h" -#import "DBTEAMLOGShowcaseResolveCommentType.h" -#import "DBTEAMLOGShowcaseRestoredDetails.h" -#import "DBTEAMLOGShowcaseRestoredType.h" -#import "DBTEAMLOGShowcaseTrashedDeprecatedDetails.h" -#import "DBTEAMLOGShowcaseTrashedDeprecatedType.h" -#import "DBTEAMLOGShowcaseTrashedDetails.h" -#import "DBTEAMLOGShowcaseTrashedType.h" -#import "DBTEAMLOGShowcaseUnresolveCommentDetails.h" -#import "DBTEAMLOGShowcaseUnresolveCommentType.h" -#import "DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h" -#import "DBTEAMLOGShowcaseUntrashedDeprecatedType.h" -#import "DBTEAMLOGShowcaseUntrashedDetails.h" -#import "DBTEAMLOGShowcaseUntrashedType.h" -#import "DBTEAMLOGShowcaseViewDetails.h" -#import "DBTEAMLOGShowcaseViewType.h" -#import "DBTEAMLOGSignInAsSessionEndDetails.h" -#import "DBTEAMLOGSignInAsSessionEndType.h" -#import "DBTEAMLOGSignInAsSessionStartDetails.h" -#import "DBTEAMLOGSignInAsSessionStartType.h" -#import "DBTEAMLOGSmartSyncChangePolicyDetails.h" -#import "DBTEAMLOGSmartSyncChangePolicyType.h" -#import "DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h" -#import "DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h" -#import "DBTEAMLOGSmartSyncNotOptOutDetails.h" -#import "DBTEAMLOGSmartSyncNotOptOutType.h" -#import "DBTEAMLOGSmartSyncOptOutDetails.h" -#import "DBTEAMLOGSmartSyncOptOutPolicy.h" -#import "DBTEAMLOGSmartSyncOptOutType.h" -#import "DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h" -#import "DBTEAMLOGSmarterSmartSyncPolicyChangedType.h" -#import "DBTEAMLOGSpaceCapsType.h" -#import "DBTEAMLOGSpaceLimitsStatus.h" -#import "DBTEAMLOGSsoAddCertDetails.h" -#import "DBTEAMLOGSsoAddCertType.h" -#import "DBTEAMLOGSsoAddLoginUrlDetails.h" -#import "DBTEAMLOGSsoAddLoginUrlType.h" -#import "DBTEAMLOGSsoAddLogoutUrlDetails.h" -#import "DBTEAMLOGSsoAddLogoutUrlType.h" -#import "DBTEAMLOGSsoChangeCertDetails.h" -#import "DBTEAMLOGSsoChangeCertType.h" -#import "DBTEAMLOGSsoChangeLoginUrlDetails.h" -#import "DBTEAMLOGSsoChangeLoginUrlType.h" -#import "DBTEAMLOGSsoChangeLogoutUrlDetails.h" -#import "DBTEAMLOGSsoChangeLogoutUrlType.h" -#import "DBTEAMLOGSsoChangePolicyDetails.h" -#import "DBTEAMLOGSsoChangePolicyType.h" -#import "DBTEAMLOGSsoChangeSamlIdentityModeDetails.h" -#import "DBTEAMLOGSsoChangeSamlIdentityModeType.h" -#import "DBTEAMLOGSsoErrorDetails.h" -#import "DBTEAMLOGSsoErrorType.h" -#import "DBTEAMLOGSsoRemoveCertDetails.h" -#import "DBTEAMLOGSsoRemoveCertType.h" -#import "DBTEAMLOGSsoRemoveLoginUrlDetails.h" -#import "DBTEAMLOGSsoRemoveLoginUrlType.h" -#import "DBTEAMLOGSsoRemoveLogoutUrlDetails.h" -#import "DBTEAMLOGSsoRemoveLogoutUrlType.h" -#import "DBTEAMLOGStartedEnterpriseAdminSessionDetails.h" -#import "DBTEAMLOGStartedEnterpriseAdminSessionType.h" -#import "DBTEAMLOGTeamActivityCreateReportDetails.h" -#import "DBTEAMLOGTeamActivityCreateReportFailDetails.h" -#import "DBTEAMLOGTeamActivityCreateReportFailType.h" -#import "DBTEAMLOGTeamActivityCreateReportType.h" -#import "DBTEAMLOGTeamBrandingPolicy.h" -#import "DBTEAMLOGTeamBrandingPolicyChangedDetails.h" -#import "DBTEAMLOGTeamBrandingPolicyChangedType.h" -#import "DBTEAMLOGTeamDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h" -#import "DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyCreateKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyDisableKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyEnableKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyRotateKeyType.h" -#import "DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h" -#import "DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h" -#import "DBTEAMLOGTeamEvent.h" -#import "DBTEAMLOGTeamExtensionsPolicy.h" -#import "DBTEAMLOGTeamExtensionsPolicyChangedDetails.h" -#import "DBTEAMLOGTeamExtensionsPolicyChangedType.h" -#import "DBTEAMLOGTeamFolderChangeStatusDetails.h" -#import "DBTEAMLOGTeamFolderChangeStatusType.h" -#import "DBTEAMLOGTeamFolderCreateDetails.h" -#import "DBTEAMLOGTeamFolderCreateType.h" -#import "DBTEAMLOGTeamFolderDowngradeDetails.h" -#import "DBTEAMLOGTeamFolderDowngradeType.h" -#import "DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h" -#import "DBTEAMLOGTeamFolderPermanentlyDeleteType.h" -#import "DBTEAMLOGTeamFolderRenameDetails.h" -#import "DBTEAMLOGTeamFolderRenameType.h" -#import "DBTEAMLOGTeamInviteDetails.h" -#import "DBTEAMLOGTeamLinkedAppLogInfo.h" -#import "DBTEAMLOGTeamLogInfo.h" -#import "DBTEAMLOGTeamMemberLogInfo.h" -#import "DBTEAMLOGTeamMembershipType.h" -#import "DBTEAMLOGTeamMergeFromDetails.h" -#import "DBTEAMLOGTeamMergeFromType.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestAcceptedType.h" -#import "DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h" -#import "DBTEAMLOGTeamMergeRequestAutoCanceledType.h" -#import "DBTEAMLOGTeamMergeRequestCanceledDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestCanceledType.h" -#import "DBTEAMLOGTeamMergeRequestExpiredDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestExpiredType.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestReminderDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderExtraDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestReminderType.h" -#import "DBTEAMLOGTeamMergeRequestRevokedDetails.h" -#import "DBTEAMLOGTeamMergeRequestRevokedType.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h" -#import "DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h" -#import "DBTEAMLOGTeamMergeToDetails.h" -#import "DBTEAMLOGTeamMergeToType.h" -#import "DBTEAMLOGTeamName.h" -#import "DBTEAMLOGTeamProfileAddBackgroundDetails.h" -#import "DBTEAMLOGTeamProfileAddBackgroundType.h" -#import "DBTEAMLOGTeamProfileAddLogoDetails.h" -#import "DBTEAMLOGTeamProfileAddLogoType.h" -#import "DBTEAMLOGTeamProfileChangeBackgroundDetails.h" -#import "DBTEAMLOGTeamProfileChangeBackgroundType.h" -#import "DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h" -#import "DBTEAMLOGTeamProfileChangeDefaultLanguageType.h" -#import "DBTEAMLOGTeamProfileChangeLogoDetails.h" -#import "DBTEAMLOGTeamProfileChangeLogoType.h" -#import "DBTEAMLOGTeamProfileChangeNameDetails.h" -#import "DBTEAMLOGTeamProfileChangeNameType.h" -#import "DBTEAMLOGTeamProfileRemoveBackgroundDetails.h" -#import "DBTEAMLOGTeamProfileRemoveBackgroundType.h" -#import "DBTEAMLOGTeamProfileRemoveLogoDetails.h" -#import "DBTEAMLOGTeamProfileRemoveLogoType.h" -#import "DBTEAMLOGTeamSelectiveSyncPolicy.h" -#import "DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h" -#import "DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h" -#import "DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h" -#import "DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h" -#import "DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h" -#import "DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h" -#import "DBTEAMLOGTfaAddBackupPhoneDetails.h" -#import "DBTEAMLOGTfaAddBackupPhoneType.h" -#import "DBTEAMLOGTfaAddExceptionDetails.h" -#import "DBTEAMLOGTfaAddExceptionType.h" -#import "DBTEAMLOGTfaAddSecurityKeyDetails.h" -#import "DBTEAMLOGTfaAddSecurityKeyType.h" -#import "DBTEAMLOGTfaChangeBackupPhoneDetails.h" -#import "DBTEAMLOGTfaChangeBackupPhoneType.h" -#import "DBTEAMLOGTfaChangePolicyDetails.h" -#import "DBTEAMLOGTfaChangePolicyType.h" -#import "DBTEAMLOGTfaChangeStatusDetails.h" -#import "DBTEAMLOGTfaChangeStatusType.h" -#import "DBTEAMLOGTfaConfiguration.h" -#import "DBTEAMLOGTfaRemoveBackupPhoneDetails.h" -#import "DBTEAMLOGTfaRemoveBackupPhoneType.h" -#import "DBTEAMLOGTfaRemoveExceptionDetails.h" -#import "DBTEAMLOGTfaRemoveExceptionType.h" -#import "DBTEAMLOGTfaRemoveSecurityKeyDetails.h" -#import "DBTEAMLOGTfaRemoveSecurityKeyType.h" -#import "DBTEAMLOGTfaResetDetails.h" -#import "DBTEAMLOGTfaResetType.h" -#import "DBTEAMLOGTimeUnit.h" -#import "DBTEAMLOGTrustedNonTeamMemberLogInfo.h" -#import "DBTEAMLOGTrustedNonTeamMemberType.h" -#import "DBTEAMLOGTrustedTeamsRequestAction.h" -#import "DBTEAMLOGTrustedTeamsRequestState.h" -#import "DBTEAMLOGTwoAccountChangePolicyDetails.h" -#import "DBTEAMLOGTwoAccountChangePolicyType.h" -#import "DBTEAMLOGTwoAccountPolicy.h" -#import "DBTEAMLOGUndoNamingConventionDetails.h" -#import "DBTEAMLOGUndoNamingConventionType.h" -#import "DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h" -#import "DBTEAMLOGUndoOrganizeFolderWithTidyType.h" -#import "DBTEAMLOGUserLinkedAppLogInfo.h" -#import "DBTEAMLOGUserLogInfo.h" -#import "DBTEAMLOGUserNameLogInfo.h" -#import "DBTEAMLOGUserOrTeamLinkedAppLogInfo.h" -#import "DBTEAMLOGUserTagsAddedDetails.h" -#import "DBTEAMLOGUserTagsAddedType.h" -#import "DBTEAMLOGUserTagsRemovedDetails.h" -#import "DBTEAMLOGUserTagsRemovedType.h" -#import "DBTEAMLOGViewerInfoPolicyChangedDetails.h" -#import "DBTEAMLOGViewerInfoPolicyChangedType.h" -#import "DBTEAMLOGWatermarkingPolicy.h" -#import "DBTEAMLOGWatermarkingPolicyChangedDetails.h" -#import "DBTEAMLOGWatermarkingPolicyChangedType.h" -#import "DBTEAMLOGWebDeviceSessionLogInfo.h" -#import "DBTEAMLOGWebSessionLogInfo.h" -#import "DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h" -#import "DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h" -#import "DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h" -#import "DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h" -#import "DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h" -#import "DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h" -#import "DBTEAMLOGWebSessionsFixedLengthPolicy.h" -#import "DBTEAMLOGWebSessionsIdleLengthPolicy.h" - - -// `TeamPolicies` namespace types - -#import "DBTEAMPOLICIESCameraUploadsPolicyState.h" -#import "DBTEAMPOLICIESComputerBackupPolicyState.h" -#import "DBTEAMPOLICIESEmmState.h" -#import "DBTEAMPOLICIESExternalDriveBackupPolicyState.h" -#import "DBTEAMPOLICIESFileLockingPolicyState.h" -#import "DBTEAMPOLICIESFileProviderMigrationPolicyState.h" -#import "DBTEAMPOLICIESGroupCreation.h" -#import "DBTEAMPOLICIESOfficeAddInPolicy.h" -#import "DBTEAMPOLICIESPaperDefaultFolderPolicy.h" -#import "DBTEAMPOLICIESPaperDeploymentPolicy.h" -#import "DBTEAMPOLICIESPaperDesktopPolicy.h" -#import "DBTEAMPOLICIESPaperEnabledPolicy.h" -#import "DBTEAMPOLICIESPasswordControlMode.h" -#import "DBTEAMPOLICIESPasswordStrengthPolicy.h" -#import "DBTEAMPOLICIESRolloutMethod.h" -#import "DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h" -#import "DBTEAMPOLICIESSharedFolderJoinPolicy.h" -#import "DBTEAMPOLICIESSharedFolderMemberPolicy.h" -#import "DBTEAMPOLICIESSharedLinkCreatePolicy.h" -#import "DBTEAMPOLICIESShowcaseDownloadPolicy.h" -#import "DBTEAMPOLICIESShowcaseEnabledPolicy.h" -#import "DBTEAMPOLICIESShowcaseExternalSharingPolicy.h" -#import "DBTEAMPOLICIESSmartSyncPolicy.h" -#import "DBTEAMPOLICIESSmarterSmartSyncPolicyState.h" -#import "DBTEAMPOLICIESSsoPolicy.h" -#import "DBTEAMPOLICIESSuggestMembersPolicy.h" -#import "DBTEAMPOLICIESTeamMemberPolicies.h" -#import "DBTEAMPOLICIESTeamSharingPolicies.h" -#import "DBTEAMPOLICIESTwoStepVerificationPolicy.h" -#import "DBTEAMPOLICIESTwoStepVerificationState.h" - - -// `Users` namespace types - -#import "DBUSERSAccount.h" -#import "DBUSERSBasicAccount.h" -#import "DBUSERSFileLockingValue.h" -#import "DBUSERSFullAccount.h" -#import "DBUSERSFullTeam.h" -#import "DBUSERSGetAccountArg.h" -#import "DBUSERSGetAccountBatchArg.h" -#import "DBUSERSGetAccountBatchError.h" -#import "DBUSERSGetAccountError.h" -#import "DBUSERSIndividualSpaceAllocation.h" -#import "DBUSERSName.h" -#import "DBUSERSPaperAsFilesValue.h" -#import "DBUSERSSpaceAllocation.h" -#import "DBUSERSSpaceUsage.h" -#import "DBUSERSTeam.h" -#import "DBUSERSTeamSpaceAllocation.h" -#import "DBUSERSUserFeature.h" -#import "DBUSERSUserFeatureValue.h" -#import "DBUSERSUserFeaturesGetValuesBatchArg.h" -#import "DBUSERSUserFeaturesGetValuesBatchError.h" -#import "DBUSERSUserFeaturesGetValuesBatchResult.h" - - -// `UsersCommon` namespace types - -#import "DBUSERSCOMMONAccountType.h" - diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImportsShared.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImportsShared.h deleted file mode 100644 index d0382d64..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKImportsShared.h +++ /dev/null @@ -1,46 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -/// Import generated shared files - -#import "DBSDKImportsGenerated.h" - -/// Import handwritten shared files - -#import "DBAppClient.h" -#import "DBClientsManager.h" -#import "DBTeamClient.h" -#import "DBUserClient.h" - -/// Networking -#import "DBGlobalErrorResponseHandler.h" -#import "DBHandlerTypes.h" -#import "DBRequestErrors.h" -#import "DBTasks.h" -#import "DBTasksStorage.h" -#import "DBTransportBaseClient.h" -#import "DBTransportBaseConfig.h" -#import "DBTransportClientProtocol.h" -#import "DBTransportDefaultClient.h" -#import "DBTransportDefaultConfig.h" - -/// OAuth -#import "DBOAuthManager.h" -#import "DBOAuthResult.h" -#import "DBOAuthResultCompletion.h" -#import "DBSDKKeychain.h" -#import "DBScopeRequest.h" -#import "DBSharedApplicationProtocol.h" - -/// Resources -#import "DBCustomDatatypes.h" -#import "DBCustomRoutes.h" -#import "DBCustomTasks.h" -#import "DBSDKConstants.h" - -/// "Generated" Resources -#import "DBSerializableProtocol.h" -#import "DBStoneBase.h" -#import "DBStoneSerializers.h" -#import "DBStoneValidators.h" diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKKeychain.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKKeychain.h deleted file mode 100644 index ecd9b20d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSDKKeychain.h +++ /dev/null @@ -1,41 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBHandlerTypes.h" - -@class DBAccessToken; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Keychain class for storing OAuth tokens. -/// -@interface DBSDKKeychain : NSObject - -/// Stores DBAccessToken in the keychain. -+ (BOOL)storeAccessToken:(DBAccessToken *)accessToken; - -/// Retrieves a DBAccessToken from the corresponding key (uid) from the keychain. -+ (nullable DBAccessToken *)retrieveTokenWithUid:(NSString *)uid; - -/// Retrieves all token uids from the keychain. -+ (NSArray *)retrieveAllTokenIds; - -/// Deletes the stored token value for a key (uid). -+ (BOOL)deleteTokenWithUid:(NSString *)uid; - -/// Deletes all key / value pairs in the keychain. -+ (BOOL)clearAllTokens; - -/// Checks if performing a v1 token migration is necessary, and if so, performs it. -+ (BOOL)checkAndPerformV1TokenMigration:(DBTokenMigrationResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue - appKey:(NSString *)appKey - appSecret:(NSString *)appSecret; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSECONDARYEMAILSSecondaryEmail.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSECONDARYEMAILSSecondaryEmail.h deleted file mode 100644 index 07b51429..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSECONDARYEMAILSSecondaryEmail.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSECONDARYEMAILSSecondaryEmail; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmail` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSECONDARYEMAILSSecondaryEmail : NSObject - -#pragma mark - Instance fields - -/// Secondary email address. -@property (nonatomic, readonly, copy) NSString *email; - -/// Whether or not the secondary email address is verified to be owned by a -/// user. -@property (nonatomic, readonly) NSNumber *isVerified; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param email Secondary email address. -/// @param isVerified Whether or not the secondary email address is verified to -/// be owned by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email isVerified:(NSNumber *)isVerified; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmail` struct. -/// -@interface DBSECONDARYEMAILSSecondaryEmailSerializer : NSObject - -/// -/// Serializes `DBSECONDARYEMAILSSecondaryEmail` instances. -/// -/// @param instance An instance of the `DBSECONDARYEMAILSSecondaryEmail` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSECONDARYEMAILSSecondaryEmail` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSECONDARYEMAILSSecondaryEmail *)instance; - -/// -/// Deserializes `DBSECONDARYEMAILSSecondaryEmail` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSECONDARYEMAILSSecondaryEmail` API object. -/// -/// @return An instantiation of the `DBSECONDARYEMAILSSecondaryEmail` object. -/// -+ (DBSECONDARYEMAILSSecondaryEmail *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSEENSTATEPlatformType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSEENSTATEPlatformType.h deleted file mode 100644 index 8aa13971..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSEENSTATEPlatformType.h +++ /dev/null @@ -1,239 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSEENSTATEPlatformType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PlatformType` union. -/// -/// Possible platforms on which a user may view content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSEENSTATEPlatformType : NSObject - -#pragma mark - Instance fields - -/// The `DBSEENSTATEPlatformTypeTag` enum type represents the possible tag -/// states with which the `DBSEENSTATEPlatformType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSEENSTATEPlatformTypeTag) { - /// The content was viewed on the web. - DBSEENSTATEPlatformTypeWeb, - - /// The content was viewed on a desktop client. - DBSEENSTATEPlatformTypeDesktop, - - /// The content was viewed on a mobile iOS client. - DBSEENSTATEPlatformTypeMobileIos, - - /// The content was viewed on a mobile android client. - DBSEENSTATEPlatformTypeMobileAndroid, - - /// The content was viewed from an API client. - DBSEENSTATEPlatformTypeApi, - - /// The content was viewed on an unknown platform. - DBSEENSTATEPlatformTypeUnknown, - - /// The content was viewed on a mobile client. DEPRECATED: Use mobile_ios or - /// mobile_android instead. - DBSEENSTATEPlatformTypeMobile, - - /// (no description). - DBSEENSTATEPlatformTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSEENSTATEPlatformTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "web". -/// -/// Description of the "web" tag state: The content was viewed on the web. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWeb; - -/// -/// Initializes union class with tag state of "desktop". -/// -/// Description of the "desktop" tag state: The content was viewed on a desktop -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktop; - -/// -/// Initializes union class with tag state of "mobile_ios". -/// -/// Description of the "mobile_ios" tag state: The content was viewed on a -/// mobile iOS client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileIos; - -/// -/// Initializes union class with tag state of "mobile_android". -/// -/// Description of the "mobile_android" tag state: The content was viewed on a -/// mobile android client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileAndroid; - -/// -/// Initializes union class with tag state of "api". -/// -/// Description of the "api" tag state: The content was viewed from an API -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApi; - -/// -/// Initializes union class with tag state of "unknown". -/// -/// Description of the "unknown" tag state: The content was viewed on an unknown -/// platform. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknown; - -/// -/// Initializes union class with tag state of "mobile". -/// -/// Description of the "mobile" tag state: The content was viewed on a mobile -/// client. DEPRECATED: Use mobile_ios or mobile_android instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobile; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "web". -/// -/// @return Whether the union's current tag state has value "web". -/// -- (BOOL)isWeb; - -/// -/// Retrieves whether the union's current tag state has value "desktop". -/// -/// @return Whether the union's current tag state has value "desktop". -/// -- (BOOL)isDesktop; - -/// -/// Retrieves whether the union's current tag state has value "mobile_ios". -/// -/// @return Whether the union's current tag state has value "mobile_ios". -/// -- (BOOL)isMobileIos; - -/// -/// Retrieves whether the union's current tag state has value "mobile_android". -/// -/// @return Whether the union's current tag state has value "mobile_android". -/// -- (BOOL)isMobileAndroid; - -/// -/// Retrieves whether the union's current tag state has value "api". -/// -/// @return Whether the union's current tag state has value "api". -/// -- (BOOL)isApi; - -/// -/// Retrieves whether the union's current tag state has value "unknown". -/// -/// @return Whether the union's current tag state has value "unknown". -/// -- (BOOL)isUnknown; - -/// -/// Retrieves whether the union's current tag state has value "mobile". -/// -/// @return Whether the union's current tag state has value "mobile". -/// -- (BOOL)isMobile; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSEENSTATEPlatformType` union. -/// -@interface DBSEENSTATEPlatformTypeSerializer : NSObject - -/// -/// Serializes `DBSEENSTATEPlatformType` instances. -/// -/// @param instance An instance of the `DBSEENSTATEPlatformType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSEENSTATEPlatformType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSEENSTATEPlatformType *)instance; - -/// -/// Deserializes `DBSEENSTATEPlatformType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSEENSTATEPlatformType` API object. -/// -/// @return An instantiation of the `DBSEENSTATEPlatformType` object. -/// -+ (DBSEENSTATEPlatformType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAccessInheritance.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAccessInheritance.h deleted file mode 100644 index e894c8b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAccessInheritance.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessInheritance` union. -/// -/// Information about the inheritance policy of a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAccessInheritance : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAccessInheritanceTag` enum type represents the possible tag -/// states with which the `DBSHARINGAccessInheritance` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAccessInheritanceTag) { - /// The shared folder inherits its members from the parent folder. - DBSHARINGAccessInheritanceInherit, - - /// The shared folder does not inherit its members from the parent folder. - DBSHARINGAccessInheritanceNoInherit, - - /// (no description). - DBSHARINGAccessInheritanceOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAccessInheritanceTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "inherit". -/// -/// Description of the "inherit" tag state: The shared folder inherits its -/// members from the parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInherit; - -/// -/// Initializes union class with tag state of "no_inherit". -/// -/// Description of the "no_inherit" tag state: The shared folder does not -/// inherit its members from the parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoInherit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "inherit". -/// -/// @return Whether the union's current tag state has value "inherit". -/// -- (BOOL)isInherit; - -/// -/// Retrieves whether the union's current tag state has value "no_inherit". -/// -/// @return Whether the union's current tag state has value "no_inherit". -/// -- (BOOL)isNoInherit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAccessInheritance` union. -/// -@interface DBSHARINGAccessInheritanceSerializer : NSObject - -/// -/// Serializes `DBSHARINGAccessInheritance` instances. -/// -/// @param instance An instance of the `DBSHARINGAccessInheritance` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAccessInheritance` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAccessInheritance *)instance; - -/// -/// Deserializes `DBSHARINGAccessInheritance` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAccessInheritance` API object. -/// -/// @return An instantiation of the `DBSHARINGAccessInheritance` object. -/// -+ (DBSHARINGAccessInheritance *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAccessLevel.h deleted file mode 100644 index b4648d79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAccessLevel.h +++ /dev/null @@ -1,231 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessLevel` union. -/// -/// Defines the access levels for collaborators. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAccessLevelTag` enum type represents the possible tag states -/// with which the `DBSHARINGAccessLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAccessLevelTag) { - /// The collaborator is the owner of the shared folder. Owners can view and - /// edit the shared folder as well as set the folder's policies using - /// `updateFolderPolicy`. - DBSHARINGAccessLevelOwner, - - /// The collaborator can both view and edit the shared folder. - DBSHARINGAccessLevelEditor, - - /// The collaborator can only view the shared folder. - DBSHARINGAccessLevelViewer, - - /// The collaborator can only view the shared folder and does not have any - /// access to comments. - DBSHARINGAccessLevelViewerNoComment, - - /// The collaborator can only view the shared folder that they have access - /// to. - DBSHARINGAccessLevelTraverse, - - /// If there is a Righteous Link on the folder which grants access and the - /// user has visited such link, they are allowed to perform certain action - /// (i.e. add themselves to the folder) via the link access even though the - /// user themselves are not a member on the shared folder yet. - DBSHARINGAccessLevelNoAccess, - - /// (no description). - DBSHARINGAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "owner". -/// -/// Description of the "owner" tag state: The collaborator is the owner of the -/// shared folder. Owners can view and edit the shared folder as well as set the -/// folder's policies using `updateFolderPolicy`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner; - -/// -/// Initializes union class with tag state of "editor". -/// -/// Description of the "editor" tag state: The collaborator can both view and -/// edit the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "viewer". -/// -/// Description of the "viewer" tag state: The collaborator can only view the -/// shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "viewer_no_comment". -/// -/// Description of the "viewer_no_comment" tag state: The collaborator can only -/// view the shared folder and does not have any access to comments. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerNoComment; - -/// -/// Initializes union class with tag state of "traverse". -/// -/// Description of the "traverse" tag state: The collaborator can only view the -/// shared folder that they have access to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTraverse; - -/// -/// Initializes union class with tag state of "no_access". -/// -/// Description of the "no_access" tag state: If there is a Righteous Link on -/// the folder which grants access and the user has visited such link, they are -/// allowed to perform certain action (i.e. add themselves to the folder) via -/// the link access even though the user themselves are not a member on the -/// shared folder yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "owner". -/// -/// @return Whether the union's current tag state has value "owner". -/// -- (BOOL)isOwner; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_no_comment". -/// -/// @return Whether the union's current tag state has value "viewer_no_comment". -/// -- (BOOL)isViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value "traverse". -/// -/// @return Whether the union's current tag state has value "traverse". -/// -- (BOOL)isTraverse; - -/// -/// Retrieves whether the union's current tag state has value "no_access". -/// -/// @return Whether the union's current tag state has value "no_access". -/// -- (BOOL)isNoAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAccessLevel` union. -/// -@interface DBSHARINGAccessLevelSerializer : NSObject - -/// -/// Serializes `DBSHARINGAccessLevel` instances. -/// -/// @param instance An instance of the `DBSHARINGAccessLevel` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAccessLevel *)instance; - -/// -/// Deserializes `DBSHARINGAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAccessLevel` API object. -/// -/// @return An instantiation of the `DBSHARINGAccessLevel` object. -/// -+ (DBSHARINGAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAclUpdatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAclUpdatePolicy.h deleted file mode 100644 index 91f955d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAclUpdatePolicy.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AclUpdatePolicy` union. -/// -/// Who can change a shared folder's access control list (ACL). In other words, -/// who can add, remove, or change the privileges of members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAclUpdatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAclUpdatePolicyTag` enum type represents the possible tag -/// states with which the `DBSHARINGAclUpdatePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAclUpdatePolicyTag) { - /// Only the owner can update the ACL. - DBSHARINGAclUpdatePolicyOwner, - - /// Any editor can update the ACL. This may be further restricted to editors - /// on the same team. - DBSHARINGAclUpdatePolicyEditors, - - /// (no description). - DBSHARINGAclUpdatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAclUpdatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "owner". -/// -/// Description of the "owner" tag state: Only the owner can update the ACL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner; - -/// -/// Initializes union class with tag state of "editors". -/// -/// Description of the "editors" tag state: Any editor can update the ACL. This -/// may be further restricted to editors on the same team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditors; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "owner". -/// -/// @return Whether the union's current tag state has value "owner". -/// -- (BOOL)isOwner; - -/// -/// Retrieves whether the union's current tag state has value "editors". -/// -/// @return Whether the union's current tag state has value "editors". -/// -- (BOOL)isEditors; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAclUpdatePolicy` union. -/// -@interface DBSHARINGAclUpdatePolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGAclUpdatePolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGAclUpdatePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAclUpdatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAclUpdatePolicy *)instance; - -/// -/// Deserializes `DBSHARINGAclUpdatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAclUpdatePolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGAclUpdatePolicy` object. -/// -+ (DBSHARINGAclUpdatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFileMemberArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFileMemberArgs.h deleted file mode 100644 index 2798d6ea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFileMemberArgs.h +++ /dev/null @@ -1,126 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAddFileMemberArgs; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFileMemberArgs` struct. -/// -/// Arguments for `addFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFileMemberArgs : NSObject - -#pragma mark - Instance fields - -/// File to which to add members. -@property (nonatomic, readonly, copy) NSString *file; - -/// Members to add. Note that even an email address is given, this may result in -/// a user being directly added to the membership if that email is the user's -/// main account email. -@property (nonatomic, readonly) NSArray *members; - -/// Message to send to added members in their invitation. -@property (nonatomic, readonly, copy, nullable) NSString *customMessage; - -/// Whether added members should be notified via email and device notifications -/// of their invitation. -@property (nonatomic, readonly) NSNumber *quiet; - -/// AccessLevel union object, describing what access level we want to give new -/// members. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -/// If the custom message should be added as a comment on the file. -@property (nonatomic, readonly) NSNumber *addMessageAsComment; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, -/// this may result in a user being directly added to the membership if that -/// email is the user's main account email. -/// @param customMessage Message to send to added members in their invitation. -/// @param quiet Whether added members should be notified via email and device -/// notifications of their invitation. -/// @param accessLevel AccessLevel union object, describing what access level we -/// want to give new members. -/// @param addMessageAsComment If the custom message should be added as a -/// comment on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - addMessageAsComment:(nullable NSNumber *)addMessageAsComment; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, -/// this may result in a user being directly added to the membership if that -/// email is the user's main account email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file members:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddFileMemberArgs` struct. -/// -@interface DBSHARINGAddFileMemberArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFileMemberArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFileMemberArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFileMemberArgs *)instance; - -/// -/// Deserializes `DBSHARINGAddFileMemberArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFileMemberArgs` object. -/// -+ (DBSHARINGAddFileMemberArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFileMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFileMemberError.h deleted file mode 100644 index 654ac197..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFileMemberError.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFileMemberError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFileMemberError` union. -/// -/// Errors for `addFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFileMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAddFileMemberErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGAddFileMemberError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAddFileMemberErrorTag) { - /// (no description). - DBSHARINGAddFileMemberErrorUserError, - - /// (no description). - DBSHARINGAddFileMemberErrorAccessError, - - /// The user has reached the rate limit for invitations. - DBSHARINGAddFileMemberErrorRateLimit, - - /// The custom message did not pass comment permissions checks. - DBSHARINGAddFileMemberErrorInvalidComment, - - /// (no description). - DBSHARINGAddFileMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAddFileMemberErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "rate_limit". -/// -/// Description of the "rate_limit" tag state: The user has reached the rate -/// limit for invitations. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimit; - -/// -/// Initializes union class with tag state of "invalid_comment". -/// -/// Description of the "invalid_comment" tag state: The custom message did not -/// pass comment permissions checks. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidComment; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "rate_limit". -/// -/// @return Whether the union's current tag state has value "rate_limit". -/// -- (BOOL)isRateLimit; - -/// -/// Retrieves whether the union's current tag state has value "invalid_comment". -/// -/// @return Whether the union's current tag state has value "invalid_comment". -/// -- (BOOL)isInvalidComment; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAddFileMemberError` union. -/// -@interface DBSHARINGAddFileMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFileMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFileMemberError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFileMemberError *)instance; - -/// -/// Deserializes `DBSHARINGAddFileMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFileMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFileMemberError` object. -/// -+ (DBSHARINGAddFileMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFolderMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFolderMemberArg.h deleted file mode 100644 index d5fe401f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFolderMemberArg.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFolderMemberArg; -@class DBSHARINGAddMember; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFolderMemberArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFolderMemberArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The intended list of members to add. Added members will receive invites to -/// join the shared folder. -@property (nonatomic, readonly) NSArray *members; - -/// Whether added members should be notified via email and device notifications -/// of their invite. -@property (nonatomic, readonly) NSNumber *quiet; - -/// Optional message to display to added members in their invitation. -@property (nonatomic, readonly, copy, nullable) NSString *customMessage; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will -/// receive invites to join the shared folder. -/// @param quiet Whether added members should be notified via email and device -/// notifications of their invite. -/// @param customMessage Optional message to display to added members in their -/// invitation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - members:(NSArray *)members - quiet:(nullable NSNumber *)quiet - customMessage:(nullable NSString *)customMessage; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will -/// receive invites to join the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId members:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddFolderMemberArg` struct. -/// -@interface DBSHARINGAddFolderMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFolderMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFolderMemberArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFolderMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGAddFolderMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFolderMemberArg` object. -/// -+ (DBSHARINGAddFolderMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFolderMemberError.h deleted file mode 100644 index f9bf9925..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddFolderMemberError.h +++ /dev/null @@ -1,421 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGAddMemberSelectorError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAddFolderMemberErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGAddFolderMemberError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAddFolderMemberErrorTag) { - /// Unable to access shared folder. - DBSHARINGAddFolderMemberErrorAccessError, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGAddFolderMemberErrorEmailUnverified, - - /// The current user has been banned. - DBSHARINGAddFolderMemberErrorBannedMember, - - /// `members` in `DBSHARINGAddFolderMemberArg` contains a bad invitation - /// recipient. - DBSHARINGAddFolderMemberErrorBadMember, - - /// Your team policy does not allow sharing outside of the team. - DBSHARINGAddFolderMemberErrorCantShareOutsideTeam, - - /// The value is the member limit that was reached. - DBSHARINGAddFolderMemberErrorTooManyMembers, - - /// The value is the pending invite limit that was reached. - DBSHARINGAddFolderMemberErrorTooManyPendingInvites, - - /// The current user has hit the limit of invites they can send per day. Try - /// again in 24 hours. - DBSHARINGAddFolderMemberErrorRateLimit, - - /// The current user is trying to share with too many people at once. - DBSHARINGAddFolderMemberErrorTooManyInvitees, - - /// The current user's account doesn't support this action. An example of - /// this is when adding a read-only member. This action can only be - /// performed by users that have upgraded to a Pro or Business plan. - DBSHARINGAddFolderMemberErrorInsufficientPlan, - - /// This action cannot be performed on a team shared folder. - DBSHARINGAddFolderMemberErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGAddFolderMemberErrorNoPermission, - - /// Invalid shared folder error will be returned as an access_error. - DBSHARINGAddFolderMemberErrorInvalidSharedFolder, - - /// (no description). - DBSHARINGAddFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAddFolderMemberErrorTag tag; - -/// Unable to access shared folder. @note Ensure the `isAccessError` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// `members` in `DBSHARINGAddFolderMemberArg` contains a bad invitation -/// recipient. @note Ensure the `isBadMember` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGAddMemberSelectorError *badMember; - -/// The value is the member limit that was reached. @note Ensure the -/// `isTooManyMembers` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) NSNumber *tooManyMembers; - -/// The value is the pending invite limit that was reached. @note Ensure the -/// `isTooManyPendingInvites` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *tooManyPendingInvites; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: Unable to access shared folder. -/// -/// @param accessError Unable to access shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "banned_member". -/// -/// Description of the "banned_member" tag state: The current user has been -/// banned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBannedMember; - -/// -/// Initializes union class with tag state of "bad_member". -/// -/// Description of the "bad_member" tag state: `members` in -/// `DBSHARINGAddFolderMemberArg` contains a bad invitation recipient. -/// -/// @param badMember `members` in `DBSHARINGAddFolderMemberArg` contains a bad -/// invitation recipient. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadMember:(DBSHARINGAddMemberSelectorError *)badMember; - -/// -/// Initializes union class with tag state of "cant_share_outside_team". -/// -/// Description of the "cant_share_outside_team" tag state: Your team policy -/// does not allow sharing outside of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCantShareOutsideTeam; - -/// -/// Initializes union class with tag state of "too_many_members". -/// -/// Description of the "too_many_members" tag state: The value is the member -/// limit that was reached. -/// -/// @param tooManyMembers The value is the member limit that was reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyMembers:(NSNumber *)tooManyMembers; - -/// -/// Initializes union class with tag state of "too_many_pending_invites". -/// -/// Description of the "too_many_pending_invites" tag state: The value is the -/// pending invite limit that was reached. -/// -/// @param tooManyPendingInvites The value is the pending invite limit that was -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyPendingInvites:(NSNumber *)tooManyPendingInvites; - -/// -/// Initializes union class with tag state of "rate_limit". -/// -/// Description of the "rate_limit" tag state: The current user has hit the -/// limit of invites they can send per day. Try again in 24 hours. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimit; - -/// -/// Initializes union class with tag state of "too_many_invitees". -/// -/// Description of the "too_many_invitees" tag state: The current user is trying -/// to share with too many people at once. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyInvitees; - -/// -/// Initializes union class with tag state of "insufficient_plan". -/// -/// Description of the "insufficient_plan" tag state: The current user's account -/// doesn't support this action. An example of this is when adding a read-only -/// member. This action can only be performed by users that have upgraded to a -/// Pro or Business plan. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPlan; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "invalid_shared_folder". -/// -/// Description of the "invalid_shared_folder" tag state: Invalid shared folder -/// error will be returned as an access_error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSharedFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "banned_member". -/// -/// @return Whether the union's current tag state has value "banned_member". -/// -- (BOOL)isBannedMember; - -/// -/// Retrieves whether the union's current tag state has value "bad_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `badMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "bad_member". -/// -- (BOOL)isBadMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "cant_share_outside_team". -/// -/// @return Whether the union's current tag state has value -/// "cant_share_outside_team". -/// -- (BOOL)isCantShareOutsideTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tooManyMembers` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "too_many_members". -/// -- (BOOL)isTooManyMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_pending_invites". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tooManyPendingInvites` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "too_many_pending_invites". -/// -- (BOOL)isTooManyPendingInvites; - -/// -/// Retrieves whether the union's current tag state has value "rate_limit". -/// -/// @return Whether the union's current tag state has value "rate_limit". -/// -- (BOOL)isRateLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_invitees". -/// -/// @return Whether the union's current tag state has value "too_many_invitees". -/// -- (BOOL)isTooManyInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_plan". -/// -/// @return Whether the union's current tag state has value "insufficient_plan". -/// -- (BOOL)isInsufficientPlan; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "invalid_shared_folder". -/// -- (BOOL)isInvalidSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAddFolderMemberError` union. -/// -@interface DBSHARINGAddFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGAddFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGAddFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGAddFolderMemberError` object. -/// -+ (DBSHARINGAddFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddMember.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddMember.h deleted file mode 100644 index 05f6d23c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddMember.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAddMember; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddMember` struct. -/// -/// The member and type of access the member should have when added to a shared -/// folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddMember : NSObject - -#pragma mark - Instance fields - -/// The member to add to the shared folder. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The access level to grant member to the shared folder. `owner` in -/// `DBSHARINGAccessLevel` is disallowed. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member The member to add to the shared folder. -/// @param accessLevel The access level to grant member to the shared folder. -/// `owner` in `DBSHARINGAccessLevel` is disallowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param member The member to add to the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddMember` struct. -/// -@interface DBSHARINGAddMemberSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddMember` instances. -/// -/// @param instance An instance of the `DBSHARINGAddMember` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddMember` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddMember *)instance; - -/// -/// Deserializes `DBSHARINGAddMember` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddMember` API object. -/// -/// @return An instantiation of the `DBSHARINGAddMember` object. -/// -+ (DBSHARINGAddMember *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddMemberSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddMemberSelectorError.h deleted file mode 100644 index a0bc7786..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAddMemberSelectorError.h +++ /dev/null @@ -1,261 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddMemberSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddMemberSelectorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAddMemberSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAddMemberSelectorErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGAddMemberSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAddMemberSelectorErrorTag) { - /// Automatically created groups can only be added to team folders. - DBSHARINGAddMemberSelectorErrorAutomaticGroup, - - /// The value is the ID that could not be identified. - DBSHARINGAddMemberSelectorErrorInvalidDropboxId, - - /// The value is the e-email address that is malformed. - DBSHARINGAddMemberSelectorErrorInvalidEmail, - - /// The value is the ID of the Dropbox user with an unverified email - /// address. Invite unverified users by email address instead of by their - /// Dropbox ID. - DBSHARINGAddMemberSelectorErrorUnverifiedDropboxId, - - /// At least one of the specified groups in `members` in - /// `DBSHARINGAddFolderMemberArg` is deleted. - DBSHARINGAddMemberSelectorErrorGroupDeleted, - - /// Sharing to a group that is not on the current user's team. - DBSHARINGAddMemberSelectorErrorGroupNotOnTeam, - - /// (no description). - DBSHARINGAddMemberSelectorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAddMemberSelectorErrorTag tag; - -/// The value is the ID that could not be identified. @note Ensure the -/// `isInvalidDropboxId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *invalidDropboxId; - -/// The value is the e-email address that is malformed. @note Ensure the -/// `isInvalidEmail` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *invalidEmail; - -/// The value is the ID of the Dropbox user with an unverified email address. -/// Invite unverified users by email address instead of by their Dropbox ID. -/// @note Ensure the `isUnverifiedDropboxId` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *unverifiedDropboxId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "automatic_group". -/// -/// Description of the "automatic_group" tag state: Automatically created groups -/// can only be added to team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutomaticGroup; - -/// -/// Initializes union class with tag state of "invalid_dropbox_id". -/// -/// Description of the "invalid_dropbox_id" tag state: The value is the ID that -/// could not be identified. -/// -/// @param invalidDropboxId The value is the ID that could not be identified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDropboxId:(NSString *)invalidDropboxId; - -/// -/// Initializes union class with tag state of "invalid_email". -/// -/// Description of the "invalid_email" tag state: The value is the e-email -/// address that is malformed. -/// -/// @param invalidEmail The value is the e-email address that is malformed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidEmail:(NSString *)invalidEmail; - -/// -/// Initializes union class with tag state of "unverified_dropbox_id". -/// -/// Description of the "unverified_dropbox_id" tag state: The value is the ID of -/// the Dropbox user with an unverified email address. Invite unverified users -/// by email address instead of by their Dropbox ID. -/// -/// @param unverifiedDropboxId The value is the ID of the Dropbox user with an -/// unverified email address. Invite unverified users by email address instead -/// of by their Dropbox ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnverifiedDropboxId:(NSString *)unverifiedDropboxId; - -/// -/// Initializes union class with tag state of "group_deleted". -/// -/// Description of the "group_deleted" tag state: At least one of the specified -/// groups in `members` in `DBSHARINGAddFolderMemberArg` is deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDeleted; - -/// -/// Initializes union class with tag state of "group_not_on_team". -/// -/// Description of the "group_not_on_team" tag state: Sharing to a group that is -/// not on the current user's team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotOnTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "automatic_group". -/// -/// @return Whether the union's current tag state has value "automatic_group". -/// -- (BOOL)isAutomaticGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidDropboxId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -- (BOOL)isInvalidDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "invalid_email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidEmail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_email". -/// -- (BOOL)isInvalidEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "unverified_dropbox_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unverifiedDropboxId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "unverified_dropbox_id". -/// -- (BOOL)isUnverifiedDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "group_deleted". -/// -/// @return Whether the union's current tag state has value "group_deleted". -/// -- (BOOL)isGroupDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_on_team". -/// -/// @return Whether the union's current tag state has value "group_not_on_team". -/// -- (BOOL)isGroupNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAddMemberSelectorError` union. -/// -@interface DBSHARINGAddMemberSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGAddMemberSelectorError` instances. -/// -/// @param instance An instance of the `DBSHARINGAddMemberSelectorError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAddMemberSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAddMemberSelectorError *)instance; - -/// -/// Deserializes `DBSHARINGAddMemberSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAddMemberSelectorError` API object. -/// -/// @return An instantiation of the `DBSHARINGAddMemberSelectorError` object. -/// -+ (DBSHARINGAddMemberSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAlphaResolvedVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAlphaResolvedVisibility.h deleted file mode 100644 index 0b7012fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAlphaResolvedVisibility.h +++ /dev/null @@ -1,255 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAlphaResolvedVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlphaResolvedVisibility` union. -/// -/// check documentation for ResolvedVisibility. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAlphaResolvedVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGAlphaResolvedVisibilityTag` enum type represents the possible -/// tag states with which the `DBSHARINGAlphaResolvedVisibility` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGAlphaResolvedVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGAlphaResolvedVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGAlphaResolvedVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGAlphaResolvedVisibilityPassword, - - /// Only members of the same team who have the link-specific password can - /// access the link. Login is required. - DBSHARINGAlphaResolvedVisibilityTeamAndPassword, - - /// Only members of the shared folder containing the linked file can access - /// the link. Login is required. - DBSHARINGAlphaResolvedVisibilitySharedFolderOnly, - - /// The link merely points the user to the content, and does not grant any - /// additional rights. Existing members of the content who use this link can - /// only access the content with their pre-existing access rights. Either on - /// the file directly, or inherited from a parent folder. - DBSHARINGAlphaResolvedVisibilityNoOne, - - /// Only the current user can view this link. - DBSHARINGAlphaResolvedVisibilityOnlyYou, - - /// (no description). - DBSHARINGAlphaResolvedVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGAlphaResolvedVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "team_and_password". -/// -/// Description of the "team_and_password" tag state: Only members of the same -/// team who have the link-specific password can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndPassword; - -/// -/// Initializes union class with tag state of "shared_folder_only". -/// -/// Description of the "shared_folder_only" tag state: Only members of the -/// shared folder containing the linked file can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderOnly; - -/// -/// Initializes union class with tag state of "no_one". -/// -/// Description of the "no_one" tag state: The link merely points the user to -/// the content, and does not grant any additional rights. Existing members of -/// the content who use this link can only access the content with their -/// pre-existing access rights. Either on the file directly, or inherited from a -/// parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "only_you". -/// -/// Description of the "only_you" tag state: Only the current user can view this -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyYou; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_password". -/// -/// @return Whether the union's current tag state has value "team_and_password". -/// -- (BOOL)isTeamAndPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_only". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_only". -/// -- (BOOL)isSharedFolderOnly; - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "only_you". -/// -/// @return Whether the union's current tag state has value "only_you". -/// -- (BOOL)isOnlyYou; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGAlphaResolvedVisibility` union. -/// -@interface DBSHARINGAlphaResolvedVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGAlphaResolvedVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGAlphaResolvedVisibility` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAlphaResolvedVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAlphaResolvedVisibility *)instance; - -/// -/// Deserializes `DBSHARINGAlphaResolvedVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAlphaResolvedVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGAlphaResolvedVisibility` object. -/// -+ (DBSHARINGAlphaResolvedVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAppAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAppAuthRoutes.h deleted file mode 100644 index 5e507a5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAppAuthRoutes.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCLaunchEmptyResult; -@class DBASYNCLaunchResultBase; -@class DBASYNCPollError; -@class DBFILESLookupError; -@class DBNilObject; -@class DBSHARINGAccessInheritance; -@class DBSHARINGAccessLevel; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGAddFileMemberError; -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGAddMember; -@class DBSHARINGAddMemberSelectorError; -@class DBSHARINGCreateSharedLinkError; -@class DBSHARINGCreateSharedLinkWithSettingsError; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGFileAction; -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberActionIndividualResult; -@class DBSHARINGFileMemberActionResult; -@class DBSHARINGFileMemberRemoveActionResult; -@class DBSHARINGFilePermission; -@class DBSHARINGFolderAction; -@class DBSHARINGFolderPermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGGetFileMetadataBatchResult; -@class DBSHARINGGetFileMetadataError; -@class DBSHARINGGetFileMetadataIndividualResult; -@class DBSHARINGGetSharedLinkFileError; -@class DBSHARINGGetSharedLinksError; -@class DBSHARINGGetSharedLinksResult; -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInsufficientQuotaAmounts; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGJobError; -@class DBSHARINGJobStatus; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkExpiry; -@class DBSHARINGLinkMetadata; -@class DBSHARINGLinkPassword; -@class DBSHARINGLinkPermissions; -@class DBSHARINGLinkSettings; -@class DBSHARINGListFileMembersBatchResult; -@class DBSHARINGListFileMembersContinueError; -@class DBSHARINGListFileMembersError; -@class DBSHARINGListFileMembersIndividualResult; -@class DBSHARINGListFilesContinueError; -@class DBSHARINGListFilesResult; -@class DBSHARINGListFolderMembersContinueError; -@class DBSHARINGListFoldersContinueError; -@class DBSHARINGListFoldersResult; -@class DBSHARINGListSharedLinksError; -@class DBSHARINGListSharedLinksResult; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGMemberAction; -@class DBSHARINGMemberPolicy; -@class DBSHARINGMemberSelector; -@class DBSHARINGModifySharedLinkSettingsError; -@class DBSHARINGMountFolderError; -@class DBSHARINGParentFolderAccessInfo; -@class DBSHARINGPathLinkMetadata; -@class DBSHARINGPendingUploadMode; -@class DBSHARINGRelinquishFileMembershipError; -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGRemoveFileMemberError; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGRemoveMemberJobStatus; -@class DBSHARINGRequestedLinkAccessLevel; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGRevokeSharedLinkError; -@class DBSHARINGSetAccessInheritanceError; -@class DBSHARINGShareFolderError; -@class DBSHARINGShareFolderJobStatus; -@class DBSHARINGShareFolderLaunch; -@class DBSHARINGSharePathError; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFileMembers; -@class DBSHARINGSharedFileMetadata; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; -@class DBSHARINGSharedFolderMembers; -@class DBSHARINGSharedFolderMetadata; -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkError; -@class DBSHARINGSharedLinkMetadata; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGSharedLinkSettings; -@class DBSHARINGSharedLinkSettingsError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; -@class DBSHARINGTeamMemberInfo; -@class DBSHARINGTransferFolderError; -@class DBSHARINGUnmountFolderError; -@class DBSHARINGUnshareFileError; -@class DBSHARINGUnshareFolderError; -@class DBSHARINGUpdateFolderMemberError; -@class DBSHARINGUpdateFolderPolicyError; -@class DBSHARINGUserFileMembershipInfo; -@class DBSHARINGUserMembershipInfo; -@class DBSHARINGViewerInfoPolicy; -@class DBSHARINGVisibility; -@class DBUSERSTeam; - -@protocol DBTransportClient; - -/// -/// Routes for the `Sharing` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBSHARINGAppAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBSHARINGAppAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *)getSharedLinkMetadata:(NSString *)url; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *) - getSharedLinkMetadata:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceExceptionContentInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceExceptionContentInfo.h deleted file mode 100644 index d53cbd42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceExceptionContentInfo.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAudienceExceptionContentInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AudienceExceptionContentInfo` struct. -/// -/// Information about the content that has a link audience different than that -/// of this folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAudienceExceptionContentInfo : NSObject - -#pragma mark - Instance fields - -/// The name of the content, which is either a file or a folder. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of the content, which is either a file or a folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AudienceExceptionContentInfo` struct. -/// -@interface DBSHARINGAudienceExceptionContentInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGAudienceExceptionContentInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGAudienceExceptionContentInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptionContentInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAudienceExceptionContentInfo *)instance; - -/// -/// Deserializes `DBSHARINGAudienceExceptionContentInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptionContentInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGAudienceExceptionContentInfo` -/// object. -/// -+ (DBSHARINGAudienceExceptionContentInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceExceptions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceExceptions.h deleted file mode 100644 index 38a39599..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceExceptions.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAudienceExceptionContentInfo; -@class DBSHARINGAudienceExceptions; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AudienceExceptions` struct. -/// -/// The total count and truncated list of information of content inside this -/// folder that has a different audience than the link on this folder. This is -/// only returned for folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAudienceExceptions : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSNumber *count; - -/// A truncated list of some of the content that is an exception. The length of -/// this list could be smaller than the count since it is only a sample but will -/// not be empty as long as count is not 0. -@property (nonatomic, readonly) NSArray *exceptions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param count (no description). -/// @param exceptions A truncated list of some of the content that is an -/// exception. The length of this list could be smaller than the count since it -/// is only a sample but will not be empty as long as count is not 0. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCount:(NSNumber *)count - exceptions:(NSArray *)exceptions; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AudienceExceptions` struct. -/// -@interface DBSHARINGAudienceExceptionsSerializer : NSObject - -/// -/// Serializes `DBSHARINGAudienceExceptions` instances. -/// -/// @param instance An instance of the `DBSHARINGAudienceExceptions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAudienceExceptions *)instance; - -/// -/// Deserializes `DBSHARINGAudienceExceptions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAudienceExceptions` API object. -/// -/// @return An instantiation of the `DBSHARINGAudienceExceptions` object. -/// -+ (DBSHARINGAudienceExceptions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceRestrictingSharedFolder.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceRestrictingSharedFolder.h deleted file mode 100644 index 98e6f5bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGAudienceRestrictingSharedFolder.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGLinkAudience; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AudienceRestrictingSharedFolder` struct. -/// -/// Information about the shared folder that prevents the link audience for this -/// link from being more restrictive. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGAudienceRestrictingSharedFolder : NSObject - -#pragma mark - Instance fields - -/// The ID of the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The name of the shared folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The link audience of the shared folder. -@property (nonatomic, readonly) DBSHARINGLinkAudience *audience; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID of the shared folder. -/// @param name The name of the shared folder. -/// @param audience The link audience of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - name:(NSString *)name - audience:(DBSHARINGLinkAudience *)audience; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AudienceRestrictingSharedFolder` struct. -/// -@interface DBSHARINGAudienceRestrictingSharedFolderSerializer : NSObject - -/// -/// Serializes `DBSHARINGAudienceRestrictingSharedFolder` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGAudienceRestrictingSharedFolder` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGAudienceRestrictingSharedFolder` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGAudienceRestrictingSharedFolder *)instance; - -/// -/// Deserializes `DBSHARINGAudienceRestrictingSharedFolder` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGAudienceRestrictingSharedFolder` API object. -/// -/// @return An instantiation of the `DBSHARINGAudienceRestrictingSharedFolder` -/// object. -/// -+ (DBSHARINGAudienceRestrictingSharedFolder *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCollectionLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCollectionLinkMetadata.h deleted file mode 100644 index b0ac963d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCollectionLinkMetadata.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGCollectionLinkMetadata; -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CollectionLinkMetadata` struct. -/// -/// Metadata for a collection-based shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCollectionLinkMetadata : DBSHARINGLinkMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param expires Expiration time, if set. By default the link won't expire. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - visibility:(DBSHARINGVisibility *)visibility - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url visibility:(DBSHARINGVisibility *)visibility; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CollectionLinkMetadata` struct. -/// -@interface DBSHARINGCollectionLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGCollectionLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGCollectionLinkMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCollectionLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCollectionLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGCollectionLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCollectionLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGCollectionLinkMetadata` object. -/// -+ (DBSHARINGCollectionLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkArg.h deleted file mode 100644 index 965a8908..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkArg.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGCreateSharedLinkArg; -@class DBSHARINGPendingUploadMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkArg : NSObject - -#pragma mark - Instance fields - -/// The path to share. -@property (nonatomic, readonly, copy) NSString *path; - -/// (no description). -@property (nonatomic, readonly) NSNumber *shortUrl; - -/// If it's okay to share a path that does not yet exist, set this to either -/// `file` in `DBSHARINGPendingUploadMode` or `folder` in -/// `DBSHARINGPendingUploadMode` to indicate whether to assume it's a file or -/// folder. -@property (nonatomic, readonly, nullable) DBSHARINGPendingUploadMode *pendingUpload; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to share. -/// @param shortUrl (no description). -/// @param pendingUpload If it's okay to share a path that does not yet exist, -/// set this to either `file` in `DBSHARINGPendingUploadMode` or `folder` in -/// `DBSHARINGPendingUploadMode` to indicate whether to assume it's a file or -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - shortUrl:(nullable NSNumber *)shortUrl - pendingUpload:(nullable DBSHARINGPendingUploadMode *)pendingUpload; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to share. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateSharedLinkArg` struct. -/// -@interface DBSHARINGCreateSharedLinkArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkArg` instances. -/// -/// @param instance An instance of the `DBSHARINGCreateSharedLinkArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkArg *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkArg` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkArg` object. -/// -+ (DBSHARINGCreateSharedLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkError.h deleted file mode 100644 index f1ff19f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkError.h +++ /dev/null @@ -1,125 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBSHARINGCreateSharedLinkError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGCreateSharedLinkErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGCreateSharedLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGCreateSharedLinkErrorTag) { - /// (no description). - DBSHARINGCreateSharedLinkErrorPath, - - /// (no description). - DBSHARINGCreateSharedLinkErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGCreateSharedLinkErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGCreateSharedLinkError` union. -/// -@interface DBSHARINGCreateSharedLinkErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkError` instances. -/// -/// @param instance An instance of the `DBSHARINGCreateSharedLinkError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkError *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkError` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkError` object. -/// -+ (DBSHARINGCreateSharedLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkWithSettingsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkWithSettingsArg.h deleted file mode 100644 index 16e7468f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkWithSettingsArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGCreateSharedLinkWithSettingsArg; -@class DBSHARINGSharedLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkWithSettingsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsArg : NSObject - -#pragma mark - Instance fields - -/// The path to be shared by the shared link. -@property (nonatomic, readonly, copy) NSString *path; - -/// The requested settings for the newly created shared link. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkSettings *settings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path to be shared by the shared link. -/// @param settings The requested settings for the newly created shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path settings:(nullable DBSHARINGSharedLinkSettings *)settings; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path to be shared by the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateSharedLinkWithSettingsArg` struct. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkWithSettingsArg` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGCreateSharedLinkWithSettingsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkWithSettingsArg *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkWithSettingsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsArg` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkWithSettingsArg` -/// object. -/// -+ (DBSHARINGCreateSharedLinkWithSettingsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkWithSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkWithSettingsError.h deleted file mode 100644 index 4a6c4ffe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGCreateSharedLinkWithSettingsError.h +++ /dev/null @@ -1,233 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBSHARINGCreateSharedLinkWithSettingsError; -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateSharedLinkWithSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGCreateSharedLinkWithSettingsErrorTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGCreateSharedLinkWithSettingsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGCreateSharedLinkWithSettingsErrorTag) { - /// (no description). - DBSHARINGCreateSharedLinkWithSettingsErrorPath, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGCreateSharedLinkWithSettingsErrorEmailNotVerified, - - /// The shared link already exists. You can call `listSharedLinks` to get - /// the existing link, or use the provided metadata if it is returned. - DBSHARINGCreateSharedLinkWithSettingsErrorSharedLinkAlreadyExists, - - /// There is an error with the given settings. - DBSHARINGCreateSharedLinkWithSettingsErrorSettingsError, - - /// The user is not allowed to create a shared link to the specified file. - /// For example, this can occur if the file is restricted or if the user's - /// links are banned - /// https://help.dropbox.com/files-folders/share/banned-links. - DBSHARINGCreateSharedLinkWithSettingsErrorAccessDenied, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGCreateSharedLinkWithSettingsErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -/// The shared link already exists. You can call `listSharedLinks` to get the -/// existing link, or use the provided metadata if it is returned. @note Ensure -/// the `isSharedLinkAlreadyExists` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkAlreadyExistsMetadata *sharedLinkAlreadyExists; - -/// There is an error with the given settings. @note Ensure the -/// `isSettingsError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettingsError *settingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "email_not_verified". -/// -/// Description of the "email_not_verified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailNotVerified; - -/// -/// Initializes union class with tag state of "shared_link_already_exists". -/// -/// Description of the "shared_link_already_exists" tag state: The shared link -/// already exists. You can call `listSharedLinks` to get the existing link, or -/// use the provided metadata if it is returned. -/// -/// @param sharedLinkAlreadyExists The shared link already exists. You can call -/// `listSharedLinks` to get the existing link, or use the provided metadata if -/// it is returned. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAlreadyExists: - (nullable DBSHARINGSharedLinkAlreadyExistsMetadata *)sharedLinkAlreadyExists; - -/// -/// Initializes union class with tag state of "settings_error". -/// -/// Description of the "settings_error" tag state: There is an error with the -/// given settings. -/// -/// @param settingsError There is an error with the given settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSettingsError:(DBSHARINGSharedLinkSettingsError *)settingsError; - -/// -/// Initializes union class with tag state of "access_denied". -/// -/// Description of the "access_denied" tag state: The user is not allowed to -/// create a shared link to the specified file. For example, this can occur if -/// the file is restricted or if the user's links are banned -/// https://help.dropbox.com/files-folders/share/banned-links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessDenied; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "email_not_verified". -/// -- (BOOL)isEmailNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_already_exists". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkAlreadyExists` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_already_exists". -/// -- (BOOL)isSharedLinkAlreadyExists; - -/// -/// Retrieves whether the union's current tag state has value "settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `settingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "settings_error". -/// -- (BOOL)isSettingsError; - -/// -/// Retrieves whether the union's current tag state has value "access_denied". -/// -/// @return Whether the union's current tag state has value "access_denied". -/// -- (BOOL)isAccessDenied; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGCreateSharedLinkWithSettingsError` -/// union. -/// -@interface DBSHARINGCreateSharedLinkWithSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGCreateSharedLinkWithSettingsError` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGCreateSharedLinkWithSettingsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGCreateSharedLinkWithSettingsError *)instance; - -/// -/// Deserializes `DBSHARINGCreateSharedLinkWithSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGCreateSharedLinkWithSettingsError` API object. -/// -/// @return An instantiation of the `DBSHARINGCreateSharedLinkWithSettingsError` -/// object. -/// -+ (DBSHARINGCreateSharedLinkWithSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGExpectedSharedContentLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGExpectedSharedContentLinkMetadata.h deleted file mode 100644 index 79428ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGExpectedSharedContentLinkMetadata.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedContentLinkMetadataBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkPermission; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExpectedSharedContentLinkMetadata` struct. -/// -/// The expected metadata of a shared link for a file or folder when a link is -/// first created for the content. Absent if the link already exists. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGExpectedSharedContentLinkMetadata - : DBSHARINGSharedContentLinkMetadataBase - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param accessLevel The access level on the link for this file. -/// @param audienceRestrictingSharedFolder The shared folder that prevents the -/// link audience for this link from being more restrictive. -/// @param expiry Whether the link has an expiry set on it. A link with an -/// expiry will have its audience changed to members when the expiry is -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audienceRestrictingSharedFolder: - (nullable DBSHARINGAudienceRestrictingSharedFolder *)audienceRestrictingSharedFolder - expiry:(nullable NSDate *)expiry; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExpectedSharedContentLinkMetadata` struct. -/// -@interface DBSHARINGExpectedSharedContentLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGExpectedSharedContentLinkMetadata` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGExpectedSharedContentLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGExpectedSharedContentLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGExpectedSharedContentLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGExpectedSharedContentLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGExpectedSharedContentLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGExpectedSharedContentLinkMetadata` -/// object. -/// -+ (DBSHARINGExpectedSharedContentLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileAction.h deleted file mode 100644 index ec2f578a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileAction.h +++ /dev/null @@ -1,349 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAction` union. -/// -/// Sharing actions that may be taken on files. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGFileAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileActionTag) { - /// Disable viewer information on the file. - DBSHARINGFileActionDisableViewerInfo, - - /// Change or edit contents of the file. - DBSHARINGFileActionEditContents, - - /// Enable viewer information on the file. - DBSHARINGFileActionEnableViewerInfo, - - /// Add a member with view permissions. - DBSHARINGFileActionInviteViewer, - - /// Add a member with view permissions but no comment permissions. - DBSHARINGFileActionInviteViewerNoComment, - - /// Add a member with edit permissions. - DBSHARINGFileActionInviteEditor, - - /// Stop sharing this file. - DBSHARINGFileActionUnshare, - - /// Relinquish one's own membership to the file. - DBSHARINGFileActionRelinquishMembership, - - /// Use create_view_link and create_edit_link instead. - DBSHARINGFileActionShareLink, - - /// Use create_view_link and create_edit_link instead. - DBSHARINGFileActionCreateLink, - - /// Create a shared link to a file that only allows users to view the - /// content. - DBSHARINGFileActionCreateViewLink, - - /// Create a shared link to a file that allows users to edit the content. - DBSHARINGFileActionCreateEditLink, - - /// (no description). - DBSHARINGFileActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disable_viewer_info". -/// -/// Description of the "disable_viewer_info" tag state: Disable viewer -/// information on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisableViewerInfo; - -/// -/// Initializes union class with tag state of "edit_contents". -/// -/// Description of the "edit_contents" tag state: Change or edit contents of the -/// file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditContents; - -/// -/// Initializes union class with tag state of "enable_viewer_info". -/// -/// Description of the "enable_viewer_info" tag state: Enable viewer information -/// on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnableViewerInfo; - -/// -/// Initializes union class with tag state of "invite_viewer". -/// -/// Description of the "invite_viewer" tag state: Add a member with view -/// permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewer; - -/// -/// Initializes union class with tag state of "invite_viewer_no_comment". -/// -/// Description of the "invite_viewer_no_comment" tag state: Add a member with -/// view permissions but no comment permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewerNoComment; - -/// -/// Initializes union class with tag state of "invite_editor". -/// -/// Description of the "invite_editor" tag state: Add a member with edit -/// permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteEditor; - -/// -/// Initializes union class with tag state of "unshare". -/// -/// Description of the "unshare" tag state: Stop sharing this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnshare; - -/// -/// Initializes union class with tag state of "relinquish_membership". -/// -/// Description of the "relinquish_membership" tag state: Relinquish one's own -/// membership to the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelinquishMembership; - -/// -/// Initializes union class with tag state of "share_link". -/// -/// Description of the "share_link" tag state: Use create_view_link and -/// create_edit_link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShareLink; - -/// -/// Initializes union class with tag state of "create_link". -/// -/// Description of the "create_link" tag state: Use create_view_link and -/// create_edit_link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateLink; - -/// -/// Initializes union class with tag state of "create_view_link". -/// -/// Description of the "create_view_link" tag state: Create a shared link to a -/// file that only allows users to view the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateViewLink; - -/// -/// Initializes union class with tag state of "create_edit_link". -/// -/// Description of the "create_edit_link" tag state: Create a shared link to a -/// file that allows users to edit the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateEditLink; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "disable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "disable_viewer_info". -/// -- (BOOL)isDisableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "edit_contents". -/// -/// @return Whether the union's current tag state has value "edit_contents". -/// -- (BOOL)isEditContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "enable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "enable_viewer_info". -/// -- (BOOL)isEnableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "invite_viewer". -/// -/// @return Whether the union's current tag state has value "invite_viewer". -/// -- (BOOL)isInviteViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -/// @return Whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -- (BOOL)isInviteViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value "invite_editor". -/// -/// @return Whether the union's current tag state has value "invite_editor". -/// -- (BOOL)isInviteEditor; - -/// -/// Retrieves whether the union's current tag state has value "unshare". -/// -/// @return Whether the union's current tag state has value "unshare". -/// -- (BOOL)isUnshare; - -/// -/// Retrieves whether the union's current tag state has value -/// "relinquish_membership". -/// -/// @return Whether the union's current tag state has value -/// "relinquish_membership". -/// -- (BOOL)isRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value "share_link". -/// -/// @return Whether the union's current tag state has value "share_link". -/// -- (BOOL)isShareLink; - -/// -/// Retrieves whether the union's current tag state has value "create_link". -/// -/// @return Whether the union's current tag state has value "create_link". -/// -- (BOOL)isCreateLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_view_link". -/// -/// @return Whether the union's current tag state has value "create_view_link". -/// -- (BOOL)isCreateViewLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_edit_link". -/// -/// @return Whether the union's current tag state has value "create_edit_link". -/// -- (BOOL)isCreateEditLink; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileAction` union. -/// -@interface DBSHARINGFileActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileAction` instances. -/// -/// @param instance An instance of the `DBSHARINGFileAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileAction *)instance; - -/// -/// Deserializes `DBSHARINGFileAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileAction` API object. -/// -/// @return An instantiation of the `DBSHARINGFileAction` object. -/// -+ (DBSHARINGFileAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileErrorResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileErrorResult.h deleted file mode 100644 index 22d580f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileErrorResult.h +++ /dev/null @@ -1,197 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileErrorResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileErrorResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileErrorResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileErrorResultTag` enum type represents the possible tag -/// states with which the `DBSHARINGFileErrorResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileErrorResultTag) { - /// File specified by id was not found. - DBSHARINGFileErrorResultFileNotFoundError, - - /// User does not have permission to take the specified action on the file. - DBSHARINGFileErrorResultInvalidFileActionError, - - /// User does not have permission to access file specified by file.Id. - DBSHARINGFileErrorResultPermissionDeniedError, - - /// (no description). - DBSHARINGFileErrorResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileErrorResultTag tag; - -/// File specified by id was not found. @note Ensure the `isFileNotFoundError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *fileNotFoundError; - -/// User does not have permission to take the specified action on the file. -/// @note Ensure the `isInvalidFileActionError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *invalidFileActionError; - -/// User does not have permission to access file specified by file.Id. @note -/// Ensure the `isPermissionDeniedError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *permissionDeniedError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file_not_found_error". -/// -/// Description of the "file_not_found_error" tag state: File specified by id -/// was not found. -/// -/// @param fileNotFoundError File specified by id was not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileNotFoundError:(NSString *)fileNotFoundError; - -/// -/// Initializes union class with tag state of "invalid_file_action_error". -/// -/// Description of the "invalid_file_action_error" tag state: User does not have -/// permission to take the specified action on the file. -/// -/// @param invalidFileActionError User does not have permission to take the -/// specified action on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFileActionError:(NSString *)invalidFileActionError; - -/// -/// Initializes union class with tag state of "permission_denied_error". -/// -/// Description of the "permission_denied_error" tag state: User does not have -/// permission to access file specified by file.Id. -/// -/// @param permissionDeniedError User does not have permission to access file -/// specified by file.Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDeniedError:(NSString *)permissionDeniedError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "file_not_found_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileNotFoundError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_not_found_error". -/// -- (BOOL)isFileNotFoundError; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_file_action_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidFileActionError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "invalid_file_action_error". -/// -- (BOOL)isInvalidFileActionError; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `permissionDeniedError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "permission_denied_error". -/// -- (BOOL)isPermissionDeniedError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileErrorResult` union. -/// -@interface DBSHARINGFileErrorResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileErrorResult` instances. -/// -/// @param instance An instance of the `DBSHARINGFileErrorResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileErrorResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileErrorResult *)instance; - -/// -/// Deserializes `DBSHARINGFileErrorResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileErrorResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileErrorResult` object. -/// -+ (DBSHARINGFileErrorResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileLinkMetadata.h deleted file mode 100644 index cb0eaa01..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileLinkMetadata.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileLinkMetadata; -@class DBSHARINGLinkPermissions; -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLinkMetadata` struct. -/// -/// The metadata of a file shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileLinkMetadata : DBSHARINGSharedLinkMetadata - -#pragma mark - Instance fields - -/// The modification time set by the desktop client when the file was added to -/// Dropbox. Since this time is not verified (the Dropbox server stores whatever -/// the desktop client sends up), this should only be used for display purposes -/// (such as sorting) and not, for example, to determine if a file has changed -/// or not. -@property (nonatomic, readonly) NSDate *clientModified; - -/// The last time the file was modified on Dropbox. -@property (nonatomic, readonly) NSDate *serverModified; - -/// A unique identifier for the current revision of a file. This field is the -/// same rev as elsewhere in the API and can be used to detect changes and avoid -/// conflicts. -@property (nonatomic, readonly, copy) NSString *rev; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param clientModified The modification time set by the desktop client when -/// the file was added to Dropbox. Since this time is not verified (the Dropbox -/// server stores whatever the desktop client sends up), this should only be -/// used for display purposes (such as sorting) and not, for example, to -/// determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// @param id_ A unique identifier for the linked file. -/// @param expires Expiration time, if set. By default the link won't expire. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will only be present only if the linked file -/// is in the authenticated user's dropbox. -/// @param teamMemberInfo The team membership information of the link's owner. -/// This field will only be present if the link's owner is a team member. -/// @param contentOwnerTeamInfo The team information of the content's owner. -/// This field will only be present if the content's owner is a team member and -/// the content's owner team is different from the link's owner team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size - id_:(nullable NSString *)id_ - expires:(nullable NSDate *)expires - pathLower:(nullable NSString *)pathLower - teamMemberInfo:(nullable DBSHARINGTeamMemberInfo *)teamMemberInfo - contentOwnerTeamInfo:(nullable DBUSERSTeam *)contentOwnerTeamInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param clientModified The modification time set by the desktop client when -/// the file was added to Dropbox. Since this time is not verified (the Dropbox -/// server stores whatever the desktop client sends up), this should only be -/// used for display purposes (such as sorting) and not, for example, to -/// determine if a file has changed or not. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param rev A unique identifier for the current revision of a file. This -/// field is the same rev as elsewhere in the API and can be used to detect -/// changes and avoid conflicts. -/// @param size The file size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - clientModified:(NSDate *)clientModified - serverModified:(NSDate *)serverModified - rev:(NSString *)rev - size:(NSNumber *)size; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLinkMetadata` struct. -/// -@interface DBSHARINGFileLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGFileLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGFileLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGFileLinkMetadata` object. -/// -+ (DBSHARINGFileLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionError.h deleted file mode 100644 index 6dcf1df5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionError.h +++ /dev/null @@ -1,210 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileMemberActionError; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberActionError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberActionError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileMemberActionErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGFileMemberActionError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileMemberActionErrorTag) { - /// Specified member was not found. - DBSHARINGFileMemberActionErrorInvalidMember, - - /// User does not have permission to perform this action on this member. - DBSHARINGFileMemberActionErrorNoPermission, - - /// Specified file was invalid or user does not have access. - DBSHARINGFileMemberActionErrorAccessError, - - /// The action cannot be completed because the target member does not have - /// explicit access to the file. The return value is the access that the - /// member has to the file from a parent folder. - DBSHARINGFileMemberActionErrorNoExplicitAccess, - - /// (no description). - DBSHARINGFileMemberActionErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileMemberActionErrorTag tag; - -/// Specified file was invalid or user does not have access. @note Ensure the -/// `isAccessError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -/// The action cannot be completed because the target member does not have -/// explicit access to the file. The return value is the access that the member -/// has to the file from a parent folder. @note Ensure the `isNoExplicitAccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_member". -/// -/// Description of the "invalid_member" tag state: Specified member was not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMember; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: User does not have permission -/// to perform this action on this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: Specified file was invalid or -/// user does not have access. -/// -/// @param accessError Specified file was invalid or user does not have access. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: The action cannot be -/// completed because the target member does not have explicit access to the -/// file. The return value is the access that the member has to the file from a -/// parent folder. -/// -/// @param noExplicitAccess The action cannot be completed because the target -/// member does not have explicit access to the file. The return value is the -/// access that the member has to the file from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGMemberAccessLevelResult *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_member". -/// -/// @return Whether the union's current tag state has value "invalid_member". -/// -- (BOOL)isInvalidMember; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileMemberActionError` union. -/// -@interface DBSHARINGFileMemberActionErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberActionError` instances. -/// -/// @param instance An instance of the `DBSHARINGFileMemberActionError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberActionError *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberActionError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionError` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberActionError` object. -/// -+ (DBSHARINGFileMemberActionError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionIndividualResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionIndividualResult.h deleted file mode 100644 index b47861b2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionIndividualResult.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberActionIndividualResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberActionIndividualResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberActionIndividualResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileMemberActionIndividualResultTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGFileMemberActionIndividualResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileMemberActionIndividualResultTag) { - /// Part of the response for both add_file_member and remove_file_member_v1 - /// (deprecated). For add_file_member, indicates giving access was - /// successful and at what AccessLevel. For remove_file_member_v1, indicates - /// member was successfully removed from the file. If AccessLevel is given, - /// the member still has access via a parent shared folder. - DBSHARINGFileMemberActionIndividualResultSuccess, - - /// User was not able to perform this action. - DBSHARINGFileMemberActionIndividualResultMemberError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileMemberActionIndividualResultTag tag; - -/// Part of the response for both add_file_member and remove_file_member_v1 -/// (deprecated). For add_file_member, indicates giving access was successful -/// and at what AccessLevel. For remove_file_member_v1, indicates member was -/// successfully removed from the file. If AccessLevel is given, the member -/// still has access via a parent shared folder. @note Ensure the `isSuccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *success; - -/// User was not able to perform this action. @note Ensure the `isMemberError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGFileMemberActionError *memberError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Part of the response for both -/// add_file_member and remove_file_member_v1 (deprecated). For add_file_member, -/// indicates giving access was successful and at what AccessLevel. For -/// remove_file_member_v1, indicates member was successfully removed from the -/// file. If AccessLevel is given, the member still has access via a parent -/// shared folder. -/// -/// @param success Part of the response for both add_file_member and -/// remove_file_member_v1 (deprecated). For add_file_member, indicates giving -/// access was successful and at what AccessLevel. For remove_file_member_v1, -/// indicates member was successfully removed from the file. If AccessLevel is -/// given, the member still has access via a parent shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(nullable DBSHARINGAccessLevel *)success; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// Description of the "member_error" tag state: User was not able to perform -/// this action. -/// -/// @param memberError User was not able to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGFileMemberActionError *)memberError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileMemberActionIndividualResult` -/// union. -/// -@interface DBSHARINGFileMemberActionIndividualResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberActionIndividualResult` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGFileMemberActionIndividualResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionIndividualResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberActionIndividualResult *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberActionIndividualResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionIndividualResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberActionIndividualResult` -/// object. -/// -+ (DBSHARINGFileMemberActionIndividualResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionResult.h deleted file mode 100644 index 578d30f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberActionResult.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileMemberActionIndividualResult; -@class DBSHARINGFileMemberActionResult; -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberActionResult` struct. -/// -/// Per-member result for `addFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberActionResult : NSObject - -#pragma mark - Instance fields - -/// One of specified input members. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The outcome of the action on this member. -@property (nonatomic, readonly) DBSHARINGFileMemberActionIndividualResult *result; - -/// The SHA-1 encrypted shared content key. -@property (nonatomic, readonly, copy, nullable) NSString *sckeySha1; - -/// The sharing sender-recipient invitation signatures for the input member_id. -/// A member_id can be a group and thus have multiple users and multiple -/// invitation signatures. -@property (nonatomic, readonly, nullable) NSArray *invitationSignature; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param member One of specified input members. -/// @param result The outcome of the action on this member. -/// @param sckeySha1 The SHA-1 encrypted shared content key. -/// @param invitationSignature The sharing sender-recipient invitation -/// signatures for the input member_id. A member_id can be a group and thus have -/// multiple users and multiple invitation signatures. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - result:(DBSHARINGFileMemberActionIndividualResult *)result - sckeySha1:(nullable NSString *)sckeySha1 - invitationSignature:(nullable NSArray *)invitationSignature; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param member One of specified input members. -/// @param result The outcome of the action on this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember:(DBSHARINGMemberSelector *)member - result:(DBSHARINGFileMemberActionIndividualResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMemberActionResult` struct. -/// -@interface DBSHARINGFileMemberActionResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberActionResult` instances. -/// -/// @param instance An instance of the `DBSHARINGFileMemberActionResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberActionResult *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberActionResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberActionResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberActionResult` object. -/// -+ (DBSHARINGFileMemberActionResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberRemoveActionResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberRemoveActionResult.h deleted file mode 100644 index a726cbe2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFileMemberRemoveActionResult.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberRemoveActionResult; -@class DBSHARINGMemberAccessLevelResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMemberRemoveActionResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFileMemberRemoveActionResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFileMemberRemoveActionResultTag` enum type represents the -/// possible tag states with which the `DBSHARINGFileMemberRemoveActionResult` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFileMemberRemoveActionResultTag) { - /// Member was successfully removed from this file. - DBSHARINGFileMemberRemoveActionResultSuccess, - - /// User was not able to remove this member. - DBSHARINGFileMemberRemoveActionResultMemberError, - - /// (no description). - DBSHARINGFileMemberRemoveActionResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFileMemberRemoveActionResultTag tag; - -/// Member was successfully removed from this file. @note Ensure the `isSuccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *success; - -/// User was not able to remove this member. @note Ensure the `isMemberError` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGFileMemberActionError *memberError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Member was successfully removed from -/// this file. -/// -/// @param success Member was successfully removed from this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBSHARINGMemberAccessLevelResult *)success; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// Description of the "member_error" tag state: User was not able to remove -/// this member. -/// -/// @param memberError User was not able to remove this member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGFileMemberActionError *)memberError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFileMemberRemoveActionResult` -/// union. -/// -@interface DBSHARINGFileMemberRemoveActionResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGFileMemberRemoveActionResult` instances. -/// -/// @param instance An instance of the `DBSHARINGFileMemberRemoveActionResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberRemoveActionResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFileMemberRemoveActionResult *)instance; - -/// -/// Deserializes `DBSHARINGFileMemberRemoveActionResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFileMemberRemoveActionResult` API object. -/// -/// @return An instantiation of the `DBSHARINGFileMemberRemoveActionResult` -/// object. -/// -+ (DBSHARINGFileMemberRemoveActionResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFilePermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFilePermission.h deleted file mode 100644 index 4eec58dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFilePermission.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGFilePermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePermission` struct. -/// -/// Whether the user is allowed to take the sharing action on the file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFilePermission : NSObject - -#pragma mark - Instance fields - -/// The action that the user may wish to take on the file. -@property (nonatomic, readonly) DBSHARINGFileAction *action; - -/// True if the user is allowed to take the action. -@property (nonatomic, readonly) NSNumber *allow; - -/// The reason why the user is denied the permission. Not present if the action -/// is allowed. -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The action that the user may wish to take on the file. -/// @param allow True if the user is allowed to take the action. -/// @param reason The reason why the user is denied the permission. Not present -/// if the action is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFileAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action The action that the user may wish to take on the file. -/// @param allow True if the user is allowed to take the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFileAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePermission` struct. -/// -@interface DBSHARINGFilePermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFilePermission` instances. -/// -/// @param instance An instance of the `DBSHARINGFilePermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFilePermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFilePermission *)instance; - -/// -/// Deserializes `DBSHARINGFilePermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFilePermission` API object. -/// -/// @return An instantiation of the `DBSHARINGFilePermission` object. -/// -+ (DBSHARINGFilePermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderAction.h deleted file mode 100644 index 613bf469..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderAction.h +++ /dev/null @@ -1,388 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderAction` union. -/// -/// Actions that may be taken on shared folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGFolderActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGFolderAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGFolderActionTag) { - /// Change folder options, such as who can be invited to join the folder. - DBSHARINGFolderActionChangeOptions, - - /// Disable viewer information for this folder. - DBSHARINGFolderActionDisableViewerInfo, - - /// Change or edit contents of the folder. - DBSHARINGFolderActionEditContents, - - /// Enable viewer information on the folder. - DBSHARINGFolderActionEnableViewerInfo, - - /// Invite a user or group to join the folder with read and write - /// permission. - DBSHARINGFolderActionInviteEditor, - - /// Invite a user or group to join the folder with read permission. - DBSHARINGFolderActionInviteViewer, - - /// Invite a user or group to join the folder with read permission but no - /// comment permissions. - DBSHARINGFolderActionInviteViewerNoComment, - - /// Relinquish one's own membership in the folder. - DBSHARINGFolderActionRelinquishMembership, - - /// Unmount the folder. - DBSHARINGFolderActionUnmount, - - /// Stop sharing this folder. - DBSHARINGFolderActionUnshare, - - /// Keep a copy of the contents upon leaving or being kicked from the - /// folder. - DBSHARINGFolderActionLeaveACopy, - - /// Use create_link instead. - DBSHARINGFolderActionShareLink, - - /// Create a shared link for folder. - DBSHARINGFolderActionCreateLink, - - /// Set whether the folder inherits permissions from its parent. - DBSHARINGFolderActionSetAccessInheritance, - - /// (no description). - DBSHARINGFolderActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGFolderActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "change_options". -/// -/// Description of the "change_options" tag state: Change folder options, such -/// as who can be invited to join the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangeOptions; - -/// -/// Initializes union class with tag state of "disable_viewer_info". -/// -/// Description of the "disable_viewer_info" tag state: Disable viewer -/// information for this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisableViewerInfo; - -/// -/// Initializes union class with tag state of "edit_contents". -/// -/// Description of the "edit_contents" tag state: Change or edit contents of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditContents; - -/// -/// Initializes union class with tag state of "enable_viewer_info". -/// -/// Description of the "enable_viewer_info" tag state: Enable viewer information -/// on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnableViewerInfo; - -/// -/// Initializes union class with tag state of "invite_editor". -/// -/// Description of the "invite_editor" tag state: Invite a user or group to join -/// the folder with read and write permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteEditor; - -/// -/// Initializes union class with tag state of "invite_viewer". -/// -/// Description of the "invite_viewer" tag state: Invite a user or group to join -/// the folder with read permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewer; - -/// -/// Initializes union class with tag state of "invite_viewer_no_comment". -/// -/// Description of the "invite_viewer_no_comment" tag state: Invite a user or -/// group to join the folder with read permission but no comment permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteViewerNoComment; - -/// -/// Initializes union class with tag state of "relinquish_membership". -/// -/// Description of the "relinquish_membership" tag state: Relinquish one's own -/// membership in the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelinquishMembership; - -/// -/// Initializes union class with tag state of "unmount". -/// -/// Description of the "unmount" tag state: Unmount the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnmount; - -/// -/// Initializes union class with tag state of "unshare". -/// -/// Description of the "unshare" tag state: Stop sharing this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnshare; - -/// -/// Initializes union class with tag state of "leave_a_copy". -/// -/// Description of the "leave_a_copy" tag state: Keep a copy of the contents -/// upon leaving or being kicked from the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLeaveACopy; - -/// -/// Initializes union class with tag state of "share_link". -/// -/// Description of the "share_link" tag state: Use create_link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShareLink; - -/// -/// Initializes union class with tag state of "create_link". -/// -/// Description of the "create_link" tag state: Create a shared link for folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateLink; - -/// -/// Initializes union class with tag state of "set_access_inheritance". -/// -/// Description of the "set_access_inheritance" tag state: Set whether the -/// folder inherits permissions from its parent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetAccessInheritance; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "change_options". -/// -/// @return Whether the union's current tag state has value "change_options". -/// -- (BOOL)isChangeOptions; - -/// -/// Retrieves whether the union's current tag state has value -/// "disable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "disable_viewer_info". -/// -- (BOOL)isDisableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "edit_contents". -/// -/// @return Whether the union's current tag state has value "edit_contents". -/// -- (BOOL)isEditContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "enable_viewer_info". -/// -/// @return Whether the union's current tag state has value -/// "enable_viewer_info". -/// -- (BOOL)isEnableViewerInfo; - -/// -/// Retrieves whether the union's current tag state has value "invite_editor". -/// -/// @return Whether the union's current tag state has value "invite_editor". -/// -- (BOOL)isInviteEditor; - -/// -/// Retrieves whether the union's current tag state has value "invite_viewer". -/// -/// @return Whether the union's current tag state has value "invite_viewer". -/// -- (BOOL)isInviteViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -/// @return Whether the union's current tag state has value -/// "invite_viewer_no_comment". -/// -- (BOOL)isInviteViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "relinquish_membership". -/// -/// @return Whether the union's current tag state has value -/// "relinquish_membership". -/// -- (BOOL)isRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value "unmount". -/// -/// @return Whether the union's current tag state has value "unmount". -/// -- (BOOL)isUnmount; - -/// -/// Retrieves whether the union's current tag state has value "unshare". -/// -/// @return Whether the union's current tag state has value "unshare". -/// -- (BOOL)isUnshare; - -/// -/// Retrieves whether the union's current tag state has value "leave_a_copy". -/// -/// @return Whether the union's current tag state has value "leave_a_copy". -/// -- (BOOL)isLeaveACopy; - -/// -/// Retrieves whether the union's current tag state has value "share_link". -/// -/// @return Whether the union's current tag state has value "share_link". -/// -- (BOOL)isShareLink; - -/// -/// Retrieves whether the union's current tag state has value "create_link". -/// -/// @return Whether the union's current tag state has value "create_link". -/// -- (BOOL)isCreateLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_access_inheritance". -/// -/// @return Whether the union's current tag state has value -/// "set_access_inheritance". -/// -- (BOOL)isSetAccessInheritance; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGFolderAction` union. -/// -@interface DBSHARINGFolderActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderAction` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderAction *)instance; - -/// -/// Deserializes `DBSHARINGFolderAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderAction` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderAction` object. -/// -+ (DBSHARINGFolderAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderLinkMetadata.h deleted file mode 100644 index 063e48dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderLinkMetadata.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderLinkMetadata; -@class DBSHARINGLinkPermissions; -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkMetadata` struct. -/// -/// The metadata of a folder shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderLinkMetadata : DBSHARINGSharedLinkMetadata - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param id_ A unique identifier for the linked file. -/// @param expires Expiration time, if set. By default the link won't expire. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will only be present only if the linked file -/// is in the authenticated user's dropbox. -/// @param teamMemberInfo The team membership information of the link's owner. -/// This field will only be present if the link's owner is a team member. -/// @param contentOwnerTeamInfo The team information of the content's owner. -/// This field will only be present if the content's owner is a team member and -/// the content's owner team is different from the link's owner team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - id_:(nullable NSString *)id_ - expires:(nullable NSDate *)expires - pathLower:(nullable NSString *)pathLower - teamMemberInfo:(nullable DBSHARINGTeamMemberInfo *)teamMemberInfo - contentOwnerTeamInfo:(nullable DBUSERSTeam *)contentOwnerTeamInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLinkMetadata` struct. -/// -@interface DBSHARINGFolderLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGFolderLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderLinkMetadata` object. -/// -+ (DBSHARINGFolderLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderPermission.h deleted file mode 100644 index d4e83182..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderPermission.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; -@class DBSHARINGFolderPermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderPermission` struct. -/// -/// Whether the user is allowed to take the action on the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderPermission : NSObject - -#pragma mark - Instance fields - -/// The action that the user may wish to take on the folder. -@property (nonatomic, readonly) DBSHARINGFolderAction *action; - -/// True if the user is allowed to take the action. -@property (nonatomic, readonly) NSNumber *allow; - -/// The reason why the user is denied the permission. Not present if the action -/// is allowed, or if no reason is available. -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The action that the user may wish to take on the folder. -/// @param allow True if the user is allowed to take the action. -/// @param reason The reason why the user is denied the permission. Not present -/// if the action is allowed, or if no reason is available. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFolderAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action The action that the user may wish to take on the folder. -/// @param allow True if the user is allowed to take the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGFolderAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderPermission` struct. -/// -@interface DBSHARINGFolderPermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderPermission` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderPermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderPermission *)instance; - -/// -/// Deserializes `DBSHARINGFolderPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderPermission` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderPermission` object. -/// -+ (DBSHARINGFolderPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderPolicy.h deleted file mode 100644 index 6a82ff1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGFolderPolicy.h +++ /dev/null @@ -1,128 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGFolderPolicy; -@class DBSHARINGMemberPolicy; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderPolicy` struct. -/// -/// A set of policies governing membership and privileges for a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGFolderPolicy : NSObject - -#pragma mark - Instance fields - -/// Who can be a member of this shared folder, as set on the folder itself. The -/// effective policy may differ from this value if the team-wide policy is more -/// restrictive. Present only if the folder is owned by a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *memberPolicy; - -/// Who can be a member of this shared folder, taking into account both the -/// folder and the team-wide policy. This value may differ from that of -/// member_policy if the team-wide policy is more restrictive than the folder -/// policy. Present only if the folder is owned by a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *resolvedMemberPolicy; - -/// Who can add and remove members from this shared folder. -@property (nonatomic, readonly) DBSHARINGAclUpdatePolicy *aclUpdatePolicy; - -/// Who links can be shared with. -@property (nonatomic, readonly) DBSHARINGSharedLinkPolicy *sharedLinkPolicy; - -/// Who can enable/disable viewer info for this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *viewerInfoPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param aclUpdatePolicy Who can add and remove members from this shared -/// folder. -/// @param sharedLinkPolicy Who links can be shared with. -/// @param memberPolicy Who can be a member of this shared folder, as set on the -/// folder itself. The effective policy may differ from this value if the -/// team-wide policy is more restrictive. Present only if the folder is owned by -/// a team. -/// @param resolvedMemberPolicy Who can be a member of this shared folder, -/// taking into account both the folder and the team-wide policy. This value may -/// differ from that of member_policy if the team-wide policy is more -/// restrictive than the folder policy. Present only if the folder is owned by a -/// team. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAclUpdatePolicy:(DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - sharedLinkPolicy:(DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - resolvedMemberPolicy:(nullable DBSHARINGMemberPolicy *)resolvedMemberPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param aclUpdatePolicy Who can add and remove members from this shared -/// folder. -/// @param sharedLinkPolicy Who links can be shared with. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAclUpdatePolicy:(DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - sharedLinkPolicy:(DBSHARINGSharedLinkPolicy *)sharedLinkPolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderPolicy` struct. -/// -@interface DBSHARINGFolderPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGFolderPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGFolderPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGFolderPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGFolderPolicy *)instance; - -/// -/// Deserializes `DBSHARINGFolderPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGFolderPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGFolderPolicy` object. -/// -+ (DBSHARINGFolderPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataArg.h deleted file mode 100644 index 3f841b94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGGetFileMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataArg` struct. -/// -/// Arguments of `getFileMetadata`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataArg : NSObject - -#pragma mark - Instance fields - -/// The file to query. -@property (nonatomic, readonly, copy) NSString *file; - -/// A list of `FileAction`s corresponding to `FilePermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFileMetadata` -/// field describing the actions the authenticated user can perform on the -/// file. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The file to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s -/// that should appear in the response's `permissions` in -/// `DBSHARINGSharedFileMetadata` field describing the actions the -/// authenticated user can perform on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param file The file to query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileMetadataArg` struct. -/// -@interface DBSHARINGGetFileMetadataArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataArg *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataArg` object. -/// -+ (DBSHARINGGetFileMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataBatchArg.h deleted file mode 100644 index 179c68dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataBatchArg.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGGetFileMetadataBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataBatchArg` struct. -/// -/// Arguments of `getFileMetadataBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataBatchArg : NSObject - -#pragma mark - Instance fields - -/// The files to query. -@property (nonatomic, readonly) NSArray *files; - -/// A list of `FileAction`s corresponding to `FilePermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFileMetadata` -/// field describing the actions the authenticated user can perform on the -/// file. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param files The files to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s -/// that should appear in the response's `permissions` in -/// `DBSHARINGSharedFileMetadata` field describing the actions the -/// authenticated user can perform on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param files The files to query. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileMetadataBatchArg` struct. -/// -@interface DBSHARINGGetFileMetadataBatchArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataBatchArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataBatchArg *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataBatchArg` object. -/// -+ (DBSHARINGGetFileMetadataBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataBatchResult.h deleted file mode 100644 index 4792ce47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataBatchResult.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetFileMetadataBatchResult; -@class DBSHARINGGetFileMetadataIndividualResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataBatchResult` struct. -/// -/// Per file results of `getFileMetadataBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataBatchResult : NSObject - -#pragma mark - Instance fields - -/// This is the input file identifier corresponding to one of `files` in -/// `DBSHARINGGetFileMetadataBatchArg`. -@property (nonatomic, readonly, copy) NSString *file; - -/// The result for this particular file. -@property (nonatomic, readonly) DBSHARINGGetFileMetadataIndividualResult *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file This is the input file identifier corresponding to one of -/// `files` in `DBSHARINGGetFileMetadataBatchArg`. -/// @param result The result for this particular file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file result:(DBSHARINGGetFileMetadataIndividualResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetFileMetadataBatchResult` struct. -/// -@interface DBSHARINGGetFileMetadataBatchResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataBatchResult` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataBatchResult *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataBatchResult` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataBatchResult` -/// object. -/// -+ (DBSHARINGGetFileMetadataBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataError.h deleted file mode 100644 index cdcd43db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataError.h +++ /dev/null @@ -1,154 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetFileMetadataError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataError` union. -/// -/// Error result for `getFileMetadata`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetFileMetadataErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGGetFileMetadataError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetFileMetadataErrorTag) { - /// (no description). - DBSHARINGGetFileMetadataErrorUserError, - - /// (no description). - DBSHARINGGetFileMetadataErrorAccessError, - - /// (no description). - DBSHARINGGetFileMetadataErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetFileMetadataErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetFileMetadataError` union. -/// -@interface DBSHARINGGetFileMetadataErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataError` instances. -/// -/// @param instance An instance of the `DBSHARINGGetFileMetadataError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataError *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataError` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataError` object. -/// -+ (DBSHARINGGetFileMetadataError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataIndividualResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataIndividualResult.h deleted file mode 100644 index 1f8f5cd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetFileMetadataIndividualResult.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetFileMetadataIndividualResult; -@class DBSHARINGSharedFileMetadata; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetFileMetadataIndividualResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetFileMetadataIndividualResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetFileMetadataIndividualResultTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGGetFileMetadataIndividualResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetFileMetadataIndividualResultTag) { - /// The result for this file if it was successful. - DBSHARINGGetFileMetadataIndividualResultMetadata, - - /// The result for this file if it was an error. - DBSHARINGGetFileMetadataIndividualResultAccessError, - - /// (no description). - DBSHARINGGetFileMetadataIndividualResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetFileMetadataIndividualResultTag tag; - -/// The result for this file if it was successful. @note Ensure the `isMetadata` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGSharedFileMetadata *metadata; - -/// The result for this file if it was an error. @note Ensure the -/// `isAccessError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "metadata". -/// -/// Description of the "metadata" tag state: The result for this file if it was -/// successful. -/// -/// @param metadata The result for this file if it was successful. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBSHARINGSharedFileMetadata *)metadata; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: The result for this file if it -/// was an error. -/// -/// @param accessError The result for this file if it was an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetFileMetadataIndividualResult` -/// union. -/// -@interface DBSHARINGGetFileMetadataIndividualResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetFileMetadataIndividualResult` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGGetFileMetadataIndividualResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataIndividualResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetFileMetadataIndividualResult *)instance; - -/// -/// Deserializes `DBSHARINGGetFileMetadataIndividualResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetFileMetadataIndividualResult` API object. -/// -/// @return An instantiation of the `DBSHARINGGetFileMetadataIndividualResult` -/// object. -/// -+ (DBSHARINGGetFileMetadataIndividualResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetMetadataArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetMetadataArgs.h deleted file mode 100644 index 88ba1e38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetMetadataArgs.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; -@class DBSHARINGGetMetadataArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMetadataArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetMetadataArgs : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetMetadataArgs` struct. -/// -@interface DBSHARINGGetMetadataArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetMetadataArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGGetMetadataArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetMetadataArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetMetadataArgs *)instance; - -/// -/// Deserializes `DBSHARINGGetMetadataArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetMetadataArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGGetMetadataArgs` object. -/// -+ (DBSHARINGGetMetadataArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinkFileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinkFileError.h deleted file mode 100644 index 086eaab0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinkFileError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinkFileError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinkFileError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinkFileError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetSharedLinkFileErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGGetSharedLinkFileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetSharedLinkFileErrorTag) { - /// The shared link wasn't found. - DBSHARINGGetSharedLinkFileErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGGetSharedLinkFileErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGGetSharedLinkFileErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGGetSharedLinkFileErrorOther, - - /// Directories cannot be retrieved by this endpoint. - DBSHARINGGetSharedLinkFileErrorSharedLinkIsDirectory, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetSharedLinkFileErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "shared_link_is_directory". -/// -/// Description of the "shared_link_is_directory" tag state: Directories cannot -/// be retrieved by this endpoint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkIsDirectory; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_is_directory". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_is_directory". -/// -- (BOOL)isSharedLinkIsDirectory; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetSharedLinkFileError` union. -/// -@interface DBSHARINGGetSharedLinkFileErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinkFileError` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinkFileError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkFileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinkFileError *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinkFileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkFileError` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinkFileError` object. -/// -+ (DBSHARINGGetSharedLinkFileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinkMetadataArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinkMetadataArg.h deleted file mode 100644 index 3a762dc8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinkMetadataArg.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinkMetadataArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinkMetadataArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinkMetadataArg : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// If the shared link is to a folder, this parameter can be used to retrieve -/// the metadata for a specific file or sub-folder in this folder. A relative -/// path should be used. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// If the shared link has a password, this parameter can be used. -@property (nonatomic, readonly, copy, nullable) NSString *linkPassword; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to -/// retrieve the metadata for a specific file or sub-folder in this folder. A -/// relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be -/// used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetSharedLinkMetadataArg` struct. -/// -@interface DBSHARINGGetSharedLinkMetadataArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinkMetadataArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinkMetadataArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkMetadataArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinkMetadataArg *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinkMetadataArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinkMetadataArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinkMetadataArg` object. -/// -+ (DBSHARINGGetSharedLinkMetadataArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksArg.h deleted file mode 100644 index 651112f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinksArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinksArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinksArg : NSObject - -#pragma mark - Instance fields - -/// See `getSharedLinks` description. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path See `getSharedLinks` description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetSharedLinksArg` struct. -/// -@interface DBSHARINGGetSharedLinksArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinksArg` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinksArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinksArg *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinksArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksArg` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinksArg` object. -/// -+ (DBSHARINGGetSharedLinksArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksError.h deleted file mode 100644 index 6530f11e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinksError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinksError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinksError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGGetSharedLinksErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGGetSharedLinksError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGGetSharedLinksErrorTag) { - /// (no description). - DBSHARINGGetSharedLinksErrorPath, - - /// (no description). - DBSHARINGGetSharedLinksErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGGetSharedLinksErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGGetSharedLinksError` union. -/// -@interface DBSHARINGGetSharedLinksErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinksError` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinksError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinksError *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinksError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksError` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinksError` object. -/// -+ (DBSHARINGGetSharedLinksError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksResult.h deleted file mode 100644 index 01bec843..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGetSharedLinksResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGetSharedLinksResult; -@class DBSHARINGLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetSharedLinksResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGetSharedLinksResult : NSObject - -#pragma mark - Instance fields - -/// Shared links applicable to the path argument. -@property (nonatomic, readonly) NSArray *links; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param links Shared links applicable to the path argument. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinks:(NSArray *)links; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetSharedLinksResult` struct. -/// -@interface DBSHARINGGetSharedLinksResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGGetSharedLinksResult` instances. -/// -/// @param instance An instance of the `DBSHARINGGetSharedLinksResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGetSharedLinksResult *)instance; - -/// -/// Deserializes `DBSHARINGGetSharedLinksResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGetSharedLinksResult` API object. -/// -/// @return An instantiation of the `DBSHARINGGetSharedLinksResult` object. -/// -+ (DBSHARINGGetSharedLinksResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGroupInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGroupInfo.h deleted file mode 100644 index a439d0a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGroupInfo.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMCOMMONGroupSummary.h" - -@class DBSHARINGGroupInfo; -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMCOMMONGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupInfo` struct. -/// -/// The information about a group. Groups is a way to manage a list of users -/// who need same access permission to the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGroupInfo : DBTEAMCOMMONGroupSummary - -#pragma mark - Instance fields - -/// The type of group. -@property (nonatomic, readonly) DBTEAMCOMMONGroupType *groupType; - -/// If the current user is a member of the group. -@property (nonatomic, readonly) NSNumber *isMember; - -/// If the current user is an owner of the group. -@property (nonatomic, readonly) NSNumber *isOwner; - -/// If the group is owned by the current user's team. -@property (nonatomic, readonly) NSNumber *sameTeam; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param groupType The type of group. -/// @param isMember If the current user is a member of the group. -/// @param isOwner If the current user is an owner of the group. -/// @param sameTeam If the group is owned by the current user's team. -/// @param groupExternalId External ID of group. This is an arbitrary ID that an -/// admin can attach to a group. -/// @param memberCount The number of members in the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - groupType:(DBTEAMCOMMONGroupType *)groupType - isMember:(NSNumber *)isMember - isOwner:(NSNumber *)isOwner - sameTeam:(NSNumber *)sameTeam - groupExternalId:(nullable NSString *)groupExternalId - memberCount:(nullable NSNumber *)memberCount; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param groupType The type of group. -/// @param isMember If the current user is a member of the group. -/// @param isOwner If the current user is an owner of the group. -/// @param sameTeam If the group is owned by the current user's team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - groupType:(DBTEAMCOMMONGroupType *)groupType - isMember:(NSNumber *)isMember - isOwner:(NSNumber *)isOwner - sameTeam:(NSNumber *)sameTeam; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupInfo` struct. -/// -@interface DBSHARINGGroupInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGGroupInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGGroupInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGroupInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGroupInfo *)instance; - -/// -/// Deserializes `DBSHARINGGroupInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGroupInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGGroupInfo` object. -/// -+ (DBSHARINGGroupInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGroupMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGroupMembershipInfo.h deleted file mode 100644 index c9ff72ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGGroupMembershipInfo.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGGroupInfo; -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGMemberPermission; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembershipInfo` struct. -/// -/// The information about a group member of the shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGGroupMembershipInfo : DBSHARINGMembershipInfo - -#pragma mark - Instance fields - -/// The information about the membership group. -@property (nonatomic, readonly) DBSHARINGGroupInfo *group; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param group The information about the membership group. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - group:(DBSHARINGGroupInfo *)group - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param group The information about the membership group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType group:(DBSHARINGGroupInfo *)group; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembershipInfo` struct. -/// -@interface DBSHARINGGroupMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGGroupMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGGroupMembershipInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGGroupMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGGroupMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGGroupMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGGroupMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGGroupMembershipInfo` object. -/// -+ (DBSHARINGGroupMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInsufficientPlan.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInsufficientPlan.h deleted file mode 100644 index b2b03eec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInsufficientPlan.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientPlan; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InsufficientPlan` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInsufficientPlan : NSObject - -#pragma mark - Instance fields - -/// A message to tell the user to upgrade in order to support expected action. -@property (nonatomic, readonly, copy) NSString *message; - -/// A URL to send the user to in order to obtain the account type they need, -/// e.g. upgrading. Absent if there is no action the user can take to upgrade. -@property (nonatomic, readonly, copy, nullable) NSString *upsellUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param message A message to tell the user to upgrade in order to support -/// expected action. -/// @param upsellUrl A URL to send the user to in order to obtain the account -/// type they need, e.g. upgrading. Absent if there is no action the user can -/// take to upgrade. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMessage:(NSString *)message upsellUrl:(nullable NSString *)upsellUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param message A message to tell the user to upgrade in order to support -/// expected action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMessage:(NSString *)message; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InsufficientPlan` struct. -/// -@interface DBSHARINGInsufficientPlanSerializer : NSObject - -/// -/// Serializes `DBSHARINGInsufficientPlan` instances. -/// -/// @param instance An instance of the `DBSHARINGInsufficientPlan` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientPlan` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInsufficientPlan *)instance; - -/// -/// Deserializes `DBSHARINGInsufficientPlan` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientPlan` API object. -/// -/// @return An instantiation of the `DBSHARINGInsufficientPlan` object. -/// -+ (DBSHARINGInsufficientPlan *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInsufficientQuotaAmounts.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInsufficientQuotaAmounts.h deleted file mode 100644 index 73e390d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInsufficientQuotaAmounts.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientQuotaAmounts; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InsufficientQuotaAmounts` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInsufficientQuotaAmounts : NSObject - -#pragma mark - Instance fields - -/// The amount of space needed to add the item (the size of the item). -@property (nonatomic, readonly) NSNumber *spaceNeeded; - -/// The amount of extra space needed to add the item. -@property (nonatomic, readonly) NSNumber *spaceShortage; - -/// The amount of space left in the user's Dropbox, less than space_needed. -@property (nonatomic, readonly) NSNumber *spaceLeft; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param spaceNeeded The amount of space needed to add the item (the size of -/// the item). -/// @param spaceShortage The amount of extra space needed to add the item. -/// @param spaceLeft The amount of space left in the user's Dropbox, less than -/// space_needed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSpaceNeeded:(NSNumber *)spaceNeeded - spaceShortage:(NSNumber *)spaceShortage - spaceLeft:(NSNumber *)spaceLeft; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InsufficientQuotaAmounts` struct. -/// -@interface DBSHARINGInsufficientQuotaAmountsSerializer : NSObject - -/// -/// Serializes `DBSHARINGInsufficientQuotaAmounts` instances. -/// -/// @param instance An instance of the `DBSHARINGInsufficientQuotaAmounts` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientQuotaAmounts` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInsufficientQuotaAmounts *)instance; - -/// -/// Deserializes `DBSHARINGInsufficientQuotaAmounts` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInsufficientQuotaAmounts` API object. -/// -/// @return An instantiation of the `DBSHARINGInsufficientQuotaAmounts` object. -/// -+ (DBSHARINGInsufficientQuotaAmounts *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInviteeInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInviteeInfo.h deleted file mode 100644 index 6121bf5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInviteeInfo.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInviteeInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteeInfo` union. -/// -/// Information about the recipient of a shared content invitation. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInviteeInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGInviteeInfoTag` enum type represents the possible tag states -/// with which the `DBSHARINGInviteeInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGInviteeInfoTag) { - /// Email address of invited user. - DBSHARINGInviteeInfoEmail, - - /// (no description). - DBSHARINGInviteeInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGInviteeInfoTag tag; - -/// Email address of invited user. @note Ensure the `isEmail` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *email; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email". -/// -/// Description of the "email" tag state: Email address of invited user. -/// -/// @param email Email address of invited user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `email` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGInviteeInfo` union. -/// -@interface DBSHARINGInviteeInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGInviteeInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGInviteeInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInviteeInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInviteeInfo *)instance; - -/// -/// Deserializes `DBSHARINGInviteeInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInviteeInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGInviteeInfo` object. -/// -+ (DBSHARINGInviteeInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInviteeMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInviteeMembershipInfo.h deleted file mode 100644 index 9735a916..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGInviteeMembershipInfo.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGInviteeInfo; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGMemberPermission; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteeMembershipInfo` struct. -/// -/// Information about an invited member of a shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGInviteeMembershipInfo : DBSHARINGMembershipInfo - -#pragma mark - Instance fields - -/// Recipient of the invitation. -@property (nonatomic, readonly) DBSHARINGInviteeInfo *invitee; - -/// The user this invitation is tied to, if available. -@property (nonatomic, readonly, nullable) DBSHARINGUserInfo *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param invitee Recipient of the invitation. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// @param user The user this invitation is tied to, if available. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - invitee:(DBSHARINGInviteeInfo *)invitee - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited - user:(nullable DBSHARINGUserInfo *)user; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param invitee Recipient of the invitation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType invitee:(DBSHARINGInviteeInfo *)invitee; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteeMembershipInfo` struct. -/// -@interface DBSHARINGInviteeMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGInviteeMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGInviteeMembershipInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGInviteeMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGInviteeMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGInviteeMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGInviteeMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGInviteeMembershipInfo` object. -/// -+ (DBSHARINGInviteeMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGJobError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGJobError.h deleted file mode 100644 index d9cc14b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGJobError.h +++ /dev/null @@ -1,206 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGJobError; -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGUnshareFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `JobError` union. -/// -/// Error occurred while performing an asynchronous job from `unshareFolder` or -/// `removeFolderMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGJobError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGJobErrorTag` enum type represents the possible tag states with -/// which the `DBSHARINGJobError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGJobErrorTag) { - /// Error occurred while performing `unshareFolder` action. - DBSHARINGJobErrorUnshareFolderError, - - /// Error occurred while performing `removeFolderMember` action. - DBSHARINGJobErrorRemoveFolderMemberError, - - /// Error occurred while performing `relinquishFolderMembership` action. - DBSHARINGJobErrorRelinquishFolderMembershipError, - - /// (no description). - DBSHARINGJobErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGJobErrorTag tag; - -/// Error occurred while performing `unshareFolder` action. @note Ensure the -/// `isUnshareFolderError` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGUnshareFolderError *unshareFolderError; - -/// Error occurred while performing `removeFolderMember` action. @note Ensure -/// the `isRemoveFolderMemberError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGRemoveFolderMemberError *removeFolderMemberError; - -/// Error occurred while performing `relinquishFolderMembership` action. @note -/// Ensure the `isRelinquishFolderMembershipError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGRelinquishFolderMembershipError *relinquishFolderMembershipError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unshare_folder_error". -/// -/// Description of the "unshare_folder_error" tag state: Error occurred while -/// performing `unshareFolder` action. -/// -/// @param unshareFolderError Error occurred while performing `unshareFolder` -/// action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnshareFolderError:(DBSHARINGUnshareFolderError *)unshareFolderError; - -/// -/// Initializes union class with tag state of "remove_folder_member_error". -/// -/// Description of the "remove_folder_member_error" tag state: Error occurred -/// while performing `removeFolderMember` action. -/// -/// @param removeFolderMemberError Error occurred while performing -/// `removeFolderMember` action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveFolderMemberError:(DBSHARINGRemoveFolderMemberError *)removeFolderMemberError; - -/// -/// Initializes union class with tag state of -/// "relinquish_folder_membership_error". -/// -/// Description of the "relinquish_folder_membership_error" tag state: Error -/// occurred while performing `relinquishFolderMembership` action. -/// -/// @param relinquishFolderMembershipError Error occurred while performing -/// `relinquishFolderMembership` action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelinquishFolderMembershipError: - (DBSHARINGRelinquishFolderMembershipError *)relinquishFolderMembershipError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unshare_folder_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unshareFolderError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "unshare_folder_error". -/// -- (BOOL)isUnshareFolderError; - -/// -/// Retrieves whether the union's current tag state has value -/// "remove_folder_member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `removeFolderMemberError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "remove_folder_member_error". -/// -- (BOOL)isRemoveFolderMemberError; - -/// -/// Retrieves whether the union's current tag state has value -/// "relinquish_folder_membership_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `relinquishFolderMembershipError` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "relinquish_folder_membership_error". -/// -- (BOOL)isRelinquishFolderMembershipError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGJobError` union. -/// -@interface DBSHARINGJobErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGJobError` instances. -/// -/// @param instance An instance of the `DBSHARINGJobError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGJobError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGJobError *)instance; - -/// -/// Deserializes `DBSHARINGJobError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGJobError` API object. -/// -/// @return An instantiation of the `DBSHARINGJobError` object. -/// -+ (DBSHARINGJobError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGJobStatus.h deleted file mode 100644 index bea3bea7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGJobStatus.h +++ /dev/null @@ -1,149 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGJobError; -@class DBSHARINGJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `JobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGJobStatusTag` enum type represents the possible tag states -/// with which the `DBSHARINGJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGJobStatusTag) { - /// The asynchronous job is still in progress. - DBSHARINGJobStatusInProgress, - - /// The asynchronous job has finished. - DBSHARINGJobStatusComplete, - - /// The asynchronous job returned an error. - DBSHARINGJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGJobStatusTag tag; - -/// The asynchronous job returned an error. @note Ensure the `isFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGJobError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has finished. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The asynchronous job returned an -/// error. -/// -/// @param failed The asynchronous job returned an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBSHARINGJobError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGJobStatus` union. -/// -@interface DBSHARINGJobStatusSerializer : NSObject - -/// -/// Serializes `DBSHARINGJobStatus` instances. -/// -/// @param instance An instance of the `DBSHARINGJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGJobStatus *)instance; - -/// -/// Deserializes `DBSHARINGJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGJobStatus` API object. -/// -/// @return An instantiation of the `DBSHARINGJobStatus` object. -/// -+ (DBSHARINGJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAccessLevel.h deleted file mode 100644 index d514d973..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAccessLevel.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAccessLevel` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkAccessLevelTag` enum type represents the possible tag -/// states with which the `DBSHARINGLinkAccessLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkAccessLevelTag) { - /// Users who use the link can view and comment on the content. - DBSHARINGLinkAccessLevelViewer, - - /// Users who use the link can edit, view and comment on the content. - DBSHARINGLinkAccessLevelEditor, - - /// (no description). - DBSHARINGLinkAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "viewer". -/// -/// Description of the "viewer" tag state: Users who use the link can view and -/// comment on the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "editor". -/// -/// Description of the "editor" tag state: Users who use the link can edit, view -/// and comment on the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAccessLevel` union. -/// -@interface DBSHARINGLinkAccessLevelSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAccessLevel` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAccessLevel` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAccessLevel *)instance; - -/// -/// Deserializes `DBSHARINGLinkAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAccessLevel` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAccessLevel` object. -/// -+ (DBSHARINGLinkAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAction.h deleted file mode 100644 index e85dc339..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAction.h +++ /dev/null @@ -1,221 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAction` union. -/// -/// Actions that can be performed on a link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkActionTag) { - /// Change the access level of the link. - DBSHARINGLinkActionChangeAccessLevel, - - /// Change the audience of the link. - DBSHARINGLinkActionChangeAudience, - - /// Remove the expiry date of the link. - DBSHARINGLinkActionRemoveExpiry, - - /// Remove the password of the link. - DBSHARINGLinkActionRemovePassword, - - /// Create or modify the expiry date of the link. - DBSHARINGLinkActionSetExpiry, - - /// Create or modify the password of the link. - DBSHARINGLinkActionSetPassword, - - /// (no description). - DBSHARINGLinkActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "change_access_level". -/// -/// Description of the "change_access_level" tag state: Change the access level -/// of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangeAccessLevel; - -/// -/// Initializes union class with tag state of "change_audience". -/// -/// Description of the "change_audience" tag state: Change the audience of the -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangeAudience; - -/// -/// Initializes union class with tag state of "remove_expiry". -/// -/// Description of the "remove_expiry" tag state: Remove the expiry date of the -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveExpiry; - -/// -/// Initializes union class with tag state of "remove_password". -/// -/// Description of the "remove_password" tag state: Remove the password of the -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovePassword; - -/// -/// Initializes union class with tag state of "set_expiry". -/// -/// Description of the "set_expiry" tag state: Create or modify the expiry date -/// of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetExpiry; - -/// -/// Initializes union class with tag state of "set_password". -/// -/// Description of the "set_password" tag state: Create or modify the password -/// of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetPassword; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "change_access_level". -/// -/// @return Whether the union's current tag state has value -/// "change_access_level". -/// -- (BOOL)isChangeAccessLevel; - -/// -/// Retrieves whether the union's current tag state has value "change_audience". -/// -/// @return Whether the union's current tag state has value "change_audience". -/// -- (BOOL)isChangeAudience; - -/// -/// Retrieves whether the union's current tag state has value "remove_expiry". -/// -/// @return Whether the union's current tag state has value "remove_expiry". -/// -- (BOOL)isRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value "remove_password". -/// -/// @return Whether the union's current tag state has value "remove_password". -/// -- (BOOL)isRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value "set_expiry". -/// -/// @return Whether the union's current tag state has value "set_expiry". -/// -- (BOOL)isSetExpiry; - -/// -/// Retrieves whether the union's current tag state has value "set_password". -/// -/// @return Whether the union's current tag state has value "set_password". -/// -- (BOOL)isSetPassword; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAction` union. -/// -@interface DBSHARINGLinkActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAction` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAction *)instance; - -/// -/// Deserializes `DBSHARINGLinkAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAction` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAction` object. -/// -+ (DBSHARINGLinkAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudience.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudience.h deleted file mode 100644 index ceb4ee90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudience.h +++ /dev/null @@ -1,203 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAudience` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAudience : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkAudienceTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkAudience` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkAudienceTag) { - /// Link is accessible by anyone. - DBSHARINGLinkAudiencePublic, - - /// Link is accessible only by team members. - DBSHARINGLinkAudienceTeam, - - /// The link can be used by no one. The link merely points the user to the - /// content, and does not grant additional rights to the user. Members of - /// the content who use this link can only access the content with their - /// pre-existing access rights. - DBSHARINGLinkAudienceNoOne, - - /// Use `require_password` instead. A link-specific password is required to - /// access the link. Login is not required. - DBSHARINGLinkAudiencePassword, - - /// Link is accessible only by members of the content. - DBSHARINGLinkAudienceMembers, - - /// (no description). - DBSHARINGLinkAudienceOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkAudienceTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Link is accessible by anyone. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Link is accessible only by team -/// members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "no_one". -/// -/// Description of the "no_one" tag state: The link can be used by no one. The -/// link merely points the user to the content, and does not grant additional -/// rights to the user. Members of the content who use this link can only access -/// the content with their pre-existing access rights. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: Use `require_password` instead. A -/// link-specific password is required to access the link. Login is not -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Link is accessible only by members -/// of the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAudience` union. -/// -@interface DBSHARINGLinkAudienceSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAudience` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAudience` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudience` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAudience *)instance; - -/// -/// Deserializes `DBSHARINGLinkAudience` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudience` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAudience` object. -/// -+ (DBSHARINGLinkAudience *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudienceDisallowedReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudienceDisallowedReason.h deleted file mode 100644 index dc64493f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudienceDisallowedReason.h +++ /dev/null @@ -1,237 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudienceDisallowedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAudienceDisallowedReason` union. -/// -/// check documentation for VisibilityPolicyDisallowedReason. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAudienceDisallowedReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkAudienceDisallowedReasonTag` enum type represents the -/// possible tag states with which the `DBSHARINGLinkAudienceDisallowedReason` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkAudienceDisallowedReasonTag) { - /// The user needs to delete and recreate the link to change the visibility - /// policy. - DBSHARINGLinkAudienceDisallowedReasonDeleteAndRecreate, - - /// The parent shared folder restricts sharing of links outside the shared - /// folder. To change the visibility policy, remove the restriction from the - /// parent shared folder. - DBSHARINGLinkAudienceDisallowedReasonRestrictedBySharedFolder, - - /// The team policy prevents links being shared outside the team. - DBSHARINGLinkAudienceDisallowedReasonRestrictedByTeam, - - /// The user needs to be on a team to set this policy. - DBSHARINGLinkAudienceDisallowedReasonUserNotOnTeam, - - /// The user is a basic user or is on a limited team. - DBSHARINGLinkAudienceDisallowedReasonUserAccountType, - - /// The user does not have permission. - DBSHARINGLinkAudienceDisallowedReasonPermissionDenied, - - /// (no description). - DBSHARINGLinkAudienceDisallowedReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkAudienceDisallowedReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete_and_recreate". -/// -/// Description of the "delete_and_recreate" tag state: The user needs to delete -/// and recreate the link to change the visibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteAndRecreate; - -/// -/// Initializes union class with tag state of "restricted_by_shared_folder". -/// -/// Description of the "restricted_by_shared_folder" tag state: The parent -/// shared folder restricts sharing of links outside the shared folder. To -/// change the visibility policy, remove the restriction from the parent shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedBySharedFolder; - -/// -/// Initializes union class with tag state of "restricted_by_team". -/// -/// Description of the "restricted_by_team" tag state: The team policy prevents -/// links being shared outside the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByTeam; - -/// -/// Initializes union class with tag state of "user_not_on_team". -/// -/// Description of the "user_not_on_team" tag state: The user needs to be on a -/// team to set this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotOnTeam; - -/// -/// Initializes union class with tag state of "user_account_type". -/// -/// Description of the "user_account_type" tag state: The user is a basic user -/// or is on a limited team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAccountType; - -/// -/// Initializes union class with tag state of "permission_denied". -/// -/// Description of the "permission_denied" tag state: The user does not have -/// permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_and_recreate". -/// -/// @return Whether the union's current tag state has value -/// "delete_and_recreate". -/// -- (BOOL)isDeleteAndRecreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -- (BOOL)isRestrictedBySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_team". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_team". -/// -- (BOOL)isRestrictedByTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_on_team". -/// -/// @return Whether the union's current tag state has value "user_not_on_team". -/// -- (BOOL)isUserNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_account_type". -/// -/// @return Whether the union's current tag state has value "user_account_type". -/// -- (BOOL)isUserAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied". -/// -/// @return Whether the union's current tag state has value "permission_denied". -/// -- (BOOL)isPermissionDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkAudienceDisallowedReason` -/// union. -/// -@interface DBSHARINGLinkAudienceDisallowedReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAudienceDisallowedReason` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAudienceDisallowedReason` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceDisallowedReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAudienceDisallowedReason *)instance; - -/// -/// Deserializes `DBSHARINGLinkAudienceDisallowedReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceDisallowedReason` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAudienceDisallowedReason` -/// object. -/// -+ (DBSHARINGLinkAudienceDisallowedReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudienceOption.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudienceOption.h deleted file mode 100644 index ca06ae07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkAudienceOption.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkAudienceDisallowedReason; -@class DBSHARINGLinkAudienceOption; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkAudienceOption` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkAudienceOption : NSObject - -#pragma mark - Instance fields - -/// Specifies who can access the link. -@property (nonatomic, readonly) DBSHARINGLinkAudience *audience; - -/// Whether the user calling this API can select this audience option. -@property (nonatomic, readonly) NSNumber *allowed; - -/// If allowed is false, this will provide the reason that the user is not -/// permitted to set the visibility to this policy. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudienceDisallowedReason *disallowedReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audience Specifies who can access the link. -/// @param allowed Whether the user calling this API can select this audience -/// option. -/// @param disallowedReason If allowed is false, this will provide the reason -/// that the user is not permitted to set the visibility to this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudience:(DBSHARINGLinkAudience *)audience - allowed:(NSNumber *)allowed - disallowedReason:(nullable DBSHARINGLinkAudienceDisallowedReason *)disallowedReason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audience Specifies who can access the link. -/// @param allowed Whether the user calling this API can select this audience -/// option. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudience:(DBSHARINGLinkAudience *)audience allowed:(NSNumber *)allowed; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkAudienceOption` struct. -/// -@interface DBSHARINGLinkAudienceOptionSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkAudienceOption` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkAudienceOption` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceOption` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkAudienceOption *)instance; - -/// -/// Deserializes `DBSHARINGLinkAudienceOption` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkAudienceOption` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkAudienceOption` object. -/// -+ (DBSHARINGLinkAudienceOption *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkExpiry.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkExpiry.h deleted file mode 100644 index 3a1777fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkExpiry.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkExpiry; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkExpiry` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkExpiry : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkExpiryTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkExpiry` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkExpiryTag) { - /// Remove the currently set expiry for the link. - DBSHARINGLinkExpiryRemoveExpiry, - - /// Set a new expiry or change an existing expiry. - DBSHARINGLinkExpirySetExpiry, - - /// (no description). - DBSHARINGLinkExpiryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkExpiryTag tag; - -/// Set a new expiry or change an existing expiry. @note Ensure the -/// `isSetExpiry` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) NSDate *setExpiry; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "remove_expiry". -/// -/// Description of the "remove_expiry" tag state: Remove the currently set -/// expiry for the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveExpiry; - -/// -/// Initializes union class with tag state of "set_expiry". -/// -/// Description of the "set_expiry" tag state: Set a new expiry or change an -/// existing expiry. -/// -/// @param setExpiry Set a new expiry or change an existing expiry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetExpiry:(NSDate *)setExpiry; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "remove_expiry". -/// -/// @return Whether the union's current tag state has value "remove_expiry". -/// -- (BOOL)isRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value "set_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `setExpiry` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "set_expiry". -/// -- (BOOL)isSetExpiry; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkExpiry` union. -/// -@interface DBSHARINGLinkExpirySerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkExpiry` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkExpiry` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkExpiry` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkExpiry *)instance; - -/// -/// Deserializes `DBSHARINGLinkExpiry` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkExpiry` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkExpiry` object. -/// -+ (DBSHARINGLinkExpiry *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkMetadata.h deleted file mode 100644 index 035774fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkMetadata.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkMetadata; -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkMetadata` struct. -/// -/// Metadata for a shared link. This can be either a PathLinkMetadata or -/// CollectionLinkMetadata. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkMetadata : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// Who can access the link. -@property (nonatomic, readonly) DBSHARINGVisibility *visibility; - -/// Expiration time, if set. By default the link won't expire. -@property (nonatomic, readonly, nullable) NSDate *expires; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param expires Expiration time, if set. By default the link won't expire. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - visibility:(DBSHARINGVisibility *)visibility - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url visibility:(DBSHARINGVisibility *)visibility; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkMetadata` struct. -/// -@interface DBSHARINGLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkMetadata` object. -/// -+ (DBSHARINGLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPassword.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPassword.h deleted file mode 100644 index 7db315c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPassword.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkPassword; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkPassword` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkPassword : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGLinkPasswordTag` enum type represents the possible tag states -/// with which the `DBSHARINGLinkPassword` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGLinkPasswordTag) { - /// Remove the currently set password for the link. - DBSHARINGLinkPasswordRemovePassword, - - /// Set a new password or change an existing password. - DBSHARINGLinkPasswordSetPassword, - - /// (no description). - DBSHARINGLinkPasswordOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGLinkPasswordTag tag; - -/// Set a new password or change an existing password. @note Ensure the -/// `isSetPassword` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *setPassword; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "remove_password". -/// -/// Description of the "remove_password" tag state: Remove the currently set -/// password for the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovePassword; - -/// -/// Initializes union class with tag state of "set_password". -/// -/// Description of the "set_password" tag state: Set a new password or change an -/// existing password. -/// -/// @param setPassword Set a new password or change an existing password. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetPassword:(NSString *)setPassword; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "remove_password". -/// -/// @return Whether the union's current tag state has value "remove_password". -/// -- (BOOL)isRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value "set_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `setPassword` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "set_password". -/// -- (BOOL)isSetPassword; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGLinkPassword` union. -/// -@interface DBSHARINGLinkPasswordSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkPassword` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkPassword` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkPassword` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkPassword *)instance; - -/// -/// Deserializes `DBSHARINGLinkPassword` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkPassword` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkPassword` object. -/// -+ (DBSHARINGLinkPassword *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPermission.h deleted file mode 100644 index b4253967..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPermission.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAction; -@class DBSHARINGLinkPermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkPermission` struct. -/// -/// Permissions for actions that can be performed on a link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkPermission : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBSHARINGLinkAction *action; - -/// (no description). -@property (nonatomic, readonly) NSNumber *allow; - -/// (no description). -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action (no description). -/// @param allow (no description). -/// @param reason (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGLinkAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action (no description). -/// @param allow (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGLinkAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkPermission` struct. -/// -@interface DBSHARINGLinkPermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkPermission` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkPermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkPermission *)instance; - -/// -/// Deserializes `DBSHARINGLinkPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermission` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkPermission` object. -/// -+ (DBSHARINGLinkPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPermissions.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPermissions.h deleted file mode 100644 index b1f1a7a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkPermissions.h +++ /dev/null @@ -1,259 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAccessLevel; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkAudienceOption; -@class DBSHARINGLinkPermissions; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGResolvedVisibility; -@class DBSHARINGSharedLinkAccessFailureReason; -@class DBSHARINGVisibilityPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkPermissions` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkPermissions : NSObject - -#pragma mark - Instance fields - -/// The current visibility of the link after considering the shared links -/// policies of the the team (in case the link's owner is part of a team) and -/// the shared folder (in case the linked file is part of a shared folder). This -/// field is shown only if the caller has access to this info (the link's owner -/// always has access to this data). For some links, an effective_audience value -/// is returned instead. -@property (nonatomic, readonly, nullable) DBSHARINGResolvedVisibility *resolvedVisibility; - -/// The shared link's requested visibility. This can be overridden by the team -/// and shared folder policies. The final visibility, after considering these -/// policies, can be found in resolvedVisibility. This is shown only if the -/// caller is the link's owner and resolved_visibility is returned instead of -/// effective_audience. -@property (nonatomic, readonly, nullable) DBSHARINGRequestedVisibility *requestedVisibility; - -/// Whether the caller can revoke the shared link. -@property (nonatomic, readonly) NSNumber *canRevoke; - -/// The failure reason for revoking the link. This field will only be present if -/// the canRevoke is false. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkAccessFailureReason *revokeFailureReason; - -/// The type of audience who can benefit from the access level specified by the -/// `link_access_level` field. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *effectiveAudience; - -/// The access level that the link will grant to its users. A link can grant -/// additional rights to a user beyond their current access level. For example, -/// if a user was invited as a viewer to a file, and then opens a link with -/// `link_access_level` set to `editor`, then they will gain editor privileges. -/// The `link_access_level` is a property of the link, and does not depend on -/// who is calling this API. In particular, `link_access_level` does not take -/// into account the API caller's current permissions to the content. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAccessLevel *linkAccessLevel; - -/// A list of policies that the user might be able to set for the visibility. -@property (nonatomic, readonly) NSArray *visibilityPolicies; - -/// Whether the user can set the expiry settings of the link. This refers to the -/// ability to create a new expiry and modify an existing expiry. -@property (nonatomic, readonly) NSNumber *canSetExpiry; - -/// Whether the user can remove the expiry of the link. -@property (nonatomic, readonly) NSNumber *canRemoveExpiry; - -/// Whether the link can be downloaded or not. -@property (nonatomic, readonly) NSNumber *allowDownload; - -/// Whether the user can allow downloads via the link. This refers to the -/// ability to remove a no-download restriction on the link. -@property (nonatomic, readonly) NSNumber *canAllowDownload; - -/// Whether the user can disallow downloads via the link. This refers to the -/// ability to impose a no-download restriction on the link. -@property (nonatomic, readonly) NSNumber *canDisallowDownload; - -/// Whether comments are enabled for the linked file. This takes the team -/// commenting policy into account. -@property (nonatomic, readonly) NSNumber *allowComments; - -/// Whether the team has disabled commenting globally. -@property (nonatomic, readonly) NSNumber *teamRestrictsComments; - -/// A list of link audience options the user might be able to set as the new -/// audience. -@property (nonatomic, readonly, nullable) NSArray *audienceOptions; - -/// Whether the user can set a password for the link. -@property (nonatomic, readonly, nullable) NSNumber *canSetPassword; - -/// Whether the user can remove the password of the link. -@property (nonatomic, readonly, nullable) NSNumber *canRemovePassword; - -/// Whether the user is required to provide a password to view the link. -@property (nonatomic, readonly, nullable) NSNumber *requirePassword; - -/// Whether the user can use extended sharing controls, based on their account -/// type. -@property (nonatomic, readonly, nullable) NSNumber *canUseExtendedSharingControls; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param canRevoke Whether the caller can revoke the shared link. -/// @param visibilityPolicies A list of policies that the user might be able to -/// set for the visibility. -/// @param canSetExpiry Whether the user can set the expiry settings of the -/// link. This refers to the ability to create a new expiry and modify an -/// existing expiry. -/// @param canRemoveExpiry Whether the user can remove the expiry of the link. -/// @param allowDownload Whether the link can be downloaded or not. -/// @param canAllowDownload Whether the user can allow downloads via the link. -/// This refers to the ability to remove a no-download restriction on the link. -/// @param canDisallowDownload Whether the user can disallow downloads via the -/// link. This refers to the ability to impose a no-download restriction on the -/// link. -/// @param allowComments Whether comments are enabled for the linked file. This -/// takes the team commenting policy into account. -/// @param teamRestrictsComments Whether the team has disabled commenting -/// globally. -/// @param resolvedVisibility The current visibility of the link after -/// considering the shared links policies of the the team (in case the link's -/// owner is part of a team) and the shared folder (in case the linked file is -/// part of a shared folder). This field is shown only if the caller has access -/// to this info (the link's owner always has access to this data). For some -/// links, an effective_audience value is returned instead. -/// @param requestedVisibility The shared link's requested visibility. This can -/// be overridden by the team and shared folder policies. The final visibility, -/// after considering these policies, can be found in resolvedVisibility. This -/// is shown only if the caller is the link's owner and resolved_visibility is -/// returned instead of effective_audience. -/// @param revokeFailureReason The failure reason for revoking the link. This -/// field will only be present if the canRevoke is false. -/// @param effectiveAudience The type of audience who can benefit from the -/// access level specified by the `link_access_level` field. -/// @param linkAccessLevel The access level that the link will grant to its -/// users. A link can grant additional rights to a user beyond their current -/// access level. For example, if a user was invited as a viewer to a file, and -/// then opens a link with `link_access_level` set to `editor`, then they will -/// gain editor privileges. The `link_access_level` is a property of the link, -/// and does not depend on who is calling this API. In particular, -/// `link_access_level` does not take into account the API caller's current -/// permissions to the content. -/// @param audienceOptions A list of link audience options the user might be -/// able to set as the new audience. -/// @param canSetPassword Whether the user can set a password for the link. -/// @param canRemovePassword Whether the user can remove the password of the -/// link. -/// @param requirePassword Whether the user is required to provide a password to -/// view the link. -/// @param canUseExtendedSharingControls Whether the user can use extended -/// sharing controls, based on their account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCanRevoke:(NSNumber *)canRevoke - visibilityPolicies:(NSArray *)visibilityPolicies - canSetExpiry:(NSNumber *)canSetExpiry - canRemoveExpiry:(NSNumber *)canRemoveExpiry - allowDownload:(NSNumber *)allowDownload - canAllowDownload:(NSNumber *)canAllowDownload - canDisallowDownload:(NSNumber *)canDisallowDownload - allowComments:(NSNumber *)allowComments - teamRestrictsComments:(NSNumber *)teamRestrictsComments - resolvedVisibility:(nullable DBSHARINGResolvedVisibility *)resolvedVisibility - requestedVisibility:(nullable DBSHARINGRequestedVisibility *)requestedVisibility - revokeFailureReason:(nullable DBSHARINGSharedLinkAccessFailureReason *)revokeFailureReason - effectiveAudience:(nullable DBSHARINGLinkAudience *)effectiveAudience - linkAccessLevel:(nullable DBSHARINGLinkAccessLevel *)linkAccessLevel - audienceOptions:(nullable NSArray *)audienceOptions - canSetPassword:(nullable NSNumber *)canSetPassword - canRemovePassword:(nullable NSNumber *)canRemovePassword - requirePassword:(nullable NSNumber *)requirePassword - canUseExtendedSharingControls:(nullable NSNumber *)canUseExtendedSharingControls; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param canRevoke Whether the caller can revoke the shared link. -/// @param visibilityPolicies A list of policies that the user might be able to -/// set for the visibility. -/// @param canSetExpiry Whether the user can set the expiry settings of the -/// link. This refers to the ability to create a new expiry and modify an -/// existing expiry. -/// @param canRemoveExpiry Whether the user can remove the expiry of the link. -/// @param allowDownload Whether the link can be downloaded or not. -/// @param canAllowDownload Whether the user can allow downloads via the link. -/// This refers to the ability to remove a no-download restriction on the link. -/// @param canDisallowDownload Whether the user can disallow downloads via the -/// link. This refers to the ability to impose a no-download restriction on the -/// link. -/// @param allowComments Whether comments are enabled for the linked file. This -/// takes the team commenting policy into account. -/// @param teamRestrictsComments Whether the team has disabled commenting -/// globally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCanRevoke:(NSNumber *)canRevoke - visibilityPolicies:(NSArray *)visibilityPolicies - canSetExpiry:(NSNumber *)canSetExpiry - canRemoveExpiry:(NSNumber *)canRemoveExpiry - allowDownload:(NSNumber *)allowDownload - canAllowDownload:(NSNumber *)canAllowDownload - canDisallowDownload:(NSNumber *)canDisallowDownload - allowComments:(NSNumber *)allowComments - teamRestrictsComments:(NSNumber *)teamRestrictsComments; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkPermissions` struct. -/// -@interface DBSHARINGLinkPermissionsSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkPermissions` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkPermissions` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermissions` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkPermissions *)instance; - -/// -/// Deserializes `DBSHARINGLinkPermissions` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkPermissions` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkPermissions` object. -/// -+ (DBSHARINGLinkPermissions *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkSettings.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkSettings.h deleted file mode 100644 index d5ffbb14..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGLinkSettings.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkExpiry; -@class DBSHARINGLinkPassword; -@class DBSHARINGLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkSettings` struct. -/// -/// Settings that apply to a link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGLinkSettings : NSObject - -#pragma mark - Instance fields - -/// The access level on the link for this file. Currently, it only accepts -/// 'viewer' and 'viewer_no_comment'. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessLevel; - -/// The type of audience on the link for this file. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *audience; - -/// An expiry timestamp to set on a link. -@property (nonatomic, readonly, nullable) DBSHARINGLinkExpiry *expiry; - -/// The password for the link. -@property (nonatomic, readonly, nullable) DBSHARINGLinkPassword *password; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessLevel The access level on the link for this file. Currently, it -/// only accepts 'viewer' and 'viewer_no_comment'. -/// @param audience The type of audience on the link for this file. -/// @param expiry An expiry timestamp to set on a link. -/// @param password The password for the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audience:(nullable DBSHARINGLinkAudience *)audience - expiry:(nullable DBSHARINGLinkExpiry *)expiry - password:(nullable DBSHARINGLinkPassword *)password; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LinkSettings` struct. -/// -@interface DBSHARINGLinkSettingsSerializer : NSObject - -/// -/// Serializes `DBSHARINGLinkSettings` instances. -/// -/// @param instance An instance of the `DBSHARINGLinkSettings` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGLinkSettings` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGLinkSettings *)instance; - -/// -/// Deserializes `DBSHARINGLinkSettings` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGLinkSettings` API object. -/// -/// @return An instantiation of the `DBSHARINGLinkSettings` object. -/// -+ (DBSHARINGLinkSettings *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersArg.h deleted file mode 100644 index 9df4a86d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersArg.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersArg; -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersArg` struct. -/// -/// Arguments for `listFileMembers`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersArg : NSObject - -#pragma mark - Instance fields - -/// The file for which you want to see members. -@property (nonatomic, readonly, copy) NSString *file; - -/// The actions for which to return permissions on a member. -@property (nonatomic, readonly, nullable) NSArray *actions; - -/// Whether to include members who only have access from a parent shared folder. -@property (nonatomic, readonly) NSNumber *includeInherited; - -/// Number of members to return max per query. Defaults to 100 if no limit is -/// specified. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The file for which you want to see members. -/// @param actions The actions for which to return permissions on a member. -/// @param includeInherited Whether to include members who only have access from -/// a parent shared folder. -/// @param limit Number of members to return max per query. Defaults to 100 if -/// no limit is specified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file - actions:(nullable NSArray *)actions - includeInherited:(nullable NSNumber *)includeInherited - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param file The file for which you want to see members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersArg` struct. -/// -@interface DBSHARINGListFileMembersArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersArg *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersArg` object. -/// -+ (DBSHARINGListFileMembersArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersBatchArg.h deleted file mode 100644 index d6aaffd7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersBatchArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersBatchArg` struct. -/// -/// Arguments for `listFileMembersBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersBatchArg : NSObject - -#pragma mark - Instance fields - -/// Files for which to return members. -@property (nonatomic, readonly) NSArray *files; - -/// Number of members to return max per query. Defaults to 10 if no limit is -/// specified. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param files Files for which to return members. -/// @param limit Number of members to return max per query. Defaults to 10 if no -/// limit is specified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param files Files for which to return members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFiles:(NSArray *)files; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersBatchArg` struct. -/// -@interface DBSHARINGListFileMembersBatchArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersBatchArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersBatchArg *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersBatchArg` object. -/// -+ (DBSHARINGListFileMembersBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersBatchResult.h deleted file mode 100644 index f8469c55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersBatchResult.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersBatchResult; -@class DBSHARINGListFileMembersIndividualResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersBatchResult` struct. -/// -/// Per-file result for `listFileMembersBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersBatchResult : NSObject - -#pragma mark - Instance fields - -/// This is the input file identifier, whether an ID or a path. -@property (nonatomic, readonly, copy) NSString *file; - -/// The result for this particular file. -@property (nonatomic, readonly) DBSHARINGListFileMembersIndividualResult *result; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file This is the input file identifier, whether an ID or a path. -/// @param result The result for this particular file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file result:(DBSHARINGListFileMembersIndividualResult *)result; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersBatchResult` struct. -/// -@interface DBSHARINGListFileMembersBatchResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersBatchResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersBatchResult *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersBatchResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersBatchResult` -/// object. -/// -+ (DBSHARINGListFileMembersBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersContinueArg.h deleted file mode 100644 index dc260afd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersContinueArg.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersContinueArg` struct. -/// -/// Arguments for `listFileMembersContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `listFileMembers`, -/// `listFileMembersContinue`, or `listFileMembersBatch`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `listFileMembers`, -/// `listFileMembersContinue`, or `listFileMembersBatch`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersContinueArg` struct. -/// -@interface DBSHARINGListFileMembersContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersContinueArg` -/// object. -/// -+ (DBSHARINGListFileMembersContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersContinueError.h deleted file mode 100644 index eaff8c8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersContinueError.h +++ /dev/null @@ -1,177 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersContinueError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersContinueError` union. -/// -/// Error for `listFileMembersContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFileMembersContinueErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGListFileMembersContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFileMembersContinueErrorTag) { - /// (no description). - DBSHARINGListFileMembersContinueErrorUserError, - - /// (no description). - DBSHARINGListFileMembersContinueErrorAccessError, - - /// `cursor` in `DBSHARINGListFileMembersContinueArg` is invalid. - DBSHARINGListFileMembersContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFileMembersContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFileMembersContinueErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFileMembersContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFileMembersContinueError` -/// union. -/// -@interface DBSHARINGListFileMembersContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersContinueError` -/// object. -/// -+ (DBSHARINGListFileMembersContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersCountResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersCountResult.h deleted file mode 100644 index dddf5183..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersCountResult.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersCountResult; -@class DBSHARINGSharedFileMembers; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersCountResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersCountResult : NSObject - -#pragma mark - Instance fields - -/// A list of members on this file. -@property (nonatomic, readonly) DBSHARINGSharedFileMembers *members; - -/// The number of members on this file. This does not include inherited members. -@property (nonatomic, readonly) NSNumber *memberCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members A list of members on this file. -/// @param memberCount The number of members on this file. This does not include -/// inherited members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(DBSHARINGSharedFileMembers *)members memberCount:(NSNumber *)memberCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFileMembersCountResult` struct. -/// -@interface DBSHARINGListFileMembersCountResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersCountResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersCountResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersCountResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersCountResult *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersCountResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersCountResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersCountResult` -/// object. -/// -+ (DBSHARINGListFileMembersCountResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersError.h deleted file mode 100644 index d7999bcc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersError.h +++ /dev/null @@ -1,154 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersError` union. -/// -/// Error for `listFileMembers`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFileMembersErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGListFileMembersError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFileMembersErrorTag) { - /// (no description). - DBSHARINGListFileMembersErrorUserError, - - /// (no description). - DBSHARINGListFileMembersErrorAccessError, - - /// (no description). - DBSHARINGListFileMembersErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFileMembersErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFileMembersError` union. -/// -@interface DBSHARINGListFileMembersErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFileMembersError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersError *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersError` object. -/// -+ (DBSHARINGListFileMembersError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersIndividualResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersIndividualResult.h deleted file mode 100644 index bf68c224..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFileMembersIndividualResult.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFileMembersCountResult; -@class DBSHARINGListFileMembersIndividualResult; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFileMembersIndividualResult` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFileMembersIndividualResult : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFileMembersIndividualResultTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGListFileMembersIndividualResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFileMembersIndividualResultTag) { - /// The results of the query for this file if it was successful. - DBSHARINGListFileMembersIndividualResultResult, - - /// The result of the query for this file if it was an error. - DBSHARINGListFileMembersIndividualResultAccessError, - - /// (no description). - DBSHARINGListFileMembersIndividualResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFileMembersIndividualResultTag tag; - -/// The results of the query for this file if it was successful. @note Ensure -/// the `isResult` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGListFileMembersCountResult *result; - -/// The result of the query for this file if it was an error. @note Ensure the -/// `isAccessError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "result". -/// -/// Description of the "result" tag state: The results of the query for this -/// file if it was successful. -/// -/// @param result The results of the query for this file if it was successful. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResult:(DBSHARINGListFileMembersCountResult *)result; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: The result of the query for -/// this file if it was an error. -/// -/// @param accessError The result of the query for this file if it was an error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "result". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `result` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "result". -/// -- (BOOL)isResult; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFileMembersIndividualResult` -/// union. -/// -@interface DBSHARINGListFileMembersIndividualResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFileMembersIndividualResult` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGListFileMembersIndividualResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersIndividualResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFileMembersIndividualResult *)instance; - -/// -/// Deserializes `DBSHARINGListFileMembersIndividualResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFileMembersIndividualResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFileMembersIndividualResult` -/// object. -/// -+ (DBSHARINGListFileMembersIndividualResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesArg.h deleted file mode 100644 index 9ecb7532..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesArg.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFileAction; -@class DBSHARINGListFilesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesArg` struct. -/// -/// Arguments for `listReceivedFiles`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesArg : NSObject - -#pragma mark - Instance fields - -/// Number of files to return max per query. Defaults to 100 if no limit is -/// specified. -@property (nonatomic, readonly) NSNumber *limit; - -/// A list of `FileAction`s corresponding to `FilePermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFileMetadata` -/// field describing the actions the authenticated user can perform on the -/// file. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of files to return max per query. Defaults to 100 if no -/// limit is specified. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s -/// that should appear in the response's `permissions` in -/// `DBSHARINGSharedFileMetadata` field describing the actions the -/// authenticated user can perform on the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFilesArg` struct. -/// -@interface DBSHARINGListFilesArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesArg *)instance; - -/// -/// Deserializes `DBSHARINGListFilesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesArg` object. -/// -+ (DBSHARINGListFilesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesContinueArg.h deleted file mode 100644 index c379b6c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFilesContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesContinueArg` struct. -/// -/// Arguments for `listReceivedFilesContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesContinueArg : NSObject - -#pragma mark - Instance fields - -/// Cursor in `cursor` in `DBSHARINGListFilesResult`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Cursor in `cursor` in `DBSHARINGListFilesResult`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFilesContinueArg` struct. -/// -@interface DBSHARINGListFilesContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFilesContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesContinueArg` object. -/// -+ (DBSHARINGListFilesContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesContinueError.h deleted file mode 100644 index f3e1009c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesContinueError.h +++ /dev/null @@ -1,149 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFilesContinueError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesContinueError` union. -/// -/// Error results for `listReceivedFilesContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFilesContinueErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGListFilesContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFilesContinueErrorTag) { - /// User account had a problem. - DBSHARINGListFilesContinueErrorUserError, - - /// `cursor` in `DBSHARINGListFilesContinueArg` is invalid. - DBSHARINGListFilesContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFilesContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFilesContinueErrorTag tag; - -/// User account had a problem. @note Ensure the `isUserError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// Description of the "user_error" tag state: User account had a problem. -/// -/// @param userError User account had a problem. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFilesContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFilesContinueError` union. -/// -@interface DBSHARINGListFilesContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFilesContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesContinueError` object. -/// -+ (DBSHARINGListFilesContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesResult.h deleted file mode 100644 index c1ed574b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFilesResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFilesResult; -@class DBSHARINGSharedFileMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFilesResult` struct. -/// -/// Success results for `listReceivedFiles`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFilesResult : NSObject - -#pragma mark - Instance fields - -/// Information about the files shared with current user. -@property (nonatomic, readonly) NSArray *entries; - -/// Cursor used to obtain additional shared files. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries Information about the files shared with current user. -/// @param cursor Cursor used to obtain additional shared files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries Information about the files shared with current user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFilesResult` struct. -/// -@interface DBSHARINGListFilesResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFilesResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFilesResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFilesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFilesResult *)instance; - -/// -/// Deserializes `DBSHARINGListFilesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFilesResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFilesResult` object. -/// -+ (DBSHARINGListFilesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersArgs.h deleted file mode 100644 index 4941c31f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersArgs.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGListFolderMembersCursorArg.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersArgs; -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersArgs : DBSHARINGListFolderMembersCursorArg - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param actions This is a list indicating whether each returned member will -/// include a boolean value `allow` in `DBSHARINGMemberPermission` that -/// describes whether the current user can perform the MemberAction on the -/// member. -/// @param limit The maximum number of results that include members, groups and -/// invitees to return per request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions - limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderMembersArgs` struct. -/// -@interface DBSHARINGListFolderMembersArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersArgs *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersArgs` object. -/// -+ (DBSHARINGListFolderMembersArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersContinueArg.h deleted file mode 100644 index 295057eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by your last call to `listFolderMembers` or -/// `listFolderMembersContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by your last call to `listFolderMembers` -/// or `listFolderMembersContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderMembersContinueArg` struct. -/// -@interface DBSHARINGListFolderMembersContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersContinueArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersContinueArg` -/// object. -/// -+ (DBSHARINGListFolderMembersContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersContinueError.h deleted file mode 100644 index 19ffaa12..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersContinueError.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersContinueError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFolderMembersContinueErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGListFolderMembersContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFolderMembersContinueErrorTag) { - /// (no description). - DBSHARINGListFolderMembersContinueErrorAccessError, - - /// `cursor` in `DBSHARINGListFolderMembersContinueArg` is invalid. - DBSHARINGListFolderMembersContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFolderMembersContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFolderMembersContinueErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFolderMembersContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFolderMembersContinueError` -/// union. -/// -@interface DBSHARINGListFolderMembersContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersContinueError` -/// object. -/// -+ (DBSHARINGListFolderMembersContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersCursorArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersCursorArg.h deleted file mode 100644 index 4fa3ce71..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFolderMembersCursorArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFolderMembersCursorArg; -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFolderMembersCursorArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFolderMembersCursorArg : NSObject - -#pragma mark - Instance fields - -/// This is a list indicating whether each returned member will include a -/// boolean value `allow` in `DBSHARINGMemberPermission` that describes whether -/// the current user can perform the MemberAction on the member. -@property (nonatomic, readonly, nullable) NSArray *actions; - -/// The maximum number of results that include members, groups and invitees to -/// return per request. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param actions This is a list indicating whether each returned member will -/// include a boolean value `allow` in `DBSHARINGMemberPermission` that -/// describes whether the current user can perform the MemberAction on the -/// member. -/// @param limit The maximum number of results that include members, groups and -/// invitees to return per request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActions:(nullable NSArray *)actions limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFolderMembersCursorArg` struct. -/// -@interface DBSHARINGListFolderMembersCursorArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFolderMembersCursorArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFolderMembersCursorArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersCursorArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFolderMembersCursorArg *)instance; - -/// -/// Deserializes `DBSHARINGListFolderMembersCursorArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFolderMembersCursorArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFolderMembersCursorArg` -/// object. -/// -+ (DBSHARINGListFolderMembersCursorArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersArgs.h deleted file mode 100644 index 5c6ba24f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersArgs.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGFolderAction; -@class DBSHARINGListFoldersArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersArgs : NSObject - -#pragma mark - Instance fields - -/// The maximum number of results to return per request. -@property (nonatomic, readonly) NSNumber *limit; - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximum number of results to return per request. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFoldersArgs` struct. -/// -@interface DBSHARINGListFoldersArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersArgs *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersArgs` object. -/// -+ (DBSHARINGListFoldersArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersContinueArg.h deleted file mode 100644 index f4e2e109..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFoldersContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned by the previous API call specified in the endpoint -/// description. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned by the previous API call specified in the -/// endpoint description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFoldersContinueArg` struct. -/// -@interface DBSHARINGListFoldersContinueArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersContinueArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersContinueArg *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersContinueArg` object. -/// -+ (DBSHARINGListFoldersContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersContinueError.h deleted file mode 100644 index bebc3286..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersContinueError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFoldersContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListFoldersContinueErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGListFoldersContinueError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListFoldersContinueErrorTag) { - /// `cursor` in `DBSHARINGListFoldersContinueArg` is invalid. - DBSHARINGListFoldersContinueErrorInvalidCursor, - - /// (no description). - DBSHARINGListFoldersContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListFoldersContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: `cursor` in -/// `DBSHARINGListFoldersContinueArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListFoldersContinueError` union. -/// -@interface DBSHARINGListFoldersContinueErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersContinueError` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersContinueError *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersContinueError` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersContinueError` object. -/// -+ (DBSHARINGListFoldersContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersResult.h deleted file mode 100644 index 1acef614..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListFoldersResult.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListFoldersResult; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListFoldersResult` struct. -/// -/// Result for `listFolders` or `listMountableFolders`, depending on which -/// endpoint was requested. Unmounted shared folders can be identified by the -/// absence of `pathLower` in `DBSHARINGSharedFolderMetadata`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListFoldersResult : NSObject - -#pragma mark - Instance fields - -/// List of all shared folders the authenticated user has access to. -@property (nonatomic, readonly) NSArray *entries; - -/// Present if there are additional shared folders that have not been returned -/// yet. Pass the cursor into the corresponding continue endpoint (either -/// `listFoldersContinue` or `listMountableFoldersContinue`) to list additional -/// folders. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of all shared folders the authenticated user has access -/// to. -/// @param cursor Present if there are additional shared folders that have not -/// been returned yet. Pass the cursor into the corresponding continue endpoint -/// (either `listFoldersContinue` or `listMountableFoldersContinue`) to list -/// additional folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of all shared folders the authenticated user has access -/// to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListFoldersResult` struct. -/// -@interface DBSHARINGListFoldersResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListFoldersResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListFoldersResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListFoldersResult *)instance; - -/// -/// Deserializes `DBSHARINGListFoldersResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListFoldersResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListFoldersResult` object. -/// -+ (DBSHARINGListFoldersResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksArg.h deleted file mode 100644 index bd6eaf72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListSharedLinksArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListSharedLinksArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListSharedLinksArg : NSObject - -#pragma mark - Instance fields - -/// See `listSharedLinks` description. -@property (nonatomic, readonly, copy, nullable) NSString *path; - -/// The cursor returned by your last call to `listSharedLinks`. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// See `listSharedLinks` description. -@property (nonatomic, readonly, nullable) NSNumber *directOnly; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path See `listSharedLinks` description. -/// @param cursor The cursor returned by your last call to `listSharedLinks`. -/// @param directOnly See `listSharedLinks` description. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(nullable NSString *)path - cursor:(nullable NSString *)cursor - directOnly:(nullable NSNumber *)directOnly; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListSharedLinksArg` struct. -/// -@interface DBSHARINGListSharedLinksArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGListSharedLinksArg` instances. -/// -/// @param instance An instance of the `DBSHARINGListSharedLinksArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListSharedLinksArg *)instance; - -/// -/// Deserializes `DBSHARINGListSharedLinksArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksArg` API object. -/// -/// @return An instantiation of the `DBSHARINGListSharedLinksArg` object. -/// -+ (DBSHARINGListSharedLinksArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksError.h deleted file mode 100644 index e0505293..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksError.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESLookupError; -@class DBSHARINGListSharedLinksError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListSharedLinksError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListSharedLinksError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGListSharedLinksErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGListSharedLinksError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGListSharedLinksErrorTag) { - /// (no description). - DBSHARINGListSharedLinksErrorPath, - - /// Indicates that the cursor has been invalidated. Call `listSharedLinks` - /// to obtain a new cursor. - DBSHARINGListSharedLinksErrorReset, - - /// (no description). - DBSHARINGListSharedLinksErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGListSharedLinksErrorTag tag; - -/// (no description). @note Ensure the `isPath` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBFILESLookupError *path; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "path". -/// -/// @param path (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBFILESLookupError *)path; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `listSharedLinks` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `path` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "path". -/// -- (BOOL)isPath; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGListSharedLinksError` union. -/// -@interface DBSHARINGListSharedLinksErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGListSharedLinksError` instances. -/// -/// @param instance An instance of the `DBSHARINGListSharedLinksError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListSharedLinksError *)instance; - -/// -/// Deserializes `DBSHARINGListSharedLinksError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksError` API object. -/// -/// @return An instantiation of the `DBSHARINGListSharedLinksError` object. -/// -+ (DBSHARINGListSharedLinksError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksResult.h deleted file mode 100644 index 1b14d4a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGListSharedLinksResult.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGListSharedLinksResult; -@class DBSHARINGSharedLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListSharedLinksResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGListSharedLinksResult : NSObject - -#pragma mark - Instance fields - -/// Shared links applicable to the path argument. -@property (nonatomic, readonly) NSArray *links; - -/// Is true if there are additional shared links that have not been returned -/// yet. Pass the cursor into `listSharedLinks` to retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `listSharedLinks` to obtain the additional links. -/// Cursor is returned only if no path is given. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param links Shared links applicable to the path argument. -/// @param hasMore Is true if there are additional shared links that have not -/// been returned yet. Pass the cursor into `listSharedLinks` to retrieve them. -/// @param cursor Pass the cursor into `listSharedLinks` to obtain the -/// additional links. Cursor is returned only if no path is given. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinks:(NSArray *)links - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param links Shared links applicable to the path argument. -/// @param hasMore Is true if there are additional shared links that have not -/// been returned yet. Pass the cursor into `listSharedLinks` to retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinks:(NSArray *)links hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListSharedLinksResult` struct. -/// -@interface DBSHARINGListSharedLinksResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGListSharedLinksResult` instances. -/// -/// @param instance An instance of the `DBSHARINGListSharedLinksResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGListSharedLinksResult *)instance; - -/// -/// Deserializes `DBSHARINGListSharedLinksResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGListSharedLinksResult` API object. -/// -/// @return An instantiation of the `DBSHARINGListSharedLinksResult` object. -/// -+ (DBSHARINGListSharedLinksResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberAccessLevelResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberAccessLevelResult.h deleted file mode 100644 index 321f8ab8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberAccessLevelResult.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGParentFolderAccessInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAccessLevelResult` struct. -/// -/// Contains information about a member's access level to content after an -/// operation. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberAccessLevelResult : NSObject - -#pragma mark - Instance fields - -/// The member still has this level of access to the content through a parent -/// folder. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessLevel; - -/// A localized string with additional information about why the user has this -/// access level to the content. -@property (nonatomic, readonly, copy, nullable) NSString *warning; - -/// The parent folders that a member has access to. The field is present if the -/// user has access to the first parent folder where the member gains access. -@property (nonatomic, readonly, nullable) NSArray *accessDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessLevel The member still has this level of access to the content -/// through a parent folder. -/// @param warning A localized string with additional information about why the -/// user has this access level to the content. -/// @param accessDetails The parent folders that a member has access to. The -/// field is present if the user has access to the first parent folder where the -/// member gains access. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - warning:(nullable NSString *)warning - accessDetails:(nullable NSArray *)accessDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAccessLevelResult` struct. -/// -@interface DBSHARINGMemberAccessLevelResultSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberAccessLevelResult` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberAccessLevelResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberAccessLevelResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberAccessLevelResult *)instance; - -/// -/// Deserializes `DBSHARINGMemberAccessLevelResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberAccessLevelResult` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberAccessLevelResult` object. -/// -+ (DBSHARINGMemberAccessLevelResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberAction.h deleted file mode 100644 index adc09ebc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberAction.h +++ /dev/null @@ -1,220 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAction` union. -/// -/// Actions that may be taken on members of a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberAction : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMemberActionTag` enum type represents the possible tag states -/// with which the `DBSHARINGMemberAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMemberActionTag) { - /// Allow the member to keep a copy of the folder when removing. - DBSHARINGMemberActionLeaveACopy, - - /// Make the member an editor of the folder. - DBSHARINGMemberActionMakeEditor, - - /// Make the member an owner of the folder. - DBSHARINGMemberActionMakeOwner, - - /// Make the member a viewer of the folder. - DBSHARINGMemberActionMakeViewer, - - /// Make the member a viewer of the folder without commenting permissions. - DBSHARINGMemberActionMakeViewerNoComment, - - /// Remove the member from the folder. - DBSHARINGMemberActionRemove, - - /// (no description). - DBSHARINGMemberActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMemberActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "leave_a_copy". -/// -/// Description of the "leave_a_copy" tag state: Allow the member to keep a copy -/// of the folder when removing. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLeaveACopy; - -/// -/// Initializes union class with tag state of "make_editor". -/// -/// Description of the "make_editor" tag state: Make the member an editor of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeEditor; - -/// -/// Initializes union class with tag state of "make_owner". -/// -/// Description of the "make_owner" tag state: Make the member an owner of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeOwner; - -/// -/// Initializes union class with tag state of "make_viewer". -/// -/// Description of the "make_viewer" tag state: Make the member a viewer of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeViewer; - -/// -/// Initializes union class with tag state of "make_viewer_no_comment". -/// -/// Description of the "make_viewer_no_comment" tag state: Make the member a -/// viewer of the folder without commenting permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMakeViewerNoComment; - -/// -/// Initializes union class with tag state of "remove". -/// -/// Description of the "remove" tag state: Remove the member from the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemove; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "leave_a_copy". -/// -/// @return Whether the union's current tag state has value "leave_a_copy". -/// -- (BOOL)isLeaveACopy; - -/// -/// Retrieves whether the union's current tag state has value "make_editor". -/// -/// @return Whether the union's current tag state has value "make_editor". -/// -- (BOOL)isMakeEditor; - -/// -/// Retrieves whether the union's current tag state has value "make_owner". -/// -/// @return Whether the union's current tag state has value "make_owner". -/// -- (BOOL)isMakeOwner; - -/// -/// Retrieves whether the union's current tag state has value "make_viewer". -/// -/// @return Whether the union's current tag state has value "make_viewer". -/// -- (BOOL)isMakeViewer; - -/// -/// Retrieves whether the union's current tag state has value -/// "make_viewer_no_comment". -/// -/// @return Whether the union's current tag state has value -/// "make_viewer_no_comment". -/// -- (BOOL)isMakeViewerNoComment; - -/// -/// Retrieves whether the union's current tag state has value "remove". -/// -/// @return Whether the union's current tag state has value "remove". -/// -- (BOOL)isRemove; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMemberAction` union. -/// -@interface DBSHARINGMemberActionSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberAction` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberAction *)instance; - -/// -/// Deserializes `DBSHARINGMemberAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberAction` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberAction` object. -/// -+ (DBSHARINGMemberAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberPermission.h deleted file mode 100644 index 6f95cd6d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberPermission.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAction; -@class DBSHARINGMemberPermission; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPermission` struct. -/// -/// Whether the user is allowed to take the action on the associated member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberPermission : NSObject - -#pragma mark - Instance fields - -/// The action that the user may wish to take on the member. -@property (nonatomic, readonly) DBSHARINGMemberAction *action; - -/// True if the user is allowed to take the action. -@property (nonatomic, readonly) NSNumber *allow; - -/// The reason why the user is denied the permission. Not present if the action -/// is allowed. -@property (nonatomic, readonly, nullable) DBSHARINGPermissionDeniedReason *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The action that the user may wish to take on the member. -/// @param allow True if the user is allowed to take the action. -/// @param reason The reason why the user is denied the permission. Not present -/// if the action is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGMemberAction *)action - allow:(NSNumber *)allow - reason:(nullable DBSHARINGPermissionDeniedReason *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param action The action that the user may wish to take on the member. -/// @param allow True if the user is allowed to take the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBSHARINGMemberAction *)action allow:(NSNumber *)allow; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberPermission` struct. -/// -@interface DBSHARINGMemberPermissionSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberPermission` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberPermission` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberPermission *)instance; - -/// -/// Deserializes `DBSHARINGMemberPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberPermission` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberPermission` object. -/// -+ (DBSHARINGMemberPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberPolicy.h deleted file mode 100644 index cd659591..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPolicy` union. -/// -/// Policy governing who can be a member of a shared folder. Only applicable to -/// folders owned by a user on a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMemberPolicyTag` enum type represents the possible tag states -/// with which the `DBSHARINGMemberPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMemberPolicyTag) { - /// Only a teammate can become a member. - DBSHARINGMemberPolicyTeam, - - /// Anyone can become a member. - DBSHARINGMemberPolicyAnyone, - - /// (no description). - DBSHARINGMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Only a teammate can become a member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Anyone can become a member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMemberPolicy` union. -/// -@interface DBSHARINGMemberPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberPolicy *)instance; - -/// -/// Deserializes `DBSHARINGMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberPolicy` object. -/// -+ (DBSHARINGMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberSelector.h deleted file mode 100644 index 29853774..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMemberSelector.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSelector` union. -/// -/// Includes different ways to identify a member of a shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMemberSelector : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMemberSelectorTag` enum type represents the possible tag -/// states with which the `DBSHARINGMemberSelector` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMemberSelectorTag) { - /// Dropbox account, team member, or group ID of member. - DBSHARINGMemberSelectorDropboxId, - - /// Email address of member. - DBSHARINGMemberSelectorEmail, - - /// (no description). - DBSHARINGMemberSelectorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMemberSelectorTag tag; - -/// Dropbox account, team member, or group ID of member. @note Ensure the -/// `isDropboxId` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *dropboxId; - -/// Email address of member. @note Ensure the `isEmail` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *email; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "dropbox_id". -/// -/// Description of the "dropbox_id" tag state: Dropbox account, team member, or -/// group ID of member. -/// -/// @param dropboxId Dropbox account, team member, or group ID of member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxId:(NSString *)dropboxId; - -/// -/// Initializes union class with tag state of "email". -/// -/// Description of the "email" tag state: Email address of member. -/// -/// @param email Email address of member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "dropbox_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "dropbox_id". -/// -- (BOOL)isDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `email` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMemberSelector` union. -/// -@interface DBSHARINGMemberSelectorSerializer : NSObject - -/// -/// Serializes `DBSHARINGMemberSelector` instances. -/// -/// @param instance An instance of the `DBSHARINGMemberSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMemberSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMemberSelector *)instance; - -/// -/// Deserializes `DBSHARINGMemberSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMemberSelector` API object. -/// -/// @return An instantiation of the `DBSHARINGMemberSelector` object. -/// -+ (DBSHARINGMemberSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMembershipInfo.h deleted file mode 100644 index 292a14b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMembershipInfo.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberPermission; -@class DBSHARINGMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembershipInfo` struct. -/// -/// The information about a member of the shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMembershipInfo : NSObject - -#pragma mark - Instance fields - -/// The access type for this member. It contains inherited access type from -/// parent folder, and acquired access type from this folder. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessType; - -/// The permissions that requesting user has on this member. The set of -/// permissions corresponds to the MemberActions in the request. -@property (nonatomic, readonly, nullable) NSArray *permissions; - -/// Never set. -@property (nonatomic, readonly, copy, nullable) NSString *initials; - -/// True if the member has access from a parent folder. -@property (nonatomic, readonly) NSNumber *isInherited; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembershipInfo` struct. -/// -@interface DBSHARINGMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGMembershipInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGMembershipInfo` object. -/// -+ (DBSHARINGMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGModifySharedLinkSettingsArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGModifySharedLinkSettingsArgs.h deleted file mode 100644 index a382392b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGModifySharedLinkSettingsArgs.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGModifySharedLinkSettingsArgs; -@class DBSHARINGSharedLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ModifySharedLinkSettingsArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGModifySharedLinkSettingsArgs : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link to change its settings. -@property (nonatomic, readonly, copy) NSString *url; - -/// Set of settings for the shared link. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettings *settings; - -/// If set to true, removes the expiration of the shared link. -@property (nonatomic, readonly) NSNumber *removeExpiration; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// @param removeExpiration If set to true, removes the expiration of the shared -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - settings:(DBSHARINGSharedLinkSettings *)settings - removeExpiration:(nullable NSNumber *)removeExpiration; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url settings:(DBSHARINGSharedLinkSettings *)settings; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ModifySharedLinkSettingsArgs` struct. -/// -@interface DBSHARINGModifySharedLinkSettingsArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGModifySharedLinkSettingsArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGModifySharedLinkSettingsArgs` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGModifySharedLinkSettingsArgs *)instance; - -/// -/// Deserializes `DBSHARINGModifySharedLinkSettingsArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGModifySharedLinkSettingsArgs` -/// object. -/// -+ (DBSHARINGModifySharedLinkSettingsArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGModifySharedLinkSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGModifySharedLinkSettingsError.h deleted file mode 100644 index 61629c95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGModifySharedLinkSettingsError.h +++ /dev/null @@ -1,224 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGModifySharedLinkSettingsError; -@class DBSHARINGSharedLinkSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ModifySharedLinkSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGModifySharedLinkSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGModifySharedLinkSettingsErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGModifySharedLinkSettingsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGModifySharedLinkSettingsErrorTag) { - /// The shared link wasn't found. - DBSHARINGModifySharedLinkSettingsErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGModifySharedLinkSettingsErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGModifySharedLinkSettingsErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGModifySharedLinkSettingsErrorOther, - - /// There is an error with the given settings. - DBSHARINGModifySharedLinkSettingsErrorSettingsError, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGModifySharedLinkSettingsErrorEmailNotVerified, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGModifySharedLinkSettingsErrorTag tag; - -/// There is an error with the given settings. @note Ensure the -/// `isSettingsError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettingsError *settingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "settings_error". -/// -/// Description of the "settings_error" tag state: There is an error with the -/// given settings. -/// -/// @param settingsError There is an error with the given settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSettingsError:(DBSHARINGSharedLinkSettingsError *)settingsError; - -/// -/// Initializes union class with tag state of "email_not_verified". -/// -/// Description of the "email_not_verified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailNotVerified; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `settingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "settings_error". -/// -- (BOOL)isSettingsError; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "email_not_verified". -/// -- (BOOL)isEmailNotVerified; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGModifySharedLinkSettingsError` -/// union. -/// -@interface DBSHARINGModifySharedLinkSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGModifySharedLinkSettingsError` instances. -/// -/// @param instance An instance of the `DBSHARINGModifySharedLinkSettingsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGModifySharedLinkSettingsError *)instance; - -/// -/// Deserializes `DBSHARINGModifySharedLinkSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGModifySharedLinkSettingsError` API object. -/// -/// @return An instantiation of the `DBSHARINGModifySharedLinkSettingsError` -/// object. -/// -+ (DBSHARINGModifySharedLinkSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMountFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMountFolderArg.h deleted file mode 100644 index 97fa2e47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMountFolderArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMountFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MountFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMountFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID of the shared folder to mount. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID of the shared folder to mount. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MountFolderArg` struct. -/// -@interface DBSHARINGMountFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGMountFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGMountFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMountFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGMountFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGMountFolderArg` object. -/// -+ (DBSHARINGMountFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMountFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMountFolderError.h deleted file mode 100644 index f4957f95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGMountFolderError.h +++ /dev/null @@ -1,244 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientQuotaAmounts; -@class DBSHARINGMountFolderError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MountFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGMountFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGMountFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGMountFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGMountFolderErrorTag) { - /// (no description). - DBSHARINGMountFolderErrorAccessError, - - /// Mounting would cause a shared folder to be inside another, which is - /// disallowed. - DBSHARINGMountFolderErrorInsideSharedFolder, - - /// The current user does not have enough space to mount the shared folder. - DBSHARINGMountFolderErrorInsufficientQuota, - - /// The shared folder is already mounted. - DBSHARINGMountFolderErrorAlreadyMounted, - - /// The current user does not have permission to perform this action. - DBSHARINGMountFolderErrorNoPermission, - - /// The shared folder is not mountable. One example where this can occur is - /// when the shared folder belongs within a team folder in the user's - /// Dropbox. - DBSHARINGMountFolderErrorNotMountable, - - /// (no description). - DBSHARINGMountFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGMountFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// The current user does not have enough space to mount the shared folder. -/// @note Ensure the `isInsufficientQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGInsufficientQuotaAmounts *insufficientQuota; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "inside_shared_folder". -/// -/// Description of the "inside_shared_folder" tag state: Mounting would cause a -/// shared folder to be inside another, which is disallowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideSharedFolder; - -/// -/// Initializes union class with tag state of "insufficient_quota". -/// -/// Description of the "insufficient_quota" tag state: The current user does not -/// have enough space to mount the shared folder. -/// -/// @param insufficientQuota The current user does not have enough space to -/// mount the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientQuota:(DBSHARINGInsufficientQuotaAmounts *)insufficientQuota; - -/// -/// Initializes union class with tag state of "already_mounted". -/// -/// Description of the "already_mounted" tag state: The shared folder is already -/// mounted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyMounted; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "not_mountable". -/// -/// Description of the "not_mountable" tag state: The shared folder is not -/// mountable. One example where this can occur is when the shared folder -/// belongs within a team folder in the user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotMountable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_shared_folder". -/// -- (BOOL)isInsideSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `insufficientQuota` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "insufficient_quota". -/// -- (BOOL)isInsufficientQuota; - -/// -/// Retrieves whether the union's current tag state has value "already_mounted". -/// -/// @return Whether the union's current tag state has value "already_mounted". -/// -- (BOOL)isAlreadyMounted; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "not_mountable". -/// -/// @return Whether the union's current tag state has value "not_mountable". -/// -- (BOOL)isNotMountable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGMountFolderError` union. -/// -@interface DBSHARINGMountFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGMountFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGMountFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGMountFolderError *)instance; - -/// -/// Deserializes `DBSHARINGMountFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGMountFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGMountFolderError` object. -/// -+ (DBSHARINGMountFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGParentFolderAccessInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGParentFolderAccessInfo.h deleted file mode 100644 index 92a63b9a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGParentFolderAccessInfo.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberPermission; -@class DBSHARINGParentFolderAccessInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ParentFolderAccessInfo` struct. -/// -/// Contains information about a parent folder that a member has access to. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGParentFolderAccessInfo : NSObject - -#pragma mark - Instance fields - -/// Display name for the folder. -@property (nonatomic, readonly, copy) NSString *folderName; - -/// The identifier of the parent shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The user's permissions for the parent shared folder. -@property (nonatomic, readonly) NSArray *permissions; - -/// The full path to the parent shared folder relative to the acting user's -/// root. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderName Display name for the folder. -/// @param sharedFolderId The identifier of the parent shared folder. -/// @param permissions The user's permissions for the parent shared folder. -/// @param path The full path to the parent shared folder relative to the acting -/// user's root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderName:(NSString *)folderName - sharedFolderId:(NSString *)sharedFolderId - permissions:(NSArray *)permissions - path:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ParentFolderAccessInfo` struct. -/// -@interface DBSHARINGParentFolderAccessInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGParentFolderAccessInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGParentFolderAccessInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGParentFolderAccessInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGParentFolderAccessInfo *)instance; - -/// -/// Deserializes `DBSHARINGParentFolderAccessInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGParentFolderAccessInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGParentFolderAccessInfo` object. -/// -+ (DBSHARINGParentFolderAccessInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPathLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPathLinkMetadata.h deleted file mode 100644 index b559dc01..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPathLinkMetadata.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGLinkMetadata.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGPathLinkMetadata; -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathLinkMetadata` struct. -/// -/// Metadata for a path-based shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGPathLinkMetadata : DBSHARINGLinkMetadata - -#pragma mark - Instance fields - -/// Path in user's Dropbox. -@property (nonatomic, readonly, copy) NSString *path; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param path Path in user's Dropbox. -/// @param expires Expiration time, if set. By default the link won't expire. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - visibility:(DBSHARINGVisibility *)visibility - path:(NSString *)path - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param visibility Who can access the link. -/// @param path Path in user's Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url visibility:(DBSHARINGVisibility *)visibility path:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PathLinkMetadata` struct. -/// -@interface DBSHARINGPathLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGPathLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGPathLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGPathLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGPathLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGPathLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGPathLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGPathLinkMetadata` object. -/// -+ (DBSHARINGPathLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPendingUploadMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPendingUploadMode.h deleted file mode 100644 index 25dee377..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPendingUploadMode.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGPendingUploadMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PendingUploadMode` union. -/// -/// Flag to indicate pending upload default (for linking to not-yet-existing -/// paths). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGPendingUploadMode : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGPendingUploadModeTag` enum type represents the possible tag -/// states with which the `DBSHARINGPendingUploadMode` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGPendingUploadModeTag) { - /// Assume pending uploads are files. - DBSHARINGPendingUploadModeFile, - - /// Assume pending uploads are folders. - DBSHARINGPendingUploadModeFolder, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGPendingUploadModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file". -/// -/// Description of the "file" tag state: Assume pending uploads are files. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: Assume pending uploads are folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file". -/// -/// @return Whether the union's current tag state has value "file". -/// -- (BOOL)isFile; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGPendingUploadMode` union. -/// -@interface DBSHARINGPendingUploadModeSerializer : NSObject - -/// -/// Serializes `DBSHARINGPendingUploadMode` instances. -/// -/// @param instance An instance of the `DBSHARINGPendingUploadMode` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGPendingUploadMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGPendingUploadMode *)instance; - -/// -/// Deserializes `DBSHARINGPendingUploadMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGPendingUploadMode` API object. -/// -/// @return An instantiation of the `DBSHARINGPendingUploadMode` object. -/// -+ (DBSHARINGPendingUploadMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPermissionDeniedReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPermissionDeniedReason.h deleted file mode 100644 index 1b478799..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGPermissionDeniedReason.h +++ /dev/null @@ -1,427 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGInsufficientPlan; -@class DBSHARINGPermissionDeniedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PermissionDeniedReason` union. -/// -/// Possible reasons the user is denied a permission. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGPermissionDeniedReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGPermissionDeniedReasonTag` enum type represents the possible -/// tag states with which the `DBSHARINGPermissionDeniedReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGPermissionDeniedReasonTag) { - /// User is not on the same team as the folder owner. - DBSHARINGPermissionDeniedReasonUserNotSameTeamAsOwner, - - /// User is prohibited by the owner from taking the action. - DBSHARINGPermissionDeniedReasonUserNotAllowedByOwner, - - /// Target is indirectly a member of the folder, for example by being part - /// of a group. - DBSHARINGPermissionDeniedReasonTargetIsIndirectMember, - - /// Target is the owner of the folder. - DBSHARINGPermissionDeniedReasonTargetIsOwner, - - /// Target is the user itself. - DBSHARINGPermissionDeniedReasonTargetIsSelf, - - /// Target is not an active member of the team. - DBSHARINGPermissionDeniedReasonTargetNotActive, - - /// Folder is team folder for a limited team. - DBSHARINGPermissionDeniedReasonFolderIsLimitedTeamFolder, - - /// The content owner needs to be on a Dropbox team to perform this action. - DBSHARINGPermissionDeniedReasonOwnerNotOnTeam, - - /// The user does not have permission to perform this action on the link. - DBSHARINGPermissionDeniedReasonPermissionDenied, - - /// The user's team policy prevents performing this action on the link. - DBSHARINGPermissionDeniedReasonRestrictedByTeam, - - /// The user's account type does not support this action. - DBSHARINGPermissionDeniedReasonUserAccountType, - - /// The user needs to be on a Dropbox team to perform this action. - DBSHARINGPermissionDeniedReasonUserNotOnTeam, - - /// Folder is inside of another shared folder. - DBSHARINGPermissionDeniedReasonFolderIsInsideSharedFolder, - - /// Policy cannot be changed due to restrictions from parent folder. - DBSHARINGPermissionDeniedReasonRestrictedByParentFolder, - - /// (no description). - DBSHARINGPermissionDeniedReasonInsufficientPlan, - - /// (no description). - DBSHARINGPermissionDeniedReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGPermissionDeniedReasonTag tag; - -/// (no description). @note Ensure the `isInsufficientPlan` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGInsufficientPlan *insufficientPlan; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_same_team_as_owner". -/// -/// Description of the "user_not_same_team_as_owner" tag state: User is not on -/// the same team as the folder owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotSameTeamAsOwner; - -/// -/// Initializes union class with tag state of "user_not_allowed_by_owner". -/// -/// Description of the "user_not_allowed_by_owner" tag state: User is prohibited -/// by the owner from taking the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotAllowedByOwner; - -/// -/// Initializes union class with tag state of "target_is_indirect_member". -/// -/// Description of the "target_is_indirect_member" tag state: Target is -/// indirectly a member of the folder, for example by being part of a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetIsIndirectMember; - -/// -/// Initializes union class with tag state of "target_is_owner". -/// -/// Description of the "target_is_owner" tag state: Target is the owner of the -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetIsOwner; - -/// -/// Initializes union class with tag state of "target_is_self". -/// -/// Description of the "target_is_self" tag state: Target is the user itself. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetIsSelf; - -/// -/// Initializes union class with tag state of "target_not_active". -/// -/// Description of the "target_not_active" tag state: Target is not an active -/// member of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetNotActive; - -/// -/// Initializes union class with tag state of "folder_is_limited_team_folder". -/// -/// Description of the "folder_is_limited_team_folder" tag state: Folder is team -/// folder for a limited team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderIsLimitedTeamFolder; - -/// -/// Initializes union class with tag state of "owner_not_on_team". -/// -/// Description of the "owner_not_on_team" tag state: The content owner needs to -/// be on a Dropbox team to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwnerNotOnTeam; - -/// -/// Initializes union class with tag state of "permission_denied". -/// -/// Description of the "permission_denied" tag state: The user does not have -/// permission to perform this action on the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDenied; - -/// -/// Initializes union class with tag state of "restricted_by_team". -/// -/// Description of the "restricted_by_team" tag state: The user's team policy -/// prevents performing this action on the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByTeam; - -/// -/// Initializes union class with tag state of "user_account_type". -/// -/// Description of the "user_account_type" tag state: The user's account type -/// does not support this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAccountType; - -/// -/// Initializes union class with tag state of "user_not_on_team". -/// -/// Description of the "user_not_on_team" tag state: The user needs to be on a -/// Dropbox team to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotOnTeam; - -/// -/// Initializes union class with tag state of "folder_is_inside_shared_folder". -/// -/// Description of the "folder_is_inside_shared_folder" tag state: Folder is -/// inside of another shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderIsInsideSharedFolder; - -/// -/// Initializes union class with tag state of "restricted_by_parent_folder". -/// -/// Description of the "restricted_by_parent_folder" tag state: Policy cannot be -/// changed due to restrictions from parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByParentFolder; - -/// -/// Initializes union class with tag state of "insufficient_plan". -/// -/// @param insufficientPlan (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPlan:(DBSHARINGInsufficientPlan *)insufficientPlan; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_same_team_as_owner". -/// -/// @return Whether the union's current tag state has value -/// "user_not_same_team_as_owner". -/// -- (BOOL)isUserNotSameTeamAsOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_allowed_by_owner". -/// -/// @return Whether the union's current tag state has value -/// "user_not_allowed_by_owner". -/// -- (BOOL)isUserNotAllowedByOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "target_is_indirect_member". -/// -/// @return Whether the union's current tag state has value -/// "target_is_indirect_member". -/// -- (BOOL)isTargetIsIndirectMember; - -/// -/// Retrieves whether the union's current tag state has value "target_is_owner". -/// -/// @return Whether the union's current tag state has value "target_is_owner". -/// -- (BOOL)isTargetIsOwner; - -/// -/// Retrieves whether the union's current tag state has value "target_is_self". -/// -/// @return Whether the union's current tag state has value "target_is_self". -/// -- (BOOL)isTargetIsSelf; - -/// -/// Retrieves whether the union's current tag state has value -/// "target_not_active". -/// -/// @return Whether the union's current tag state has value "target_not_active". -/// -- (BOOL)isTargetNotActive; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_is_limited_team_folder". -/// -/// @return Whether the union's current tag state has value -/// "folder_is_limited_team_folder". -/// -- (BOOL)isFolderIsLimitedTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "owner_not_on_team". -/// -/// @return Whether the union's current tag state has value "owner_not_on_team". -/// -- (BOOL)isOwnerNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied". -/// -/// @return Whether the union's current tag state has value "permission_denied". -/// -- (BOOL)isPermissionDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_team". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_team". -/// -- (BOOL)isRestrictedByTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_account_type". -/// -/// @return Whether the union's current tag state has value "user_account_type". -/// -- (BOOL)isUserAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_on_team". -/// -/// @return Whether the union's current tag state has value "user_not_on_team". -/// -- (BOOL)isUserNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_is_inside_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "folder_is_inside_shared_folder". -/// -- (BOOL)isFolderIsInsideSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_parent_folder". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_parent_folder". -/// -- (BOOL)isRestrictedByParentFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_plan". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `insufficientPlan` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "insufficient_plan". -/// -- (BOOL)isInsufficientPlan; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGPermissionDeniedReason` union. -/// -@interface DBSHARINGPermissionDeniedReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGPermissionDeniedReason` instances. -/// -/// @param instance An instance of the `DBSHARINGPermissionDeniedReason` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGPermissionDeniedReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGPermissionDeniedReason *)instance; - -/// -/// Deserializes `DBSHARINGPermissionDeniedReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGPermissionDeniedReason` API object. -/// -/// @return An instantiation of the `DBSHARINGPermissionDeniedReason` object. -/// -+ (DBSHARINGPermissionDeniedReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFileMembershipArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFileMembershipArg.h deleted file mode 100644 index b75c8193..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFileMembershipArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFileMembershipArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFileMembershipArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFileMembershipArg : NSObject - -#pragma mark - Instance fields - -/// The path or id for the file. -@property (nonatomic, readonly, copy) NSString *file; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The path or id for the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelinquishFileMembershipArg` struct. -/// -@interface DBSHARINGRelinquishFileMembershipArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFileMembershipArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRelinquishFileMembershipArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFileMembershipArg *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFileMembershipArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFileMembershipArg` -/// object. -/// -+ (DBSHARINGRelinquishFileMembershipArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFileMembershipError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFileMembershipError.h deleted file mode 100644 index 90e5b70e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFileMembershipError.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFileMembershipError; -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFileMembershipError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFileMembershipError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRelinquishFileMembershipErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGRelinquishFileMembershipError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRelinquishFileMembershipErrorTag) { - /// (no description). - DBSHARINGRelinquishFileMembershipErrorAccessError, - - /// The current user has access to the shared file via a group. You can't - /// relinquish membership to a file shared via groups. - DBSHARINGRelinquishFileMembershipErrorGroupAccess, - - /// The current user does not have permission to perform this action. - DBSHARINGRelinquishFileMembershipErrorNoPermission, - - /// (no description). - DBSHARINGRelinquishFileMembershipErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRelinquishFileMembershipErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "group_access". -/// -/// Description of the "group_access" tag state: The current user has access to -/// the shared file via a group. You can't relinquish membership to a file -/// shared via groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAccess; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "group_access". -/// -/// @return Whether the union's current tag state has value "group_access". -/// -- (BOOL)isGroupAccess; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRelinquishFileMembershipError` -/// union. -/// -@interface DBSHARINGRelinquishFileMembershipErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFileMembershipError` instances. -/// -/// @param instance An instance of the `DBSHARINGRelinquishFileMembershipError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFileMembershipError *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFileMembershipError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFileMembershipError` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFileMembershipError` -/// object. -/// -+ (DBSHARINGRelinquishFileMembershipError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFolderMembershipArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFolderMembershipArg.h deleted file mode 100644 index f8c62b1b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFolderMembershipArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFolderMembershipArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFolderMembershipArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFolderMembershipArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// Keep a copy of the folder's contents upon relinquishing membership. This -/// must be set to false when the folder is within a team folder or another -/// shared folder. -@property (nonatomic, readonly) NSNumber *leaveACopy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy Keep a copy of the folder's contents upon relinquishing -/// membership. This must be set to false when the folder is within a team -/// folder or another shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelinquishFolderMembershipArg` struct. -/// -@interface DBSHARINGRelinquishFolderMembershipArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFolderMembershipArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRelinquishFolderMembershipArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFolderMembershipArg *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFolderMembershipArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFolderMembershipArg` -/// object. -/// -+ (DBSHARINGRelinquishFolderMembershipArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFolderMembershipError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFolderMembershipError.h deleted file mode 100644 index 5a197bd9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRelinquishFolderMembershipError.h +++ /dev/null @@ -1,258 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelinquishFolderMembershipError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRelinquishFolderMembershipError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRelinquishFolderMembershipErrorTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGRelinquishFolderMembershipError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRelinquishFolderMembershipErrorTag) { - /// (no description). - DBSHARINGRelinquishFolderMembershipErrorAccessError, - - /// The current user is the owner of the shared folder. Owners cannot - /// relinquish membership to their own folders. Try unsharing or - /// transferring ownership first. - DBSHARINGRelinquishFolderMembershipErrorFolderOwner, - - /// The shared folder is currently mounted. Unmount the shared folder - /// before relinquishing membership. - DBSHARINGRelinquishFolderMembershipErrorMounted, - - /// The current user has access to the shared folder via a group. You can't - /// relinquish membership to folders shared via groups. - DBSHARINGRelinquishFolderMembershipErrorGroupAccess, - - /// This action cannot be performed on a team shared folder. - DBSHARINGRelinquishFolderMembershipErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGRelinquishFolderMembershipErrorNoPermission, - - /// The current user only has inherited access to the shared folder. You - /// can't relinquish inherited membership to folders. - DBSHARINGRelinquishFolderMembershipErrorNoExplicitAccess, - - /// (no description). - DBSHARINGRelinquishFolderMembershipErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRelinquishFolderMembershipErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "folder_owner". -/// -/// Description of the "folder_owner" tag state: The current user is the owner -/// of the shared folder. Owners cannot relinquish membership to their own -/// folders. Try unsharing or transferring ownership first. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOwner; - -/// -/// Initializes union class with tag state of "mounted". -/// -/// Description of the "mounted" tag state: The shared folder is currently -/// mounted. Unmount the shared folder before relinquishing membership. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMounted; - -/// -/// Initializes union class with tag state of "group_access". -/// -/// Description of the "group_access" tag state: The current user has access to -/// the shared folder via a group. You can't relinquish membership to folders -/// shared via groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAccess; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: The current user only has -/// inherited access to the shared folder. You can't relinquish inherited -/// membership to folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "folder_owner". -/// -/// @return Whether the union's current tag state has value "folder_owner". -/// -- (BOOL)isFolderOwner; - -/// -/// Retrieves whether the union's current tag state has value "mounted". -/// -/// @return Whether the union's current tag state has value "mounted". -/// -- (BOOL)isMounted; - -/// -/// Retrieves whether the union's current tag state has value "group_access". -/// -/// @return Whether the union's current tag state has value "group_access". -/// -- (BOOL)isGroupAccess; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRelinquishFolderMembershipError` -/// union. -/// -@interface DBSHARINGRelinquishFolderMembershipErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRelinquishFolderMembershipError` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGRelinquishFolderMembershipError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRelinquishFolderMembershipError *)instance; - -/// -/// Deserializes `DBSHARINGRelinquishFolderMembershipError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRelinquishFolderMembershipError` API object. -/// -/// @return An instantiation of the `DBSHARINGRelinquishFolderMembershipError` -/// object. -/// -+ (DBSHARINGRelinquishFolderMembershipError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFileMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFileMemberArg.h deleted file mode 100644 index 9e3adcc6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFileMemberArg.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberSelector; -@class DBSHARINGRemoveFileMemberArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFileMemberArg` struct. -/// -/// Arguments for `removeFileMember2`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFileMemberArg : NSObject - -#pragma mark - Instance fields - -/// File from which to remove members. -@property (nonatomic, readonly, copy) NSString *file; - -/// Member to remove from this file. Note that even if an email is specified, it -/// may result in the removal of a user (not an invitee) if the user's main -/// account corresponds to that email address. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file File from which to remove members. -/// @param member Member to remove from this file. Note that even if an email is -/// specified, it may result in the removal of a user (not an invitee) if the -/// user's main account corresponds to that email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file member:(DBSHARINGMemberSelector *)member; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveFileMemberArg` struct. -/// -@interface DBSHARINGRemoveFileMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFileMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFileMemberArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFileMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFileMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFileMemberArg` object. -/// -+ (DBSHARINGRemoveFileMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFileMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFileMemberError.h deleted file mode 100644 index 618cd2e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFileMemberError.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGRemoveFileMemberError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFileMemberError` union. -/// -/// Errors for `removeFileMember2`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFileMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRemoveFileMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGRemoveFileMemberError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRemoveFileMemberErrorTag) { - /// (no description). - DBSHARINGRemoveFileMemberErrorUserError, - - /// (no description). - DBSHARINGRemoveFileMemberErrorAccessError, - - /// This member does not have explicit access to the file and therefore - /// cannot be removed. The return value is the access that a user might have - /// to the file from a parent folder. - DBSHARINGRemoveFileMemberErrorNoExplicitAccess, - - /// (no description). - DBSHARINGRemoveFileMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRemoveFileMemberErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -/// This member does not have explicit access to the file and therefore cannot -/// be removed. The return value is the access that a user might have to the -/// file from a parent folder. @note Ensure the `isNoExplicitAccess` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: This member does not have -/// explicit access to the file and therefore cannot be removed. The return -/// value is the access that a user might have to the file from a parent folder. -/// -/// @param noExplicitAccess This member does not have explicit access to the -/// file and therefore cannot be removed. The return value is the access that a -/// user might have to the file from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGMemberAccessLevelResult *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRemoveFileMemberError` union. -/// -@interface DBSHARINGRemoveFileMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFileMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFileMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFileMemberError *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFileMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFileMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFileMemberError` object. -/// -+ (DBSHARINGRemoveFileMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFolderMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFolderMemberArg.h deleted file mode 100644 index 9ffa5857..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFolderMemberArg.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberSelector; -@class DBSHARINGRemoveFolderMemberArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFolderMemberArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFolderMemberArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The member to remove from the folder. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// If true, the removed user will keep their copy of the folder after it's -/// unshared, assuming it was mounted. Otherwise, it will be removed from their -/// Dropbox. This must be set to false when removing a group, or when the folder -/// is within a team folder or another shared folder. -@property (nonatomic, readonly) NSNumber *leaveACopy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member to remove from the folder. -/// @param leaveACopy If true, the removed user will keep their copy of the -/// folder after it's unshared, assuming it was mounted. Otherwise, it will be -/// removed from their Dropbox. This must be set to false when removing a group, -/// or when the folder is within a team folder or another shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - leaveACopy:(NSNumber *)leaveACopy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemoveFolderMemberArg` struct. -/// -@interface DBSHARINGRemoveFolderMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFolderMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFolderMemberArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFolderMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFolderMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFolderMemberArg` object. -/// -+ (DBSHARINGRemoveFolderMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFolderMemberError.h deleted file mode 100644 index 52cabe42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveFolderMemberError.h +++ /dev/null @@ -1,257 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRemoveFolderMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGRemoveFolderMemberError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRemoveFolderMemberErrorTag) { - /// (no description). - DBSHARINGRemoveFolderMemberErrorAccessError, - - /// (no description). - DBSHARINGRemoveFolderMemberErrorMemberError, - - /// The target user is the owner of the shared folder. You can't remove this - /// user until ownership has been transferred to another member. - DBSHARINGRemoveFolderMemberErrorFolderOwner, - - /// The target user has access to the shared folder via a group. - DBSHARINGRemoveFolderMemberErrorGroupAccess, - - /// This action cannot be performed on a team shared folder. - DBSHARINGRemoveFolderMemberErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGRemoveFolderMemberErrorNoPermission, - - /// This shared folder has too many files for leaving a copy. You can still - /// remove this user without leaving a copy. - DBSHARINGRemoveFolderMemberErrorTooManyFiles, - - /// (no description). - DBSHARINGRemoveFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRemoveFolderMemberErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// (no description). @note Ensure the `isMemberError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMemberError *memberError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// @param memberError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGSharedFolderMemberError *)memberError; - -/// -/// Initializes union class with tag state of "folder_owner". -/// -/// Description of the "folder_owner" tag state: The target user is the owner of -/// the shared folder. You can't remove this user until ownership has been -/// transferred to another member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOwner; - -/// -/// Initializes union class with tag state of "group_access". -/// -/// Description of the "group_access" tag state: The target user has access to -/// the shared folder via a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAccess; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: This shared folder has too -/// many files for leaving a copy. You can still remove this user without -/// leaving a copy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves whether the union's current tag state has value "folder_owner". -/// -/// @return Whether the union's current tag state has value "folder_owner". -/// -- (BOOL)isFolderOwner; - -/// -/// Retrieves whether the union's current tag state has value "group_access". -/// -/// @return Whether the union's current tag state has value "group_access". -/// -- (BOOL)isGroupAccess; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRemoveFolderMemberError` union. -/// -@interface DBSHARINGRemoveFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGRemoveFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveFolderMemberError` object. -/// -+ (DBSHARINGRemoveFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveMemberJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveMemberJobStatus.h deleted file mode 100644 index 0420fe95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRemoveMemberJobStatus.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGRemoveMemberJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveMemberJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRemoveMemberJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRemoveMemberJobStatusTag` enum type represents the possible -/// tag states with which the `DBSHARINGRemoveMemberJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRemoveMemberJobStatusTag) { - /// The asynchronous job is still in progress. - DBSHARINGRemoveMemberJobStatusInProgress, - - /// Removing the folder member has finished. The value is information about - /// whether the member has another form of access. - DBSHARINGRemoveMemberJobStatusComplete, - - /// (no description). - DBSHARINGRemoveMemberJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRemoveMemberJobStatusTag tag; - -/// Removing the folder member has finished. The value is information about -/// whether the member has another form of access. @note Ensure the `isComplete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *complete; - -/// (no description). @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGRemoveFolderMemberError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: Removing the folder member has -/// finished. The value is information about whether the member has another form -/// of access. -/// -/// @param complete Removing the folder member has finished. The value is -/// information about whether the member has another form of access. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBSHARINGMemberAccessLevelResult *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// @param failed (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBSHARINGRemoveFolderMemberError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRemoveMemberJobStatus` union. -/// -@interface DBSHARINGRemoveMemberJobStatusSerializer : NSObject - -/// -/// Serializes `DBSHARINGRemoveMemberJobStatus` instances. -/// -/// @param instance An instance of the `DBSHARINGRemoveMemberJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRemoveMemberJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRemoveMemberJobStatus *)instance; - -/// -/// Deserializes `DBSHARINGRemoveMemberJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRemoveMemberJobStatus` API object. -/// -/// @return An instantiation of the `DBSHARINGRemoveMemberJobStatus` object. -/// -+ (DBSHARINGRemoveMemberJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRequestedLinkAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRequestedLinkAccessLevel.h deleted file mode 100644 index a0e1fdce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRequestedLinkAccessLevel.h +++ /dev/null @@ -1,180 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRequestedLinkAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RequestedLinkAccessLevel` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRequestedLinkAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRequestedLinkAccessLevelTag` enum type represents the possible -/// tag states with which the `DBSHARINGRequestedLinkAccessLevel` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRequestedLinkAccessLevelTag) { - /// Users who use the link can view and comment on the content. - DBSHARINGRequestedLinkAccessLevelViewer, - - /// Users who use the link can edit, view and comment on the content. Note - /// not all file types support edit links yet. - DBSHARINGRequestedLinkAccessLevelEditor, - - /// Request for the maximum access level you can set the link to. - DBSHARINGRequestedLinkAccessLevelMax, - - /// Request for the default access level the user has set. - DBSHARINGRequestedLinkAccessLevelDefault_, - - /// (no description). - DBSHARINGRequestedLinkAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRequestedLinkAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "viewer". -/// -/// Description of the "viewer" tag state: Users who use the link can view and -/// comment on the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "editor". -/// -/// Description of the "editor" tag state: Users who use the link can edit, view -/// and comment on the content. Note not all file types support edit links yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "max". -/// -/// Description of the "max" tag state: Request for the maximum access level you -/// can set the link to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMax; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: Request for the default access level -/// the user has set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "max". -/// -/// @return Whether the union's current tag state has value "max". -/// -- (BOOL)isMax; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRequestedLinkAccessLevel` union. -/// -@interface DBSHARINGRequestedLinkAccessLevelSerializer : NSObject - -/// -/// Serializes `DBSHARINGRequestedLinkAccessLevel` instances. -/// -/// @param instance An instance of the `DBSHARINGRequestedLinkAccessLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRequestedLinkAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRequestedLinkAccessLevel *)instance; - -/// -/// Deserializes `DBSHARINGRequestedLinkAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRequestedLinkAccessLevel` API object. -/// -/// @return An instantiation of the `DBSHARINGRequestedLinkAccessLevel` object. -/// -+ (DBSHARINGRequestedLinkAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRequestedVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRequestedVisibility.h deleted file mode 100644 index d9122302..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRequestedVisibility.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRequestedVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RequestedVisibility` union. -/// -/// The access permission that can be requested by the caller for the shared -/// link. Note that the final resolved visibility of the shared link takes into -/// account other aspects, such as team and shared folder settings. Check the -/// ResolvedVisibility for more info on the possible resolved visibility values -/// of shared links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRequestedVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRequestedVisibilityTag` enum type represents the possible tag -/// states with which the `DBSHARINGRequestedVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRequestedVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGRequestedVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGRequestedVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGRequestedVisibilityPassword, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRequestedVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRequestedVisibility` union. -/// -@interface DBSHARINGRequestedVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGRequestedVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGRequestedVisibility` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRequestedVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRequestedVisibility *)instance; - -/// -/// Deserializes `DBSHARINGRequestedVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRequestedVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGRequestedVisibility` object. -/// -+ (DBSHARINGRequestedVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGResolvedVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGResolvedVisibility.h deleted file mode 100644 index fd9eec27..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGResolvedVisibility.h +++ /dev/null @@ -1,256 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGResolvedVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResolvedVisibility` union. -/// -/// The actual access permissions values of shared links after taking into -/// account user preferences and the team and shared folder settings. Check the -/// RequestedVisibility for more info on the possible visibility values that can -/// be set by the shared link's owner. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGResolvedVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGResolvedVisibilityTag` enum type represents the possible tag -/// states with which the `DBSHARINGResolvedVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGResolvedVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGResolvedVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGResolvedVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGResolvedVisibilityPassword, - - /// Only members of the same team who have the link-specific password can - /// access the link. Login is required. - DBSHARINGResolvedVisibilityTeamAndPassword, - - /// Only members of the shared folder containing the linked file can access - /// the link. Login is required. - DBSHARINGResolvedVisibilitySharedFolderOnly, - - /// The link merely points the user to the content, and does not grant any - /// additional rights. Existing members of the content who use this link can - /// only access the content with their pre-existing access rights. Either on - /// the file directly, or inherited from a parent folder. - DBSHARINGResolvedVisibilityNoOne, - - /// Only the current user can view this link. - DBSHARINGResolvedVisibilityOnlyYou, - - /// (no description). - DBSHARINGResolvedVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGResolvedVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "team_and_password". -/// -/// Description of the "team_and_password" tag state: Only members of the same -/// team who have the link-specific password can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndPassword; - -/// -/// Initializes union class with tag state of "shared_folder_only". -/// -/// Description of the "shared_folder_only" tag state: Only members of the -/// shared folder containing the linked file can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderOnly; - -/// -/// Initializes union class with tag state of "no_one". -/// -/// Description of the "no_one" tag state: The link merely points the user to -/// the content, and does not grant any additional rights. Existing members of -/// the content who use this link can only access the content with their -/// pre-existing access rights. Either on the file directly, or inherited from a -/// parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "only_you". -/// -/// Description of the "only_you" tag state: Only the current user can view this -/// link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyYou; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_password". -/// -/// @return Whether the union's current tag state has value "team_and_password". -/// -- (BOOL)isTeamAndPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_only". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_only". -/// -- (BOOL)isSharedFolderOnly; - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "only_you". -/// -/// @return Whether the union's current tag state has value "only_you". -/// -- (BOOL)isOnlyYou; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGResolvedVisibility` union. -/// -@interface DBSHARINGResolvedVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGResolvedVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGResolvedVisibility` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGResolvedVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGResolvedVisibility *)instance; - -/// -/// Deserializes `DBSHARINGResolvedVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGResolvedVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGResolvedVisibility` object. -/// -+ (DBSHARINGResolvedVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRevokeSharedLinkArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRevokeSharedLinkArg.h deleted file mode 100644 index 2e52c936..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRevokeSharedLinkArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRevokeSharedLinkArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeSharedLinkArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRevokeSharedLinkArg : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeSharedLinkArg` struct. -/// -@interface DBSHARINGRevokeSharedLinkArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGRevokeSharedLinkArg` instances. -/// -/// @param instance An instance of the `DBSHARINGRevokeSharedLinkArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRevokeSharedLinkArg *)instance; - -/// -/// Deserializes `DBSHARINGRevokeSharedLinkArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkArg` API object. -/// -/// @return An instantiation of the `DBSHARINGRevokeSharedLinkArg` object. -/// -+ (DBSHARINGRevokeSharedLinkArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRevokeSharedLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRevokeSharedLinkError.h deleted file mode 100644 index fc8749e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRevokeSharedLinkError.h +++ /dev/null @@ -1,186 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGRevokeSharedLinkError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeSharedLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGRevokeSharedLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGRevokeSharedLinkErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGRevokeSharedLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGRevokeSharedLinkErrorTag) { - /// The shared link wasn't found. - DBSHARINGRevokeSharedLinkErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGRevokeSharedLinkErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGRevokeSharedLinkErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGRevokeSharedLinkErrorOther, - - /// Shared link is malformed. - DBSHARINGRevokeSharedLinkErrorSharedLinkMalformed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGRevokeSharedLinkErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "shared_link_malformed". -/// -/// Description of the "shared_link_malformed" tag state: Shared link is -/// malformed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkMalformed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_malformed". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_malformed". -/// -- (BOOL)isSharedLinkMalformed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGRevokeSharedLinkError` union. -/// -@interface DBSHARINGRevokeSharedLinkErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGRevokeSharedLinkError` instances. -/// -/// @param instance An instance of the `DBSHARINGRevokeSharedLinkError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGRevokeSharedLinkError *)instance; - -/// -/// Deserializes `DBSHARINGRevokeSharedLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGRevokeSharedLinkError` API object. -/// -/// @return An instantiation of the `DBSHARINGRevokeSharedLinkError` object. -/// -+ (DBSHARINGRevokeSharedLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRouteObjects.h deleted file mode 100644 index 4999af3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGRouteObjects.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Sharing namespace. Each route in the Sharing -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBSHARINGRouteObjects : NSObject - -/// Accessor method for the addFileMember route object. -+ (DBRoute *)DBSHARINGAddFileMember; - -/// Accessor method for the addFolderMember route object. -+ (DBRoute *)DBSHARINGAddFolderMember; - -/// Accessor method for the checkJobStatus route object. -+ (DBRoute *)DBSHARINGCheckJobStatus; - -/// Accessor method for the checkRemoveMemberJobStatus route object. -+ (DBRoute *)DBSHARINGCheckRemoveMemberJobStatus; - -/// Accessor method for the checkShareJobStatus route object. -+ (DBRoute *)DBSHARINGCheckShareJobStatus; - -/// Accessor method for the createSharedLink route object. -+ (DBRoute *)DBSHARINGCreateSharedLink; - -/// Accessor method for the createSharedLinkWithSettings route object. -+ (DBRoute *)DBSHARINGCreateSharedLinkWithSettings; - -/// Accessor method for the getFileMetadata route object. -+ (DBRoute *)DBSHARINGGetFileMetadata; - -/// Accessor method for the getFileMetadataBatch route object. -+ (DBRoute *)DBSHARINGGetFileMetadataBatch; - -/// Accessor method for the getFolderMetadata route object. -+ (DBRoute *)DBSHARINGGetFolderMetadata; - -/// Accessor method for the getSharedLinkFile route object. -+ (DBRoute *)DBSHARINGGetSharedLinkFile; - -/// Accessor method for the getSharedLinkMetadata route object. -+ (DBRoute *)DBSHARINGGetSharedLinkMetadata; - -/// Accessor method for the getSharedLinks route object. -+ (DBRoute *)DBSHARINGGetSharedLinks; - -/// Accessor method for the listFileMembers route object. -+ (DBRoute *)DBSHARINGListFileMembers; - -/// Accessor method for the listFileMembersBatch route object. -+ (DBRoute *)DBSHARINGListFileMembersBatch; - -/// Accessor method for the listFileMembersContinue route object. -+ (DBRoute *)DBSHARINGListFileMembersContinue; - -/// Accessor method for the listFolderMembers route object. -+ (DBRoute *)DBSHARINGListFolderMembers; - -/// Accessor method for the listFolderMembersContinue route object. -+ (DBRoute *)DBSHARINGListFolderMembersContinue; - -/// Accessor method for the listFolders route object. -+ (DBRoute *)DBSHARINGListFolders; - -/// Accessor method for the listFoldersContinue route object. -+ (DBRoute *)DBSHARINGListFoldersContinue; - -/// Accessor method for the listMountableFolders route object. -+ (DBRoute *)DBSHARINGListMountableFolders; - -/// Accessor method for the listMountableFoldersContinue route object. -+ (DBRoute *)DBSHARINGListMountableFoldersContinue; - -/// Accessor method for the listReceivedFiles route object. -+ (DBRoute *)DBSHARINGListReceivedFiles; - -/// Accessor method for the listReceivedFilesContinue route object. -+ (DBRoute *)DBSHARINGListReceivedFilesContinue; - -/// Accessor method for the listSharedLinks route object. -+ (DBRoute *)DBSHARINGListSharedLinks; - -/// Accessor method for the modifySharedLinkSettings route object. -+ (DBRoute *)DBSHARINGModifySharedLinkSettings; - -/// Accessor method for the mountFolder route object. -+ (DBRoute *)DBSHARINGMountFolder; - -/// Accessor method for the relinquishFileMembership route object. -+ (DBRoute *)DBSHARINGRelinquishFileMembership; - -/// Accessor method for the relinquishFolderMembership route object. -+ (DBRoute *)DBSHARINGRelinquishFolderMembership; - -/// Accessor method for the removeFileMember route object. -+ (DBRoute *)DBSHARINGRemoveFileMember; - -/// Accessor method for the removeFileMember2 route object. -+ (DBRoute *)DBSHARINGRemoveFileMember2; - -/// Accessor method for the removeFolderMember route object. -+ (DBRoute *)DBSHARINGRemoveFolderMember; - -/// Accessor method for the revokeSharedLink route object. -+ (DBRoute *)DBSHARINGRevokeSharedLink; - -/// Accessor method for the setAccessInheritance route object. -+ (DBRoute *)DBSHARINGSetAccessInheritance; - -/// Accessor method for the shareFolder route object. -+ (DBRoute *)DBSHARINGShareFolder; - -/// Accessor method for the transferFolder route object. -+ (DBRoute *)DBSHARINGTransferFolder; - -/// Accessor method for the unmountFolder route object. -+ (DBRoute *)DBSHARINGUnmountFolder; - -/// Accessor method for the unshareFile route object. -+ (DBRoute *)DBSHARINGUnshareFile; - -/// Accessor method for the unshareFolder route object. -+ (DBRoute *)DBSHARINGUnshareFolder; - -/// Accessor method for the updateFileMember route object. -+ (DBRoute *)DBSHARINGUpdateFileMember; - -/// Accessor method for the updateFolderMember route object. -+ (DBRoute *)DBSHARINGUpdateFolderMember; - -/// Accessor method for the updateFolderPolicy route object. -+ (DBRoute *)DBSHARINGUpdateFolderPolicy; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSetAccessInheritanceArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSetAccessInheritanceArg.h deleted file mode 100644 index 6f127b37..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSetAccessInheritanceArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGSetAccessInheritanceArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetAccessInheritanceArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSetAccessInheritanceArg : NSObject - -#pragma mark - Instance fields - -/// The access inheritance settings for the folder. -@property (nonatomic, readonly) DBSHARINGAccessInheritance *accessInheritance; - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param accessInheritance The access inheritance settings for the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetAccessInheritanceArg` struct. -/// -@interface DBSHARINGSetAccessInheritanceArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGSetAccessInheritanceArg` instances. -/// -/// @param instance An instance of the `DBSHARINGSetAccessInheritanceArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSetAccessInheritanceArg *)instance; - -/// -/// Deserializes `DBSHARINGSetAccessInheritanceArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceArg` API object. -/// -/// @return An instantiation of the `DBSHARINGSetAccessInheritanceArg` object. -/// -+ (DBSHARINGSetAccessInheritanceArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSetAccessInheritanceError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSetAccessInheritanceError.h deleted file mode 100644 index 3ebc6a2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSetAccessInheritanceError.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSetAccessInheritanceError; -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetAccessInheritanceError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSetAccessInheritanceError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSetAccessInheritanceErrorTag` enum type represents the -/// possible tag states with which the `DBSHARINGSetAccessInheritanceError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSetAccessInheritanceErrorTag) { - /// Unable to access shared folder. - DBSHARINGSetAccessInheritanceErrorAccessError, - - /// The current user does not have permission to perform this action. - DBSHARINGSetAccessInheritanceErrorNoPermission, - - /// (no description). - DBSHARINGSetAccessInheritanceErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSetAccessInheritanceErrorTag tag; - -/// Unable to access shared folder. @note Ensure the `isAccessError` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// Description of the "access_error" tag state: Unable to access shared folder. -/// -/// @param accessError Unable to access shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSetAccessInheritanceError` union. -/// -@interface DBSHARINGSetAccessInheritanceErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSetAccessInheritanceError` instances. -/// -/// @param instance An instance of the `DBSHARINGSetAccessInheritanceError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSetAccessInheritanceError *)instance; - -/// -/// Deserializes `DBSHARINGSetAccessInheritanceError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSetAccessInheritanceError` API object. -/// -/// @return An instantiation of the `DBSHARINGSetAccessInheritanceError` object. -/// -+ (DBSHARINGSetAccessInheritanceError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderArg.h deleted file mode 100644 index 588e084b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderArg.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGShareFolderArgBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGFolderAction; -@class DBSHARINGLinkSettings; -@class DBSHARINGMemberPolicy; -@class DBSHARINGShareFolderArg; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderArg : DBSHARINGShareFolderArgBase - -#pragma mark - Instance fields - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -/// Settings on the link for this folder. -@property (nonatomic, readonly, nullable) DBSHARINGLinkSettings *linkSettings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param forceAsync Whether to force the share to happen asynchronously. -/// @param memberPolicy Who can be a member of this shared folder. Only -/// applicable if the current user is on a team. -/// @param sharedLinkPolicy The policy to apply to shared links created for -/// content inside this shared folder. The current user must be on a team to -/// set this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// @param accessInheritance The access inheritance settings for the folder. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// @param linkSettings Settings on the link for this folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - forceAsync:(nullable NSNumber *)forceAsync - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance - actions:(nullable NSArray *)actions - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShareFolderArg` struct. -/// -@interface DBSHARINGShareFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderArg` object. -/// -+ (DBSHARINGShareFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderArgBase.h deleted file mode 100644 index 3fd73e82..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderArgBase.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGMemberPolicy; -@class DBSHARINGShareFolderArgBase; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderArgBase : NSObject - -#pragma mark - Instance fields - -/// Who can add and remove members of this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *aclUpdatePolicy; - -/// Whether to force the share to happen asynchronously. -@property (nonatomic, readonly) NSNumber *forceAsync; - -/// Who can be a member of this shared folder. Only applicable if the current -/// user is on a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *memberPolicy; - -/// The path or the file id to the folder to share. If it does not exist, then a -/// new one is created. -@property (nonatomic, readonly, copy) NSString *path; - -/// The policy to apply to shared links created for content inside this shared -/// folder. The current user must be on a team to set this policy to `members` -/// in `DBSHARINGSharedLinkPolicy`. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *sharedLinkPolicy; - -/// Who can enable/disable viewer info for this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *viewerInfoPolicy; - -/// The access inheritance settings for the folder. -@property (nonatomic, readonly) DBSHARINGAccessInheritance *accessInheritance; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param forceAsync Whether to force the share to happen asynchronously. -/// @param memberPolicy Who can be a member of this shared folder. Only -/// applicable if the current user is on a team. -/// @param sharedLinkPolicy The policy to apply to shared links created for -/// content inside this shared folder. The current user must be on a team to -/// set this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// @param accessInheritance The access inheritance settings for the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - forceAsync:(nullable NSNumber *)forceAsync - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path The path or the file id to the folder to share. If it does not -/// exist, then a new one is created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(NSString *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShareFolderArgBase` struct. -/// -@interface DBSHARINGShareFolderArgBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderArgBase` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderArgBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderArgBase *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderArgBase` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderArgBase` object. -/// -+ (DBSHARINGShareFolderArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderError.h deleted file mode 100644 index 52c98611..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderError.h +++ /dev/null @@ -1,221 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderError; -@class DBSHARINGSharePathError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderErrorTag) { - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGShareFolderErrorEmailUnverified, - - /// `path` in `DBSHARINGShareFolderArg` is invalid. - DBSHARINGShareFolderErrorBadPath, - - /// Team policy is more restrictive than `memberPolicy` in - /// `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorTeamPolicyDisallowsMemberPolicy, - - /// The current user's account is not allowed to select the specified - /// `sharedLinkPolicy` in `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorDisallowedSharedLinkPolicy, - - /// (no description). - DBSHARINGShareFolderErrorOther, - - /// The current user does not have permission to perform this action. - DBSHARINGShareFolderErrorNoPermission, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderErrorTag tag; - -/// `path` in `DBSHARINGShareFolderArg` is invalid. @note Ensure the `isBadPath` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGSharePathError *badPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "bad_path". -/// -/// Description of the "bad_path" tag state: `path` in `DBSHARINGShareFolderArg` -/// is invalid. -/// -/// @param badPath `path` in `DBSHARINGShareFolderArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadPath:(DBSHARINGSharePathError *)badPath; - -/// -/// Initializes union class with tag state of -/// "team_policy_disallows_member_policy". -/// -/// Description of the "team_policy_disallows_member_policy" tag state: Team -/// policy is more restrictive than `memberPolicy` in `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicyDisallowsMemberPolicy; - -/// -/// Initializes union class with tag state of "disallowed_shared_link_policy". -/// -/// Description of the "disallowed_shared_link_policy" tag state: The current -/// user's account is not allowed to select the specified `sharedLinkPolicy` in -/// `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedSharedLinkPolicy; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "bad_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `badPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "bad_path". -/// -- (BOOL)isBadPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -- (BOOL)isTeamPolicyDisallowsMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -- (BOOL)isDisallowedSharedLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderError` union. -/// -@interface DBSHARINGShareFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderError *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderError` object. -/// -+ (DBSHARINGShareFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderErrorBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderErrorBase.h deleted file mode 100644 index 6f490789..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderErrorBase.h +++ /dev/null @@ -1,202 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderErrorBase; -@class DBSHARINGSharePathError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderErrorBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderErrorBase : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderErrorBaseTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderErrorBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderErrorBaseTag) { - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGShareFolderErrorBaseEmailUnverified, - - /// `path` in `DBSHARINGShareFolderArg` is invalid. - DBSHARINGShareFolderErrorBaseBadPath, - - /// Team policy is more restrictive than `memberPolicy` in - /// `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorBaseTeamPolicyDisallowsMemberPolicy, - - /// The current user's account is not allowed to select the specified - /// `sharedLinkPolicy` in `DBSHARINGShareFolderArg`. - DBSHARINGShareFolderErrorBaseDisallowedSharedLinkPolicy, - - /// (no description). - DBSHARINGShareFolderErrorBaseOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderErrorBaseTag tag; - -/// `path` in `DBSHARINGShareFolderArg` is invalid. @note Ensure the `isBadPath` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBSHARINGSharePathError *badPath; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "bad_path". -/// -/// Description of the "bad_path" tag state: `path` in `DBSHARINGShareFolderArg` -/// is invalid. -/// -/// @param badPath `path` in `DBSHARINGShareFolderArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadPath:(DBSHARINGSharePathError *)badPath; - -/// -/// Initializes union class with tag state of -/// "team_policy_disallows_member_policy". -/// -/// Description of the "team_policy_disallows_member_policy" tag state: Team -/// policy is more restrictive than `memberPolicy` in `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicyDisallowsMemberPolicy; - -/// -/// Initializes union class with tag state of "disallowed_shared_link_policy". -/// -/// Description of the "disallowed_shared_link_policy" tag state: The current -/// user's account is not allowed to select the specified `sharedLinkPolicy` in -/// `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedSharedLinkPolicy; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "bad_path". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `badPath` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "bad_path". -/// -- (BOOL)isBadPath; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -- (BOOL)isTeamPolicyDisallowsMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -- (BOOL)isDisallowedSharedLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderErrorBase` union. -/// -@interface DBSHARINGShareFolderErrorBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderErrorBase` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderErrorBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderErrorBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderErrorBase *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderErrorBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderErrorBase` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderErrorBase` object. -/// -+ (DBSHARINGShareFolderErrorBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderJobStatus.h deleted file mode 100644 index 63e3b772..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderJobStatus.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderError; -@class DBSHARINGShareFolderJobStatus; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderJobStatusTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderJobStatusTag) { - /// The asynchronous job is still in progress. - DBSHARINGShareFolderJobStatusInProgress, - - /// The share job has finished. The value is the metadata for the folder. - DBSHARINGShareFolderJobStatusComplete, - - /// (no description). - DBSHARINGShareFolderJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderJobStatusTag tag; - -/// The share job has finished. The value is the metadata for the folder. @note -/// Ensure the `isComplete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *complete; - -/// (no description). @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGShareFolderError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The share job has finished. The -/// value is the metadata for the folder. -/// -/// @param complete The share job has finished. The value is the metadata for -/// the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBSHARINGSharedFolderMetadata *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// @param failed (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBSHARINGShareFolderError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderJobStatus` union. -/// -@interface DBSHARINGShareFolderJobStatusSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderJobStatus` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderJobStatus *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderJobStatus` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderJobStatus` object. -/// -+ (DBSHARINGShareFolderJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderLaunch.h deleted file mode 100644 index c7d916e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGShareFolderLaunch.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGShareFolderLaunch; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShareFolderLaunch` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGShareFolderLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGShareFolderLaunchTag` enum type represents the possible tag -/// states with which the `DBSHARINGShareFolderLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGShareFolderLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBSHARINGShareFolderLaunchAsyncJobId, - - /// (no description). - DBSHARINGShareFolderLaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGShareFolderLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBSHARINGSharedFolderMetadata *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGShareFolderLaunch` union. -/// -@interface DBSHARINGShareFolderLaunchSerializer : NSObject - -/// -/// Serializes `DBSHARINGShareFolderLaunch` instances. -/// -/// @param instance An instance of the `DBSHARINGShareFolderLaunch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGShareFolderLaunch *)instance; - -/// -/// Deserializes `DBSHARINGShareFolderLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGShareFolderLaunch` API object. -/// -/// @return An instantiation of the `DBSHARINGShareFolderLaunch` object. -/// -+ (DBSHARINGShareFolderLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharePathError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharePathError.h deleted file mode 100644 index 0720d050..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharePathError.h +++ /dev/null @@ -1,443 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharePathError; -@class DBSHARINGSharedFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharePathError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharePathError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharePathErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharePathError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharePathErrorTag) { - /// A file is at the specified path. - DBSHARINGSharePathErrorIsFile, - - /// We do not support sharing a folder inside a shared folder. - DBSHARINGSharePathErrorInsideSharedFolder, - - /// We do not support shared folders that contain shared folders. - DBSHARINGSharePathErrorContainsSharedFolder, - - /// We do not support shared folders that contain app folders. - DBSHARINGSharePathErrorContainsAppFolder, - - /// We do not support shared folders that contain team folders. - DBSHARINGSharePathErrorContainsTeamFolder, - - /// We do not support sharing an app folder. - DBSHARINGSharePathErrorIsAppFolder, - - /// We do not support sharing a folder inside an app folder. - DBSHARINGSharePathErrorInsideAppFolder, - - /// A public folder can't be shared this way. Use a public link instead. - DBSHARINGSharePathErrorIsPublicFolder, - - /// A folder inside a public folder can't be shared this way. Use a public - /// link instead. - DBSHARINGSharePathErrorInsidePublicFolder, - - /// Folder is already shared. Contains metadata about the existing shared - /// folder. - DBSHARINGSharePathErrorAlreadyShared, - - /// Path is not valid. - DBSHARINGSharePathErrorInvalidPath, - - /// We do not support sharing a Mac OS X package. - DBSHARINGSharePathErrorIsOsxPackage, - - /// We do not support sharing a folder inside a Mac OS X package. - DBSHARINGSharePathErrorInsideOsxPackage, - - /// We do not support sharing the Vault folder. - DBSHARINGSharePathErrorIsVault, - - /// We do not support sharing a folder inside a locked Vault. - DBSHARINGSharePathErrorIsVaultLocked, - - /// We do not support sharing the Family folder. - DBSHARINGSharePathErrorIsFamily, - - /// (no description). - DBSHARINGSharePathErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharePathErrorTag tag; - -/// Folder is already shared. Contains metadata about the existing shared -/// folder. @note Ensure the `isAlreadyShared` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMetadata *alreadyShared; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "is_file". -/// -/// Description of the "is_file" tag state: A file is at the specified path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFile; - -/// -/// Initializes union class with tag state of "inside_shared_folder". -/// -/// Description of the "inside_shared_folder" tag state: We do not support -/// sharing a folder inside a shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideSharedFolder; - -/// -/// Initializes union class with tag state of "contains_shared_folder". -/// -/// Description of the "contains_shared_folder" tag state: We do not support -/// shared folders that contain shared folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContainsSharedFolder; - -/// -/// Initializes union class with tag state of "contains_app_folder". -/// -/// Description of the "contains_app_folder" tag state: We do not support shared -/// folders that contain app folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContainsAppFolder; - -/// -/// Initializes union class with tag state of "contains_team_folder". -/// -/// Description of the "contains_team_folder" tag state: We do not support -/// shared folders that contain team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContainsTeamFolder; - -/// -/// Initializes union class with tag state of "is_app_folder". -/// -/// Description of the "is_app_folder" tag state: We do not support sharing an -/// app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsAppFolder; - -/// -/// Initializes union class with tag state of "inside_app_folder". -/// -/// Description of the "inside_app_folder" tag state: We do not support sharing -/// a folder inside an app folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideAppFolder; - -/// -/// Initializes union class with tag state of "is_public_folder". -/// -/// Description of the "is_public_folder" tag state: A public folder can't be -/// shared this way. Use a public link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsPublicFolder; - -/// -/// Initializes union class with tag state of "inside_public_folder". -/// -/// Description of the "inside_public_folder" tag state: A folder inside a -/// public folder can't be shared this way. Use a public link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsidePublicFolder; - -/// -/// Initializes union class with tag state of "already_shared". -/// -/// Description of the "already_shared" tag state: Folder is already shared. -/// Contains metadata about the existing shared folder. -/// -/// @param alreadyShared Folder is already shared. Contains metadata about the -/// existing shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyShared:(DBSHARINGSharedFolderMetadata *)alreadyShared; - -/// -/// Initializes union class with tag state of "invalid_path". -/// -/// Description of the "invalid_path" tag state: Path is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidPath; - -/// -/// Initializes union class with tag state of "is_osx_package". -/// -/// Description of the "is_osx_package" tag state: We do not support sharing a -/// Mac OS X package. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsOsxPackage; - -/// -/// Initializes union class with tag state of "inside_osx_package". -/// -/// Description of the "inside_osx_package" tag state: We do not support sharing -/// a folder inside a Mac OS X package. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideOsxPackage; - -/// -/// Initializes union class with tag state of "is_vault". -/// -/// Description of the "is_vault" tag state: We do not support sharing the Vault -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsVault; - -/// -/// Initializes union class with tag state of "is_vault_locked". -/// -/// Description of the "is_vault_locked" tag state: We do not support sharing a -/// folder inside a locked Vault. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsVaultLocked; - -/// -/// Initializes union class with tag state of "is_family". -/// -/// Description of the "is_family" tag state: We do not support sharing the -/// Family folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFamily; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "is_file". -/// -/// @return Whether the union's current tag state has value "is_file". -/// -- (BOOL)isIsFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_shared_folder". -/// -- (BOOL)isInsideSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "contains_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "contains_shared_folder". -/// -- (BOOL)isContainsSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "contains_app_folder". -/// -/// @return Whether the union's current tag state has value -/// "contains_app_folder". -/// -- (BOOL)isContainsAppFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "contains_team_folder". -/// -/// @return Whether the union's current tag state has value -/// "contains_team_folder". -/// -- (BOOL)isContainsTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "is_app_folder". -/// -/// @return Whether the union's current tag state has value "is_app_folder". -/// -- (BOOL)isIsAppFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_app_folder". -/// -/// @return Whether the union's current tag state has value "inside_app_folder". -/// -- (BOOL)isInsideAppFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "is_public_folder". -/// -/// @return Whether the union's current tag state has value "is_public_folder". -/// -- (BOOL)isIsPublicFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_public_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_public_folder". -/// -- (BOOL)isInsidePublicFolder; - -/// -/// Retrieves whether the union's current tag state has value "already_shared". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `alreadyShared` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "already_shared". -/// -- (BOOL)isAlreadyShared; - -/// -/// Retrieves whether the union's current tag state has value "invalid_path". -/// -/// @return Whether the union's current tag state has value "invalid_path". -/// -- (BOOL)isInvalidPath; - -/// -/// Retrieves whether the union's current tag state has value "is_osx_package". -/// -/// @return Whether the union's current tag state has value "is_osx_package". -/// -- (BOOL)isIsOsxPackage; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_osx_package". -/// -/// @return Whether the union's current tag state has value -/// "inside_osx_package". -/// -- (BOOL)isInsideOsxPackage; - -/// -/// Retrieves whether the union's current tag state has value "is_vault". -/// -/// @return Whether the union's current tag state has value "is_vault". -/// -- (BOOL)isIsVault; - -/// -/// Retrieves whether the union's current tag state has value "is_vault_locked". -/// -/// @return Whether the union's current tag state has value "is_vault_locked". -/// -- (BOOL)isIsVaultLocked; - -/// -/// Retrieves whether the union's current tag state has value "is_family". -/// -/// @return Whether the union's current tag state has value "is_family". -/// -- (BOOL)isIsFamily; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharePathError` union. -/// -@interface DBSHARINGSharePathErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharePathError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharePathError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharePathError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharePathError *)instance; - -/// -/// Deserializes `DBSHARINGSharePathError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharePathError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharePathError` object. -/// -+ (DBSHARINGSharePathError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedContentLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedContentLinkMetadata.h deleted file mode 100644 index b07bd1e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedContentLinkMetadata.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedContentLinkMetadataBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAudienceExceptions; -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkPermission; -@class DBSHARINGSharedContentLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentLinkMetadata` struct. -/// -/// Metadata of a shared link for a file or folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedContentLinkMetadata : DBSHARINGSharedContentLinkMetadataBase - -#pragma mark - Instance fields - -/// The content inside this folder with link audience different than this -/// folder's. This is only returned when an endpoint that returns metadata for a -/// single shared folder is called, e.g. /get_folder_metadata. -@property (nonatomic, readonly, nullable) DBSHARINGAudienceExceptions *audienceExceptions; - -/// The URL of the link. -@property (nonatomic, readonly, copy) NSString *url; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param url The URL of the link. -/// @param accessLevel The access level on the link for this file. -/// @param audienceRestrictingSharedFolder The shared folder that prevents the -/// link audience for this link from being more restrictive. -/// @param expiry Whether the link has an expiry set on it. A link with an -/// expiry will have its audience changed to members when the expiry is -/// reached. -/// @param audienceExceptions The content inside this folder with link audience -/// different than this folder's. This is only returned when an endpoint that -/// returns metadata for a single shared folder is called, e.g. -/// /get_folder_metadata. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - url:(NSString *)url - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audienceRestrictingSharedFolder: - (nullable DBSHARINGAudienceRestrictingSharedFolder *)audienceRestrictingSharedFolder - expiry:(nullable NSDate *)expiry - audienceExceptions:(nullable DBSHARINGAudienceExceptions *)audienceExceptions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param url The URL of the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - url:(NSString *)url; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentLinkMetadata` struct. -/// -@interface DBSHARINGSharedContentLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedContentLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedContentLinkMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedContentLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedContentLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedContentLinkMetadata` object. -/// -+ (DBSHARINGSharedContentLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedContentLinkMetadataBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedContentLinkMetadataBase.h deleted file mode 100644 index 9c479efc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedContentLinkMetadataBase.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGAudienceRestrictingSharedFolder; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkPermission; -@class DBSHARINGSharedContentLinkMetadataBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentLinkMetadataBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedContentLinkMetadataBase : NSObject - -#pragma mark - Instance fields - -/// The access level on the link for this file. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessLevel; - -/// The audience options that are available for the content. Some audience -/// options may be unavailable. For example, team_only may be unavailable if the -/// content is not owned by a user on a team. The 'default' audience option is -/// always available if the user can modify link settings. -@property (nonatomic, readonly) NSArray *audienceOptions; - -/// The shared folder that prevents the link audience for this link from being -/// more restrictive. -@property (nonatomic, readonly, nullable) DBSHARINGAudienceRestrictingSharedFolder *audienceRestrictingSharedFolder; - -/// The current audience of the link. -@property (nonatomic, readonly) DBSHARINGLinkAudience *currentAudience; - -/// Whether the link has an expiry set on it. A link with an expiry will have -/// its audience changed to members when the expiry is reached. -@property (nonatomic, readonly, nullable) NSDate *expiry; - -/// A list of permissions for actions you can perform on the link. -@property (nonatomic, readonly) NSArray *linkPermissions; - -/// Whether the link is protected by a password. -@property (nonatomic, readonly) NSNumber *passwordProtected; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// @param accessLevel The access level on the link for this file. -/// @param audienceRestrictingSharedFolder The shared folder that prevents the -/// link audience for this link from being more restrictive. -/// @param expiry Whether the link has an expiry set on it. A link with an -/// expiry will have its audience changed to members when the expiry is -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - audienceRestrictingSharedFolder: - (nullable DBSHARINGAudienceRestrictingSharedFolder *)audienceRestrictingSharedFolder - expiry:(nullable NSDate *)expiry; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param audienceOptions The audience options that are available for the -/// content. Some audience options may be unavailable. For example, team_only -/// may be unavailable if the content is not owned by a user on a team. The -/// 'default' audience option is always available if the user can modify link -/// settings. -/// @param currentAudience The current audience of the link. -/// @param linkPermissions A list of permissions for actions you can perform on -/// the link. -/// @param passwordProtected Whether the link is protected by a password. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAudienceOptions:(NSArray *)audienceOptions - currentAudience:(DBSHARINGLinkAudience *)currentAudience - linkPermissions:(NSArray *)linkPermissions - passwordProtected:(NSNumber *)passwordProtected; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentLinkMetadataBase` struct. -/// -@interface DBSHARINGSharedContentLinkMetadataBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedContentLinkMetadataBase` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedContentLinkMetadataBase` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadataBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedContentLinkMetadataBase *)instance; - -/// -/// Deserializes `DBSHARINGSharedContentLinkMetadataBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedContentLinkMetadataBase` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedContentLinkMetadataBase` -/// object. -/// -+ (DBSHARINGSharedContentLinkMetadataBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFileMembers.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFileMembers.h deleted file mode 100644 index e967185b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFileMembers.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGSharedFileMembers; -@class DBSHARINGUserFileMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFileMembers` struct. -/// -/// Shared file user, group, and invitee membership. Used for the results of -/// `listFileMembers` and `listFileMembersContinue`, and used as part of the -/// results for `listFileMembersBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFileMembers : NSObject - -#pragma mark - Instance fields - -/// The list of user members of the shared file. -@property (nonatomic, readonly) NSArray *users; - -/// The list of group members of the shared file. -@property (nonatomic, readonly) NSArray *groups; - -/// The list of invited members of a file, but have not logged in and claimed -/// this. -@property (nonatomic, readonly) NSArray *invitees; - -/// Present if there are additional shared file members that have not been -/// returned yet. Pass the cursor into `listFileMembersContinue` to list -/// additional members. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users The list of user members of the shared file. -/// @param groups The list of group members of the shared file. -/// @param invitees The list of invited members of a file, but have not logged -/// in and claimed this. -/// @param cursor Present if there are additional shared file members that have -/// not been returned yet. Pass the cursor into `listFileMembersContinue` to -/// list additional members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param users The list of user members of the shared file. -/// @param groups The list of group members of the shared file. -/// @param invitees The list of invited members of a file, but have not logged -/// in and claimed this. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFileMembers` struct. -/// -@interface DBSHARINGSharedFileMembersSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFileMembers` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFileMembers` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMembers` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFileMembers *)instance; - -/// -/// Deserializes `DBSHARINGSharedFileMembers` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMembers` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFileMembers` object. -/// -+ (DBSHARINGSharedFileMembers *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFileMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFileMetadata.h deleted file mode 100644 index ce8f6b07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFileMetadata.h +++ /dev/null @@ -1,196 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGFilePermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFileMetadata; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFileMetadata` struct. -/// -/// Properties of the shared file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFileMetadata : NSObject - -#pragma mark - Instance fields - -/// The current user's access level for this shared file. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *accessType; - -/// The ID of the file. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The expected metadata of the link associated for the file when it is first -/// shared. Absent if the link already exists. This is for an unreleased feature -/// so it may not be returned yet. -@property (nonatomic, readonly, nullable) DBSHARINGExpectedSharedContentLinkMetadata *expectedLinkMetadata; - -/// The metadata of the link associated for the file. This is for an unreleased -/// feature so it may not be returned yet. -@property (nonatomic, readonly, nullable) DBSHARINGSharedContentLinkMetadata *linkMetadata; - -/// The name of this file. -@property (nonatomic, readonly, copy) NSString *name; - -/// The display names of the users that own the file. If the file is part of a -/// team folder, the display names of the team admins are also included. Absent -/// if the owner display names cannot be fetched. -@property (nonatomic, readonly, nullable) NSArray *ownerDisplayNames; - -/// The team that owns the file. This field is not present if the file is not -/// owned by a team. -@property (nonatomic, readonly, nullable) DBUSERSTeam *ownerTeam; - -/// The ID of the parent shared folder. This field is present only if the file -/// is contained within a shared folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// The cased path to be used for display purposes only. In rare instances the -/// casing will not correctly match the user's filesystem, but this behavior -/// will match the path provided in the Core API v1. Absent for unmounted files. -@property (nonatomic, readonly, copy, nullable) NSString *pathDisplay; - -/// The lower-case full path of this file. Absent for unmounted files. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// The sharing permissions that requesting user has on this file. This -/// corresponds to the entries given in `actions` in -/// `DBSHARINGGetFileMetadataBatchArg` or `actions` in -/// `DBSHARINGGetFileMetadataArg`. -@property (nonatomic, readonly, nullable) NSArray *permissions; - -/// Policies governing this shared file. -@property (nonatomic, readonly) DBSHARINGFolderPolicy *policy; - -/// URL for displaying a web preview of the shared file. -@property (nonatomic, readonly, copy) NSString *previewUrl; - -/// Timestamp indicating when the current user was invited to this shared file. -/// If the user was not invited to the shared file, the timestamp will indicate -/// when the user was invited to the parent shared folder. This value may be -/// absent. -@property (nonatomic, readonly, nullable) NSDate *timeInvited; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The ID of the file. -/// @param name The name of this file. -/// @param policy Policies governing this shared file. -/// @param previewUrl URL for displaying a web preview of the shared file. -/// @param accessType The current user's access level for this shared file. -/// @param expectedLinkMetadata The expected metadata of the link associated for -/// the file when it is first shared. Absent if the link already exists. This is -/// for an unreleased feature so it may not be returned yet. -/// @param linkMetadata The metadata of the link associated for the file. This -/// is for an unreleased feature so it may not be returned yet. -/// @param ownerDisplayNames The display names of the users that own the file. -/// If the file is part of a team folder, the display names of the team admins -/// are also included. Absent if the owner display names cannot be fetched. -/// @param ownerTeam The team that owns the file. This field is not present if -/// the file is not owned by a team. -/// @param parentSharedFolderId The ID of the parent shared folder. This field -/// is present only if the file is contained within a shared folder. -/// @param pathDisplay The cased path to be used for display purposes only. In -/// rare instances the casing will not correctly match the user's filesystem, -/// but this behavior will match the path provided in the Core API v1. Absent -/// for unmounted files. -/// @param pathLower The lower-case full path of this file. Absent for unmounted -/// files. -/// @param permissions The sharing permissions that requesting user has on this -/// file. This corresponds to the entries given in `actions` in -/// `DBSHARINGGetFileMetadataBatchArg` or `actions` in -/// `DBSHARINGGetFileMetadataArg`. -/// @param timeInvited Timestamp indicating when the current user was invited to -/// this shared file. If the user was not invited to the shared file, the -/// timestamp will indicate when the user was invited to the parent shared -/// folder. This value may be absent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl - accessType:(nullable DBSHARINGAccessLevel *)accessType - expectedLinkMetadata:(nullable DBSHARINGExpectedSharedContentLinkMetadata *)expectedLinkMetadata - linkMetadata:(nullable DBSHARINGSharedContentLinkMetadata *)linkMetadata - ownerDisplayNames:(nullable NSArray *)ownerDisplayNames - ownerTeam:(nullable DBUSERSTeam *)ownerTeam - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - pathDisplay:(nullable NSString *)pathDisplay - pathLower:(nullable NSString *)pathLower - permissions:(nullable NSArray *)permissions - timeInvited:(nullable NSDate *)timeInvited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The ID of the file. -/// @param name The name of this file. -/// @param policy Policies governing this shared file. -/// @param previewUrl URL for displaying a web preview of the shared file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFileMetadata` struct. -/// -@interface DBSHARINGSharedFileMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFileMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFileMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFileMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedFileMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFileMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFileMetadata` object. -/// -+ (DBSHARINGSharedFileMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderAccessError.h deleted file mode 100644 index 7892a865..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderAccessError.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderAccessError` union. -/// -/// There is an error accessing the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedFolderAccessErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharedFolderAccessError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedFolderAccessErrorTag) { - /// This shared folder ID is invalid. - DBSHARINGSharedFolderAccessErrorInvalidId, - - /// The user is not a member of the shared folder thus cannot access it. - DBSHARINGSharedFolderAccessErrorNotAMember, - - /// The user does not exist or their account is disabled. - DBSHARINGSharedFolderAccessErrorInvalidMember, - - /// Never set. - DBSHARINGSharedFolderAccessErrorEmailUnverified, - - /// The shared folder is unmounted. - DBSHARINGSharedFolderAccessErrorUnmounted, - - /// (no description). - DBSHARINGSharedFolderAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_id". -/// -/// Description of the "invalid_id" tag state: This shared folder ID is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidId; - -/// -/// Initializes union class with tag state of "not_a_member". -/// -/// Description of the "not_a_member" tag state: The user is not a member of the -/// shared folder thus cannot access it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAMember; - -/// -/// Initializes union class with tag state of "invalid_member". -/// -/// Description of the "invalid_member" tag state: The user does not exist or -/// their account is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMember; - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: Never set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "unmounted". -/// -/// Description of the "unmounted" tag state: The shared folder is unmounted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnmounted; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_id". -/// -/// @return Whether the union's current tag state has value "invalid_id". -/// -- (BOOL)isInvalidId; - -/// -/// Retrieves whether the union's current tag state has value "not_a_member". -/// -/// @return Whether the union's current tag state has value "not_a_member". -/// -- (BOOL)isNotAMember; - -/// -/// Retrieves whether the union's current tag state has value "invalid_member". -/// -/// @return Whether the union's current tag state has value "invalid_member". -/// -- (BOOL)isInvalidMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "unmounted". -/// -/// @return Whether the union's current tag state has value "unmounted". -/// -- (BOOL)isUnmounted; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedFolderAccessError` union. -/// -@interface DBSHARINGSharedFolderAccessErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderAccessError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderAccessError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderAccessError *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderAccessError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderAccessError` object. -/// -+ (DBSHARINGSharedFolderAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMemberError.h deleted file mode 100644 index 6613cd68..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMemberError.h +++ /dev/null @@ -1,175 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGSharedFolderMemberError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedFolderMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharedFolderMemberError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedFolderMemberErrorTag) { - /// The target dropbox_id is invalid. - DBSHARINGSharedFolderMemberErrorInvalidDropboxId, - - /// The target dropbox_id is not a member of the shared folder. - DBSHARINGSharedFolderMemberErrorNotAMember, - - /// The target member only has inherited access to the shared folder. - DBSHARINGSharedFolderMemberErrorNoExplicitAccess, - - /// (no description). - DBSHARINGSharedFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedFolderMemberErrorTag tag; - -/// The target member only has inherited access to the shared folder. @note -/// Ensure the `isNoExplicitAccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGMemberAccessLevelResult *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_dropbox_id". -/// -/// Description of the "invalid_dropbox_id" tag state: The target dropbox_id is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDropboxId; - -/// -/// Initializes union class with tag state of "not_a_member". -/// -/// Description of the "not_a_member" tag state: The target dropbox_id is not a -/// member of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAMember; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: The target member only -/// has inherited access to the shared folder. -/// -/// @param noExplicitAccess The target member only has inherited access to the -/// shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGMemberAccessLevelResult *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -- (BOOL)isInvalidDropboxId; - -/// -/// Retrieves whether the union's current tag state has value "not_a_member". -/// -/// @return Whether the union's current tag state has value "not_a_member". -/// -- (BOOL)isNotAMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedFolderMemberError` union. -/// -@interface DBSHARINGSharedFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMemberError` object. -/// -+ (DBSHARINGSharedFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMembers.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMembers.h deleted file mode 100644 index 33758f86..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMembers.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGSharedFolderMembers; -@class DBSHARINGUserMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMembers` struct. -/// -/// Shared folder user and group membership. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMembers : NSObject - -#pragma mark - Instance fields - -/// The list of user members of the shared folder. -@property (nonatomic, readonly) NSArray *users; - -/// The list of group members of the shared folder. -@property (nonatomic, readonly) NSArray *groups; - -/// The list of invitees to the shared folder. -@property (nonatomic, readonly) NSArray *invitees; - -/// Present if there are additional shared folder members that have not been -/// returned yet. Pass the cursor into `listFolderMembersContinue` to list -/// additional members. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users The list of user members of the shared folder. -/// @param groups The list of group members of the shared folder. -/// @param invitees The list of invitees to the shared folder. -/// @param cursor Present if there are additional shared folder members that -/// have not been returned yet. Pass the cursor into `listFolderMembersContinue` -/// to list additional members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param users The list of user members of the shared folder. -/// @param groups The list of group members of the shared folder. -/// @param invitees The list of invitees to the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - groups:(NSArray *)groups - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMembers` struct. -/// -@interface DBSHARINGSharedFolderMembersSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMembers` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMembers` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMembers` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMembers *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMembers` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMembers` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMembers` object. -/// -+ (DBSHARINGSharedFolderMembers *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMetadata.h deleted file mode 100644 index 354b6a1c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMetadata.h +++ /dev/null @@ -1,179 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGSharedFolderMetadataBase.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessInheritance; -@class DBSHARINGAccessLevel; -@class DBSHARINGFolderPermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFolderMetadata; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMetadata` struct. -/// -/// The metadata which includes basic information about the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMetadata : DBSHARINGSharedFolderMetadataBase - -#pragma mark - Instance fields - -/// The metadata of the shared content link to this shared folder. Absent if -/// there is no link on the folder. This is for an unreleased feature so it may -/// not be returned yet. -@property (nonatomic, readonly, nullable) DBSHARINGSharedContentLinkMetadata *linkMetadata; - -/// The name of the this shared folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// Actions the current user may perform on the folder and its contents. The set -/// of permissions corresponds to the FolderActions in the request. -@property (nonatomic, readonly, nullable) NSArray *permissions; - -/// Policies governing this shared folder. -@property (nonatomic, readonly) DBSHARINGFolderPolicy *policy; - -/// URL for displaying a web preview of the shared folder. -@property (nonatomic, readonly, copy) NSString *previewUrl; - -/// The ID of the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// Timestamp indicating when the current user was invited to this shared -/// folder. -@property (nonatomic, readonly) NSDate *timeInvited; - -/// Whether the folder inherits its members from its parent. -@property (nonatomic, readonly) DBSHARINGAccessInheritance *accessInheritance; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// @param name The name of the this shared folder. -/// @param policy Policies governing this shared folder. -/// @param previewUrl URL for displaying a web preview of the shared folder. -/// @param sharedFolderId The ID of the shared folder. -/// @param timeInvited Timestamp indicating when the current user was invited to -/// this shared folder. -/// @param ownerDisplayNames The display names of the users that own the folder. -/// If the folder is part of a team folder, the display names of the team admins -/// are also included. Absent if the owner display names cannot be fetched. -/// @param ownerTeam The team that owns the folder. This field is not present if -/// the folder is not owned by a team. -/// @param parentSharedFolderId The ID of the parent shared folder. This field -/// is present only if the folder is contained within another shared folder. -/// @param pathDisplay The full path of this shared folder. Absent for unmounted -/// folders. -/// @param pathLower The lower-cased full path of this shared folder. Absent for -/// unmounted folders. -/// @param parentFolderName Display name for the parent folder. -/// @param linkMetadata The metadata of the shared content link to this shared -/// folder. Absent if there is no link on the folder. This is for an unreleased -/// feature so it may not be returned yet. -/// @param permissions Actions the current user may perform on the folder and -/// its contents. The set of permissions corresponds to the FolderActions in the -/// request. -/// @param accessInheritance Whether the folder inherits its members from its -/// parent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl - sharedFolderId:(NSString *)sharedFolderId - timeInvited:(NSDate *)timeInvited - ownerDisplayNames:(nullable NSArray *)ownerDisplayNames - ownerTeam:(nullable DBUSERSTeam *)ownerTeam - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - pathDisplay:(nullable NSString *)pathDisplay - pathLower:(nullable NSString *)pathLower - parentFolderName:(nullable NSString *)parentFolderName - linkMetadata:(nullable DBSHARINGSharedContentLinkMetadata *)linkMetadata - permissions:(nullable NSArray *)permissions - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// @param name The name of the this shared folder. -/// @param policy Policies governing this shared folder. -/// @param previewUrl URL for displaying a web preview of the shared folder. -/// @param sharedFolderId The ID of the shared folder. -/// @param timeInvited Timestamp indicating when the current user was invited to -/// this shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder - name:(NSString *)name - policy:(DBSHARINGFolderPolicy *)policy - previewUrl:(NSString *)previewUrl - sharedFolderId:(NSString *)sharedFolderId - timeInvited:(NSDate *)timeInvited; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMetadata` struct. -/// -@interface DBSHARINGSharedFolderMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMetadata` object. -/// -+ (DBSHARINGSharedFolderMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMetadataBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMetadataBase.h deleted file mode 100644 index 80907785..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedFolderMetadataBase.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGSharedFolderMetadataBase; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMetadataBase` struct. -/// -/// Properties of the shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedFolderMetadataBase : NSObject - -#pragma mark - Instance fields - -/// The current user's access level for this shared folder. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessType; - -/// Whether this folder is inside of a team folder. -@property (nonatomic, readonly) NSNumber *isInsideTeamFolder; - -/// Whether this folder is a team folder https://www.dropbox.com/en/help/986. -@property (nonatomic, readonly) NSNumber *isTeamFolder; - -/// The display names of the users that own the folder. If the folder is part of -/// a team folder, the display names of the team admins are also included. -/// Absent if the owner display names cannot be fetched. -@property (nonatomic, readonly, nullable) NSArray *ownerDisplayNames; - -/// The team that owns the folder. This field is not present if the folder is -/// not owned by a team. -@property (nonatomic, readonly, nullable) DBUSERSTeam *ownerTeam; - -/// The ID of the parent shared folder. This field is present only if the folder -/// is contained within another shared folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentSharedFolderId; - -/// The full path of this shared folder. Absent for unmounted folders. -@property (nonatomic, readonly, copy, nullable) NSString *pathDisplay; - -/// The lower-cased full path of this shared folder. Absent for unmounted -/// folders. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// Display name for the parent folder. -@property (nonatomic, readonly, copy, nullable) NSString *parentFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// @param ownerDisplayNames The display names of the users that own the folder. -/// If the folder is part of a team folder, the display names of the team admins -/// are also included. Absent if the owner display names cannot be fetched. -/// @param ownerTeam The team that owns the folder. This field is not present if -/// the folder is not owned by a team. -/// @param parentSharedFolderId The ID of the parent shared folder. This field -/// is present only if the folder is contained within another shared folder. -/// @param pathDisplay The full path of this shared folder. Absent for unmounted -/// folders. -/// @param pathLower The lower-cased full path of this shared folder. Absent for -/// unmounted folders. -/// @param parentFolderName Display name for the parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder - ownerDisplayNames:(nullable NSArray *)ownerDisplayNames - ownerTeam:(nullable DBUSERSTeam *)ownerTeam - parentSharedFolderId:(nullable NSString *)parentSharedFolderId - pathDisplay:(nullable NSString *)pathDisplay - pathLower:(nullable NSString *)pathLower - parentFolderName:(nullable NSString *)parentFolderName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The current user's access level for this shared folder. -/// @param isInsideTeamFolder Whether this folder is inside of a team folder. -/// @param isTeamFolder Whether this folder is a team folder -/// https://www.dropbox.com/en/help/986. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - isInsideTeamFolder:(NSNumber *)isInsideTeamFolder - isTeamFolder:(NSNumber *)isTeamFolder; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMetadataBase` struct. -/// -@interface DBSHARINGSharedFolderMetadataBaseSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedFolderMetadataBase` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedFolderMetadataBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadataBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedFolderMetadataBase *)instance; - -/// -/// Deserializes `DBSHARINGSharedFolderMetadataBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedFolderMetadataBase` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedFolderMetadataBase` object. -/// -+ (DBSHARINGSharedFolderMetadataBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkAccessFailureReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkAccessFailureReason.h deleted file mode 100644 index ec2b188c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkAccessFailureReason.h +++ /dev/null @@ -1,207 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkAccessFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAccessFailureReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkAccessFailureReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkAccessFailureReasonTag` enum type represents the -/// possible tag states with which the `DBSHARINGSharedLinkAccessFailureReason` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkAccessFailureReasonTag) { - /// User is not logged in. - DBSHARINGSharedLinkAccessFailureReasonLoginRequired, - - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGSharedLinkAccessFailureReasonEmailVerifyRequired, - - /// The link is password protected. - DBSHARINGSharedLinkAccessFailureReasonPasswordRequired, - - /// Access is allowed for team members only. - DBSHARINGSharedLinkAccessFailureReasonTeamOnly, - - /// Access is allowed for the shared link's owner only. - DBSHARINGSharedLinkAccessFailureReasonOwnerOnly, - - /// (no description). - DBSHARINGSharedLinkAccessFailureReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkAccessFailureReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "login_required". -/// -/// Description of the "login_required" tag state: User is not logged in. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginRequired; - -/// -/// Initializes union class with tag state of "email_verify_required". -/// -/// Description of the "email_verify_required" tag state: This user's email -/// address is not verified. This functionality is only available on accounts -/// with a verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailVerifyRequired; - -/// -/// Initializes union class with tag state of "password_required". -/// -/// Description of the "password_required" tag state: The link is password -/// protected. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordRequired; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Access is allowed for team members -/// only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "owner_only". -/// -/// Description of the "owner_only" tag state: Access is allowed for the shared -/// link's owner only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwnerOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "login_required". -/// -/// @return Whether the union's current tag state has value "login_required". -/// -- (BOOL)isLoginRequired; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_verify_required". -/// -/// @return Whether the union's current tag state has value -/// "email_verify_required". -/// -- (BOOL)isEmailVerifyRequired; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_required". -/// -/// @return Whether the union's current tag state has value "password_required". -/// -- (BOOL)isPasswordRequired; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "owner_only". -/// -/// @return Whether the union's current tag state has value "owner_only". -/// -- (BOOL)isOwnerOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkAccessFailureReason` -/// union. -/// -@interface DBSHARINGSharedLinkAccessFailureReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkAccessFailureReason` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkAccessFailureReason` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAccessFailureReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkAccessFailureReason *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkAccessFailureReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAccessFailureReason` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkAccessFailureReason` -/// object. -/// -+ (DBSHARINGSharedLinkAccessFailureReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkAlreadyExistsMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkAlreadyExistsMetadata.h deleted file mode 100644 index c05c16bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkAlreadyExistsMetadata.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAlreadyExistsMetadata` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkAlreadyExistsMetadata : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkAlreadyExistsMetadataTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkAlreadyExistsMetadataTag) { - /// Metadata of the shared link that already exists. - DBSHARINGSharedLinkAlreadyExistsMetadataMetadata, - - /// (no description). - DBSHARINGSharedLinkAlreadyExistsMetadataOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkAlreadyExistsMetadataTag tag; - -/// Metadata of the shared link that already exists. @note Ensure the -/// `isMetadata` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedLinkMetadata *metadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "metadata". -/// -/// Description of the "metadata" tag state: Metadata of the shared link that -/// already exists. -/// -/// @param metadata Metadata of the shared link that already exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMetadata:(DBSHARINGSharedLinkMetadata *)metadata; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `metadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "metadata". -/// -- (BOOL)isMetadata; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkAlreadyExistsMetadata` -/// union. -/// -@interface DBSHARINGSharedLinkAlreadyExistsMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkAlreadyExistsMetadata` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkAlreadyExistsMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkAlreadyExistsMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkAlreadyExistsMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkAlreadyExistsMetadata` -/// object. -/// -+ (DBSHARINGSharedLinkAlreadyExistsMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkError.h deleted file mode 100644 index 59e2804b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkError.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharedLinkError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkErrorTag) { - /// The shared link wasn't found. - DBSHARINGSharedLinkErrorSharedLinkNotFound, - - /// The caller is not allowed to access this shared link. - DBSHARINGSharedLinkErrorSharedLinkAccessDenied, - - /// This type of link is not supported; use `files` instead. - DBSHARINGSharedLinkErrorUnsupportedLinkType, - - /// (no description). - DBSHARINGSharedLinkErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "shared_link_not_found". -/// -/// Description of the "shared_link_not_found" tag state: The shared link wasn't -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkNotFound; - -/// -/// Initializes union class with tag state of "shared_link_access_denied". -/// -/// Description of the "shared_link_access_denied" tag state: The caller is not -/// allowed to access this shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessDenied; - -/// -/// Initializes union class with tag state of "unsupported_link_type". -/// -/// Description of the "unsupported_link_type" tag state: This type of link is -/// not supported; use `files` instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsupportedLinkType; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_not_found". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_not_found". -/// -- (BOOL)isSharedLinkNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_access_denied". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_access_denied". -/// -- (BOOL)isSharedLinkAccessDenied; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsupported_link_type". -/// -/// @return Whether the union's current tag state has value -/// "unsupported_link_type". -/// -- (BOOL)isUnsupportedLinkType; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkError` union. -/// -@interface DBSHARINGSharedLinkErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkError *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkError` object. -/// -+ (DBSHARINGSharedLinkError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkMetadata.h deleted file mode 100644 index 85106522..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkMetadata.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkPermissions; -@class DBSHARINGSharedLinkMetadata; -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkMetadata` struct. -/// -/// The metadata of a shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkMetadata : NSObject - -#pragma mark - Instance fields - -/// URL of the shared link. -@property (nonatomic, readonly, copy) NSString *url; - -/// A unique identifier for the linked file. -@property (nonatomic, readonly, copy, nullable) NSString *id_; - -/// The linked file name (including extension). This never contains a slash. -@property (nonatomic, readonly, copy) NSString *name; - -/// Expiration time, if set. By default the link won't expire. -@property (nonatomic, readonly, nullable) NSDate *expires; - -/// The lowercased full path in the user's Dropbox. This always starts with a -/// slash. This field will only be present only if the linked file is in the -/// authenticated user's dropbox. -@property (nonatomic, readonly, copy, nullable) NSString *pathLower; - -/// The link's access permissions. -@property (nonatomic, readonly) DBSHARINGLinkPermissions *linkPermissions; - -/// The team membership information of the link's owner. This field will only -/// be present if the link's owner is a team member. -@property (nonatomic, readonly, nullable) DBSHARINGTeamMemberInfo *teamMemberInfo; - -/// The team information of the content's owner. This field will only be present -/// if the content's owner is a team member and the content's owner team is -/// different from the link's owner team. -@property (nonatomic, readonly, nullable) DBUSERSTeam *contentOwnerTeamInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// @param id_ A unique identifier for the linked file. -/// @param expires Expiration time, if set. By default the link won't expire. -/// @param pathLower The lowercased full path in the user's Dropbox. This always -/// starts with a slash. This field will only be present only if the linked file -/// is in the authenticated user's dropbox. -/// @param teamMemberInfo The team membership information of the link's owner. -/// This field will only be present if the link's owner is a team member. -/// @param contentOwnerTeamInfo The team information of the content's owner. -/// This field will only be present if the content's owner is a team member and -/// the content's owner team is different from the link's owner team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions - id_:(nullable NSString *)id_ - expires:(nullable NSDate *)expires - pathLower:(nullable NSString *)pathLower - teamMemberInfo:(nullable DBSHARINGTeamMemberInfo *)teamMemberInfo - contentOwnerTeamInfo:(nullable DBUSERSTeam *)contentOwnerTeamInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param url URL of the shared link. -/// @param name The linked file name (including extension). This never contains -/// a slash. -/// @param linkPermissions The link's access permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUrl:(NSString *)url - name:(NSString *)name - linkPermissions:(DBSHARINGLinkPermissions *)linkPermissions; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkMetadata` struct. -/// -@interface DBSHARINGSharedLinkMetadataSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkMetadata` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkMetadata *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkMetadata` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkMetadata` object. -/// -+ (DBSHARINGSharedLinkMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkPolicy.h deleted file mode 100644 index 85ac30d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkPolicy.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkPolicy` union. -/// -/// Who can view shared links in this folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkPolicyTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharedLinkPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkPolicyTag) { - /// Links can be shared with anyone. - DBSHARINGSharedLinkPolicyAnyone, - - /// Links can be shared with anyone on the same team as the owner. - DBSHARINGSharedLinkPolicyTeam, - - /// Links can only be shared among members of the shared folder. - DBSHARINGSharedLinkPolicyMembers, - - /// (no description). - DBSHARINGSharedLinkPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Links can be shared with anyone. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Links can be shared with anyone on the -/// same team as the owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Links can only be shared among -/// members of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkPolicy` union. -/// -@interface DBSHARINGSharedLinkPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkPolicy *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkPolicy` object. -/// -+ (DBSHARINGSharedLinkPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkSettings.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkSettings.h deleted file mode 100644 index 2e1e2a46..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkSettings.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; -@class DBSHARINGRequestedLinkAccessLevel; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGSharedLinkSettings; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettings` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkSettings : NSObject - -#pragma mark - Instance fields - -/// Boolean flag to enable or disable password protection. -@property (nonatomic, readonly, nullable) NSNumber *requirePassword; - -/// If requirePassword is true, this is needed to specify the password to access -/// the link. -@property (nonatomic, readonly, copy, nullable) NSString *linkPassword; - -/// Expiration time of the shared link. By default the link won't expire. -@property (nonatomic, readonly, nullable) NSDate *expires; - -/// The new audience who can benefit from the access level specified by the -/// link's access level specified in the `link_access_level` field of -/// `LinkPermissions`. This is used in conjunction with team policies and shared -/// folder policies to determine the final effective audience type in the -/// `effective_audience` field of `LinkPermissions. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *audience; - -/// Requested access level you want the audience to gain from this link. Note, -/// modifying access level for an existing link is not supported. -@property (nonatomic, readonly, nullable) DBSHARINGRequestedLinkAccessLevel *access; - -/// Use audience instead. The requested access for this shared link. -@property (nonatomic, readonly, nullable) DBSHARINGRequestedVisibility *requestedVisibility; - -/// Boolean flag to allow or not download capabilities for shared links. -@property (nonatomic, readonly, nullable) NSNumber *allowDownload; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requirePassword Boolean flag to enable or disable password -/// protection. -/// @param linkPassword If requirePassword is true, this is needed to specify -/// the password to access the link. -/// @param expires Expiration time of the shared link. By default the link won't -/// expire. -/// @param audience The new audience who can benefit from the access level -/// specified by the link's access level specified in the `link_access_level` -/// field of `LinkPermissions`. This is used in conjunction with team policies -/// and shared folder policies to determine the final effective audience type in -/// the `effective_audience` field of `LinkPermissions. -/// @param access Requested access level you want the audience to gain from this -/// link. Note, modifying access level for an existing link is not supported. -/// @param requestedVisibility Use audience instead. The requested access for -/// this shared link. -/// @param allowDownload Boolean flag to allow or not download capabilities for -/// shared links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequirePassword:(nullable NSNumber *)requirePassword - linkPassword:(nullable NSString *)linkPassword - expires:(nullable NSDate *)expires - audience:(nullable DBSHARINGLinkAudience *)audience - access:(nullable DBSHARINGRequestedLinkAccessLevel *)access - requestedVisibility:(nullable DBSHARINGRequestedVisibility *)requestedVisibility - allowDownload:(nullable NSNumber *)allowDownload; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettings` struct. -/// -@interface DBSHARINGSharedLinkSettingsSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkSettings` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkSettings` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettings` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkSettings *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkSettings` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettings` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkSettings` object. -/// -+ (DBSHARINGSharedLinkSettings *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkSettingsError.h deleted file mode 100644 index 52319c06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharedLinkSettingsError.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharedLinkSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharedLinkSettingsErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharedLinkSettingsError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharedLinkSettingsErrorTag) { - /// The given settings are invalid (for example, all attributes of the - /// SharedLinkSettings are empty, the requested visibility is `password` in - /// `DBSHARINGRequestedVisibility` but the `linkPassword` in - /// `DBSHARINGSharedLinkSettings` is missing, `expires` in - /// `DBSHARINGSharedLinkSettings` is set to the past, etc.). - DBSHARINGSharedLinkSettingsErrorInvalidSettings, - - /// User is not allowed to modify the settings of this link. Note that basic - /// users can only set `public` in `DBSHARINGRequestedVisibility` as the - /// `requestedVisibility` in `DBSHARINGSharedLinkSettings` and cannot set - /// `expires` in `DBSHARINGSharedLinkSettings`. - DBSHARINGSharedLinkSettingsErrorNotAuthorized, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharedLinkSettingsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_settings". -/// -/// Description of the "invalid_settings" tag state: The given settings are -/// invalid (for example, all attributes of the SharedLinkSettings are empty, -/// the requested visibility is `password` in `DBSHARINGRequestedVisibility` but -/// the `linkPassword` in `DBSHARINGSharedLinkSettings` is missing, `expires` in -/// `DBSHARINGSharedLinkSettings` is set to the past, etc.). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidSettings; - -/// -/// Initializes union class with tag state of "not_authorized". -/// -/// Description of the "not_authorized" tag state: User is not allowed to modify -/// the settings of this link. Note that basic users can only set `public` in -/// `DBSHARINGRequestedVisibility` as the `requestedVisibility` in -/// `DBSHARINGSharedLinkSettings` and cannot set `expires` in -/// `DBSHARINGSharedLinkSettings`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAuthorized; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_settings". -/// -/// @return Whether the union's current tag state has value "invalid_settings". -/// -- (BOOL)isInvalidSettings; - -/// -/// Retrieves whether the union's current tag state has value "not_authorized". -/// -/// @return Whether the union's current tag state has value "not_authorized". -/// -- (BOOL)isNotAuthorized; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharedLinkSettingsError` union. -/// -@interface DBSHARINGSharedLinkSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharedLinkSettingsError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharedLinkSettingsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharedLinkSettingsError *)instance; - -/// -/// Deserializes `DBSHARINGSharedLinkSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharedLinkSettingsError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharedLinkSettingsError` object. -/// -+ (DBSHARINGSharedLinkSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharingFileAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharingFileAccessError.h deleted file mode 100644 index 686d6d9d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharingFileAccessError.h +++ /dev/null @@ -1,206 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharingFileAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingFileAccessError` union. -/// -/// User could not access this file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharingFileAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharingFileAccessErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGSharingFileAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharingFileAccessErrorTag) { - /// Current user does not have sufficient privileges to perform the desired - /// action. - DBSHARINGSharingFileAccessErrorNoPermission, - - /// File specified was not found. - DBSHARINGSharingFileAccessErrorInvalidFile, - - /// A folder can't be shared this way. Use folder sharing or a shared link - /// instead. - DBSHARINGSharingFileAccessErrorIsFolder, - - /// A file inside a public folder can't be shared this way. Use a public - /// link instead. - DBSHARINGSharingFileAccessErrorInsidePublicFolder, - - /// A Mac OS X package can't be shared this way. Use a shared link instead. - DBSHARINGSharingFileAccessErrorInsideOsxPackage, - - /// (no description). - DBSHARINGSharingFileAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: Current user does not have -/// sufficient privileges to perform the desired action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "invalid_file". -/// -/// Description of the "invalid_file" tag state: File specified was not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFile; - -/// -/// Initializes union class with tag state of "is_folder". -/// -/// Description of the "is_folder" tag state: A folder can't be shared this way. -/// Use folder sharing or a shared link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFolder; - -/// -/// Initializes union class with tag state of "inside_public_folder". -/// -/// Description of the "inside_public_folder" tag state: A file inside a public -/// folder can't be shared this way. Use a public link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsidePublicFolder; - -/// -/// Initializes union class with tag state of "inside_osx_package". -/// -/// Description of the "inside_osx_package" tag state: A Mac OS X package can't -/// be shared this way. Use a shared link instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsideOsxPackage; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "invalid_file". -/// -/// @return Whether the union's current tag state has value "invalid_file". -/// -- (BOOL)isInvalidFile; - -/// -/// Retrieves whether the union's current tag state has value "is_folder". -/// -/// @return Whether the union's current tag state has value "is_folder". -/// -- (BOOL)isIsFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_public_folder". -/// -/// @return Whether the union's current tag state has value -/// "inside_public_folder". -/// -- (BOOL)isInsidePublicFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "inside_osx_package". -/// -/// @return Whether the union's current tag state has value -/// "inside_osx_package". -/// -- (BOOL)isInsideOsxPackage; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharingFileAccessError` union. -/// -@interface DBSHARINGSharingFileAccessErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharingFileAccessError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharingFileAccessError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharingFileAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharingFileAccessError *)instance; - -/// -/// Deserializes `DBSHARINGSharingFileAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharingFileAccessError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharingFileAccessError` object. -/// -+ (DBSHARINGSharingFileAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharingUserError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharingUserError.h deleted file mode 100644 index d4276bd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGSharingUserError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharingUserError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingUserError` union. -/// -/// User account had a problem preventing this action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGSharingUserError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGSharingUserErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGSharingUserError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGSharingUserErrorTag) { - /// This user's email address is not verified. This functionality is only - /// available on accounts with a verified email address. Users can verify - /// their email address here https://www.dropbox.com/help/317. - DBSHARINGSharingUserErrorEmailUnverified, - - /// (no description). - DBSHARINGSharingUserErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGSharingUserErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email_unverified". -/// -/// Description of the "email_unverified" tag state: This user's email address -/// is not verified. This functionality is only available on accounts with a -/// verified email address. Users can verify their email address here -/// https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailUnverified; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "email_unverified". -/// -/// @return Whether the union's current tag state has value "email_unverified". -/// -- (BOOL)isEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGSharingUserError` union. -/// -@interface DBSHARINGSharingUserErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGSharingUserError` instances. -/// -/// @param instance An instance of the `DBSHARINGSharingUserError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGSharingUserError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGSharingUserError *)instance; - -/// -/// Deserializes `DBSHARINGSharingUserError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGSharingUserError` API object. -/// -/// @return An instantiation of the `DBSHARINGSharingUserError` object. -/// -+ (DBSHARINGSharingUserError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTeamMemberInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTeamMemberInfo.h deleted file mode 100644 index 04b22cf4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTeamMemberInfo.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGTeamMemberInfo; -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfo` struct. -/// -/// Information about a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGTeamMemberInfo : NSObject - -#pragma mark - Instance fields - -/// Information about the member's team. -@property (nonatomic, readonly) DBUSERSTeam *teamInfo; - -/// The display name of the user. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// ID of user as a member of a team. This field will only be present if the -/// member is in the same team as current user. -@property (nonatomic, readonly, copy, nullable) NSString *memberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamInfo Information about the member's team. -/// @param displayName The display name of the user. -/// @param memberId ID of user as a member of a team. This field will only be -/// present if the member is in the same team as current user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamInfo:(DBUSERSTeam *)teamInfo - displayName:(NSString *)displayName - memberId:(nullable NSString *)memberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamInfo Information about the member's team. -/// @param displayName The display name of the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamInfo:(DBUSERSTeam *)teamInfo displayName:(NSString *)displayName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfo` struct. -/// -@interface DBSHARINGTeamMemberInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGTeamMemberInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGTeamMemberInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGTeamMemberInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGTeamMemberInfo *)instance; - -/// -/// Deserializes `DBSHARINGTeamMemberInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGTeamMemberInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGTeamMemberInfo` object. -/// -+ (DBSHARINGTeamMemberInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTransferFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTransferFolderArg.h deleted file mode 100644 index 8c909c42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTransferFolderArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGTransferFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TransferFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGTransferFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// A account or team member ID to transfer ownership to. -@property (nonatomic, readonly, copy) NSString *toDropboxId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param toDropboxId A account or team member ID to transfer ownership to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId toDropboxId:(NSString *)toDropboxId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TransferFolderArg` struct. -/// -@interface DBSHARINGTransferFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGTransferFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGTransferFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGTransferFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGTransferFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGTransferFolderArg` object. -/// -+ (DBSHARINGTransferFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTransferFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTransferFolderError.h deleted file mode 100644 index 8481bd8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGTransferFolderError.h +++ /dev/null @@ -1,258 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGTransferFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TransferFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGTransferFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGTransferFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGTransferFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGTransferFolderErrorTag) { - /// (no description). - DBSHARINGTransferFolderErrorAccessError, - - /// `toDropboxId` in `DBSHARINGTransferFolderArg` is invalid. - DBSHARINGTransferFolderErrorInvalidDropboxId, - - /// The new designated owner is not currently a member of the shared folder. - DBSHARINGTransferFolderErrorDNewOwnerNotAMember, - - /// The new designated owner has not added the folder to their Dropbox. - DBSHARINGTransferFolderErrorDNewOwnerUnmounted, - - /// The new designated owner's email address is not verified. This - /// functionality is only available on accounts with a verified email - /// address. Users can verify their email address here - /// https://www.dropbox.com/help/317. - DBSHARINGTransferFolderErrorDNewOwnerEmailUnverified, - - /// This action cannot be performed on a team shared folder. - DBSHARINGTransferFolderErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGTransferFolderErrorNoPermission, - - /// (no description). - DBSHARINGTransferFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGTransferFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "invalid_dropbox_id". -/// -/// Description of the "invalid_dropbox_id" tag state: `toDropboxId` in -/// `DBSHARINGTransferFolderArg` is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDropboxId; - -/// -/// Initializes union class with tag state of "new_owner_not_a_member". -/// -/// Description of the "new_owner_not_a_member" tag state: The new designated -/// owner is not currently a member of the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerNotAMember; - -/// -/// Initializes union class with tag state of "new_owner_unmounted". -/// -/// Description of the "new_owner_unmounted" tag state: The new designated owner -/// has not added the folder to their Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerUnmounted; - -/// -/// Initializes union class with tag state of "new_owner_email_unverified". -/// -/// Description of the "new_owner_email_unverified" tag state: The new -/// designated owner's email address is not verified. This functionality is only -/// available on accounts with a verified email address. Users can verify their -/// email address here https://www.dropbox.com/help/317. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerEmailUnverified; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_dropbox_id". -/// -- (BOOL)isInvalidDropboxId; - -/// -/// Retrieves whether the union's current tag state has value -/// "new_owner_not_a_member". -/// -/// @return Whether the union's current tag state has value -/// "new_owner_not_a_member". -/// -- (BOOL)isDNewOwnerNotAMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "new_owner_unmounted". -/// -/// @return Whether the union's current tag state has value -/// "new_owner_unmounted". -/// -- (BOOL)isDNewOwnerUnmounted; - -/// -/// Retrieves whether the union's current tag state has value -/// "new_owner_email_unverified". -/// -/// @return Whether the union's current tag state has value -/// "new_owner_email_unverified". -/// -- (BOOL)isDNewOwnerEmailUnverified; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGTransferFolderError` union. -/// -@interface DBSHARINGTransferFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGTransferFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGTransferFolderError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGTransferFolderError *)instance; - -/// -/// Deserializes `DBSHARINGTransferFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGTransferFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGTransferFolderError` object. -/// -+ (DBSHARINGTransferFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnmountFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnmountFolderArg.h deleted file mode 100644 index aacafed1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnmountFolderArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUnmountFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnmountFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnmountFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnmountFolderArg` struct. -/// -@interface DBSHARINGUnmountFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnmountFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUnmountFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnmountFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGUnmountFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUnmountFolderArg` object. -/// -+ (DBSHARINGUnmountFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnmountFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnmountFolderError.h deleted file mode 100644 index 563346db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnmountFolderError.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGUnmountFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnmountFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnmountFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUnmountFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGUnmountFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUnmountFolderErrorTag) { - /// (no description). - DBSHARINGUnmountFolderErrorAccessError, - - /// The current user does not have permission to perform this action. - DBSHARINGUnmountFolderErrorNoPermission, - - /// The shared folder can't be unmounted. One example where this can occur - /// is when the shared folder's parent folder is also a shared folder that - /// resides in the current user's Dropbox. - DBSHARINGUnmountFolderErrorNotUnmountable, - - /// (no description). - DBSHARINGUnmountFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUnmountFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "not_unmountable". -/// -/// Description of the "not_unmountable" tag state: The shared folder can't be -/// unmounted. One example where this can occur is when the shared folder's -/// parent folder is also a shared folder that resides in the current user's -/// Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotUnmountable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "not_unmountable". -/// -/// @return Whether the union's current tag state has value "not_unmountable". -/// -- (BOOL)isNotUnmountable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUnmountFolderError` union. -/// -@interface DBSHARINGUnmountFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnmountFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGUnmountFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnmountFolderError *)instance; - -/// -/// Deserializes `DBSHARINGUnmountFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnmountFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGUnmountFolderError` object. -/// -+ (DBSHARINGUnmountFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFileArg.h deleted file mode 100644 index 52e6c47e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFileArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUnshareFileArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFileArg` struct. -/// -/// Arguments for `unshareFile`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFileArg : NSObject - -#pragma mark - Instance fields - -/// The file to unshare. -@property (nonatomic, readonly, copy) NSString *file; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file The file to unshare. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnshareFileArg` struct. -/// -@interface DBSHARINGUnshareFileArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFileArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFileArg *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFileArg` object. -/// -+ (DBSHARINGUnshareFileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFileError.h deleted file mode 100644 index 60542713..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFileError.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; -@class DBSHARINGUnshareFileError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFileError` union. -/// -/// Error result for `unshareFile`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFileError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUnshareFileErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGUnshareFileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUnshareFileErrorTag) { - /// (no description). - DBSHARINGUnshareFileErrorUserError, - - /// (no description). - DBSHARINGUnshareFileErrorAccessError, - - /// (no description). - DBSHARINGUnshareFileErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUnshareFileErrorTag tag; - -/// (no description). @note Ensure the `isUserError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingUserError *userError; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharingFileAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_error". -/// -/// @param userError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserError:(DBSHARINGSharingUserError *)userError; - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharingFileAccessError *)accessError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_error". -/// -- (BOOL)isUserError; - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUnshareFileError` union. -/// -@interface DBSHARINGUnshareFileErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFileError` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFileError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFileError *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFileError` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFileError` object. -/// -+ (DBSHARINGUnshareFileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFolderArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFolderArg.h deleted file mode 100644 index 2da07735..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFolderArg.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUnshareFolderArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFolderArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFolderArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// If true, members of this shared folder will get a copy of this folder after -/// it's unshared. Otherwise, it will be removed from their Dropbox. The current -/// user, who is an owner, will always retain their copy. -@property (nonatomic, readonly) NSNumber *leaveACopy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy If true, members of this shared folder will get a copy of -/// this folder after it's unshared. Otherwise, it will be removed from their -/// Dropbox. The current user, who is an owner, will always retain their copy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UnshareFolderArg` struct. -/// -@interface DBSHARINGUnshareFolderArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFolderArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFolderArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFolderArg *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFolderArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFolderArg` object. -/// -+ (DBSHARINGUnshareFolderArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFolderError.h deleted file mode 100644 index 38fa0f61..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUnshareFolderError.h +++ /dev/null @@ -1,184 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGUnshareFolderError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UnshareFolderError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUnshareFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUnshareFolderErrorTag` enum type represents the possible tag -/// states with which the `DBSHARINGUnshareFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUnshareFolderErrorTag) { - /// (no description). - DBSHARINGUnshareFolderErrorAccessError, - - /// This action cannot be performed on a team shared folder. - DBSHARINGUnshareFolderErrorTeamFolder, - - /// The current user does not have permission to perform this action. - DBSHARINGUnshareFolderErrorNoPermission, - - /// This shared folder has too many files to be unshared. - DBSHARINGUnshareFolderErrorTooManyFiles, - - /// (no description). - DBSHARINGUnshareFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUnshareFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "too_many_files". -/// -/// Description of the "too_many_files" tag state: This shared folder has too -/// many files to be unshared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyFiles; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "too_many_files". -/// -/// @return Whether the union's current tag state has value "too_many_files". -/// -- (BOOL)isTooManyFiles; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUnshareFolderError` union. -/// -@interface DBSHARINGUnshareFolderErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUnshareFolderError` instances. -/// -/// @param instance An instance of the `DBSHARINGUnshareFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUnshareFolderError *)instance; - -/// -/// Deserializes `DBSHARINGUnshareFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUnshareFolderError` API object. -/// -/// @return An instantiation of the `DBSHARINGUnshareFolderError` object. -/// -+ (DBSHARINGUnshareFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFileMemberArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFileMemberArgs.h deleted file mode 100644 index f451f6eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFileMemberArgs.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberSelector; -@class DBSHARINGUpdateFileMemberArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFileMemberArgs` struct. -/// -/// Arguments for `updateFileMember`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFileMemberArgs : NSObject - -#pragma mark - Instance fields - -/// File for which we are changing a member's access. -@property (nonatomic, readonly, copy) NSString *file; - -/// The member whose access we are changing. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The new access level for the member. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param file File for which we are changing a member's access. -/// @param member The member whose access we are changing. -/// @param accessLevel The new access level for the member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(NSString *)file - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFileMemberArgs` struct. -/// -@interface DBSHARINGUpdateFileMemberArgsSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFileMemberArgs` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFileMemberArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFileMemberArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFileMemberArgs *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFileMemberArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFileMemberArgs` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFileMemberArgs` object. -/// -+ (DBSHARINGUpdateFileMemberArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderMemberArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderMemberArg.h deleted file mode 100644 index b09d3898..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderMemberArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberSelector; -@class DBSHARINGUpdateFolderMemberArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderMemberArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderMemberArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// The member of the shared folder to update. Only the `dropboxId` in -/// `DBSHARINGMemberSelector` may be set at this time. -@property (nonatomic, readonly) DBSHARINGMemberSelector *member; - -/// The new access level for member. `owner` in `DBSHARINGAccessLevel` is -/// disallowed. -@property (nonatomic, readonly) DBSHARINGAccessLevel *accessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member of the shared folder to update. Only the -/// `dropboxId` in `DBSHARINGMemberSelector` may be set at this time. -/// @param accessLevel The new access level for member. `owner` in -/// `DBSHARINGAccessLevel` is disallowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFolderMemberArg` struct. -/// -@interface DBSHARINGUpdateFolderMemberArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderMemberArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderMemberArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderMemberArg *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderMemberArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderMemberArg` object. -/// -+ (DBSHARINGUpdateFolderMemberArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderMemberError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderMemberError.h deleted file mode 100644 index 19b17df9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderMemberError.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; -@class DBSHARINGUpdateFolderMemberError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderMemberError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderMemberError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUpdateFolderMemberErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGUpdateFolderMemberError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUpdateFolderMemberErrorTag) { - /// (no description). - DBSHARINGUpdateFolderMemberErrorAccessError, - - /// (no description). - DBSHARINGUpdateFolderMemberErrorMemberError, - - /// If updating the access type required the member to be added to the - /// shared folder and there was an error when adding the member. - DBSHARINGUpdateFolderMemberErrorNoExplicitAccess, - - /// The current user's account doesn't support this action. An example of - /// this is when downgrading a member from editor to viewer. This action can - /// only be performed by users that have upgraded to a Pro or Business plan. - DBSHARINGUpdateFolderMemberErrorInsufficientPlan, - - /// The current user does not have permission to perform this action. - DBSHARINGUpdateFolderMemberErrorNoPermission, - - /// (no description). - DBSHARINGUpdateFolderMemberErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUpdateFolderMemberErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -/// (no description). @note Ensure the `isMemberError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderMemberError *memberError; - -/// If updating the access type required the member to be added to the shared -/// folder and there was an error when adding the member. @note Ensure the -/// `isNoExplicitAccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGAddFolderMemberError *noExplicitAccess; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "member_error". -/// -/// @param memberError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberError:(DBSHARINGSharedFolderMemberError *)memberError; - -/// -/// Initializes union class with tag state of "no_explicit_access". -/// -/// Description of the "no_explicit_access" tag state: If updating the access -/// type required the member to be added to the shared folder and there was an -/// error when adding the member. -/// -/// @param noExplicitAccess If updating the access type required the member to -/// be added to the shared folder and there was an error when adding the member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExplicitAccess:(DBSHARINGAddFolderMemberError *)noExplicitAccess; - -/// -/// Initializes union class with tag state of "insufficient_plan". -/// -/// Description of the "insufficient_plan" tag state: The current user's account -/// doesn't support this action. An example of this is when downgrading a member -/// from editor to viewer. This action can only be performed by users that have -/// upgraded to a Pro or Business plan. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPlan; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "member_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_error". -/// -- (BOOL)isMemberError; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_explicit_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExplicitAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_explicit_access". -/// -- (BOOL)isNoExplicitAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_plan". -/// -/// @return Whether the union's current tag state has value "insufficient_plan". -/// -- (BOOL)isInsufficientPlan; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUpdateFolderMemberError` union. -/// -@interface DBSHARINGUpdateFolderMemberErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderMemberError` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderMemberError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderMemberError *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderMemberError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderMemberError` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderMemberError` object. -/// -+ (DBSHARINGUpdateFolderMemberError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderPolicyArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderPolicyArg.h deleted file mode 100644 index 1cee7c09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderPolicyArg.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGFolderAction; -@class DBSHARINGLinkSettings; -@class DBSHARINGMemberPolicy; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGUpdateFolderPolicyArg; -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderPolicyArg` struct. -/// -/// If any of the policies are unset, then they retain their current setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderPolicyArg : NSObject - -#pragma mark - Instance fields - -/// The ID for the shared folder. -@property (nonatomic, readonly, copy) NSString *sharedFolderId; - -/// Who can be a member of this shared folder. Only applicable if the current -/// user is on a team. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *memberPolicy; - -/// Who can add and remove members of this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *aclUpdatePolicy; - -/// Who can enable/disable viewer info for this shared folder. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *viewerInfoPolicy; - -/// The policy to apply to shared links created for content inside this shared -/// folder. The current user must be on a team to set this policy to `members` -/// in `DBSHARINGSharedLinkPolicy`. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *sharedLinkPolicy; - -/// Settings on the link for this folder. -@property (nonatomic, readonly, nullable) DBSHARINGLinkSettings *linkSettings; - -/// A list of `FolderAction`s corresponding to `FolderPermission`s that should -/// appear in the response's `permissions` in `DBSHARINGSharedFolderMetadata` -/// field describing the actions the authenticated user can perform on the -/// folder. -@property (nonatomic, readonly, nullable) NSArray *actions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param memberPolicy Who can be a member of this shared folder. Only -/// applicable if the current user is on a team. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared -/// folder. -/// @param sharedLinkPolicy The policy to apply to shared links created for -/// content inside this shared folder. The current user must be on a team to set -/// this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param linkSettings Settings on the link for this folder. -/// @param actions A list of `FolderAction`s corresponding to -/// `FolderPermission`s that should appear in the response's `permissions` in -/// `DBSHARINGSharedFolderMetadata` field describing the actions the -/// authenticated user can perform on the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings - actions:(nullable NSArray *)actions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderId:(NSString *)sharedFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UpdateFolderPolicyArg` struct. -/// -@interface DBSHARINGUpdateFolderPolicyArgSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderPolicyArg` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderPolicyArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderPolicyArg *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderPolicyArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyArg` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderPolicyArg` object. -/// -+ (DBSHARINGUpdateFolderPolicyArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderPolicyError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderPolicyError.h deleted file mode 100644 index fce86a1d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUpdateFolderPolicyError.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGUpdateFolderPolicyError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UpdateFolderPolicyError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUpdateFolderPolicyError : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGUpdateFolderPolicyErrorTag` enum type represents the possible -/// tag states with which the `DBSHARINGUpdateFolderPolicyError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGUpdateFolderPolicyErrorTag) { - /// (no description). - DBSHARINGUpdateFolderPolicyErrorAccessError, - - /// `memberPolicy` in `DBSHARINGUpdateFolderPolicyArg` was set even though - /// user is not on a team. - DBSHARINGUpdateFolderPolicyErrorNotOnTeam, - - /// Team policy is more restrictive than `memberPolicy` in - /// `DBSHARINGShareFolderArg`. - DBSHARINGUpdateFolderPolicyErrorTeamPolicyDisallowsMemberPolicy, - - /// The current account is not allowed to select the specified - /// `sharedLinkPolicy` in `DBSHARINGShareFolderArg`. - DBSHARINGUpdateFolderPolicyErrorDisallowedSharedLinkPolicy, - - /// The current user does not have permission to perform this action. - DBSHARINGUpdateFolderPolicyErrorNoPermission, - - /// This action cannot be performed on a team shared folder. - DBSHARINGUpdateFolderPolicyErrorTeamFolder, - - /// (no description). - DBSHARINGUpdateFolderPolicyErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGUpdateFolderPolicyErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBSHARINGSharedFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBSHARINGSharedFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "not_on_team". -/// -/// Description of the "not_on_team" tag state: `memberPolicy` in -/// `DBSHARINGUpdateFolderPolicyArg` was set even though user is not on a team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotOnTeam; - -/// -/// Initializes union class with tag state of -/// "team_policy_disallows_member_policy". -/// -/// Description of the "team_policy_disallows_member_policy" tag state: Team -/// policy is more restrictive than `memberPolicy` in `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicyDisallowsMemberPolicy; - -/// -/// Initializes union class with tag state of "disallowed_shared_link_policy". -/// -/// Description of the "disallowed_shared_link_policy" tag state: The current -/// account is not allowed to select the specified `sharedLinkPolicy` in -/// `DBSHARINGShareFolderArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowedSharedLinkPolicy; - -/// -/// Initializes union class with tag state of "no_permission". -/// -/// Description of the "no_permission" tag state: The current user does not have -/// permission to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPermission; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: This action cannot be performed -/// on a team shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "not_on_team". -/// -/// @return Whether the union's current tag state has value "not_on_team". -/// -- (BOOL)isNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "team_policy_disallows_member_policy". -/// -- (BOOL)isTeamPolicyDisallowsMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "disallowed_shared_link_policy". -/// -- (BOOL)isDisallowedSharedLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value "no_permission". -/// -/// @return Whether the union's current tag state has value "no_permission". -/// -- (BOOL)isNoPermission; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGUpdateFolderPolicyError` union. -/// -@interface DBSHARINGUpdateFolderPolicyErrorSerializer : NSObject - -/// -/// Serializes `DBSHARINGUpdateFolderPolicyError` instances. -/// -/// @param instance An instance of the `DBSHARINGUpdateFolderPolicyError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUpdateFolderPolicyError *)instance; - -/// -/// Deserializes `DBSHARINGUpdateFolderPolicyError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUpdateFolderPolicyError` API object. -/// -/// @return An instantiation of the `DBSHARINGUpdateFolderPolicyError` object. -/// -+ (DBSHARINGUpdateFolderPolicyError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserAuthRoutes.h deleted file mode 100644 index 39ddb399..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserAuthRoutes.h +++ /dev/null @@ -1,1162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBASYNCLaunchEmptyResult; -@class DBASYNCLaunchResultBase; -@class DBASYNCPollError; -@class DBFILESLookupError; -@class DBNilObject; -@class DBSHARINGAccessInheritance; -@class DBSHARINGAccessLevel; -@class DBSHARINGAclUpdatePolicy; -@class DBSHARINGAddFileMemberError; -@class DBSHARINGAddFolderMemberError; -@class DBSHARINGAddMember; -@class DBSHARINGAddMemberSelectorError; -@class DBSHARINGCreateSharedLinkError; -@class DBSHARINGCreateSharedLinkWithSettingsError; -@class DBSHARINGExpectedSharedContentLinkMetadata; -@class DBSHARINGFileAction; -@class DBSHARINGFileMemberActionError; -@class DBSHARINGFileMemberActionIndividualResult; -@class DBSHARINGFileMemberActionResult; -@class DBSHARINGFileMemberRemoveActionResult; -@class DBSHARINGFilePermission; -@class DBSHARINGFolderAction; -@class DBSHARINGFolderPermission; -@class DBSHARINGFolderPolicy; -@class DBSHARINGGetFileMetadataBatchResult; -@class DBSHARINGGetFileMetadataError; -@class DBSHARINGGetFileMetadataIndividualResult; -@class DBSHARINGGetSharedLinkFileError; -@class DBSHARINGGetSharedLinksError; -@class DBSHARINGGetSharedLinksResult; -@class DBSHARINGGroupMembershipInfo; -@class DBSHARINGInsufficientQuotaAmounts; -@class DBSHARINGInviteeMembershipInfo; -@class DBSHARINGJobError; -@class DBSHARINGJobStatus; -@class DBSHARINGLinkAudience; -@class DBSHARINGLinkExpiry; -@class DBSHARINGLinkMetadata; -@class DBSHARINGLinkPassword; -@class DBSHARINGLinkPermissions; -@class DBSHARINGLinkSettings; -@class DBSHARINGListFileMembersBatchResult; -@class DBSHARINGListFileMembersContinueError; -@class DBSHARINGListFileMembersError; -@class DBSHARINGListFileMembersIndividualResult; -@class DBSHARINGListFilesContinueError; -@class DBSHARINGListFilesResult; -@class DBSHARINGListFolderMembersContinueError; -@class DBSHARINGListFoldersContinueError; -@class DBSHARINGListFoldersResult; -@class DBSHARINGListSharedLinksError; -@class DBSHARINGListSharedLinksResult; -@class DBSHARINGMemberAccessLevelResult; -@class DBSHARINGMemberAction; -@class DBSHARINGMemberPolicy; -@class DBSHARINGMemberSelector; -@class DBSHARINGModifySharedLinkSettingsError; -@class DBSHARINGMountFolderError; -@class DBSHARINGParentFolderAccessInfo; -@class DBSHARINGPathLinkMetadata; -@class DBSHARINGPendingUploadMode; -@class DBSHARINGRelinquishFileMembershipError; -@class DBSHARINGRelinquishFolderMembershipError; -@class DBSHARINGRemoveFileMemberError; -@class DBSHARINGRemoveFolderMemberError; -@class DBSHARINGRemoveMemberJobStatus; -@class DBSHARINGRequestedLinkAccessLevel; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGRevokeSharedLinkError; -@class DBSHARINGSetAccessInheritanceError; -@class DBSHARINGShareFolderError; -@class DBSHARINGShareFolderJobStatus; -@class DBSHARINGShareFolderLaunch; -@class DBSHARINGSharePathError; -@class DBSHARINGSharedContentLinkMetadata; -@class DBSHARINGSharedFileMembers; -@class DBSHARINGSharedFileMetadata; -@class DBSHARINGSharedFolderAccessError; -@class DBSHARINGSharedFolderMemberError; -@class DBSHARINGSharedFolderMembers; -@class DBSHARINGSharedFolderMetadata; -@class DBSHARINGSharedLinkAlreadyExistsMetadata; -@class DBSHARINGSharedLinkError; -@class DBSHARINGSharedLinkMetadata; -@class DBSHARINGSharedLinkPolicy; -@class DBSHARINGSharedLinkSettings; -@class DBSHARINGSharedLinkSettingsError; -@class DBSHARINGSharingFileAccessError; -@class DBSHARINGSharingUserError; -@class DBSHARINGTeamMemberInfo; -@class DBSHARINGTransferFolderError; -@class DBSHARINGUnmountFolderError; -@class DBSHARINGUnshareFileError; -@class DBSHARINGUnshareFolderError; -@class DBSHARINGUpdateFolderMemberError; -@class DBSHARINGUpdateFolderPolicyError; -@class DBSHARINGUserFileMembershipInfo; -@class DBSHARINGUserMembershipInfo; -@class DBSHARINGViewerInfoPolicy; -@class DBSHARINGVisibility; -@class DBUSERSTeam; - -@protocol DBTransportClient; - -/// -/// Routes for the `Sharing` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBSHARINGUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBSHARINGUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Adds specified members to a file. -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, this may result in a user being directly -/// added to the membership if that email is the user's main account email. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object -/// on success or a `DBSHARINGAddFileMemberError` object on failure. -/// -- (DBRpcTask *, DBSHARINGAddFileMemberError *> *) - addFileMember:(NSString *)file - members:(NSArray *)members; - -/// -/// Adds specified members to a file. -/// -/// @param file File to which to add members. -/// @param members Members to add. Note that even an email address is given, this may result in a user being directly -/// added to the membership if that email is the user's main account email. -/// @param customMessage Message to send to added members in their invitation. -/// @param quiet Whether added members should be notified via email and device notifications of their invitation. -/// @param accessLevel AccessLevel union object, describing what access level we want to give new members. -/// @param addMessageAsComment If the custom message should be added as a comment on the file. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object -/// on success or a `DBSHARINGAddFileMemberError` object on failure. -/// -- (DBRpcTask *, DBSHARINGAddFileMemberError *> *) - addFileMember:(NSString *)file - members:(NSArray *)members - customMessage:(nullable NSString *)customMessage - quiet:(nullable NSNumber *)quiet - accessLevel:(nullable DBSHARINGAccessLevel *)accessLevel - addMessageAsComment:(nullable NSNumber *)addMessageAsComment; - -/// -/// Allows an owner or editor (if the ACL update policy allows) of a shared folder to add another member. For the new -/// member to get access to all the functionality for this folder, you will need to call `mountFolder` on their behalf. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will receive invites to join the shared folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGAddFolderMemberError` object on failure. -/// -- (DBRpcTask *)addFolderMember:(NSString *)sharedFolderId - members:(NSArray *)members; - -/// -/// Allows an owner or editor (if the ACL update policy allows) of a shared folder to add another member. For the new -/// member to get access to all the functionality for this folder, you will need to call `mountFolder` on their behalf. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param members The intended list of members to add. Added members will receive invites to join the shared folder. -/// @param quiet Whether added members should be notified via email and device notifications of their invite. -/// @param customMessage Optional message to display to added members in their invitation. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGAddFolderMemberError` object on failure. -/// -- (DBRpcTask *)addFolderMember:(NSString *)sharedFolderId - members:(NSArray *)members - quiet:(nullable NSNumber *)quiet - customMessage:(nullable NSString *)customMessage; - -/// -/// Returns the status of an asynchronous job. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGJobStatus` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)checkJobStatus:(NSString *)asyncJobId; - -/// -/// Returns the status of an asynchronous job for sharing a folder. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGRemoveMemberJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)checkRemoveMemberJobStatus:(NSString *)asyncJobId; - -/// -/// Returns the status of an asynchronous job for sharing a folder. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderJobStatus` object on success -/// or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)checkShareJobStatus:(NSString *)asyncJobId; - -/// -/// DEPRECATED: Create a shared link. If a shared link already exists for the given path, that link is returned. -/// Previously, it was technically possible to break a shared link by moving or renaming the corresponding file or -/// folder. In the future, this will no longer be the case, so your app shouldn't rely on this behavior. Instead, if -/// your app needs to revoke a shared link, use `revokeSharedLink`. -/// -/// @param path The path to share. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGPathLinkMetadata` object on success or a -/// `DBSHARINGCreateSharedLinkError` object on failure. -/// -- (DBRpcTask *)createSharedLink:(NSString *)path - __deprecated_msg("createSharedLink is deprecated. Use createSharedLinkWithSettings."); - -/// -/// DEPRECATED: Create a shared link. If a shared link already exists for the given path, that link is returned. -/// Previously, it was technically possible to break a shared link by moving or renaming the corresponding file or -/// folder. In the future, this will no longer be the case, so your app shouldn't rely on this behavior. Instead, if -/// your app needs to revoke a shared link, use `revokeSharedLink`. -/// -/// @param path The path to share. -/// @param pendingUpload If it's okay to share a path that does not yet exist, set this to either `file` in -/// `DBSHARINGPendingUploadMode` or `folder` in `DBSHARINGPendingUploadMode` to indicate whether to assume it's a file -/// or folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGPathLinkMetadata` object on success or a -/// `DBSHARINGCreateSharedLinkError` object on failure. -/// -- (DBRpcTask *) - createSharedLink:(NSString *)path - shortUrl:(nullable NSNumber *)shortUrl - pendingUpload:(nullable DBSHARINGPendingUploadMode *)pendingUpload - __deprecated_msg("createSharedLink is deprecated. Use createSharedLinkWithSettings."); - -/// -/// Create a shared link with custom settings. If no settings are given then the default visibility is `public` in -/// `DBSHARINGRequestedVisibility` (The resolved visibility, though, may depend on other aspects such as team and shared -/// folder settings). -/// -/// @param path The path to be shared by the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGCreateSharedLinkWithSettingsError` object on failure. -/// -- (DBRpcTask *) - createSharedLinkWithSettings:(NSString *)path; - -/// -/// Create a shared link with custom settings. If no settings are given then the default visibility is `public` in -/// `DBSHARINGRequestedVisibility` (The resolved visibility, though, may depend on other aspects such as team and shared -/// folder settings). -/// -/// @param path The path to be shared by the shared link. -/// @param settings The requested settings for the newly created shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGCreateSharedLinkWithSettingsError` object on failure. -/// -- (DBRpcTask *) - createSharedLinkWithSettings:(NSString *)path - settings:(nullable DBSHARINGSharedLinkSettings *)settings; - -/// -/// Returns shared file metadata. -/// -/// @param file The file to query. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMetadata` object on success or -/// a `DBSHARINGGetFileMetadataError` object on failure. -/// -- (DBRpcTask *)getFileMetadata:(NSString *)file; - -/// -/// Returns shared file metadata. -/// -/// @param file The file to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFileMetadata` field describing the actions the authenticated user can perform on -/// the file. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMetadata` object on success or -/// a `DBSHARINGGetFileMetadataError` object on failure. -/// -- (DBRpcTask *) - getFileMetadata:(NSString *)file - actions:(nullable NSArray *)actions; - -/// -/// Returns shared file metadata. -/// -/// @param files The files to query. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *)getFileMetadataBatch: - (NSArray *)files; - -/// -/// Returns shared file metadata. -/// -/// @param files The files to query. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFileMetadata` field describing the actions the authenticated user can perform on -/// the file. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *) - getFileMetadataBatch:(NSArray *)files - actions:(nullable NSArray *)actions; - -/// -/// Returns shared folder metadata by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *)getFolderMetadata: - (NSString *)sharedFolderId; - -/// -/// Returns shared folder metadata by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *) - getFolderMetadata:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// @param overwrite A boolean to set behavior in the event of a naming conflict. `YES` will overwrite conflicting file -/// at destination. `NO` will take no action, resulting in an `NSError` returned to the response handler in the event of -/// a file conflict. -/// @param destination The file url of the desired download output location. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadUrlTask *) - getSharedLinkFileUrl:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *)getSharedLinkFileData: - (NSString *)url; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *) - getSharedLinkFileData:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *) - getSharedLinkFileData:(NSString *)url - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Download the shared link's file from a user's Dropbox. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. Must -/// include valid end range value. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. Must include valid -/// start range value. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGGetSharedLinkFileError` object on failure. -/// -- (DBDownloadDataTask *) - getSharedLinkFileData:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword - byteOffsetStart:(NSNumber *)byteOffsetStart - byteOffsetEnd:(NSNumber *)byteOffsetEnd; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *)getSharedLinkMetadata:(NSString *)url; - -/// -/// Get the shared link's metadata. -/// -/// @param url URL of the shared link. -/// @param path If the shared link is to a folder, this parameter can be used to retrieve the metadata for a specific -/// file or sub-folder in this folder. A relative path should be used. -/// @param linkPassword If the shared link has a password, this parameter can be used. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGSharedLinkError` object on failure. -/// -- (DBRpcTask *) - getSharedLinkMetadata:(NSString *)url - path:(nullable NSString *)path - linkPassword:(nullable NSString *)linkPassword; - -/// -/// DEPRECATED: Returns a list of LinkMetadata objects for this user, including collection links. If no path is given, -/// returns a list of all shared links for the current user, including collection links, up to a maximum of 1000 links. -/// If a non-empty path is given, returns a list of all shared links that allow access to the given path. Collection -/// links are never returned in this case. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGGetSharedLinksResult` object on success -/// or a `DBSHARINGGetSharedLinksError` object on failure. -/// -- (DBRpcTask *) - getSharedLinks __deprecated_msg("getSharedLinks is deprecated. Use listSharedLinks."); - -/// -/// DEPRECATED: Returns a list of LinkMetadata objects for this user, including collection links. If no path is given, -/// returns a list of all shared links for the current user, including collection links, up to a maximum of 1000 links. -/// If a non-empty path is given, returns a list of all shared links that allow access to the given path. Collection -/// links are never returned in this case. -/// -/// @param path See `getSharedLinks` description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGGetSharedLinksResult` object on success -/// or a `DBSHARINGGetSharedLinksError` object on failure. -/// -- (DBRpcTask *)getSharedLinks:(nullable NSString *)path - __deprecated_msg("getSharedLinks is deprecated. Use listSharedLinks."); - -/// -/// Use to obtain the members who have been invited to a file, both inherited and uninherited members. -/// -/// @param file The file for which you want to see members. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMembers` object on success or a -/// `DBSHARINGListFileMembersError` object on failure. -/// -- (DBRpcTask *)listFileMembers:(NSString *)file; - -/// -/// Use to obtain the members who have been invited to a file, both inherited and uninherited members. -/// -/// @param file The file for which you want to see members. -/// @param actions The actions for which to return permissions on a member. -/// @param includeInherited Whether to include members who only have access from a parent shared folder. -/// @param limit Number of members to return max per query. Defaults to 100 if no limit is specified. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMembers` object on success or a -/// `DBSHARINGListFileMembersError` object on failure. -/// -- (DBRpcTask *) - listFileMembers:(NSString *)file - actions:(nullable NSArray *)actions - includeInherited:(nullable NSNumber *)includeInherited - limit:(nullable NSNumber *)limit; - -/// -/// Get members of multiple files at once. The arguments to this route are more limited, and the limit on query result -/// size per file is more strict. To customize the results more, use the individual file endpoint. Inherited users and -/// groups are not included in the result, and permissions are not returned for this endpoint. -/// -/// @param files Files for which to return members. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *)listFileMembersBatch: - (NSArray *)files; - -/// -/// Get members of multiple files at once. The arguments to this route are more limited, and the limit on query result -/// size per file is more strict. To customize the results more, use the individual file endpoint. Inherited users and -/// groups are not included in the result, and permissions are not returned for this endpoint. -/// -/// @param files Files for which to return members. -/// @param limit Number of members to return max per query. Defaults to 10 if no limit is specified. -/// -/// @return Through the response callback, the caller will receive a `NSArray` -/// object on success or a `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *, DBSHARINGSharingUserError *> *) - listFileMembersBatch:(NSArray *)files - limit:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `listFileMembers` or `listFileMembersBatch`, use this to paginate through all -/// shared file members. -/// -/// @param cursor The cursor returned by your last call to `listFileMembers`, `listFileMembersContinue`, or -/// `listFileMembersBatch`. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFileMembers` object on success or a -/// `DBSHARINGListFileMembersContinueError` object on failure. -/// -- (DBRpcTask *)listFileMembersContinue: - (NSString *)cursor; - -/// -/// Returns shared folder membership by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMembers` object on success or -/// a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *)listFolderMembers: - (NSString *)sharedFolderId; - -/// -/// Returns shared folder membership by its folder ID. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMembers` object on success or -/// a `DBSHARINGSharedFolderAccessError` object on failure. -/// -- (DBRpcTask *) - listFolderMembers:(NSString *)sharedFolderId - actions:(nullable NSArray *)actions - limit:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `listFolderMembers`, use this to paginate through all shared folder members. -/// -/// @param cursor The cursor returned by your last call to `listFolderMembers` or `listFolderMembersContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMembers` object on success or -/// a `DBSHARINGListFolderMembersContinueError` object on failure. -/// -- (DBRpcTask *)listFolderMembersContinue: - (NSString *)cursor; - -/// -/// Return the list of all shared folders the current user has access to. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)listFolders; - -/// -/// Return the list of all shared folders the current user has access to. -/// -/// @param limit The maximum number of results to return per request. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)listFolders:(nullable NSNumber *)limit - actions:(nullable NSArray *) - actions; - -/// -/// Once a cursor has been retrieved from `listFolders`, use this to paginate through all shared folders. The cursor -/// must come from a previous call to `listFolders` or `listFoldersContinue`. -/// -/// @param cursor The cursor returned by the previous API call specified in the endpoint description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `DBSHARINGListFoldersContinueError` object on failure. -/// -- (DBRpcTask *)listFoldersContinue: - (NSString *)cursor; - -/// -/// Return the list of all shared folders the current user can mount or unmount. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)listMountableFolders; - -/// -/// Return the list of all shared folders the current user can mount or unmount. -/// -/// @param limit The maximum number of results to return per request. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *) - listMountableFolders:(nullable NSNumber *)limit - actions:(nullable NSArray *)actions; - -/// -/// Once a cursor has been retrieved from `listMountableFolders`, use this to paginate through all mountable shared -/// folders. The cursor must come from a previous call to `listMountableFolders` or `listMountableFoldersContinue`. -/// -/// @param cursor The cursor returned by the previous API call specified in the endpoint description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFoldersResult` object on success or a -/// `DBSHARINGListFoldersContinueError` object on failure. -/// -- (DBRpcTask *)listMountableFoldersContinue: - (NSString *)cursor; - -/// -/// Returns a list of all files shared with current user. Does not include files the user has received via shared -/// folders, and does not include unclaimed invitations. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFilesResult` object on success or a -/// `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *)listReceivedFiles; - -/// -/// Returns a list of all files shared with current user. Does not include files the user has received via shared -/// folders, and does not include unclaimed invitations. -/// -/// @param limit Number of files to return max per query. Defaults to 100 if no limit is specified. -/// @param actions A list of `FileAction`s corresponding to `FilePermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFileMetadata` field describing the actions the authenticated user can perform on -/// the file. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFilesResult` object on success or a -/// `DBSHARINGSharingUserError` object on failure. -/// -- (DBRpcTask *) - listReceivedFiles:(nullable NSNumber *)limit - actions:(nullable NSArray *)actions; - -/// -/// Get more results with a cursor from `listReceivedFiles`. -/// -/// @param cursor Cursor in `cursor` in `DBSHARINGListFilesResult`. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListFilesResult` object on success or a -/// `DBSHARINGListFilesContinueError` object on failure. -/// -- (DBRpcTask *)listReceivedFilesContinue: - (NSString *)cursor; - -/// -/// List shared links of this user. If no path is given, returns a list of all shared links for the current user. For -/// members of business teams using team space and member folders, returns all shared links in the team member's home -/// folder unless the team space ID is specified in the request header. For more information, refer to the Namespace -/// Guide https://www.dropbox.com/developers/reference/namespace-guide. If a non-empty path is given, returns a list of -/// all shared links that allow access to the given path - direct links to the given path and links to parent folders of -/// the given path. Links to parent folders can be suppressed by setting direct_only to true. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListSharedLinksResult` object on success -/// or a `DBSHARINGListSharedLinksError` object on failure. -/// -- (DBRpcTask *)listSharedLinks; - -/// -/// List shared links of this user. If no path is given, returns a list of all shared links for the current user. For -/// members of business teams using team space and member folders, returns all shared links in the team member's home -/// folder unless the team space ID is specified in the request header. For more information, refer to the Namespace -/// Guide https://www.dropbox.com/developers/reference/namespace-guide. If a non-empty path is given, returns a list of -/// all shared links that allow access to the given path - direct links to the given path and links to parent folders of -/// the given path. Links to parent folders can be suppressed by setting direct_only to true. -/// -/// @param path See `listSharedLinks` description. -/// @param cursor The cursor returned by your last call to `listSharedLinks`. -/// @param directOnly See `listSharedLinks` description. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGListSharedLinksResult` object on success -/// or a `DBSHARINGListSharedLinksError` object on failure. -/// -- (DBRpcTask *) - listSharedLinks:(nullable NSString *)path - cursor:(nullable NSString *)cursor - directOnly:(nullable NSNumber *)directOnly; - -/// -/// Modify the shared link's settings. If the requested visibility conflict with the shared links policy of the team or -/// the shared folder (in case the linked file is part of a shared folder) then the `resolvedVisibility` in -/// `DBSHARINGLinkPermissions` of the returned SharedLinkMetadata will reflect the actual visibility of the shared link -/// and the `requestedVisibility` in `DBSHARINGLinkPermissions` will reflect the requested visibility. -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGModifySharedLinkSettingsError` object on failure. -/// -- (DBRpcTask *) - modifySharedLinkSettings:(NSString *)url - settings:(DBSHARINGSharedLinkSettings *)settings; - -/// -/// Modify the shared link's settings. If the requested visibility conflict with the shared links policy of the team or -/// the shared folder (in case the linked file is part of a shared folder) then the `resolvedVisibility` in -/// `DBSHARINGLinkPermissions` of the returned SharedLinkMetadata will reflect the actual visibility of the shared link -/// and the `requestedVisibility` in `DBSHARINGLinkPermissions` will reflect the requested visibility. -/// -/// @param url URL of the shared link to change its settings. -/// @param settings Set of settings for the shared link. -/// @param removeExpiration If set to true, removes the expiration of the shared link. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedLinkMetadata` object on success or -/// a `DBSHARINGModifySharedLinkSettingsError` object on failure. -/// -- (DBRpcTask *) - modifySharedLinkSettings:(NSString *)url - settings:(DBSHARINGSharedLinkSettings *)settings - removeExpiration:(nullable NSNumber *)removeExpiration; - -/// -/// The current user mounts the designated folder. Mount a shared folder for a user after they have been added as a -/// member. Once mounted, the shared folder will appear in their Dropbox. -/// -/// @param sharedFolderId The ID of the shared folder to mount. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGMountFolderError` object on failure. -/// -- (DBRpcTask *)mountFolder:(NSString *)sharedFolderId; - -/// -/// The current user relinquishes their membership in the designated file. Note that the current user may still have -/// inherited access to this file through the parent folder. -/// -/// @param file The path or id for the file. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGRelinquishFileMembershipError` object on failure. -/// -- (DBRpcTask *)relinquishFileMembership:(NSString *)file; - -/// -/// The current user relinquishes their membership in the designated shared folder and will no longer have access to the -/// folder. A folder owner cannot relinquish membership in their own folder. This will run synchronously if -/// leave_a_copy is false, and asynchronously if leave_a_copy is true. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGRelinquishFolderMembershipError` object on failure. -/// -- (DBRpcTask *)relinquishFolderMembership: - (NSString *)sharedFolderId; - -/// -/// The current user relinquishes their membership in the designated shared folder and will no longer have access to the -/// folder. A folder owner cannot relinquish membership in their own folder. This will run synchronously if -/// leave_a_copy is false, and asynchronously if leave_a_copy is true. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy Keep a copy of the folder's contents upon relinquishing membership. This must be set to false when -/// the folder is within a team folder or another shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGRelinquishFolderMembershipError` object on failure. -/// -- (DBRpcTask *) - relinquishFolderMembership:(NSString *)sharedFolderId - leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// DEPRECATED: Identical to remove_file_member_2 but with less information returned. -/// -/// @param file File from which to remove members. -/// @param member Member to remove from this file. Note that even if an email is specified, it may result in the removal -/// of a user (not an invitee) if the user's main account corresponds to that email address. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGFileMemberActionIndividualResult` object -/// on success or a `DBSHARINGRemoveFileMemberError` object on failure. -/// -- (DBRpcTask *) - removeFileMember:(NSString *)file - member:(DBSHARINGMemberSelector *)member - __deprecated_msg("removeFileMember is deprecated. Use removeFileMember2."); - -/// -/// Removes a specified member from the file. -/// -/// @param file File from which to remove members. -/// @param member Member to remove from this file. Note that even if an email is specified, it may result in the removal -/// of a user (not an invitee) if the user's main account corresponds to that email address. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGFileMemberRemoveActionResult` object on -/// success or a `DBSHARINGRemoveFileMemberError` object on failure. -/// -- (DBRpcTask *) - removeFileMember2:(NSString *)file - member:(DBSHARINGMemberSelector *)member; - -/// -/// Allows an owner or editor (if the ACL update policy allows) of a shared folder to remove another member. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member to remove from the folder. -/// @param leaveACopy If true, the removed user will keep their copy of the folder after it's unshared, assuming it was -/// mounted. Otherwise, it will be removed from their Dropbox. This must be set to false when removing a group, or when -/// the folder is within a team folder or another shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchResultBase` object on success or a -/// `DBSHARINGRemoveFolderMemberError` object on failure. -/// -- (DBRpcTask *) - removeFolderMember:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - leaveACopy:(NSNumber *)leaveACopy; - -/// -/// Revoke a shared link. Note that even after revoking a shared link to a file, the file may be accessible if there are -/// shared links leading to any of the file parent folders. To list all shared links that enable access to a specific -/// file, you can use the `listSharedLinks` with the file as the `path` in `DBSHARINGListSharedLinksArg` argument. -/// -/// @param url URL of the shared link. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGRevokeSharedLinkError` object on failure. -/// -- (DBRpcTask *)revokeSharedLink:(NSString *)url; - -/// -/// Change the inheritance policy of an existing Shared Folder. Only permitted for shared folders in a shared team root. -/// If a `asyncJobId` in `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the -/// action completes to get the metadata for the folder. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGSetAccessInheritanceError` object on failure. -/// -- (DBRpcTask *)setAccessInheritance: - (NSString *)sharedFolderId; - -/// -/// Change the inheritance policy of an existing Shared Folder. Only permitted for shared folders in a shared team root. -/// If a `asyncJobId` in `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the -/// action completes to get the metadata for the folder. -/// -/// @param accessInheritance The access inheritance settings for the folder. -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGSetAccessInheritanceError` object on failure. -/// -- (DBRpcTask *) - setAccessInheritance:(NSString *)sharedFolderId - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance; - -/// -/// Share a folder with collaborators. Most sharing will be completed synchronously. Large folders will be completed -/// asynchronously. To make testing the async case repeatable, set `ShareFolderArg.force_async`. If a `asyncJobId` in -/// `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the action completes to -/// get the metadata for the folder. -/// -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGShareFolderError` object on failure. -/// -- (DBRpcTask *)shareFolder:(NSString *)path; - -/// -/// Share a folder with collaborators. Most sharing will be completed synchronously. Large folders will be completed -/// asynchronously. To make testing the async case repeatable, set `ShareFolderArg.force_async`. If a `asyncJobId` in -/// `DBSHARINGShareFolderLaunch` is returned, you'll need to call `checkShareJobStatus` until the action completes to -/// get the metadata for the folder. -/// -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// @param linkSettings Settings on the link for this folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGShareFolderLaunch` object on success or a -/// `DBSHARINGShareFolderError` object on failure. -/// -- (DBRpcTask *) - shareFolder:(NSString *)path - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - forceAsync:(nullable NSNumber *)forceAsync - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - accessInheritance:(nullable DBSHARINGAccessInheritance *)accessInheritance - actions:(nullable NSArray *)actions - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings; - -/// -/// Transfer ownership of a shared folder to a member of the shared folder. User must have `owner` in -/// `DBSHARINGAccessLevel` access to the shared folder to perform a transfer. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param toDropboxId A account or team member ID to transfer ownership to. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGTransferFolderError` object on failure. -/// -- (DBRpcTask *)transferFolder:(NSString *)sharedFolderId - toDropboxId:(NSString *)toDropboxId; - -/// -/// The current user unmounts the designated folder. They can re-mount the folder at a later time using `mountFolder`. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGUnmountFolderError` object on failure. -/// -- (DBRpcTask *)unmountFolder:(NSString *)sharedFolderId; - -/// -/// Remove all members from this file. Does not remove inherited members. -/// -/// @param file The file to unshare. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBSHARINGUnshareFileError` object on failure. -/// -- (DBRpcTask *)unshareFile:(NSString *)file; - -/// -/// Allows a shared folder owner to unshare the folder. You'll need to call `checkJobStatus` to determine if the action -/// has completed successfully. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGUnshareFolderError` object on failure. -/// -- (DBRpcTask *)unshareFolder:(NSString *)sharedFolderId; - -/// -/// Allows a shared folder owner to unshare the folder. You'll need to call `checkJobStatus` to determine if the action -/// has completed successfully. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param leaveACopy If true, members of this shared folder will get a copy of this folder after it's unshared. -/// Otherwise, it will be removed from their Dropbox. The current user, who is an owner, will always retain their copy. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBSHARINGUnshareFolderError` object on failure. -/// -- (DBRpcTask *)unshareFolder:(NSString *)sharedFolderId - leaveACopy:(nullable NSNumber *)leaveACopy; - -/// -/// Changes a member's access on a shared file. -/// -/// @param file File for which we are changing a member's access. -/// @param member The member whose access we are changing. -/// @param accessLevel The new access level for the member. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGMemberAccessLevelResult` object on -/// success or a `DBSHARINGFileMemberActionError` object on failure. -/// -- (DBRpcTask *) - updateFileMember:(NSString *)file - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -/// -/// Allows an owner or editor of a shared folder to update another member's permissions. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param member The member of the shared folder to update. Only the `dropboxId` in `DBSHARINGMemberSelector` may be -/// set at this time. -/// @param accessLevel The new access level for member. `owner` in `DBSHARINGAccessLevel` is disallowed. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGMemberAccessLevelResult` object on -/// success or a `DBSHARINGUpdateFolderMemberError` object on failure. -/// -- (DBRpcTask *) - updateFolderMember:(NSString *)sharedFolderId - member:(DBSHARINGMemberSelector *)member - accessLevel:(DBSHARINGAccessLevel *)accessLevel; - -/// -/// Update the sharing policies for a shared folder. User must have `owner` in `DBSHARINGAccessLevel` access to the -/// shared folder to update its policies. -/// -/// @param sharedFolderId The ID for the shared folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGUpdateFolderPolicyError` object on failure. -/// -- (DBRpcTask *)updateFolderPolicy: - (NSString *)sharedFolderId; - -/// -/// Update the sharing policies for a shared folder. User must have `owner` in `DBSHARINGAccessLevel` access to the -/// shared folder to update its policies. -/// -/// @param sharedFolderId The ID for the shared folder. -/// @param memberPolicy Who can be a member of this shared folder. Only applicable if the current user is on a team. -/// @param aclUpdatePolicy Who can add and remove members of this shared folder. -/// @param viewerInfoPolicy Who can enable/disable viewer info for this shared folder. -/// @param sharedLinkPolicy The policy to apply to shared links created for content inside this shared folder. The -/// current user must be on a team to set this policy to `members` in `DBSHARINGSharedLinkPolicy`. -/// @param linkSettings Settings on the link for this folder. -/// @param actions A list of `FolderAction`s corresponding to `FolderPermission`s that should appear in the response's -/// `permissions` in `DBSHARINGSharedFolderMetadata` field describing the actions the authenticated user can perform on -/// the folder. -/// -/// @return Through the response callback, the caller will receive a `DBSHARINGSharedFolderMetadata` object on success -/// or a `DBSHARINGUpdateFolderPolicyError` object on failure. -/// -- (DBRpcTask *) - updateFolderPolicy:(NSString *)sharedFolderId - memberPolicy:(nullable DBSHARINGMemberPolicy *)memberPolicy - aclUpdatePolicy:(nullable DBSHARINGAclUpdatePolicy *)aclUpdatePolicy - viewerInfoPolicy:(nullable DBSHARINGViewerInfoPolicy *)viewerInfoPolicy - sharedLinkPolicy:(nullable DBSHARINGSharedLinkPolicy *)sharedLinkPolicy - linkSettings:(nullable DBSHARINGLinkSettings *)linkSettings - actions:(nullable NSArray *)actions; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserFileMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserFileMembershipInfo.h deleted file mode 100644 index 0f61b349..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserFileMembershipInfo.h +++ /dev/null @@ -1,116 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGUserMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSEENSTATEPlatformType; -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberPermission; -@class DBSHARINGUserFileMembershipInfo; -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFileMembershipInfo` struct. -/// -/// The information about a user member of the shared content with an appended -/// last seen timestamp. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUserFileMembershipInfo : DBSHARINGUserMembershipInfo - -#pragma mark - Instance fields - -/// The UTC timestamp of when the user has last seen the content. Only populated -/// if the user has seen the content and the caller has a plan that includes -/// viewer history. -@property (nonatomic, readonly, nullable) NSDate *timeLastSeen; - -/// The platform on which the user has last seen the content, or unknown. -@property (nonatomic, readonly, nullable) DBSEENSTATEPlatformType *platformType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// @param timeLastSeen The UTC timestamp of when the user has last seen the -/// content. Only populated if the user has seen the content and the caller has -/// a plan that includes viewer history. -/// @param platformType The platform on which the user has last seen the -/// content, or unknown. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - user:(DBSHARINGUserInfo *)user - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited - timeLastSeen:(nullable NSDate *)timeLastSeen - platformType:(nullable DBSEENSTATEPlatformType *)platformType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType user:(DBSHARINGUserInfo *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserFileMembershipInfo` struct. -/// -@interface DBSHARINGUserFileMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGUserFileMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGUserFileMembershipInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUserFileMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUserFileMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGUserFileMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUserFileMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGUserFileMembershipInfo` object. -/// -+ (DBSHARINGUserFileMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserInfo.h deleted file mode 100644 index 798a22f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserInfo.h +++ /dev/null @@ -1,116 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGUserInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserInfo` struct. -/// -/// Basic information about a user. Use `usersAccount` and `usersAccountBatch` -/// to obtain more detailed information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUserInfo : NSObject - -#pragma mark - Instance fields - -/// The account ID of the user. -@property (nonatomic, readonly, copy) NSString *accountId; - -/// Email address of user. -@property (nonatomic, readonly, copy) NSString *email; - -/// The display name of the user. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// If the user is in the same team as current user. -@property (nonatomic, readonly) NSNumber *sameTeam; - -/// The team member ID of the shared folder member. Only present if sameTeam is -/// true. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The account ID of the user. -/// @param email Email address of user. -/// @param displayName The display name of the user. -/// @param sameTeam If the user is in the same team as current user. -/// @param teamMemberId The team member ID of the shared folder member. Only -/// present if sameTeam is true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - email:(NSString *)email - displayName:(NSString *)displayName - sameTeam:(NSNumber *)sameTeam - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The account ID of the user. -/// @param email Email address of user. -/// @param displayName The display name of the user. -/// @param sameTeam If the user is in the same team as current user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - email:(NSString *)email - displayName:(NSString *)displayName - sameTeam:(NSNumber *)sameTeam; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserInfo` struct. -/// -@interface DBSHARINGUserInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGUserInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGUserInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUserInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUserInfo *)instance; - -/// -/// Deserializes `DBSHARINGUserInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUserInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGUserInfo` object. -/// -+ (DBSHARINGUserInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserMembershipInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserMembershipInfo.h deleted file mode 100644 index 8521c654..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGUserMembershipInfo.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSHARINGMembershipInfo.h" -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGMemberPermission; -@class DBSHARINGUserInfo; -@class DBSHARINGUserMembershipInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserMembershipInfo` struct. -/// -/// The information about a user member of the shared content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGUserMembershipInfo : DBSHARINGMembershipInfo - -#pragma mark - Instance fields - -/// The account information for the membership user. -@property (nonatomic, readonly) DBSHARINGUserInfo *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// @param permissions The permissions that requesting user has on this member. -/// The set of permissions corresponds to the MemberActions in the request. -/// @param initials Never set. -/// @param isInherited True if the member has access from a parent folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType - user:(DBSHARINGUserInfo *)user - permissions:(nullable NSArray *)permissions - initials:(nullable NSString *)initials - isInherited:(nullable NSNumber *)isInherited; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessType The access type for this member. It contains inherited -/// access type from parent folder, and acquired access type from this folder. -/// @param user The account information for the membership user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessType:(DBSHARINGAccessLevel *)accessType user:(DBSHARINGUserInfo *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserMembershipInfo` struct. -/// -@interface DBSHARINGUserMembershipInfoSerializer : NSObject - -/// -/// Serializes `DBSHARINGUserMembershipInfo` instances. -/// -/// @param instance An instance of the `DBSHARINGUserMembershipInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGUserMembershipInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGUserMembershipInfo *)instance; - -/// -/// Deserializes `DBSHARINGUserMembershipInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGUserMembershipInfo` API object. -/// -/// @return An instantiation of the `DBSHARINGUserMembershipInfo` object. -/// -+ (DBSHARINGUserMembershipInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGViewerInfoPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGViewerInfoPolicy.h deleted file mode 100644 index cbb20065..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGViewerInfoPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGViewerInfoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ViewerInfoPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGViewerInfoPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGViewerInfoPolicyTag` enum type represents the possible tag -/// states with which the `DBSHARINGViewerInfoPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGViewerInfoPolicyTag) { - /// Viewer information is available on this file. - DBSHARINGViewerInfoPolicyEnabled, - - /// Viewer information is disabled on this file. - DBSHARINGViewerInfoPolicyDisabled, - - /// (no description). - DBSHARINGViewerInfoPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGViewerInfoPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Viewer information is available on -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Viewer information is disabled on -/// this file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGViewerInfoPolicy` union. -/// -@interface DBSHARINGViewerInfoPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGViewerInfoPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGViewerInfoPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGViewerInfoPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGViewerInfoPolicy *)instance; - -/// -/// Deserializes `DBSHARINGViewerInfoPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGViewerInfoPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGViewerInfoPolicy` object. -/// -+ (DBSHARINGViewerInfoPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibility.h deleted file mode 100644 index 97a7fa13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibility.h +++ /dev/null @@ -1,208 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Visibility` union. -/// -/// Who can access a shared link. The most open visibility is public. The -/// default depends on many aspects, such as team and user preferences and -/// shared folder settings. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGVisibilityTag` enum type represents the possible tag states -/// with which the `DBSHARINGVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGVisibilityTag) { - /// Anyone who has received the link can access it. No login required. - DBSHARINGVisibilityPublic, - - /// Only members of the same team can access the link. Login is required. - DBSHARINGVisibilityTeamOnly, - - /// A link-specific password is required to access the link. Login is not - /// required. - DBSHARINGVisibilityPassword, - - /// Only members of the same team who have the link-specific password can - /// access the link. - DBSHARINGVisibilityTeamAndPassword, - - /// Only members of the shared folder containing the linked file can access - /// the link. Login is required. - DBSHARINGVisibilitySharedFolderOnly, - - /// (no description). - DBSHARINGVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "public". -/// -/// Description of the "public" tag state: Anyone who has received the link can -/// access it. No login required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access the link. Login is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "password". -/// -/// Description of the "password" tag state: A link-specific password is -/// required to access the link. Login is not required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "team_and_password". -/// -/// Description of the "team_and_password" tag state: Only members of the same -/// team who have the link-specific password can access the link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndPassword; - -/// -/// Initializes union class with tag state of "shared_folder_only". -/// -/// Description of the "shared_folder_only" tag state: Only members of the -/// shared folder containing the linked file can access the link. Login is -/// required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_password". -/// -/// @return Whether the union's current tag state has value "team_and_password". -/// -- (BOOL)isTeamAndPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_only". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_only". -/// -- (BOOL)isSharedFolderOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGVisibility` union. -/// -@interface DBSHARINGVisibilitySerializer : NSObject - -/// -/// Serializes `DBSHARINGVisibility` instances. -/// -/// @param instance An instance of the `DBSHARINGVisibility` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGVisibility *)instance; - -/// -/// Deserializes `DBSHARINGVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGVisibility` API object. -/// -/// @return An instantiation of the `DBSHARINGVisibility` object. -/// -+ (DBSHARINGVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibilityPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibilityPolicy.h deleted file mode 100644 index 87d01cd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibilityPolicy.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAlphaResolvedVisibility; -@class DBSHARINGRequestedVisibility; -@class DBSHARINGVisibilityPolicy; -@class DBSHARINGVisibilityPolicyDisallowedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `VisibilityPolicy` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGVisibilityPolicy : NSObject - -#pragma mark - Instance fields - -/// This is the value to submit when saving the visibility setting. -@property (nonatomic, readonly) DBSHARINGRequestedVisibility *policy; - -/// This is what the effective policy would be, if you selected this option. The -/// resolved policy is obtained after considering external effects such as -/// shared folder settings and team policy. This value is guaranteed to be -/// provided. -@property (nonatomic, readonly) DBSHARINGAlphaResolvedVisibility *resolvedPolicy; - -/// Whether the user is permitted to set the visibility to this policy. -@property (nonatomic, readonly) NSNumber *allowed; - -/// If allowed is false, this will provide the reason that the user is not -/// permitted to set the visibility to this policy. -@property (nonatomic, readonly, nullable) DBSHARINGVisibilityPolicyDisallowedReason *disallowedReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param policy This is the value to submit when saving the visibility -/// setting. -/// @param resolvedPolicy This is what the effective policy would be, if you -/// selected this option. The resolved policy is obtained after considering -/// external effects such as shared folder settings and team policy. This value -/// is guaranteed to be provided. -/// @param allowed Whether the user is permitted to set the visibility to this -/// policy. -/// @param disallowedReason If allowed is false, this will provide the reason -/// that the user is not permitted to set the visibility to this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPolicy:(DBSHARINGRequestedVisibility *)policy - resolvedPolicy:(DBSHARINGAlphaResolvedVisibility *)resolvedPolicy - allowed:(NSNumber *)allowed - disallowedReason:(nullable DBSHARINGVisibilityPolicyDisallowedReason *)disallowedReason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param policy This is the value to submit when saving the visibility -/// setting. -/// @param resolvedPolicy This is what the effective policy would be, if you -/// selected this option. The resolved policy is obtained after considering -/// external effects such as shared folder settings and team policy. This value -/// is guaranteed to be provided. -/// @param allowed Whether the user is permitted to set the visibility to this -/// policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPolicy:(DBSHARINGRequestedVisibility *)policy - resolvedPolicy:(DBSHARINGAlphaResolvedVisibility *)resolvedPolicy - allowed:(NSNumber *)allowed; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `VisibilityPolicy` struct. -/// -@interface DBSHARINGVisibilityPolicySerializer : NSObject - -/// -/// Serializes `DBSHARINGVisibilityPolicy` instances. -/// -/// @param instance An instance of the `DBSHARINGVisibilityPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGVisibilityPolicy *)instance; - -/// -/// Deserializes `DBSHARINGVisibilityPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicy` API object. -/// -/// @return An instantiation of the `DBSHARINGVisibilityPolicy` object. -/// -+ (DBSHARINGVisibilityPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibilityPolicyDisallowedReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibilityPolicyDisallowedReason.h deleted file mode 100644 index efa387ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSHARINGVisibilityPolicyDisallowedReason.h +++ /dev/null @@ -1,235 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGVisibilityPolicyDisallowedReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `VisibilityPolicyDisallowedReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBSHARINGVisibilityPolicyDisallowedReason : NSObject - -#pragma mark - Instance fields - -/// The `DBSHARINGVisibilityPolicyDisallowedReasonTag` enum type represents the -/// possible tag states with which the -/// `DBSHARINGVisibilityPolicyDisallowedReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBSHARINGVisibilityPolicyDisallowedReasonTag) { - /// The user needs to delete and recreate the link to change the visibility - /// policy. - DBSHARINGVisibilityPolicyDisallowedReasonDeleteAndRecreate, - - /// The parent shared folder restricts sharing of links outside the shared - /// folder. To change the visibility policy, remove the restriction from the - /// parent shared folder. - DBSHARINGVisibilityPolicyDisallowedReasonRestrictedBySharedFolder, - - /// The team policy prevents links being shared outside the team. - DBSHARINGVisibilityPolicyDisallowedReasonRestrictedByTeam, - - /// The user needs to be on a team to set this policy. - DBSHARINGVisibilityPolicyDisallowedReasonUserNotOnTeam, - - /// The user is a basic user or is on a limited team. - DBSHARINGVisibilityPolicyDisallowedReasonUserAccountType, - - /// The user does not have permission. - DBSHARINGVisibilityPolicyDisallowedReasonPermissionDenied, - - /// (no description). - DBSHARINGVisibilityPolicyDisallowedReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBSHARINGVisibilityPolicyDisallowedReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete_and_recreate". -/// -/// Description of the "delete_and_recreate" tag state: The user needs to delete -/// and recreate the link to change the visibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteAndRecreate; - -/// -/// Initializes union class with tag state of "restricted_by_shared_folder". -/// -/// Description of the "restricted_by_shared_folder" tag state: The parent -/// shared folder restricts sharing of links outside the shared folder. To -/// change the visibility policy, remove the restriction from the parent shared -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedBySharedFolder; - -/// -/// Initializes union class with tag state of "restricted_by_team". -/// -/// Description of the "restricted_by_team" tag state: The team policy prevents -/// links being shared outside the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestrictedByTeam; - -/// -/// Initializes union class with tag state of "user_not_on_team". -/// -/// Description of the "user_not_on_team" tag state: The user needs to be on a -/// team to set this policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotOnTeam; - -/// -/// Initializes union class with tag state of "user_account_type". -/// -/// Description of the "user_account_type" tag state: The user is a basic user -/// or is on a limited team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAccountType; - -/// -/// Initializes union class with tag state of "permission_denied". -/// -/// Description of the "permission_denied" tag state: The user does not have -/// permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermissionDenied; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_and_recreate". -/// -/// @return Whether the union's current tag state has value -/// "delete_and_recreate". -/// -- (BOOL)isDeleteAndRecreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_shared_folder". -/// -- (BOOL)isRestrictedBySharedFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "restricted_by_team". -/// -/// @return Whether the union's current tag state has value -/// "restricted_by_team". -/// -- (BOOL)isRestrictedByTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_on_team". -/// -/// @return Whether the union's current tag state has value "user_not_on_team". -/// -- (BOOL)isUserNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_account_type". -/// -/// @return Whether the union's current tag state has value "user_account_type". -/// -- (BOOL)isUserAccountType; - -/// -/// Retrieves whether the union's current tag state has value -/// "permission_denied". -/// -/// @return Whether the union's current tag state has value "permission_denied". -/// -- (BOOL)isPermissionDenied; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBSHARINGVisibilityPolicyDisallowedReason` -/// union. -/// -@interface DBSHARINGVisibilityPolicyDisallowedReasonSerializer : NSObject - -/// -/// Serializes `DBSHARINGVisibilityPolicyDisallowedReason` instances. -/// -/// @param instance An instance of the -/// `DBSHARINGVisibilityPolicyDisallowedReason` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicyDisallowedReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBSHARINGVisibilityPolicyDisallowedReason *)instance; - -/// -/// Deserializes `DBSHARINGVisibilityPolicyDisallowedReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBSHARINGVisibilityPolicyDisallowedReason` API object. -/// -/// @return An instantiation of the `DBSHARINGVisibilityPolicyDisallowedReason` -/// object. -/// -+ (DBSHARINGVisibilityPolicyDisallowedReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBScopeRequest.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBScopeRequest.h deleted file mode 100644 index 0c9377eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBScopeRequest.h +++ /dev/null @@ -1,34 +0,0 @@ -/// -/// Copyright (c) 2020 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -typedef NS_ENUM(NSUInteger, DBScopeType) { - DBScopeTypeTeam = 0, - DBScopeTypeUser, -}; - -/// Contains the information of requested scopes. -@interface DBScopeRequest : NSObject - -- (instancetype)init NS_UNAVAILABLE; - -/// -/// Designated Initializer. -/// -/// @param scopeType Type of the requested scopes. -/// @param scopes A list of scope returned by Dropbox server. Each scope correspond to a group of API endpoints. -/// To call one API endpoint you have to obtains the scope first otherwise you will get HTTP 401. -/// @param includeGrantedScopes If false, Dropbox will give you the scopes in scopes array. -/// Otherwise Dropbox server will return a token with all scopes user previously granted your app -/// together with the new scopes. -- (instancetype)initWithScopeType:(DBScopeType)scopeType - scopes:(NSArray *)scopes - includeGrantedScopes:(BOOL)includeGrantedScopes NS_DESIGNATED_INITIALIZER; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSerializableProtocol.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSerializableProtocol.h deleted file mode 100644 index 6fdd745e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSerializableProtocol.h +++ /dev/null @@ -1,44 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Protocol which all Obj-C SDK API route objects must implement, otherwise a compiler-warning -/// is generated. -/// -@protocol DBSerializable - -/// -/// Class method which returns a json-compatible dictionary representation of the -/// supplied object. -/// -/// @param instance An instance of the API object to be serialized. -/// -/// @return A serialized, json-compatible dictionary representation of the API object. -/// -+ (nullable NSDictionary *)serialize:(id)instance; - -/// -/// Class method which returns an instantiation of the supplied object as represented -/// by a json-compatible dictionary. -/// -/// @param dict A dictionary representation of the API object to be serialized. -/// -/// @return A deserialized, instantiation of the API object. -/// -+ (id)deserialize:(NSDictionary *)dict; - -/// -/// Description method. -/// -/// @return A human-readable representation of the current object. -/// -- (NSString *)description; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSharedApplicationProtocol.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSharedApplicationProtocol.h deleted file mode 100644 index e4d541c9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBSharedApplicationProtocol.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Protocol implemented by platform-specific builds of the Obj-C SDK -/// for properly rendering the OAuth linking flow. -/// -@protocol DBSharedApplication - -typedef void (^DBOAuthCancelBlock)(void); - -/// -/// Presents a platform-specific error message, and halts the auth flow. -/// -/// @param message String to display which describes the error. -/// @param title String to display which titles the error view. -/// -- (void)presentErrorMessage:(NSString *)message title:(NSString *)title; - -/// -/// Presents a platform-specific error message, and halts the auth flow. Optional handlers may be provided for view -/// display buttons (mainly useful in the mobile case). -/// -/// @param message String to display which describes the error. -/// @param title String to display which titles the error view. -/// @param buttonHandlers Map from button name to button handler. -/// -- (void)presentErrorMessageWithHandlers:(NSString *)message - title:(NSString *)title - buttonHandlers:(NSDictionary *)buttonHandlers; - -/// -/// Presents platform-specific authorization paths. -/// -/// This method is called before more generic, platform-neutral auth methods. For example, in the mobile case, the Obj-C -/// SDK will use a direct authorization route with the Dropbox mobile app, if it is installed on the current device. -/// -/// @param authURL Gateway url to commence auth flow. -/// -- (BOOL)presentPlatformSpecificAuth:(NSURL *)authURL; - -/// -/// Presents platform-neutral auth flow. -/// -/// @param authURL Gateway url to commence auth flow. -/// @param cancelHandler Handler for cancelling auth flow. Opens "cancel" url to signal cancellation. -/// -- (void)presentAuthChannel:(NSURL *)authURL cancelHandler:(DBOAuthCancelBlock)cancelHandler; - -/// -/// Opens external app to handle url. -/// -/// This method opens whichever app is registered to handle the type of the supplied url, and then passes the supplied -/// url into the newly opened app. -/// -/// @param url Url to open with external app. -/// -- (void)presentExternalApp:(NSURL *)url; - -/// -/// Checks whether there is an external app registered to open the url type. -/// -/// @param url Url to check. -/// -/// @return Whether there is an external app registered to open the url type. -/// -- (BOOL)canPresentExternalApp:(NSURL *)url; - -/// Presents platform-specific loading UX indicating an async operation is ongoing and potentially blocking -/// user interaction while loading. -- (void)presentLoading; - -/// Dismisses loading UX. -- (void)dismissLoading; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneBase.h deleted file mode 100644 index 794c51f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneBase.h +++ /dev/null @@ -1,67 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBStoneSerializers.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Route object used to encapsulate route-specific information. -/// -@interface DBRoute : NSObject - -/// Name of the route. -@property (nonatomic, readonly, copy) NSString *name; - -/// Namespace that the route is contained within. -@property (nonatomic, readonly, copy) NSString *namespace_; - -/// Whether the route is deprecated. -@property (nonatomic, readonly) NSNumber *deprecated; - -/// Class of the route's result object type (must implement `DBSerializable` -/// protocol). -@property (nonatomic, readonly, nullable) Class resultType; - -/// Class of the route's error object type (must implement `DBSerializable` -/// protocol). Note: this class is only for route-specific errors, as opposed -/// to more generic Dropbox API errors, as represented by the `DBRequestError` -/// class. -@property (nonatomic, readonly, nullable) Class errorType; - -/// Custom attributes associated with each route (can pertain to authentication -/// type, host cluster, request-type, etc.). -@property (nonatomic, readonly, nullable) NSDictionary *attrs; - -/// Serialization block for the route's result object type, if that result object -/// type is an `NSArray`, otherwise nil. -@property (nonatomic, readonly, nullable) id (^dataStructSerialBlock)(id dataStruct); - -/// Deserialization block for the route's result object type, if that result object -/// type is a data structure, otherwise nil. -@property (nonatomic, readonly, nullable) id (^dataStructDeserialBlock)(id dataStruct); - -/// Initializes the route object. -- (nonnull instancetype)init:(NSString *)name - namespace_:(NSString *)namespace_ - deprecated:(NSNumber *)deprecated - resultType:(nullable Class)resultType - errorType:(nullable Class)errorType - attrs:(NSDictionary *)attrs - dataStructSerialBlock:(id (^_Nullable)(id))dataStructSerialBlock - dataStructDeserialBlock:(id (^_Nullable)(id))dataStructDeserialBlock; - -@end - -/// -/// Wrapper object designed to represent a nil response from the Dropbox API. -/// -@interface DBNilObject : NSObject - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneSerializers.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneSerializers.h deleted file mode 100644 index ec11e38d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneSerializers.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBSerializableProtocol.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Category to ensure `NSArray` class "implements" `DBSerializable` protocol, which is -/// required for all Obj-C SDK API route arguments. This avoids a compiler warning for -/// `NSArray` route arguments. -/// -@interface NSArray (DBSerializable) - -+ (nullable NSDictionary *)serialize:(id)obj; - -+ (id)deserialize:(NSDictionary *)dict; - -@end - -/// -/// Category to ensure `NSString` class "implements" `DBSerializable` protocol, which is -/// required for all Obj-C SDK API route arguments. This avoids a compiler warning for -/// `NSString` route arguments. -/// -@interface NSString (DBSerializable) - -+ (nullable NSDictionary *)serialize:(id)obj; - -+ (id)deserialize:(NSDictionary *)dict; - -@end - -/// -/// Serializer functions used by the SDK to serialize/deserialize `NSDate` types. -/// -@interface DBNSDateSerializer : NSObject - -/// Returns a json-compatible `NSString` that represents an `NSDate` type based on the supplied -/// `NSDate` object and date format string. -+ (NSString *)serialize:(NSDate *)value dateFormat:(NSString *)dateFormat; - -/// Returns an `NSDate` object from the supplied `NSString`-representation of an `NSDate` object and -/// the supplied date format string. -+ (NSDate *)deserialize:(NSString *)value dateFormat:(NSString *)dateFormat; - -@end - -/// -/// Serializer functions used by the SDK to serialize/deserialize `NSArray` types. -/// -@interface DBArraySerializer : NSObject - -/// Applies a serialization block to each element in the array and returns a new array with -/// all elements serialized. The serialization block either serializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSArray *)serialize:(NSArray *)value withBlock:(id (^_Nonnull)(id))serializeBlock; - -/// Applies a deserialization block to each element in the array and returns a new array with -/// all elements deserialized. The serialization block either deserializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSArray *)deserialize:(NSArray *)jsonData withBlock:(id (^_Nonnull)(id))deserializeBlock; - -@end - -/// -/// Serializer functions used by the SDK to serialize/deserialize `NSArray` types. -/// -@interface DBMapSerializer : NSObject - -/// Applies a serialization block to each element in the map and returns a new map with -/// all elements serialized. The serialization block either serializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSDictionary *)serialize:(NSDictionary *)value withBlock:(id (^_Nonnull)(id))serializeBlock; - -/// Applies a deserialization block to each element in the map and returns a new map with -/// all elements deserialized. The serialization block either deserializes the object, or if the -/// object is a wrapper for a primitive type, it leaves it unchanged. -+ (NSDictionary *)deserialize:(NSDictionary *)jsonData withBlock:(id (^_Nonnull)(id))deserializeBlock; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneValidators.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneValidators.h deleted file mode 100644 index ee246597..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBStoneValidators.h +++ /dev/null @@ -1,42 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Validator functions used by SDK to impose value constraints. -/// -@interface DBStoneValidators : NSObject - -/// Validator for `NSString` objects. Enforces minimum length and/or maximum length and/or regex pattern. -+ (void (^_Nonnull)(NSString *))stringValidator:(nullable NSNumber *)minLength - maxLength:(nullable NSNumber *)maxLength - pattern:(nullable NSString *)pattern; - -/// Validator for `NSNumber` objects. Enforces minimum value and/or maximum value. -+ (void (^_Nonnull)(NSNumber *))numericValidator:(nullable NSNumber *)minValue maxValue:(nullable NSNumber *)maxValue; - -/// Validator for `NSArray` objects. Enforces minimum number of items and/or maximum minimum number of items. Method -/// requires a validator block that can validate each item in the array. -+ (void (^_Nonnull)(NSArray *))arrayValidator:(nullable NSNumber *)minItems - maxItems:(nullable NSNumber *)maxItems - itemValidator:(void (^_Nullable)(T))itemValidator; - -/// Validator for `NSDictionary` objects. Enforces minimum number of items and/or maximum minimum number of items. -/// Method -/// requires a validator block that can validate each item in the array. -+ (void (^_Nonnull)(NSDictionary *))mapValidator:(void (^_Nullable)(T))itemValidator; - -/// Wrapper validator for nullable objects. Maintains a reference to the object's normal non-nullable validator. -+ (void (^_Nonnull)(T))nullableValidator:(void (^_Nonnull)(T))internalValidator; - -+ (void (^_Nonnull)(id))nonnullValidator:(void (^_Nullable)(id))internalValidator; - -+ (void)raiseIllegalStateErrorWithMessage:(NSString *)message; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMActiveWebSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMActiveWebSession.h deleted file mode 100644 index 368c23b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMActiveWebSession.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSession.h" - -@class DBTEAMActiveWebSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ActiveWebSession` struct. -/// -/// Information on active web sessions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMActiveWebSession : DBTEAMDeviceSession - -#pragma mark - Instance fields - -/// Information on the hosting device. -@property (nonatomic, readonly, copy) NSString *userAgent; - -/// Information on the hosting operating system. -@property (nonatomic, readonly, copy) NSString *os; - -/// Information on the browser used for this web session. -@property (nonatomic, readonly, copy) NSString *browser; - -/// The time this session expires. -@property (nonatomic, readonly, nullable) NSDate *expires; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param expires The time this session expires. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - userAgent:(NSString *)userAgent - os:(NSString *)os - browser:(NSString *)browser - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - expires:(nullable NSDate *)expires; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - userAgent:(NSString *)userAgent - os:(NSString *)os - browser:(NSString *)browser; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ActiveWebSession` struct. -/// -@interface DBTEAMActiveWebSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMActiveWebSession` instances. -/// -/// @param instance An instance of the `DBTEAMActiveWebSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMActiveWebSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMActiveWebSession *)instance; - -/// -/// Deserializes `DBTEAMActiveWebSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMActiveWebSession` API object. -/// -/// @return An instantiation of the `DBTEAMActiveWebSession` object. -/// -+ (DBTEAMActiveWebSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailResult.h deleted file mode 100644 index a336f326..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailResult.h +++ /dev/null @@ -1,383 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSECONDARYEMAILSSecondaryEmail; -@class DBTEAMAddSecondaryEmailResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailResult` union. -/// -/// Result of trying to add a secondary email to a user. 'success' is the only -/// value indicating that a secondary email was successfully added to a user. -/// The other values explain the type of error that occurred, and include the -/// email for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMAddSecondaryEmailResultTag` enum type represents the possible tag -/// states with which the `DBTEAMAddSecondaryEmailResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMAddSecondaryEmailResultTag) { - /// Describes a secondary email that was successfully added to a user. - DBTEAMAddSecondaryEmailResultSuccess, - - /// Secondary email is not available to be claimed by the user. - DBTEAMAddSecondaryEmailResultUnavailable, - - /// Secondary email is already a pending email for the user. - DBTEAMAddSecondaryEmailResultAlreadyPending, - - /// Secondary email is already a verified email for the user. - DBTEAMAddSecondaryEmailResultAlreadyOwnedByUser, - - /// User already has the maximum number of secondary emails allowed. - DBTEAMAddSecondaryEmailResultReachedLimit, - - /// A transient error occurred. Please try again later. - DBTEAMAddSecondaryEmailResultTransientError, - - /// An error occurred due to conflicting updates. Please try again later. - DBTEAMAddSecondaryEmailResultTooManyUpdates, - - /// An unknown error occurred. - DBTEAMAddSecondaryEmailResultUnknownError, - - /// Too many emails are being sent to this email address. Please try again - /// later. - DBTEAMAddSecondaryEmailResultRateLimited, - - /// (no description). - DBTEAMAddSecondaryEmailResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMAddSecondaryEmailResultTag tag; - -/// Describes a secondary email that was successfully added to a user. @note -/// Ensure the `isSuccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBSECONDARYEMAILSSecondaryEmail *success; - -/// Secondary email is not available to be claimed by the user. @note Ensure the -/// `isUnavailable` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *unavailable; - -/// Secondary email is already a pending email for the user. @note Ensure the -/// `isAlreadyPending` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *alreadyPending; - -/// Secondary email is already a verified email for the user. @note Ensure the -/// `isAlreadyOwnedByUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *alreadyOwnedByUser; - -/// User already has the maximum number of secondary emails allowed. @note -/// Ensure the `isReachedLimit` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *reachedLimit; - -/// A transient error occurred. Please try again later. @note Ensure the -/// `isTransientError` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *transientError; - -/// An error occurred due to conflicting updates. Please try again later. @note -/// Ensure the `isTooManyUpdates` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *tooManyUpdates; - -/// An unknown error occurred. @note Ensure the `isUnknownError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *unknownError; - -/// Too many emails are being sent to this email address. Please try again -/// later. @note Ensure the `isRateLimited` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *rateLimited; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a secondary email that was -/// successfully added to a user. -/// -/// @param success Describes a secondary email that was successfully added to a -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBSECONDARYEMAILSSecondaryEmail *)success; - -/// -/// Initializes union class with tag state of "unavailable". -/// -/// Description of the "unavailable" tag state: Secondary email is not available -/// to be claimed by the user. -/// -/// @param unavailable Secondary email is not available to be claimed by the -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnavailable:(NSString *)unavailable; - -/// -/// Initializes union class with tag state of "already_pending". -/// -/// Description of the "already_pending" tag state: Secondary email is already a -/// pending email for the user. -/// -/// @param alreadyPending Secondary email is already a pending email for the -/// user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyPending:(NSString *)alreadyPending; - -/// -/// Initializes union class with tag state of "already_owned_by_user". -/// -/// Description of the "already_owned_by_user" tag state: Secondary email is -/// already a verified email for the user. -/// -/// @param alreadyOwnedByUser Secondary email is already a verified email for -/// the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlreadyOwnedByUser:(NSString *)alreadyOwnedByUser; - -/// -/// Initializes union class with tag state of "reached_limit". -/// -/// Description of the "reached_limit" tag state: User already has the maximum -/// number of secondary emails allowed. -/// -/// @param reachedLimit User already has the maximum number of secondary emails -/// allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReachedLimit:(NSString *)reachedLimit; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: A transient error occurred. -/// Please try again later. -/// -/// @param transientError A transient error occurred. Please try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError:(NSString *)transientError; - -/// -/// Initializes union class with tag state of "too_many_updates". -/// -/// Description of the "too_many_updates" tag state: An error occurred due to -/// conflicting updates. Please try again later. -/// -/// @param tooManyUpdates An error occurred due to conflicting updates. Please -/// try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUpdates:(NSString *)tooManyUpdates; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: An unknown error occurred. -/// -/// @param unknownError An unknown error occurred. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError:(NSString *)unknownError; - -/// -/// Initializes union class with tag state of "rate_limited". -/// -/// Description of the "rate_limited" tag state: Too many emails are being sent -/// to this email address. Please try again later. -/// -/// @param rateLimited Too many emails are being sent to this email address. -/// Please try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimited:(NSString *)rateLimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "unavailable". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unavailable` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "unavailable". -/// -- (BOOL)isUnavailable; - -/// -/// Retrieves whether the union's current tag state has value "already_pending". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `alreadyPending` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "already_pending". -/// -- (BOOL)isAlreadyPending; - -/// -/// Retrieves whether the union's current tag state has value -/// "already_owned_by_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `alreadyOwnedByUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "already_owned_by_user". -/// -- (BOOL)isAlreadyOwnedByUser; - -/// -/// Retrieves whether the union's current tag state has value "reached_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `reachedLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "reached_limit". -/// -- (BOOL)isReachedLimit; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `transientError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_updates". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tooManyUpdates` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "too_many_updates". -/// -- (BOOL)isTooManyUpdates; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unknownError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value "rate_limited". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rateLimited` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "rate_limited". -/// -- (BOOL)isRateLimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMAddSecondaryEmailResult` union. -/// -@interface DBTEAMAddSecondaryEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailResult *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailResult` object. -/// -+ (DBTEAMAddSecondaryEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsArg.h deleted file mode 100644 index df9d6652..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailsArg; -@class DBTEAMUserSecondaryEmailsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailsArg : NSObject - -#pragma mark - Instance fields - -/// List of users and secondary emails to add. -@property (nonatomic, readonly) NSArray *dNewSecondaryEmails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewSecondaryEmails List of users and secondary emails to add. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewSecondaryEmails:(NSArray *)dNewSecondaryEmails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddSecondaryEmailsArg` struct. -/// -@interface DBTEAMAddSecondaryEmailsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailsArg` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailsArg *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsArg` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailsArg` object. -/// -+ (DBTEAMAddSecondaryEmailsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsError.h deleted file mode 100644 index 53beaf81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsError.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailsError` union. -/// -/// Error returned when adding secondary emails fails. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMAddSecondaryEmailsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMAddSecondaryEmailsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMAddSecondaryEmailsErrorTag) { - /// Secondary emails are disabled for the team. - DBTEAMAddSecondaryEmailsErrorSecondaryEmailsDisabled, - - /// A maximum of 20 secondary emails can be added in a single call. - DBTEAMAddSecondaryEmailsErrorTooManyEmails, - - /// (no description). - DBTEAMAddSecondaryEmailsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMAddSecondaryEmailsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "secondary_emails_disabled". -/// -/// Description of the "secondary_emails_disabled" tag state: Secondary emails -/// are disabled for the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailsDisabled; - -/// -/// Initializes union class with tag state of "too_many_emails". -/// -/// Description of the "too_many_emails" tag state: A maximum of 20 secondary -/// emails can be added in a single call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyEmails; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_emails_disabled". -/// -/// @return Whether the union's current tag state has value -/// "secondary_emails_disabled". -/// -- (BOOL)isSecondaryEmailsDisabled; - -/// -/// Retrieves whether the union's current tag state has value "too_many_emails". -/// -/// @return Whether the union's current tag state has value "too_many_emails". -/// -- (BOOL)isTooManyEmails; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMAddSecondaryEmailsError` union. -/// -@interface DBTEAMAddSecondaryEmailsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailsError` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailsError *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsError` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailsError` object. -/// -+ (DBTEAMAddSecondaryEmailsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsResult.h deleted file mode 100644 index 4f328a34..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAddSecondaryEmailsResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailsResult; -@class DBTEAMUserAddResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AddSecondaryEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAddSecondaryEmailsResult : NSObject - -#pragma mark - Instance fields - -/// List of users and secondary email results. -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param results List of users and secondary email results. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResults:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AddSecondaryEmailsResult` struct. -/// -@interface DBTEAMAddSecondaryEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMAddSecondaryEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMAddSecondaryEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAddSecondaryEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMAddSecondaryEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAddSecondaryEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMAddSecondaryEmailsResult` object. -/// -+ (DBTEAMAddSecondaryEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAdminTier.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAdminTier.h deleted file mode 100644 index e6a769ea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMAdminTier.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminTier` union. -/// -/// Describes which team-related admin permissions a user has. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMAdminTier : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMAdminTierTag` enum type represents the possible tag states with -/// which the `DBTEAMAdminTier` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMAdminTierTag) { - /// User is an administrator of the team - has all permissions. - DBTEAMAdminTierTeamAdmin, - - /// User can do most user provisioning, de-provisioning and management. - DBTEAMAdminTierUserManagementAdmin, - - /// User can do a limited set of common support tasks for existing users. - /// Note: Dropbox is adding new types of admin roles; these may display as - /// support_admin. - DBTEAMAdminTierSupportAdmin, - - /// User is not an admin of the team. - DBTEAMAdminTierMemberOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMAdminTierTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_admin". -/// -/// Description of the "team_admin" tag state: User is an administrator of the -/// team - has all permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAdmin; - -/// -/// Initializes union class with tag state of "user_management_admin". -/// -/// Description of the "user_management_admin" tag state: User can do most user -/// provisioning, de-provisioning and management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManagementAdmin; - -/// -/// Initializes union class with tag state of "support_admin". -/// -/// Description of the "support_admin" tag state: User can do a limited set of -/// common support tasks for existing users. Note: Dropbox is adding new types -/// of admin roles; these may display as support_admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSupportAdmin; - -/// -/// Initializes union class with tag state of "member_only". -/// -/// Description of the "member_only" tag state: User is not an admin of the -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team_admin". -/// -/// @return Whether the union's current tag state has value "team_admin". -/// -- (BOOL)isTeamAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_management_admin". -/// -/// @return Whether the union's current tag state has value -/// "user_management_admin". -/// -- (BOOL)isUserManagementAdmin; - -/// -/// Retrieves whether the union's current tag state has value "support_admin". -/// -/// @return Whether the union's current tag state has value "support_admin". -/// -- (BOOL)isSupportAdmin; - -/// -/// Retrieves whether the union's current tag state has value "member_only". -/// -/// @return Whether the union's current tag state has value "member_only". -/// -- (BOOL)isMemberOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMAdminTier` union. -/// -@interface DBTEAMAdminTierSerializer : NSObject - -/// -/// Serializes `DBTEAMAdminTier` instances. -/// -/// @param instance An instance of the `DBTEAMAdminTier` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMAdminTier` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMAdminTier *)instance; - -/// -/// Deserializes `DBTEAMAdminTier` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMAdminTier` API object. -/// -/// @return An instantiation of the `DBTEAMAdminTier` object. -/// -+ (DBTEAMAdminTier *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMApiApp.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMApiApp.h deleted file mode 100644 index e08f1c72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMApiApp.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMApiApp; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApiApp` struct. -/// -/// Information on linked third party applications. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMApiApp : NSObject - -#pragma mark - Instance fields - -/// The application unique id. -@property (nonatomic, readonly, copy) NSString *appId; - -/// The application name. -@property (nonatomic, readonly, copy) NSString *appName; - -/// The application publisher name. -@property (nonatomic, readonly, copy, nullable) NSString *publisher; - -/// The publisher's URL. -@property (nonatomic, readonly, copy, nullable) NSString *publisherUrl; - -/// The time this application was linked. -@property (nonatomic, readonly, nullable) NSDate *linked; - -/// Whether the linked application uses a dedicated folder. -@property (nonatomic, readonly) NSNumber *isAppFolder; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId The application unique id. -/// @param appName The application name. -/// @param isAppFolder Whether the linked application uses a dedicated folder. -/// @param publisher The application publisher name. -/// @param publisherUrl The publisher's URL. -/// @param linked The time this application was linked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId - appName:(NSString *)appName - isAppFolder:(NSNumber *)isAppFolder - publisher:(nullable NSString *)publisher - publisherUrl:(nullable NSString *)publisherUrl - linked:(nullable NSDate *)linked; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param appId The application unique id. -/// @param appName The application name. -/// @param isAppFolder Whether the linked application uses a dedicated folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId appName:(NSString *)appName isAppFolder:(NSNumber *)isAppFolder; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApiApp` struct. -/// -@interface DBTEAMApiAppSerializer : NSObject - -/// -/// Serializes `DBTEAMApiApp` instances. -/// -/// @param instance An instance of the `DBTEAMApiApp` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMApiApp` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMApiApp *)instance; - -/// -/// Deserializes `DBTEAMApiApp` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMApiApp` API object. -/// -/// @return An instantiation of the `DBTEAMApiApp` object. -/// -+ (DBTEAMApiApp *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMBaseDfbReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMBaseDfbReport.h deleted file mode 100644 index 69cd23fb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMBaseDfbReport.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMBaseDfbReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BaseDfbReport` struct. -/// -/// Base report structure. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMBaseDfbReport : NSObject - -#pragma mark - Instance fields - -/// First date present in the results as 'YYYY-MM-DD' or None. -@property (nonatomic, readonly, copy) NSString *startDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BaseDfbReport` struct. -/// -@interface DBTEAMBaseDfbReportSerializer : NSObject - -/// -/// Serializes `DBTEAMBaseDfbReport` instances. -/// -/// @param instance An instance of the `DBTEAMBaseDfbReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMBaseDfbReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMBaseDfbReport *)instance; - -/// -/// Deserializes `DBTEAMBaseDfbReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMBaseDfbReport` API object. -/// -/// @return An instantiation of the `DBTEAMBaseDfbReport` object. -/// -+ (DBTEAMBaseDfbReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMBaseTeamFolderError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMBaseTeamFolderError.h deleted file mode 100644 index 74c860c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMBaseTeamFolderError.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMBaseTeamFolderError; -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BaseTeamFolderError` union. -/// -/// Base error that all errors for existing team folders should extend. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMBaseTeamFolderError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMBaseTeamFolderErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMBaseTeamFolderError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMBaseTeamFolderErrorTag) { - /// (no description). - DBTEAMBaseTeamFolderErrorAccessError, - - /// (no description). - DBTEAMBaseTeamFolderErrorStatusError, - - /// (no description). - DBTEAMBaseTeamFolderErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMBaseTeamFolderErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMBaseTeamFolderErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMBaseTeamFolderError` union. -/// -@interface DBTEAMBaseTeamFolderErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMBaseTeamFolderError` instances. -/// -/// @param instance An instance of the `DBTEAMBaseTeamFolderError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMBaseTeamFolderError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMBaseTeamFolderError *)instance; - -/// -/// Deserializes `DBTEAMBaseTeamFolderError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMBaseTeamFolderError` API object. -/// -/// @return An instantiation of the `DBTEAMBaseTeamFolderError` object. -/// -+ (DBTEAMBaseTeamFolderError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupManagementType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupManagementType.h deleted file mode 100644 index 099da4c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupManagementType.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupManagementType` union. -/// -/// The group type determines how a group is managed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONGroupManagementType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCOMMONGroupManagementTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMCOMMONGroupManagementType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCOMMONGroupManagementTypeTag) { - /// A group which is managed by selected users. - DBTEAMCOMMONGroupManagementTypeUserManaged, - - /// A group which is managed by team admins only. - DBTEAMCOMMONGroupManagementTypeCompanyManaged, - - /// A group which is managed automatically by Dropbox. - DBTEAMCOMMONGroupManagementTypeSystemManaged, - - /// (no description). - DBTEAMCOMMONGroupManagementTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCOMMONGroupManagementTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_managed". -/// -/// Description of the "user_managed" tag state: A group which is managed by -/// selected users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManaged; - -/// -/// Initializes union class with tag state of "company_managed". -/// -/// Description of the "company_managed" tag state: A group which is managed by -/// team admins only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCompanyManaged; - -/// -/// Initializes union class with tag state of "system_managed". -/// -/// Description of the "system_managed" tag state: A group which is managed -/// automatically by Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManaged; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_managed". -/// -/// @return Whether the union's current tag state has value "user_managed". -/// -- (BOOL)isUserManaged; - -/// -/// Retrieves whether the union's current tag state has value "company_managed". -/// -/// @return Whether the union's current tag state has value "company_managed". -/// -- (BOOL)isCompanyManaged; - -/// -/// Retrieves whether the union's current tag state has value "system_managed". -/// -/// @return Whether the union's current tag state has value "system_managed". -/// -- (BOOL)isSystemManaged; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCOMMONGroupManagementType` union. -/// -@interface DBTEAMCOMMONGroupManagementTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONGroupManagementType` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONGroupManagementType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupManagementType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONGroupManagementType *)instance; - -/// -/// Deserializes `DBTEAMCOMMONGroupManagementType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupManagementType` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONGroupManagementType` object. -/// -+ (DBTEAMCOMMONGroupManagementType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupSummary.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupSummary.h deleted file mode 100644 index 4939b389..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupSummary.h +++ /dev/null @@ -1,114 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMCOMMONGroupSummary; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSummary` struct. -/// -/// Information about a group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONGroupSummary : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *groupName; - -/// (no description). -@property (nonatomic, readonly, copy) NSString *groupId; - -/// External ID of group. This is an arbitrary ID that an admin can attach to a -/// group. -@property (nonatomic, readonly, copy, nullable) NSString *groupExternalId; - -/// The number of members in the group. -@property (nonatomic, readonly, nullable) NSNumber *memberCount; - -/// Who is allowed to manage the group. -@property (nonatomic, readonly) DBTEAMCOMMONGroupManagementType *groupManagementType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param groupExternalId External ID of group. This is an arbitrary ID that an -/// admin can attach to a group. -/// @param memberCount The number of members in the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - groupExternalId:(nullable NSString *)groupExternalId - memberCount:(nullable NSNumber *)memberCount; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupSummary` struct. -/// -@interface DBTEAMCOMMONGroupSummarySerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONGroupSummary` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONGroupSummary` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupSummary` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONGroupSummary *)instance; - -/// -/// Deserializes `DBTEAMCOMMONGroupSummary` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupSummary` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONGroupSummary` object. -/// -+ (DBTEAMCOMMONGroupSummary *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupType.h deleted file mode 100644 index 62411508..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONGroupType.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupType` union. -/// -/// The group type determines how a group is created and managed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONGroupType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCOMMONGroupTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMCOMMONGroupType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCOMMONGroupTypeTag) { - /// A group to which team members are automatically added. Applicable to - /// team folders https://www.dropbox.com/help/986 only. - DBTEAMCOMMONGroupTypeTeam, - - /// A group is created and managed by a user. - DBTEAMCOMMONGroupTypeUserManaged, - - /// (no description). - DBTEAMCOMMONGroupTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCOMMONGroupTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: A group to which team members are -/// automatically added. Applicable to team folders -/// https://www.dropbox.com/help/986 only. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "user_managed". -/// -/// Description of the "user_managed" tag state: A group is created and managed -/// by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManaged; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "user_managed". -/// -/// @return Whether the union's current tag state has value "user_managed". -/// -- (BOOL)isUserManaged; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCOMMONGroupType` union. -/// -@interface DBTEAMCOMMONGroupTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONGroupType` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONGroupType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONGroupType *)instance; - -/// -/// Deserializes `DBTEAMCOMMONGroupType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONGroupType` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONGroupType` object. -/// -+ (DBTEAMCOMMONGroupType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONMemberSpaceLimitType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONMemberSpaceLimitType.h deleted file mode 100644 index af108acd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONMemberSpaceLimitType.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONMemberSpaceLimitType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitType` union. -/// -/// The type of the space limit imposed on a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONMemberSpaceLimitType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCOMMONMemberSpaceLimitTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMCOMMONMemberSpaceLimitType` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCOMMONMemberSpaceLimitTypeTag) { - /// The team member does not have imposed space limit. - DBTEAMCOMMONMemberSpaceLimitTypeOff, - - /// The team member has soft imposed space limit - the limit is used for - /// display and for notifications. - DBTEAMCOMMONMemberSpaceLimitTypeAlertOnly, - - /// The team member has hard imposed space limit - Dropbox file sync will - /// stop after the limit is reached. - DBTEAMCOMMONMemberSpaceLimitTypeStopSync, - - /// (no description). - DBTEAMCOMMONMemberSpaceLimitTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCOMMONMemberSpaceLimitTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "off". -/// -/// Description of the "off" tag state: The team member does not have imposed -/// space limit. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOff; - -/// -/// Initializes union class with tag state of "alert_only". -/// -/// Description of the "alert_only" tag state: The team member has soft imposed -/// space limit - the limit is used for display and for notifications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertOnly; - -/// -/// Initializes union class with tag state of "stop_sync". -/// -/// Description of the "stop_sync" tag state: The team member has hard imposed -/// space limit - Dropbox file sync will stop after the limit is reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStopSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "off". -/// -/// @return Whether the union's current tag state has value "off". -/// -- (BOOL)isOff; - -/// -/// Retrieves whether the union's current tag state has value "alert_only". -/// -/// @return Whether the union's current tag state has value "alert_only". -/// -- (BOOL)isAlertOnly; - -/// -/// Retrieves whether the union's current tag state has value "stop_sync". -/// -/// @return Whether the union's current tag state has value "stop_sync". -/// -- (BOOL)isStopSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCOMMONMemberSpaceLimitType` union. -/// -@interface DBTEAMCOMMONMemberSpaceLimitTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONMemberSpaceLimitType` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONMemberSpaceLimitType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONMemberSpaceLimitType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONMemberSpaceLimitType *)instance; - -/// -/// Deserializes `DBTEAMCOMMONMemberSpaceLimitType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONMemberSpaceLimitType` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONMemberSpaceLimitType` object. -/// -+ (DBTEAMCOMMONMemberSpaceLimitType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONTimeRange.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONTimeRange.h deleted file mode 100644 index 8f8a074d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCOMMONTimeRange.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONTimeRange; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TimeRange` struct. -/// -/// Time range. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCOMMONTimeRange : NSObject - -#pragma mark - Instance fields - -/// Optional starting time (inclusive). -@property (nonatomic, readonly, nullable) NSDate *startTime; - -/// Optional ending time (exclusive). -@property (nonatomic, readonly, nullable) NSDate *endTime; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startTime Optional starting time (inclusive). -/// @param endTime Optional ending time (exclusive). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartTime:(nullable NSDate *)startTime endTime:(nullable NSDate *)endTime; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TimeRange` struct. -/// -@interface DBTEAMCOMMONTimeRangeSerializer : NSObject - -/// -/// Serializes `DBTEAMCOMMONTimeRange` instances. -/// -/// @param instance An instance of the `DBTEAMCOMMONTimeRange` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCOMMONTimeRange` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCOMMONTimeRange *)instance; - -/// -/// Deserializes `DBTEAMCOMMONTimeRange` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCOMMONTimeRange` API object. -/// -/// @return An instantiation of the `DBTEAMCOMMONTimeRange` object. -/// -+ (DBTEAMCOMMONTimeRange *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaError.h deleted file mode 100644 index 19c8aafb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCustomQuotaError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CustomQuotaError` union. -/// -/// Error returned when getting member custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCustomQuotaError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCustomQuotaErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMCustomQuotaError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCustomQuotaErrorTag) { - /// A maximum of 1000 users can be set for a single call. - DBTEAMCustomQuotaErrorTooManyUsers, - - /// (no description). - DBTEAMCustomQuotaErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCustomQuotaErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_users". -/// -/// Description of the "too_many_users" tag state: A maximum of 1000 users can -/// be set for a single call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUsers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_users". -/// -/// @return Whether the union's current tag state has value "too_many_users". -/// -- (BOOL)isTooManyUsers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCustomQuotaError` union. -/// -@interface DBTEAMCustomQuotaErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMCustomQuotaError` instances. -/// -/// @param instance An instance of the `DBTEAMCustomQuotaError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCustomQuotaError *)instance; - -/// -/// Deserializes `DBTEAMCustomQuotaError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaError` API object. -/// -/// @return An instantiation of the `DBTEAMCustomQuotaError` object. -/// -+ (DBTEAMCustomQuotaError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaResult.h deleted file mode 100644 index fd791d87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaResult.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCustomQuotaResult; -@class DBTEAMUserCustomQuotaResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CustomQuotaResult` union. -/// -/// User custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCustomQuotaResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMCustomQuotaResultTag` enum type represents the possible tag -/// states with which the `DBTEAMCustomQuotaResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMCustomQuotaResultTag) { - /// User's custom quota. - DBTEAMCustomQuotaResultSuccess, - - /// Invalid user (not in team). - DBTEAMCustomQuotaResultInvalidUser, - - /// (no description). - DBTEAMCustomQuotaResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMCustomQuotaResultTag tag; - -/// User's custom quota. @note Ensure the `isSuccess` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserCustomQuotaResult *success; - -/// Invalid user (not in team). @note Ensure the `isInvalidUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: User's custom quota. -/// -/// @param success User's custom quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserCustomQuotaResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Invalid user (not in team). -/// -/// @param invalidUser Invalid user (not in team). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMCustomQuotaResult` union. -/// -@interface DBTEAMCustomQuotaResultSerializer : NSObject - -/// -/// Serializes `DBTEAMCustomQuotaResult` instances. -/// -/// @param instance An instance of the `DBTEAMCustomQuotaResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCustomQuotaResult *)instance; - -/// -/// Deserializes `DBTEAMCustomQuotaResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaResult` API object. -/// -/// @return An instantiation of the `DBTEAMCustomQuotaResult` object. -/// -+ (DBTEAMCustomQuotaResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaUsersArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaUsersArg.h deleted file mode 100644 index ecfccbf7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMCustomQuotaUsersArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCustomQuotaUsersArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CustomQuotaUsersArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMCustomQuotaUsersArg : NSObject - -#pragma mark - Instance fields - -/// List of users. -@property (nonatomic, readonly) NSArray *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users List of users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CustomQuotaUsersArg` struct. -/// -@interface DBTEAMCustomQuotaUsersArgSerializer : NSObject - -/// -/// Serializes `DBTEAMCustomQuotaUsersArg` instances. -/// -/// @param instance An instance of the `DBTEAMCustomQuotaUsersArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaUsersArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMCustomQuotaUsersArg *)instance; - -/// -/// Deserializes `DBTEAMCustomQuotaUsersArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMCustomQuotaUsersArg` API object. -/// -/// @return An instantiation of the `DBTEAMCustomQuotaUsersArg` object. -/// -+ (DBTEAMCustomQuotaUsersArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDateRange.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDateRange.h deleted file mode 100644 index ef43e04d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDateRange.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDateRange; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DateRange` struct. -/// -/// Input arguments that can be provided for most reports. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDateRange : NSObject - -#pragma mark - Instance fields - -/// Optional starting date (inclusive). If start_date is None or too long ago, -/// this field will be set to 6 months ago. -@property (nonatomic, readonly, nullable) NSDate *startDate; - -/// Optional ending date (exclusive). -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Optional starting date (inclusive). If start_date is None -/// or too long ago, this field will be set to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(nullable NSDate *)startDate endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DateRange` struct. -/// -@interface DBTEAMDateRangeSerializer : NSObject - -/// -/// Serializes `DBTEAMDateRange` instances. -/// -/// @param instance An instance of the `DBTEAMDateRange` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMDateRange` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDateRange *)instance; - -/// -/// Deserializes `DBTEAMDateRange` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDateRange` API object. -/// -/// @return An instantiation of the `DBTEAMDateRange` object. -/// -+ (DBTEAMDateRange *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDateRangeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDateRangeError.h deleted file mode 100644 index 9856c582..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDateRangeError.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDateRangeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DateRangeError` union. -/// -/// Errors that can originate from problems in input arguments to reports. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDateRangeError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMDateRangeErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMDateRangeError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMDateRangeErrorTag) { - /// (no description). - DBTEAMDateRangeErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMDateRangeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMDateRangeError` union. -/// -@interface DBTEAMDateRangeErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMDateRangeError` instances. -/// -/// @param instance An instance of the `DBTEAMDateRangeError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDateRangeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDateRangeError *)instance; - -/// -/// Deserializes `DBTEAMDateRangeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDateRangeError` API object. -/// -/// @return An instantiation of the `DBTEAMDateRangeError` object. -/// -+ (DBTEAMDateRangeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailResult.h deleted file mode 100644 index c0c4cb97..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailResult.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteSecondaryEmailResult` union. -/// -/// Result of trying to delete a secondary email address. 'success' is the only -/// value indicating that a secondary email was successfully deleted. The other -/// values explain the type of error that occurred, and include the email for -/// which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeleteSecondaryEmailResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMDeleteSecondaryEmailResultTag` enum type represents the possible -/// tag states with which the `DBTEAMDeleteSecondaryEmailResult` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMDeleteSecondaryEmailResultTag) { - /// The secondary email was successfully deleted. - DBTEAMDeleteSecondaryEmailResultSuccess, - - /// The email address was not found for the user. - DBTEAMDeleteSecondaryEmailResultNotFound, - - /// The email address is the primary email address of the user, and cannot - /// be removed. - DBTEAMDeleteSecondaryEmailResultCannotRemovePrimary, - - /// (no description). - DBTEAMDeleteSecondaryEmailResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMDeleteSecondaryEmailResultTag tag; - -/// The secondary email was successfully deleted. @note Ensure the `isSuccess` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *success; - -/// The email address was not found for the user. @note Ensure the `isNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *notFound; - -/// The email address is the primary email address of the user, and cannot be -/// removed. @note Ensure the `isCannotRemovePrimary` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *cannotRemovePrimary; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: The secondary email was successfully -/// deleted. -/// -/// @param success The secondary email was successfully deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSString *)success; - -/// -/// Initializes union class with tag state of "not_found". -/// -/// Description of the "not_found" tag state: The email address was not found -/// for the user. -/// -/// @param notFound The email address was not found for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotFound:(NSString *)notFound; - -/// -/// Initializes union class with tag state of "cannot_remove_primary". -/// -/// Description of the "cannot_remove_primary" tag state: The email address is -/// the primary email address of the user, and cannot be removed. -/// -/// @param cannotRemovePrimary The email address is the primary email address of -/// the user, and cannot be removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRemovePrimary:(NSString *)cannotRemovePrimary; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `notFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "not_found". -/// -- (BOOL)isNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_remove_primary". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cannotRemovePrimary` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "cannot_remove_primary". -/// -- (BOOL)isCannotRemovePrimary; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMDeleteSecondaryEmailResult` union. -/// -@interface DBTEAMDeleteSecondaryEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMDeleteSecondaryEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMDeleteSecondaryEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeleteSecondaryEmailResult *)instance; - -/// -/// Deserializes `DBTEAMDeleteSecondaryEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMDeleteSecondaryEmailResult` object. -/// -+ (DBTEAMDeleteSecondaryEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailsArg.h deleted file mode 100644 index 3ef9891b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailsArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailsArg; -@class DBTEAMUserSecondaryEmailsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteSecondaryEmailsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeleteSecondaryEmailsArg : NSObject - -#pragma mark - Instance fields - -/// List of users and their secondary emails to delete. -@property (nonatomic, readonly) NSArray *emailsToDelete; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param emailsToDelete List of users and their secondary emails to delete. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailsToDelete:(NSArray *)emailsToDelete; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteSecondaryEmailsArg` struct. -/// -@interface DBTEAMDeleteSecondaryEmailsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMDeleteSecondaryEmailsArg` instances. -/// -/// @param instance An instance of the `DBTEAMDeleteSecondaryEmailsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeleteSecondaryEmailsArg *)instance; - -/// -/// Deserializes `DBTEAMDeleteSecondaryEmailsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsArg` API object. -/// -/// @return An instantiation of the `DBTEAMDeleteSecondaryEmailsArg` object. -/// -+ (DBTEAMDeleteSecondaryEmailsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailsResult.h deleted file mode 100644 index 493293e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeleteSecondaryEmailsResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailsResult; -@class DBTEAMUserDeleteResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteSecondaryEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeleteSecondaryEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResults:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteSecondaryEmailsResult` struct. -/// -@interface DBTEAMDeleteSecondaryEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMDeleteSecondaryEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMDeleteSecondaryEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeleteSecondaryEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMDeleteSecondaryEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeleteSecondaryEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMDeleteSecondaryEmailsResult` object. -/// -+ (DBTEAMDeleteSecondaryEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDesktopClientSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDesktopClientSession.h deleted file mode 100644 index 4ce236f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDesktopClientSession.h +++ /dev/null @@ -1,130 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSession.h" - -@class DBTEAMDesktopClientSession; -@class DBTEAMDesktopPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopClientSession` struct. -/// -/// Information about linked Dropbox desktop client sessions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDesktopClientSession : DBTEAMDeviceSession - -#pragma mark - Instance fields - -/// Name of the hosting desktop. -@property (nonatomic, readonly, copy) NSString *hostName; - -/// The Dropbox desktop client type. -@property (nonatomic, readonly) DBTEAMDesktopPlatform *clientType; - -/// The Dropbox client version. -@property (nonatomic, readonly, copy) NSString *clientVersion; - -/// Information on the hosting platform. -@property (nonatomic, readonly, copy) NSString *platform; - -/// Whether it's possible to delete all of the account files upon unlinking. -@property (nonatomic, readonly) NSNumber *isDeleteOnUnlinkSupported; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param clientVersion The Dropbox client version. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether it's possible to delete all of the -/// account files upon unlinking. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - hostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - clientVersion:(NSString *)clientVersion - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param clientVersion The Dropbox client version. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether it's possible to delete all of the -/// account files upon unlinking. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - hostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - clientVersion:(NSString *)clientVersion - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DesktopClientSession` struct. -/// -@interface DBTEAMDesktopClientSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMDesktopClientSession` instances. -/// -/// @param instance An instance of the `DBTEAMDesktopClientSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDesktopClientSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDesktopClientSession *)instance; - -/// -/// Deserializes `DBTEAMDesktopClientSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDesktopClientSession` API object. -/// -/// @return An instantiation of the `DBTEAMDesktopClientSession` object. -/// -+ (DBTEAMDesktopClientSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDesktopPlatform.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDesktopPlatform.h deleted file mode 100644 index 292bf662..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDesktopPlatform.h +++ /dev/null @@ -1,155 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDesktopPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopPlatform` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDesktopPlatform : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMDesktopPlatformTag` enum type represents the possible tag states -/// with which the `DBTEAMDesktopPlatform` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMDesktopPlatformTag) { - /// Official Windows Dropbox desktop client. - DBTEAMDesktopPlatformWindows, - - /// Official Mac Dropbox desktop client. - DBTEAMDesktopPlatformMac, - - /// Official Linux Dropbox desktop client. - DBTEAMDesktopPlatformLinux, - - /// (no description). - DBTEAMDesktopPlatformOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMDesktopPlatformTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "windows". -/// -/// Description of the "windows" tag state: Official Windows Dropbox desktop -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWindows; - -/// -/// Initializes union class with tag state of "mac". -/// -/// Description of the "mac" tag state: Official Mac Dropbox desktop client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMac; - -/// -/// Initializes union class with tag state of "linux". -/// -/// Description of the "linux" tag state: Official Linux Dropbox desktop client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinux; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "windows". -/// -/// @return Whether the union's current tag state has value "windows". -/// -- (BOOL)isWindows; - -/// -/// Retrieves whether the union's current tag state has value "mac". -/// -/// @return Whether the union's current tag state has value "mac". -/// -- (BOOL)isMac; - -/// -/// Retrieves whether the union's current tag state has value "linux". -/// -/// @return Whether the union's current tag state has value "linux". -/// -- (BOOL)isLinux; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMDesktopPlatform` union. -/// -@interface DBTEAMDesktopPlatformSerializer : NSObject - -/// -/// Serializes `DBTEAMDesktopPlatform` instances. -/// -/// @param instance An instance of the `DBTEAMDesktopPlatform` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDesktopPlatform` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDesktopPlatform *)instance; - -/// -/// Deserializes `DBTEAMDesktopPlatform` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDesktopPlatform` API object. -/// -/// @return An instantiation of the `DBTEAMDesktopPlatform` object. -/// -+ (DBTEAMDesktopPlatform *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeviceSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeviceSession.h deleted file mode 100644 index 1d2195c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeviceSession.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeviceSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSession` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeviceSession : NSObject - -#pragma mark - Instance fields - -/// The session id. -@property (nonatomic, readonly, copy) NSString *sessionId; - -/// The IP address of the last activity from this session. -@property (nonatomic, readonly, copy, nullable) NSString *ipAddress; - -/// The country from which the last activity from this session was made. -@property (nonatomic, readonly, copy, nullable) NSString *country; - -/// The time this session was created. -@property (nonatomic, readonly, nullable) NSDate *created; - -/// The time of the last activity from this session. -@property (nonatomic, readonly, nullable) NSDate *updated; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSession` struct. -/// -@interface DBTEAMDeviceSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMDeviceSession` instances. -/// -/// @param instance An instance of the `DBTEAMDeviceSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeviceSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeviceSession *)instance; - -/// -/// Deserializes `DBTEAMDeviceSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeviceSession` API object. -/// -/// @return An instantiation of the `DBTEAMDeviceSession` object. -/// -+ (DBTEAMDeviceSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeviceSessionArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeviceSessionArg.h deleted file mode 100644 index f87e5c08..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDeviceSessionArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeviceSessionArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSessionArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDeviceSessionArg : NSObject - -#pragma mark - Instance fields - -/// The session id. -@property (nonatomic, readonly, copy) NSString *sessionId; - -/// The unique id of the member owning the device. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId teamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSessionArg` struct. -/// -@interface DBTEAMDeviceSessionArgSerializer : NSObject - -/// -/// Serializes `DBTEAMDeviceSessionArg` instances. -/// -/// @param instance An instance of the `DBTEAMDeviceSessionArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDeviceSessionArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDeviceSessionArg *)instance; - -/// -/// Deserializes `DBTEAMDeviceSessionArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDeviceSessionArg` API object. -/// -/// @return An instantiation of the `DBTEAMDeviceSessionArg` object. -/// -+ (DBTEAMDeviceSessionArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDevicesActive.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDevicesActive.h deleted file mode 100644 index 7de71992..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMDevicesActive.h +++ /dev/null @@ -1,113 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDevicesActive; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DevicesActive` struct. -/// -/// Each of the items is an array of values, one value per day. The value is the -/// number of devices active within a time window, ending with that day. If -/// there is no data for a day, then the value will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMDevicesActive : NSObject - -#pragma mark - Instance fields - -/// Array of number of linked windows (desktop) clients with activity. -@property (nonatomic, readonly) NSArray *windows; - -/// Array of number of linked mac (desktop) clients with activity. -@property (nonatomic, readonly) NSArray *macos; - -/// Array of number of linked linus (desktop) clients with activity. -@property (nonatomic, readonly) NSArray *linux; - -/// Array of number of linked ios devices with activity. -@property (nonatomic, readonly) NSArray *ios; - -/// Array of number of linked android devices with activity. -@property (nonatomic, readonly) NSArray *android; - -/// Array of number of other linked devices (blackberry, windows phone, etc) -/// with activity. -@property (nonatomic, readonly) NSArray *other; - -/// Array of total number of linked clients with activity. -@property (nonatomic, readonly) NSArray *total; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param windows Array of number of linked windows (desktop) clients with -/// activity. -/// @param macos Array of number of linked mac (desktop) clients with activity. -/// @param linux Array of number of linked linus (desktop) clients with -/// activity. -/// @param ios Array of number of linked ios devices with activity. -/// @param android Array of number of linked android devices with activity. -/// @param other Array of number of other linked devices (blackberry, windows -/// phone, etc) with activity. -/// @param total Array of total number of linked clients with activity. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWindows:(NSArray *)windows - macos:(NSArray *)macos - linux:(NSArray *)linux - ios:(NSArray *)ios - android:(NSArray *)android - other:(NSArray *)other - total:(NSArray *)total; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DevicesActive` struct. -/// -@interface DBTEAMDevicesActiveSerializer : NSObject - -/// -/// Serializes `DBTEAMDevicesActive` instances. -/// -/// @param instance An instance of the `DBTEAMDevicesActive` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMDevicesActive` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMDevicesActive *)instance; - -/// -/// Deserializes `DBTEAMDevicesActive` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMDevicesActive` API object. -/// -/// @return An instantiation of the `DBTEAMDevicesActive` object. -/// -+ (DBTEAMDevicesActive *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListArg.h deleted file mode 100644 index 5b596d7c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListArg.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListArg` struct. -/// -/// Excluded users list argument. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListArg : NSObject - -#pragma mark - Instance fields - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of results to return per call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersListArg` struct. -/// -@interface DBTEAMExcludedUsersListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListArg` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListArg *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListArg` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListArg` object. -/// -+ (DBTEAMExcludedUsersListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListContinueArg.h deleted file mode 100644 index 5fbbe9cf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListContinueArg` struct. -/// -/// Excluded users list continue argument. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of users. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersListContinueArg` struct. -/// -@interface DBTEAMExcludedUsersListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListContinueArg` object. -/// -+ (DBTEAMExcludedUsersListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListContinueError.h deleted file mode 100644 index 01aec2f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListContinueError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListContinueError` union. -/// -/// Excluded users list continue error. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMExcludedUsersListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMExcludedUsersListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMExcludedUsersListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersListContinueError` -/// union. -/// -@interface DBTEAMExcludedUsersListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListContinueError *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListContinueError` -/// object. -/// -+ (DBTEAMExcludedUsersListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListError.h deleted file mode 100644 index f4d302d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListError` union. -/// -/// Excluded users list error. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersListErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMExcludedUsersListError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersListErrorTag) { - /// An error occurred. - DBTEAMExcludedUsersListErrorListError, - - /// (no description). - DBTEAMExcludedUsersListErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersListErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "list_error". -/// -/// Description of the "list_error" tag state: An error occurred. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithListError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "list_error". -/// -/// @return Whether the union's current tag state has value "list_error". -/// -- (BOOL)isListError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersListError` union. -/// -@interface DBTEAMExcludedUsersListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListError` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListError *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListError` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListError` object. -/// -+ (DBTEAMExcludedUsersListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListResult.h deleted file mode 100644 index 33330d06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersListResult.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersListResult; -@class DBTEAMMemberProfile; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersListResult` struct. -/// -/// Excluded users list result. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersListResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *users; - -/// Pass the cursor into `memberSpaceLimitsExcludedUsersListContinue` to obtain -/// additional excluded users. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// Is true if there are additional excluded users that have not been returned -/// yet. An additional call to `memberSpaceLimitsExcludedUsersListContinue` can -/// retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users (no description). -/// @param hasMore Is true if there are additional excluded users that have not -/// been returned yet. An additional call to -/// `memberSpaceLimitsExcludedUsersListContinue` can retrieve them. -/// @param cursor Pass the cursor into -/// `memberSpaceLimitsExcludedUsersListContinue` to obtain additional excluded -/// users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param users (no description). -/// @param hasMore Is true if there are additional excluded users that have not -/// been returned yet. An additional call to -/// `memberSpaceLimitsExcludedUsersListContinue` can retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(NSArray *)users hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersListResult` struct. -/// -@interface DBTEAMExcludedUsersListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersListResult` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersListResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersListResult *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersListResult` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersListResult` object. -/// -+ (DBTEAMExcludedUsersListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateArg.h deleted file mode 100644 index 82ace085..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateArg.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateArg` struct. -/// -/// Argument of excluded users update operation. Should include a list of users -/// to add/remove (according to endpoint), Maximum size of the list is 1000 -/// users. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateArg : NSObject - -#pragma mark - Instance fields - -/// List of users to be added/removed. -@property (nonatomic, readonly, nullable) NSArray *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param users List of users to be added/removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsers:(nullable NSArray *)users; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersUpdateArg` struct. -/// -@interface DBTEAMExcludedUsersUpdateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateArg` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateArg *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateArg` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateArg` object. -/// -+ (DBTEAMExcludedUsersUpdateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateError.h deleted file mode 100644 index dded9118..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateError.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateError` union. -/// -/// Excluded users update error. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersUpdateErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMExcludedUsersUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersUpdateErrorTag) { - /// At least one of the users is not part of your team. - DBTEAMExcludedUsersUpdateErrorUsersNotInTeam, - - /// A maximum of 1000 users for each of addition/removal can be supplied. - DBTEAMExcludedUsersUpdateErrorTooManyUsers, - - /// (no description). - DBTEAMExcludedUsersUpdateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "users_not_in_team". -/// -/// Description of the "users_not_in_team" tag state: At least one of the users -/// is not part of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersNotInTeam; - -/// -/// Initializes union class with tag state of "too_many_users". -/// -/// Description of the "too_many_users" tag state: A maximum of 1000 users for -/// each of addition/removal can be supplied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUsers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "users_not_in_team". -/// -/// @return Whether the union's current tag state has value "users_not_in_team". -/// -- (BOOL)isUsersNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "too_many_users". -/// -/// @return Whether the union's current tag state has value "too_many_users". -/// -- (BOOL)isTooManyUsers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersUpdateError` union. -/// -@interface DBTEAMExcludedUsersUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateError` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateError *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateError` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateError` object. -/// -+ (DBTEAMExcludedUsersUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateResult.h deleted file mode 100644 index 26fb9a99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateResult.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateResult; -@class DBTEAMExcludedUsersUpdateStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateResult` struct. -/// -/// Excluded users update result. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateResult : NSObject - -#pragma mark - Instance fields - -/// Update status. -@property (nonatomic, readonly) DBTEAMExcludedUsersUpdateStatus *status; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param status Update status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatus:(DBTEAMExcludedUsersUpdateStatus *)status; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExcludedUsersUpdateResult` struct. -/// -@interface DBTEAMExcludedUsersUpdateResultSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateResult` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateResult *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateResult` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateResult` object. -/// -+ (DBTEAMExcludedUsersUpdateResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateStatus.h deleted file mode 100644 index 640a7213..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMExcludedUsersUpdateStatus.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMExcludedUsersUpdateStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExcludedUsersUpdateStatus` union. -/// -/// Excluded users update operation status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMExcludedUsersUpdateStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMExcludedUsersUpdateStatusTag` enum type represents the possible -/// tag states with which the `DBTEAMExcludedUsersUpdateStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMExcludedUsersUpdateStatusTag) { - /// Update successful. - DBTEAMExcludedUsersUpdateStatusSuccess, - - /// (no description). - DBTEAMExcludedUsersUpdateStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMExcludedUsersUpdateStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Update successful. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMExcludedUsersUpdateStatus` union. -/// -@interface DBTEAMExcludedUsersUpdateStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMExcludedUsersUpdateStatus` instances. -/// -/// @param instance An instance of the `DBTEAMExcludedUsersUpdateStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMExcludedUsersUpdateStatus *)instance; - -/// -/// Deserializes `DBTEAMExcludedUsersUpdateStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMExcludedUsersUpdateStatus` API object. -/// -/// @return An instantiation of the `DBTEAMExcludedUsersUpdateStatus` object. -/// -+ (DBTEAMExcludedUsersUpdateStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeature.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeature.h deleted file mode 100644 index af54bddd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeature.h +++ /dev/null @@ -1,187 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeature; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Feature` union. -/// -/// A set of features that a Dropbox Business account may support. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeature : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMFeatureTag` enum type represents the possible tag states with -/// which the `DBTEAMFeature` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMFeatureTag) { - /// The number of upload API calls allowed per month. - DBTEAMFeatureUploadApiRateLimit, - - /// Does this team have a shared team root. - DBTEAMFeatureHasTeamSharedDropbox, - - /// Does this team have file events. - DBTEAMFeatureHasTeamFileEvents, - - /// Does this team have team selective sync enabled. - DBTEAMFeatureHasTeamSelectiveSync, - - /// (no description). - DBTEAMFeatureOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMFeatureTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "upload_api_rate_limit". -/// -/// Description of the "upload_api_rate_limit" tag state: The number of upload -/// API calls allowed per month. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUploadApiRateLimit; - -/// -/// Initializes union class with tag state of "has_team_shared_dropbox". -/// -/// Description of the "has_team_shared_dropbox" tag state: Does this team have -/// a shared team root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSharedDropbox; - -/// -/// Initializes union class with tag state of "has_team_file_events". -/// -/// Description of the "has_team_file_events" tag state: Does this team have -/// file events. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamFileEvents; - -/// -/// Initializes union class with tag state of "has_team_selective_sync". -/// -/// Description of the "has_team_selective_sync" tag state: Does this team have -/// team selective sync enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSelectiveSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -/// @return Whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -- (BOOL)isUploadApiRateLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -/// @return Whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -- (BOOL)isHasTeamSharedDropbox; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_file_events". -/// -/// @return Whether the union's current tag state has value -/// "has_team_file_events". -/// -- (BOOL)isHasTeamFileEvents; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_selective_sync". -/// -/// @return Whether the union's current tag state has value -/// "has_team_selective_sync". -/// -- (BOOL)isHasTeamSelectiveSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMFeature` union. -/// -@interface DBTEAMFeatureSerializer : NSObject - -/// -/// Serializes `DBTEAMFeature` instances. -/// -/// @param instance An instance of the `DBTEAMFeature` API object. -/// -/// @return A json-compatible dictionary representation of the `DBTEAMFeature` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeature *)instance; - -/// -/// Deserializes `DBTEAMFeature` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeature` API object. -/// -/// @return An instantiation of the `DBTEAMFeature` object. -/// -+ (DBTEAMFeature *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeatureValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeatureValue.h deleted file mode 100644 index 7718de6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeatureValue.h +++ /dev/null @@ -1,218 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeatureValue; -@class DBTEAMHasTeamFileEventsValue; -@class DBTEAMHasTeamSelectiveSyncValue; -@class DBTEAMHasTeamSharedDropboxValue; -@class DBTEAMUploadApiRateLimitValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeatureValue` union. -/// -/// The values correspond to entries in Feature. You may get different value -/// according to your Dropbox Business plan. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeatureValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMFeatureValueTag` enum type represents the possible tag states -/// with which the `DBTEAMFeatureValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMFeatureValueTag) { - /// (no description). - DBTEAMFeatureValueUploadApiRateLimit, - - /// (no description). - DBTEAMFeatureValueHasTeamSharedDropbox, - - /// (no description). - DBTEAMFeatureValueHasTeamFileEvents, - - /// (no description). - DBTEAMFeatureValueHasTeamSelectiveSync, - - /// (no description). - DBTEAMFeatureValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMFeatureValueTag tag; - -/// (no description). @note Ensure the `isUploadApiRateLimit` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUploadApiRateLimitValue *uploadApiRateLimit; - -/// (no description). @note Ensure the `isHasTeamSharedDropbox` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMHasTeamSharedDropboxValue *hasTeamSharedDropbox; - -/// (no description). @note Ensure the `isHasTeamFileEvents` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMHasTeamFileEventsValue *hasTeamFileEvents; - -/// (no description). @note Ensure the `isHasTeamSelectiveSync` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMHasTeamSelectiveSyncValue *hasTeamSelectiveSync; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "upload_api_rate_limit". -/// -/// @param uploadApiRateLimit (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUploadApiRateLimit:(DBTEAMUploadApiRateLimitValue *)uploadApiRateLimit; - -/// -/// Initializes union class with tag state of "has_team_shared_dropbox". -/// -/// @param hasTeamSharedDropbox (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSharedDropbox:(DBTEAMHasTeamSharedDropboxValue *)hasTeamSharedDropbox; - -/// -/// Initializes union class with tag state of "has_team_file_events". -/// -/// @param hasTeamFileEvents (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamFileEvents:(DBTEAMHasTeamFileEventsValue *)hasTeamFileEvents; - -/// -/// Initializes union class with tag state of "has_team_selective_sync". -/// -/// @param hasTeamSelectiveSync (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSelectiveSync:(DBTEAMHasTeamSelectiveSyncValue *)hasTeamSelectiveSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `uploadApiRateLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "upload_api_rate_limit". -/// -- (BOOL)isUploadApiRateLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSharedDropbox` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -- (BOOL)isHasTeamSharedDropbox; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_file_events". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamFileEvents` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_file_events". -/// -- (BOOL)isHasTeamFileEvents; - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_selective_sync". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSelectiveSync` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_selective_sync". -/// -- (BOOL)isHasTeamSelectiveSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMFeatureValue` union. -/// -@interface DBTEAMFeatureValueSerializer : NSObject - -/// -/// Serializes `DBTEAMFeatureValue` instances. -/// -/// @param instance An instance of the `DBTEAMFeatureValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeatureValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeatureValue *)instance; - -/// -/// Deserializes `DBTEAMFeatureValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeatureValue` API object. -/// -/// @return An instantiation of the `DBTEAMFeatureValue` object. -/// -+ (DBTEAMFeatureValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchArg.h deleted file mode 100644 index 297b98f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeature; -@class DBTEAMFeaturesGetValuesBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeaturesGetValuesBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeaturesGetValuesBatchArg : NSObject - -#pragma mark - Instance fields - -/// A list of features in Feature. If the list is empty, this route will return -/// FeaturesGetValuesBatchError. -@property (nonatomic, readonly) NSArray *features; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param features A list of features in Feature. If the list is empty, this -/// route will return FeaturesGetValuesBatchError. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFeatures:(NSArray *)features; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FeaturesGetValuesBatchArg` struct. -/// -@interface DBTEAMFeaturesGetValuesBatchArgSerializer : NSObject - -/// -/// Serializes `DBTEAMFeaturesGetValuesBatchArg` instances. -/// -/// @param instance An instance of the `DBTEAMFeaturesGetValuesBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeaturesGetValuesBatchArg *)instance; - -/// -/// Deserializes `DBTEAMFeaturesGetValuesBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchArg` API object. -/// -/// @return An instantiation of the `DBTEAMFeaturesGetValuesBatchArg` object. -/// -+ (DBTEAMFeaturesGetValuesBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchError.h deleted file mode 100644 index f9268f0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeaturesGetValuesBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeaturesGetValuesBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeaturesGetValuesBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMFeaturesGetValuesBatchErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMFeaturesGetValuesBatchError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMFeaturesGetValuesBatchErrorTag) { - /// At least one Feature must be included in the - /// FeaturesGetValuesBatchArg.features list. - DBTEAMFeaturesGetValuesBatchErrorEmptyFeaturesList, - - /// (no description). - DBTEAMFeaturesGetValuesBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMFeaturesGetValuesBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "empty_features_list". -/// -/// Description of the "empty_features_list" tag state: At least one Feature -/// must be included in the FeaturesGetValuesBatchArg.features list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyFeaturesList; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_features_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_features_list". -/// -- (BOOL)isEmptyFeaturesList; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMFeaturesGetValuesBatchError` union. -/// -@interface DBTEAMFeaturesGetValuesBatchErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMFeaturesGetValuesBatchError` instances. -/// -/// @param instance An instance of the `DBTEAMFeaturesGetValuesBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeaturesGetValuesBatchError *)instance; - -/// -/// Deserializes `DBTEAMFeaturesGetValuesBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchError` API object. -/// -/// @return An instantiation of the `DBTEAMFeaturesGetValuesBatchError` object. -/// -+ (DBTEAMFeaturesGetValuesBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchResult.h deleted file mode 100644 index 0b1a9349..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMFeaturesGetValuesBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMFeatureValue; -@class DBTEAMFeaturesGetValuesBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FeaturesGetValuesBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMFeaturesGetValuesBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FeaturesGetValuesBatchResult` struct. -/// -@interface DBTEAMFeaturesGetValuesBatchResultSerializer : NSObject - -/// -/// Serializes `DBTEAMFeaturesGetValuesBatchResult` instances. -/// -/// @param instance An instance of the `DBTEAMFeaturesGetValuesBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMFeaturesGetValuesBatchResult *)instance; - -/// -/// Deserializes `DBTEAMFeaturesGetValuesBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMFeaturesGetValuesBatchResult` API object. -/// -/// @return An instantiation of the `DBTEAMFeaturesGetValuesBatchResult` object. -/// -+ (DBTEAMFeaturesGetValuesBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetActivityReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetActivityReport.h deleted file mode 100644 index 2c919e7a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetActivityReport.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMGetActivityReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetActivityReport` struct. -/// -/// Activity Report Result. Each of the items in the storage report is an array -/// of values, one value per day. If there is no data for a day, then the value -/// will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetActivityReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Array of total number of adds by team members. -@property (nonatomic, readonly) NSArray *adds; - -/// Array of number of edits by team members. If the same user edits the same -/// file multiple times this is counted as a single edit. -@property (nonatomic, readonly) NSArray *edits; - -/// Array of total number of deletes by team members. -@property (nonatomic, readonly) NSArray *deletes; - -/// Array of the number of users who have been active in the last 28 days. -@property (nonatomic, readonly) NSArray *activeUsers28Day; - -/// Array of the number of users who have been active in the last week. -@property (nonatomic, readonly) NSArray *activeUsers7Day; - -/// Array of the number of users who have been active in the last day. -@property (nonatomic, readonly) NSArray *activeUsers1Day; - -/// Array of the number of shared folders with some activity in the last 28 -/// days. -@property (nonatomic, readonly) NSArray *activeSharedFolders28Day; - -/// Array of the number of shared folders with some activity in the last week. -@property (nonatomic, readonly) NSArray *activeSharedFolders7Day; - -/// Array of the number of shared folders with some activity in the last day. -@property (nonatomic, readonly) NSArray *activeSharedFolders1Day; - -/// Array of the number of shared links created. -@property (nonatomic, readonly) NSArray *sharedLinksCreated; - -/// Array of the number of views by team users to shared links created by the -/// team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedByTeam; - -/// Array of the number of views by users outside of the team to shared links -/// created by the team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedByOutsideUser; - -/// Array of the number of views by non-logged-in users to shared links created -/// by the team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedByNotLoggedIn; - -/// Array of the total number of views to shared links created by the team. -@property (nonatomic, readonly) NSArray *sharedLinksViewedTotal; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param adds Array of total number of adds by team members. -/// @param edits Array of number of edits by team members. If the same user -/// edits the same file multiple times this is counted as a single edit. -/// @param deletes Array of total number of deletes by team members. -/// @param activeUsers28Day Array of the number of users who have been active in -/// the last 28 days. -/// @param activeUsers7Day Array of the number of users who have been active in -/// the last week. -/// @param activeUsers1Day Array of the number of users who have been active in -/// the last day. -/// @param activeSharedFolders28Day Array of the number of shared folders with -/// some activity in the last 28 days. -/// @param activeSharedFolders7Day Array of the number of shared folders with -/// some activity in the last week. -/// @param activeSharedFolders1Day Array of the number of shared folders with -/// some activity in the last day. -/// @param sharedLinksCreated Array of the number of shared links created. -/// @param sharedLinksViewedByTeam Array of the number of views by team users to -/// shared links created by the team. -/// @param sharedLinksViewedByOutsideUser Array of the number of views by users -/// outside of the team to shared links created by the team. -/// @param sharedLinksViewedByNotLoggedIn Array of the number of views by -/// non-logged-in users to shared links created by the team. -/// @param sharedLinksViewedTotal Array of the total number of views to shared -/// links created by the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - adds:(NSArray *)adds - edits:(NSArray *)edits - deletes:(NSArray *)deletes - activeUsers28Day:(NSArray *)activeUsers28Day - activeUsers7Day:(NSArray *)activeUsers7Day - activeUsers1Day:(NSArray *)activeUsers1Day - activeSharedFolders28Day:(NSArray *)activeSharedFolders28Day - activeSharedFolders7Day:(NSArray *)activeSharedFolders7Day - activeSharedFolders1Day:(NSArray *)activeSharedFolders1Day - sharedLinksCreated:(NSArray *)sharedLinksCreated - sharedLinksViewedByTeam:(NSArray *)sharedLinksViewedByTeam - sharedLinksViewedByOutsideUser:(NSArray *)sharedLinksViewedByOutsideUser - sharedLinksViewedByNotLoggedIn:(NSArray *)sharedLinksViewedByNotLoggedIn - sharedLinksViewedTotal:(NSArray *)sharedLinksViewedTotal; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetActivityReport` struct. -/// -@interface DBTEAMGetActivityReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetActivityReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetActivityReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetActivityReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetActivityReport *)instance; - -/// -/// Deserializes `DBTEAMGetActivityReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetActivityReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetActivityReport` object. -/// -+ (DBTEAMGetActivityReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetDevicesReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetDevicesReport.h deleted file mode 100644 index 4d2233d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetDevicesReport.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMDevicesActive; -@class DBTEAMGetDevicesReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetDevicesReport` struct. -/// -/// Devices Report Result. Contains subsections for different time ranges of -/// activity. Each of the items in each subsection of the storage report is an -/// array of values, one value per day. If there is no data for a day, then the -/// value will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetDevicesReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Report of the number of devices active in the last day. -@property (nonatomic, readonly) DBTEAMDevicesActive *active1Day; - -/// Report of the number of devices active in the last 7 days. -@property (nonatomic, readonly) DBTEAMDevicesActive *active7Day; - -/// Report of the number of devices active in the last 28 days. -@property (nonatomic, readonly) DBTEAMDevicesActive *active28Day; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param active1Day Report of the number of devices active in the last day. -/// @param active7Day Report of the number of devices active in the last 7 days. -/// @param active28Day Report of the number of devices active in the last 28 -/// days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - active1Day:(DBTEAMDevicesActive *)active1Day - active7Day:(DBTEAMDevicesActive *)active7Day - active28Day:(DBTEAMDevicesActive *)active28Day; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetDevicesReport` struct. -/// -@interface DBTEAMGetDevicesReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetDevicesReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetDevicesReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetDevicesReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetDevicesReport *)instance; - -/// -/// Deserializes `DBTEAMGetDevicesReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetDevicesReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetDevicesReport` object. -/// -+ (DBTEAMGetDevicesReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetMembershipReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetMembershipReport.h deleted file mode 100644 index d3ccbaa4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetMembershipReport.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMGetMembershipReport; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetMembershipReport` struct. -/// -/// Membership Report Result. Each of the items in the storage report is an -/// array of values, one value per day. If there is no data for a day, then the -/// value will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetMembershipReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Team size, for each day. -@property (nonatomic, readonly) NSArray *teamSize; - -/// The number of pending invites to the team, for each day. -@property (nonatomic, readonly) NSArray *pendingInvites; - -/// The number of members that joined the team, for each day. -@property (nonatomic, readonly) NSArray *membersJoined; - -/// The number of suspended team members, for each day. -@property (nonatomic, readonly) NSArray *suspendedMembers; - -/// The total number of licenses the team has, for each day. -@property (nonatomic, readonly) NSArray *licenses; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param teamSize Team size, for each day. -/// @param pendingInvites The number of pending invites to the team, for each -/// day. -/// @param membersJoined The number of members that joined the team, for each -/// day. -/// @param suspendedMembers The number of suspended team members, for each day. -/// @param licenses The total number of licenses the team has, for each day. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - teamSize:(NSArray *)teamSize - pendingInvites:(NSArray *)pendingInvites - membersJoined:(NSArray *)membersJoined - suspendedMembers:(NSArray *)suspendedMembers - licenses:(NSArray *)licenses; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetMembershipReport` struct. -/// -@interface DBTEAMGetMembershipReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetMembershipReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetMembershipReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetMembershipReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetMembershipReport *)instance; - -/// -/// Deserializes `DBTEAMGetMembershipReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetMembershipReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetMembershipReport` object. -/// -+ (DBTEAMGetMembershipReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetStorageReport.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetStorageReport.h deleted file mode 100644 index 8e93a741..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGetStorageReport.h +++ /dev/null @@ -1,116 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMBaseDfbReport.h" - -@class DBTEAMGetStorageReport; -@class DBTEAMStorageBucket; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetStorageReport` struct. -/// -/// Storage Report Result. Each of the items in the storage report is an array -/// of values, one value per day. If there is no data for a day, then the value -/// will be None. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGetStorageReport : DBTEAMBaseDfbReport - -#pragma mark - Instance fields - -/// Sum of the shared, unshared, and datastore usages, for each day. -@property (nonatomic, readonly) NSArray *totalUsage; - -/// Array of the combined size (bytes) of team members' shared folders, for each -/// day. -@property (nonatomic, readonly) NSArray *sharedUsage; - -/// Array of the combined size (bytes) of team members' root namespaces, for -/// each day. -@property (nonatomic, readonly) NSArray *unsharedUsage; - -/// Array of the number of shared folders owned by team members, for each day. -@property (nonatomic, readonly) NSArray *sharedFolders; - -/// Array of storage summaries of team members' account sizes. Each storage -/// summary is an array of key, value pairs, where each pair describes a storage -/// bucket. The key indicates the upper bound of the bucket and the value is the -/// number of users in that bucket. There is one such summary per day. If there -/// is no data for a day, the storage summary will be empty. -@property (nonatomic, readonly) NSArray *> *memberStorageMap; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate First date present in the results as 'YYYY-MM-DD' or None. -/// @param totalUsage Sum of the shared, unshared, and datastore usages, for -/// each day. -/// @param sharedUsage Array of the combined size (bytes) of team members' -/// shared folders, for each day. -/// @param unsharedUsage Array of the combined size (bytes) of team members' -/// root namespaces, for each day. -/// @param sharedFolders Array of the number of shared folders owned by team -/// members, for each day. -/// @param memberStorageMap Array of storage summaries of team members' account -/// sizes. Each storage summary is an array of key, value pairs, where each pair -/// describes a storage bucket. The key indicates the upper bound of the bucket -/// and the value is the number of users in that bucket. There is one such -/// summary per day. If there is no data for a day, the storage summary will be -/// empty. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSString *)startDate - totalUsage:(NSArray *)totalUsage - sharedUsage:(NSArray *)sharedUsage - unsharedUsage:(NSArray *)unsharedUsage - sharedFolders:(NSArray *)sharedFolders - memberStorageMap:(NSArray *> *)memberStorageMap; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetStorageReport` struct. -/// -@interface DBTEAMGetStorageReportSerializer : NSObject - -/// -/// Serializes `DBTEAMGetStorageReport` instances. -/// -/// @param instance An instance of the `DBTEAMGetStorageReport` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGetStorageReport` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGetStorageReport *)instance; - -/// -/// Deserializes `DBTEAMGetStorageReport` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGetStorageReport` API object. -/// -/// @return An instantiation of the `DBTEAMGetStorageReport` object. -/// -+ (DBTEAMGetStorageReport *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupAccessType.h deleted file mode 100644 index 01e6702a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupAccessType.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAccessType` union. -/// -/// Role of a user in group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupAccessType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupAccessTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupAccessType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupAccessTypeTag) { - /// User is a member of the group, but has no special permissions. - DBTEAMGroupAccessTypeMember, - - /// User can rename the group, and add/remove members. - DBTEAMGroupAccessTypeOwner, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupAccessTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "member". -/// -/// Description of the "member" tag state: User is a member of the group, but -/// has no special permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMember; - -/// -/// Initializes union class with tag state of "owner". -/// -/// Description of the "owner" tag state: User can rename the group, and -/// add/remove members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOwner; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "member". -/// -/// @return Whether the union's current tag state has value "member". -/// -- (BOOL)isMember; - -/// -/// Retrieves whether the union's current tag state has value "owner". -/// -/// @return Whether the union's current tag state has value "owner". -/// -- (BOOL)isOwner; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupAccessType` union. -/// -@interface DBTEAMGroupAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMGroupAccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupAccessType *)instance; - -/// -/// Deserializes `DBTEAMGroupAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMGroupAccessType` object. -/// -+ (DBTEAMGroupAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupCreateArg.h deleted file mode 100644 index 23e6452b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupCreateArg.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMGroupCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupCreateArg : NSObject - -#pragma mark - Instance fields - -/// Group name. -@property (nonatomic, readonly, copy) NSString *groupName; - -/// Automatically add the creator of the group. -@property (nonatomic, readonly) NSNumber *addCreatorAsOwner; - -/// The creator of a team can associate an arbitrary external ID to the group. -@property (nonatomic, readonly, copy, nullable) NSString *groupExternalId; - -/// Whether the team can be managed by selected users, or only by team admins. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONGroupManagementType *groupManagementType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName Group name. -/// @param addCreatorAsOwner Automatically add the creator of the group. -/// @param groupExternalId The creator of a team can associate an arbitrary -/// external ID to the group. -/// @param groupManagementType Whether the team can be managed by selected -/// users, or only by team admins. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - addCreatorAsOwner:(nullable NSNumber *)addCreatorAsOwner - groupExternalId:(nullable NSString *)groupExternalId - groupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)groupManagementType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName Group name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupCreateArg` struct. -/// -@interface DBTEAMGroupCreateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupCreateArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupCreateArg *)instance; - -/// -/// Deserializes `DBTEAMGroupCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupCreateArg` object. -/// -+ (DBTEAMGroupCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupCreateError.h deleted file mode 100644 index 886e7d9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupCreateError.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupCreateErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupCreateErrorTag) { - /// The requested group name is already being used by another group. - DBTEAMGroupCreateErrorGroupNameAlreadyUsed, - - /// Group name is empty or has invalid characters. - DBTEAMGroupCreateErrorGroupNameInvalid, - - /// The requested external ID is already being used by another group. - DBTEAMGroupCreateErrorExternalIdAlreadyInUse, - - /// System-managed group cannot be manually created. - DBTEAMGroupCreateErrorSystemManagedGroupDisallowed, - - /// (no description). - DBTEAMGroupCreateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_name_already_used". -/// -/// Description of the "group_name_already_used" tag state: The requested group -/// name is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "group_name_invalid". -/// -/// Description of the "group_name_invalid" tag state: Group name is empty or -/// has invalid characters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameInvalid; - -/// -/// Initializes union class with tag state of "external_id_already_in_use". -/// -/// Description of the "external_id_already_in_use" tag state: The requested -/// external ID is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdAlreadyInUse; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: -/// System-managed group cannot be manually created. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "group_name_already_used". -/// -- (BOOL)isGroupNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_invalid". -/// -/// @return Whether the union's current tag state has value -/// "group_name_invalid". -/// -- (BOOL)isGroupNameInvalid; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_already_in_use". -/// -/// @return Whether the union's current tag state has value -/// "external_id_already_in_use". -/// -- (BOOL)isExternalIdAlreadyInUse; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupCreateError` union. -/// -@interface DBTEAMGroupCreateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupCreateError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupCreateError *)instance; - -/// -/// Deserializes `DBTEAMGroupCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupCreateError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupCreateError` object. -/// -+ (DBTEAMGroupCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupDeleteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupDeleteError.h deleted file mode 100644 index d02b6033..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupDeleteError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupDeleteError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDeleteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupDeleteError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupDeleteErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupDeleteError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupDeleteErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupDeleteErrorGroupNotFound, - - /// (no description). - DBTEAMGroupDeleteErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupDeleteErrorSystemManagedGroupDisallowed, - - /// This group has already been deleted. - DBTEAMGroupDeleteErrorGroupAlreadyDeleted, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupDeleteErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "group_already_deleted". -/// -/// Description of the "group_already_deleted" tag state: This group has already -/// been deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAlreadyDeleted; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_already_deleted". -/// -/// @return Whether the union's current tag state has value -/// "group_already_deleted". -/// -- (BOOL)isGroupAlreadyDeleted; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupDeleteError` union. -/// -@interface DBTEAMGroupDeleteErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupDeleteError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupDeleteError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupDeleteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupDeleteError *)instance; - -/// -/// Deserializes `DBTEAMGroupDeleteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupDeleteError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupDeleteError` object. -/// -+ (DBTEAMGroupDeleteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupFullInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupFullInfo.h deleted file mode 100644 index 70b35790..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupFullInfo.h +++ /dev/null @@ -1,113 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMCOMMONGroupSummary.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupFullInfo` struct. -/// -/// Full description of a group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupFullInfo : DBTEAMCOMMONGroupSummary - -#pragma mark - Instance fields - -/// List of group members. -@property (nonatomic, readonly, nullable) NSArray *members; - -/// The group creation time as a UTC timestamp in milliseconds since the Unix -/// epoch. -@property (nonatomic, readonly) NSNumber *created; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param created The group creation time as a UTC timestamp in milliseconds -/// since the Unix epoch. -/// @param groupExternalId External ID of group. This is an arbitrary ID that an -/// admin can attach to a group. -/// @param memberCount The number of members in the group. -/// @param members List of group members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - created:(NSNumber *)created - groupExternalId:(nullable NSString *)groupExternalId - memberCount:(nullable NSNumber *)memberCount - members:(nullable NSArray *)members; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param groupName (no description). -/// @param groupId (no description). -/// @param groupManagementType Who is allowed to manage the group. -/// @param created The group creation time as a UTC timestamp in milliseconds -/// since the Unix epoch. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupName:(NSString *)groupName - groupId:(NSString *)groupId - groupManagementType:(DBTEAMCOMMONGroupManagementType *)groupManagementType - created:(NSNumber *)created; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupFullInfo` struct. -/// -@interface DBTEAMGroupFullInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupFullInfo` instances. -/// -/// @param instance An instance of the `DBTEAMGroupFullInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupFullInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupFullInfo *)instance; - -/// -/// Deserializes `DBTEAMGroupFullInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupFullInfo` API object. -/// -/// @return An instantiation of the `DBTEAMGroupFullInfo` object. -/// -+ (DBTEAMGroupFullInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberInfo.h deleted file mode 100644 index ea5470bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupAccessType; -@class DBTEAMGroupMemberInfo; -@class DBTEAMMemberProfile; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberInfo` struct. -/// -/// Profile of group member, and role in group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberInfo : NSObject - -#pragma mark - Instance fields - -/// Profile of group member. -@property (nonatomic, readonly) DBTEAMMemberProfile *profile; - -/// The role that the user has in the group. -@property (nonatomic, readonly) DBTEAMGroupAccessType *accessType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profile Profile of group member. -/// @param accessType The role that the user has in the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMMemberProfile *)profile accessType:(DBTEAMGroupAccessType *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMemberInfo` struct. -/// -@interface DBTEAMGroupMemberInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberInfo` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberInfo *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberInfo` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberInfo` object. -/// -+ (DBTEAMGroupMemberInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSelector.h deleted file mode 100644 index 1fc30510..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSelector.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberSelector; -@class DBTEAMGroupSelector; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberSelector` struct. -/// -/// Argument for selecting a group and a single user. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberSelector : NSObject - -#pragma mark - Instance fields - -/// Specify a group. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// Identity of a user that is a member of group. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param user Identity of a user that is a member of group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group user:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMemberSelector` struct. -/// -@interface DBTEAMGroupMemberSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberSelector` object. -/// -+ (DBTEAMGroupMemberSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSelectorError.h deleted file mode 100644 index e558318e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSelectorError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberSelectorError` union. -/// -/// Error that can be raised when GroupMemberSelector is used, and the user is -/// required to be a member of the specified group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMemberSelectorErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMGroupMemberSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMemberSelectorErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMemberSelectorErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMemberSelectorErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMemberSelectorErrorSystemManagedGroupDisallowed, - - /// The specified user is not a member of this group. - DBTEAMGroupMemberSelectorErrorMemberNotInGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMemberSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: The specified user is -/// not a member of this group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMemberSelectorError` union. -/// -@interface DBTEAMGroupMemberSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberSelectorError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberSelectorError *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberSelectorError` object. -/// -+ (DBTEAMGroupMemberSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSetAccessTypeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSetAccessTypeError.h deleted file mode 100644 index 9300fc85..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMemberSetAccessTypeError.h +++ /dev/null @@ -1,187 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberSetAccessTypeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMemberSetAccessTypeError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMemberSetAccessTypeError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMemberSetAccessTypeErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMGroupMemberSetAccessTypeError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMemberSetAccessTypeErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMemberSetAccessTypeErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMemberSetAccessTypeErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMemberSetAccessTypeErrorSystemManagedGroupDisallowed, - - /// The specified user is not a member of this group. - DBTEAMGroupMemberSetAccessTypeErrorMemberNotInGroup, - - /// A company managed group cannot be managed by a user. - DBTEAMGroupMemberSetAccessTypeErrorUserCannotBeManagerOfCompanyManagedGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMemberSetAccessTypeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: The specified user is -/// not a member of this group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -/// -/// Initializes union class with tag state of -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// Description of the "user_cannot_be_manager_of_company_managed_group" tag -/// state: A company managed group cannot be managed by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCannotBeManagerOfCompanyManagedGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// @return Whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -- (BOOL)isUserCannotBeManagerOfCompanyManagedGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMemberSetAccessTypeError` union. -/// -@interface DBTEAMGroupMemberSetAccessTypeErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMemberSetAccessTypeError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMemberSetAccessTypeError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSetAccessTypeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMemberSetAccessTypeError *)instance; - -/// -/// Deserializes `DBTEAMGroupMemberSetAccessTypeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMemberSetAccessTypeError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMemberSetAccessTypeError` -/// object. -/// -+ (DBTEAMGroupMemberSetAccessTypeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersAddArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersAddArg.h deleted file mode 100644 index 286a211c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersAddArg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMIncludeMembersArg.h" - -@class DBTEAMGroupMembersAddArg; -@class DBTEAMGroupSelector; -@class DBTEAMMemberAccess; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersAddArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersAddArg : DBTEAMIncludeMembersArg - -#pragma mark - Instance fields - -/// Group to which users will be added. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// List of users to be added to the group. -@property (nonatomic, readonly) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - members:(NSArray *)members - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group members:(NSArray *)members; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersAddArg` struct. -/// -@interface DBTEAMGroupMembersAddArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersAddArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersAddArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersAddArg *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersAddArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersAddArg` object. -/// -+ (DBTEAMGroupMembersAddArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersAddError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersAddError.h deleted file mode 100644 index ba8524d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersAddError.h +++ /dev/null @@ -1,315 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersAddError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersAddError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersAddError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMembersAddErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupMembersAddError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMembersAddErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMembersAddErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMembersAddErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMembersAddErrorSystemManagedGroupDisallowed, - - /// You cannot add duplicate users. One or more of the members you are - /// trying to add is already a member of the group. - DBTEAMGroupMembersAddErrorDuplicateUser, - - /// Group is not in this team. You cannot add members to a group that is - /// outside of your team. - DBTEAMGroupMembersAddErrorGroupNotInTeam, - - /// These members are not part of your team. Currently, you cannot add - /// members to a group if they are not part of your team, though this may - /// change in a subsequent version. To add new members to your Dropbox - /// Business team, use the `membersAdd` endpoint. - DBTEAMGroupMembersAddErrorMembersNotInTeam, - - /// These users were not found in Dropbox. - DBTEAMGroupMembersAddErrorUsersNotFound, - - /// A suspended user cannot be added to a group as `owner` in - /// `DBTEAMGroupAccessType`. - DBTEAMGroupMembersAddErrorUserMustBeActiveToBeOwner, - - /// A company-managed group cannot be managed by a user. - DBTEAMGroupMembersAddErrorUserCannotBeManagerOfCompanyManagedGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMembersAddErrorTag tag; - -/// These members are not part of your team. Currently, you cannot add members -/// to a group if they are not part of your team, though this may change in a -/// subsequent version. To add new members to your Dropbox Business team, use -/// the `membersAdd` endpoint. @note Ensure the `isMembersNotInTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *membersNotInTeam; - -/// These users were not found in Dropbox. @note Ensure the `isUsersNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSArray *usersNotFound; - -/// A company-managed group cannot be managed by a user. @note Ensure the -/// `isUserCannotBeManagerOfCompanyManagedGroup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *userCannotBeManagerOfCompanyManagedGroup; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "duplicate_user". -/// -/// Description of the "duplicate_user" tag state: You cannot add duplicate -/// users. One or more of the members you are trying to add is already a member -/// of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateUser; - -/// -/// Initializes union class with tag state of "group_not_in_team". -/// -/// Description of the "group_not_in_team" tag state: Group is not in this team. -/// You cannot add members to a group that is outside of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotInTeam; - -/// -/// Initializes union class with tag state of "members_not_in_team". -/// -/// Description of the "members_not_in_team" tag state: These members are not -/// part of your team. Currently, you cannot add members to a group if they are -/// not part of your team, though this may change in a subsequent version. To -/// add new members to your Dropbox Business team, use the `membersAdd` -/// endpoint. -/// -/// @param membersNotInTeam These members are not part of your team. Currently, -/// you cannot add members to a group if they are not part of your team, though -/// this may change in a subsequent version. To add new members to your Dropbox -/// Business team, use the `membersAdd` endpoint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembersNotInTeam:(NSArray *)membersNotInTeam; - -/// -/// Initializes union class with tag state of "users_not_found". -/// -/// Description of the "users_not_found" tag state: These users were not found -/// in Dropbox. -/// -/// @param usersNotFound These users were not found in Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersNotFound:(NSArray *)usersNotFound; - -/// -/// Initializes union class with tag state of "user_must_be_active_to_be_owner". -/// -/// Description of the "user_must_be_active_to_be_owner" tag state: A suspended -/// user cannot be added to a group as `owner` in `DBTEAMGroupAccessType`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMustBeActiveToBeOwner; - -/// -/// Initializes union class with tag state of -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// Description of the "user_cannot_be_manager_of_company_managed_group" tag -/// state: A company-managed group cannot be managed by a user. -/// -/// @param userCannotBeManagerOfCompanyManagedGroup A company-managed group -/// cannot be managed by a user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCannotBeManagerOfCompanyManagedGroup: - (NSArray *)userCannotBeManagerOfCompanyManagedGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "duplicate_user". -/// -/// @return Whether the union's current tag state has value "duplicate_user". -/// -- (BOOL)isDuplicateUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_in_team". -/// -/// @return Whether the union's current tag state has value "group_not_in_team". -/// -- (BOOL)isGroupNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "members_not_in_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `membersNotInTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "members_not_in_team". -/// -- (BOOL)isMembersNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "users_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `usersNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "users_not_found". -/// -- (BOOL)isUsersNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_must_be_active_to_be_owner". -/// -/// @return Whether the union's current tag state has value -/// "user_must_be_active_to_be_owner". -/// -- (BOOL)isUserMustBeActiveToBeOwner; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCannotBeManagerOfCompanyManagedGroup` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_cannot_be_manager_of_company_managed_group". -/// -- (BOOL)isUserCannotBeManagerOfCompanyManagedGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMembersAddError` union. -/// -@interface DBTEAMGroupMembersAddErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersAddError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersAddError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersAddError *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersAddError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersAddError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersAddError` object. -/// -+ (DBTEAMGroupMembersAddError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersChangeResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersChangeResult.h deleted file mode 100644 index 982eb787..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersChangeResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupMembersChangeResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersChangeResult` struct. -/// -/// Result returned by `groupsMembersAdd` and `groupsMembersRemove`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersChangeResult : NSObject - -#pragma mark - Instance fields - -/// The group info after member change operation has been performed. -@property (nonatomic, readonly) DBTEAMGroupFullInfo *groupInfo; - -/// For legacy purposes async_job_id will always return one space ' '. Formerly, -/// it was an ID that was used to obtain the status of granting/revoking -/// group-owned resources. It's no longer necessary because the async processing -/// now happens automatically. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groupInfo The group info after member change operation has been -/// performed. -/// @param asyncJobId For legacy purposes async_job_id will always return one -/// space ' '. Formerly, it was an ID that was used to obtain the status of -/// granting/revoking group-owned resources. It's no longer necessary because -/// the async processing now happens automatically. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupInfo:(DBTEAMGroupFullInfo *)groupInfo asyncJobId:(NSString *)asyncJobId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersChangeResult` struct. -/// -@interface DBTEAMGroupMembersChangeResultSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersChangeResult` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersChangeResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersChangeResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersChangeResult *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersChangeResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersChangeResult` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersChangeResult` object. -/// -+ (DBTEAMGroupMembersChangeResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersRemoveArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersRemoveArg.h deleted file mode 100644 index f725f51d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersRemoveArg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMIncludeMembersArg.h" - -@class DBTEAMGroupMembersRemoveArg; -@class DBTEAMGroupSelector; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersRemoveArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersRemoveArg : DBTEAMIncludeMembersArg - -#pragma mark - Instance fields - -/// Group from which users will be removed. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// List of users to be removed from the group. -@property (nonatomic, readonly) NSArray *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - users:(NSArray *)users - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group users:(NSArray *)users; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersRemoveArg` struct. -/// -@interface DBTEAMGroupMembersRemoveArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersRemoveArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersRemoveArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersRemoveArg *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersRemoveArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersRemoveArg` object. -/// -+ (DBTEAMGroupMembersRemoveArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersRemoveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersRemoveError.h deleted file mode 100644 index 8930ecac..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersRemoveError.h +++ /dev/null @@ -1,246 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersRemoveError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersRemoveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersRemoveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMembersRemoveErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupMembersRemoveError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMembersRemoveErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMembersRemoveErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMembersRemoveErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMembersRemoveErrorSystemManagedGroupDisallowed, - - /// At least one of the specified users is not a member of the group. - DBTEAMGroupMembersRemoveErrorMemberNotInGroup, - - /// Group is not in this team. You cannot remove members from a group that - /// is outside of your team. - DBTEAMGroupMembersRemoveErrorGroupNotInTeam, - - /// These members are not part of your team. - DBTEAMGroupMembersRemoveErrorMembersNotInTeam, - - /// These users were not found in Dropbox. - DBTEAMGroupMembersRemoveErrorUsersNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMembersRemoveErrorTag tag; - -/// These members are not part of your team. @note Ensure the -/// `isMembersNotInTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSArray *membersNotInTeam; - -/// These users were not found in Dropbox. @note Ensure the `isUsersNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSArray *usersNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: At least one of the -/// specified users is not a member of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -/// -/// Initializes union class with tag state of "group_not_in_team". -/// -/// Description of the "group_not_in_team" tag state: Group is not in this team. -/// You cannot remove members from a group that is outside of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotInTeam; - -/// -/// Initializes union class with tag state of "members_not_in_team". -/// -/// Description of the "members_not_in_team" tag state: These members are not -/// part of your team. -/// -/// @param membersNotInTeam These members are not part of your team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembersNotInTeam:(NSArray *)membersNotInTeam; - -/// -/// Initializes union class with tag state of "users_not_found". -/// -/// Description of the "users_not_found" tag state: These users were not found -/// in Dropbox. -/// -/// @param usersNotFound These users were not found in Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersNotFound:(NSArray *)usersNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_in_team". -/// -/// @return Whether the union's current tag state has value "group_not_in_team". -/// -- (BOOL)isGroupNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "members_not_in_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `membersNotInTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "members_not_in_team". -/// -- (BOOL)isMembersNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "users_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `usersNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "users_not_found". -/// -- (BOOL)isUsersNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMembersRemoveError` union. -/// -@interface DBTEAMGroupMembersRemoveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersRemoveError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersRemoveError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersRemoveError *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersRemoveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersRemoveError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersRemoveError` object. -/// -+ (DBTEAMGroupMembersRemoveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSelector.h deleted file mode 100644 index 4dca295f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSelector.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersSelector; -@class DBTEAMGroupSelector; -@class DBTEAMUsersSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersSelector` struct. -/// -/// Argument for selecting a group and a list of users. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersSelector : NSObject - -#pragma mark - Instance fields - -/// Specify a group. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// A list of users that are members of group. -@property (nonatomic, readonly) DBTEAMUsersSelectorArg *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param users A list of users that are members of group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group users:(DBTEAMUsersSelectorArg *)users; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersSelector` struct. -/// -@interface DBTEAMGroupMembersSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersSelector` object. -/// -+ (DBTEAMGroupMembersSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSelectorError.h deleted file mode 100644 index 005677d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSelectorError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMembersSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersSelectorError` union. -/// -/// Error that can be raised when GroupMembersSelector is used, and the users -/// are required to be members of the specified group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupMembersSelectorErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMGroupMembersSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupMembersSelectorErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupMembersSelectorErrorGroupNotFound, - - /// (no description). - DBTEAMGroupMembersSelectorErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupMembersSelectorErrorSystemManagedGroupDisallowed, - - /// At least one of the specified users is not a member of the group. - DBTEAMGroupMembersSelectorErrorMemberNotInGroup, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupMembersSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "member_not_in_group". -/// -/// Description of the "member_not_in_group" tag state: At least one of the -/// specified users is not a member of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotInGroup; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_in_group". -/// -/// @return Whether the union's current tag state has value -/// "member_not_in_group". -/// -- (BOOL)isMemberNotInGroup; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupMembersSelectorError` union. -/// -@interface DBTEAMGroupMembersSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersSelectorError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersSelectorError *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersSelectorError` object. -/// -+ (DBTEAMGroupMembersSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSetAccessTypeArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSetAccessTypeArg.h deleted file mode 100644 index 6e8a50bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupMembersSetAccessTypeArg.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMGroupMemberSelector.h" - -@class DBTEAMGroupAccessType; -@class DBTEAMGroupMembersSetAccessTypeArg; -@class DBTEAMGroupSelector; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMembersSetAccessTypeArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupMembersSetAccessTypeArg : DBTEAMGroupMemberSelector - -#pragma mark - Instance fields - -/// New group access type the user will have. -@property (nonatomic, readonly) DBTEAMGroupAccessType *accessType; - -/// Whether to return the list of members in the group. Note that the default -/// value will cause all the group members to be returned in the response. This -/// may take a long time for large groups. -@property (nonatomic, readonly) NSNumber *returnMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param user Identity of a user that is a member of group. -/// @param accessType New group access type the user will have. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Specify a group. -/// @param user Identity of a user that is a member of group. -/// @param accessType New group access type the user will have. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMembersSetAccessTypeArg` struct. -/// -@interface DBTEAMGroupMembersSetAccessTypeArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupMembersSetAccessTypeArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupMembersSetAccessTypeArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSetAccessTypeArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupMembersSetAccessTypeArg *)instance; - -/// -/// Deserializes `DBTEAMGroupMembersSetAccessTypeArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupMembersSetAccessTypeArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupMembersSetAccessTypeArg` object. -/// -+ (DBTEAMGroupMembersSetAccessTypeArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelector.h deleted file mode 100644 index a4c72585..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelector.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSelector` union. -/// -/// Argument for selecting a single group, either by group_id or by external -/// group ID. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupSelector : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupSelectorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupSelector` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupSelectorTag) { - /// Group ID. - DBTEAMGroupSelectorGroupId, - - /// External ID of the group. - DBTEAMGroupSelectorGroupExternalId, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupSelectorTag tag; - -/// Group ID. @note Ensure the `isGroupId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *groupId; - -/// External ID of the group. @note Ensure the `isGroupExternalId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *groupExternalId; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_id". -/// -/// Description of the "group_id" tag state: Group ID. -/// -/// @param groupId Group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupId:(NSString *)groupId; - -/// -/// Initializes union class with tag state of "group_external_id". -/// -/// Description of the "group_external_id" tag state: External ID of the group. -/// -/// @param groupExternalId External ID of the group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupExternalId:(NSString *)groupExternalId; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_id". -/// -- (BOOL)isGroupId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupExternalId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_external_id". -/// -- (BOOL)isGroupExternalId; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupSelector` union. -/// -@interface DBTEAMGroupSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupSelector` object. -/// -+ (DBTEAMGroupSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelectorError.h deleted file mode 100644 index e1c07561..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelectorError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSelectorError` union. -/// -/// Error that can be raised when GroupSelector is used. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupSelectorErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupSelectorErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupSelectorErrorGroupNotFound, - - /// (no description). - DBTEAMGroupSelectorErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupSelectorError` union. -/// -@interface DBTEAMGroupSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupSelectorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupSelectorError *)instance; - -/// -/// Deserializes `DBTEAMGroupSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupSelectorError` object. -/// -+ (DBTEAMGroupSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelectorWithTeamGroupError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelectorWithTeamGroupError.h deleted file mode 100644 index bd8a1e45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupSelectorWithTeamGroupError.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelectorWithTeamGroupError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupSelectorWithTeamGroupError` union. -/// -/// Error that can be raised when GroupSelector is used and team groups are -/// disallowed from being used. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupSelectorWithTeamGroupError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupSelectorWithTeamGroupErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMGroupSelectorWithTeamGroupError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupSelectorWithTeamGroupErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupSelectorWithTeamGroupErrorGroupNotFound, - - /// (no description). - DBTEAMGroupSelectorWithTeamGroupErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupSelectorWithTeamGroupErrorSystemManagedGroupDisallowed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupSelectorWithTeamGroupErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupSelectorWithTeamGroupError` -/// union. -/// -@interface DBTEAMGroupSelectorWithTeamGroupErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupSelectorWithTeamGroupError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupSelectorWithTeamGroupError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorWithTeamGroupError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupSelectorWithTeamGroupError *)instance; - -/// -/// Deserializes `DBTEAMGroupSelectorWithTeamGroupError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupSelectorWithTeamGroupError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupSelectorWithTeamGroupError` -/// object. -/// -+ (DBTEAMGroupSelectorWithTeamGroupError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupUpdateArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupUpdateArgs.h deleted file mode 100644 index a5b62875..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupUpdateArgs.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMIncludeMembersArg.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMGroupSelector; -@class DBTEAMGroupUpdateArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUpdateArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupUpdateArgs : DBTEAMIncludeMembersArg - -#pragma mark - Instance fields - -/// Specify a group. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// Optional argument. Set group name to this if provided. -@property (nonatomic, readonly, copy, nullable) NSString *dNewGroupName; - -/// Optional argument. New group external ID. If the argument is None, the -/// group's external_id won't be updated. If the argument is empty string, the -/// group's external id will be cleared. -@property (nonatomic, readonly, copy, nullable) NSString *dNewGroupExternalId; - -/// Set new group management type, if provided. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONGroupManagementType *dNewGroupManagementType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group Specify a group. -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// @param dNewGroupName Optional argument. Set group name to this if provided. -/// @param dNewGroupExternalId Optional argument. New group external ID. If the -/// argument is None, the group's external_id won't be updated. If the argument -/// is empty string, the group's external id will be cleared. -/// @param dNewGroupManagementType Set new group management type, if provided. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group - returnMembers:(nullable NSNumber *)returnMembers - dNewGroupName:(nullable NSString *)dNewGroupName - dNewGroupExternalId:(nullable NSString *)dNewGroupExternalId - dNewGroupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)dNewGroupManagementType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group Specify a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupUpdateArgs` struct. -/// -@interface DBTEAMGroupUpdateArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupUpdateArgs` instances. -/// -/// @param instance An instance of the `DBTEAMGroupUpdateArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupUpdateArgs *)instance; - -/// -/// Deserializes `DBTEAMGroupUpdateArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateArgs` API object. -/// -/// @return An instantiation of the `DBTEAMGroupUpdateArgs` object. -/// -+ (DBTEAMGroupUpdateArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupUpdateError.h deleted file mode 100644 index 8381aa09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupUpdateError.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupUpdateErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupUpdateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupUpdateErrorTag) { - /// No matching group found. No groups match the specified group ID. - DBTEAMGroupUpdateErrorGroupNotFound, - - /// (no description). - DBTEAMGroupUpdateErrorOther, - - /// This operation is not supported on system-managed groups. - DBTEAMGroupUpdateErrorSystemManagedGroupDisallowed, - - /// The requested group name is already being used by another group. - DBTEAMGroupUpdateErrorGroupNameAlreadyUsed, - - /// Group name is empty or has invalid characters. - DBTEAMGroupUpdateErrorGroupNameInvalid, - - /// The requested external ID is already being used by another group. - DBTEAMGroupUpdateErrorExternalIdAlreadyInUse, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_found". -/// -/// Description of the "group_not_found" tag state: No matching group found. No -/// groups match the specified group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "system_managed_group_disallowed". -/// -/// Description of the "system_managed_group_disallowed" tag state: This -/// operation is not supported on system-managed groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSystemManagedGroupDisallowed; - -/// -/// Initializes union class with tag state of "group_name_already_used". -/// -/// Description of the "group_name_already_used" tag state: The requested group -/// name is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "group_name_invalid". -/// -/// Description of the "group_name_invalid" tag state: Group name is empty or -/// has invalid characters. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNameInvalid; - -/// -/// Initializes union class with tag state of "external_id_already_in_use". -/// -/// Description of the "external_id_already_in_use" tag state: The requested -/// external ID is already being used by another group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdAlreadyInUse; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_not_found". -/// -/// @return Whether the union's current tag state has value "group_not_found". -/// -- (BOOL)isGroupNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "system_managed_group_disallowed". -/// -- (BOOL)isSystemManagedGroupDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "group_name_already_used". -/// -- (BOOL)isGroupNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_name_invalid". -/// -/// @return Whether the union's current tag state has value -/// "group_name_invalid". -/// -- (BOOL)isGroupNameInvalid; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_already_in_use". -/// -/// @return Whether the union's current tag state has value -/// "external_id_already_in_use". -/// -- (BOOL)isExternalIdAlreadyInUse; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupUpdateError` union. -/// -@interface DBTEAMGroupUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupUpdateError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupUpdateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupUpdateError *)instance; - -/// -/// Deserializes `DBTEAMGroupUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupUpdateError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupUpdateError` object. -/// -+ (DBTEAMGroupUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsGetInfoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsGetInfoError.h deleted file mode 100644 index 54ea01d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsGetInfoError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsGetInfoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsGetInfoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsGetInfoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsGetInfoErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupsGetInfoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsGetInfoErrorTag) { - /// The group is not on your team. - DBTEAMGroupsGetInfoErrorGroupNotOnTeam, - - /// (no description). - DBTEAMGroupsGetInfoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsGetInfoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_not_on_team". -/// -/// Description of the "group_not_on_team" tag state: The group is not on your -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupNotOnTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "group_not_on_team". -/// -/// @return Whether the union's current tag state has value "group_not_on_team". -/// -- (BOOL)isGroupNotOnTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsGetInfoError` union. -/// -@interface DBTEAMGroupsGetInfoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsGetInfoError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsGetInfoError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsGetInfoError *)instance; - -/// -/// Deserializes `DBTEAMGroupsGetInfoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsGetInfoError` object. -/// -+ (DBTEAMGroupsGetInfoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsGetInfoItem.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsGetInfoItem.h deleted file mode 100644 index f9565cb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsGetInfoItem.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupsGetInfoItem; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsGetInfoItem` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsGetInfoItem : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsGetInfoItemTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupsGetInfoItem` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsGetInfoItemTag) { - /// An ID that was provided as a parameter to `groupsGetInfo`, and did not - /// match a corresponding group. The ID can be a group ID, or an external - /// ID, depending on how the method was called. - DBTEAMGroupsGetInfoItemIdNotFound, - - /// Info about a group. - DBTEAMGroupsGetInfoItemGroupInfo, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsGetInfoItemTag tag; - -/// An ID that was provided as a parameter to `groupsGetInfo`, and did not match -/// a corresponding group. The ID can be a group ID, or an external ID, -/// depending on how the method was called. @note Ensure the `isIdNotFound` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Info about a group. @note Ensure the `isGroupInfo` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMGroupFullInfo *groupInfo; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `groupsGetInfo`, and did not match a corresponding group. The -/// ID can be a group ID, or an external ID, depending on how the method was -/// called. -/// -/// @param idNotFound An ID that was provided as a parameter to `groupsGetInfo`, -/// and did not match a corresponding group. The ID can be a group ID, or an -/// external ID, depending on how the method was called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "group_info". -/// -/// Description of the "group_info" tag state: Info about a group. -/// -/// @param groupInfo Info about a group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupInfo:(DBTEAMGroupFullInfo *)groupInfo; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value "group_info". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupInfo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_info". -/// -- (BOOL)isGroupInfo; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsGetInfoItem` union. -/// -@interface DBTEAMGroupsGetInfoItemSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsGetInfoItem` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsGetInfoItem` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoItem` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsGetInfoItem *)instance; - -/// -/// Deserializes `DBTEAMGroupsGetInfoItem` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsGetInfoItem` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsGetInfoItem` object. -/// -+ (DBTEAMGroupsGetInfoItem *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListArg.h deleted file mode 100644 index ca40c166..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListArg : NSObject - -#pragma mark - Instance fields - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of results to return per call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsListArg` struct. -/// -@interface DBTEAMGroupsListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListArg` object. -/// -+ (DBTEAMGroupsListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListContinueArg.h deleted file mode 100644 index 5b9419c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListContinueArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of groups. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsListContinueArg` struct. -/// -@interface DBTEAMGroupsListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListContinueArg` object. -/// -+ (DBTEAMGroupsListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListContinueError.h deleted file mode 100644 index 9d6c63e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListContinueError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsListContinueErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMGroupsListContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMGroupsListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMGroupsListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsListContinueError` union. -/// -@interface DBTEAMGroupsListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListContinueError *)instance; - -/// -/// Deserializes `DBTEAMGroupsListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListContinueError` object. -/// -+ (DBTEAMGroupsListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListResult.h deleted file mode 100644 index 2bfb9441..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsListResult.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupSummary; -@class DBTEAMGroupsListResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsListResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsListResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *groups; - -/// Pass the cursor into `groupsListContinue` to obtain the additional groups. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional groups that have not been returned yet. An -/// additional call to `groupsListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param groups (no description). -/// @param cursor Pass the cursor into `groupsListContinue` to obtain the -/// additional groups. -/// @param hasMore Is true if there are additional groups that have not been -/// returned yet. An additional call to `groupsListContinue` can retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroups:(NSArray *)groups - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsListResult` struct. -/// -@interface DBTEAMGroupsListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsListResult` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsListResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsListResult *)instance; - -/// -/// Deserializes `DBTEAMGroupsListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsListResult` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsListResult` object. -/// -+ (DBTEAMGroupsListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListArg.h deleted file mode 100644 index 2a880b8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListArg.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupSelector; -@class DBTEAMGroupsMembersListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListArg : NSObject - -#pragma mark - Instance fields - -/// The group whose members are to be listed. -@property (nonatomic, readonly) DBTEAMGroupSelector *group; - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param group The group whose members are to be listed. -/// @param limit Number of results to return per call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group limit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param group The group whose members are to be listed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMGroupSelector *)group; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsMembersListArg` struct. -/// -@interface DBTEAMGroupsMembersListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListArg` object. -/// -+ (DBTEAMGroupsMembersListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListContinueArg.h deleted file mode 100644 index 4dc6ea99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsMembersListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of groups. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsMembersListContinueArg` struct. -/// -@interface DBTEAMGroupsMembersListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListContinueArg` object. -/// -+ (DBTEAMGroupsMembersListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListContinueError.h deleted file mode 100644 index d5ce40e6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListContinueError.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsMembersListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsMembersListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMGroupsMembersListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsMembersListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMGroupsMembersListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMGroupsMembersListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsMembersListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsMembersListContinueError` -/// union. -/// -@interface DBTEAMGroupsMembersListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListContinueError *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListContinueError` -/// object. -/// -+ (DBTEAMGroupsMembersListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListResult.h deleted file mode 100644 index 7ff0242a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsMembersListResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupMemberInfo; -@class DBTEAMGroupsMembersListResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsMembersListResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsMembersListResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *members; - -/// Pass the cursor into `groupsMembersListContinue` to obtain additional group -/// members. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional group members that have not been returned -/// yet. An additional call to `groupsMembersListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members (no description). -/// @param cursor Pass the cursor into `groupsMembersListContinue` to obtain -/// additional group members. -/// @param hasMore Is true if there are additional group members that have not -/// been returned yet. An additional call to `groupsMembersListContinue` can -/// retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupsMembersListResult` struct. -/// -@interface DBTEAMGroupsMembersListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsMembersListResult` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsMembersListResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsMembersListResult *)instance; - -/// -/// Deserializes `DBTEAMGroupsMembersListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsMembersListResult` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsMembersListResult` object. -/// -+ (DBTEAMGroupsMembersListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsPollError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsPollError.h deleted file mode 100644 index 4bb5e998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsPollError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsPollError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsPollError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsPollError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsPollErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupsPollError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsPollErrorTag) { - /// The job ID is invalid. - DBTEAMGroupsPollErrorInvalidAsyncJobId, - - /// Something went wrong with the job on Dropbox's end. You'll need to - /// verify that the action you were taking succeeded, and if not, try again. - /// This should happen very rarely. - DBTEAMGroupsPollErrorInternalError, - - /// (no description). - DBTEAMGroupsPollErrorOther, - - /// You are not allowed to poll this job. - DBTEAMGroupsPollErrorAccessDenied, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsPollErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_async_job_id". -/// -/// Description of the "invalid_async_job_id" tag state: The job ID is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidAsyncJobId; - -/// -/// Initializes union class with tag state of "internal_error". -/// -/// Description of the "internal_error" tag state: Something went wrong with the -/// job on Dropbox's end. You'll need to verify that the action you were taking -/// succeeded, and if not, try again. This should happen very rarely. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInternalError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "access_denied". -/// -/// Description of the "access_denied" tag state: You are not allowed to poll -/// this job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessDenied; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_async_job_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_async_job_id". -/// -- (BOOL)isInvalidAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "internal_error". -/// -/// @return Whether the union's current tag state has value "internal_error". -/// -- (BOOL)isInternalError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "access_denied". -/// -/// @return Whether the union's current tag state has value "access_denied". -/// -- (BOOL)isAccessDenied; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsPollError` union. -/// -@interface DBTEAMGroupsPollErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsPollError` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsPollError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsPollError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsPollError *)instance; - -/// -/// Deserializes `DBTEAMGroupsPollError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsPollError` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsPollError` object. -/// -+ (DBTEAMGroupsPollError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsSelector.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsSelector.h deleted file mode 100644 index 6c2a96b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMGroupsSelector.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupsSelector; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupsSelector` union. -/// -/// Argument for selecting a list of groups, either by group_ids, or external -/// group IDs. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMGroupsSelector : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMGroupsSelectorTag` enum type represents the possible tag states -/// with which the `DBTEAMGroupsSelector` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMGroupsSelectorTag) { - /// List of group IDs. - DBTEAMGroupsSelectorGroupIds, - - /// List of external IDs of groups. - DBTEAMGroupsSelectorGroupExternalIds, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMGroupsSelectorTag tag; - -/// List of group IDs. @note Ensure the `isGroupIds` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *groupIds; - -/// List of external IDs of groups. @note Ensure the `isGroupExternalIds` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *groupExternalIds; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group_ids". -/// -/// Description of the "group_ids" tag state: List of group IDs. -/// -/// @param groupIds List of group IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupIds:(NSArray *)groupIds; - -/// -/// Initializes union class with tag state of "group_external_ids". -/// -/// Description of the "group_external_ids" tag state: List of external IDs of -/// groups. -/// -/// @param groupExternalIds List of external IDs of groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupExternalIds:(NSArray *)groupExternalIds; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_ids". -/// -- (BOOL)isGroupIds; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_external_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupExternalIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_external_ids". -/// -- (BOOL)isGroupExternalIds; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMGroupsSelector` union. -/// -@interface DBTEAMGroupsSelectorSerializer : NSObject - -/// -/// Serializes `DBTEAMGroupsSelector` instances. -/// -/// @param instance An instance of the `DBTEAMGroupsSelector` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMGroupsSelector` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMGroupsSelector *)instance; - -/// -/// Deserializes `DBTEAMGroupsSelector` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMGroupsSelector` API object. -/// -/// @return An instantiation of the `DBTEAMGroupsSelector` object. -/// -+ (DBTEAMGroupsSelector *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamFileEventsValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamFileEventsValue.h deleted file mode 100644 index 017e318f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamFileEventsValue.h +++ /dev/null @@ -1,128 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMHasTeamFileEventsValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HasTeamFileEventsValue` union. -/// -/// The value for `hasTeamFileEvents` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMHasTeamFileEventsValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMHasTeamFileEventsValueTag` enum type represents the possible tag -/// states with which the `DBTEAMHasTeamFileEventsValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMHasTeamFileEventsValueTag) { - /// Does this team have file events. - DBTEAMHasTeamFileEventsValueEnabled, - - /// (no description). - DBTEAMHasTeamFileEventsValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMHasTeamFileEventsValueTag tag; - -/// Does this team have file events. @note Ensure the `isEnabled` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *enabled; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Does this team have file events. -/// -/// @param enabled Does this team have file events. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled:(NSNumber *)enabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabled` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMHasTeamFileEventsValue` union. -/// -@interface DBTEAMHasTeamFileEventsValueSerializer : NSObject - -/// -/// Serializes `DBTEAMHasTeamFileEventsValue` instances. -/// -/// @param instance An instance of the `DBTEAMHasTeamFileEventsValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMHasTeamFileEventsValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMHasTeamFileEventsValue *)instance; - -/// -/// Deserializes `DBTEAMHasTeamFileEventsValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMHasTeamFileEventsValue` API object. -/// -/// @return An instantiation of the `DBTEAMHasTeamFileEventsValue` object. -/// -+ (DBTEAMHasTeamFileEventsValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamSelectiveSyncValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamSelectiveSyncValue.h deleted file mode 100644 index b713cfe7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamSelectiveSyncValue.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMHasTeamSelectiveSyncValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HasTeamSelectiveSyncValue` union. -/// -/// The value for `hasTeamSelectiveSync` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMHasTeamSelectiveSyncValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMHasTeamSelectiveSyncValueTag` enum type represents the possible -/// tag states with which the `DBTEAMHasTeamSelectiveSyncValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMHasTeamSelectiveSyncValueTag) { - /// Does this team have team selective sync enabled. - DBTEAMHasTeamSelectiveSyncValueHasTeamSelectiveSync, - - /// (no description). - DBTEAMHasTeamSelectiveSyncValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMHasTeamSelectiveSyncValueTag tag; - -/// Does this team have team selective sync enabled. @note Ensure the -/// `isHasTeamSelectiveSync` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *hasTeamSelectiveSync; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "has_team_selective_sync". -/// -/// Description of the "has_team_selective_sync" tag state: Does this team have -/// team selective sync enabled. -/// -/// @param hasTeamSelectiveSync Does this team have team selective sync enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSelectiveSync:(NSNumber *)hasTeamSelectiveSync; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_selective_sync". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSelectiveSync` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_selective_sync". -/// -- (BOOL)isHasTeamSelectiveSync; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMHasTeamSelectiveSyncValue` union. -/// -@interface DBTEAMHasTeamSelectiveSyncValueSerializer : NSObject - -/// -/// Serializes `DBTEAMHasTeamSelectiveSyncValue` instances. -/// -/// @param instance An instance of the `DBTEAMHasTeamSelectiveSyncValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSelectiveSyncValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMHasTeamSelectiveSyncValue *)instance; - -/// -/// Deserializes `DBTEAMHasTeamSelectiveSyncValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSelectiveSyncValue` API object. -/// -/// @return An instantiation of the `DBTEAMHasTeamSelectiveSyncValue` object. -/// -+ (DBTEAMHasTeamSelectiveSyncValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamSharedDropboxValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamSharedDropboxValue.h deleted file mode 100644 index ab84ae3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMHasTeamSharedDropboxValue.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMHasTeamSharedDropboxValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `HasTeamSharedDropboxValue` union. -/// -/// The value for `hasTeamSharedDropbox` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMHasTeamSharedDropboxValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMHasTeamSharedDropboxValueTag` enum type represents the possible -/// tag states with which the `DBTEAMHasTeamSharedDropboxValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMHasTeamSharedDropboxValueTag) { - /// Does this team have a shared team root. - DBTEAMHasTeamSharedDropboxValueHasTeamSharedDropbox, - - /// (no description). - DBTEAMHasTeamSharedDropboxValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMHasTeamSharedDropboxValueTag tag; - -/// Does this team have a shared team root. @note Ensure the -/// `isHasTeamSharedDropbox` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *hasTeamSharedDropbox; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "has_team_shared_dropbox". -/// -/// Description of the "has_team_shared_dropbox" tag state: Does this team have -/// a shared team root. -/// -/// @param hasTeamSharedDropbox Does this team have a shared team root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHasTeamSharedDropbox:(NSNumber *)hasTeamSharedDropbox; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `hasTeamSharedDropbox` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "has_team_shared_dropbox". -/// -- (BOOL)isHasTeamSharedDropbox; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMHasTeamSharedDropboxValue` union. -/// -@interface DBTEAMHasTeamSharedDropboxValueSerializer : NSObject - -/// -/// Serializes `DBTEAMHasTeamSharedDropboxValue` instances. -/// -/// @param instance An instance of the `DBTEAMHasTeamSharedDropboxValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSharedDropboxValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMHasTeamSharedDropboxValue *)instance; - -/// -/// Deserializes `DBTEAMHasTeamSharedDropboxValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMHasTeamSharedDropboxValue` API object. -/// -/// @return An instantiation of the `DBTEAMHasTeamSharedDropboxValue` object. -/// -+ (DBTEAMHasTeamSharedDropboxValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMIncludeMembersArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMIncludeMembersArg.h deleted file mode 100644 index 21662edb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMIncludeMembersArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMIncludeMembersArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IncludeMembersArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMIncludeMembersArg : NSObject - -#pragma mark - Instance fields - -/// Whether to return the list of members in the group. Note that the default -/// value will cause all the group members to be returned in the response. This -/// may take a long time for large groups. -@property (nonatomic, readonly) NSNumber *returnMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param returnMembers Whether to return the list of members in the group. -/// Note that the default value will cause all the group members to be returned -/// in the response. This may take a long time for large groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReturnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IncludeMembersArg` struct. -/// -@interface DBTEAMIncludeMembersArgSerializer : NSObject - -/// -/// Serializes `DBTEAMIncludeMembersArg` instances. -/// -/// @param instance An instance of the `DBTEAMIncludeMembersArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMIncludeMembersArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMIncludeMembersArg *)instance; - -/// -/// Deserializes `DBTEAMIncludeMembersArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMIncludeMembersArg` API object. -/// -/// @return An instantiation of the `DBTEAMIncludeMembersArg` object. -/// -+ (DBTEAMIncludeMembersArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccessMethodLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccessMethodLogInfo.h deleted file mode 100644 index 12e19cae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccessMethodLogInfo.h +++ /dev/null @@ -1,276 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccessMethodLogInfo; -@class DBTEAMLOGApiSessionLogInfo; -@class DBTEAMLOGSessionLogInfo; -@class DBTEAMLOGWebSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccessMethodLogInfo` union. -/// -/// Indicates the method in which the action was performed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccessMethodLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccessMethodLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGAccessMethodLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccessMethodLogInfoTag) { - /// Admin console session details. - DBTEAMLOGAccessMethodLogInfoAdminConsole, - - /// Api session details. - DBTEAMLOGAccessMethodLogInfoApi, - - /// Content manager session details. - DBTEAMLOGAccessMethodLogInfoContentManager, - - /// End user session details. - DBTEAMLOGAccessMethodLogInfoEndUser, - - /// Enterprise console session details. - DBTEAMLOGAccessMethodLogInfoEnterpriseConsole, - - /// Sign in as session details. - DBTEAMLOGAccessMethodLogInfoSignInAs, - - /// (no description). - DBTEAMLOGAccessMethodLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccessMethodLogInfoTag tag; - -/// Admin console session details. @note Ensure the `isAdminConsole` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *adminConsole; - -/// Api session details. @note Ensure the `isApi` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGApiSessionLogInfo *api; - -/// Content manager session details. @note Ensure the `isContentManager` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *contentManager; - -/// End user session details. @note Ensure the `isEndUser` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSessionLogInfo *endUser; - -/// Enterprise console session details. @note Ensure the `isEnterpriseConsole` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *enterpriseConsole; - -/// Sign in as session details. @note Ensure the `isSignInAs` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionLogInfo *signInAs; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admin_console". -/// -/// Description of the "admin_console" tag state: Admin console session details. -/// -/// @param adminConsole Admin console session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminConsole:(DBTEAMLOGWebSessionLogInfo *)adminConsole; - -/// -/// Initializes union class with tag state of "api". -/// -/// Description of the "api" tag state: Api session details. -/// -/// @param api Api session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApi:(DBTEAMLOGApiSessionLogInfo *)api; - -/// -/// Initializes union class with tag state of "content_manager". -/// -/// Description of the "content_manager" tag state: Content manager session -/// details. -/// -/// @param contentManager Content manager session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentManager:(DBTEAMLOGWebSessionLogInfo *)contentManager; - -/// -/// Initializes union class with tag state of "end_user". -/// -/// Description of the "end_user" tag state: End user session details. -/// -/// @param endUser End user session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndUser:(DBTEAMLOGSessionLogInfo *)endUser; - -/// -/// Initializes union class with tag state of "enterprise_console". -/// -/// Description of the "enterprise_console" tag state: Enterprise console -/// session details. -/// -/// @param enterpriseConsole Enterprise console session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseConsole:(DBTEAMLOGWebSessionLogInfo *)enterpriseConsole; - -/// -/// Initializes union class with tag state of "sign_in_as". -/// -/// Description of the "sign_in_as" tag state: Sign in as session details. -/// -/// @param signInAs Sign in as session details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAs:(DBTEAMLOGWebSessionLogInfo *)signInAs; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admin_console". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminConsole` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "admin_console". -/// -- (BOOL)isAdminConsole; - -/// -/// Retrieves whether the union's current tag state has value "api". -/// -/// @note Call this method and ensure it returns true before accessing the `api` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "api". -/// -- (BOOL)isApi; - -/// -/// Retrieves whether the union's current tag state has value "content_manager". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contentManager` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "content_manager". -/// -- (BOOL)isContentManager; - -/// -/// Retrieves whether the union's current tag state has value "end_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "end_user". -/// -- (BOOL)isEndUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_console". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enterpriseConsole` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "enterprise_console". -/// -- (BOOL)isEnterpriseConsole; - -/// -/// Retrieves whether the union's current tag state has value "sign_in_as". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAs` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sign_in_as". -/// -- (BOOL)isSignInAs; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccessMethodLogInfo` union. -/// -@interface DBTEAMLOGAccessMethodLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccessMethodLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccessMethodLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccessMethodLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccessMethodLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGAccessMethodLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccessMethodLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccessMethodLogInfo` object. -/// -+ (DBTEAMLOGAccessMethodLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureAvailability.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureAvailability.h deleted file mode 100644 index 5be94459..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureAvailability.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureAvailability; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureAvailability` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureAvailability : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountCaptureAvailabilityTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAccountCaptureAvailability` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountCaptureAvailabilityTag) { - /// (no description). - DBTEAMLOGAccountCaptureAvailabilityAvailable, - - /// (no description). - DBTEAMLOGAccountCaptureAvailabilityUnavailable, - - /// (no description). - DBTEAMLOGAccountCaptureAvailabilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureAvailabilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "available". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAvailable; - -/// -/// Initializes union class with tag state of "unavailable". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnavailable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "available". -/// -/// @return Whether the union's current tag state has value "available". -/// -- (BOOL)isAvailable; - -/// -/// Retrieves whether the union's current tag state has value "unavailable". -/// -/// @return Whether the union's current tag state has value "unavailable". -/// -- (BOOL)isUnavailable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountCaptureAvailability` union. -/// -@interface DBTEAMLOGAccountCaptureAvailabilitySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureAvailability` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCaptureAvailability` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureAvailability` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureAvailability *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureAvailability` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureAvailability` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureAvailability` -/// object. -/// -+ (DBTEAMLOGAccountCaptureAvailability *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h deleted file mode 100644 index 9493d974..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureAvailability; -@class DBTEAMLOGAccountCaptureChangeAvailabilityDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangeAvailabilityDetails` struct. -/// -/// Granted/revoked option to enable account capture on team domains. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityDetails : NSObject - -#pragma mark - Instance fields - -/// New account capture availabilty value. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureAvailability *dNewValue; - -/// Previous account capture availabilty value. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCaptureAvailability *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New account capture availabilty value. -/// @param previousValue Previous account capture availabilty value. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCaptureAvailability *)dNewValue - previousValue:(nullable DBTEAMLOGAccountCaptureAvailability *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New account capture availabilty value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCaptureAvailability *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangeAvailabilityDetails` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangeAvailabilityDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityDetails` object. -/// -+ (DBTEAMLOGAccountCaptureChangeAvailabilityDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityType.h deleted file mode 100644 index 14a72aba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangeAvailabilityType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangeAvailabilityType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangeAvailabilityType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangeAvailabilityType` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureChangeAvailabilityTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangeAvailabilityType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangeAvailabilityType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangeAvailabilityType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureChangeAvailabilityType` object. -/// -+ (DBTEAMLOGAccountCaptureChangeAvailabilityType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangePolicyDetails.h deleted file mode 100644 index 65180056..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangePolicyDetails; -@class DBTEAMLOGAccountCapturePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangePolicyDetails` struct. -/// -/// Changed account capture setting on team domain. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New account capture policy. -@property (nonatomic, readonly) DBTEAMLOGAccountCapturePolicy *dNewValue; - -/// Previous account capture policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCapturePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New account capture policy. -/// @param previousValue Previous account capture policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCapturePolicy *)dNewValue - previousValue:(nullable DBTEAMLOGAccountCapturePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New account capture policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAccountCapturePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangePolicyDetails` struct. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGAccountCaptureChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangePolicyType.h deleted file mode 100644 index f7a46a8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureChangePolicyType` struct. -/// -@interface DBTEAMLOGAccountCaptureChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCaptureChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureChangePolicyType` -/// object. -/// -+ (DBTEAMLOGAccountCaptureChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureMigrateAccountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureMigrateAccountDetails.h deleted file mode 100644 index 37300adc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureMigrateAccountDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureMigrateAccountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureMigrateAccountDetails` struct. -/// -/// Account-captured user migrated account to team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureMigrateAccountDetails` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureMigrateAccountDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureMigrateAccountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureMigrateAccountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountDetails` object. -/// -+ (DBTEAMLOGAccountCaptureMigrateAccountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureMigrateAccountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureMigrateAccountType.h deleted file mode 100644 index 4ccc1076..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureMigrateAccountType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureMigrateAccountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureMigrateAccountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureMigrateAccountType` struct. -/// -@interface DBTEAMLOGAccountCaptureMigrateAccountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureMigrateAccountType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureMigrateAccountType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureMigrateAccountType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureMigrateAccountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureMigrateAccountType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureMigrateAccountType` -/// object. -/// -+ (DBTEAMLOGAccountCaptureMigrateAccountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h deleted file mode 100644 index bd7d7656..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureNotificationEmailsSentDetails; -@class DBTEAMLOGAccountCaptureNotificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureNotificationEmailsSentDetails` struct. -/// -/// Sent account capture email to all unmanaged members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -/// Account-capture email notification type. -@property (nonatomic, readonly, nullable) DBTEAMLOGAccountCaptureNotificationType *notificationType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// @param notificationType Account-capture email notification type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName - notificationType:(nullable DBTEAMLOGAccountCaptureNotificationType *)notificationType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `AccountCaptureNotificationEmailsSentDetails` struct. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentDetails` object. -/// -+ (DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentType.h deleted file mode 100644 index af3a9f9e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationEmailsSentType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureNotificationEmailsSentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureNotificationEmailsSentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureNotificationEmailsSentType` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureNotificationEmailsSentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureNotificationEmailsSentType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureNotificationEmailsSentType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureNotificationEmailsSentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureNotificationEmailsSentType` object. -/// -+ (DBTEAMLOGAccountCaptureNotificationEmailsSentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationType.h deleted file mode 100644 index 25ef89e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureNotificationType.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureNotificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureNotificationType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureNotificationType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountCaptureNotificationTypeTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAccountCaptureNotificationType` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountCaptureNotificationTypeTag) { - /// (no description). - DBTEAMLOGAccountCaptureNotificationTypeActionableNotification, - - /// (no description). - DBTEAMLOGAccountCaptureNotificationTypeProactiveWarningNotification, - - /// (no description). - DBTEAMLOGAccountCaptureNotificationTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureNotificationTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "actionable_notification". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActionableNotification; - -/// -/// Initializes union class with tag state of "proactive_warning_notification". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProactiveWarningNotification; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "actionable_notification". -/// -/// @return Whether the union's current tag state has value -/// "actionable_notification". -/// -- (BOOL)isActionableNotification; - -/// -/// Retrieves whether the union's current tag state has value -/// "proactive_warning_notification". -/// -/// @return Whether the union's current tag state has value -/// "proactive_warning_notification". -/// -- (BOOL)isProactiveWarningNotification; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountCaptureNotificationType` -/// union. -/// -@interface DBTEAMLOGAccountCaptureNotificationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureNotificationType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCaptureNotificationType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureNotificationType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureNotificationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureNotificationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCaptureNotificationType` -/// object. -/// -+ (DBTEAMLOGAccountCaptureNotificationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCapturePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCapturePolicy.h deleted file mode 100644 index 971353d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCapturePolicy.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCapturePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCapturePolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCapturePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountCapturePolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGAccountCapturePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountCapturePolicyTag) { - /// (no description). - DBTEAMLOGAccountCapturePolicyAllUsers, - - /// (no description). - DBTEAMLOGAccountCapturePolicyDisabled, - - /// (no description). - DBTEAMLOGAccountCapturePolicyInvitedUsers, - - /// (no description). - DBTEAMLOGAccountCapturePolicyPreventPersonalCreation, - - /// (no description). - DBTEAMLOGAccountCapturePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountCapturePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "all_users". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllUsers; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "invited_users". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitedUsers; - -/// -/// Initializes union class with tag state of "prevent_personal_creation". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreventPersonalCreation; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "all_users". -/// -/// @return Whether the union's current tag state has value "all_users". -/// -- (BOOL)isAllUsers; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "invited_users". -/// -/// @return Whether the union's current tag state has value "invited_users". -/// -- (BOOL)isInvitedUsers; - -/// -/// Retrieves whether the union's current tag state has value -/// "prevent_personal_creation". -/// -/// @return Whether the union's current tag state has value -/// "prevent_personal_creation". -/// -- (BOOL)isPreventPersonalCreation; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountCapturePolicy` union. -/// -@interface DBTEAMLOGAccountCapturePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCapturePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountCapturePolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCapturePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCapturePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCapturePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCapturePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountCapturePolicy` object. -/// -+ (DBTEAMLOGAccountCapturePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureRelinquishAccountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureRelinquishAccountDetails.h deleted file mode 100644 index 403cd6ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureRelinquishAccountDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureRelinquishAccountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureRelinquishAccountDetails` struct. -/// -/// Account-captured user changed account email to personal email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureRelinquishAccountDetails` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureRelinquishAccountDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureRelinquishAccountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureRelinquishAccountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountDetails` object. -/// -+ (DBTEAMLOGAccountCaptureRelinquishAccountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureRelinquishAccountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureRelinquishAccountType.h deleted file mode 100644 index b7857aa9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountCaptureRelinquishAccountType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureRelinquishAccountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountCaptureRelinquishAccountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountCaptureRelinquishAccountType` -/// struct. -/// -@interface DBTEAMLOGAccountCaptureRelinquishAccountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountCaptureRelinquishAccountType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountCaptureRelinquishAccountType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountCaptureRelinquishAccountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAccountCaptureRelinquishAccountType` object. -/// -+ (DBTEAMLOGAccountCaptureRelinquishAccountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountLockOrUnlockedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountLockOrUnlockedDetails.h deleted file mode 100644 index b0838640..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountLockOrUnlockedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountLockOrUnlockedDetails; -@class DBTEAMLOGAccountState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountLockOrUnlockedDetails` struct. -/// -/// Unlocked/locked account after failed sign in attempts. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountLockOrUnlockedDetails : NSObject - -#pragma mark - Instance fields - -/// The previous account status. -@property (nonatomic, readonly) DBTEAMLOGAccountState *previousValue; - -/// The new account status. -@property (nonatomic, readonly) DBTEAMLOGAccountState *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue The previous account status. -/// @param dNewValue The new account status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGAccountState *)previousValue - dNewValue:(DBTEAMLOGAccountState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountLockOrUnlockedDetails` struct. -/// -@interface DBTEAMLOGAccountLockOrUnlockedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountLockOrUnlockedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountLockOrUnlockedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountLockOrUnlockedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountLockOrUnlockedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountLockOrUnlockedDetails` -/// object. -/// -+ (DBTEAMLOGAccountLockOrUnlockedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountLockOrUnlockedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountLockOrUnlockedType.h deleted file mode 100644 index f51f4036..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountLockOrUnlockedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountLockOrUnlockedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountLockOrUnlockedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountLockOrUnlockedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AccountLockOrUnlockedType` struct. -/// -@interface DBTEAMLOGAccountLockOrUnlockedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountLockOrUnlockedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountLockOrUnlockedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountLockOrUnlockedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountLockOrUnlockedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountLockOrUnlockedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountLockOrUnlockedType` object. -/// -+ (DBTEAMLOGAccountLockOrUnlockedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountState.h deleted file mode 100644 index ff9c3b78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAccountState.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAccountState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAccountStateTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGAccountState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAccountStateTag) { - /// (no description). - DBTEAMLOGAccountStateLocked, - - /// (no description). - DBTEAMLOGAccountStateUnlocked, - - /// (no description). - DBTEAMLOGAccountStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAccountStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "locked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocked; - -/// -/// Initializes union class with tag state of "unlocked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlocked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "locked". -/// -/// @return Whether the union's current tag state has value "locked". -/// -- (BOOL)isLocked; - -/// -/// Retrieves whether the union's current tag state has value "unlocked". -/// -/// @return Whether the union's current tag state has value "unlocked". -/// -- (BOOL)isUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAccountState` union. -/// -@interface DBTEAMLOGAccountStateSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAccountState` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAccountState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAccountState *)instance; - -/// -/// Deserializes `DBTEAMLOGAccountState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAccountState` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAccountState` object. -/// -+ (DBTEAMLOGAccountState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGActionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGActionDetails.h deleted file mode 100644 index 8e86045c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGActionDetails.h +++ /dev/null @@ -1,198 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActionDetails; -@class DBTEAMLOGJoinTeamDetails; -@class DBTEAMLOGMemberRemoveActionType; -@class DBTEAMLOGTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ActionDetails` union. -/// -/// Additional information indicating the action taken that caused status -/// change. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGActionDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGActionDetailsTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGActionDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGActionDetailsTag) { - /// Define how the user was removed from the team. - DBTEAMLOGActionDetailsRemoveAction, - - /// Additional information relevant when someone is invited to the team. - DBTEAMLOGActionDetailsTeamInviteDetails, - - /// Additional information relevant when a new member joins the team. - DBTEAMLOGActionDetailsTeamJoinDetails, - - /// (no description). - DBTEAMLOGActionDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGActionDetailsTag tag; - -/// Define how the user was removed from the team. @note Ensure the -/// `isRemoveAction` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveActionType *removeAction; - -/// Additional information relevant when someone is invited to the team. @note -/// Ensure the `isTeamInviteDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamInviteDetails *teamInviteDetails; - -/// Additional information relevant when a new member joins the team. @note -/// Ensure the `isTeamJoinDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGJoinTeamDetails *teamJoinDetails; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "remove_action". -/// -/// Description of the "remove_action" tag state: Define how the user was -/// removed from the team. -/// -/// @param removeAction Define how the user was removed from the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveAction:(DBTEAMLOGMemberRemoveActionType *)removeAction; - -/// -/// Initializes union class with tag state of "team_invite_details". -/// -/// Description of the "team_invite_details" tag state: Additional information -/// relevant when someone is invited to the team. -/// -/// @param teamInviteDetails Additional information relevant when someone is -/// invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamInviteDetails:(DBTEAMLOGTeamInviteDetails *)teamInviteDetails; - -/// -/// Initializes union class with tag state of "team_join_details". -/// -/// Description of the "team_join_details" tag state: Additional information -/// relevant when a new member joins the team. -/// -/// @param teamJoinDetails Additional information relevant when a new member -/// joins the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamJoinDetails:(DBTEAMLOGJoinTeamDetails *)teamJoinDetails; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "remove_action". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `removeAction` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "remove_action". -/// -- (BOOL)isRemoveAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamInviteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_invite_details". -/// -- (BOOL)isTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_join_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamJoinDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_join_details". -/// -- (BOOL)isTeamJoinDetails; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGActionDetails` union. -/// -@interface DBTEAMLOGActionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGActionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGActionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGActionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGActionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGActionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGActionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGActionDetails` object. -/// -+ (DBTEAMLOGActionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGActorLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGActorLogInfo.h deleted file mode 100644 index ad67df90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGActorLogInfo.h +++ /dev/null @@ -1,252 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActorLogInfo; -@class DBTEAMLOGAppLogInfo; -@class DBTEAMLOGResellerLogInfo; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ActorLogInfo` union. -/// -/// The entity who performed the action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGActorLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGActorLogInfoTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGActorLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGActorLogInfoTag) { - /// The admin who did the action. - DBTEAMLOGActorLogInfoAdmin, - - /// Anonymous actor. - DBTEAMLOGActorLogInfoAnonymous, - - /// The application who did the action. - DBTEAMLOGActorLogInfoApp, - - /// Action done by Dropbox. - DBTEAMLOGActorLogInfoDropbox, - - /// Action done by reseller. - DBTEAMLOGActorLogInfoReseller, - - /// The user who did the action. - DBTEAMLOGActorLogInfoUser, - - /// (no description). - DBTEAMLOGActorLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGActorLogInfoTag tag; - -/// The admin who did the action. @note Ensure the `isAdmin` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserLogInfo *admin; - -/// The application who did the action. @note Ensure the `isApp` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *app; - -/// Action done by reseller. @note Ensure the `isReseller` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerLogInfo *reseller; - -/// The user who did the action. @note Ensure the `isUser` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserLogInfo *user; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admin". -/// -/// Description of the "admin" tag state: The admin who did the action. -/// -/// @param admin The admin who did the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdmin:(DBTEAMLOGUserLogInfo *)admin; - -/// -/// Initializes union class with tag state of "anonymous". -/// -/// Description of the "anonymous" tag state: Anonymous actor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnonymous; - -/// -/// Initializes union class with tag state of "app". -/// -/// Description of the "app" tag state: The application who did the action. -/// -/// @param app The application who did the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApp:(DBTEAMLOGAppLogInfo *)app; - -/// -/// Initializes union class with tag state of "dropbox". -/// -/// Description of the "dropbox" tag state: Action done by Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropbox; - -/// -/// Initializes union class with tag state of "reseller". -/// -/// Description of the "reseller" tag state: Action done by reseller. -/// -/// @param reseller Action done by reseller. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReseller:(DBTEAMLOGResellerLogInfo *)reseller; - -/// -/// Initializes union class with tag state of "user". -/// -/// Description of the "user" tag state: The user who did the action. -/// -/// @param user The user who did the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMLOGUserLogInfo *)user; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admin". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `admin` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "admin". -/// -- (BOOL)isAdmin; - -/// -/// Retrieves whether the union's current tag state has value "anonymous". -/// -/// @return Whether the union's current tag state has value "anonymous". -/// -- (BOOL)isAnonymous; - -/// -/// Retrieves whether the union's current tag state has value "app". -/// -/// @note Call this method and ensure it returns true before accessing the `app` -/// property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app". -/// -- (BOOL)isApp; - -/// -/// Retrieves whether the union's current tag state has value "dropbox". -/// -/// @return Whether the union's current tag state has value "dropbox". -/// -- (BOOL)isDropbox; - -/// -/// Retrieves whether the union's current tag state has value "reseller". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `reseller` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "reseller". -/// -- (BOOL)isReseller; - -/// -/// Retrieves whether the union's current tag state has value "user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `user` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user". -/// -- (BOOL)isUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGActorLogInfo` union. -/// -@interface DBTEAMLOGActorLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGActorLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGActorLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGActorLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGActorLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGActorLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGActorLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGActorLogInfo` object. -/// -+ (DBTEAMLOGActorLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertCategoryEnum.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertCategoryEnum.h deleted file mode 100644 index e6b5ba30..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertCategoryEnum.h +++ /dev/null @@ -1,227 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertCategoryEnum; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertCategoryEnum` union. -/// -/// Alert category -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertCategoryEnum : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertCategoryEnumTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGAdminAlertCategoryEnum` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertCategoryEnumTag) { - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumAccountTakeover, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumDataLossProtection, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumInformationGovernance, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumMalwareSharing, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumMassiveFileOperation, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumNa, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumThreatManagement, - - /// (no description). - DBTEAMLOGAdminAlertCategoryEnumOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertCategoryEnumTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "account_takeover". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountTakeover; - -/// -/// Initializes union class with tag state of "data_loss_protection". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataLossProtection; - -/// -/// Initializes union class with tag state of "information_governance". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInformationGovernance; - -/// -/// Initializes union class with tag state of "malware_sharing". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalwareSharing; - -/// -/// Initializes union class with tag state of "massive_file_operation". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMassiveFileOperation; - -/// -/// Initializes union class with tag state of "na". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNa; - -/// -/// Initializes union class with tag state of "threat_management". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithThreatManagement; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "account_takeover". -/// -/// @return Whether the union's current tag state has value "account_takeover". -/// -- (BOOL)isAccountTakeover; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_loss_protection". -/// -/// @return Whether the union's current tag state has value -/// "data_loss_protection". -/// -- (BOOL)isDataLossProtection; - -/// -/// Retrieves whether the union's current tag state has value -/// "information_governance". -/// -/// @return Whether the union's current tag state has value -/// "information_governance". -/// -- (BOOL)isInformationGovernance; - -/// -/// Retrieves whether the union's current tag state has value "malware_sharing". -/// -/// @return Whether the union's current tag state has value "malware_sharing". -/// -- (BOOL)isMalwareSharing; - -/// -/// Retrieves whether the union's current tag state has value -/// "massive_file_operation". -/// -/// @return Whether the union's current tag state has value -/// "massive_file_operation". -/// -- (BOOL)isMassiveFileOperation; - -/// -/// Retrieves whether the union's current tag state has value "na". -/// -/// @return Whether the union's current tag state has value "na". -/// -- (BOOL)isNa; - -/// -/// Retrieves whether the union's current tag state has value -/// "threat_management". -/// -/// @return Whether the union's current tag state has value "threat_management". -/// -- (BOOL)isThreatManagement; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertCategoryEnum` union. -/// -@interface DBTEAMLOGAdminAlertCategoryEnumSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertCategoryEnum` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertCategoryEnum` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertCategoryEnum` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertCategoryEnum *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertCategoryEnum` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertCategoryEnum` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertCategoryEnum` object. -/// -+ (DBTEAMLOGAdminAlertCategoryEnum *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertGeneralStateEnum.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertGeneralStateEnum.h deleted file mode 100644 index 7262692b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertGeneralStateEnum.h +++ /dev/null @@ -1,187 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertGeneralStateEnum; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertGeneralStateEnum` union. -/// -/// Alert state -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertGeneralStateEnum : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertGeneralStateEnumTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminAlertGeneralStateEnum` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertGeneralStateEnumTag) { - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumActive, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumDismissed, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumInProgress, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumNa, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumResolved, - - /// (no description). - DBTEAMLOGAdminAlertGeneralStateEnumOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertGeneralStateEnumTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "dismissed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDismissed; - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "na". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNa; - -/// -/// Initializes union class with tag state of "resolved". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResolved; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "dismissed". -/// -/// @return Whether the union's current tag state has value "dismissed". -/// -- (BOOL)isDismissed; - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "na". -/// -/// @return Whether the union's current tag state has value "na". -/// -- (BOOL)isNa; - -/// -/// Retrieves whether the union's current tag state has value "resolved". -/// -/// @return Whether the union's current tag state has value "resolved". -/// -- (BOOL)isResolved; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertGeneralStateEnum` union. -/// -@interface DBTEAMLOGAdminAlertGeneralStateEnumSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertGeneralStateEnum` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertGeneralStateEnum` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertGeneralStateEnum` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertGeneralStateEnum *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertGeneralStateEnum` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertGeneralStateEnum` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertGeneralStateEnum` -/// object. -/// -+ (DBTEAMLOGAdminAlertGeneralStateEnum *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertSeverityEnum.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertSeverityEnum.h deleted file mode 100644 index 7502e36c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertSeverityEnum.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertSeverityEnum; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertSeverityEnum` union. -/// -/// Alert severity -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertSeverityEnum : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertSeverityEnumTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGAdminAlertSeverityEnum` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertSeverityEnumTag) { - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumHigh, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumInfo, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumLow, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumMedium, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumNa, - - /// (no description). - DBTEAMLOGAdminAlertSeverityEnumOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertSeverityEnumTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "high". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHigh; - -/// -/// Initializes union class with tag state of "info". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInfo; - -/// -/// Initializes union class with tag state of "low". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLow; - -/// -/// Initializes union class with tag state of "medium". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMedium; - -/// -/// Initializes union class with tag state of "na". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNa; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "high". -/// -/// @return Whether the union's current tag state has value "high". -/// -- (BOOL)isHigh; - -/// -/// Retrieves whether the union's current tag state has value "info". -/// -/// @return Whether the union's current tag state has value "info". -/// -- (BOOL)isInfo; - -/// -/// Retrieves whether the union's current tag state has value "low". -/// -/// @return Whether the union's current tag state has value "low". -/// -- (BOOL)isLow; - -/// -/// Retrieves whether the union's current tag state has value "medium". -/// -/// @return Whether the union's current tag state has value "medium". -/// -- (BOOL)isMedium; - -/// -/// Retrieves whether the union's current tag state has value "na". -/// -/// @return Whether the union's current tag state has value "na". -/// -- (BOOL)isNa; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertSeverityEnum` union. -/// -@interface DBTEAMLOGAdminAlertSeverityEnumSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertSeverityEnum` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertSeverityEnum` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertSeverityEnum` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertSeverityEnum *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertSeverityEnum` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertSeverityEnum` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertSeverityEnum` object. -/// -+ (DBTEAMLOGAdminAlertSeverityEnum *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertConfiguration.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertConfiguration.h deleted file mode 100644 index 9b22d42b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertConfiguration.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertConfiguration; -@class DBTEAMLOGAdminAlertingAlertSensitivity; -@class DBTEAMLOGAdminAlertingAlertStatePolicy; -@class DBTEAMLOGRecipientsConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertConfiguration` struct. -/// -/// Alert configurations -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertConfiguration : NSObject - -#pragma mark - Instance fields - -/// Alert state. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminAlertingAlertStatePolicy *alertState; - -/// Sensitivity level. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminAlertingAlertSensitivity *sensitivityLevel; - -/// Recipient settings. -@property (nonatomic, readonly, nullable) DBTEAMLOGRecipientsConfiguration *recipientsSettings; - -/// Text. -@property (nonatomic, readonly, copy, nullable) NSString *text; - -/// Excluded file extensions. -@property (nonatomic, readonly, copy, nullable) NSString *excludedFileExtensions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertState Alert state. -/// @param sensitivityLevel Sensitivity level. -/// @param recipientsSettings Recipient settings. -/// @param text Text. -/// @param excludedFileExtensions Excluded file extensions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertState:(nullable DBTEAMLOGAdminAlertingAlertStatePolicy *)alertState - sensitivityLevel:(nullable DBTEAMLOGAdminAlertingAlertSensitivity *)sensitivityLevel - recipientsSettings:(nullable DBTEAMLOGRecipientsConfiguration *)recipientsSettings - text:(nullable NSString *)text - excludedFileExtensions:(nullable NSString *)excludedFileExtensions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingAlertConfiguration` struct. -/// -@interface DBTEAMLOGAdminAlertingAlertConfigurationSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertConfiguration` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingAlertConfiguration` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertConfiguration` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertConfiguration *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertConfiguration` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertConfiguration` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingAlertConfiguration` -/// object. -/// -+ (DBTEAMLOGAdminAlertingAlertConfiguration *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertSensitivity.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertSensitivity.h deleted file mode 100644 index 5005bf8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertSensitivity.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertSensitivity; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertSensitivity` union. -/// -/// Alert sensitivity -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertSensitivity : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertingAlertSensitivityTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertingAlertSensitivityTag) { - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityHigh, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityHighest, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityInvalid, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityLow, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityLowest, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityMedium, - - /// (no description). - DBTEAMLOGAdminAlertingAlertSensitivityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertSensitivityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "high". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHigh; - -/// -/// Initializes union class with tag state of "highest". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHighest; - -/// -/// Initializes union class with tag state of "invalid". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalid; - -/// -/// Initializes union class with tag state of "low". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLow; - -/// -/// Initializes union class with tag state of "lowest". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLowest; - -/// -/// Initializes union class with tag state of "medium". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMedium; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "high". -/// -/// @return Whether the union's current tag state has value "high". -/// -- (BOOL)isHigh; - -/// -/// Retrieves whether the union's current tag state has value "highest". -/// -/// @return Whether the union's current tag state has value "highest". -/// -- (BOOL)isHighest; - -/// -/// Retrieves whether the union's current tag state has value "invalid". -/// -/// @return Whether the union's current tag state has value "invalid". -/// -- (BOOL)isInvalid; - -/// -/// Retrieves whether the union's current tag state has value "low". -/// -/// @return Whether the union's current tag state has value "low". -/// -- (BOOL)isLow; - -/// -/// Retrieves whether the union's current tag state has value "lowest". -/// -/// @return Whether the union's current tag state has value "lowest". -/// -- (BOOL)isLowest; - -/// -/// Retrieves whether the union's current tag state has value "medium". -/// -/// @return Whether the union's current tag state has value "medium". -/// -- (BOOL)isMedium; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// union. -/// -@interface DBTEAMLOGAdminAlertingAlertSensitivitySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertSensitivity` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertSensitivity` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertSensitivity *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertSensitivity` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertSensitivity` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingAlertSensitivity` -/// object. -/// -+ (DBTEAMLOGAdminAlertingAlertSensitivity *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStateChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStateChangedDetails.h deleted file mode 100644 index 54d9955f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStateChangedDetails.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertCategoryEnum; -@class DBTEAMLOGAdminAlertGeneralStateEnum; -@class DBTEAMLOGAdminAlertSeverityEnum; -@class DBTEAMLOGAdminAlertingAlertStateChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertStateChangedDetails` struct. -/// -/// Changed an alert state. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Alert name. -@property (nonatomic, readonly, copy) NSString *alertName; - -/// Alert severity. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertSeverityEnum *alertSeverity; - -/// Alert category. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertCategoryEnum *alertCategory; - -/// Alert ID. -@property (nonatomic, readonly, copy) NSString *alertInstanceId; - -/// Alert state before the change. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertGeneralStateEnum *previousValue; - -/// Alert state after the change. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertGeneralStateEnum *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertName Alert name. -/// @param alertSeverity Alert severity. -/// @param alertCategory Alert category. -/// @param alertInstanceId Alert ID. -/// @param previousValue Alert state before the change. -/// @param dNewValue Alert state after the change. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertName:(NSString *)alertName - alertSeverity:(DBTEAMLOGAdminAlertSeverityEnum *)alertSeverity - alertCategory:(DBTEAMLOGAdminAlertCategoryEnum *)alertCategory - alertInstanceId:(NSString *)alertInstanceId - previousValue:(DBTEAMLOGAdminAlertGeneralStateEnum *)previousValue - dNewValue:(DBTEAMLOGAdminAlertGeneralStateEnum *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingAlertStateChangedDetails` -/// struct. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertStateChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertStateChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertStateChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedDetails` object. -/// -+ (DBTEAMLOGAdminAlertingAlertStateChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStateChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStateChangedType.h deleted file mode 100644 index a607aab0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStateChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertStateChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertStateChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingAlertStateChangedType` struct. -/// -@interface DBTEAMLOGAdminAlertingAlertStateChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertStateChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertStateChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertStateChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingAlertStateChangedType` object. -/// -+ (DBTEAMLOGAdminAlertingAlertStateChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStatePolicy.h deleted file mode 100644 index 851e953f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingAlertStatePolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertStatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingAlertStatePolicy` union. -/// -/// Policy for controlling whether an alert can be triggered or not -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingAlertStatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminAlertingAlertStatePolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminAlertingAlertStatePolicyTag) { - /// (no description). - DBTEAMLOGAdminAlertingAlertStatePolicyOff, - - /// (no description). - DBTEAMLOGAdminAlertingAlertStatePolicyOn, - - /// (no description). - DBTEAMLOGAdminAlertingAlertStatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertStatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "off". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOff; - -/// -/// Initializes union class with tag state of "on". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOn; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "off". -/// -/// @return Whether the union's current tag state has value "off". -/// -- (BOOL)isOff; - -/// -/// Retrieves whether the union's current tag state has value "on". -/// -/// @return Whether the union's current tag state has value "on". -/// -- (BOOL)isOn; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// union. -/// -@interface DBTEAMLOGAdminAlertingAlertStatePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingAlertStatePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingAlertStatePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingAlertStatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingAlertStatePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingAlertStatePolicy` -/// object. -/// -+ (DBTEAMLOGAdminAlertingAlertStatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h deleted file mode 100644 index c73f2745..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigDetails.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingAlertConfiguration; -@class DBTEAMLOGAdminAlertingChangedAlertConfigDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingChangedAlertConfigDetails` struct. -/// -/// Changed an alert setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigDetails : NSObject - -#pragma mark - Instance fields - -/// Alert Name. -@property (nonatomic, readonly, copy) NSString *alertName; - -/// Previous alert configuration. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertConfiguration *previousAlertConfig; - -/// New alert configuration. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertConfiguration *dNewAlertConfig; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertName Alert Name. -/// @param previousAlertConfig Previous alert configuration. -/// @param dNewAlertConfig New alert configuration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertName:(NSString *)alertName - previousAlertConfig:(DBTEAMLOGAdminAlertingAlertConfiguration *)previousAlertConfig - dNewAlertConfig:(DBTEAMLOGAdminAlertingAlertConfiguration *)dNewAlertConfig; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingChangedAlertConfigDetails` -/// struct. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingChangedAlertConfigDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigDetails` object. -/// -+ (DBTEAMLOGAdminAlertingChangedAlertConfigDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigType.h deleted file mode 100644 index 69cc8d5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingChangedAlertConfigType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingChangedAlertConfigType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingChangedAlertConfigType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingChangedAlertConfigType` -/// struct. -/// -@interface DBTEAMLOGAdminAlertingChangedAlertConfigTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingChangedAlertConfigType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingChangedAlertConfigType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingChangedAlertConfigType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingChangedAlertConfigType` object. -/// -+ (DBTEAMLOGAdminAlertingChangedAlertConfigType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingTriggeredAlertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingTriggeredAlertDetails.h deleted file mode 100644 index 09b45a89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingTriggeredAlertDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertCategoryEnum; -@class DBTEAMLOGAdminAlertSeverityEnum; -@class DBTEAMLOGAdminAlertingTriggeredAlertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingTriggeredAlertDetails` struct. -/// -/// Triggered security alert. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertDetails : NSObject - -#pragma mark - Instance fields - -/// Alert name. -@property (nonatomic, readonly, copy) NSString *alertName; - -/// Alert severity. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertSeverityEnum *alertSeverity; - -/// Alert category. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertCategoryEnum *alertCategory; - -/// Alert ID. -@property (nonatomic, readonly, copy) NSString *alertInstanceId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param alertName Alert name. -/// @param alertSeverity Alert severity. -/// @param alertCategory Alert category. -/// @param alertInstanceId Alert ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlertName:(NSString *)alertName - alertSeverity:(DBTEAMLOGAdminAlertSeverityEnum *)alertSeverity - alertCategory:(DBTEAMLOGAdminAlertCategoryEnum *)alertCategory - alertInstanceId:(NSString *)alertInstanceId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingTriggeredAlertDetails` struct. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingTriggeredAlertDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingTriggeredAlertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingTriggeredAlertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertDetails` object. -/// -+ (DBTEAMLOGAdminAlertingTriggeredAlertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingTriggeredAlertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingTriggeredAlertType.h deleted file mode 100644 index b82fd295..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminAlertingTriggeredAlertType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminAlertingTriggeredAlertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminAlertingTriggeredAlertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminAlertingTriggeredAlertType` struct. -/// -@interface DBTEAMLOGAdminAlertingTriggeredAlertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminAlertingTriggeredAlertType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminAlertingTriggeredAlertType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminAlertingTriggeredAlertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminAlertingTriggeredAlertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminAlertingTriggeredAlertType` -/// object. -/// -+ (DBTEAMLOGAdminAlertingTriggeredAlertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminConsoleAppPermission.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminConsoleAppPermission.h deleted file mode 100644 index 42ca33ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminConsoleAppPermission.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminConsoleAppPermission; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminConsoleAppPermission` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminConsoleAppPermission : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminConsoleAppPermissionTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminConsoleAppPermission` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminConsoleAppPermissionTag) { - /// (no description). - DBTEAMLOGAdminConsoleAppPermissionDefaultForListedApps, - - /// (no description). - DBTEAMLOGAdminConsoleAppPermissionDefaultForUnlistedApps, - - /// (no description). - DBTEAMLOGAdminConsoleAppPermissionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPermissionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default_for_listed_apps". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultForListedApps; - -/// -/// Initializes union class with tag state of "default_for_unlisted_apps". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultForUnlistedApps; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "default_for_listed_apps". -/// -/// @return Whether the union's current tag state has value -/// "default_for_listed_apps". -/// -- (BOOL)isDefaultForListedApps; - -/// -/// Retrieves whether the union's current tag state has value -/// "default_for_unlisted_apps". -/// -/// @return Whether the union's current tag state has value -/// "default_for_unlisted_apps". -/// -- (BOOL)isDefaultForUnlistedApps; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminConsoleAppPermission` union. -/// -@interface DBTEAMLOGAdminConsoleAppPermissionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminConsoleAppPermission` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminConsoleAppPermission` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPermission` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminConsoleAppPermission *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminConsoleAppPermission` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPermission` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminConsoleAppPermission` object. -/// -+ (DBTEAMLOGAdminConsoleAppPermission *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminConsoleAppPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminConsoleAppPolicy.h deleted file mode 100644 index 291c025a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminConsoleAppPolicy.h +++ /dev/null @@ -1,149 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminConsoleAppPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminConsoleAppPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminConsoleAppPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminConsoleAppPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGAdminConsoleAppPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminConsoleAppPolicyTag) { - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyAllow, - - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyBlock, - - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyDefault_, - - /// (no description). - DBTEAMLOGAdminConsoleAppPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "block". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBlock; - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "block". -/// -/// @return Whether the union's current tag state has value "block". -/// -- (BOOL)isBlock; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminConsoleAppPolicy` union. -/// -@interface DBTEAMLOGAdminConsoleAppPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminConsoleAppPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminConsoleAppPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminConsoleAppPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminConsoleAppPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminConsoleAppPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminConsoleAppPolicy` object. -/// -+ (DBTEAMLOGAdminConsoleAppPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersChangedDetails.h deleted file mode 100644 index f72b9559..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminEmailRemindersChangedDetails; -@class DBTEAMLOGAdminEmailRemindersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminEmailRemindersChangedDetails` struct. -/// -/// Changed admin reminder settings for requests to join the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGAdminEmailRemindersPolicy *)dNewValue - previousValue:(DBTEAMLOGAdminEmailRemindersPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminEmailRemindersChangedDetails` struct. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminEmailRemindersChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGAdminEmailRemindersChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminEmailRemindersChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminEmailRemindersChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminEmailRemindersChangedDetails` -/// object. -/// -+ (DBTEAMLOGAdminEmailRemindersChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersChangedType.h deleted file mode 100644 index 55f0a213..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminEmailRemindersChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminEmailRemindersChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AdminEmailRemindersChangedType` struct. -/// -@interface DBTEAMLOGAdminEmailRemindersChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminEmailRemindersChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminEmailRemindersChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminEmailRemindersChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminEmailRemindersChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminEmailRemindersChangedType` -/// object. -/// -+ (DBTEAMLOGAdminEmailRemindersChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersPolicy.h deleted file mode 100644 index b5b35c87..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminEmailRemindersPolicy.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminEmailRemindersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminEmailRemindersPolicy` union. -/// -/// Policy for deciding whether team admins receive reminder emails for requests -/// to join the team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminEmailRemindersPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminEmailRemindersPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAdminEmailRemindersPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminEmailRemindersPolicyTag) { - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyDefault_, - - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyDisabled, - - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyEnabled, - - /// (no description). - DBTEAMLOGAdminEmailRemindersPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminEmailRemindersPolicy` union. -/// -@interface DBTEAMLOGAdminEmailRemindersPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminEmailRemindersPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminEmailRemindersPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminEmailRemindersPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminEmailRemindersPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminEmailRemindersPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminEmailRemindersPolicy` object. -/// -+ (DBTEAMLOGAdminEmailRemindersPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminRole.h deleted file mode 100644 index 30b5bf25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAdminRole.h +++ /dev/null @@ -1,270 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AdminRole` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAdminRole : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAdminRoleTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGAdminRole` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAdminRoleTag) { - /// (no description). - DBTEAMLOGAdminRoleBillingAdmin, - - /// (no description). - DBTEAMLOGAdminRoleComplianceAdmin, - - /// (no description). - DBTEAMLOGAdminRoleContentAdmin, - - /// (no description). - DBTEAMLOGAdminRoleLimitedAdmin, - - /// (no description). - DBTEAMLOGAdminRoleMemberOnly, - - /// (no description). - DBTEAMLOGAdminRoleReportingAdmin, - - /// (no description). - DBTEAMLOGAdminRoleSecurityAdmin, - - /// (no description). - DBTEAMLOGAdminRoleSupportAdmin, - - /// (no description). - DBTEAMLOGAdminRoleTeamAdmin, - - /// (no description). - DBTEAMLOGAdminRoleUserManagementAdmin, - - /// (no description). - DBTEAMLOGAdminRoleOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAdminRoleTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "billing_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBillingAdmin; - -/// -/// Initializes union class with tag state of "compliance_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplianceAdmin; - -/// -/// Initializes union class with tag state of "content_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdmin; - -/// -/// Initializes union class with tag state of "limited_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimitedAdmin; - -/// -/// Initializes union class with tag state of "member_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberOnly; - -/// -/// Initializes union class with tag state of "reporting_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReportingAdmin; - -/// -/// Initializes union class with tag state of "security_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecurityAdmin; - -/// -/// Initializes union class with tag state of "support_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSupportAdmin; - -/// -/// Initializes union class with tag state of "team_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAdmin; - -/// -/// Initializes union class with tag state of "user_management_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserManagementAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "billing_admin". -/// -/// @return Whether the union's current tag state has value "billing_admin". -/// -- (BOOL)isBillingAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "compliance_admin". -/// -/// @return Whether the union's current tag state has value "compliance_admin". -/// -- (BOOL)isComplianceAdmin; - -/// -/// Retrieves whether the union's current tag state has value "content_admin". -/// -/// @return Whether the union's current tag state has value "content_admin". -/// -- (BOOL)isContentAdmin; - -/// -/// Retrieves whether the union's current tag state has value "limited_admin". -/// -/// @return Whether the union's current tag state has value "limited_admin". -/// -- (BOOL)isLimitedAdmin; - -/// -/// Retrieves whether the union's current tag state has value "member_only". -/// -/// @return Whether the union's current tag state has value "member_only". -/// -- (BOOL)isMemberOnly; - -/// -/// Retrieves whether the union's current tag state has value "reporting_admin". -/// -/// @return Whether the union's current tag state has value "reporting_admin". -/// -- (BOOL)isReportingAdmin; - -/// -/// Retrieves whether the union's current tag state has value "security_admin". -/// -/// @return Whether the union's current tag state has value "security_admin". -/// -- (BOOL)isSecurityAdmin; - -/// -/// Retrieves whether the union's current tag state has value "support_admin". -/// -/// @return Whether the union's current tag state has value "support_admin". -/// -- (BOOL)isSupportAdmin; - -/// -/// Retrieves whether the union's current tag state has value "team_admin". -/// -/// @return Whether the union's current tag state has value "team_admin". -/// -- (BOOL)isTeamAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_management_admin". -/// -/// @return Whether the union's current tag state has value -/// "user_management_admin". -/// -- (BOOL)isUserManagementAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAdminRole` union. -/// -@interface DBTEAMLOGAdminRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAdminRole` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAdminRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAdminRole *)instance; - -/// -/// Deserializes `DBTEAMLOGAdminRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAdminRole` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAdminRole` object. -/// -+ (DBTEAMLOGAdminRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAlertRecipientsSettingType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAlertRecipientsSettingType.h deleted file mode 100644 index 6fc89954..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAlertRecipientsSettingType.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAlertRecipientsSettingType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AlertRecipientsSettingType` union. -/// -/// Alert recipients setting type -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAlertRecipientsSettingType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAlertRecipientsSettingTypeTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGAlertRecipientsSettingType` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAlertRecipientsSettingTypeTag) { - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeCustomList, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeInvalid, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeNone, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeTeamAdmins, - - /// (no description). - DBTEAMLOGAlertRecipientsSettingTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAlertRecipientsSettingTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "custom_list". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCustomList; - -/// -/// Initializes union class with tag state of "invalid". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalid; - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "team_admins". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAdmins; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "custom_list". -/// -/// @return Whether the union's current tag state has value "custom_list". -/// -- (BOOL)isCustomList; - -/// -/// Retrieves whether the union's current tag state has value "invalid". -/// -/// @return Whether the union's current tag state has value "invalid". -/// -- (BOOL)isInvalid; - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "team_admins". -/// -/// @return Whether the union's current tag state has value "team_admins". -/// -- (BOOL)isTeamAdmins; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAlertRecipientsSettingType` union. -/// -@interface DBTEAMLOGAlertRecipientsSettingTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAlertRecipientsSettingType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAlertRecipientsSettingType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAlertRecipientsSettingType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAlertRecipientsSettingType *)instance; - -/// -/// Deserializes `DBTEAMLOGAlertRecipientsSettingType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAlertRecipientsSettingType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAlertRecipientsSettingType` -/// object. -/// -+ (DBTEAMLOGAlertRecipientsSettingType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadDisabledDetails.h deleted file mode 100644 index 2d1292f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadDisabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadDisabledDetails` struct. -/// -/// Disabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadDisabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadDisabledDetails` struct. -/// -@interface DBTEAMLOGAllowDownloadDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadDisabledDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadDisabledDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadDisabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadDisabledDetails` -/// object. -/// -+ (DBTEAMLOGAllowDownloadDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadDisabledType.h deleted file mode 100644 index 65ba6571..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadDisabledType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadDisabledType` struct. -/// -@interface DBTEAMLOGAllowDownloadDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadDisabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadDisabledType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadDisabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadDisabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadDisabledType` object. -/// -+ (DBTEAMLOGAllowDownloadDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadEnabledDetails.h deleted file mode 100644 index 840cb489..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadEnabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadEnabledDetails` struct. -/// -/// Enabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadEnabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadEnabledDetails` struct. -/// -@interface DBTEAMLOGAllowDownloadEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadEnabledDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadEnabledDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadEnabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadEnabledDetails` -/// object. -/// -+ (DBTEAMLOGAllowDownloadEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadEnabledType.h deleted file mode 100644 index ce5dde52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAllowDownloadEnabledType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAllowDownloadEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AllowDownloadEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAllowDownloadEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AllowDownloadEnabledType` struct. -/// -@interface DBTEAMLOGAllowDownloadEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAllowDownloadEnabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAllowDownloadEnabledType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAllowDownloadEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGAllowDownloadEnabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAllowDownloadEnabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAllowDownloadEnabledType` object. -/// -+ (DBTEAMLOGAllowDownloadEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApiSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApiSessionLogInfo.h deleted file mode 100644 index 712eb18e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApiSessionLogInfo.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGApiSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApiSessionLogInfo` struct. -/// -/// Api session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGApiSessionLogInfo : NSObject - -#pragma mark - Instance fields - -/// Api request ID. -@property (nonatomic, readonly, copy) NSString *requestId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestId Api request ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestId:(NSString *)requestId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApiSessionLogInfo` struct. -/// -@interface DBTEAMLOGApiSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGApiSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGApiSessionLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGApiSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGApiSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGApiSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGApiSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGApiSessionLogInfo` object. -/// -+ (DBTEAMLOGApiSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppBlockedByPermissionsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppBlockedByPermissionsDetails.h deleted file mode 100644 index 908a8495..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppBlockedByPermissionsDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppBlockedByPermissionsDetails; -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppBlockedByPermissionsDetails` struct. -/// -/// Failed to connect app for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppBlockedByPermissionsDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppBlockedByPermissionsDetails` struct. -/// -@interface DBTEAMLOGAppBlockedByPermissionsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppBlockedByPermissionsDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppBlockedByPermissionsDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppBlockedByPermissionsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppBlockedByPermissionsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppBlockedByPermissionsDetails` -/// object. -/// -+ (DBTEAMLOGAppBlockedByPermissionsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppBlockedByPermissionsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppBlockedByPermissionsType.h deleted file mode 100644 index ea286dd0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppBlockedByPermissionsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppBlockedByPermissionsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppBlockedByPermissionsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppBlockedByPermissionsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppBlockedByPermissionsType` struct. -/// -@interface DBTEAMLOGAppBlockedByPermissionsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppBlockedByPermissionsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppBlockedByPermissionsType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppBlockedByPermissionsType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppBlockedByPermissionsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppBlockedByPermissionsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppBlockedByPermissionsType` -/// object. -/// -+ (DBTEAMLOGAppBlockedByPermissionsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkTeamDetails.h deleted file mode 100644 index 3daaa72c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkTeamDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkTeamDetails; -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkTeamDetails` struct. -/// -/// Linked app for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkTeamDetails` struct. -/// -@interface DBTEAMLOGAppLinkTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkTeamDetails` object. -/// -+ (DBTEAMLOGAppLinkTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkTeamType.h deleted file mode 100644 index 60121754..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkTeamType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkTeamType` struct. -/// -@interface DBTEAMLOGAppLinkTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkTeamType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkTeamType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkTeamType` object. -/// -+ (DBTEAMLOGAppLinkTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkUserDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkUserDetails.h deleted file mode 100644 index 1a7cd470..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkUserDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkUserDetails; -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkUserDetails` struct. -/// -/// Linked app for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkUserDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkUserDetails` struct. -/// -@interface DBTEAMLOGAppLinkUserDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkUserDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkUserDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkUserDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkUserDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkUserDetails` object. -/// -+ (DBTEAMLOGAppLinkUserDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkUserType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkUserType.h deleted file mode 100644 index dcdf9f58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLinkUserType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLinkUserType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLinkUserType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLinkUserType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLinkUserType` struct. -/// -@interface DBTEAMLOGAppLinkUserTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLinkUserType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLinkUserType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLinkUserType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLinkUserType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLinkUserType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLinkUserType` object. -/// -+ (DBTEAMLOGAppLinkUserType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLogInfo.h deleted file mode 100644 index 6ea5bd66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppLogInfo.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppLogInfo` struct. -/// -/// App's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppLogInfo : NSObject - -#pragma mark - Instance fields - -/// App unique ID. -@property (nonatomic, readonly, copy, nullable) NSString *appId; - -/// App display name. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppLogInfo` struct. -/// -@interface DBTEAMLOGAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppLogInfo` object. -/// -+ (DBTEAMLOGAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppPermissionsChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppPermissionsChangedDetails.h deleted file mode 100644 index b2010831..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppPermissionsChangedDetails.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminConsoleAppPermission; -@class DBTEAMLOGAdminConsoleAppPolicy; -@class DBTEAMLOGAppPermissionsChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppPermissionsChangedDetails` struct. -/// -/// Changed app permissions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppPermissionsChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the app. -@property (nonatomic, readonly, copy, nullable) NSString *appName; - -/// Permission that was changed. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminConsoleAppPermission *permission; - -/// Previous policy. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPolicy *previousValue; - -/// New policy. -@property (nonatomic, readonly) DBTEAMLOGAdminConsoleAppPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous policy. -/// @param dNewValue New policy. -/// @param appName Name of the app. -/// @param permission Permission that was changed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGAdminConsoleAppPolicy *)previousValue - dNewValue:(DBTEAMLOGAdminConsoleAppPolicy *)dNewValue - appName:(nullable NSString *)appName - permission:(nullable DBTEAMLOGAdminConsoleAppPermission *)permission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param previousValue Previous policy. -/// @param dNewValue New policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGAdminConsoleAppPolicy *)previousValue - dNewValue:(DBTEAMLOGAdminConsoleAppPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppPermissionsChangedDetails` struct. -/// -@interface DBTEAMLOGAppPermissionsChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppPermissionsChangedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppPermissionsChangedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppPermissionsChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppPermissionsChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppPermissionsChangedDetails` -/// object. -/// -+ (DBTEAMLOGAppPermissionsChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppPermissionsChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppPermissionsChangedType.h deleted file mode 100644 index 8cceccc2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppPermissionsChangedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppPermissionsChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppPermissionsChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppPermissionsChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppPermissionsChangedType` struct. -/// -@interface DBTEAMLOGAppPermissionsChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppPermissionsChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppPermissionsChangedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppPermissionsChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppPermissionsChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppPermissionsChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppPermissionsChangedType` object. -/// -+ (DBTEAMLOGAppPermissionsChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkTeamDetails.h deleted file mode 100644 index 22794bbb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkTeamDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLogInfo; -@class DBTEAMLOGAppUnlinkTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkTeamDetails` struct. -/// -/// Unlinked app for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkTeamDetails` struct. -/// -@interface DBTEAMLOGAppUnlinkTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkTeamDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkTeamDetails` object. -/// -+ (DBTEAMLOGAppUnlinkTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkTeamType.h deleted file mode 100644 index c7c31cb0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkTeamType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppUnlinkTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkTeamType` struct. -/// -@interface DBTEAMLOGAppUnlinkTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkTeamType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkTeamType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkTeamType` object. -/// -+ (DBTEAMLOGAppUnlinkTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkUserDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkUserDetails.h deleted file mode 100644 index 3f52efd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkUserDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppLogInfo; -@class DBTEAMLOGAppUnlinkUserDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkUserDetails` struct. -/// -/// Unlinked app for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkUserDetails : NSObject - -#pragma mark - Instance fields - -/// Relevant application details. -@property (nonatomic, readonly) DBTEAMLOGAppLogInfo *appInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appInfo Relevant application details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppInfo:(DBTEAMLOGAppLogInfo *)appInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkUserDetails` struct. -/// -@interface DBTEAMLOGAppUnlinkUserDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkUserDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkUserDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkUserDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkUserDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkUserDetails` object. -/// -+ (DBTEAMLOGAppUnlinkUserDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkUserType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkUserType.h deleted file mode 100644 index 46581db3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAppUnlinkUserType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAppUnlinkUserType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AppUnlinkUserType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAppUnlinkUserType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `AppUnlinkUserType` struct. -/// -@interface DBTEAMLOGAppUnlinkUserTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAppUnlinkUserType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAppUnlinkUserType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAppUnlinkUserType *)instance; - -/// -/// Deserializes `DBTEAMLOGAppUnlinkUserType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAppUnlinkUserType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAppUnlinkUserType` object. -/// -+ (DBTEAMLOGAppUnlinkUserType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApplyNamingConventionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApplyNamingConventionDetails.h deleted file mode 100644 index b8aa726d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApplyNamingConventionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGApplyNamingConventionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApplyNamingConventionDetails` struct. -/// -/// Applied naming convention. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGApplyNamingConventionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApplyNamingConventionDetails` struct. -/// -@interface DBTEAMLOGApplyNamingConventionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGApplyNamingConventionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGApplyNamingConventionDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGApplyNamingConventionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGApplyNamingConventionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGApplyNamingConventionDetails` -/// object. -/// -+ (DBTEAMLOGApplyNamingConventionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApplyNamingConventionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApplyNamingConventionType.h deleted file mode 100644 index 0a51b6d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGApplyNamingConventionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGApplyNamingConventionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ApplyNamingConventionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGApplyNamingConventionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ApplyNamingConventionType` struct. -/// -@interface DBTEAMLOGApplyNamingConventionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGApplyNamingConventionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGApplyNamingConventionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGApplyNamingConventionType *)instance; - -/// -/// Deserializes `DBTEAMLOGApplyNamingConventionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGApplyNamingConventionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGApplyNamingConventionType` object. -/// -+ (DBTEAMLOGApplyNamingConventionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAssetLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAssetLogInfo.h deleted file mode 100644 index 6b86ebe0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGAssetLogInfo.h +++ /dev/null @@ -1,246 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAssetLogInfo; -@class DBTEAMLOGFileLogInfo; -@class DBTEAMLOGFolderLogInfo; -@class DBTEAMLOGPaperDocumentLogInfo; -@class DBTEAMLOGPaperFolderLogInfo; -@class DBTEAMLOGShowcaseDocumentLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AssetLogInfo` union. -/// -/// Asset details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGAssetLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGAssetLogInfoTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGAssetLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGAssetLogInfoTag) { - /// File's details. - DBTEAMLOGAssetLogInfoFile, - - /// Folder's details. - DBTEAMLOGAssetLogInfoFolder, - - /// Paper document's details. - DBTEAMLOGAssetLogInfoPaperDocument, - - /// Paper folder's details. - DBTEAMLOGAssetLogInfoPaperFolder, - - /// Showcase document's details. - DBTEAMLOGAssetLogInfoShowcaseDocument, - - /// (no description). - DBTEAMLOGAssetLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGAssetLogInfoTag tag; - -/// File's details. @note Ensure the `isFile` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLogInfo *file; - -/// Folder's details. @note Ensure the `isFolder` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderLogInfo *folder; - -/// Paper document's details. @note Ensure the `isPaperDocument` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocumentLogInfo *paperDocument; - -/// Paper folder's details. @note Ensure the `isPaperFolder` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderLogInfo *paperFolder; - -/// Showcase document's details. @note Ensure the `isShowcaseDocument` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDocumentLogInfo *showcaseDocument; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "file". -/// -/// Description of the "file" tag state: File's details. -/// -/// @param file File's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFile:(DBTEAMLOGFileLogInfo *)file; - -/// -/// Initializes union class with tag state of "folder". -/// -/// Description of the "folder" tag state: Folder's details. -/// -/// @param folder Folder's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolder:(DBTEAMLOGFolderLogInfo *)folder; - -/// -/// Initializes union class with tag state of "paper_document". -/// -/// Description of the "paper_document" tag state: Paper document's details. -/// -/// @param paperDocument Paper document's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocument:(DBTEAMLOGPaperDocumentLogInfo *)paperDocument; - -/// -/// Initializes union class with tag state of "paper_folder". -/// -/// Description of the "paper_folder" tag state: Paper folder's details. -/// -/// @param paperFolder Paper folder's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolder:(DBTEAMLOGPaperFolderLogInfo *)paperFolder; - -/// -/// Initializes union class with tag state of "showcase_document". -/// -/// Description of the "showcase_document" tag state: Showcase document's -/// details. -/// -/// @param showcaseDocument Showcase document's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDocument:(DBTEAMLOGShowcaseDocumentLogInfo *)showcaseDocument; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "file". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `file` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file". -/// -- (BOOL)isFile; - -/// -/// Retrieves whether the union's current tag state has value "folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "folder". -/// -- (BOOL)isFolder; - -/// -/// Retrieves whether the union's current tag state has value "paper_document". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocument` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_document". -/// -- (BOOL)isPaperDocument; - -/// -/// Retrieves whether the union's current tag state has value "paper_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_folder". -/// -- (BOOL)isPaperFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_document". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseDocument` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_document". -/// -- (BOOL)isShowcaseDocument; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGAssetLogInfo` union. -/// -@interface DBTEAMLOGAssetLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGAssetLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGAssetLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGAssetLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGAssetLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGAssetLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGAssetLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGAssetLogInfo` object. -/// -+ (DBTEAMLOGAssetLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupAdminInvitationSentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupAdminInvitationSentDetails.h deleted file mode 100644 index de277eef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupAdminInvitationSentDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupAdminInvitationSentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupAdminInvitationSentDetails` struct. -/// -/// Invited members to activate Backup. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupAdminInvitationSentDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupAdminInvitationSentDetails` struct. -/// -@interface DBTEAMLOGBackupAdminInvitationSentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupAdminInvitationSentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGBackupAdminInvitationSentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupAdminInvitationSentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupAdminInvitationSentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupAdminInvitationSentDetails` -/// object. -/// -+ (DBTEAMLOGBackupAdminInvitationSentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupAdminInvitationSentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupAdminInvitationSentType.h deleted file mode 100644 index 39ab4c09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupAdminInvitationSentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupAdminInvitationSentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupAdminInvitationSentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupAdminInvitationSentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupAdminInvitationSentType` struct. -/// -@interface DBTEAMLOGBackupAdminInvitationSentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupAdminInvitationSentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupAdminInvitationSentType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupAdminInvitationSentType *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupAdminInvitationSentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupAdminInvitationSentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupAdminInvitationSentType` -/// object. -/// -+ (DBTEAMLOGBackupAdminInvitationSentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupInvitationOpenedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupInvitationOpenedDetails.h deleted file mode 100644 index d4cef9d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupInvitationOpenedDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupInvitationOpenedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupInvitationOpenedDetails` struct. -/// -/// Opened Backup invite. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupInvitationOpenedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupInvitationOpenedDetails` struct. -/// -@interface DBTEAMLOGBackupInvitationOpenedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupInvitationOpenedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupInvitationOpenedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupInvitationOpenedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupInvitationOpenedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupInvitationOpenedDetails` -/// object. -/// -+ (DBTEAMLOGBackupInvitationOpenedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupInvitationOpenedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupInvitationOpenedType.h deleted file mode 100644 index 886e5fec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupInvitationOpenedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupInvitationOpenedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupInvitationOpenedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupInvitationOpenedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BackupInvitationOpenedType` struct. -/// -@interface DBTEAMLOGBackupInvitationOpenedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupInvitationOpenedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupInvitationOpenedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupInvitationOpenedType *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupInvitationOpenedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupInvitationOpenedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupInvitationOpenedType` -/// object. -/// -+ (DBTEAMLOGBackupInvitationOpenedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupStatus.h deleted file mode 100644 index 419f337a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBackupStatus.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BackupStatus` union. -/// -/// Backup status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBackupStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGBackupStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGBackupStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGBackupStatusTag) { - /// (no description). - DBTEAMLOGBackupStatusDisabled, - - /// (no description). - DBTEAMLOGBackupStatusEnabled, - - /// (no description). - DBTEAMLOGBackupStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGBackupStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGBackupStatus` union. -/// -@interface DBTEAMLOGBackupStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBackupStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBackupStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBackupStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGBackupStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBackupStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBackupStatus` object. -/// -+ (DBTEAMLOGBackupStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddPageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddPageDetails.h deleted file mode 100644 index f0cc0ee4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddPageDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddPageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddPageDetails` struct. -/// -/// Added Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddPageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddPageDetails` struct. -/// -@interface DBTEAMLOGBinderAddPageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddPageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddPageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddPageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddPageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddPageDetails` object. -/// -+ (DBTEAMLOGBinderAddPageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddPageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddPageType.h deleted file mode 100644 index 8919635c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddPageType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddPageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddPageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddPageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddPageType` struct. -/// -@interface DBTEAMLOGBinderAddPageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddPageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddPageType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddPageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddPageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddPageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddPageType` object. -/// -+ (DBTEAMLOGBinderAddPageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddSectionDetails.h deleted file mode 100644 index 89fb5b9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddSectionDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddSectionDetails` struct. -/// -/// Added Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddSectionDetails` struct. -/// -@interface DBTEAMLOGBinderAddSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddSectionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddSectionDetails` object. -/// -+ (DBTEAMLOGBinderAddSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddSectionType.h deleted file mode 100644 index 1abd43ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderAddSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderAddSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderAddSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderAddSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderAddSectionType` struct. -/// -@interface DBTEAMLOGBinderAddSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderAddSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderAddSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderAddSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderAddSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderAddSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderAddSectionType` object. -/// -+ (DBTEAMLOGBinderAddSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemovePageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemovePageDetails.h deleted file mode 100644 index f52aa6a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemovePageDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemovePageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemovePageDetails` struct. -/// -/// Removed Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemovePageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemovePageDetails` struct. -/// -@interface DBTEAMLOGBinderRemovePageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemovePageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemovePageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemovePageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemovePageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemovePageDetails` object. -/// -+ (DBTEAMLOGBinderRemovePageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemovePageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemovePageType.h deleted file mode 100644 index b2a0b722..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemovePageType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemovePageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemovePageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemovePageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemovePageType` struct. -/// -@interface DBTEAMLOGBinderRemovePageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemovePageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemovePageType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemovePageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemovePageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemovePageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemovePageType` object. -/// -+ (DBTEAMLOGBinderRemovePageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemoveSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemoveSectionDetails.h deleted file mode 100644 index e70a1809..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemoveSectionDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemoveSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemoveSectionDetails` struct. -/// -/// Removed Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemoveSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemoveSectionDetails` struct. -/// -@interface DBTEAMLOGBinderRemoveSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemoveSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemoveSectionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemoveSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemoveSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemoveSectionDetails` -/// object. -/// -+ (DBTEAMLOGBinderRemoveSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemoveSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemoveSectionType.h deleted file mode 100644 index ad2a2891..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRemoveSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRemoveSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRemoveSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRemoveSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRemoveSectionType` struct. -/// -@interface DBTEAMLOGBinderRemoveSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRemoveSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRemoveSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRemoveSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRemoveSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRemoveSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRemoveSectionType` object. -/// -+ (DBTEAMLOGBinderRemoveSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenamePageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenamePageDetails.h deleted file mode 100644 index 50d2942b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenamePageDetails.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenamePageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenamePageDetails` struct. -/// -/// Renamed Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenamePageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -/// Previous name of the Binder page/section. -@property (nonatomic, readonly, copy, nullable) NSString *previousBinderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// @param previousBinderItemName Previous name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName - previousBinderItemName:(nullable NSString *)previousBinderItemName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenamePageDetails` struct. -/// -@interface DBTEAMLOGBinderRenamePageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenamePageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenamePageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenamePageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenamePageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenamePageDetails` object. -/// -+ (DBTEAMLOGBinderRenamePageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenamePageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenamePageType.h deleted file mode 100644 index c3c990e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenamePageType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenamePageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenamePageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenamePageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenamePageType` struct. -/// -@interface DBTEAMLOGBinderRenamePageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenamePageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenamePageType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenamePageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenamePageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenamePageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenamePageType` object. -/// -+ (DBTEAMLOGBinderRenamePageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenameSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenameSectionDetails.h deleted file mode 100644 index d348f372..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenameSectionDetails.h +++ /dev/null @@ -1,108 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenameSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenameSectionDetails` struct. -/// -/// Renamed Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenameSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -/// Previous name of the Binder page/section. -@property (nonatomic, readonly, copy, nullable) NSString *previousBinderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// @param previousBinderItemName Previous name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName - previousBinderItemName:(nullable NSString *)previousBinderItemName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenameSectionDetails` struct. -/// -@interface DBTEAMLOGBinderRenameSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenameSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenameSectionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenameSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenameSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenameSectionDetails` -/// object. -/// -+ (DBTEAMLOGBinderRenameSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenameSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenameSectionType.h deleted file mode 100644 index 52f0ca4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderRenameSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderRenameSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderRenameSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderRenameSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderRenameSectionType` struct. -/// -@interface DBTEAMLOGBinderRenameSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderRenameSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderRenameSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderRenameSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderRenameSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderRenameSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderRenameSectionType` object. -/// -+ (DBTEAMLOGBinderRenameSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderPageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderPageDetails.h deleted file mode 100644 index 671b6843..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderPageDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderPageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderPageDetails` struct. -/// -/// Reordered Binder page. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderPageDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderPageDetails` struct. -/// -@interface DBTEAMLOGBinderReorderPageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderPageDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderPageDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderPageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderPageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderPageDetails` object. -/// -+ (DBTEAMLOGBinderReorderPageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderPageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderPageType.h deleted file mode 100644 index 6d78c820..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderPageType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderPageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderPageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderPageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderPageType` struct. -/// -@interface DBTEAMLOGBinderReorderPageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderPageType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderPageType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderPageType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderPageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderPageType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderPageType` object. -/// -+ (DBTEAMLOGBinderReorderPageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderSectionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderSectionDetails.h deleted file mode 100644 index 70ccfe7b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderSectionDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderSectionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderSectionDetails` struct. -/// -/// Reordered Binder section. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderSectionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Title of the Binder doc. -@property (nonatomic, readonly, copy) NSString *docTitle; - -/// Name of the Binder page/section. -@property (nonatomic, readonly, copy) NSString *binderItemName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param docTitle Title of the Binder doc. -/// @param binderItemName Name of the Binder page/section. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - docTitle:(NSString *)docTitle - binderItemName:(NSString *)binderItemName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderSectionDetails` struct. -/// -@interface DBTEAMLOGBinderReorderSectionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderSectionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderSectionDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderSectionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderSectionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderSectionDetails` -/// object. -/// -+ (DBTEAMLOGBinderReorderSectionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderSectionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderSectionType.h deleted file mode 100644 index cf2e6d1e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGBinderReorderSectionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBinderReorderSectionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BinderReorderSectionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGBinderReorderSectionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BinderReorderSectionType` struct. -/// -@interface DBTEAMLOGBinderReorderSectionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGBinderReorderSectionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGBinderReorderSectionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGBinderReorderSectionType *)instance; - -/// -/// Deserializes `DBTEAMLOGBinderReorderSectionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGBinderReorderSectionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGBinderReorderSectionType` object. -/// -+ (DBTEAMLOGBinderReorderSectionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicy.h deleted file mode 100644 index 929c4cce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCameraUploadsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicy` union. -/// -/// Policy for controlling if team members can activate camera uploads -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCameraUploadsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGCameraUploadsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGCameraUploadsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGCameraUploadsPolicyTag) { - /// (no description). - DBTEAMLOGCameraUploadsPolicyDisabled, - - /// (no description). - DBTEAMLOGCameraUploadsPolicyEnabled, - - /// (no description). - DBTEAMLOGCameraUploadsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGCameraUploadsPolicy` union. -/// -@interface DBTEAMLOGCameraUploadsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCameraUploadsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCameraUploadsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCameraUploadsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGCameraUploadsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCameraUploadsPolicy` object. -/// -+ (DBTEAMLOGCameraUploadsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicyChangedDetails.h deleted file mode 100644 index 7d06f7b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCameraUploadsPolicy; -@class DBTEAMLOGCameraUploadsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicyChangedDetails` struct. -/// -/// Changed camera uploads setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New camera uploads setting. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicy *dNewValue; - -/// Previous camera uploads setting. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New camera uploads setting. -/// @param previousValue Previous camera uploads setting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGCameraUploadsPolicy *)dNewValue - previousValue:(DBTEAMLOGCameraUploadsPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CameraUploadsPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCameraUploadsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGCameraUploadsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCameraUploadsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCameraUploadsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCameraUploadsPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGCameraUploadsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicyChangedType.h deleted file mode 100644 index 55757c51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCameraUploadsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCameraUploadsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CameraUploadsPolicyChangedType` struct. -/// -@interface DBTEAMLOGCameraUploadsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCameraUploadsPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCameraUploadsPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCameraUploadsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGCameraUploadsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCameraUploadsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCameraUploadsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGCameraUploadsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicy.h deleted file mode 100644 index da85771e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicy.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCaptureTranscriptPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CaptureTranscriptPolicy` union. -/// -/// Policy for deciding whether team users can transcription in Capture -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCaptureTranscriptPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGCaptureTranscriptPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGCaptureTranscriptPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGCaptureTranscriptPolicyTag) { - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyDefault_, - - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyDisabled, - - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyEnabled, - - /// (no description). - DBTEAMLOGCaptureTranscriptPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGCaptureTranscriptPolicy` union. -/// -@interface DBTEAMLOGCaptureTranscriptPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCaptureTranscriptPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCaptureTranscriptPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCaptureTranscriptPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGCaptureTranscriptPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCaptureTranscriptPolicy` object. -/// -+ (DBTEAMLOGCaptureTranscriptPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h deleted file mode 100644 index 31bb3314..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCaptureTranscriptPolicy; -@class DBTEAMLOGCaptureTranscriptPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CaptureTranscriptPolicyChangedDetails` struct. -/// -/// Changed Capture transcription policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGCaptureTranscriptPolicy *)dNewValue - previousValue:(DBTEAMLOGCaptureTranscriptPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CaptureTranscriptPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCaptureTranscriptPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedDetails` object. -/// -+ (DBTEAMLOGCaptureTranscriptPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedType.h deleted file mode 100644 index fb478d4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCaptureTranscriptPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCaptureTranscriptPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CaptureTranscriptPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CaptureTranscriptPolicyChangedType` struct. -/// -@interface DBTEAMLOGCaptureTranscriptPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCaptureTranscriptPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCaptureTranscriptPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGCaptureTranscriptPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGCaptureTranscriptPolicyChangedType` object. -/// -+ (DBTEAMLOGCaptureTranscriptPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCertificate.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCertificate.h deleted file mode 100644 index 5d80d903..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCertificate.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCertificate; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Certificate` struct. -/// -/// Certificate details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCertificate : NSObject - -#pragma mark - Instance fields - -/// Certificate subject. -@property (nonatomic, readonly, copy) NSString *subject; - -/// Certificate issuer. -@property (nonatomic, readonly, copy) NSString *issuer; - -/// Certificate issue date. -@property (nonatomic, readonly, copy) NSString *issueDate; - -/// Certificate expiration date. -@property (nonatomic, readonly, copy) NSString *expirationDate; - -/// Certificate serial number. -@property (nonatomic, readonly, copy) NSString *serialNumber; - -/// Certificate sha1 fingerprint. -@property (nonatomic, readonly, copy) NSString *sha1Fingerprint; - -/// Certificate common name. -@property (nonatomic, readonly, copy, nullable) NSString *commonName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param subject Certificate subject. -/// @param issuer Certificate issuer. -/// @param issueDate Certificate issue date. -/// @param expirationDate Certificate expiration date. -/// @param serialNumber Certificate serial number. -/// @param sha1Fingerprint Certificate sha1 fingerprint. -/// @param commonName Certificate common name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubject:(NSString *)subject - issuer:(NSString *)issuer - issueDate:(NSString *)issueDate - expirationDate:(NSString *)expirationDate - serialNumber:(NSString *)serialNumber - sha1Fingerprint:(NSString *)sha1Fingerprint - commonName:(nullable NSString *)commonName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param subject Certificate subject. -/// @param issuer Certificate issuer. -/// @param issueDate Certificate issue date. -/// @param expirationDate Certificate expiration date. -/// @param serialNumber Certificate serial number. -/// @param sha1Fingerprint Certificate sha1 fingerprint. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubject:(NSString *)subject - issuer:(NSString *)issuer - issueDate:(NSString *)issueDate - expirationDate:(NSString *)expirationDate - serialNumber:(NSString *)serialNumber - sha1Fingerprint:(NSString *)sha1Fingerprint; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Certificate` struct. -/// -@interface DBTEAMLOGCertificateSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCertificate` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCertificate` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCertificate` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCertificate *)instance; - -/// -/// Deserializes `DBTEAMLOGCertificate` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCertificate` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCertificate` object. -/// -+ (DBTEAMLOGCertificate *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangeLinkExpirationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangeLinkExpirationPolicy.h deleted file mode 100644 index 3e486a5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangeLinkExpirationPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangeLinkExpirationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangeLinkExpirationPolicy` union. -/// -/// Policy for deciding whether the team's default expiration days policy must -/// be enforced when an externally shared link is updated -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangeLinkExpirationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGChangeLinkExpirationPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGChangeLinkExpirationPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGChangeLinkExpirationPolicyTag) { - /// (no description). - DBTEAMLOGChangeLinkExpirationPolicyAllowed, - - /// (no description). - DBTEAMLOGChangeLinkExpirationPolicyNotAllowed, - - /// (no description). - DBTEAMLOGChangeLinkExpirationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGChangeLinkExpirationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allowed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowed; - -/// -/// Initializes union class with tag state of "not_allowed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotAllowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allowed". -/// -/// @return Whether the union's current tag state has value "allowed". -/// -- (BOOL)isAllowed; - -/// -/// Retrieves whether the union's current tag state has value "not_allowed". -/// -/// @return Whether the union's current tag state has value "not_allowed". -/// -- (BOOL)isNotAllowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGChangeLinkExpirationPolicy` union. -/// -@interface DBTEAMLOGChangeLinkExpirationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangeLinkExpirationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGChangeLinkExpirationPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangeLinkExpirationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangeLinkExpirationPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGChangeLinkExpirationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangeLinkExpirationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGChangeLinkExpirationPolicy` -/// object. -/// -+ (DBTEAMLOGChangeLinkExpirationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseAdminRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseAdminRoleDetails.h deleted file mode 100644 index 3f148443..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseAdminRoleDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseAdminRoleDetails; -@class DBTEAMLOGFedAdminRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseAdminRoleDetails` struct. -/// -/// Changed enterprise admin role. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleDetails : NSObject - -#pragma mark - Instance fields - -/// The member’s previous enterprise admin role. -@property (nonatomic, readonly) DBTEAMLOGFedAdminRole *previousValue; - -/// The member’s new enterprise admin role. -@property (nonatomic, readonly) DBTEAMLOGFedAdminRole *dNewValue; - -/// The name of the member’s team. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue The member’s previous enterprise admin role. -/// @param dNewValue The member’s new enterprise admin role. -/// @param teamName The name of the member’s team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGFedAdminRole *)previousValue - dNewValue:(DBTEAMLOGFedAdminRole *)dNewValue - teamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ChangedEnterpriseAdminRoleDetails` struct. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseAdminRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseAdminRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseAdminRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGChangedEnterpriseAdminRoleDetails` -/// object. -/// -+ (DBTEAMLOGChangedEnterpriseAdminRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseAdminRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseAdminRoleType.h deleted file mode 100644 index ae03a5e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseAdminRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseAdminRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseAdminRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ChangedEnterpriseAdminRoleType` struct. -/// -@interface DBTEAMLOGChangedEnterpriseAdminRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseAdminRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGChangedEnterpriseAdminRoleType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseAdminRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseAdminRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseAdminRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGChangedEnterpriseAdminRoleType` -/// object. -/// -+ (DBTEAMLOGChangedEnterpriseAdminRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h deleted file mode 100644 index 77f8c0a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails; -@class DBTEAMLOGFedHandshakeAction; -@class DBTEAMLOGFederationStatusChangeAdditionalInfo; -@class DBTEAMLOGTrustedTeamsRequestState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseConnectedTeamStatusDetails` struct. -/// -/// Changed enterprise-connected team status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails : NSObject - -#pragma mark - Instance fields - -/// The preformed change in the team’s connection status. -@property (nonatomic, readonly) DBTEAMLOGFedHandshakeAction *action; - -/// Additional information about the organization or team. -@property (nonatomic, readonly) DBTEAMLOGFederationStatusChangeAdditionalInfo *additionalInfo; - -/// Previous request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *previousValue; - -/// New request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param action The preformed change in the team’s connection status. -/// @param additionalInfo Additional information about the organization or team. -/// @param previousValue Previous request state. -/// @param dNewValue New request state. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAction:(DBTEAMLOGFedHandshakeAction *)action - additionalInfo:(DBTEAMLOGFederationStatusChangeAdditionalInfo *)additionalInfo - previousValue:(DBTEAMLOGTrustedTeamsRequestState *)previousValue - dNewValue:(DBTEAMLOGTrustedTeamsRequestState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `ChangedEnterpriseConnectedTeamStatusDetails` struct. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails` object. -/// -+ (DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h deleted file mode 100644 index b0f2be08..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGChangedEnterpriseConnectedTeamStatusType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ChangedEnterpriseConnectedTeamStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ChangedEnterpriseConnectedTeamStatusType` -/// struct. -/// -@interface DBTEAMLOGChangedEnterpriseConnectedTeamStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGChangedEnterpriseConnectedTeamStatusType` object. -/// -+ (DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationChangePolicyDetails.h deleted file mode 100644 index 3f40e150..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationChangePolicyDetails.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationChangePolicyDetails; -@class DBTEAMLOGClassificationPolicyEnumWrapper; -@class DBTEAMLOGClassificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationChangePolicyDetails` struct. -/// -/// Changed classification policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous classification policy. -@property (nonatomic, readonly) DBTEAMLOGClassificationPolicyEnumWrapper *previousValue; - -/// New classification policy. -@property (nonatomic, readonly) DBTEAMLOGClassificationPolicyEnumWrapper *dNewValue; - -/// Policy type. -@property (nonatomic, readonly) DBTEAMLOGClassificationType *classificationType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous classification policy. -/// @param dNewValue New classification policy. -/// @param classificationType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGClassificationPolicyEnumWrapper *)previousValue - dNewValue:(DBTEAMLOGClassificationPolicyEnumWrapper *)dNewValue - classificationType:(DBTEAMLOGClassificationType *)classificationType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationChangePolicyDetails` struct. -/// -@interface DBTEAMLOGClassificationChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGClassificationChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationChangePolicyType.h deleted file mode 100644 index 90bd04aa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationChangePolicyType` struct. -/// -@interface DBTEAMLOGClassificationChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGClassificationChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationChangePolicyType` -/// object. -/// -+ (DBTEAMLOGClassificationChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportDetails.h deleted file mode 100644 index 281cf4c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportDetails` struct. -/// -/// Created Classification report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportDetails` struct. -/// -@interface DBTEAMLOGClassificationCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationCreateReportDetails` -/// object. -/// -+ (DBTEAMLOGClassificationCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportFailDetails.h deleted file mode 100644 index 0fb0a0f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportFailDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportFailDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportFailDetails` struct. -/// -/// Couldn't create Classification report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportFailDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportFailDetails` -/// struct. -/// -@interface DBTEAMLOGClassificationCreateReportFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGClassificationCreateReportFailDetails` object. -/// -+ (DBTEAMLOGClassificationCreateReportFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportFailType.h deleted file mode 100644 index 159268a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportFailType` struct. -/// -@interface DBTEAMLOGClassificationCreateReportFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportFailType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationCreateReportFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportFailType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGClassificationCreateReportFailType` object. -/// -+ (DBTEAMLOGClassificationCreateReportFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportType.h deleted file mode 100644 index a0511d2c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ClassificationCreateReportType` struct. -/// -@interface DBTEAMLOGClassificationCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationCreateReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGClassificationCreateReportType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationCreateReportType` -/// object. -/// -+ (DBTEAMLOGClassificationCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationPolicyEnumWrapper.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationPolicyEnumWrapper.h deleted file mode 100644 index 5dd0385f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationPolicyEnumWrapper.h +++ /dev/null @@ -1,173 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationPolicyEnumWrapper; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationPolicyEnumWrapper` union. -/// -/// Policy for controlling team access to the classification feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationPolicyEnumWrapper : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGClassificationPolicyEnumWrapperTag` enum type represents the -/// possible tag states with which the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGClassificationPolicyEnumWrapperTag) { - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperDisabled, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperEnabled, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperMemberAndTeamFolders, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperTeamFolders, - - /// (no description). - DBTEAMLOGClassificationPolicyEnumWrapperOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGClassificationPolicyEnumWrapperTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "member_and_team_folders". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAndTeamFolders; - -/// -/// Initializes union class with tag state of "team_folders". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolders; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_and_team_folders". -/// -/// @return Whether the union's current tag state has value -/// "member_and_team_folders". -/// -- (BOOL)isMemberAndTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "team_folders". -/// -/// @return Whether the union's current tag state has value "team_folders". -/// -- (BOOL)isTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGClassificationPolicyEnumWrapper` -/// union. -/// -@interface DBTEAMLOGClassificationPolicyEnumWrapperSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationPolicyEnumWrapper` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationPolicyEnumWrapper *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationPolicyEnumWrapper` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationPolicyEnumWrapper` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationPolicyEnumWrapper` -/// object. -/// -+ (DBTEAMLOGClassificationPolicyEnumWrapper *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationType.h deleted file mode 100644 index ffef97f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGClassificationType.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGClassificationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ClassificationType` union. -/// -/// The type of classification (currently only personal information) -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGClassificationType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGClassificationTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGClassificationType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGClassificationTypeTag) { - /// (no description). - DBTEAMLOGClassificationTypePersonalInformation, - - /// (no description). - DBTEAMLOGClassificationTypePii, - - /// (no description). - DBTEAMLOGClassificationTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGClassificationTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "personal_information". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersonalInformation; - -/// -/// Initializes union class with tag state of "pii". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPii; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "personal_information". -/// -/// @return Whether the union's current tag state has value -/// "personal_information". -/// -- (BOOL)isPersonalInformation; - -/// -/// Retrieves whether the union's current tag state has value "pii". -/// -/// @return Whether the union's current tag state has value "pii". -/// -- (BOOL)isPii; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGClassificationType` union. -/// -@interface DBTEAMLOGClassificationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGClassificationType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGClassificationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGClassificationType *)instance; - -/// -/// Deserializes `DBTEAMLOGClassificationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGClassificationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGClassificationType` object. -/// -+ (DBTEAMLOGClassificationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCollectionShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCollectionShareDetails.h deleted file mode 100644 index 7de94665..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCollectionShareDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCollectionShareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CollectionShareDetails` struct. -/// -/// Shared album. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCollectionShareDetails : NSObject - -#pragma mark - Instance fields - -/// Album name. -@property (nonatomic, readonly, copy) NSString *albumName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param albumName Album name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAlbumName:(NSString *)albumName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CollectionShareDetails` struct. -/// -@interface DBTEAMLOGCollectionShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCollectionShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCollectionShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCollectionShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCollectionShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCollectionShareDetails` object. -/// -+ (DBTEAMLOGCollectionShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCollectionShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCollectionShareType.h deleted file mode 100644 index efc8c774..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCollectionShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCollectionShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CollectionShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCollectionShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CollectionShareType` struct. -/// -@interface DBTEAMLOGCollectionShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCollectionShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCollectionShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCollectionShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGCollectionShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCollectionShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCollectionShareType` object. -/// -+ (DBTEAMLOGCollectionShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicy.h deleted file mode 100644 index 92eb7665..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGComputerBackupPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicy` union. -/// -/// Policy for controlling team access to computer backup feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGComputerBackupPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGComputerBackupPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGComputerBackupPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGComputerBackupPolicyTag) { - /// (no description). - DBTEAMLOGComputerBackupPolicyDefault_, - - /// (no description). - DBTEAMLOGComputerBackupPolicyDisabled, - - /// (no description). - DBTEAMLOGComputerBackupPolicyEnabled, - - /// (no description). - DBTEAMLOGComputerBackupPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGComputerBackupPolicy` union. -/// -@interface DBTEAMLOGComputerBackupPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGComputerBackupPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGComputerBackupPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGComputerBackupPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGComputerBackupPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGComputerBackupPolicy` object. -/// -+ (DBTEAMLOGComputerBackupPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicyChangedDetails.h deleted file mode 100644 index 6da1cdbf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGComputerBackupPolicy; -@class DBTEAMLOGComputerBackupPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicyChangedDetails` struct. -/// -/// Changed computer backup policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New computer backup policy. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicy *dNewValue; - -/// Previous computer backup policy. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New computer backup policy. -/// @param previousValue Previous computer backup policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGComputerBackupPolicy *)dNewValue - previousValue:(DBTEAMLOGComputerBackupPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ComputerBackupPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGComputerBackupPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGComputerBackupPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGComputerBackupPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGComputerBackupPolicyChangedDetails` object. -/// -+ (DBTEAMLOGComputerBackupPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicyChangedType.h deleted file mode 100644 index a11edb34..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGComputerBackupPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGComputerBackupPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ComputerBackupPolicyChangedType` struct. -/// -@interface DBTEAMLOGComputerBackupPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGComputerBackupPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGComputerBackupPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGComputerBackupPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGComputerBackupPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGComputerBackupPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGComputerBackupPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGComputerBackupPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGConnectedTeamName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGConnectedTeamName.h deleted file mode 100644 index 4a74d59a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGConnectedTeamName.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGConnectedTeamName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ConnectedTeamName` struct. -/// -/// The name of the team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGConnectedTeamName : NSObject - -#pragma mark - Instance fields - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ConnectedTeamName` struct. -/// -@interface DBTEAMLOGConnectedTeamNameSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGConnectedTeamName` instances. -/// -/// @param instance An instance of the `DBTEAMLOGConnectedTeamName` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGConnectedTeamName` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGConnectedTeamName *)instance; - -/// -/// Deserializes `DBTEAMLOGConnectedTeamName` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGConnectedTeamName` API object. -/// -/// @return An instantiation of the `DBTEAMLOGConnectedTeamName` object. -/// -+ (DBTEAMLOGConnectedTeamName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentAdministrationPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentAdministrationPolicyChangedDetails.h deleted file mode 100644 index 71f01d07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentAdministrationPolicyChangedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentAdministrationPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentAdministrationPolicyChangedDetails` struct. -/// -/// Changed content management setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New content administration policy. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Previous content administration policy. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New content administration policy. -/// @param previousValue Previous content administration policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentAdministrationPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContentAdministrationPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContentAdministrationPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGContentAdministrationPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedDetails` object. -/// -+ (DBTEAMLOGContentAdministrationPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentAdministrationPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentAdministrationPolicyChangedType.h deleted file mode 100644 index 8bdcc699..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentAdministrationPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentAdministrationPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentAdministrationPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ContentAdministrationPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGContentAdministrationPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContentAdministrationPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContentAdministrationPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGContentAdministrationPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGContentAdministrationPolicyChangedType` object. -/// -+ (DBTEAMLOGContentAdministrationPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentPermanentDeletePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentPermanentDeletePolicy.h deleted file mode 100644 index 01df7e6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContentPermanentDeletePolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentPermanentDeletePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContentPermanentDeletePolicy` union. -/// -/// Policy for pemanent content deletion -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContentPermanentDeletePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGContentPermanentDeletePolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGContentPermanentDeletePolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGContentPermanentDeletePolicyTag) { - /// (no description). - DBTEAMLOGContentPermanentDeletePolicyDisabled, - - /// (no description). - DBTEAMLOGContentPermanentDeletePolicyEnabled, - - /// (no description). - DBTEAMLOGContentPermanentDeletePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGContentPermanentDeletePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGContentPermanentDeletePolicy` -/// union. -/// -@interface DBTEAMLOGContentPermanentDeletePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContentPermanentDeletePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGContentPermanentDeletePolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContentPermanentDeletePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContentPermanentDeletePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGContentPermanentDeletePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContentPermanentDeletePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGContentPermanentDeletePolicy` -/// object. -/// -+ (DBTEAMLOGContentPermanentDeletePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContextLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContextLogInfo.h deleted file mode 100644 index 46c3afe1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGContextLogInfo.h +++ /dev/null @@ -1,267 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContextLogInfo; -@class DBTEAMLOGNonTeamMemberLogInfo; -@class DBTEAMLOGTeamLogInfo; -@class DBTEAMLOGTeamMemberLogInfo; -@class DBTEAMLOGTrustedNonTeamMemberLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ContextLogInfo` union. -/// -/// The primary entity on which the action was done. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGContextLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGContextLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGContextLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGContextLogInfoTag) { - /// Anonymous context. - DBTEAMLOGContextLogInfoAnonymous, - - /// Action was done on behalf of a non team member. - DBTEAMLOGContextLogInfoNonTeamMember, - - /// Action was done on behalf of a team that's part of an organization. - DBTEAMLOGContextLogInfoOrganizationTeam, - - /// Action was done on behalf of the team. - DBTEAMLOGContextLogInfoTeam, - - /// Action was done on behalf of a team member. - DBTEAMLOGContextLogInfoTeamMember, - - /// Action was done on behalf of a trusted non team member. - DBTEAMLOGContextLogInfoTrustedNonTeamMember, - - /// (no description). - DBTEAMLOGContextLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGContextLogInfoTag tag; - -/// Action was done on behalf of a non team member. @note Ensure the -/// `isNonTeamMember` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNonTeamMemberLogInfo *nonTeamMember; - -/// Action was done on behalf of a team that's part of an organization. @note -/// Ensure the `isOrganizationTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamLogInfo *organizationTeam; - -/// Action was done on behalf of a team member. @note Ensure the `isTeamMember` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMemberLogInfo *teamMember; - -/// Action was done on behalf of a trusted non team member. @note Ensure the -/// `isTrustedNonTeamMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberLogInfo *trustedNonTeamMember; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "anonymous". -/// -/// Description of the "anonymous" tag state: Anonymous context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnonymous; - -/// -/// Initializes union class with tag state of "non_team_member". -/// -/// Description of the "non_team_member" tag state: Action was done on behalf of -/// a non team member. -/// -/// @param nonTeamMember Action was done on behalf of a non team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNonTeamMember:(DBTEAMLOGNonTeamMemberLogInfo *)nonTeamMember; - -/// -/// Initializes union class with tag state of "organization_team". -/// -/// Description of the "organization_team" tag state: Action was done on behalf -/// of a team that's part of an organization. -/// -/// @param organizationTeam Action was done on behalf of a team that's part of -/// an organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizationTeam:(DBTEAMLOGTeamLogInfo *)organizationTeam; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Action was done on behalf of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "team_member". -/// -/// Description of the "team_member" tag state: Action was done on behalf of a -/// team member. -/// -/// @param teamMember Action was done on behalf of a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMember:(DBTEAMLOGTeamMemberLogInfo *)teamMember; - -/// -/// Initializes union class with tag state of "trusted_non_team_member". -/// -/// Description of the "trusted_non_team_member" tag state: Action was done on -/// behalf of a trusted non team member. -/// -/// @param trustedNonTeamMember Action was done on behalf of a trusted non team -/// member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedNonTeamMember:(DBTEAMLOGTrustedNonTeamMemberLogInfo *)trustedNonTeamMember; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "anonymous". -/// -/// @return Whether the union's current tag state has value "anonymous". -/// -- (BOOL)isAnonymous; - -/// -/// Retrieves whether the union's current tag state has value "non_team_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `nonTeamMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "non_team_member". -/// -- (BOOL)isNonTeamMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "organization_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizationTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "organization_team". -/// -- (BOOL)isOrganizationTeam; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "team_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_member". -/// -- (BOOL)isTeamMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "trusted_non_team_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `trustedNonTeamMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "trusted_non_team_member". -/// -- (BOOL)isTrustedNonTeamMember; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGContextLogInfo` union. -/// -@interface DBTEAMLOGContextLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGContextLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGContextLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGContextLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGContextLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGContextLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGContextLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGContextLogInfo` object. -/// -+ (DBTEAMLOGContextLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateFolderDetails.h deleted file mode 100644 index c7d5b137..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateFolderDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderDetails` struct. -/// -/// Created folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateFolderDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderDetails` struct. -/// -@interface DBTEAMLOGCreateFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateFolderDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateFolderDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateFolderDetails` object. -/// -+ (DBTEAMLOGCreateFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateFolderType.h deleted file mode 100644 index 1cc2c785..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateFolderType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateFolderType` struct. -/// -@interface DBTEAMLOGCreateFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateFolderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateFolderType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateFolderType` object. -/// -+ (DBTEAMLOGCreateFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateTeamInviteLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateTeamInviteLinkDetails.h deleted file mode 100644 index ad68b43a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateTeamInviteLinkDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateTeamInviteLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateTeamInviteLinkDetails` struct. -/// -/// Created team invite link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateTeamInviteLinkDetails : NSObject - -#pragma mark - Instance fields - -/// The invite link url that was created. -@property (nonatomic, readonly, copy) NSString *linkUrl; - -/// The expiration date of the invite link. -@property (nonatomic, readonly, copy) NSString *expiryDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkUrl The invite link url that was created. -/// @param expiryDate The expiration date of the invite link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkUrl:(NSString *)linkUrl expiryDate:(NSString *)expiryDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateTeamInviteLinkDetails` struct. -/// -@interface DBTEAMLOGCreateTeamInviteLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateTeamInviteLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateTeamInviteLinkDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateTeamInviteLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateTeamInviteLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateTeamInviteLinkDetails` -/// object. -/// -+ (DBTEAMLOGCreateTeamInviteLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateTeamInviteLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateTeamInviteLinkType.h deleted file mode 100644 index 63fa7e59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGCreateTeamInviteLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCreateTeamInviteLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CreateTeamInviteLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGCreateTeamInviteLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `CreateTeamInviteLinkType` struct. -/// -@interface DBTEAMLOGCreateTeamInviteLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGCreateTeamInviteLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGCreateTeamInviteLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGCreateTeamInviteLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGCreateTeamInviteLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGCreateTeamInviteLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGCreateTeamInviteLinkType` object. -/// -+ (DBTEAMLOGCreateTeamInviteLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h deleted file mode 100644 index 720497f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionChangePolicyDetails; -@class DBTEAMLOGPlacementRestriction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionChangePolicyDetails` struct. -/// -/// Set restrictions on data center locations where team data resides. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous placement restriction. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestriction *previousValue; - -/// New placement restriction. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestriction *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous placement restriction. -/// @param dNewValue New placement restriction. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGPlacementRestriction *)previousValue - dNewValue:(DBTEAMLOGPlacementRestriction *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataPlacementRestrictionChangePolicyDetails` struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyDetails` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyType.h deleted file mode 100644 index 8799c6fb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DataPlacementRestrictionChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionChangePolicyType` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h deleted file mode 100644 index 77c54d67..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails; -@class DBTEAMLOGPlacementRestriction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionSatisfyPolicyDetails` struct. -/// -/// Completed restrictions on data center locations where team data resides. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Placement restriction. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestriction *placementRestriction; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param placementRestriction Placement restriction. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlacementRestriction:(DBTEAMLOGPlacementRestriction *)placementRestriction; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataPlacementRestrictionSatisfyPolicyDetails` struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h deleted file mode 100644 index e46f884c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataPlacementRestrictionSatisfyPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DataPlacementRestrictionSatisfyPolicyType` -/// struct. -/// -@interface DBTEAMLOGDataPlacementRestrictionSatisfyPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType` object. -/// -+ (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h deleted file mode 100644 index f4e867e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestSuccessfulDetails` struct. -/// -/// Requested data residency migration for team data. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestSuccessfulDetails` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h deleted file mode 100644 index 47216db1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestSuccessfulType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestSuccessfulType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestSuccessfulType` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestSuccessfulTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestSuccessfulType` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h deleted file mode 100644 index c51e9e3e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestUnsuccessfulDetails` struct. -/// -/// Request for data residency migration for team data has failed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestUnsuccessfulDetails` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h deleted file mode 100644 index b816a381..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DataResidencyMigrationRequestUnsuccessfulType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DataResidencyMigrationRequestUnsuccessfulType` struct. -/// -@interface DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *)instance; - -/// -/// Deserializes `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType` object. -/// -+ (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDefaultLinkExpirationDaysPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDefaultLinkExpirationDaysPolicy.h deleted file mode 100644 index af31c5bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDefaultLinkExpirationDaysPolicy.h +++ /dev/null @@ -1,240 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDefaultLinkExpirationDaysPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DefaultLinkExpirationDaysPolicy` union. -/// -/// Policy for the default number of days until an externally shared link -/// expires -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDefaultLinkExpirationDaysPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDefaultLinkExpirationDaysPolicyTag` enum type represents the -/// possible tag states with which the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDefaultLinkExpirationDaysPolicyTag) { - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay1, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay180, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay3, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay30, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay7, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyDay90, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyNone, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyYear1, - - /// (no description). - DBTEAMLOGDefaultLinkExpirationDaysPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDefaultLinkExpirationDaysPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "day_1". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay1; - -/// -/// Initializes union class with tag state of "day_180". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay180; - -/// -/// Initializes union class with tag state of "day_3". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay3; - -/// -/// Initializes union class with tag state of "day_30". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay30; - -/// -/// Initializes union class with tag state of "day_7". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay7; - -/// -/// Initializes union class with tag state of "day_90". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDay90; - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "year_1". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithYear1; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "day_1". -/// -/// @return Whether the union's current tag state has value "day_1". -/// -- (BOOL)isDay1; - -/// -/// Retrieves whether the union's current tag state has value "day_180". -/// -/// @return Whether the union's current tag state has value "day_180". -/// -- (BOOL)isDay180; - -/// -/// Retrieves whether the union's current tag state has value "day_3". -/// -/// @return Whether the union's current tag state has value "day_3". -/// -- (BOOL)isDay3; - -/// -/// Retrieves whether the union's current tag state has value "day_30". -/// -/// @return Whether the union's current tag state has value "day_30". -/// -- (BOOL)isDay30; - -/// -/// Retrieves whether the union's current tag state has value "day_7". -/// -/// @return Whether the union's current tag state has value "day_7". -/// -- (BOOL)isDay7; - -/// -/// Retrieves whether the union's current tag state has value "day_90". -/// -/// @return Whether the union's current tag state has value "day_90". -/// -- (BOOL)isDay90; - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "year_1". -/// -/// @return Whether the union's current tag state has value "year_1". -/// -- (BOOL)isYear1; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDefaultLinkExpirationDaysPolicy` -/// union. -/// -@interface DBTEAMLOGDefaultLinkExpirationDaysPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDefaultLinkExpirationDaysPolicy` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDefaultLinkExpirationDaysPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDefaultLinkExpirationDaysPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDefaultLinkExpirationDaysPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDefaultLinkExpirationDaysPolicy` -/// object. -/// -+ (DBTEAMLOGDefaultLinkExpirationDaysPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeleteTeamInviteLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeleteTeamInviteLinkDetails.h deleted file mode 100644 index 8355c746..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeleteTeamInviteLinkDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeleteTeamInviteLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteTeamInviteLinkDetails` struct. -/// -/// Deleted team invite link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkDetails : NSObject - -#pragma mark - Instance fields - -/// The invite link url that was deleted. -@property (nonatomic, readonly, copy) NSString *linkUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkUrl The invite link url that was deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkUrl:(NSString *)linkUrl; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteTeamInviteLinkDetails` struct. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeleteTeamInviteLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeleteTeamInviteLinkDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeleteTeamInviteLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeleteTeamInviteLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeleteTeamInviteLinkDetails` -/// object. -/// -+ (DBTEAMLOGDeleteTeamInviteLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeleteTeamInviteLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeleteTeamInviteLinkType.h deleted file mode 100644 index 51b93b04..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeleteTeamInviteLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeleteTeamInviteLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeleteTeamInviteLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeleteTeamInviteLinkType` struct. -/// -@interface DBTEAMLOGDeleteTeamInviteLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeleteTeamInviteLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeleteTeamInviteLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeleteTeamInviteLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeleteTeamInviteLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeleteTeamInviteLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeleteTeamInviteLinkType` object. -/// -+ (DBTEAMLOGDeleteTeamInviteLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDesktopDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDesktopDeviceSessionLogInfo.h deleted file mode 100644 index d58166fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDesktopDeviceSessionLogInfo.h +++ /dev/null @@ -1,129 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMDesktopPlatform; -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGDesktopSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopDeviceSessionLogInfo` struct. -/// -/// Information about linked Dropbox desktop client sessions -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDesktopDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Desktop session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGDesktopSessionLogInfo *sessionInfo; - -/// Name of the hosting desktop. -@property (nonatomic, readonly, copy) NSString *hostName; - -/// The Dropbox desktop client type. -@property (nonatomic, readonly) DBTEAMDesktopPlatform *clientType; - -/// The Dropbox client version. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// Information on the hosting platform. -@property (nonatomic, readonly, copy) NSString *platform; - -/// Whether itu2019s possible to delete all of the account files upon unlinking. -@property (nonatomic, readonly) NSNumber *isDeleteOnUnlinkSupported; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether itu2019s possible to delete all of -/// the account files upon unlinking. -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Desktop session unique id. -/// @param clientVersion The Dropbox client version. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported - ipAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGDesktopSessionLogInfo *)sessionInfo - clientVersion:(nullable NSString *)clientVersion; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param hostName Name of the hosting desktop. -/// @param clientType The Dropbox desktop client type. -/// @param platform Information on the hosting platform. -/// @param isDeleteOnUnlinkSupported Whether itu2019s possible to delete all of -/// the account files upon unlinking. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHostName:(NSString *)hostName - clientType:(DBTEAMDesktopPlatform *)clientType - platform:(NSString *)platform - isDeleteOnUnlinkSupported:(NSNumber *)isDeleteOnUnlinkSupported; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DesktopDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGDesktopDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDesktopDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDesktopDeviceSessionLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDesktopDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDesktopDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDesktopDeviceSessionLogInfo` -/// object. -/// -+ (DBTEAMLOGDesktopDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDesktopSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDesktopSessionLogInfo.h deleted file mode 100644 index 895ccac8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDesktopSessionLogInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGSessionLogInfo.h" - -@class DBTEAMLOGDesktopSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DesktopSessionLogInfo` struct. -/// -/// Desktop session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDesktopSessionLogInfo : DBTEAMLOGSessionLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DesktopSessionLogInfo` struct. -/// -@interface DBTEAMLOGDesktopSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDesktopSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDesktopSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDesktopSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDesktopSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDesktopSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDesktopSessionLogInfo` object. -/// -+ (DBTEAMLOGDesktopSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsAddExceptionDetails.h deleted file mode 100644 index bf6a7bd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsAddExceptionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsAddExceptionDetails` struct. -/// -/// Added members to device approvals exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsAddExceptionDetails` struct. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsAddExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsAddExceptionType.h deleted file mode 100644 index 1c51aac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsAddExceptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsAddExceptionType` struct. -/// -@interface DBTEAMLOGDeviceApprovalsAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsAddExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceApprovalsAddExceptionType` -/// object. -/// -+ (DBTEAMLOGDeviceApprovalsAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h deleted file mode 100644 index 4dfcbbfd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails; -@class DBTEAMLOGDeviceApprovalsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeDesktopPolicyDetails` struct. -/// -/// Set/removed limit on number of computers member can link to team Dropbox -/// account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New desktop device approvals policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *dNewValue; - -/// Previous desktop device approvals policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New desktop device approvals policy. Might be missing due -/// to historical data gap. -/// @param previousValue Previous desktop device approvals policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeDesktopPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h deleted file mode 100644 index e4eb3167..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeDesktopPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeDesktopPolicyType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeDesktopPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h deleted file mode 100644 index 5f570b07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails; -@class DBTEAMLOGDeviceApprovalsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeMobilePolicyDetails` struct. -/// -/// Set/removed limit on number of mobile devices member can link to team -/// Dropbox account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New mobile device approvals policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *dNewValue; - -/// Previous mobile device approvals policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceApprovalsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New mobile device approvals policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous mobile device approvals policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDeviceApprovalsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeMobilePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h deleted file mode 100644 index 9ec568c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeMobilePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeMobilePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeMobilePolicyType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeMobilePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeMobilePolicyType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h deleted file mode 100644 index f6253205..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeOverageActionDetails; -@class DBTEAMPOLICIESRolloutMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeOverageActionDetails` struct. -/// -/// Changed device approvals setting when member is over limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionDetails : NSObject - -#pragma mark - Instance fields - -/// New over the limits policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESRolloutMethod *dNewValue; - -/// Previous over the limit policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESRolloutMethod *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New over the limits policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous over the limit policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMPOLICIESRolloutMethod *)dNewValue - previousValue:(nullable DBTEAMPOLICIESRolloutMethod *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeOverageActionDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionType.h deleted file mode 100644 index 1c7817a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeOverageActionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeOverageActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeOverageActionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeOverageActionType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeOverageActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeOverageActionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeOverageActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeOverageActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeOverageActionType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeOverageActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h deleted file mode 100644 index 356fba6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails; -@class DBTEAMLOGDeviceUnlinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeUnlinkActionDetails` struct. -/// -/// Changed device approvals setting when member unlinks approved device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails : NSObject - -#pragma mark - Instance fields - -/// New device unlink policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceUnlinkPolicy *dNewValue; - -/// Previous device unlink policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceUnlinkPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New device unlink policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous device unlink policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGDeviceUnlinkPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDeviceUnlinkPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeUnlinkActionDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h deleted file mode 100644 index c0b6059a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsChangeUnlinkActionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsChangeUnlinkActionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsChangeUnlinkActionType` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsChangeUnlinkActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsChangeUnlinkActionType` object. -/// -+ (DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsPolicy.h deleted file mode 100644 index dc5decba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDeviceApprovalsPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGDeviceApprovalsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDeviceApprovalsPolicyTag) { - /// (no description). - DBTEAMLOGDeviceApprovalsPolicyLimited, - - /// (no description). - DBTEAMLOGDeviceApprovalsPolicyUnlimited, - - /// (no description). - DBTEAMLOGDeviceApprovalsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "limited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimited; - -/// -/// Initializes union class with tag state of "unlimited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "limited". -/// -/// @return Whether the union's current tag state has value "limited". -/// -- (BOOL)isLimited; - -/// -/// Retrieves whether the union's current tag state has value "unlimited". -/// -/// @return Whether the union's current tag state has value "unlimited". -/// -- (BOOL)isUnlimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDeviceApprovalsPolicy` union. -/// -@interface DBTEAMLOGDeviceApprovalsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceApprovalsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceApprovalsPolicy` object. -/// -+ (DBTEAMLOGDeviceApprovalsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h deleted file mode 100644 index 3db84e7b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsRemoveExceptionDetails` struct. -/// -/// Removed members from device approvals exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsRemoveExceptionDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionType.h deleted file mode 100644 index c922e8f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceApprovalsRemoveExceptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceApprovalsRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceApprovalsRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceApprovalsRemoveExceptionType` struct. -/// -@interface DBTEAMLOGDeviceApprovalsRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceApprovalsRemoveExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceApprovalsRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceApprovalsRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceApprovalsRemoveExceptionType` object. -/// -+ (DBTEAMLOGDeviceApprovalsRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpDesktopDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpDesktopDetails.h deleted file mode 100644 index a95287be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpDesktopDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpDesktopDetails; -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpDesktopDetails` struct. -/// -/// Changed IP address associated with active desktop session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDeviceSessionLogInfo *deviceSessionInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceSessionInfo Device's session logged information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionInfo:(DBTEAMLOGDeviceSessionLogInfo *)deviceSessionInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpDesktopDetails` struct. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpDesktopDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpDesktopDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpDesktopDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpDesktopDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpDesktopDetails` -/// object. -/// -+ (DBTEAMLOGDeviceChangeIpDesktopDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpDesktopType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpDesktopType.h deleted file mode 100644 index e31e95f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpDesktopType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpDesktopType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpDesktopType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpDesktopType` struct. -/// -@interface DBTEAMLOGDeviceChangeIpDesktopTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpDesktopType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpDesktopType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpDesktopType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpDesktopType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpDesktopType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpDesktopType` object. -/// -+ (DBTEAMLOGDeviceChangeIpDesktopType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpMobileDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpMobileDetails.h deleted file mode 100644 index f6c4b5dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpMobileDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpMobileDetails; -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpMobileDetails` struct. -/// -/// Changed IP address associated with active mobile session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpMobileDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceSessionLogInfo *deviceSessionInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceSessionInfo Device's session logged information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionInfo:(nullable DBTEAMLOGDeviceSessionLogInfo *)deviceSessionInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpMobileDetails` struct. -/// -@interface DBTEAMLOGDeviceChangeIpMobileDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpMobileDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpMobileDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpMobileDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpMobileDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpMobileDetails` -/// object. -/// -+ (DBTEAMLOGDeviceChangeIpMobileDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpMobileType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpMobileType.h deleted file mode 100644 index 864a7d23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpMobileType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpMobileType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpMobileType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpMobileType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpMobileType` struct. -/// -@interface DBTEAMLOGDeviceChangeIpMobileTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpMobileType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpMobileType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpMobileType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpMobileType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpMobileType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpMobileType` object. -/// -+ (DBTEAMLOGDeviceChangeIpMobileType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpWebDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpWebDetails.h deleted file mode 100644 index dd758118..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpWebDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpWebDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpWebDetails` struct. -/// -/// Changed IP address associated with active web session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpWebDetails : NSObject - -#pragma mark - Instance fields - -/// Web browser name. -@property (nonatomic, readonly, copy) NSString *userAgent; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userAgent Web browser name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAgent:(NSString *)userAgent; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpWebDetails` struct. -/// -@interface DBTEAMLOGDeviceChangeIpWebDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpWebDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpWebDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpWebDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpWebDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpWebDetails` object. -/// -+ (DBTEAMLOGDeviceChangeIpWebDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpWebType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpWebType.h deleted file mode 100644 index c152b942..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceChangeIpWebType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceChangeIpWebType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceChangeIpWebType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceChangeIpWebType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceChangeIpWebType` struct. -/// -@interface DBTEAMLOGDeviceChangeIpWebTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceChangeIpWebType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceChangeIpWebType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceChangeIpWebType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceChangeIpWebType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceChangeIpWebType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceChangeIpWebType` object. -/// -+ (DBTEAMLOGDeviceChangeIpWebType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h deleted file mode 100644 index 29b4d764..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkFailDetails; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkFailDetails` struct. -/// -/// Failed to delete all files from unlinked device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailDetails : NSObject - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// The number of times that remote file deletion failed. -@property (nonatomic, readonly) NSNumber *numFailures; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param numFailures The number of times that remote file deletion failed. -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumFailures:(NSNumber *)numFailures - sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param numFailures The number of times that remote file deletion failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumFailures:(NSNumber *)numFailures; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkFailDetails` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceDeleteOnUnlinkFailDetails` -/// object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailType.h deleted file mode 100644 index 07f98654..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkFailType` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceDeleteOnUnlinkFailType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceDeleteOnUnlinkFailType` -/// object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h deleted file mode 100644 index 25d3e76b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkSuccessDetails` struct. -/// -/// Deleted all files from unlinked device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkSuccessDetails` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails` object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h deleted file mode 100644 index 7691b287..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceDeleteOnUnlinkSuccessType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceDeleteOnUnlinkSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceDeleteOnUnlinkSuccessType` struct. -/// -@interface DBTEAMLOGDeviceDeleteOnUnlinkSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceDeleteOnUnlinkSuccessType` -/// object. -/// -+ (DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkFailDetails.h deleted file mode 100644 index 512a743f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkFailDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkFailDetails; -@class DBTEAMLOGDeviceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkFailDetails` struct. -/// -/// Failed to link device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkFailDetails : NSObject - -#pragma mark - Instance fields - -/// IP address. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *ipAddress; - -/// A description of the device used while user approval blocked. -@property (nonatomic, readonly) DBTEAMLOGDeviceType *deviceType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceType A description of the device used while user approval -/// blocked. -/// @param ipAddress IP address. Might be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceType:(DBTEAMLOGDeviceType *)deviceType ipAddress:(nullable NSString *)ipAddress; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deviceType A description of the device used while user approval -/// blocked. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceType:(DBTEAMLOGDeviceType *)deviceType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkFailDetails` struct. -/// -@interface DBTEAMLOGDeviceLinkFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkFailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkFailDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkFailDetails` object. -/// -+ (DBTEAMLOGDeviceLinkFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkFailType.h deleted file mode 100644 index d6610fdc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkFailType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkFailType` struct. -/// -@interface DBTEAMLOGDeviceLinkFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkFailType` object. -/// -+ (DBTEAMLOGDeviceLinkFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkSuccessDetails.h deleted file mode 100644 index f7adb097..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkSuccessDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkSuccessDetails; -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkSuccessDetails` struct. -/// -/// Linked device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly, nullable) DBTEAMLOGDeviceSessionLogInfo *deviceSessionInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceSessionInfo Device's session logged information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionInfo:(nullable DBTEAMLOGDeviceSessionLogInfo *)deviceSessionInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkSuccessDetails` struct. -/// -@interface DBTEAMLOGDeviceLinkSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkSuccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkSuccessDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkSuccessDetails` object. -/// -+ (DBTEAMLOGDeviceLinkSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkSuccessType.h deleted file mode 100644 index 2c2dbd7f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceLinkSuccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceLinkSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceLinkSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceLinkSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceLinkSuccessType` struct. -/// -@interface DBTEAMLOGDeviceLinkSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceLinkSuccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceLinkSuccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceLinkSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceLinkSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceLinkSuccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceLinkSuccessType` object. -/// -+ (DBTEAMLOGDeviceLinkSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementDisabledDetails.h deleted file mode 100644 index 52d2b3e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementDisabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementDisabledDetails` struct. -/// -/// Disabled device management. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementDisabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementDisabledDetails` struct. -/// -@interface DBTEAMLOGDeviceManagementDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementDisabledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceManagementDisabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementDisabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementDisabledDetails` -/// object. -/// -+ (DBTEAMLOGDeviceManagementDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementDisabledType.h deleted file mode 100644 index 354fc0a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementDisabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementDisabledType` struct. -/// -@interface DBTEAMLOGDeviceManagementDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementDisabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceManagementDisabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementDisabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementDisabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementDisabledType` -/// object. -/// -+ (DBTEAMLOGDeviceManagementDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementEnabledDetails.h deleted file mode 100644 index 5839affe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementEnabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementEnabledDetails` struct. -/// -/// Enabled device management. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementEnabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementEnabledDetails` struct. -/// -@interface DBTEAMLOGDeviceManagementEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementEnabledDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceManagementEnabledDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementEnabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementEnabledDetails` -/// object. -/// -+ (DBTEAMLOGDeviceManagementEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementEnabledType.h deleted file mode 100644 index 379eaa70..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceManagementEnabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceManagementEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceManagementEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceManagementEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceManagementEnabledType` struct. -/// -@interface DBTEAMLOGDeviceManagementEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceManagementEnabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceManagementEnabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceManagementEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceManagementEnabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceManagementEnabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceManagementEnabledType` -/// object. -/// -+ (DBTEAMLOGDeviceManagementEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSessionLogInfo.h deleted file mode 100644 index fdbd48de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSessionLogInfo.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSessionLogInfo` struct. -/// -/// Device's session logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceSessionLogInfo : NSObject - -#pragma mark - Instance fields - -/// The IP address of the last activity from this session. -@property (nonatomic, readonly, copy, nullable) NSString *ipAddress; - -/// The time this session was created. -@property (nonatomic, readonly, nullable) NSDate *created; - -/// The time of the last activity from this session. -@property (nonatomic, readonly, nullable) NSDate *updated; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceSessionLogInfo` object. -/// -+ (DBTEAMLOGDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h deleted file mode 100644 index 0b0aa2f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGBackupStatus; -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGDeviceSyncBackupStatusChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSyncBackupStatusChangedDetails` struct. -/// -/// Enabled/disabled backup for computer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSessionInfo; - -/// Previous status of computer backup on the device. -@property (nonatomic, readonly) DBTEAMLOGBackupStatus *previousValue; - -/// Next status of computer backup on the device. -@property (nonatomic, readonly) DBTEAMLOGBackupStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param desktopDeviceSessionInfo Device's session logged information. -/// @param previousValue Previous status of computer backup on the device. -/// @param dNewValue Next status of computer backup on the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSessionInfo:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo - previousValue:(DBTEAMLOGBackupStatus *)previousValue - dNewValue:(DBTEAMLOGBackupStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSyncBackupStatusChangedDetails` -/// struct. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceSyncBackupStatusChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedDetails` object. -/// -+ (DBTEAMLOGDeviceSyncBackupStatusChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedType.h deleted file mode 100644 index 84b657ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceSyncBackupStatusChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceSyncBackupStatusChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceSyncBackupStatusChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceSyncBackupStatusChangedType` struct. -/// -@interface DBTEAMLOGDeviceSyncBackupStatusChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceSyncBackupStatusChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceSyncBackupStatusChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceSyncBackupStatusChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceSyncBackupStatusChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceSyncBackupStatusChangedType` -/// object. -/// -+ (DBTEAMLOGDeviceSyncBackupStatusChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceType.h deleted file mode 100644 index 52768024..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceType.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDeviceTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGDeviceType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDeviceTypeTag) { - /// (no description). - DBTEAMLOGDeviceTypeDesktop, - - /// (no description). - DBTEAMLOGDeviceTypeMobile, - - /// (no description). - DBTEAMLOGDeviceTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDeviceTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "desktop". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktop; - -/// -/// Initializes union class with tag state of "mobile". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobile; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "desktop". -/// -/// @return Whether the union's current tag state has value "desktop". -/// -- (BOOL)isDesktop; - -/// -/// Retrieves whether the union's current tag state has value "mobile". -/// -/// @return Whether the union's current tag state has value "mobile". -/// -- (BOOL)isMobile; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDeviceType` union. -/// -@interface DBTEAMLOGDeviceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceType` object. -/// -+ (DBTEAMLOGDeviceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkDetails.h deleted file mode 100644 index 027fd455..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceUnlinkDetails; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceUnlinkDetails` struct. -/// -/// Disconnected device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceUnlinkDetails : NSObject - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// True if the user requested to delete data after device unlink, false -/// otherwise. -@property (nonatomic, readonly) NSNumber *deleteData; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deleteData True if the user requested to delete data after device -/// unlink, false otherwise. -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteData:(NSNumber *)deleteData - sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deleteData True if the user requested to delete data after device -/// unlink, false otherwise. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteData:(NSNumber *)deleteData; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceUnlinkDetails` struct. -/// -@interface DBTEAMLOGDeviceUnlinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceUnlinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceUnlinkDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceUnlinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceUnlinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceUnlinkDetails` object. -/// -+ (DBTEAMLOGDeviceUnlinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkPolicy.h deleted file mode 100644 index 76869218..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkPolicy.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceUnlinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceUnlinkPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceUnlinkPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDeviceUnlinkPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGDeviceUnlinkPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDeviceUnlinkPolicyTag) { - /// (no description). - DBTEAMLOGDeviceUnlinkPolicyKeep, - - /// (no description). - DBTEAMLOGDeviceUnlinkPolicyRemove, - - /// (no description). - DBTEAMLOGDeviceUnlinkPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDeviceUnlinkPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "keep". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithKeep; - -/// -/// Initializes union class with tag state of "remove". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemove; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "keep". -/// -/// @return Whether the union's current tag state has value "keep". -/// -- (BOOL)isKeep; - -/// -/// Retrieves whether the union's current tag state has value "remove". -/// -/// @return Whether the union's current tag state has value "remove". -/// -- (BOOL)isRemove; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDeviceUnlinkPolicy` union. -/// -@interface DBTEAMLOGDeviceUnlinkPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceUnlinkPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceUnlinkPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceUnlinkPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceUnlinkPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceUnlinkPolicy` object. -/// -+ (DBTEAMLOGDeviceUnlinkPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkType.h deleted file mode 100644 index 26fd661d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDeviceUnlinkType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDeviceUnlinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DeviceUnlinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDeviceUnlinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DeviceUnlinkType` struct. -/// -@interface DBTEAMLOGDeviceUnlinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDeviceUnlinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDeviceUnlinkType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDeviceUnlinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGDeviceUnlinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDeviceUnlinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDeviceUnlinkType` object. -/// -+ (DBTEAMLOGDeviceUnlinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h deleted file mode 100644 index 6b221a8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsAddMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsAddMembersDetails` struct. -/// -/// Added members to directory restrictions list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsAddMembersDetails` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsAddMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersDetails` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsAddMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersType.h deleted file mode 100644 index 63caa3b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsAddMembersType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsAddMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsAddMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsAddMembersType` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsAddMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsAddMembersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsAddMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsAddMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsAddMembersType` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsAddMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h deleted file mode 100644 index 4ad62605..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsRemoveMembersDetails` struct. -/// -/// Removed members from directory restrictions list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsRemoveMembersDetails` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h deleted file mode 100644 index 1ee2af2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDirectoryRestrictionsRemoveMembersType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DirectoryRestrictionsRemoveMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DirectoryRestrictionsRemoveMembersType` -/// struct. -/// -@interface DBTEAMLOGDirectoryRestrictionsRemoveMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDirectoryRestrictionsRemoveMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDirectoryRestrictionsRemoveMembersType` object. -/// -+ (DBTEAMLOGDirectoryRestrictionsRemoveMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDisabledDomainInvitesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDisabledDomainInvitesDetails.h deleted file mode 100644 index 88860241..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDisabledDomainInvitesDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDisabledDomainInvitesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DisabledDomainInvitesDetails` struct. -/// -/// Disabled domain invites. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDisabledDomainInvitesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DisabledDomainInvitesDetails` struct. -/// -@interface DBTEAMLOGDisabledDomainInvitesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDisabledDomainInvitesDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDisabledDomainInvitesDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDisabledDomainInvitesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDisabledDomainInvitesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDisabledDomainInvitesDetails` -/// object. -/// -+ (DBTEAMLOGDisabledDomainInvitesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDisabledDomainInvitesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDisabledDomainInvitesType.h deleted file mode 100644 index b1261c0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDisabledDomainInvitesType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDisabledDomainInvitesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DisabledDomainInvitesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDisabledDomainInvitesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DisabledDomainInvitesType` struct. -/// -@interface DBTEAMLOGDisabledDomainInvitesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDisabledDomainInvitesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDisabledDomainInvitesType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDisabledDomainInvitesType *)instance; - -/// -/// Deserializes `DBTEAMLOGDisabledDomainInvitesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDisabledDomainInvitesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDisabledDomainInvitesType` object. -/// -+ (DBTEAMLOGDisabledDomainInvitesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDispositionActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDispositionActionType.h deleted file mode 100644 index 389e435e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDispositionActionType.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDispositionActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DispositionActionType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDispositionActionType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDispositionActionTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGDispositionActionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDispositionActionTypeTag) { - /// (no description). - DBTEAMLOGDispositionActionTypeAutomaticDelete, - - /// (no description). - DBTEAMLOGDispositionActionTypeAutomaticPermanentlyDelete, - - /// (no description). - DBTEAMLOGDispositionActionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDispositionActionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "automatic_delete". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutomaticDelete; - -/// -/// Initializes union class with tag state of "automatic_permanently_delete". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutomaticPermanentlyDelete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "automatic_delete". -/// -/// @return Whether the union's current tag state has value "automatic_delete". -/// -- (BOOL)isAutomaticDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "automatic_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "automatic_permanently_delete". -/// -- (BOOL)isAutomaticPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDispositionActionType` union. -/// -@interface DBTEAMLOGDispositionActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDispositionActionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDispositionActionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDispositionActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDispositionActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGDispositionActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDispositionActionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDispositionActionType` object. -/// -+ (DBTEAMLOGDispositionActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h deleted file mode 100644 index 431d79d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesApproveRequestToJoinTeamDetails` struct. -/// -/// Approved user's request to join team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesApproveRequestToJoinTeamDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails` object. -/// -+ (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h deleted file mode 100644 index 3d898851..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesApproveRequestToJoinTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesApproveRequestToJoinTeamType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesApproveRequestToJoinTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType` object. -/// -+ (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h deleted file mode 100644 index 960b49df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesDeclineRequestToJoinTeamDetails` struct. -/// -/// Declined user's request to join team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesDeclineRequestToJoinTeamDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails` object. -/// -+ (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h deleted file mode 100644 index e8823f58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesDeclineRequestToJoinTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesDeclineRequestToJoinTeamType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType` object. -/// -+ (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h deleted file mode 100644 index a70362c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesEmailExistingUsersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesEmailExistingUsersDetails` struct. -/// -/// Sent domain invites to existing domain accounts. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersDetails : NSObject - -#pragma mark - Instance fields - -/// Domain names. -@property (nonatomic, readonly, copy) NSString *domainName; - -/// Number of recipients. -@property (nonatomic, readonly) NSNumber *numRecipients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain names. -/// @param numRecipients Number of recipients. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName numRecipients:(NSNumber *)numRecipients; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesEmailExistingUsersDetails` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesEmailExistingUsersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersDetails` object. -/// -+ (DBTEAMLOGDomainInvitesEmailExistingUsersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersType.h deleted file mode 100644 index 6276c6a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesEmailExistingUsersType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesEmailExistingUsersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesEmailExistingUsersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesEmailExistingUsersType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesEmailExistingUsersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesEmailExistingUsersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesEmailExistingUsersType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesEmailExistingUsersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesEmailExistingUsersType` object. -/// -+ (DBTEAMLOGDomainInvitesEmailExistingUsersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h deleted file mode 100644 index 10c2aa2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesRequestToJoinTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesRequestToJoinTeamDetails` struct. -/// -/// Requested to join team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesRequestToJoinTeamDetails` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamDetails` object. -/// -+ (DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamType.h deleted file mode 100644 index e760d8d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesRequestToJoinTeamType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesRequestToJoinTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesRequestToJoinTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesRequestToJoinTeamType` struct. -/// -@interface DBTEAMLOGDomainInvitesRequestToJoinTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesRequestToJoinTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesRequestToJoinTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesRequestToJoinTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesRequestToJoinTeamType` object. -/// -+ (DBTEAMLOGDomainInvitesRequestToJoinTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h deleted file mode 100644 index 8be5584d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToNoDetails` struct. -/// -/// Disabled "Automatically invite new users". -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesSetInviteNewUserPrefToNoDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h deleted file mode 100644 index 9457330c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToNoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesSetInviteNewUserPrefToNoType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h deleted file mode 100644 index 60202aab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToYesDetails` struct. -/// -/// Enabled "Automatically invite new users". -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DomainInvitesSetInviteNewUserPrefToYesDetails` struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h deleted file mode 100644 index 87d557b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainInvitesSetInviteNewUserPrefToYesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainInvitesSetInviteNewUserPrefToYesType` -/// struct. -/// -@interface DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType` object. -/// -+ (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainFailDetails.h deleted file mode 100644 index 48e6e845..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainFailDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainFailDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainFailDetails` struct. -/// -/// Failed to verify team domain. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailDetails : NSObject - -#pragma mark - Instance fields - -/// Domain name. -@property (nonatomic, readonly, copy) NSString *domainName; - -/// Domain name verification method. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *verificationMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainName Domain name. -/// @param verificationMethod Domain name verification method. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName verificationMethod:(nullable NSString *)verificationMethod; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domainName Domain name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainName:(NSString *)domainName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainFailDetails` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailDetails` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainFailType.h deleted file mode 100644 index 790d3f55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainFailType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainFailType` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainFailType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainFailType` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h deleted file mode 100644 index 5b6cf93f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainSuccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainSuccessDetails` struct. -/// -/// Verified team domain. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Domain names. -@property (nonatomic, readonly) NSArray *domainNames; - -/// Domain name verification method. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *verificationMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainNames Domain names. -/// @param verificationMethod Domain name verification method. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainNames:(NSArray *)domainNames - verificationMethod:(nullable NSString *)verificationMethod; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domainNames Domain names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainNames:(NSArray *)domainNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainSuccessDetails` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessDetails` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessType.h deleted file mode 100644 index 7f83d036..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationAddDomainSuccessType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationAddDomainSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationAddDomainSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationAddDomainSuccessType` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationAddDomainSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationAddDomainSuccessType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationAddDomainSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationAddDomainSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationAddDomainSuccessType` object. -/// -+ (DBTEAMLOGDomainVerificationAddDomainSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationRemoveDomainDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationRemoveDomainDetails.h deleted file mode 100644 index 120a2f2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationRemoveDomainDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationRemoveDomainDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationRemoveDomainDetails` struct. -/// -/// Removed domain from list of verified team domains. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainDetails : NSObject - -#pragma mark - Instance fields - -/// Domain names. -@property (nonatomic, readonly) NSArray *domainNames; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domainNames Domain names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainNames:(NSArray *)domainNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationRemoveDomainDetails` -/// struct. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationRemoveDomainDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationRemoveDomainDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationRemoveDomainDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainDetails` object. -/// -+ (DBTEAMLOGDomainVerificationRemoveDomainDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationRemoveDomainType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationRemoveDomainType.h deleted file mode 100644 index 766c12d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDomainVerificationRemoveDomainType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDomainVerificationRemoveDomainType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DomainVerificationRemoveDomainType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DomainVerificationRemoveDomainType` struct. -/// -@interface DBTEAMLOGDomainVerificationRemoveDomainTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDomainVerificationRemoveDomainType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDomainVerificationRemoveDomainType *)instance; - -/// -/// Deserializes `DBTEAMLOGDomainVerificationRemoveDomainType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDomainVerificationRemoveDomainType` object. -/// -+ (DBTEAMLOGDomainVerificationRemoveDomainType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDownloadPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDownloadPolicyType.h deleted file mode 100644 index 319fcc54..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDownloadPolicyType.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDownloadPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DownloadPolicyType` union. -/// -/// Shared content downloads policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDownloadPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDownloadPolicyTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGDownloadPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDownloadPolicyTypeTag) { - /// (no description). - DBTEAMLOGDownloadPolicyTypeAllow, - - /// (no description). - DBTEAMLOGDownloadPolicyTypeDisallow, - - /// (no description). - DBTEAMLOGDownloadPolicyTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDownloadPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "disallow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallow; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "disallow". -/// -/// @return Whether the union's current tag state has value "disallow". -/// -- (BOOL)isDisallow; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDownloadPolicyType` union. -/// -@interface DBTEAMLOGDownloadPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDownloadPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDownloadPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDownloadPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDownloadPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGDownloadPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDownloadPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDownloadPolicyType` object. -/// -+ (DBTEAMLOGDownloadPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsExportedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsExportedDetails.h deleted file mode 100644 index 4ba111d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsExportedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsExportedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsExportedDetails` struct. -/// -/// Exported passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsExportedDetails : NSObject - -#pragma mark - Instance fields - -/// The platform the device runs export. -@property (nonatomic, readonly, copy) NSString *platform; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param platform The platform the device runs export. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlatform:(NSString *)platform; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsExportedDetails` struct. -/// -@interface DBTEAMLOGDropboxPasswordsExportedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsExportedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsExportedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsExportedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsExportedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsExportedDetails` -/// object. -/// -+ (DBTEAMLOGDropboxPasswordsExportedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsExportedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsExportedType.h deleted file mode 100644 index 0b747085..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsExportedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsExportedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsExportedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsExportedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsExportedType` struct. -/// -@interface DBTEAMLOGDropboxPasswordsExportedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsExportedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDropboxPasswordsExportedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsExportedType *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsExportedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsExportedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsExportedType` -/// object. -/// -+ (DBTEAMLOGDropboxPasswordsExportedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h deleted file mode 100644 index ab821ded..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsNewDeviceEnrolledDetails` struct. -/// -/// Enrolled new Dropbox Passwords device. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails : NSObject - -#pragma mark - Instance fields - -/// Whether it's a first device enrolled. -@property (nonatomic, readonly) NSNumber *isFirstDevice; - -/// The platform the device is enrolled. -@property (nonatomic, readonly, copy) NSString *platform; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isFirstDevice Whether it's a first device enrolled. -/// @param platform The platform the device is enrolled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsFirstDevice:(NSNumber *)isFirstDevice platform:(NSString *)platform; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsNewDeviceEnrolledDetails` -/// struct. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails` object. -/// -+ (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h deleted file mode 100644 index 959079ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsNewDeviceEnrolledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsNewDeviceEnrolledType` -/// struct. -/// -@interface DBTEAMLOGDropboxPasswordsNewDeviceEnrolledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType` object. -/// -+ (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicy.h deleted file mode 100644 index ecc24112..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsPolicy` union. -/// -/// Policy for deciding whether team users can use Dropbox Passwords -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGDropboxPasswordsPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGDropboxPasswordsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGDropboxPasswordsPolicyTag) { - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyDefault_, - - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyDisabled, - - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyEnabled, - - /// (no description). - DBTEAMLOGDropboxPasswordsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGDropboxPasswordsPolicy` union. -/// -@interface DBTEAMLOGDropboxPasswordsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDropboxPasswordsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsPolicy` object. -/// -+ (DBTEAMLOGDropboxPasswordsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h deleted file mode 100644 index d2240bd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsPolicy; -@class DBTEAMLOGDropboxPasswordsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsPolicyChangedDetails` struct. -/// -/// Changed Dropbox Passwords policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDropboxPasswordsPolicy *)dNewValue - previousValue:(DBTEAMLOGDropboxPasswordsPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedDetails` object. -/// -+ (DBTEAMLOGDropboxPasswordsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedType.h deleted file mode 100644 index 86dd2374..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDropboxPasswordsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDropboxPasswordsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DropboxPasswordsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DropboxPasswordsPolicyChangedType` struct. -/// -@interface DBTEAMLOGDropboxPasswordsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDropboxPasswordsPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDropboxPasswordsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGDropboxPasswordsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDropboxPasswordsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDropboxPasswordsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGDropboxPasswordsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDurationLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDurationLogInfo.h deleted file mode 100644 index 60fa21e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGDurationLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGTimeUnit; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `DurationLogInfo` struct. -/// -/// Represents a time duration: unit and amount -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGDurationLogInfo : NSObject - -#pragma mark - Instance fields - -/// Time unit. -@property (nonatomic, readonly) DBTEAMLOGTimeUnit *unit; - -/// Amount of time. -@property (nonatomic, readonly) NSNumber *amount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param unit Time unit. -/// @param amount Amount of time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnit:(DBTEAMLOGTimeUnit *)unit amount:(NSNumber *)amount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DurationLogInfo` struct. -/// -@interface DBTEAMLOGDurationLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGDurationLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGDurationLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGDurationLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGDurationLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGDurationLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGDurationLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGDurationLogInfo` object. -/// -+ (DBTEAMLOGDurationLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicy.h deleted file mode 100644 index 0da4f647..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestPolicy` union. -/// -/// Policy for deciding whether a team can use Email to Dropbox feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEmailIngestPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGEmailIngestPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEmailIngestPolicyTag) { - /// (no description). - DBTEAMLOGEmailIngestPolicyDisabled, - - /// (no description). - DBTEAMLOGEmailIngestPolicyEnabled, - - /// (no description). - DBTEAMLOGEmailIngestPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEmailIngestPolicy` union. -/// -@interface DBTEAMLOGEmailIngestPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestPolicy` object. -/// -+ (DBTEAMLOGEmailIngestPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicyChangedDetails.h deleted file mode 100644 index cc9f77ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestPolicy; -@class DBTEAMLOGEmailIngestPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestPolicyChangedDetails` struct. -/// -/// Changed email to Dropbox policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGEmailIngestPolicy *)dNewValue - previousValue:(DBTEAMLOGEmailIngestPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEmailIngestPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGEmailIngestPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicyChangedType.h deleted file mode 100644 index e71e2e55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestPolicyChangedType` struct. -/// -@interface DBTEAMLOGEmailIngestPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGEmailIngestPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestReceiveFileDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestReceiveFileDetails.h deleted file mode 100644 index 6f7b9960..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestReceiveFileDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestReceiveFileDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestReceiveFileDetails` struct. -/// -/// Received files via Email to Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestReceiveFileDetails : NSObject - -#pragma mark - Instance fields - -/// Inbox name. -@property (nonatomic, readonly, copy) NSString *inboxName; - -/// Submitted file names. -@property (nonatomic, readonly) NSArray *attachmentNames; - -/// Subject of the email. -@property (nonatomic, readonly, copy, nullable) NSString *subject; - -/// The name as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *fromName; - -/// The email as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *fromEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param inboxName Inbox name. -/// @param attachmentNames Submitted file names. -/// @param subject Subject of the email. -/// @param fromName The name as provided by the submitter. -/// @param fromEmail The email as provided by the submitter. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInboxName:(NSString *)inboxName - attachmentNames:(NSArray *)attachmentNames - subject:(nullable NSString *)subject - fromName:(nullable NSString *)fromName - fromEmail:(nullable NSString *)fromEmail; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param inboxName Inbox name. -/// @param attachmentNames Submitted file names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInboxName:(NSString *)inboxName attachmentNames:(NSArray *)attachmentNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestReceiveFileDetails` struct. -/// -@interface DBTEAMLOGEmailIngestReceiveFileDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestReceiveFileDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestReceiveFileDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestReceiveFileDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestReceiveFileDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestReceiveFileDetails` -/// object. -/// -+ (DBTEAMLOGEmailIngestReceiveFileDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestReceiveFileType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestReceiveFileType.h deleted file mode 100644 index 0f706688..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmailIngestReceiveFileType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmailIngestReceiveFileType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmailIngestReceiveFileType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmailIngestReceiveFileType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmailIngestReceiveFileType` struct. -/// -@interface DBTEAMLOGEmailIngestReceiveFileTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmailIngestReceiveFileType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmailIngestReceiveFileType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmailIngestReceiveFileType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmailIngestReceiveFileType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmailIngestReceiveFileType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmailIngestReceiveFileType` -/// object. -/// -+ (DBTEAMLOGEmailIngestReceiveFileType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmAddExceptionDetails.h deleted file mode 100644 index f4f043bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmAddExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmAddExceptionDetails` struct. -/// -/// Added members to EMM exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmAddExceptionDetails` struct. -/// -@interface DBTEAMLOGEmmAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmAddExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmAddExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmAddExceptionDetails` object. -/// -+ (DBTEAMLOGEmmAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmAddExceptionType.h deleted file mode 100644 index 3a0411eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmAddExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmAddExceptionType` struct. -/// -@interface DBTEAMLOGEmmAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmAddExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmAddExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmAddExceptionType` object. -/// -+ (DBTEAMLOGEmmAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmChangePolicyDetails.h deleted file mode 100644 index 22b1802f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmChangePolicyDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmChangePolicyDetails; -@class DBTEAMPOLICIESEmmState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmChangePolicyDetails` struct. -/// -/// Enabled/disabled enterprise mobility management for members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New enterprise mobility management policy. -@property (nonatomic, readonly) DBTEAMPOLICIESEmmState *dNewValue; - -/// Previous enterprise mobility management policy. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESEmmState *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New enterprise mobility management policy. -/// @param previousValue Previous enterprise mobility management policy. Might -/// be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESEmmState *)dNewValue - previousValue:(nullable DBTEAMPOLICIESEmmState *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New enterprise mobility management policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESEmmState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmChangePolicyDetails` struct. -/// -@interface DBTEAMLOGEmmChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmChangePolicyDetails` object. -/// -+ (DBTEAMLOGEmmChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmChangePolicyType.h deleted file mode 100644 index 9bce78b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmChangePolicyType` struct. -/// -@interface DBTEAMLOGEmmChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmChangePolicyType` object. -/// -+ (DBTEAMLOGEmmChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateExceptionsReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateExceptionsReportDetails.h deleted file mode 100644 index ba08dcec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateExceptionsReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateExceptionsReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateExceptionsReportDetails` struct. -/// -/// Created EMM-excluded users report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateExceptionsReportDetails` struct. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateExceptionsReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEmmCreateExceptionsReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateExceptionsReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateExceptionsReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateExceptionsReportDetails` -/// object. -/// -+ (DBTEAMLOGEmmCreateExceptionsReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateExceptionsReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateExceptionsReportType.h deleted file mode 100644 index 81682c2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateExceptionsReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateExceptionsReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateExceptionsReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateExceptionsReportType` struct. -/// -@interface DBTEAMLOGEmmCreateExceptionsReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateExceptionsReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmCreateExceptionsReportType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateExceptionsReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateExceptionsReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateExceptionsReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateExceptionsReportType` -/// object. -/// -+ (DBTEAMLOGEmmCreateExceptionsReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateUsageReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateUsageReportDetails.h deleted file mode 100644 index 14fb38f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateUsageReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateUsageReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateUsageReportDetails` struct. -/// -/// Created EMM mobile app usage report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateUsageReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateUsageReportDetails` struct. -/// -@interface DBTEAMLOGEmmCreateUsageReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateUsageReportDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmCreateUsageReportDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateUsageReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateUsageReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateUsageReportDetails` -/// object. -/// -+ (DBTEAMLOGEmmCreateUsageReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateUsageReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateUsageReportType.h deleted file mode 100644 index e776e7e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmCreateUsageReportType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmCreateUsageReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmCreateUsageReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmCreateUsageReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmCreateUsageReportType` struct. -/// -@interface DBTEAMLOGEmmCreateUsageReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmCreateUsageReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmCreateUsageReportType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmCreateUsageReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmCreateUsageReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmCreateUsageReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmCreateUsageReportType` object. -/// -+ (DBTEAMLOGEmmCreateUsageReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmErrorDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmErrorDetails.h deleted file mode 100644 index c8da0f38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmErrorDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmErrorDetails; -@class DBTEAMLOGFailureDetailsLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmErrorDetails` struct. -/// -/// Failed to sign in via EMM. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmErrorDetails : NSObject - -#pragma mark - Instance fields - -/// Error details. -@property (nonatomic, readonly) DBTEAMLOGFailureDetailsLogInfo *errorDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param errorDetails Error details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithErrorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmErrorDetails` struct. -/// -@interface DBTEAMLOGEmmErrorDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmErrorDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmErrorDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmErrorDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmErrorDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmErrorDetails` object. -/// -+ (DBTEAMLOGEmmErrorDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmErrorType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmErrorType.h deleted file mode 100644 index 36e44697..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmErrorType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmErrorType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmErrorType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmErrorType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmErrorType` struct. -/// -@interface DBTEAMLOGEmmErrorTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmErrorType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmErrorType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmErrorType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmErrorType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmErrorType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmErrorType` object. -/// -+ (DBTEAMLOGEmmErrorType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRefreshAuthTokenDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRefreshAuthTokenDetails.h deleted file mode 100644 index a6f39b80..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRefreshAuthTokenDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRefreshAuthTokenDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRefreshAuthTokenDetails` struct. -/// -/// Refreshed auth token used for setting up EMM. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRefreshAuthTokenDetails` struct. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRefreshAuthTokenDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRefreshAuthTokenDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRefreshAuthTokenDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRefreshAuthTokenDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRefreshAuthTokenDetails` -/// object. -/// -+ (DBTEAMLOGEmmRefreshAuthTokenDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRefreshAuthTokenType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRefreshAuthTokenType.h deleted file mode 100644 index fd850540..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRefreshAuthTokenType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRefreshAuthTokenType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRefreshAuthTokenType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRefreshAuthTokenType` struct. -/// -@interface DBTEAMLOGEmmRefreshAuthTokenTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRefreshAuthTokenType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRefreshAuthTokenType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRefreshAuthTokenType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRefreshAuthTokenType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRefreshAuthTokenType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRefreshAuthTokenType` object. -/// -+ (DBTEAMLOGEmmRefreshAuthTokenType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRemoveExceptionDetails.h deleted file mode 100644 index 6b6a381c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRemoveExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRemoveExceptionDetails` struct. -/// -/// Removed members from EMM exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRemoveExceptionDetails` struct. -/// -@interface DBTEAMLOGEmmRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRemoveExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGEmmRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRemoveExceptionType.h deleted file mode 100644 index 3f54c63b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEmmRemoveExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEmmRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEmmRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EmmRemoveExceptionType` struct. -/// -@interface DBTEAMLOGEmmRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEmmRemoveExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEmmRemoveExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEmmRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGEmmRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEmmRemoveExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEmmRemoveExceptionType` object. -/// -+ (DBTEAMLOGEmmRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnabledDomainInvitesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnabledDomainInvitesDetails.h deleted file mode 100644 index 3cf7511f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnabledDomainInvitesDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnabledDomainInvitesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnabledDomainInvitesDetails` struct. -/// -/// Enabled domain invites. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnabledDomainInvitesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnabledDomainInvitesDetails` struct. -/// -@interface DBTEAMLOGEnabledDomainInvitesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnabledDomainInvitesDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnabledDomainInvitesDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnabledDomainInvitesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEnabledDomainInvitesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnabledDomainInvitesDetails` -/// object. -/// -+ (DBTEAMLOGEnabledDomainInvitesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnabledDomainInvitesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnabledDomainInvitesType.h deleted file mode 100644 index bbd796cc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnabledDomainInvitesType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnabledDomainInvitesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnabledDomainInvitesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnabledDomainInvitesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnabledDomainInvitesType` struct. -/// -@interface DBTEAMLOGEnabledDomainInvitesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnabledDomainInvitesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnabledDomainInvitesType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnabledDomainInvitesType *)instance; - -/// -/// Deserializes `DBTEAMLOGEnabledDomainInvitesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnabledDomainInvitesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnabledDomainInvitesType` object. -/// -+ (DBTEAMLOGEnabledDomainInvitesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h deleted file mode 100644 index f2234ea8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails; -@class DBTEAMLOGFedExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionDeprecatedDetails` struct. -/// -/// Ended enterprise admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails : NSObject - -#pragma mark - Instance fields - -/// More information about the organization or team. -@property (nonatomic, readonly) DBTEAMLOGFedExtraDetails *federationExtraDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param federationExtraDetails More information about the organization or -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFederationExtraDetails:(DBTEAMLOGFedExtraDetails *)federationExtraDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `EndedEnterpriseAdminSessionDeprecatedDetails` struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails` object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h deleted file mode 100644 index 58ab2efd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionDeprecatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EndedEnterpriseAdminSessionDeprecatedType` -/// struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType` object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDetails.h deleted file mode 100644 index f767c788..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionDetails` struct. -/// -/// Ended enterprise admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EndedEnterpriseAdminSessionDetails` struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionDetails` object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionType.h deleted file mode 100644 index e130cfc1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEndedEnterpriseAdminSessionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEndedEnterpriseAdminSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EndedEnterpriseAdminSessionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EndedEnterpriseAdminSessionType` struct. -/// -@interface DBTEAMLOGEndedEnterpriseAdminSessionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEndedEnterpriseAdminSessionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEndedEnterpriseAdminSessionType *)instance; - -/// -/// Deserializes `DBTEAMLOGEndedEnterpriseAdminSessionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEndedEnterpriseAdminSessionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEndedEnterpriseAdminSessionType` -/// object. -/// -+ (DBTEAMLOGEndedEnterpriseAdminSessionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnforceLinkPasswordPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnforceLinkPasswordPolicy.h deleted file mode 100644 index 071e5c98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnforceLinkPasswordPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnforceLinkPasswordPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnforceLinkPasswordPolicy` union. -/// -/// Policy for deciding whether password must be enforced when an externally -/// shared link is updated -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnforceLinkPasswordPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEnforceLinkPasswordPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGEnforceLinkPasswordPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEnforceLinkPasswordPolicyTag) { - /// (no description). - DBTEAMLOGEnforceLinkPasswordPolicyOptional, - - /// (no description). - DBTEAMLOGEnforceLinkPasswordPolicyRequired, - - /// (no description). - DBTEAMLOGEnforceLinkPasswordPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEnforceLinkPasswordPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "optional". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "required". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEnforceLinkPasswordPolicy` union. -/// -@interface DBTEAMLOGEnforceLinkPasswordPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnforceLinkPasswordPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnforceLinkPasswordPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnforceLinkPasswordPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnforceLinkPasswordPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGEnforceLinkPasswordPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnforceLinkPasswordPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnforceLinkPasswordPolicy` object. -/// -+ (DBTEAMLOGEnforceLinkPasswordPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnterpriseSettingsLockingDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnterpriseSettingsLockingDetails.h deleted file mode 100644 index fa14b0a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnterpriseSettingsLockingDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnterpriseSettingsLockingDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnterpriseSettingsLockingDetails` struct. -/// -/// Changed who can update a setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *teamName; - -/// Settings page name. -@property (nonatomic, readonly, copy) NSString *settingsPageName; - -/// Previous locked settings page state. -@property (nonatomic, readonly, copy) NSString *previousSettingsPageLockingState; - -/// New locked settings page state. -@property (nonatomic, readonly, copy) NSString *dNewSettingsPageLockingState; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName The secondary team name. -/// @param settingsPageName Settings page name. -/// @param previousSettingsPageLockingState Previous locked settings page state. -/// @param dNewSettingsPageLockingState New locked settings page state. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(NSString *)teamName - settingsPageName:(NSString *)settingsPageName - previousSettingsPageLockingState:(NSString *)previousSettingsPageLockingState - dNewSettingsPageLockingState:(NSString *)dNewSettingsPageLockingState; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnterpriseSettingsLockingDetails` struct. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnterpriseSettingsLockingDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGEnterpriseSettingsLockingDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnterpriseSettingsLockingDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEnterpriseSettingsLockingDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnterpriseSettingsLockingDetails` -/// object. -/// -+ (DBTEAMLOGEnterpriseSettingsLockingDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnterpriseSettingsLockingType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnterpriseSettingsLockingType.h deleted file mode 100644 index d83cfffd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEnterpriseSettingsLockingType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnterpriseSettingsLockingType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EnterpriseSettingsLockingType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `EnterpriseSettingsLockingType` struct. -/// -@interface DBTEAMLOGEnterpriseSettingsLockingTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEnterpriseSettingsLockingType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEnterpriseSettingsLockingType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEnterpriseSettingsLockingType *)instance; - -/// -/// Deserializes `DBTEAMLOGEnterpriseSettingsLockingType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEnterpriseSettingsLockingType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEnterpriseSettingsLockingType` -/// object. -/// -+ (DBTEAMLOGEnterpriseSettingsLockingType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventCategory.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventCategory.h deleted file mode 100644 index 419840b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventCategory.h +++ /dev/null @@ -1,564 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEventCategory; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventCategory` union. -/// -/// Category of events in event audit log. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventCategory : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventCategoryTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventCategory` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventCategoryTag) { - /// Events that involve team related alerts. - DBTEAMLOGEventCategoryAdminAlerting, - - /// Events that apply to management of linked apps. - DBTEAMLOGEventCategoryApps, - - /// Events that have to do with comments on files and Paper documents. - DBTEAMLOGEventCategoryComments, - - /// Events that involve data governance actions - DBTEAMLOGEventCategoryDataGovernance, - - /// Events that apply to linked devices on mobile, desktop and Web - /// platforms. - DBTEAMLOGEventCategoryDevices, - - /// Events that involve domain management feature: domain verification, - /// invite enforcement and account capture. - DBTEAMLOGEventCategoryDomains, - - /// Events that involve encryption. - DBTEAMLOGEventCategoryEncryption, - - /// Events that have to do with filesystem operations on files and folders: - /// copy, move, delete, etc. - DBTEAMLOGEventCategoryFileOperations, - - /// Events that apply to the file requests feature. - DBTEAMLOGEventCategoryFileRequests, - - /// Events that involve group management. - DBTEAMLOGEventCategoryGroups, - - /// Events that involve users signing in to or out of Dropbox. - DBTEAMLOGEventCategoryLogins, - - /// Events that involve team member management. - DBTEAMLOGEventCategoryMembers, - - /// Events that apply to Dropbox Paper. - DBTEAMLOGEventCategoryPaper, - - /// Events that involve using, changing or resetting passwords. - DBTEAMLOGEventCategoryPasswords, - - /// Events that concern generation of admin reports, including team activity - /// and device usage. - DBTEAMLOGEventCategoryReports, - - /// Events that apply to all types of sharing and collaboration. - DBTEAMLOGEventCategorySharing, - - /// Events that apply to Dropbox Showcase. - DBTEAMLOGEventCategoryShowcase, - - /// Events that involve using or configuring single sign-on as well as - /// administrative policies concerning single sign-on. - DBTEAMLOGEventCategorySso, - - /// Events that involve team folder management. - DBTEAMLOGEventCategoryTeamFolders, - - /// Events that involve a change in team-wide policies. - DBTEAMLOGEventCategoryTeamPolicies, - - /// Events that involve a change in the team profile. - DBTEAMLOGEventCategoryTeamProfile, - - /// Events that involve using or configuring two factor authentication as - /// well as administrative policies concerning two factor authentication. - DBTEAMLOGEventCategoryTfa, - - /// Events that apply to cross-team trust establishment. - DBTEAMLOGEventCategoryTrustedTeams, - - /// (no description). - DBTEAMLOGEventCategoryOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventCategoryTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admin_alerting". -/// -/// Description of the "admin_alerting" tag state: Events that involve team -/// related alerts. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlerting; - -/// -/// Initializes union class with tag state of "apps". -/// -/// Description of the "apps" tag state: Events that apply to management of -/// linked apps. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps; - -/// -/// Initializes union class with tag state of "comments". -/// -/// Description of the "comments" tag state: Events that have to do with -/// comments on files and Paper documents. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComments; - -/// -/// Initializes union class with tag state of "data_governance". -/// -/// Description of the "data_governance" tag state: Events that involve data -/// governance actions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataGovernance; - -/// -/// Initializes union class with tag state of "devices". -/// -/// Description of the "devices" tag state: Events that apply to linked devices -/// on mobile, desktop and Web platforms. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices; - -/// -/// Initializes union class with tag state of "domains". -/// -/// Description of the "domains" tag state: Events that involve domain -/// management feature: domain verification, invite enforcement and account -/// capture. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains; - -/// -/// Initializes union class with tag state of "encryption". -/// -/// Description of the "encryption" tag state: Events that involve encryption. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEncryption; - -/// -/// Initializes union class with tag state of "file_operations". -/// -/// Description of the "file_operations" tag state: Events that have to do with -/// filesystem operations on files and folders: copy, move, delete, etc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileOperations; - -/// -/// Initializes union class with tag state of "file_requests". -/// -/// Description of the "file_requests" tag state: Events that apply to the file -/// requests feature. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequests; - -/// -/// Initializes union class with tag state of "groups". -/// -/// Description of the "groups" tag state: Events that involve group management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroups; - -/// -/// Initializes union class with tag state of "logins". -/// -/// Description of the "logins" tag state: Events that involve users signing in -/// to or out of Dropbox. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogins; - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Events that involve team member -/// management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "paper". -/// -/// Description of the "paper" tag state: Events that apply to Dropbox Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaper; - -/// -/// Initializes union class with tag state of "passwords". -/// -/// Description of the "passwords" tag state: Events that involve using, -/// changing or resetting passwords. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswords; - -/// -/// Initializes union class with tag state of "reports". -/// -/// Description of the "reports" tag state: Events that concern generation of -/// admin reports, including team activity and device usage. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReports; - -/// -/// Initializes union class with tag state of "sharing". -/// -/// Description of the "sharing" tag state: Events that apply to all types of -/// sharing and collaboration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharing; - -/// -/// Initializes union class with tag state of "showcase". -/// -/// Description of the "showcase" tag state: Events that apply to Dropbox -/// Showcase. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcase; - -/// -/// Initializes union class with tag state of "sso". -/// -/// Description of the "sso" tag state: Events that involve using or configuring -/// single sign-on as well as administrative policies concerning single sign-on. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSso; - -/// -/// Initializes union class with tag state of "team_folders". -/// -/// Description of the "team_folders" tag state: Events that involve team folder -/// management. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolders; - -/// -/// Initializes union class with tag state of "team_policies". -/// -/// Description of the "team_policies" tag state: Events that involve a change -/// in team-wide policies. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamPolicies; - -/// -/// Initializes union class with tag state of "team_profile". -/// -/// Description of the "team_profile" tag state: Events that involve a change in -/// the team profile. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfile; - -/// -/// Initializes union class with tag state of "tfa". -/// -/// Description of the "tfa" tag state: Events that involve using or configuring -/// two factor authentication as well as administrative policies concerning two -/// factor authentication. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfa; - -/// -/// Initializes union class with tag state of "trusted_teams". -/// -/// Description of the "trusted_teams" tag state: Events that apply to -/// cross-team trust establishment. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedTeams; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admin_alerting". -/// -/// @return Whether the union's current tag state has value "admin_alerting". -/// -- (BOOL)isAdminAlerting; - -/// -/// Retrieves whether the union's current tag state has value "apps". -/// -/// @return Whether the union's current tag state has value "apps". -/// -- (BOOL)isApps; - -/// -/// Retrieves whether the union's current tag state has value "comments". -/// -/// @return Whether the union's current tag state has value "comments". -/// -- (BOOL)isComments; - -/// -/// Retrieves whether the union's current tag state has value "data_governance". -/// -/// @return Whether the union's current tag state has value "data_governance". -/// -- (BOOL)isDataGovernance; - -/// -/// Retrieves whether the union's current tag state has value "devices". -/// -/// @return Whether the union's current tag state has value "devices". -/// -- (BOOL)isDevices; - -/// -/// Retrieves whether the union's current tag state has value "domains". -/// -/// @return Whether the union's current tag state has value "domains". -/// -- (BOOL)isDomains; - -/// -/// Retrieves whether the union's current tag state has value "encryption". -/// -/// @return Whether the union's current tag state has value "encryption". -/// -- (BOOL)isEncryption; - -/// -/// Retrieves whether the union's current tag state has value "file_operations". -/// -/// @return Whether the union's current tag state has value "file_operations". -/// -- (BOOL)isFileOperations; - -/// -/// Retrieves whether the union's current tag state has value "file_requests". -/// -/// @return Whether the union's current tag state has value "file_requests". -/// -- (BOOL)isFileRequests; - -/// -/// Retrieves whether the union's current tag state has value "groups". -/// -/// @return Whether the union's current tag state has value "groups". -/// -- (BOOL)isGroups; - -/// -/// Retrieves whether the union's current tag state has value "logins". -/// -/// @return Whether the union's current tag state has value "logins". -/// -- (BOOL)isLogins; - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "paper". -/// -/// @return Whether the union's current tag state has value "paper". -/// -- (BOOL)isPaper; - -/// -/// Retrieves whether the union's current tag state has value "passwords". -/// -/// @return Whether the union's current tag state has value "passwords". -/// -- (BOOL)isPasswords; - -/// -/// Retrieves whether the union's current tag state has value "reports". -/// -/// @return Whether the union's current tag state has value "reports". -/// -- (BOOL)isReports; - -/// -/// Retrieves whether the union's current tag state has value "sharing". -/// -/// @return Whether the union's current tag state has value "sharing". -/// -- (BOOL)isSharing; - -/// -/// Retrieves whether the union's current tag state has value "showcase". -/// -/// @return Whether the union's current tag state has value "showcase". -/// -- (BOOL)isShowcase; - -/// -/// Retrieves whether the union's current tag state has value "sso". -/// -/// @return Whether the union's current tag state has value "sso". -/// -- (BOOL)isSso; - -/// -/// Retrieves whether the union's current tag state has value "team_folders". -/// -/// @return Whether the union's current tag state has value "team_folders". -/// -- (BOOL)isTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "team_policies". -/// -/// @return Whether the union's current tag state has value "team_policies". -/// -- (BOOL)isTeamPolicies; - -/// -/// Retrieves whether the union's current tag state has value "team_profile". -/// -/// @return Whether the union's current tag state has value "team_profile". -/// -- (BOOL)isTeamProfile; - -/// -/// Retrieves whether the union's current tag state has value "tfa". -/// -/// @return Whether the union's current tag state has value "tfa". -/// -- (BOOL)isTfa; - -/// -/// Retrieves whether the union's current tag state has value "trusted_teams". -/// -/// @return Whether the union's current tag state has value "trusted_teams". -/// -- (BOOL)isTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventCategory` union. -/// -@interface DBTEAMLOGEventCategorySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventCategory` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventCategory` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventCategory` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventCategory *)instance; - -/// -/// Deserializes `DBTEAMLOGEventCategory` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventCategory` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventCategory` object. -/// -+ (DBTEAMLOGEventCategory *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventDetails.h deleted file mode 100644 index 832cd68b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventDetails.h +++ /dev/null @@ -1,16145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangeAvailabilityDetails; -@class DBTEAMLOGAccountCaptureChangePolicyDetails; -@class DBTEAMLOGAccountCaptureMigrateAccountDetails; -@class DBTEAMLOGAccountCaptureNotificationEmailsSentDetails; -@class DBTEAMLOGAccountCaptureRelinquishAccountDetails; -@class DBTEAMLOGAccountLockOrUnlockedDetails; -@class DBTEAMLOGAdminAlertingAlertStateChangedDetails; -@class DBTEAMLOGAdminAlertingChangedAlertConfigDetails; -@class DBTEAMLOGAdminAlertingTriggeredAlertDetails; -@class DBTEAMLOGAdminEmailRemindersChangedDetails; -@class DBTEAMLOGAllowDownloadDisabledDetails; -@class DBTEAMLOGAllowDownloadEnabledDetails; -@class DBTEAMLOGAppBlockedByPermissionsDetails; -@class DBTEAMLOGAppLinkTeamDetails; -@class DBTEAMLOGAppLinkUserDetails; -@class DBTEAMLOGAppPermissionsChangedDetails; -@class DBTEAMLOGAppUnlinkTeamDetails; -@class DBTEAMLOGAppUnlinkUserDetails; -@class DBTEAMLOGApplyNamingConventionDetails; -@class DBTEAMLOGBackupAdminInvitationSentDetails; -@class DBTEAMLOGBackupInvitationOpenedDetails; -@class DBTEAMLOGBinderAddPageDetails; -@class DBTEAMLOGBinderAddSectionDetails; -@class DBTEAMLOGBinderRemovePageDetails; -@class DBTEAMLOGBinderRemoveSectionDetails; -@class DBTEAMLOGBinderRenamePageDetails; -@class DBTEAMLOGBinderRenameSectionDetails; -@class DBTEAMLOGBinderReorderPageDetails; -@class DBTEAMLOGBinderReorderSectionDetails; -@class DBTEAMLOGCameraUploadsPolicyChangedDetails; -@class DBTEAMLOGCaptureTranscriptPolicyChangedDetails; -@class DBTEAMLOGChangedEnterpriseAdminRoleDetails; -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails; -@class DBTEAMLOGClassificationChangePolicyDetails; -@class DBTEAMLOGClassificationCreateReportDetails; -@class DBTEAMLOGClassificationCreateReportFailDetails; -@class DBTEAMLOGCollectionShareDetails; -@class DBTEAMLOGComputerBackupPolicyChangedDetails; -@class DBTEAMLOGContentAdministrationPolicyChangedDetails; -@class DBTEAMLOGCreateFolderDetails; -@class DBTEAMLOGCreateTeamInviteLinkDetails; -@class DBTEAMLOGDataPlacementRestrictionChangePolicyDetails; -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails; -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails; -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails; -@class DBTEAMLOGDeleteTeamInviteLinkDetails; -@class DBTEAMLOGDeviceApprovalsAddExceptionDetails; -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails; -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails; -@class DBTEAMLOGDeviceApprovalsChangeOverageActionDetails; -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails; -@class DBTEAMLOGDeviceApprovalsRemoveExceptionDetails; -@class DBTEAMLOGDeviceChangeIpDesktopDetails; -@class DBTEAMLOGDeviceChangeIpMobileDetails; -@class DBTEAMLOGDeviceChangeIpWebDetails; -@class DBTEAMLOGDeviceDeleteOnUnlinkFailDetails; -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails; -@class DBTEAMLOGDeviceLinkFailDetails; -@class DBTEAMLOGDeviceLinkSuccessDetails; -@class DBTEAMLOGDeviceManagementDisabledDetails; -@class DBTEAMLOGDeviceManagementEnabledDetails; -@class DBTEAMLOGDeviceSyncBackupStatusChangedDetails; -@class DBTEAMLOGDeviceUnlinkDetails; -@class DBTEAMLOGDirectoryRestrictionsAddMembersDetails; -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails; -@class DBTEAMLOGDisabledDomainInvitesDetails; -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails; -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails; -@class DBTEAMLOGDomainInvitesEmailExistingUsersDetails; -@class DBTEAMLOGDomainInvitesRequestToJoinTeamDetails; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails; -@class DBTEAMLOGDomainVerificationAddDomainFailDetails; -@class DBTEAMLOGDomainVerificationAddDomainSuccessDetails; -@class DBTEAMLOGDomainVerificationRemoveDomainDetails; -@class DBTEAMLOGDropboxPasswordsExportedDetails; -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails; -@class DBTEAMLOGDropboxPasswordsPolicyChangedDetails; -@class DBTEAMLOGEmailIngestPolicyChangedDetails; -@class DBTEAMLOGEmailIngestReceiveFileDetails; -@class DBTEAMLOGEmmAddExceptionDetails; -@class DBTEAMLOGEmmChangePolicyDetails; -@class DBTEAMLOGEmmCreateExceptionsReportDetails; -@class DBTEAMLOGEmmCreateUsageReportDetails; -@class DBTEAMLOGEmmErrorDetails; -@class DBTEAMLOGEmmRefreshAuthTokenDetails; -@class DBTEAMLOGEmmRemoveExceptionDetails; -@class DBTEAMLOGEnabledDomainInvitesDetails; -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails; -@class DBTEAMLOGEndedEnterpriseAdminSessionDetails; -@class DBTEAMLOGEnterpriseSettingsLockingDetails; -@class DBTEAMLOGEventDetails; -@class DBTEAMLOGExportMembersReportDetails; -@class DBTEAMLOGExportMembersReportFailDetails; -@class DBTEAMLOGExtendedVersionHistoryChangePolicyDetails; -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails; -@class DBTEAMLOGExternalDriveBackupPolicyChangedDetails; -@class DBTEAMLOGExternalDriveBackupStatusChangedDetails; -@class DBTEAMLOGExternalSharingCreateReportDetails; -@class DBTEAMLOGExternalSharingReportFailedDetails; -@class DBTEAMLOGFileAddCommentDetails; -@class DBTEAMLOGFileAddDetails; -@class DBTEAMLOGFileAddFromAutomationDetails; -@class DBTEAMLOGFileChangeCommentSubscriptionDetails; -@class DBTEAMLOGFileCommentsChangePolicyDetails; -@class DBTEAMLOGFileCopyDetails; -@class DBTEAMLOGFileDeleteCommentDetails; -@class DBTEAMLOGFileDeleteDetails; -@class DBTEAMLOGFileDownloadDetails; -@class DBTEAMLOGFileEditCommentDetails; -@class DBTEAMLOGFileEditDetails; -@class DBTEAMLOGFileGetCopyReferenceDetails; -@class DBTEAMLOGFileLikeCommentDetails; -@class DBTEAMLOGFileLockingLockStatusChangedDetails; -@class DBTEAMLOGFileLockingPolicyChangedDetails; -@class DBTEAMLOGFileMoveDetails; -@class DBTEAMLOGFilePermanentlyDeleteDetails; -@class DBTEAMLOGFilePreviewDetails; -@class DBTEAMLOGFileProviderMigrationPolicyChangedDetails; -@class DBTEAMLOGFileRenameDetails; -@class DBTEAMLOGFileRequestChangeDetails; -@class DBTEAMLOGFileRequestCloseDetails; -@class DBTEAMLOGFileRequestCreateDetails; -@class DBTEAMLOGFileRequestDeleteDetails; -@class DBTEAMLOGFileRequestReceiveFileDetails; -@class DBTEAMLOGFileRequestsChangePolicyDetails; -@class DBTEAMLOGFileRequestsEmailsEnabledDetails; -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails; -@class DBTEAMLOGFileResolveCommentDetails; -@class DBTEAMLOGFileRestoreDetails; -@class DBTEAMLOGFileRevertDetails; -@class DBTEAMLOGFileRollbackChangesDetails; -@class DBTEAMLOGFileSaveCopyReferenceDetails; -@class DBTEAMLOGFileTransfersFileAddDetails; -@class DBTEAMLOGFileTransfersPolicyChangedDetails; -@class DBTEAMLOGFileTransfersTransferDeleteDetails; -@class DBTEAMLOGFileTransfersTransferDownloadDetails; -@class DBTEAMLOGFileTransfersTransferSendDetails; -@class DBTEAMLOGFileTransfersTransferViewDetails; -@class DBTEAMLOGFileUnlikeCommentDetails; -@class DBTEAMLOGFileUnresolveCommentDetails; -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails; -@class DBTEAMLOGFolderOverviewDescriptionChangedDetails; -@class DBTEAMLOGFolderOverviewItemPinnedDetails; -@class DBTEAMLOGFolderOverviewItemUnpinnedDetails; -@class DBTEAMLOGGoogleSsoChangePolicyDetails; -@class DBTEAMLOGGovernancePolicyAddFolderFailedDetails; -@class DBTEAMLOGGovernancePolicyAddFoldersDetails; -@class DBTEAMLOGGovernancePolicyContentDisposedDetails; -@class DBTEAMLOGGovernancePolicyCreateDetails; -@class DBTEAMLOGGovernancePolicyDeleteDetails; -@class DBTEAMLOGGovernancePolicyEditDetailsDetails; -@class DBTEAMLOGGovernancePolicyEditDurationDetails; -@class DBTEAMLOGGovernancePolicyExportCreatedDetails; -@class DBTEAMLOGGovernancePolicyExportRemovedDetails; -@class DBTEAMLOGGovernancePolicyRemoveFoldersDetails; -@class DBTEAMLOGGovernancePolicyReportCreatedDetails; -@class DBTEAMLOGGovernancePolicyZipPartDownloadedDetails; -@class DBTEAMLOGGroupAddExternalIdDetails; -@class DBTEAMLOGGroupAddMemberDetails; -@class DBTEAMLOGGroupChangeExternalIdDetails; -@class DBTEAMLOGGroupChangeManagementTypeDetails; -@class DBTEAMLOGGroupChangeMemberRoleDetails; -@class DBTEAMLOGGroupCreateDetails; -@class DBTEAMLOGGroupDeleteDetails; -@class DBTEAMLOGGroupDescriptionUpdatedDetails; -@class DBTEAMLOGGroupJoinPolicyUpdatedDetails; -@class DBTEAMLOGGroupMovedDetails; -@class DBTEAMLOGGroupRemoveExternalIdDetails; -@class DBTEAMLOGGroupRemoveMemberDetails; -@class DBTEAMLOGGroupRenameDetails; -@class DBTEAMLOGGroupUserManagementChangePolicyDetails; -@class DBTEAMLOGGuestAdminChangeStatusDetails; -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails; -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails; -@class DBTEAMLOGIntegrationConnectedDetails; -@class DBTEAMLOGIntegrationDisconnectedDetails; -@class DBTEAMLOGIntegrationPolicyChangedDetails; -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails; -@class DBTEAMLOGLegalHoldsActivateAHoldDetails; -@class DBTEAMLOGLegalHoldsAddMembersDetails; -@class DBTEAMLOGLegalHoldsChangeHoldDetailsDetails; -@class DBTEAMLOGLegalHoldsChangeHoldNameDetails; -@class DBTEAMLOGLegalHoldsExportAHoldDetails; -@class DBTEAMLOGLegalHoldsExportCancelledDetails; -@class DBTEAMLOGLegalHoldsExportDownloadedDetails; -@class DBTEAMLOGLegalHoldsExportRemovedDetails; -@class DBTEAMLOGLegalHoldsReleaseAHoldDetails; -@class DBTEAMLOGLegalHoldsRemoveMembersDetails; -@class DBTEAMLOGLegalHoldsReportAHoldDetails; -@class DBTEAMLOGLoginFailDetails; -@class DBTEAMLOGLoginSuccessDetails; -@class DBTEAMLOGLogoutDetails; -@class DBTEAMLOGMemberAddExternalIdDetails; -@class DBTEAMLOGMemberAddNameDetails; -@class DBTEAMLOGMemberChangeAdminRoleDetails; -@class DBTEAMLOGMemberChangeEmailDetails; -@class DBTEAMLOGMemberChangeExternalIdDetails; -@class DBTEAMLOGMemberChangeMembershipTypeDetails; -@class DBTEAMLOGMemberChangeNameDetails; -@class DBTEAMLOGMemberChangeResellerRoleDetails; -@class DBTEAMLOGMemberChangeStatusDetails; -@class DBTEAMLOGMemberDeleteManualContactsDetails; -@class DBTEAMLOGMemberDeleteProfilePhotoDetails; -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails; -@class DBTEAMLOGMemberRemoveExternalIdDetails; -@class DBTEAMLOGMemberRequestsChangePolicyDetails; -@class DBTEAMLOGMemberSendInvitePolicyChangedDetails; -@class DBTEAMLOGMemberSetProfilePhotoDetails; -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails; -@class DBTEAMLOGMemberSpaceLimitsAddExceptionDetails; -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails; -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails; -@class DBTEAMLOGMemberSpaceLimitsChangePolicyDetails; -@class DBTEAMLOGMemberSpaceLimitsChangeStatusDetails; -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails; -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails; -@class DBTEAMLOGMemberSuggestDetails; -@class DBTEAMLOGMemberSuggestionsChangePolicyDetails; -@class DBTEAMLOGMemberTransferAccountContentsDetails; -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails; -@class DBTEAMLOGMissingDetails; -@class DBTEAMLOGNetworkControlChangePolicyDetails; -@class DBTEAMLOGNoExpirationLinkGenCreateReportDetails; -@class DBTEAMLOGNoExpirationLinkGenReportFailedDetails; -@class DBTEAMLOGNoPasswordLinkGenCreateReportDetails; -@class DBTEAMLOGNoPasswordLinkGenReportFailedDetails; -@class DBTEAMLOGNoPasswordLinkViewCreateReportDetails; -@class DBTEAMLOGNoPasswordLinkViewReportFailedDetails; -@class DBTEAMLOGNoteAclInviteOnlyDetails; -@class DBTEAMLOGNoteAclLinkDetails; -@class DBTEAMLOGNoteAclTeamLinkDetails; -@class DBTEAMLOGNoteShareReceiveDetails; -@class DBTEAMLOGNoteSharedDetails; -@class DBTEAMLOGObjectLabelAddedDetails; -@class DBTEAMLOGObjectLabelRemovedDetails; -@class DBTEAMLOGObjectLabelUpdatedValueDetails; -@class DBTEAMLOGOpenNoteSharedDetails; -@class DBTEAMLOGOrganizeFolderWithTidyDetails; -@class DBTEAMLOGOutdatedLinkViewCreateReportDetails; -@class DBTEAMLOGOutdatedLinkViewReportFailedDetails; -@class DBTEAMLOGPaperAdminExportStartDetails; -@class DBTEAMLOGPaperChangeDeploymentPolicyDetails; -@class DBTEAMLOGPaperChangeMemberLinkPolicyDetails; -@class DBTEAMLOGPaperChangeMemberPolicyDetails; -@class DBTEAMLOGPaperChangePolicyDetails; -@class DBTEAMLOGPaperContentAddMemberDetails; -@class DBTEAMLOGPaperContentAddToFolderDetails; -@class DBTEAMLOGPaperContentArchiveDetails; -@class DBTEAMLOGPaperContentCreateDetails; -@class DBTEAMLOGPaperContentPermanentlyDeleteDetails; -@class DBTEAMLOGPaperContentRemoveFromFolderDetails; -@class DBTEAMLOGPaperContentRemoveMemberDetails; -@class DBTEAMLOGPaperContentRenameDetails; -@class DBTEAMLOGPaperContentRestoreDetails; -@class DBTEAMLOGPaperDefaultFolderPolicyChangedDetails; -@class DBTEAMLOGPaperDesktopPolicyChangedDetails; -@class DBTEAMLOGPaperDocAddCommentDetails; -@class DBTEAMLOGPaperDocChangeMemberRoleDetails; -@class DBTEAMLOGPaperDocChangeSharingPolicyDetails; -@class DBTEAMLOGPaperDocChangeSubscriptionDetails; -@class DBTEAMLOGPaperDocDeleteCommentDetails; -@class DBTEAMLOGPaperDocDeletedDetails; -@class DBTEAMLOGPaperDocDownloadDetails; -@class DBTEAMLOGPaperDocEditCommentDetails; -@class DBTEAMLOGPaperDocEditDetails; -@class DBTEAMLOGPaperDocFollowedDetails; -@class DBTEAMLOGPaperDocMentionDetails; -@class DBTEAMLOGPaperDocOwnershipChangedDetails; -@class DBTEAMLOGPaperDocRequestAccessDetails; -@class DBTEAMLOGPaperDocResolveCommentDetails; -@class DBTEAMLOGPaperDocRevertDetails; -@class DBTEAMLOGPaperDocSlackShareDetails; -@class DBTEAMLOGPaperDocTeamInviteDetails; -@class DBTEAMLOGPaperDocTrashedDetails; -@class DBTEAMLOGPaperDocUnresolveCommentDetails; -@class DBTEAMLOGPaperDocUntrashedDetails; -@class DBTEAMLOGPaperDocViewDetails; -@class DBTEAMLOGPaperEnabledUsersGroupAdditionDetails; -@class DBTEAMLOGPaperEnabledUsersGroupRemovalDetails; -@class DBTEAMLOGPaperExternalViewAllowDetails; -@class DBTEAMLOGPaperExternalViewDefaultTeamDetails; -@class DBTEAMLOGPaperExternalViewForbidDetails; -@class DBTEAMLOGPaperFolderChangeSubscriptionDetails; -@class DBTEAMLOGPaperFolderDeletedDetails; -@class DBTEAMLOGPaperFolderFollowedDetails; -@class DBTEAMLOGPaperFolderTeamInviteDetails; -@class DBTEAMLOGPaperPublishedLinkChangePermissionDetails; -@class DBTEAMLOGPaperPublishedLinkCreateDetails; -@class DBTEAMLOGPaperPublishedLinkDisabledDetails; -@class DBTEAMLOGPaperPublishedLinkViewDetails; -@class DBTEAMLOGPasswordChangeDetails; -@class DBTEAMLOGPasswordResetAllDetails; -@class DBTEAMLOGPasswordResetDetails; -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails; -@class DBTEAMLOGPendingSecondaryEmailAddedDetails; -@class DBTEAMLOGPermanentDeleteChangePolicyDetails; -@class DBTEAMLOGRansomwareAlertCreateReportDetails; -@class DBTEAMLOGRansomwareAlertCreateReportFailedDetails; -@class DBTEAMLOGRansomwareRestoreProcessCompletedDetails; -@class DBTEAMLOGRansomwareRestoreProcessStartedDetails; -@class DBTEAMLOGReplayFileDeleteDetails; -@class DBTEAMLOGReplayFileSharedLinkCreatedDetails; -@class DBTEAMLOGReplayFileSharedLinkModifiedDetails; -@class DBTEAMLOGReplayProjectTeamAddDetails; -@class DBTEAMLOGReplayProjectTeamDeleteDetails; -@class DBTEAMLOGResellerSupportChangePolicyDetails; -@class DBTEAMLOGResellerSupportSessionEndDetails; -@class DBTEAMLOGResellerSupportSessionStartDetails; -@class DBTEAMLOGRewindFolderDetails; -@class DBTEAMLOGRewindPolicyChangedDetails; -@class DBTEAMLOGSecondaryEmailDeletedDetails; -@class DBTEAMLOGSecondaryEmailVerifiedDetails; -@class DBTEAMLOGSecondaryMailsPolicyChangedDetails; -@class DBTEAMLOGSendForSignaturePolicyChangedDetails; -@class DBTEAMLOGSfAddGroupDetails; -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails; -@class DBTEAMLOGSfExternalInviteWarnDetails; -@class DBTEAMLOGSfFbInviteChangeRoleDetails; -@class DBTEAMLOGSfFbInviteDetails; -@class DBTEAMLOGSfFbUninviteDetails; -@class DBTEAMLOGSfInviteGroupDetails; -@class DBTEAMLOGSfTeamGrantAccessDetails; -@class DBTEAMLOGSfTeamInviteChangeRoleDetails; -@class DBTEAMLOGSfTeamInviteDetails; -@class DBTEAMLOGSfTeamJoinDetails; -@class DBTEAMLOGSfTeamJoinFromOobLinkDetails; -@class DBTEAMLOGSfTeamUninviteDetails; -@class DBTEAMLOGSharedContentAddInviteesDetails; -@class DBTEAMLOGSharedContentAddLinkExpiryDetails; -@class DBTEAMLOGSharedContentAddLinkPasswordDetails; -@class DBTEAMLOGSharedContentAddMemberDetails; -@class DBTEAMLOGSharedContentChangeDownloadsPolicyDetails; -@class DBTEAMLOGSharedContentChangeInviteeRoleDetails; -@class DBTEAMLOGSharedContentChangeLinkAudienceDetails; -@class DBTEAMLOGSharedContentChangeLinkExpiryDetails; -@class DBTEAMLOGSharedContentChangeLinkPasswordDetails; -@class DBTEAMLOGSharedContentChangeMemberRoleDetails; -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails; -@class DBTEAMLOGSharedContentClaimInvitationDetails; -@class DBTEAMLOGSharedContentCopyDetails; -@class DBTEAMLOGSharedContentDownloadDetails; -@class DBTEAMLOGSharedContentRelinquishMembershipDetails; -@class DBTEAMLOGSharedContentRemoveInviteesDetails; -@class DBTEAMLOGSharedContentRemoveLinkExpiryDetails; -@class DBTEAMLOGSharedContentRemoveLinkPasswordDetails; -@class DBTEAMLOGSharedContentRemoveMemberDetails; -@class DBTEAMLOGSharedContentRequestAccessDetails; -@class DBTEAMLOGSharedContentRestoreInviteesDetails; -@class DBTEAMLOGSharedContentRestoreMemberDetails; -@class DBTEAMLOGSharedContentUnshareDetails; -@class DBTEAMLOGSharedContentViewDetails; -@class DBTEAMLOGSharedFolderChangeLinkPolicyDetails; -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails; -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails; -@class DBTEAMLOGSharedFolderChangeMembersPolicyDetails; -@class DBTEAMLOGSharedFolderCreateDetails; -@class DBTEAMLOGSharedFolderDeclineInvitationDetails; -@class DBTEAMLOGSharedFolderMountDetails; -@class DBTEAMLOGSharedFolderNestDetails; -@class DBTEAMLOGSharedFolderTransferOwnershipDetails; -@class DBTEAMLOGSharedFolderUnmountDetails; -@class DBTEAMLOGSharedLinkAddExpiryDetails; -@class DBTEAMLOGSharedLinkChangeExpiryDetails; -@class DBTEAMLOGSharedLinkChangeVisibilityDetails; -@class DBTEAMLOGSharedLinkCopyDetails; -@class DBTEAMLOGSharedLinkCreateDetails; -@class DBTEAMLOGSharedLinkDisableDetails; -@class DBTEAMLOGSharedLinkDownloadDetails; -@class DBTEAMLOGSharedLinkRemoveExpiryDetails; -@class DBTEAMLOGSharedLinkSettingsAddExpirationDetails; -@class DBTEAMLOGSharedLinkSettingsAddPasswordDetails; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails; -@class DBTEAMLOGSharedLinkSettingsChangeAudienceDetails; -@class DBTEAMLOGSharedLinkSettingsChangeExpirationDetails; -@class DBTEAMLOGSharedLinkSettingsChangePasswordDetails; -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails; -@class DBTEAMLOGSharedLinkSettingsRemovePasswordDetails; -@class DBTEAMLOGSharedLinkShareDetails; -@class DBTEAMLOGSharedLinkViewDetails; -@class DBTEAMLOGSharedNoteOpenedDetails; -@class DBTEAMLOGSharingChangeFolderJoinPolicyDetails; -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails; -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails; -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails; -@class DBTEAMLOGSharingChangeLinkPolicyDetails; -@class DBTEAMLOGSharingChangeMemberPolicyDetails; -@class DBTEAMLOGShmodelDisableDownloadsDetails; -@class DBTEAMLOGShmodelEnableDownloadsDetails; -@class DBTEAMLOGShmodelGroupShareDetails; -@class DBTEAMLOGShowcaseAccessGrantedDetails; -@class DBTEAMLOGShowcaseAddMemberDetails; -@class DBTEAMLOGShowcaseArchivedDetails; -@class DBTEAMLOGShowcaseChangeDownloadPolicyDetails; -@class DBTEAMLOGShowcaseChangeEnabledPolicyDetails; -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails; -@class DBTEAMLOGShowcaseCreatedDetails; -@class DBTEAMLOGShowcaseDeleteCommentDetails; -@class DBTEAMLOGShowcaseEditCommentDetails; -@class DBTEAMLOGShowcaseEditedDetails; -@class DBTEAMLOGShowcaseFileAddedDetails; -@class DBTEAMLOGShowcaseFileDownloadDetails; -@class DBTEAMLOGShowcaseFileRemovedDetails; -@class DBTEAMLOGShowcaseFileViewDetails; -@class DBTEAMLOGShowcasePermanentlyDeletedDetails; -@class DBTEAMLOGShowcasePostCommentDetails; -@class DBTEAMLOGShowcaseRemoveMemberDetails; -@class DBTEAMLOGShowcaseRenamedDetails; -@class DBTEAMLOGShowcaseRequestAccessDetails; -@class DBTEAMLOGShowcaseResolveCommentDetails; -@class DBTEAMLOGShowcaseRestoredDetails; -@class DBTEAMLOGShowcaseTrashedDeprecatedDetails; -@class DBTEAMLOGShowcaseTrashedDetails; -@class DBTEAMLOGShowcaseUnresolveCommentDetails; -@class DBTEAMLOGShowcaseUntrashedDeprecatedDetails; -@class DBTEAMLOGShowcaseUntrashedDetails; -@class DBTEAMLOGShowcaseViewDetails; -@class DBTEAMLOGSignInAsSessionEndDetails; -@class DBTEAMLOGSignInAsSessionStartDetails; -@class DBTEAMLOGSmartSyncChangePolicyDetails; -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails; -@class DBTEAMLOGSmartSyncNotOptOutDetails; -@class DBTEAMLOGSmartSyncOptOutDetails; -@class DBTEAMLOGSmarterSmartSyncPolicyChangedDetails; -@class DBTEAMLOGSsoAddCertDetails; -@class DBTEAMLOGSsoAddLoginUrlDetails; -@class DBTEAMLOGSsoAddLogoutUrlDetails; -@class DBTEAMLOGSsoChangeCertDetails; -@class DBTEAMLOGSsoChangeLoginUrlDetails; -@class DBTEAMLOGSsoChangeLogoutUrlDetails; -@class DBTEAMLOGSsoChangePolicyDetails; -@class DBTEAMLOGSsoChangeSamlIdentityModeDetails; -@class DBTEAMLOGSsoErrorDetails; -@class DBTEAMLOGSsoRemoveCertDetails; -@class DBTEAMLOGSsoRemoveLoginUrlDetails; -@class DBTEAMLOGSsoRemoveLogoutUrlDetails; -@class DBTEAMLOGStartedEnterpriseAdminSessionDetails; -@class DBTEAMLOGTeamActivityCreateReportDetails; -@class DBTEAMLOGTeamActivityCreateReportFailDetails; -@class DBTEAMLOGTeamBrandingPolicyChangedDetails; -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails; -@class DBTEAMLOGTeamEncryptionKeyCreateKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyDisableKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyEnableKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyRotateKeyDetails; -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails; -@class DBTEAMLOGTeamExtensionsPolicyChangedDetails; -@class DBTEAMLOGTeamFolderChangeStatusDetails; -@class DBTEAMLOGTeamFolderCreateDetails; -@class DBTEAMLOGTeamFolderDowngradeDetails; -@class DBTEAMLOGTeamFolderPermanentlyDeleteDetails; -@class DBTEAMLOGTeamFolderRenameDetails; -@class DBTEAMLOGTeamMergeFromDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestAutoCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestExpiredDetails; -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestReminderDetails; -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestRevokedDetails; -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails; -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails; -@class DBTEAMLOGTeamMergeToDetails; -@class DBTEAMLOGTeamProfileAddBackgroundDetails; -@class DBTEAMLOGTeamProfileAddLogoDetails; -@class DBTEAMLOGTeamProfileChangeBackgroundDetails; -@class DBTEAMLOGTeamProfileChangeDefaultLanguageDetails; -@class DBTEAMLOGTeamProfileChangeLogoDetails; -@class DBTEAMLOGTeamProfileChangeNameDetails; -@class DBTEAMLOGTeamProfileRemoveBackgroundDetails; -@class DBTEAMLOGTeamProfileRemoveLogoDetails; -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails; -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails; -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails; -@class DBTEAMLOGTfaAddBackupPhoneDetails; -@class DBTEAMLOGTfaAddExceptionDetails; -@class DBTEAMLOGTfaAddSecurityKeyDetails; -@class DBTEAMLOGTfaChangeBackupPhoneDetails; -@class DBTEAMLOGTfaChangePolicyDetails; -@class DBTEAMLOGTfaChangeStatusDetails; -@class DBTEAMLOGTfaRemoveBackupPhoneDetails; -@class DBTEAMLOGTfaRemoveExceptionDetails; -@class DBTEAMLOGTfaRemoveSecurityKeyDetails; -@class DBTEAMLOGTfaResetDetails; -@class DBTEAMLOGTwoAccountChangePolicyDetails; -@class DBTEAMLOGUndoNamingConventionDetails; -@class DBTEAMLOGUndoOrganizeFolderWithTidyDetails; -@class DBTEAMLOGUserTagsAddedDetails; -@class DBTEAMLOGUserTagsRemovedDetails; -@class DBTEAMLOGViewerInfoPolicyChangedDetails; -@class DBTEAMLOGWatermarkingPolicyChangedDetails; -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails; -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails; -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventDetails` union. -/// -/// Additional fields depending on the event type. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventDetailsTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventDetailsTag) { - /// (no description). - DBTEAMLOGEventDetailsAdminAlertingAlertStateChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAdminAlertingChangedAlertConfigDetails, - - /// (no description). - DBTEAMLOGEventDetailsAdminAlertingTriggeredAlertDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareRestoreProcessCompletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareRestoreProcessStartedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppBlockedByPermissionsDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppLinkTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppLinkUserDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppUnlinkTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppUnlinkUserDetails, - - /// (no description). - DBTEAMLOGEventDetailsIntegrationConnectedDetails, - - /// (no description). - DBTEAMLOGEventDetailsIntegrationDisconnectedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileAddCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileChangeCommentSubscriptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileDeleteCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileEditCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileLikeCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileResolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileUnlikeCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileUnresolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyAddFoldersDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyAddFolderFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyContentDisposedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyEditDetailsDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyEditDurationDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyExportCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyExportRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyRemoveFoldersDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyReportCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGovernancePolicyZipPartDownloadedDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsActivateAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsAddMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsChangeHoldDetailsDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsChangeHoldNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportCancelledDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportDownloadedDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsExportRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsReleaseAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsRemoveMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsLegalHoldsReportAHoldDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceChangeIpDesktopDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceChangeIpMobileDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceChangeIpWebDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceDeleteOnUnlinkFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceDeleteOnUnlinkSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceLinkFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceLinkSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceManagementDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceManagementEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceSyncBackupStatusChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceUnlinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsDropboxPasswordsExportedDetails, - - /// (no description). - DBTEAMLOGEventDetailsDropboxPasswordsNewDeviceEnrolledDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmRefreshAuthTokenDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalDriveBackupEligibilityStatusCheckedDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalDriveBackupStatusChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureChangeAvailabilityDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureMigrateAccountDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureNotificationEmailsSentDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureRelinquishAccountDetails, - - /// (no description). - DBTEAMLOGEventDetailsDisabledDomainInvitesDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesApproveRequestToJoinTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesDeclineRequestToJoinTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesEmailExistingUsersDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesRequestToJoinTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesSetInviteNewUserPrefToNoDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainInvitesSetInviteNewUserPrefToYesDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainVerificationAddDomainFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainVerificationAddDomainSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsDomainVerificationRemoveDomainDetails, - - /// (no description). - DBTEAMLOGEventDetailsEnabledDomainInvitesDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyCancelKeyDeletionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyCreateKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyDeleteKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyDisableKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyEnableKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyRotateKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamEncryptionKeyScheduleKeyDeletionDetails, - - /// (no description). - DBTEAMLOGEventDetailsApplyNamingConventionDetails, - - /// (no description). - DBTEAMLOGEventDetailsCreateFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileAddDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileAddFromAutomationDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileCopyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileEditDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileGetCopyReferenceDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileLockingLockStatusChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileMoveDetails, - - /// (no description). - DBTEAMLOGEventDetailsFilePermanentlyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFilePreviewDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRestoreDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRevertDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRollbackChangesDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileSaveCopyReferenceDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderOverviewDescriptionChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderOverviewItemPinnedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderOverviewItemUnpinnedDetails, - - /// (no description). - DBTEAMLOGEventDetailsObjectLabelAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsObjectLabelRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsObjectLabelUpdatedValueDetails, - - /// (no description). - DBTEAMLOGEventDetailsOrganizeFolderWithTidyDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayFileDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsRewindFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsUndoNamingConventionDetails, - - /// (no description). - DBTEAMLOGEventDetailsUndoOrganizeFolderWithTidyDetails, - - /// (no description). - DBTEAMLOGEventDetailsUserTagsAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsUserTagsRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmailIngestReceiveFileDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestChangeDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestCloseDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestReceiveFileDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupAddExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupChangeExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupChangeManagementTypeDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupChangeMemberRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupDescriptionUpdatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupJoinPolicyUpdatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupMovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupRemoveExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountLockOrUnlockedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmErrorDetails, - - /// (no description). - DBTEAMLOGEventDetailsGuestAdminSignedInViaTrustedTeamsDetails, - - /// (no description). - DBTEAMLOGEventDetailsGuestAdminSignedOutViaTrustedTeamsDetails, - - /// (no description). - DBTEAMLOGEventDetailsLoginFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsLoginSuccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsLogoutDetails, - - /// (no description). - DBTEAMLOGEventDetailsResellerSupportSessionEndDetails, - - /// (no description). - DBTEAMLOGEventDetailsResellerSupportSessionStartDetails, - - /// (no description). - DBTEAMLOGEventDetailsSignInAsSessionEndDetails, - - /// (no description). - DBTEAMLOGEventDetailsSignInAsSessionStartDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoErrorDetails, - - /// (no description). - DBTEAMLOGEventDetailsBackupAdminInvitationSentDetails, - - /// (no description). - DBTEAMLOGEventDetailsBackupInvitationOpenedDetails, - - /// (no description). - DBTEAMLOGEventDetailsCreateTeamInviteLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeleteTeamInviteLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberAddExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberAddNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeAdminRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeEmailDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeMembershipTypeDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeResellerRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberDeleteManualContactsDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberDeleteProfilePhotoDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberPermanentlyDeleteAccountContentsDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberRemoveExternalIdDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSetProfilePhotoDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsAddCustomQuotaDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangeCustomQuotaDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsRemoveCustomQuotaDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSuggestDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberTransferAccountContentsDetails, - - /// (no description). - DBTEAMLOGEventDetailsPendingSecondaryEmailAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSecondaryEmailDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSecondaryEmailVerifiedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSecondaryMailsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderAddPageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderAddSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRemovePageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRemoveSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRenamePageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderRenameSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderReorderPageDetails, - - /// (no description). - DBTEAMLOGEventDetailsBinderReorderSectionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentAddToFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentArchiveDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentPermanentlyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRemoveFromFolderDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperContentRestoreDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocAddCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocChangeMemberRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocChangeSharingPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocChangeSubscriptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocDeleteCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocEditDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocEditCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocFollowedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocMentionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocOwnershipChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocRequestAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocResolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocRevertDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocSlackShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocTeamInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocTrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocUnresolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocUntrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDocViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperExternalViewAllowDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperExternalViewDefaultTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperExternalViewForbidDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderChangeSubscriptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderFollowedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperFolderTeamInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkChangePermissionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperPublishedLinkViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordChangeDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordResetDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordResetAllDetails, - - /// (no description). - DBTEAMLOGEventDetailsClassificationCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsClassificationCreateReportFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmCreateExceptionsReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmCreateUsageReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsExportMembersReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsExportMembersReportFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalSharingCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalSharingReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoExpirationLinkGenCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoExpirationLinkGenReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkGenCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkGenReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkViewCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoPasswordLinkViewReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsOutdatedLinkViewCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsOutdatedLinkViewReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperAdminExportStartDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareAlertCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsRansomwareAlertCreateReportFailedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncCreateAdminPrivilegeReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamActivityCreateReportDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamActivityCreateReportFailDetails, - - /// (no description). - DBTEAMLOGEventDetailsCollectionShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersFileAddDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferSendDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersTransferViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteAclInviteOnlyDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteAclLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteAclTeamLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteSharedDetails, - - /// (no description). - DBTEAMLOGEventDetailsNoteShareReceiveDetails, - - /// (no description). - DBTEAMLOGEventDetailsOpenNoteSharedDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayFileSharedLinkCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayFileSharedLinkModifiedDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayProjectTeamAddDetails, - - /// (no description). - DBTEAMLOGEventDetailsReplayProjectTeamDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfAddGroupDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfAllowNonMembersToViewSharedLinksDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfExternalInviteWarnDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfFbInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfFbInviteChangeRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfFbUninviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfInviteGroupDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamGrantAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamInviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamInviteChangeRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamJoinDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamJoinFromOobLinkDetails, - - /// (no description). - DBTEAMLOGEventDetailsSfTeamUninviteDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddInviteesDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddLinkExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddLinkPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeDownloadsPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeInviteeRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeLinkAudienceDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeLinkExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeLinkPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeMemberRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentChangeViewerInfoPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentClaimInvitationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentCopyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRelinquishMembershipDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveInviteesDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveLinkExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveLinkPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRequestAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRestoreInviteesDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentRestoreMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentUnshareDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedContentViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeLinkPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeMembersInheritancePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeMembersManagementPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderChangeMembersPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderDeclineInvitationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderMountDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderNestDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderTransferOwnershipDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedFolderUnmountDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkAddExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkChangeExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkChangeVisibilityDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkCopyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkDisableDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkRemoveExpiryDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAddExpirationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAddPasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAllowDownloadDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsAllowDownloadEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsChangeAudienceDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsChangeExpirationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsChangePasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsRemoveExpirationDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkSettingsRemovePasswordDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedLinkViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharedNoteOpenedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShmodelDisableDownloadsDetails, - - /// (no description). - DBTEAMLOGEventDetailsShmodelEnableDownloadsDetails, - - /// (no description). - DBTEAMLOGEventDetailsShmodelGroupShareDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseAccessGrantedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseAddMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseArchivedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseCreatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseDeleteCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseEditedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseEditCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileAddedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileDownloadDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileRemovedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseFileViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcasePermanentlyDeletedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcasePostCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRemoveMemberDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRenamedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRequestAccessDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseResolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseRestoredDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseTrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseTrashedDeprecatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseUnresolveCommentDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseUntrashedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseUntrashedDeprecatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseViewDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoAddCertDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoAddLoginUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoAddLogoutUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeCertDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeLoginUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeLogoutUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangeSamlIdentityModeDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoRemoveCertDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoRemoveLoginUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoRemoveLogoutUrlDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderCreateDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderDowngradeDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderPermanentlyDeleteDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamFolderRenameDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamSelectiveSyncSettingsChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAccountCaptureChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsAdminEmailRemindersChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsAllowDownloadDisabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsAllowDownloadEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsAppPermissionsChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsCameraUploadsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsCaptureTranscriptPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsClassificationChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsComputerBackupPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsContentAdministrationPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataPlacementRestrictionChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataPlacementRestrictionSatisfyPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeDesktopPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeMobilePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeOverageActionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsChangeUnlinkActionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDeviceApprovalsRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsDirectoryRestrictionsAddMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsDirectoryRestrictionsRemoveMembersDetails, - - /// (no description). - DBTEAMLOGEventDetailsDropboxPasswordsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmailIngestPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsEmmRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsExtendedVersionHistoryChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsExternalDriveBackupPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileCommentsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileLockingPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileProviderMigrationPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestsEmailsEnabledDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileRequestsEmailsRestrictedToTeamOnlyDetails, - - /// (no description). - DBTEAMLOGEventDetailsFileTransfersPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsFolderLinkRestrictionPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsGoogleSsoChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsGroupUserManagementChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsIntegrationPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsInviteAcceptanceEmailPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberRequestsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSendInvitePolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangeCapsTypePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSpaceLimitsRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsMemberSuggestionsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsMicrosoftOfficeAddinChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsNetworkControlChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangeDeploymentPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangeMemberLinkPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangeMemberPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDefaultFolderPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperDesktopPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperEnabledUsersGroupAdditionDetails, - - /// (no description). - DBTEAMLOGEventDetailsPaperEnabledUsersGroupRemovalDetails, - - /// (no description). - DBTEAMLOGEventDetailsPasswordStrengthRequirementsChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsPermanentDeleteChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsResellerSupportChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsRewindPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSendForSignaturePolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeFolderJoinPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkAllowChangeExpirationPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkDefaultExpirationPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkEnforcePasswordPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeLinkPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSharingChangeMemberPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseChangeDownloadPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseChangeEnabledPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsShowcaseChangeExternalSharingPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmarterSmartSyncPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncNotOptOutDetails, - - /// (no description). - DBTEAMLOGEventDetailsSmartSyncOptOutDetails, - - /// (no description). - DBTEAMLOGEventDetailsSsoChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamBrandingPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamExtensionsPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamSelectiveSyncPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamSharingWhitelistSubjectsChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaAddExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaRemoveExceptionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTwoAccountChangePolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsViewerInfoPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsWatermarkingPolicyChangedDetails, - - /// (no description). - DBTEAMLOGEventDetailsWebSessionsChangeActiveSessionLimitDetails, - - /// (no description). - DBTEAMLOGEventDetailsWebSessionsChangeFixedLengthPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsWebSessionsChangeIdleLengthPolicyDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataResidencyMigrationRequestSuccessfulDetails, - - /// (no description). - DBTEAMLOGEventDetailsDataResidencyMigrationRequestUnsuccessfulDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeFromDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeToDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileAddBackgroundDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileAddLogoDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeBackgroundDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeDefaultLanguageDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeLogoDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileChangeNameDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileRemoveBackgroundDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamProfileRemoveLogoDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaAddBackupPhoneDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaAddSecurityKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaChangeBackupPhoneDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaRemoveBackupPhoneDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaRemoveSecurityKeyDetails, - - /// (no description). - DBTEAMLOGEventDetailsTfaResetDetails, - - /// (no description). - DBTEAMLOGEventDetailsChangedEnterpriseAdminRoleDetails, - - /// (no description). - DBTEAMLOGEventDetailsChangedEnterpriseConnectedTeamStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsEndedEnterpriseAdminSessionDetails, - - /// (no description). - DBTEAMLOGEventDetailsEndedEnterpriseAdminSessionDeprecatedDetails, - - /// (no description). - DBTEAMLOGEventDetailsEnterpriseSettingsLockingDetails, - - /// (no description). - DBTEAMLOGEventDetailsGuestAdminChangeStatusDetails, - - /// (no description). - DBTEAMLOGEventDetailsStartedEnterpriseAdminSessionDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAcceptedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAcceptedShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAcceptedShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestAutoCanceledDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestCanceledDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestCanceledShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestCanceledShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestExpiredDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestExpiredShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestExpiredShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestRejectedShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestRejectedShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestReminderDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestReminderShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestReminderShownToSecondaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestRevokedDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestSentShownToPrimaryTeamDetails, - - /// (no description). - DBTEAMLOGEventDetailsTeamMergeRequestSentShownToSecondaryTeamDetails, - - /// Hints that this event was returned with missing details due to an - /// internal error. - DBTEAMLOGEventDetailsMissingDetails, - - /// (no description). - DBTEAMLOGEventDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventDetailsTag tag; - -/// (no description). @note Ensure the `isAdminAlertingAlertStateChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertStateChangedDetails *adminAlertingAlertStateChangedDetails; - -/// (no description). @note Ensure the -/// `isAdminAlertingChangedAlertConfigDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingChangedAlertConfigDetails *adminAlertingChangedAlertConfigDetails; - -/// (no description). @note Ensure the `isAdminAlertingTriggeredAlertDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingTriggeredAlertDetails *adminAlertingTriggeredAlertDetails; - -/// (no description). @note Ensure the -/// `isRansomwareRestoreProcessCompletedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGRansomwareRestoreProcessCompletedDetails *ransomwareRestoreProcessCompletedDetails; - -/// (no description). @note Ensure the -/// `isRansomwareRestoreProcessStartedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareRestoreProcessStartedDetails *ransomwareRestoreProcessStartedDetails; - -/// (no description). @note Ensure the `isAppBlockedByPermissionsDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppBlockedByPermissionsDetails *appBlockedByPermissionsDetails; - -/// (no description). @note Ensure the `isAppLinkTeamDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkTeamDetails *appLinkTeamDetails; - -/// (no description). @note Ensure the `isAppLinkUserDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkUserDetails *appLinkUserDetails; - -/// (no description). @note Ensure the `isAppUnlinkTeamDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkTeamDetails *appUnlinkTeamDetails; - -/// (no description). @note Ensure the `isAppUnlinkUserDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkUserDetails *appUnlinkUserDetails; - -/// (no description). @note Ensure the `isIntegrationConnectedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationConnectedDetails *integrationConnectedDetails; - -/// (no description). @note Ensure the `isIntegrationDisconnectedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationDisconnectedDetails *integrationDisconnectedDetails; - -/// (no description). @note Ensure the `isFileAddCommentDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddCommentDetails *fileAddCommentDetails; - -/// (no description). @note Ensure the `isFileChangeCommentSubscriptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileChangeCommentSubscriptionDetails *fileChangeCommentSubscriptionDetails; - -/// (no description). @note Ensure the `isFileDeleteCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteCommentDetails *fileDeleteCommentDetails; - -/// (no description). @note Ensure the `isFileEditCommentDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditCommentDetails *fileEditCommentDetails; - -/// (no description). @note Ensure the `isFileLikeCommentDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLikeCommentDetails *fileLikeCommentDetails; - -/// (no description). @note Ensure the `isFileResolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileResolveCommentDetails *fileResolveCommentDetails; - -/// (no description). @note Ensure the `isFileUnlikeCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnlikeCommentDetails *fileUnlikeCommentDetails; - -/// (no description). @note Ensure the `isFileUnresolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnresolveCommentDetails *fileUnresolveCommentDetails; - -/// (no description). @note Ensure the `isGovernancePolicyAddFoldersDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFoldersDetails *governancePolicyAddFoldersDetails; - -/// (no description). @note Ensure the -/// `isGovernancePolicyAddFolderFailedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFolderFailedDetails *governancePolicyAddFolderFailedDetails; - -/// (no description). @note Ensure the -/// `isGovernancePolicyContentDisposedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyContentDisposedDetails *governancePolicyContentDisposedDetails; - -/// (no description). @note Ensure the `isGovernancePolicyCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyCreateDetails *governancePolicyCreateDetails; - -/// (no description). @note Ensure the `isGovernancePolicyDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyDeleteDetails *governancePolicyDeleteDetails; - -/// (no description). @note Ensure the `isGovernancePolicyEditDetailsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDetailsDetails *governancePolicyEditDetailsDetails; - -/// (no description). @note Ensure the `isGovernancePolicyEditDurationDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDurationDetails *governancePolicyEditDurationDetails; - -/// (no description). @note Ensure the `isGovernancePolicyExportCreatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportCreatedDetails *governancePolicyExportCreatedDetails; - -/// (no description). @note Ensure the `isGovernancePolicyExportRemovedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportRemovedDetails *governancePolicyExportRemovedDetails; - -/// (no description). @note Ensure the `isGovernancePolicyRemoveFoldersDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyRemoveFoldersDetails *governancePolicyRemoveFoldersDetails; - -/// (no description). @note Ensure the `isGovernancePolicyReportCreatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyReportCreatedDetails *governancePolicyReportCreatedDetails; - -/// (no description). @note Ensure the -/// `isGovernancePolicyZipPartDownloadedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *governancePolicyZipPartDownloadedDetails; - -/// (no description). @note Ensure the `isLegalHoldsActivateAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsActivateAHoldDetails *legalHoldsActivateAHoldDetails; - -/// (no description). @note Ensure the `isLegalHoldsAddMembersDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsAddMembersDetails *legalHoldsAddMembersDetails; - -/// (no description). @note Ensure the `isLegalHoldsChangeHoldDetailsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *legalHoldsChangeHoldDetailsDetails; - -/// (no description). @note Ensure the `isLegalHoldsChangeHoldNameDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldNameDetails *legalHoldsChangeHoldNameDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportAHoldDetails *legalHoldsExportAHoldDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportCancelledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportCancelledDetails *legalHoldsExportCancelledDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportDownloadedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportDownloadedDetails *legalHoldsExportDownloadedDetails; - -/// (no description). @note Ensure the `isLegalHoldsExportRemovedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportRemovedDetails *legalHoldsExportRemovedDetails; - -/// (no description). @note Ensure the `isLegalHoldsReleaseAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReleaseAHoldDetails *legalHoldsReleaseAHoldDetails; - -/// (no description). @note Ensure the `isLegalHoldsRemoveMembersDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsRemoveMembersDetails *legalHoldsRemoveMembersDetails; - -/// (no description). @note Ensure the `isLegalHoldsReportAHoldDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReportAHoldDetails *legalHoldsReportAHoldDetails; - -/// (no description). @note Ensure the `isDeviceChangeIpDesktopDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpDesktopDetails *deviceChangeIpDesktopDetails; - -/// (no description). @note Ensure the `isDeviceChangeIpMobileDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpMobileDetails *deviceChangeIpMobileDetails; - -/// (no description). @note Ensure the `isDeviceChangeIpWebDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpWebDetails *deviceChangeIpWebDetails; - -/// (no description). @note Ensure the `isDeviceDeleteOnUnlinkFailDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *deviceDeleteOnUnlinkFailDetails; - -/// (no description). @note Ensure the `isDeviceDeleteOnUnlinkSuccessDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *deviceDeleteOnUnlinkSuccessDetails; - -/// (no description). @note Ensure the `isDeviceLinkFailDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkFailDetails *deviceLinkFailDetails; - -/// (no description). @note Ensure the `isDeviceLinkSuccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkSuccessDetails *deviceLinkSuccessDetails; - -/// (no description). @note Ensure the `isDeviceManagementDisabledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementDisabledDetails *deviceManagementDisabledDetails; - -/// (no description). @note Ensure the `isDeviceManagementEnabledDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementEnabledDetails *deviceManagementEnabledDetails; - -/// (no description). @note Ensure the `isDeviceSyncBackupStatusChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceSyncBackupStatusChangedDetails *deviceSyncBackupStatusChangedDetails; - -/// (no description). @note Ensure the `isDeviceUnlinkDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceUnlinkDetails *deviceUnlinkDetails; - -/// (no description). @note Ensure the `isDropboxPasswordsExportedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsExportedDetails *dropboxPasswordsExportedDetails; - -/// (no description). @note Ensure the -/// `isDropboxPasswordsNewDeviceEnrolledDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *dropboxPasswordsNewDeviceEnrolledDetails; - -/// (no description). @note Ensure the `isEmmRefreshAuthTokenDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRefreshAuthTokenDetails *emmRefreshAuthTokenDetails; - -/// (no description). @note Ensure the -/// `isExternalDriveBackupEligibilityStatusCheckedDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *externalDriveBackupEligibilityStatusCheckedDetails; - -/// (no description). @note Ensure the -/// `isExternalDriveBackupStatusChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupStatusChangedDetails *externalDriveBackupStatusChangedDetails; - -/// (no description). @note Ensure the -/// `isAccountCaptureChangeAvailabilityDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGAccountCaptureChangeAvailabilityDetails *accountCaptureChangeAvailabilityDetails; - -/// (no description). @note Ensure the `isAccountCaptureMigrateAccountDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureMigrateAccountDetails *accountCaptureMigrateAccountDetails; - -/// (no description). @note Ensure the -/// `isAccountCaptureNotificationEmailsSentDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *accountCaptureNotificationEmailsSentDetails; - -/// (no description). @note Ensure the -/// `isAccountCaptureRelinquishAccountDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureRelinquishAccountDetails *accountCaptureRelinquishAccountDetails; - -/// (no description). @note Ensure the `isDisabledDomainInvitesDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDisabledDomainInvitesDetails *disabledDomainInvitesDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesApproveRequestToJoinTeamDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *domainInvitesApproveRequestToJoinTeamDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesDeclineRequestToJoinTeamDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *domainInvitesDeclineRequestToJoinTeamDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesEmailExistingUsersDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesEmailExistingUsersDetails *domainInvitesEmailExistingUsersDetails; - -/// (no description). @note Ensure the `isDomainInvitesRequestToJoinTeamDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *domainInvitesRequestToJoinTeamDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesSetInviteNewUserPrefToNoDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *domainInvitesSetInviteNewUserPrefToNoDetails; - -/// (no description). @note Ensure the -/// `isDomainInvitesSetInviteNewUserPrefToYesDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *domainInvitesSetInviteNewUserPrefToYesDetails; - -/// (no description). @note Ensure the -/// `isDomainVerificationAddDomainFailDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationAddDomainFailDetails *domainVerificationAddDomainFailDetails; - -/// (no description). @note Ensure the -/// `isDomainVerificationAddDomainSuccessDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainVerificationAddDomainSuccessDetails *domainVerificationAddDomainSuccessDetails; - -/// (no description). @note Ensure the `isDomainVerificationRemoveDomainDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationRemoveDomainDetails *domainVerificationRemoveDomainDetails; - -/// (no description). @note Ensure the `isEnabledDomainInvitesDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEnabledDomainInvitesDetails *enabledDomainInvitesDetails; - -/// (no description). @note Ensure the -/// `isTeamEncryptionKeyCancelKeyDeletionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *teamEncryptionKeyCancelKeyDeletionDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyCreateKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *teamEncryptionKeyCreateKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyDeleteKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *teamEncryptionKeyDeleteKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyDisableKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *teamEncryptionKeyDisableKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyEnableKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *teamEncryptionKeyEnableKeyDetails; - -/// (no description). @note Ensure the `isTeamEncryptionKeyRotateKeyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *teamEncryptionKeyRotateKeyDetails; - -/// (no description). @note Ensure the -/// `isTeamEncryptionKeyScheduleKeyDeletionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *teamEncryptionKeyScheduleKeyDeletionDetails; - -/// (no description). @note Ensure the `isApplyNamingConventionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGApplyNamingConventionDetails *applyNamingConventionDetails; - -/// (no description). @note Ensure the `isCreateFolderDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCreateFolderDetails *createFolderDetails; - -/// (no description). @note Ensure the `isFileAddDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddDetails *fileAddDetails; - -/// (no description). @note Ensure the `isFileAddFromAutomationDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddFromAutomationDetails *fileAddFromAutomationDetails; - -/// (no description). @note Ensure the `isFileCopyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileCopyDetails *fileCopyDetails; - -/// (no description). @note Ensure the `isFileDeleteDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteDetails *fileDeleteDetails; - -/// (no description). @note Ensure the `isFileDownloadDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDownloadDetails *fileDownloadDetails; - -/// (no description). @note Ensure the `isFileEditDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditDetails *fileEditDetails; - -/// (no description). @note Ensure the `isFileGetCopyReferenceDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileGetCopyReferenceDetails *fileGetCopyReferenceDetails; - -/// (no description). @note Ensure the `isFileLockingLockStatusChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingLockStatusChangedDetails *fileLockingLockStatusChangedDetails; - -/// (no description). @note Ensure the `isFileMoveDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileMoveDetails *fileMoveDetails; - -/// (no description). @note Ensure the `isFilePermanentlyDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePermanentlyDeleteDetails *filePermanentlyDeleteDetails; - -/// (no description). @note Ensure the `isFilePreviewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePreviewDetails *filePreviewDetails; - -/// (no description). @note Ensure the `isFileRenameDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRenameDetails *fileRenameDetails; - -/// (no description). @note Ensure the `isFileRestoreDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRestoreDetails *fileRestoreDetails; - -/// (no description). @note Ensure the `isFileRevertDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRevertDetails *fileRevertDetails; - -/// (no description). @note Ensure the `isFileRollbackChangesDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRollbackChangesDetails *fileRollbackChangesDetails; - -/// (no description). @note Ensure the `isFileSaveCopyReferenceDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileSaveCopyReferenceDetails *fileSaveCopyReferenceDetails; - -/// (no description). @note Ensure the -/// `isFolderOverviewDescriptionChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFolderOverviewDescriptionChangedDetails *folderOverviewDescriptionChangedDetails; - -/// (no description). @note Ensure the `isFolderOverviewItemPinnedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemPinnedDetails *folderOverviewItemPinnedDetails; - -/// (no description). @note Ensure the `isFolderOverviewItemUnpinnedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemUnpinnedDetails *folderOverviewItemUnpinnedDetails; - -/// (no description). @note Ensure the `isObjectLabelAddedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelAddedDetails *objectLabelAddedDetails; - -/// (no description). @note Ensure the `isObjectLabelRemovedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelRemovedDetails *objectLabelRemovedDetails; - -/// (no description). @note Ensure the `isObjectLabelUpdatedValueDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelUpdatedValueDetails *objectLabelUpdatedValueDetails; - -/// (no description). @note Ensure the `isOrganizeFolderWithTidyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizeFolderWithTidyDetails *organizeFolderWithTidyDetails; - -/// (no description). @note Ensure the `isReplayFileDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileDeleteDetails *replayFileDeleteDetails; - -/// (no description). @note Ensure the `isRewindFolderDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindFolderDetails *rewindFolderDetails; - -/// (no description). @note Ensure the `isUndoNamingConventionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUndoNamingConventionDetails *undoNamingConventionDetails; - -/// (no description). @note Ensure the `isUndoOrganizeFolderWithTidyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGUndoOrganizeFolderWithTidyDetails *undoOrganizeFolderWithTidyDetails; - -/// (no description). @note Ensure the `isUserTagsAddedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsAddedDetails *userTagsAddedDetails; - -/// (no description). @note Ensure the `isUserTagsRemovedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsRemovedDetails *userTagsRemovedDetails; - -/// (no description). @note Ensure the `isEmailIngestReceiveFileDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestReceiveFileDetails *emailIngestReceiveFileDetails; - -/// (no description). @note Ensure the `isFileRequestChangeDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestChangeDetails *fileRequestChangeDetails; - -/// (no description). @note Ensure the `isFileRequestCloseDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCloseDetails *fileRequestCloseDetails; - -/// (no description). @note Ensure the `isFileRequestCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCreateDetails *fileRequestCreateDetails; - -/// (no description). @note Ensure the `isFileRequestDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestDeleteDetails *fileRequestDeleteDetails; - -/// (no description). @note Ensure the `isFileRequestReceiveFileDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestReceiveFileDetails *fileRequestReceiveFileDetails; - -/// (no description). @note Ensure the `isGroupAddExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddExternalIdDetails *groupAddExternalIdDetails; - -/// (no description). @note Ensure the `isGroupAddMemberDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddMemberDetails *groupAddMemberDetails; - -/// (no description). @note Ensure the `isGroupChangeExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeExternalIdDetails *groupChangeExternalIdDetails; - -/// (no description). @note Ensure the `isGroupChangeManagementTypeDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeManagementTypeDetails *groupChangeManagementTypeDetails; - -/// (no description). @note Ensure the `isGroupChangeMemberRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeMemberRoleDetails *groupChangeMemberRoleDetails; - -/// (no description). @note Ensure the `isGroupCreateDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupCreateDetails *groupCreateDetails; - -/// (no description). @note Ensure the `isGroupDeleteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDeleteDetails *groupDeleteDetails; - -/// (no description). @note Ensure the `isGroupDescriptionUpdatedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDescriptionUpdatedDetails *groupDescriptionUpdatedDetails; - -/// (no description). @note Ensure the `isGroupJoinPolicyUpdatedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupJoinPolicyUpdatedDetails *groupJoinPolicyUpdatedDetails; - -/// (no description). @note Ensure the `isGroupMovedDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupMovedDetails *groupMovedDetails; - -/// (no description). @note Ensure the `isGroupRemoveExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveExternalIdDetails *groupRemoveExternalIdDetails; - -/// (no description). @note Ensure the `isGroupRemoveMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveMemberDetails *groupRemoveMemberDetails; - -/// (no description). @note Ensure the `isGroupRenameDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRenameDetails *groupRenameDetails; - -/// (no description). @note Ensure the `isAccountLockOrUnlockedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountLockOrUnlockedDetails *accountLockOrUnlockedDetails; - -/// (no description). @note Ensure the `isEmmErrorDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmErrorDetails *emmErrorDetails; - -/// (no description). @note Ensure the -/// `isGuestAdminSignedInViaTrustedTeamsDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *guestAdminSignedInViaTrustedTeamsDetails; - -/// (no description). @note Ensure the -/// `isGuestAdminSignedOutViaTrustedTeamsDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *guestAdminSignedOutViaTrustedTeamsDetails; - -/// (no description). @note Ensure the `isLoginFailDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginFailDetails *loginFailDetails; - -/// (no description). @note Ensure the `isLoginSuccessDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginSuccessDetails *loginSuccessDetails; - -/// (no description). @note Ensure the `isLogoutDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLogoutDetails *logoutDetails; - -/// (no description). @note Ensure the `isResellerSupportSessionEndDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionEndDetails *resellerSupportSessionEndDetails; - -/// (no description). @note Ensure the `isResellerSupportSessionStartDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionStartDetails *resellerSupportSessionStartDetails; - -/// (no description). @note Ensure the `isSignInAsSessionEndDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionEndDetails *signInAsSessionEndDetails; - -/// (no description). @note Ensure the `isSignInAsSessionStartDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionStartDetails *signInAsSessionStartDetails; - -/// (no description). @note Ensure the `isSsoErrorDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoErrorDetails *ssoErrorDetails; - -/// (no description). @note Ensure the `isBackupAdminInvitationSentDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGBackupAdminInvitationSentDetails *backupAdminInvitationSentDetails; - -/// (no description). @note Ensure the `isBackupInvitationOpenedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBackupInvitationOpenedDetails *backupInvitationOpenedDetails; - -/// (no description). @note Ensure the `isCreateTeamInviteLinkDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCreateTeamInviteLinkDetails *createTeamInviteLinkDetails; - -/// (no description). @note Ensure the `isDeleteTeamInviteLinkDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeleteTeamInviteLinkDetails *deleteTeamInviteLinkDetails; - -/// (no description). @note Ensure the `isMemberAddExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddExternalIdDetails *memberAddExternalIdDetails; - -/// (no description). @note Ensure the `isMemberAddNameDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddNameDetails *memberAddNameDetails; - -/// (no description). @note Ensure the `isMemberChangeAdminRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeAdminRoleDetails *memberChangeAdminRoleDetails; - -/// (no description). @note Ensure the `isMemberChangeEmailDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeEmailDetails *memberChangeEmailDetails; - -/// (no description). @note Ensure the `isMemberChangeExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeExternalIdDetails *memberChangeExternalIdDetails; - -/// (no description). @note Ensure the `isMemberChangeMembershipTypeDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeMembershipTypeDetails *memberChangeMembershipTypeDetails; - -/// (no description). @note Ensure the `isMemberChangeNameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeNameDetails *memberChangeNameDetails; - -/// (no description). @note Ensure the `isMemberChangeResellerRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeResellerRoleDetails *memberChangeResellerRoleDetails; - -/// (no description). @note Ensure the `isMemberChangeStatusDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeStatusDetails *memberChangeStatusDetails; - -/// (no description). @note Ensure the `isMemberDeleteManualContactsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteManualContactsDetails *memberDeleteManualContactsDetails; - -/// (no description). @note Ensure the `isMemberDeleteProfilePhotoDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteProfilePhotoDetails *memberDeleteProfilePhotoDetails; - -/// (no description). @note Ensure the -/// `isMemberPermanentlyDeleteAccountContentsDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *memberPermanentlyDeleteAccountContentsDetails; - -/// (no description). @note Ensure the `isMemberRemoveExternalIdDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveExternalIdDetails *memberRemoveExternalIdDetails; - -/// (no description). @note Ensure the `isMemberSetProfilePhotoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSetProfilePhotoDetails *memberSetProfilePhotoDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsAddCustomQuotaDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *memberSpaceLimitsAddCustomQuotaDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsChangeCustomQuotaDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *memberSpaceLimitsChangeCustomQuotaDetails; - -/// (no description). @note Ensure the `isMemberSpaceLimitsChangeStatusDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *memberSpaceLimitsChangeStatusDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsRemoveCustomQuotaDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *memberSpaceLimitsRemoveCustomQuotaDetails; - -/// (no description). @note Ensure the `isMemberSuggestDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestDetails *memberSuggestDetails; - -/// (no description). @note Ensure the `isMemberTransferAccountContentsDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberTransferAccountContentsDetails *memberTransferAccountContentsDetails; - -/// (no description). @note Ensure the `isPendingSecondaryEmailAddedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPendingSecondaryEmailAddedDetails *pendingSecondaryEmailAddedDetails; - -/// (no description). @note Ensure the `isSecondaryEmailDeletedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailDeletedDetails *secondaryEmailDeletedDetails; - -/// (no description). @note Ensure the `isSecondaryEmailVerifiedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailVerifiedDetails *secondaryEmailVerifiedDetails; - -/// (no description). @note Ensure the `isSecondaryMailsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicyChangedDetails *secondaryMailsPolicyChangedDetails; - -/// (no description). @note Ensure the `isBinderAddPageDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddPageDetails *binderAddPageDetails; - -/// (no description). @note Ensure the `isBinderAddSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddSectionDetails *binderAddSectionDetails; - -/// (no description). @note Ensure the `isBinderRemovePageDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemovePageDetails *binderRemovePageDetails; - -/// (no description). @note Ensure the `isBinderRemoveSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemoveSectionDetails *binderRemoveSectionDetails; - -/// (no description). @note Ensure the `isBinderRenamePageDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenamePageDetails *binderRenamePageDetails; - -/// (no description). @note Ensure the `isBinderRenameSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenameSectionDetails *binderRenameSectionDetails; - -/// (no description). @note Ensure the `isBinderReorderPageDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderPageDetails *binderReorderPageDetails; - -/// (no description). @note Ensure the `isBinderReorderSectionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderSectionDetails *binderReorderSectionDetails; - -/// (no description). @note Ensure the `isPaperContentAddMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddMemberDetails *paperContentAddMemberDetails; - -/// (no description). @note Ensure the `isPaperContentAddToFolderDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddToFolderDetails *paperContentAddToFolderDetails; - -/// (no description). @note Ensure the `isPaperContentArchiveDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentArchiveDetails *paperContentArchiveDetails; - -/// (no description). @note Ensure the `isPaperContentCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentCreateDetails *paperContentCreateDetails; - -/// (no description). @note Ensure the `isPaperContentPermanentlyDeleteDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentPermanentlyDeleteDetails *paperContentPermanentlyDeleteDetails; - -/// (no description). @note Ensure the `isPaperContentRemoveFromFolderDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveFromFolderDetails *paperContentRemoveFromFolderDetails; - -/// (no description). @note Ensure the `isPaperContentRemoveMemberDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveMemberDetails *paperContentRemoveMemberDetails; - -/// (no description). @note Ensure the `isPaperContentRenameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRenameDetails *paperContentRenameDetails; - -/// (no description). @note Ensure the `isPaperContentRestoreDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRestoreDetails *paperContentRestoreDetails; - -/// (no description). @note Ensure the `isPaperDocAddCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocAddCommentDetails *paperDocAddCommentDetails; - -/// (no description). @note Ensure the `isPaperDocChangeMemberRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeMemberRoleDetails *paperDocChangeMemberRoleDetails; - -/// (no description). @note Ensure the `isPaperDocChangeSharingPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSharingPolicyDetails *paperDocChangeSharingPolicyDetails; - -/// (no description). @note Ensure the `isPaperDocChangeSubscriptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSubscriptionDetails *paperDocChangeSubscriptionDetails; - -/// (no description). @note Ensure the `isPaperDocDeletedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeletedDetails *paperDocDeletedDetails; - -/// (no description). @note Ensure the `isPaperDocDeleteCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeleteCommentDetails *paperDocDeleteCommentDetails; - -/// (no description). @note Ensure the `isPaperDocDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDownloadDetails *paperDocDownloadDetails; - -/// (no description). @note Ensure the `isPaperDocEditDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditDetails *paperDocEditDetails; - -/// (no description). @note Ensure the `isPaperDocEditCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditCommentDetails *paperDocEditCommentDetails; - -/// (no description). @note Ensure the `isPaperDocFollowedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocFollowedDetails *paperDocFollowedDetails; - -/// (no description). @note Ensure the `isPaperDocMentionDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocMentionDetails *paperDocMentionDetails; - -/// (no description). @note Ensure the `isPaperDocOwnershipChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocOwnershipChangedDetails *paperDocOwnershipChangedDetails; - -/// (no description). @note Ensure the `isPaperDocRequestAccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRequestAccessDetails *paperDocRequestAccessDetails; - -/// (no description). @note Ensure the `isPaperDocResolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocResolveCommentDetails *paperDocResolveCommentDetails; - -/// (no description). @note Ensure the `isPaperDocRevertDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRevertDetails *paperDocRevertDetails; - -/// (no description). @note Ensure the `isPaperDocSlackShareDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocSlackShareDetails *paperDocSlackShareDetails; - -/// (no description). @note Ensure the `isPaperDocTeamInviteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTeamInviteDetails *paperDocTeamInviteDetails; - -/// (no description). @note Ensure the `isPaperDocTrashedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTrashedDetails *paperDocTrashedDetails; - -/// (no description). @note Ensure the `isPaperDocUnresolveCommentDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUnresolveCommentDetails *paperDocUnresolveCommentDetails; - -/// (no description). @note Ensure the `isPaperDocUntrashedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUntrashedDetails *paperDocUntrashedDetails; - -/// (no description). @note Ensure the `isPaperDocViewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocViewDetails *paperDocViewDetails; - -/// (no description). @note Ensure the `isPaperExternalViewAllowDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewAllowDetails *paperExternalViewAllowDetails; - -/// (no description). @note Ensure the `isPaperExternalViewDefaultTeamDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewDefaultTeamDetails *paperExternalViewDefaultTeamDetails; - -/// (no description). @note Ensure the `isPaperExternalViewForbidDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewForbidDetails *paperExternalViewForbidDetails; - -/// (no description). @note Ensure the `isPaperFolderChangeSubscriptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderChangeSubscriptionDetails *paperFolderChangeSubscriptionDetails; - -/// (no description). @note Ensure the `isPaperFolderDeletedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderDeletedDetails *paperFolderDeletedDetails; - -/// (no description). @note Ensure the `isPaperFolderFollowedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderFollowedDetails *paperFolderFollowedDetails; - -/// (no description). @note Ensure the `isPaperFolderTeamInviteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderTeamInviteDetails *paperFolderTeamInviteDetails; - -/// (no description). @note Ensure the -/// `isPaperPublishedLinkChangePermissionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGPaperPublishedLinkChangePermissionDetails *paperPublishedLinkChangePermissionDetails; - -/// (no description). @note Ensure the `isPaperPublishedLinkCreateDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkCreateDetails *paperPublishedLinkCreateDetails; - -/// (no description). @note Ensure the `isPaperPublishedLinkDisabledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkDisabledDetails *paperPublishedLinkDisabledDetails; - -/// (no description). @note Ensure the `isPaperPublishedLinkViewDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkViewDetails *paperPublishedLinkViewDetails; - -/// (no description). @note Ensure the `isPasswordChangeDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordChangeDetails *passwordChangeDetails; - -/// (no description). @note Ensure the `isPasswordResetDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetDetails *passwordResetDetails; - -/// (no description). @note Ensure the `isPasswordResetAllDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetAllDetails *passwordResetAllDetails; - -/// (no description). @note Ensure the `isClassificationCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportDetails *classificationCreateReportDetails; - -/// (no description). @note Ensure the `isClassificationCreateReportFailDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportFailDetails *classificationCreateReportFailDetails; - -/// (no description). @note Ensure the `isEmmCreateExceptionsReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateExceptionsReportDetails *emmCreateExceptionsReportDetails; - -/// (no description). @note Ensure the `isEmmCreateUsageReportDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateUsageReportDetails *emmCreateUsageReportDetails; - -/// (no description). @note Ensure the `isExportMembersReportDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportDetails *exportMembersReportDetails; - -/// (no description). @note Ensure the `isExportMembersReportFailDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportFailDetails *exportMembersReportFailDetails; - -/// (no description). @note Ensure the `isExternalSharingCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingCreateReportDetails *externalSharingCreateReportDetails; - -/// (no description). @note Ensure the `isExternalSharingReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingReportFailedDetails *externalSharingReportFailedDetails; - -/// (no description). @note Ensure the -/// `isNoExpirationLinkGenCreateReportDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenCreateReportDetails *noExpirationLinkGenCreateReportDetails; - -/// (no description). @note Ensure the -/// `isNoExpirationLinkGenReportFailedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenReportFailedDetails *noExpirationLinkGenReportFailedDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkGenCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenCreateReportDetails *noPasswordLinkGenCreateReportDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkGenReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenReportFailedDetails *noPasswordLinkGenReportFailedDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkViewCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewCreateReportDetails *noPasswordLinkViewCreateReportDetails; - -/// (no description). @note Ensure the `isNoPasswordLinkViewReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewReportFailedDetails *noPasswordLinkViewReportFailedDetails; - -/// (no description). @note Ensure the `isOutdatedLinkViewCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewCreateReportDetails *outdatedLinkViewCreateReportDetails; - -/// (no description). @note Ensure the `isOutdatedLinkViewReportFailedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewReportFailedDetails *outdatedLinkViewReportFailedDetails; - -/// (no description). @note Ensure the `isPaperAdminExportStartDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperAdminExportStartDetails *paperAdminExportStartDetails; - -/// (no description). @note Ensure the `isRansomwareAlertCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareAlertCreateReportDetails *ransomwareAlertCreateReportDetails; - -/// (no description). @note Ensure the -/// `isRansomwareAlertCreateReportFailedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGRansomwareAlertCreateReportFailedDetails *ransomwareAlertCreateReportFailedDetails; - -/// (no description). @note Ensure the -/// `isSmartSyncCreateAdminPrivilegeReportDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *smartSyncCreateAdminPrivilegeReportDetails; - -/// (no description). @note Ensure the `isTeamActivityCreateReportDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportDetails *teamActivityCreateReportDetails; - -/// (no description). @note Ensure the `isTeamActivityCreateReportFailDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportFailDetails *teamActivityCreateReportFailDetails; - -/// (no description). @note Ensure the `isCollectionShareDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCollectionShareDetails *collectionShareDetails; - -/// (no description). @note Ensure the `isFileTransfersFileAddDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersFileAddDetails *fileTransfersFileAddDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferDeleteDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDeleteDetails *fileTransfersTransferDeleteDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferDownloadDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDownloadDetails *fileTransfersTransferDownloadDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferSendDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferSendDetails *fileTransfersTransferSendDetails; - -/// (no description). @note Ensure the `isFileTransfersTransferViewDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferViewDetails *fileTransfersTransferViewDetails; - -/// (no description). @note Ensure the `isNoteAclInviteOnlyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclInviteOnlyDetails *noteAclInviteOnlyDetails; - -/// (no description). @note Ensure the `isNoteAclLinkDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclLinkDetails *noteAclLinkDetails; - -/// (no description). @note Ensure the `isNoteAclTeamLinkDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclTeamLinkDetails *noteAclTeamLinkDetails; - -/// (no description). @note Ensure the `isNoteSharedDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteSharedDetails *noteSharedDetails; - -/// (no description). @note Ensure the `isNoteShareReceiveDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteShareReceiveDetails *noteShareReceiveDetails; - -/// (no description). @note Ensure the `isOpenNoteSharedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOpenNoteSharedDetails *openNoteSharedDetails; - -/// (no description). @note Ensure the `isReplayFileSharedLinkCreatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkCreatedDetails *replayFileSharedLinkCreatedDetails; - -/// (no description). @note Ensure the `isReplayFileSharedLinkModifiedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkModifiedDetails *replayFileSharedLinkModifiedDetails; - -/// (no description). @note Ensure the `isReplayProjectTeamAddDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamAddDetails *replayProjectTeamAddDetails; - -/// (no description). @note Ensure the `isReplayProjectTeamDeleteDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamDeleteDetails *replayProjectTeamDeleteDetails; - -/// (no description). @note Ensure the `isSfAddGroupDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfAddGroupDetails *sfAddGroupDetails; - -/// (no description). @note Ensure the -/// `isSfAllowNonMembersToViewSharedLinksDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *sfAllowNonMembersToViewSharedLinksDetails; - -/// (no description). @note Ensure the `isSfExternalInviteWarnDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfExternalInviteWarnDetails *sfExternalInviteWarnDetails; - -/// (no description). @note Ensure the `isSfFbInviteDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteDetails *sfFbInviteDetails; - -/// (no description). @note Ensure the `isSfFbInviteChangeRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteChangeRoleDetails *sfFbInviteChangeRoleDetails; - -/// (no description). @note Ensure the `isSfFbUninviteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbUninviteDetails *sfFbUninviteDetails; - -/// (no description). @note Ensure the `isSfInviteGroupDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfInviteGroupDetails *sfInviteGroupDetails; - -/// (no description). @note Ensure the `isSfTeamGrantAccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamGrantAccessDetails *sfTeamGrantAccessDetails; - -/// (no description). @note Ensure the `isSfTeamInviteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteDetails *sfTeamInviteDetails; - -/// (no description). @note Ensure the `isSfTeamInviteChangeRoleDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteChangeRoleDetails *sfTeamInviteChangeRoleDetails; - -/// (no description). @note Ensure the `isSfTeamJoinDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinDetails *sfTeamJoinDetails; - -/// (no description). @note Ensure the `isSfTeamJoinFromOobLinkDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinFromOobLinkDetails *sfTeamJoinFromOobLinkDetails; - -/// (no description). @note Ensure the `isSfTeamUninviteDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamUninviteDetails *sfTeamUninviteDetails; - -/// (no description). @note Ensure the `isSharedContentAddInviteesDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddInviteesDetails *sharedContentAddInviteesDetails; - -/// (no description). @note Ensure the `isSharedContentAddLinkExpiryDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkExpiryDetails *sharedContentAddLinkExpiryDetails; - -/// (no description). @note Ensure the `isSharedContentAddLinkPasswordDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkPasswordDetails *sharedContentAddLinkPasswordDetails; - -/// (no description). @note Ensure the `isSharedContentAddMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddMemberDetails *sharedContentAddMemberDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeDownloadsPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *sharedContentChangeDownloadsPolicyDetails; - -/// (no description). @note Ensure the `isSharedContentChangeInviteeRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeInviteeRoleDetails *sharedContentChangeInviteeRoleDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeLinkAudienceDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkAudienceDetails *sharedContentChangeLinkAudienceDetails; - -/// (no description). @note Ensure the `isSharedContentChangeLinkExpiryDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkExpiryDetails *sharedContentChangeLinkExpiryDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeLinkPasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkPasswordDetails *sharedContentChangeLinkPasswordDetails; - -/// (no description). @note Ensure the `isSharedContentChangeMemberRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeMemberRoleDetails *sharedContentChangeMemberRoleDetails; - -/// (no description). @note Ensure the -/// `isSharedContentChangeViewerInfoPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *sharedContentChangeViewerInfoPolicyDetails; - -/// (no description). @note Ensure the `isSharedContentClaimInvitationDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentClaimInvitationDetails *sharedContentClaimInvitationDetails; - -/// (no description). @note Ensure the `isSharedContentCopyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentCopyDetails *sharedContentCopyDetails; - -/// (no description). @note Ensure the `isSharedContentDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentDownloadDetails *sharedContentDownloadDetails; - -/// (no description). @note Ensure the -/// `isSharedContentRelinquishMembershipDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedContentRelinquishMembershipDetails *sharedContentRelinquishMembershipDetails; - -/// (no description). @note Ensure the `isSharedContentRemoveInviteesDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveInviteesDetails *sharedContentRemoveInviteesDetails; - -/// (no description). @note Ensure the `isSharedContentRemoveLinkExpiryDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkExpiryDetails *sharedContentRemoveLinkExpiryDetails; - -/// (no description). @note Ensure the -/// `isSharedContentRemoveLinkPasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkPasswordDetails *sharedContentRemoveLinkPasswordDetails; - -/// (no description). @note Ensure the `isSharedContentRemoveMemberDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveMemberDetails *sharedContentRemoveMemberDetails; - -/// (no description). @note Ensure the `isSharedContentRequestAccessDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRequestAccessDetails *sharedContentRequestAccessDetails; - -/// (no description). @note Ensure the `isSharedContentRestoreInviteesDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreInviteesDetails *sharedContentRestoreInviteesDetails; - -/// (no description). @note Ensure the `isSharedContentRestoreMemberDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreMemberDetails *sharedContentRestoreMemberDetails; - -/// (no description). @note Ensure the `isSharedContentUnshareDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentUnshareDetails *sharedContentUnshareDetails; - -/// (no description). @note Ensure the `isSharedContentViewDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentViewDetails *sharedContentViewDetails; - -/// (no description). @note Ensure the `isSharedFolderChangeLinkPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeLinkPolicyDetails *sharedFolderChangeLinkPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharedFolderChangeMembersInheritancePolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *sharedFolderChangeMembersInheritancePolicyDetails; - -/// (no description). @note Ensure the -/// `isSharedFolderChangeMembersManagementPolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *sharedFolderChangeMembersManagementPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharedFolderChangeMembersPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeMembersPolicyDetails *sharedFolderChangeMembersPolicyDetails; - -/// (no description). @note Ensure the `isSharedFolderCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderCreateDetails *sharedFolderCreateDetails; - -/// (no description). @note Ensure the `isSharedFolderDeclineInvitationDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderDeclineInvitationDetails *sharedFolderDeclineInvitationDetails; - -/// (no description). @note Ensure the `isSharedFolderMountDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMountDetails *sharedFolderMountDetails; - -/// (no description). @note Ensure the `isSharedFolderNestDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderNestDetails *sharedFolderNestDetails; - -/// (no description). @note Ensure the `isSharedFolderTransferOwnershipDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderTransferOwnershipDetails *sharedFolderTransferOwnershipDetails; - -/// (no description). @note Ensure the `isSharedFolderUnmountDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderUnmountDetails *sharedFolderUnmountDetails; - -/// (no description). @note Ensure the `isSharedLinkAddExpiryDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkAddExpiryDetails *sharedLinkAddExpiryDetails; - -/// (no description). @note Ensure the `isSharedLinkChangeExpiryDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeExpiryDetails *sharedLinkChangeExpiryDetails; - -/// (no description). @note Ensure the `isSharedLinkChangeVisibilityDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeVisibilityDetails *sharedLinkChangeVisibilityDetails; - -/// (no description). @note Ensure the `isSharedLinkCopyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCopyDetails *sharedLinkCopyDetails; - -/// (no description). @note Ensure the `isSharedLinkCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCreateDetails *sharedLinkCreateDetails; - -/// (no description). @note Ensure the `isSharedLinkDisableDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDisableDetails *sharedLinkDisableDetails; - -/// (no description). @note Ensure the `isSharedLinkDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDownloadDetails *sharedLinkDownloadDetails; - -/// (no description). @note Ensure the `isSharedLinkRemoveExpiryDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkRemoveExpiryDetails *sharedLinkRemoveExpiryDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsAddExpirationDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddExpirationDetails *sharedLinkSettingsAddExpirationDetails; - -/// (no description). @note Ensure the `isSharedLinkSettingsAddPasswordDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddPasswordDetails *sharedLinkSettingsAddPasswordDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsAllowDownloadDisabledDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *sharedLinkSettingsAllowDownloadDisabledDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsAllowDownloadEnabledDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *sharedLinkSettingsAllowDownloadEnabledDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsChangeAudienceDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *sharedLinkSettingsChangeAudienceDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsChangeExpirationDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *sharedLinkSettingsChangeExpirationDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsChangePasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsChangePasswordDetails *sharedLinkSettingsChangePasswordDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsRemoveExpirationDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *sharedLinkSettingsRemoveExpirationDetails; - -/// (no description). @note Ensure the -/// `isSharedLinkSettingsRemovePasswordDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *sharedLinkSettingsRemovePasswordDetails; - -/// (no description). @note Ensure the `isSharedLinkShareDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkShareDetails *sharedLinkShareDetails; - -/// (no description). @note Ensure the `isSharedLinkViewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkViewDetails *sharedLinkViewDetails; - -/// (no description). @note Ensure the `isSharedNoteOpenedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedNoteOpenedDetails *sharedNoteOpenedDetails; - -/// (no description). @note Ensure the `isShmodelDisableDownloadsDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelDisableDownloadsDetails *shmodelDisableDownloadsDetails; - -/// (no description). @note Ensure the `isShmodelEnableDownloadsDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelEnableDownloadsDetails *shmodelEnableDownloadsDetails; - -/// (no description). @note Ensure the `isShmodelGroupShareDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelGroupShareDetails *shmodelGroupShareDetails; - -/// (no description). @note Ensure the `isShowcaseAccessGrantedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAccessGrantedDetails *showcaseAccessGrantedDetails; - -/// (no description). @note Ensure the `isShowcaseAddMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAddMemberDetails *showcaseAddMemberDetails; - -/// (no description). @note Ensure the `isShowcaseArchivedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseArchivedDetails *showcaseArchivedDetails; - -/// (no description). @note Ensure the `isShowcaseCreatedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseCreatedDetails *showcaseCreatedDetails; - -/// (no description). @note Ensure the `isShowcaseDeleteCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDeleteCommentDetails *showcaseDeleteCommentDetails; - -/// (no description). @note Ensure the `isShowcaseEditedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditedDetails *showcaseEditedDetails; - -/// (no description). @note Ensure the `isShowcaseEditCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditCommentDetails *showcaseEditCommentDetails; - -/// (no description). @note Ensure the `isShowcaseFileAddedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileAddedDetails *showcaseFileAddedDetails; - -/// (no description). @note Ensure the `isShowcaseFileDownloadDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileDownloadDetails *showcaseFileDownloadDetails; - -/// (no description). @note Ensure the `isShowcaseFileRemovedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileRemovedDetails *showcaseFileRemovedDetails; - -/// (no description). @note Ensure the `isShowcaseFileViewDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileViewDetails *showcaseFileViewDetails; - -/// (no description). @note Ensure the `isShowcasePermanentlyDeletedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePermanentlyDeletedDetails *showcasePermanentlyDeletedDetails; - -/// (no description). @note Ensure the `isShowcasePostCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePostCommentDetails *showcasePostCommentDetails; - -/// (no description). @note Ensure the `isShowcaseRemoveMemberDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRemoveMemberDetails *showcaseRemoveMemberDetails; - -/// (no description). @note Ensure the `isShowcaseRenamedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRenamedDetails *showcaseRenamedDetails; - -/// (no description). @note Ensure the `isShowcaseRequestAccessDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRequestAccessDetails *showcaseRequestAccessDetails; - -/// (no description). @note Ensure the `isShowcaseResolveCommentDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseResolveCommentDetails *showcaseResolveCommentDetails; - -/// (no description). @note Ensure the `isShowcaseRestoredDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRestoredDetails *showcaseRestoredDetails; - -/// (no description). @note Ensure the `isShowcaseTrashedDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedDetails *showcaseTrashedDetails; - -/// (no description). @note Ensure the `isShowcaseTrashedDeprecatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedDeprecatedDetails *showcaseTrashedDeprecatedDetails; - -/// (no description). @note Ensure the `isShowcaseUnresolveCommentDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUnresolveCommentDetails *showcaseUnresolveCommentDetails; - -/// (no description). @note Ensure the `isShowcaseUntrashedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedDetails *showcaseUntrashedDetails; - -/// (no description). @note Ensure the `isShowcaseUntrashedDeprecatedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedDeprecatedDetails *showcaseUntrashedDeprecatedDetails; - -/// (no description). @note Ensure the `isShowcaseViewDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseViewDetails *showcaseViewDetails; - -/// (no description). @note Ensure the `isSsoAddCertDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddCertDetails *ssoAddCertDetails; - -/// (no description). @note Ensure the `isSsoAddLoginUrlDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLoginUrlDetails *ssoAddLoginUrlDetails; - -/// (no description). @note Ensure the `isSsoAddLogoutUrlDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLogoutUrlDetails *ssoAddLogoutUrlDetails; - -/// (no description). @note Ensure the `isSsoChangeCertDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeCertDetails *ssoChangeCertDetails; - -/// (no description). @note Ensure the `isSsoChangeLoginUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLoginUrlDetails *ssoChangeLoginUrlDetails; - -/// (no description). @note Ensure the `isSsoChangeLogoutUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLogoutUrlDetails *ssoChangeLogoutUrlDetails; - -/// (no description). @note Ensure the `isSsoChangeSamlIdentityModeDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeSamlIdentityModeDetails *ssoChangeSamlIdentityModeDetails; - -/// (no description). @note Ensure the `isSsoRemoveCertDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveCertDetails *ssoRemoveCertDetails; - -/// (no description). @note Ensure the `isSsoRemoveLoginUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLoginUrlDetails *ssoRemoveLoginUrlDetails; - -/// (no description). @note Ensure the `isSsoRemoveLogoutUrlDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLogoutUrlDetails *ssoRemoveLogoutUrlDetails; - -/// (no description). @note Ensure the `isTeamFolderChangeStatusDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderChangeStatusDetails *teamFolderChangeStatusDetails; - -/// (no description). @note Ensure the `isTeamFolderCreateDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderCreateDetails *teamFolderCreateDetails; - -/// (no description). @note Ensure the `isTeamFolderDowngradeDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderDowngradeDetails *teamFolderDowngradeDetails; - -/// (no description). @note Ensure the `isTeamFolderPermanentlyDeleteDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderPermanentlyDeleteDetails *teamFolderPermanentlyDeleteDetails; - -/// (no description). @note Ensure the `isTeamFolderRenameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderRenameDetails *teamFolderRenameDetails; - -/// (no description). @note Ensure the -/// `isTeamSelectiveSyncSettingsChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *teamSelectiveSyncSettingsChangedDetails; - -/// (no description). @note Ensure the `isAccountCaptureChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureChangePolicyDetails *accountCaptureChangePolicyDetails; - -/// (no description). @note Ensure the `isAdminEmailRemindersChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersChangedDetails *adminEmailRemindersChangedDetails; - -/// (no description). @note Ensure the `isAllowDownloadDisabledDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadDisabledDetails *allowDownloadDisabledDetails; - -/// (no description). @note Ensure the `isAllowDownloadEnabledDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadEnabledDetails *allowDownloadEnabledDetails; - -/// (no description). @note Ensure the `isAppPermissionsChangedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppPermissionsChangedDetails *appPermissionsChangedDetails; - -/// (no description). @note Ensure the `isCameraUploadsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicyChangedDetails *cameraUploadsPolicyChangedDetails; - -/// (no description). @note Ensure the `isCaptureTranscriptPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicyChangedDetails *captureTranscriptPolicyChangedDetails; - -/// (no description). @note Ensure the `isClassificationChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationChangePolicyDetails *classificationChangePolicyDetails; - -/// (no description). @note Ensure the `isComputerBackupPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicyChangedDetails *computerBackupPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isContentAdministrationPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGContentAdministrationPolicyChangedDetails *contentAdministrationPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isDataPlacementRestrictionChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *dataPlacementRestrictionChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isDataPlacementRestrictionSatisfyPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *dataPlacementRestrictionSatisfyPolicyDetails; - -/// (no description). @note Ensure the `isDeviceApprovalsAddExceptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsAddExceptionDetails *deviceApprovalsAddExceptionDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeDesktopPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *deviceApprovalsChangeDesktopPolicyDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeMobilePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *deviceApprovalsChangeMobilePolicyDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeOverageActionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *deviceApprovalsChangeOverageActionDetails; - -/// (no description). @note Ensure the -/// `isDeviceApprovalsChangeUnlinkActionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *deviceApprovalsChangeUnlinkActionDetails; - -/// (no description). @note Ensure the `isDeviceApprovalsRemoveExceptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *deviceApprovalsRemoveExceptionDetails; - -/// (no description). @note Ensure the -/// `isDirectoryRestrictionsAddMembersDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDirectoryRestrictionsAddMembersDetails *directoryRestrictionsAddMembersDetails; - -/// (no description). @note Ensure the -/// `isDirectoryRestrictionsRemoveMembersDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *directoryRestrictionsRemoveMembersDetails; - -/// (no description). @note Ensure the `isDropboxPasswordsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicyChangedDetails *dropboxPasswordsPolicyChangedDetails; - -/// (no description). @note Ensure the `isEmailIngestPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicyChangedDetails *emailIngestPolicyChangedDetails; - -/// (no description). @note Ensure the `isEmmAddExceptionDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmAddExceptionDetails *emmAddExceptionDetails; - -/// (no description). @note Ensure the `isEmmChangePolicyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmChangePolicyDetails *emmChangePolicyDetails; - -/// (no description). @note Ensure the `isEmmRemoveExceptionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRemoveExceptionDetails *emmRemoveExceptionDetails; - -/// (no description). @note Ensure the -/// `isExtendedVersionHistoryChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *extendedVersionHistoryChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isExternalDriveBackupPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupPolicyChangedDetails *externalDriveBackupPolicyChangedDetails; - -/// (no description). @note Ensure the `isFileCommentsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsChangePolicyDetails *fileCommentsChangePolicyDetails; - -/// (no description). @note Ensure the `isFileLockingPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingPolicyChangedDetails *fileLockingPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isFileProviderMigrationPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFileProviderMigrationPolicyChangedDetails *fileProviderMigrationPolicyChangedDetails; - -/// (no description). @note Ensure the `isFileRequestsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsChangePolicyDetails *fileRequestsChangePolicyDetails; - -/// (no description). @note Ensure the `isFileRequestsEmailsEnabledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsEmailsEnabledDetails *fileRequestsEmailsEnabledDetails; - -/// (no description). @note Ensure the -/// `isFileRequestsEmailsRestrictedToTeamOnlyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *fileRequestsEmailsRestrictedToTeamOnlyDetails; - -/// (no description). @note Ensure the `isFileTransfersPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicyChangedDetails *fileTransfersPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isFolderLinkRestrictionPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *folderLinkRestrictionPolicyChangedDetails; - -/// (no description). @note Ensure the `isGoogleSsoChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoChangePolicyDetails *googleSsoChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isGroupUserManagementChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupUserManagementChangePolicyDetails *groupUserManagementChangePolicyDetails; - -/// (no description). @note Ensure the `isIntegrationPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicyChangedDetails *integrationPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isInviteAcceptanceEmailPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *inviteAcceptanceEmailPolicyChangedDetails; - -/// (no description). @note Ensure the `isMemberRequestsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsChangePolicyDetails *memberRequestsChangePolicyDetails; - -/// (no description). @note Ensure the `isMemberSendInvitePolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicyChangedDetails *memberSendInvitePolicyChangedDetails; - -/// (no description). @note Ensure the `isMemberSpaceLimitsAddExceptionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *memberSpaceLimitsAddExceptionDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsChangeCapsTypePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *memberSpaceLimitsChangeCapsTypePolicyDetails; - -/// (no description). @note Ensure the `isMemberSpaceLimitsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *memberSpaceLimitsChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isMemberSpaceLimitsRemoveExceptionDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *memberSpaceLimitsRemoveExceptionDetails; - -/// (no description). @note Ensure the `isMemberSuggestionsChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsChangePolicyDetails *memberSuggestionsChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isMicrosoftOfficeAddinChangePolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *microsoftOfficeAddinChangePolicyDetails; - -/// (no description). @note Ensure the `isNetworkControlChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlChangePolicyDetails *networkControlChangePolicyDetails; - -/// (no description). @note Ensure the `isPaperChangeDeploymentPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeDeploymentPolicyDetails *paperChangeDeploymentPolicyDetails; - -/// (no description). @note Ensure the `isPaperChangeMemberLinkPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberLinkPolicyDetails *paperChangeMemberLinkPolicyDetails; - -/// (no description). @note Ensure the `isPaperChangeMemberPolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberPolicyDetails *paperChangeMemberPolicyDetails; - -/// (no description). @note Ensure the `isPaperChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangePolicyDetails *paperChangePolicyDetails; - -/// (no description). @note Ensure the -/// `isPaperDefaultFolderPolicyChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *paperDefaultFolderPolicyChangedDetails; - -/// (no description). @note Ensure the `isPaperDesktopPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicyChangedDetails *paperDesktopPolicyChangedDetails; - -/// (no description). @note Ensure the `isPaperEnabledUsersGroupAdditionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *paperEnabledUsersGroupAdditionDetails; - -/// (no description). @note Ensure the `isPaperEnabledUsersGroupRemovalDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *paperEnabledUsersGroupRemovalDetails; - -/// (no description). @note Ensure the -/// `isPasswordStrengthRequirementsChangePolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *passwordStrengthRequirementsChangePolicyDetails; - -/// (no description). @note Ensure the `isPermanentDeleteChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPermanentDeleteChangePolicyDetails *permanentDeleteChangePolicyDetails; - -/// (no description). @note Ensure the `isResellerSupportChangePolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportChangePolicyDetails *resellerSupportChangePolicyDetails; - -/// (no description). @note Ensure the `isRewindPolicyChangedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicyChangedDetails *rewindPolicyChangedDetails; - -/// (no description). @note Ensure the `isSendForSignaturePolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicyChangedDetails *sendForSignaturePolicyChangedDetails; - -/// (no description). @note Ensure the `isSharingChangeFolderJoinPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeFolderJoinPolicyDetails *sharingChangeFolderJoinPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharingChangeLinkAllowChangeExpirationPolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *sharingChangeLinkAllowChangeExpirationPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharingChangeLinkDefaultExpirationPolicyDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *sharingChangeLinkDefaultExpirationPolicyDetails; - -/// (no description). @note Ensure the -/// `isSharingChangeLinkEnforcePasswordPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *sharingChangeLinkEnforcePasswordPolicyDetails; - -/// (no description). @note Ensure the `isSharingChangeLinkPolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeLinkPolicyDetails *sharingChangeLinkPolicyDetails; - -/// (no description). @note Ensure the `isSharingChangeMemberPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeMemberPolicyDetails *sharingChangeMemberPolicyDetails; - -/// (no description). @note Ensure the `isShowcaseChangeDownloadPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeDownloadPolicyDetails *showcaseChangeDownloadPolicyDetails; - -/// (no description). @note Ensure the `isShowcaseChangeEnabledPolicyDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeEnabledPolicyDetails *showcaseChangeEnabledPolicyDetails; - -/// (no description). @note Ensure the -/// `isShowcaseChangeExternalSharingPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *showcaseChangeExternalSharingPolicyDetails; - -/// (no description). @note Ensure the `isSmarterSmartSyncPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *smarterSmartSyncPolicyChangedDetails; - -/// (no description). @note Ensure the `isSmartSyncChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncChangePolicyDetails *smartSyncChangePolicyDetails; - -/// (no description). @note Ensure the `isSmartSyncNotOptOutDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncNotOptOutDetails *smartSyncNotOptOutDetails; - -/// (no description). @note Ensure the `isSmartSyncOptOutDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutDetails *smartSyncOptOutDetails; - -/// (no description). @note Ensure the `isSsoChangePolicyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangePolicyDetails *ssoChangePolicyDetails; - -/// (no description). @note Ensure the `isTeamBrandingPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicyChangedDetails *teamBrandingPolicyChangedDetails; - -/// (no description). @note Ensure the `isTeamExtensionsPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicyChangedDetails *teamExtensionsPolicyChangedDetails; - -/// (no description). @note Ensure the `isTeamSelectiveSyncPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *teamSelectiveSyncPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isTeamSharingWhitelistSubjectsChangedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *teamSharingWhitelistSubjectsChangedDetails; - -/// (no description). @note Ensure the `isTfaAddExceptionDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddExceptionDetails *tfaAddExceptionDetails; - -/// (no description). @note Ensure the `isTfaChangePolicyDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangePolicyDetails *tfaChangePolicyDetails; - -/// (no description). @note Ensure the `isTfaRemoveExceptionDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveExceptionDetails *tfaRemoveExceptionDetails; - -/// (no description). @note Ensure the `isTwoAccountChangePolicyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountChangePolicyDetails *twoAccountChangePolicyDetails; - -/// (no description). @note Ensure the `isViewerInfoPolicyChangedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGViewerInfoPolicyChangedDetails *viewerInfoPolicyChangedDetails; - -/// (no description). @note Ensure the `isWatermarkingPolicyChangedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicyChangedDetails *watermarkingPolicyChangedDetails; - -/// (no description). @note Ensure the -/// `isWebSessionsChangeActiveSessionLimitDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *webSessionsChangeActiveSessionLimitDetails; - -/// (no description). @note Ensure the -/// `isWebSessionsChangeFixedLengthPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *webSessionsChangeFixedLengthPolicyDetails; - -/// (no description). @note Ensure the -/// `isWebSessionsChangeIdleLengthPolicyDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *webSessionsChangeIdleLengthPolicyDetails; - -/// (no description). @note Ensure the -/// `isDataResidencyMigrationRequestSuccessfulDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *dataResidencyMigrationRequestSuccessfulDetails; - -/// (no description). @note Ensure the -/// `isDataResidencyMigrationRequestUnsuccessfulDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *dataResidencyMigrationRequestUnsuccessfulDetails; - -/// (no description). @note Ensure the `isTeamMergeFromDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeFromDetails *teamMergeFromDetails; - -/// (no description). @note Ensure the `isTeamMergeToDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeToDetails *teamMergeToDetails; - -/// (no description). @note Ensure the `isTeamProfileAddBackgroundDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddBackgroundDetails *teamProfileAddBackgroundDetails; - -/// (no description). @note Ensure the `isTeamProfileAddLogoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddLogoDetails *teamProfileAddLogoDetails; - -/// (no description). @note Ensure the `isTeamProfileChangeBackgroundDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeBackgroundDetails *teamProfileChangeBackgroundDetails; - -/// (no description). @note Ensure the -/// `isTeamProfileChangeDefaultLanguageDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *teamProfileChangeDefaultLanguageDetails; - -/// (no description). @note Ensure the `isTeamProfileChangeLogoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeLogoDetails *teamProfileChangeLogoDetails; - -/// (no description). @note Ensure the `isTeamProfileChangeNameDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeNameDetails *teamProfileChangeNameDetails; - -/// (no description). @note Ensure the `isTeamProfileRemoveBackgroundDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveBackgroundDetails *teamProfileRemoveBackgroundDetails; - -/// (no description). @note Ensure the `isTeamProfileRemoveLogoDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveLogoDetails *teamProfileRemoveLogoDetails; - -/// (no description). @note Ensure the `isTfaAddBackupPhoneDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddBackupPhoneDetails *tfaAddBackupPhoneDetails; - -/// (no description). @note Ensure the `isTfaAddSecurityKeyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddSecurityKeyDetails *tfaAddSecurityKeyDetails; - -/// (no description). @note Ensure the `isTfaChangeBackupPhoneDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeBackupPhoneDetails *tfaChangeBackupPhoneDetails; - -/// (no description). @note Ensure the `isTfaChangeStatusDetails` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeStatusDetails *tfaChangeStatusDetails; - -/// (no description). @note Ensure the `isTfaRemoveBackupPhoneDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveBackupPhoneDetails *tfaRemoveBackupPhoneDetails; - -/// (no description). @note Ensure the `isTfaRemoveSecurityKeyDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveSecurityKeyDetails *tfaRemoveSecurityKeyDetails; - -/// (no description). @note Ensure the `isTfaResetDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaResetDetails *tfaResetDetails; - -/// (no description). @note Ensure the `isChangedEnterpriseAdminRoleDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGChangedEnterpriseAdminRoleDetails *changedEnterpriseAdminRoleDetails; - -/// (no description). @note Ensure the -/// `isChangedEnterpriseConnectedTeamStatusDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *changedEnterpriseConnectedTeamStatusDetails; - -/// (no description). @note Ensure the `isEndedEnterpriseAdminSessionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEndedEnterpriseAdminSessionDetails *endedEnterpriseAdminSessionDetails; - -/// (no description). @note Ensure the -/// `isEndedEnterpriseAdminSessionDeprecatedDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *endedEnterpriseAdminSessionDeprecatedDetails; - -/// (no description). @note Ensure the `isEnterpriseSettingsLockingDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGEnterpriseSettingsLockingDetails *enterpriseSettingsLockingDetails; - -/// (no description). @note Ensure the `isGuestAdminChangeStatusDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminChangeStatusDetails *guestAdminChangeStatusDetails; - -/// (no description). @note Ensure the `isStartedEnterpriseAdminSessionDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGStartedEnterpriseAdminSessionDetails *startedEnterpriseAdminSessionDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestAcceptedDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedDetails *teamMergeRequestAcceptedDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestAcceptedShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *teamMergeRequestAcceptedShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestAcceptedShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *teamMergeRequestAcceptedShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestAutoCanceledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAutoCanceledDetails *teamMergeRequestAutoCanceledDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestCanceledDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledDetails *teamMergeRequestCanceledDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestCanceledShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *teamMergeRequestCanceledShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestCanceledShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *teamMergeRequestCanceledShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestExpiredDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredDetails *teamMergeRequestExpiredDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestExpiredShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *teamMergeRequestExpiredShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestExpiredShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *teamMergeRequestExpiredShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestRejectedShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *teamMergeRequestRejectedShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestRejectedShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *teamMergeRequestRejectedShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestReminderDetails` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderDetails *teamMergeRequestReminderDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestReminderShownToPrimaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *teamMergeRequestReminderShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestReminderShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *teamMergeRequestReminderShownToSecondaryTeamDetails; - -/// (no description). @note Ensure the `isTeamMergeRequestRevokedDetails` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestRevokedDetails *teamMergeRequestRevokedDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestSentShownToPrimaryTeamDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *teamMergeRequestSentShownToPrimaryTeamDetails; - -/// (no description). @note Ensure the -/// `isTeamMergeRequestSentShownToSecondaryTeamDetails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *teamMergeRequestSentShownToSecondaryTeamDetails; - -/// Hints that this event was returned with missing details due to an internal -/// error. @note Ensure the `isMissingDetails` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMissingDetails *missingDetails; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "admin_alerting_alert_state_changed_details". -/// -/// @param adminAlertingAlertStateChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingAlertStateChangedDetails: - (DBTEAMLOGAdminAlertingAlertStateChangedDetails *)adminAlertingAlertStateChangedDetails; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_changed_alert_config_details". -/// -/// @param adminAlertingChangedAlertConfigDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingChangedAlertConfigDetails: - (DBTEAMLOGAdminAlertingChangedAlertConfigDetails *)adminAlertingChangedAlertConfigDetails; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_triggered_alert_details". -/// -/// @param adminAlertingTriggeredAlertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingTriggeredAlertDetails: - (DBTEAMLOGAdminAlertingTriggeredAlertDetails *)adminAlertingTriggeredAlertDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_completed_details". -/// -/// @param ransomwareRestoreProcessCompletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessCompletedDetails: - (DBTEAMLOGRansomwareRestoreProcessCompletedDetails *)ransomwareRestoreProcessCompletedDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_started_details". -/// -/// @param ransomwareRestoreProcessStartedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessStartedDetails: - (DBTEAMLOGRansomwareRestoreProcessStartedDetails *)ransomwareRestoreProcessStartedDetails; - -/// -/// Initializes union class with tag state of -/// "app_blocked_by_permissions_details". -/// -/// @param appBlockedByPermissionsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppBlockedByPermissionsDetails: - (DBTEAMLOGAppBlockedByPermissionsDetails *)appBlockedByPermissionsDetails; - -/// -/// Initializes union class with tag state of "app_link_team_details". -/// -/// @param appLinkTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkTeamDetails:(DBTEAMLOGAppLinkTeamDetails *)appLinkTeamDetails; - -/// -/// Initializes union class with tag state of "app_link_user_details". -/// -/// @param appLinkUserDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkUserDetails:(DBTEAMLOGAppLinkUserDetails *)appLinkUserDetails; - -/// -/// Initializes union class with tag state of "app_unlink_team_details". -/// -/// @param appUnlinkTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkTeamDetails:(DBTEAMLOGAppUnlinkTeamDetails *)appUnlinkTeamDetails; - -/// -/// Initializes union class with tag state of "app_unlink_user_details". -/// -/// @param appUnlinkUserDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkUserDetails:(DBTEAMLOGAppUnlinkUserDetails *)appUnlinkUserDetails; - -/// -/// Initializes union class with tag state of "integration_connected_details". -/// -/// @param integrationConnectedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationConnectedDetails:(DBTEAMLOGIntegrationConnectedDetails *)integrationConnectedDetails; - -/// -/// Initializes union class with tag state of -/// "integration_disconnected_details". -/// -/// @param integrationDisconnectedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationDisconnectedDetails: - (DBTEAMLOGIntegrationDisconnectedDetails *)integrationDisconnectedDetails; - -/// -/// Initializes union class with tag state of "file_add_comment_details". -/// -/// @param fileAddCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddCommentDetails:(DBTEAMLOGFileAddCommentDetails *)fileAddCommentDetails; - -/// -/// Initializes union class with tag state of -/// "file_change_comment_subscription_details". -/// -/// @param fileChangeCommentSubscriptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileChangeCommentSubscriptionDetails: - (DBTEAMLOGFileChangeCommentSubscriptionDetails *)fileChangeCommentSubscriptionDetails; - -/// -/// Initializes union class with tag state of "file_delete_comment_details". -/// -/// @param fileDeleteCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteCommentDetails:(DBTEAMLOGFileDeleteCommentDetails *)fileDeleteCommentDetails; - -/// -/// Initializes union class with tag state of "file_edit_comment_details". -/// -/// @param fileEditCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditCommentDetails:(DBTEAMLOGFileEditCommentDetails *)fileEditCommentDetails; - -/// -/// Initializes union class with tag state of "file_like_comment_details". -/// -/// @param fileLikeCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLikeCommentDetails:(DBTEAMLOGFileLikeCommentDetails *)fileLikeCommentDetails; - -/// -/// Initializes union class with tag state of "file_resolve_comment_details". -/// -/// @param fileResolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileResolveCommentDetails:(DBTEAMLOGFileResolveCommentDetails *)fileResolveCommentDetails; - -/// -/// Initializes union class with tag state of "file_unlike_comment_details". -/// -/// @param fileUnlikeCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnlikeCommentDetails:(DBTEAMLOGFileUnlikeCommentDetails *)fileUnlikeCommentDetails; - -/// -/// Initializes union class with tag state of "file_unresolve_comment_details". -/// -/// @param fileUnresolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnresolveCommentDetails:(DBTEAMLOGFileUnresolveCommentDetails *)fileUnresolveCommentDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folders_details". -/// -/// @param governancePolicyAddFoldersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFoldersDetails: - (DBTEAMLOGGovernancePolicyAddFoldersDetails *)governancePolicyAddFoldersDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folder_failed_details". -/// -/// @param governancePolicyAddFolderFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolderFailedDetails: - (DBTEAMLOGGovernancePolicyAddFolderFailedDetails *)governancePolicyAddFolderFailedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_content_disposed_details". -/// -/// @param governancePolicyContentDisposedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyContentDisposedDetails: - (DBTEAMLOGGovernancePolicyContentDisposedDetails *)governancePolicyContentDisposedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_create_details". -/// -/// @param governancePolicyCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyCreateDetails: - (DBTEAMLOGGovernancePolicyCreateDetails *)governancePolicyCreateDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_delete_details". -/// -/// @param governancePolicyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyDeleteDetails: - (DBTEAMLOGGovernancePolicyDeleteDetails *)governancePolicyDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_edit_details_details". -/// -/// @param governancePolicyEditDetailsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDetailsDetails: - (DBTEAMLOGGovernancePolicyEditDetailsDetails *)governancePolicyEditDetailsDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_edit_duration_details". -/// -/// @param governancePolicyEditDurationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDurationDetails: - (DBTEAMLOGGovernancePolicyEditDurationDetails *)governancePolicyEditDurationDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_created_details". -/// -/// @param governancePolicyExportCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportCreatedDetails: - (DBTEAMLOGGovernancePolicyExportCreatedDetails *)governancePolicyExportCreatedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_removed_details". -/// -/// @param governancePolicyExportRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportRemovedDetails: - (DBTEAMLOGGovernancePolicyExportRemovedDetails *)governancePolicyExportRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_remove_folders_details". -/// -/// @param governancePolicyRemoveFoldersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyRemoveFoldersDetails: - (DBTEAMLOGGovernancePolicyRemoveFoldersDetails *)governancePolicyRemoveFoldersDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_report_created_details". -/// -/// @param governancePolicyReportCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyReportCreatedDetails: - (DBTEAMLOGGovernancePolicyReportCreatedDetails *)governancePolicyReportCreatedDetails; - -/// -/// Initializes union class with tag state of -/// "governance_policy_zip_part_downloaded_details". -/// -/// @param governancePolicyZipPartDownloadedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyZipPartDownloadedDetails: - (DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *)governancePolicyZipPartDownloadedDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_activate_a_hold_details". -/// -/// @param legalHoldsActivateAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsActivateAHoldDetails: - (DBTEAMLOGLegalHoldsActivateAHoldDetails *)legalHoldsActivateAHoldDetails; - -/// -/// Initializes union class with tag state of "legal_holds_add_members_details". -/// -/// @param legalHoldsAddMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsAddMembersDetails:(DBTEAMLOGLegalHoldsAddMembersDetails *)legalHoldsAddMembersDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_change_hold_details_details". -/// -/// @param legalHoldsChangeHoldDetailsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldDetailsDetails: - (DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *)legalHoldsChangeHoldDetailsDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_change_hold_name_details". -/// -/// @param legalHoldsChangeHoldNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldNameDetails: - (DBTEAMLOGLegalHoldsChangeHoldNameDetails *)legalHoldsChangeHoldNameDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_a_hold_details". -/// -/// @param legalHoldsExportAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportAHoldDetails: - (DBTEAMLOGLegalHoldsExportAHoldDetails *)legalHoldsExportAHoldDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_cancelled_details". -/// -/// @param legalHoldsExportCancelledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportCancelledDetails: - (DBTEAMLOGLegalHoldsExportCancelledDetails *)legalHoldsExportCancelledDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_downloaded_details". -/// -/// @param legalHoldsExportDownloadedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportDownloadedDetails: - (DBTEAMLOGLegalHoldsExportDownloadedDetails *)legalHoldsExportDownloadedDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_export_removed_details". -/// -/// @param legalHoldsExportRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportRemovedDetails: - (DBTEAMLOGLegalHoldsExportRemovedDetails *)legalHoldsExportRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_release_a_hold_details". -/// -/// @param legalHoldsReleaseAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReleaseAHoldDetails: - (DBTEAMLOGLegalHoldsReleaseAHoldDetails *)legalHoldsReleaseAHoldDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_remove_members_details". -/// -/// @param legalHoldsRemoveMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsRemoveMembersDetails: - (DBTEAMLOGLegalHoldsRemoveMembersDetails *)legalHoldsRemoveMembersDetails; - -/// -/// Initializes union class with tag state of -/// "legal_holds_report_a_hold_details". -/// -/// @param legalHoldsReportAHoldDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReportAHoldDetails: - (DBTEAMLOGLegalHoldsReportAHoldDetails *)legalHoldsReportAHoldDetails; - -/// -/// Initializes union class with tag state of -/// "device_change_ip_desktop_details". -/// -/// @param deviceChangeIpDesktopDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpDesktopDetails: - (DBTEAMLOGDeviceChangeIpDesktopDetails *)deviceChangeIpDesktopDetails; - -/// -/// Initializes union class with tag state of "device_change_ip_mobile_details". -/// -/// @param deviceChangeIpMobileDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpMobileDetails:(DBTEAMLOGDeviceChangeIpMobileDetails *)deviceChangeIpMobileDetails; - -/// -/// Initializes union class with tag state of "device_change_ip_web_details". -/// -/// @param deviceChangeIpWebDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpWebDetails:(DBTEAMLOGDeviceChangeIpWebDetails *)deviceChangeIpWebDetails; - -/// -/// Initializes union class with tag state of -/// "device_delete_on_unlink_fail_details". -/// -/// @param deviceDeleteOnUnlinkFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkFailDetails: - (DBTEAMLOGDeviceDeleteOnUnlinkFailDetails *)deviceDeleteOnUnlinkFailDetails; - -/// -/// Initializes union class with tag state of -/// "device_delete_on_unlink_success_details". -/// -/// @param deviceDeleteOnUnlinkSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkSuccessDetails: - (DBTEAMLOGDeviceDeleteOnUnlinkSuccessDetails *)deviceDeleteOnUnlinkSuccessDetails; - -/// -/// Initializes union class with tag state of "device_link_fail_details". -/// -/// @param deviceLinkFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkFailDetails:(DBTEAMLOGDeviceLinkFailDetails *)deviceLinkFailDetails; - -/// -/// Initializes union class with tag state of "device_link_success_details". -/// -/// @param deviceLinkSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkSuccessDetails:(DBTEAMLOGDeviceLinkSuccessDetails *)deviceLinkSuccessDetails; - -/// -/// Initializes union class with tag state of -/// "device_management_disabled_details". -/// -/// @param deviceManagementDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementDisabledDetails: - (DBTEAMLOGDeviceManagementDisabledDetails *)deviceManagementDisabledDetails; - -/// -/// Initializes union class with tag state of -/// "device_management_enabled_details". -/// -/// @param deviceManagementEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementEnabledDetails: - (DBTEAMLOGDeviceManagementEnabledDetails *)deviceManagementEnabledDetails; - -/// -/// Initializes union class with tag state of -/// "device_sync_backup_status_changed_details". -/// -/// @param deviceSyncBackupStatusChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSyncBackupStatusChangedDetails: - (DBTEAMLOGDeviceSyncBackupStatusChangedDetails *)deviceSyncBackupStatusChangedDetails; - -/// -/// Initializes union class with tag state of "device_unlink_details". -/// -/// @param deviceUnlinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceUnlinkDetails:(DBTEAMLOGDeviceUnlinkDetails *)deviceUnlinkDetails; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_exported_details". -/// -/// @param dropboxPasswordsExportedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsExportedDetails: - (DBTEAMLOGDropboxPasswordsExportedDetails *)dropboxPasswordsExportedDetails; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_new_device_enrolled_details". -/// -/// @param dropboxPasswordsNewDeviceEnrolledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsNewDeviceEnrolledDetails: - (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledDetails *)dropboxPasswordsNewDeviceEnrolledDetails; - -/// -/// Initializes union class with tag state of "emm_refresh_auth_token_details". -/// -/// @param emmRefreshAuthTokenDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRefreshAuthTokenDetails:(DBTEAMLOGEmmRefreshAuthTokenDetails *)emmRefreshAuthTokenDetails; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_eligibility_status_checked_details". -/// -/// @param externalDriveBackupEligibilityStatusCheckedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupEligibilityStatusCheckedDetails: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *)externalDriveBackupEligibilityStatusCheckedDetails; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_status_changed_details". -/// -/// @param externalDriveBackupStatusChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupStatusChangedDetails: - (DBTEAMLOGExternalDriveBackupStatusChangedDetails *)externalDriveBackupStatusChangedDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_availability_details". -/// -/// @param accountCaptureChangeAvailabilityDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangeAvailabilityDetails: - (DBTEAMLOGAccountCaptureChangeAvailabilityDetails *)accountCaptureChangeAvailabilityDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_migrate_account_details". -/// -/// @param accountCaptureMigrateAccountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureMigrateAccountDetails: - (DBTEAMLOGAccountCaptureMigrateAccountDetails *)accountCaptureMigrateAccountDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_notification_emails_sent_details". -/// -/// @param accountCaptureNotificationEmailsSentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureNotificationEmailsSentDetails: - (DBTEAMLOGAccountCaptureNotificationEmailsSentDetails *)accountCaptureNotificationEmailsSentDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_relinquish_account_details". -/// -/// @param accountCaptureRelinquishAccountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureRelinquishAccountDetails: - (DBTEAMLOGAccountCaptureRelinquishAccountDetails *)accountCaptureRelinquishAccountDetails; - -/// -/// Initializes union class with tag state of "disabled_domain_invites_details". -/// -/// @param disabledDomainInvitesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledDomainInvitesDetails: - (DBTEAMLOGDisabledDomainInvitesDetails *)disabledDomainInvitesDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_approve_request_to_join_team_details". -/// -/// @param domainInvitesApproveRequestToJoinTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesApproveRequestToJoinTeamDetails: - (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamDetails *)domainInvitesApproveRequestToJoinTeamDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_decline_request_to_join_team_details". -/// -/// @param domainInvitesDeclineRequestToJoinTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesDeclineRequestToJoinTeamDetails: - (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamDetails *)domainInvitesDeclineRequestToJoinTeamDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_email_existing_users_details". -/// -/// @param domainInvitesEmailExistingUsersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesEmailExistingUsersDetails: - (DBTEAMLOGDomainInvitesEmailExistingUsersDetails *)domainInvitesEmailExistingUsersDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_request_to_join_team_details". -/// -/// @param domainInvitesRequestToJoinTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesRequestToJoinTeamDetails: - (DBTEAMLOGDomainInvitesRequestToJoinTeamDetails *)domainInvitesRequestToJoinTeamDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_no_details". -/// -/// @param domainInvitesSetInviteNewUserPrefToNoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToNoDetails: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoDetails *)domainInvitesSetInviteNewUserPrefToNoDetails; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_yes_details". -/// -/// @param domainInvitesSetInviteNewUserPrefToYesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToYesDetails: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesDetails *)domainInvitesSetInviteNewUserPrefToYesDetails; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_fail_details". -/// -/// @param domainVerificationAddDomainFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainFailDetails: - (DBTEAMLOGDomainVerificationAddDomainFailDetails *)domainVerificationAddDomainFailDetails; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_success_details". -/// -/// @param domainVerificationAddDomainSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainSuccessDetails: - (DBTEAMLOGDomainVerificationAddDomainSuccessDetails *)domainVerificationAddDomainSuccessDetails; - -/// -/// Initializes union class with tag state of -/// "domain_verification_remove_domain_details". -/// -/// @param domainVerificationRemoveDomainDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationRemoveDomainDetails: - (DBTEAMLOGDomainVerificationRemoveDomainDetails *)domainVerificationRemoveDomainDetails; - -/// -/// Initializes union class with tag state of "enabled_domain_invites_details". -/// -/// @param enabledDomainInvitesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabledDomainInvitesDetails:(DBTEAMLOGEnabledDomainInvitesDetails *)enabledDomainInvitesDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_cancel_key_deletion_details". -/// -/// @param teamEncryptionKeyCancelKeyDeletionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCancelKeyDeletionDetails: - (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *)teamEncryptionKeyCancelKeyDeletionDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_create_key_details". -/// -/// @param teamEncryptionKeyCreateKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCreateKeyDetails: - (DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *)teamEncryptionKeyCreateKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_delete_key_details". -/// -/// @param teamEncryptionKeyDeleteKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDeleteKeyDetails: - (DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *)teamEncryptionKeyDeleteKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_disable_key_details". -/// -/// @param teamEncryptionKeyDisableKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDisableKeyDetails: - (DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *)teamEncryptionKeyDisableKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_enable_key_details". -/// -/// @param teamEncryptionKeyEnableKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyEnableKeyDetails: - (DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *)teamEncryptionKeyEnableKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_rotate_key_details". -/// -/// @param teamEncryptionKeyRotateKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyRotateKeyDetails: - (DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *)teamEncryptionKeyRotateKeyDetails; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_schedule_key_deletion_details". -/// -/// @param teamEncryptionKeyScheduleKeyDeletionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyScheduleKeyDeletionDetails: - (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *)teamEncryptionKeyScheduleKeyDeletionDetails; - -/// -/// Initializes union class with tag state of "apply_naming_convention_details". -/// -/// @param applyNamingConventionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApplyNamingConventionDetails: - (DBTEAMLOGApplyNamingConventionDetails *)applyNamingConventionDetails; - -/// -/// Initializes union class with tag state of "create_folder_details". -/// -/// @param createFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateFolderDetails:(DBTEAMLOGCreateFolderDetails *)createFolderDetails; - -/// -/// Initializes union class with tag state of "file_add_details". -/// -/// @param fileAddDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddDetails:(DBTEAMLOGFileAddDetails *)fileAddDetails; - -/// -/// Initializes union class with tag state of -/// "file_add_from_automation_details". -/// -/// @param fileAddFromAutomationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddFromAutomationDetails: - (DBTEAMLOGFileAddFromAutomationDetails *)fileAddFromAutomationDetails; - -/// -/// Initializes union class with tag state of "file_copy_details". -/// -/// @param fileCopyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCopyDetails:(DBTEAMLOGFileCopyDetails *)fileCopyDetails; - -/// -/// Initializes union class with tag state of "file_delete_details". -/// -/// @param fileDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteDetails:(DBTEAMLOGFileDeleteDetails *)fileDeleteDetails; - -/// -/// Initializes union class with tag state of "file_download_details". -/// -/// @param fileDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDownloadDetails:(DBTEAMLOGFileDownloadDetails *)fileDownloadDetails; - -/// -/// Initializes union class with tag state of "file_edit_details". -/// -/// @param fileEditDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditDetails:(DBTEAMLOGFileEditDetails *)fileEditDetails; - -/// -/// Initializes union class with tag state of "file_get_copy_reference_details". -/// -/// @param fileGetCopyReferenceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileGetCopyReferenceDetails:(DBTEAMLOGFileGetCopyReferenceDetails *)fileGetCopyReferenceDetails; - -/// -/// Initializes union class with tag state of -/// "file_locking_lock_status_changed_details". -/// -/// @param fileLockingLockStatusChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingLockStatusChangedDetails: - (DBTEAMLOGFileLockingLockStatusChangedDetails *)fileLockingLockStatusChangedDetails; - -/// -/// Initializes union class with tag state of "file_move_details". -/// -/// @param fileMoveDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMoveDetails:(DBTEAMLOGFileMoveDetails *)fileMoveDetails; - -/// -/// Initializes union class with tag state of "file_permanently_delete_details". -/// -/// @param filePermanentlyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePermanentlyDeleteDetails: - (DBTEAMLOGFilePermanentlyDeleteDetails *)filePermanentlyDeleteDetails; - -/// -/// Initializes union class with tag state of "file_preview_details". -/// -/// @param filePreviewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePreviewDetails:(DBTEAMLOGFilePreviewDetails *)filePreviewDetails; - -/// -/// Initializes union class with tag state of "file_rename_details". -/// -/// @param fileRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRenameDetails:(DBTEAMLOGFileRenameDetails *)fileRenameDetails; - -/// -/// Initializes union class with tag state of "file_restore_details". -/// -/// @param fileRestoreDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRestoreDetails:(DBTEAMLOGFileRestoreDetails *)fileRestoreDetails; - -/// -/// Initializes union class with tag state of "file_revert_details". -/// -/// @param fileRevertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRevertDetails:(DBTEAMLOGFileRevertDetails *)fileRevertDetails; - -/// -/// Initializes union class with tag state of "file_rollback_changes_details". -/// -/// @param fileRollbackChangesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRollbackChangesDetails:(DBTEAMLOGFileRollbackChangesDetails *)fileRollbackChangesDetails; - -/// -/// Initializes union class with tag state of -/// "file_save_copy_reference_details". -/// -/// @param fileSaveCopyReferenceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSaveCopyReferenceDetails: - (DBTEAMLOGFileSaveCopyReferenceDetails *)fileSaveCopyReferenceDetails; - -/// -/// Initializes union class with tag state of -/// "folder_overview_description_changed_details". -/// -/// @param folderOverviewDescriptionChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewDescriptionChangedDetails: - (DBTEAMLOGFolderOverviewDescriptionChangedDetails *)folderOverviewDescriptionChangedDetails; - -/// -/// Initializes union class with tag state of -/// "folder_overview_item_pinned_details". -/// -/// @param folderOverviewItemPinnedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemPinnedDetails: - (DBTEAMLOGFolderOverviewItemPinnedDetails *)folderOverviewItemPinnedDetails; - -/// -/// Initializes union class with tag state of -/// "folder_overview_item_unpinned_details". -/// -/// @param folderOverviewItemUnpinnedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemUnpinnedDetails: - (DBTEAMLOGFolderOverviewItemUnpinnedDetails *)folderOverviewItemUnpinnedDetails; - -/// -/// Initializes union class with tag state of "object_label_added_details". -/// -/// @param objectLabelAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelAddedDetails:(DBTEAMLOGObjectLabelAddedDetails *)objectLabelAddedDetails; - -/// -/// Initializes union class with tag state of "object_label_removed_details". -/// -/// @param objectLabelRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelRemovedDetails:(DBTEAMLOGObjectLabelRemovedDetails *)objectLabelRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "object_label_updated_value_details". -/// -/// @param objectLabelUpdatedValueDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelUpdatedValueDetails: - (DBTEAMLOGObjectLabelUpdatedValueDetails *)objectLabelUpdatedValueDetails; - -/// -/// Initializes union class with tag state of -/// "organize_folder_with_tidy_details". -/// -/// @param organizeFolderWithTidyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizeFolderWithTidyDetails: - (DBTEAMLOGOrganizeFolderWithTidyDetails *)organizeFolderWithTidyDetails; - -/// -/// Initializes union class with tag state of "replay_file_delete_details". -/// -/// @param replayFileDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileDeleteDetails:(DBTEAMLOGReplayFileDeleteDetails *)replayFileDeleteDetails; - -/// -/// Initializes union class with tag state of "rewind_folder_details". -/// -/// @param rewindFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolderDetails:(DBTEAMLOGRewindFolderDetails *)rewindFolderDetails; - -/// -/// Initializes union class with tag state of "undo_naming_convention_details". -/// -/// @param undoNamingConventionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoNamingConventionDetails:(DBTEAMLOGUndoNamingConventionDetails *)undoNamingConventionDetails; - -/// -/// Initializes union class with tag state of -/// "undo_organize_folder_with_tidy_details". -/// -/// @param undoOrganizeFolderWithTidyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoOrganizeFolderWithTidyDetails: - (DBTEAMLOGUndoOrganizeFolderWithTidyDetails *)undoOrganizeFolderWithTidyDetails; - -/// -/// Initializes union class with tag state of "user_tags_added_details". -/// -/// @param userTagsAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsAddedDetails:(DBTEAMLOGUserTagsAddedDetails *)userTagsAddedDetails; - -/// -/// Initializes union class with tag state of "user_tags_removed_details". -/// -/// @param userTagsRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsRemovedDetails:(DBTEAMLOGUserTagsRemovedDetails *)userTagsRemovedDetails; - -/// -/// Initializes union class with tag state of -/// "email_ingest_receive_file_details". -/// -/// @param emailIngestReceiveFileDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestReceiveFileDetails: - (DBTEAMLOGEmailIngestReceiveFileDetails *)emailIngestReceiveFileDetails; - -/// -/// Initializes union class with tag state of "file_request_change_details". -/// -/// @param fileRequestChangeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestChangeDetails:(DBTEAMLOGFileRequestChangeDetails *)fileRequestChangeDetails; - -/// -/// Initializes union class with tag state of "file_request_close_details". -/// -/// @param fileRequestCloseDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCloseDetails:(DBTEAMLOGFileRequestCloseDetails *)fileRequestCloseDetails; - -/// -/// Initializes union class with tag state of "file_request_create_details". -/// -/// @param fileRequestCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCreateDetails:(DBTEAMLOGFileRequestCreateDetails *)fileRequestCreateDetails; - -/// -/// Initializes union class with tag state of "file_request_delete_details". -/// -/// @param fileRequestDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestDeleteDetails:(DBTEAMLOGFileRequestDeleteDetails *)fileRequestDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "file_request_receive_file_details". -/// -/// @param fileRequestReceiveFileDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestReceiveFileDetails: - (DBTEAMLOGFileRequestReceiveFileDetails *)fileRequestReceiveFileDetails; - -/// -/// Initializes union class with tag state of "group_add_external_id_details". -/// -/// @param groupAddExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddExternalIdDetails:(DBTEAMLOGGroupAddExternalIdDetails *)groupAddExternalIdDetails; - -/// -/// Initializes union class with tag state of "group_add_member_details". -/// -/// @param groupAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddMemberDetails:(DBTEAMLOGGroupAddMemberDetails *)groupAddMemberDetails; - -/// -/// Initializes union class with tag state of -/// "group_change_external_id_details". -/// -/// @param groupChangeExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeExternalIdDetails: - (DBTEAMLOGGroupChangeExternalIdDetails *)groupChangeExternalIdDetails; - -/// -/// Initializes union class with tag state of -/// "group_change_management_type_details". -/// -/// @param groupChangeManagementTypeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeManagementTypeDetails: - (DBTEAMLOGGroupChangeManagementTypeDetails *)groupChangeManagementTypeDetails; - -/// -/// Initializes union class with tag state of -/// "group_change_member_role_details". -/// -/// @param groupChangeMemberRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeMemberRoleDetails: - (DBTEAMLOGGroupChangeMemberRoleDetails *)groupChangeMemberRoleDetails; - -/// -/// Initializes union class with tag state of "group_create_details". -/// -/// @param groupCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupCreateDetails:(DBTEAMLOGGroupCreateDetails *)groupCreateDetails; - -/// -/// Initializes union class with tag state of "group_delete_details". -/// -/// @param groupDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDeleteDetails:(DBTEAMLOGGroupDeleteDetails *)groupDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "group_description_updated_details". -/// -/// @param groupDescriptionUpdatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDescriptionUpdatedDetails: - (DBTEAMLOGGroupDescriptionUpdatedDetails *)groupDescriptionUpdatedDetails; - -/// -/// Initializes union class with tag state of -/// "group_join_policy_updated_details". -/// -/// @param groupJoinPolicyUpdatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupJoinPolicyUpdatedDetails: - (DBTEAMLOGGroupJoinPolicyUpdatedDetails *)groupJoinPolicyUpdatedDetails; - -/// -/// Initializes union class with tag state of "group_moved_details". -/// -/// @param groupMovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupMovedDetails:(DBTEAMLOGGroupMovedDetails *)groupMovedDetails; - -/// -/// Initializes union class with tag state of -/// "group_remove_external_id_details". -/// -/// @param groupRemoveExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveExternalIdDetails: - (DBTEAMLOGGroupRemoveExternalIdDetails *)groupRemoveExternalIdDetails; - -/// -/// Initializes union class with tag state of "group_remove_member_details". -/// -/// @param groupRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveMemberDetails:(DBTEAMLOGGroupRemoveMemberDetails *)groupRemoveMemberDetails; - -/// -/// Initializes union class with tag state of "group_rename_details". -/// -/// @param groupRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRenameDetails:(DBTEAMLOGGroupRenameDetails *)groupRenameDetails; - -/// -/// Initializes union class with tag state of -/// "account_lock_or_unlocked_details". -/// -/// @param accountLockOrUnlockedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountLockOrUnlockedDetails: - (DBTEAMLOGAccountLockOrUnlockedDetails *)accountLockOrUnlockedDetails; - -/// -/// Initializes union class with tag state of "emm_error_details". -/// -/// @param emmErrorDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmErrorDetails:(DBTEAMLOGEmmErrorDetails *)emmErrorDetails; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_in_via_trusted_teams_details". -/// -/// @param guestAdminSignedInViaTrustedTeamsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedInViaTrustedTeamsDetails: - (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *)guestAdminSignedInViaTrustedTeamsDetails; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_out_via_trusted_teams_details". -/// -/// @param guestAdminSignedOutViaTrustedTeamsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedOutViaTrustedTeamsDetails: - (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *)guestAdminSignedOutViaTrustedTeamsDetails; - -/// -/// Initializes union class with tag state of "login_fail_details". -/// -/// @param loginFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginFailDetails:(DBTEAMLOGLoginFailDetails *)loginFailDetails; - -/// -/// Initializes union class with tag state of "login_success_details". -/// -/// @param loginSuccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginSuccessDetails:(DBTEAMLOGLoginSuccessDetails *)loginSuccessDetails; - -/// -/// Initializes union class with tag state of "logout_details". -/// -/// @param logoutDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogoutDetails:(DBTEAMLOGLogoutDetails *)logoutDetails; - -/// -/// Initializes union class with tag state of -/// "reseller_support_session_end_details". -/// -/// @param resellerSupportSessionEndDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionEndDetails: - (DBTEAMLOGResellerSupportSessionEndDetails *)resellerSupportSessionEndDetails; - -/// -/// Initializes union class with tag state of -/// "reseller_support_session_start_details". -/// -/// @param resellerSupportSessionStartDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionStartDetails: - (DBTEAMLOGResellerSupportSessionStartDetails *)resellerSupportSessionStartDetails; - -/// -/// Initializes union class with tag state of "sign_in_as_session_end_details". -/// -/// @param signInAsSessionEndDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionEndDetails:(DBTEAMLOGSignInAsSessionEndDetails *)signInAsSessionEndDetails; - -/// -/// Initializes union class with tag state of -/// "sign_in_as_session_start_details". -/// -/// @param signInAsSessionStartDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionStartDetails:(DBTEAMLOGSignInAsSessionStartDetails *)signInAsSessionStartDetails; - -/// -/// Initializes union class with tag state of "sso_error_details". -/// -/// @param ssoErrorDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoErrorDetails:(DBTEAMLOGSsoErrorDetails *)ssoErrorDetails; - -/// -/// Initializes union class with tag state of -/// "backup_admin_invitation_sent_details". -/// -/// @param backupAdminInvitationSentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupAdminInvitationSentDetails: - (DBTEAMLOGBackupAdminInvitationSentDetails *)backupAdminInvitationSentDetails; - -/// -/// Initializes union class with tag state of -/// "backup_invitation_opened_details". -/// -/// @param backupInvitationOpenedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupInvitationOpenedDetails: - (DBTEAMLOGBackupInvitationOpenedDetails *)backupInvitationOpenedDetails; - -/// -/// Initializes union class with tag state of "create_team_invite_link_details". -/// -/// @param createTeamInviteLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateTeamInviteLinkDetails:(DBTEAMLOGCreateTeamInviteLinkDetails *)createTeamInviteLinkDetails; - -/// -/// Initializes union class with tag state of "delete_team_invite_link_details". -/// -/// @param deleteTeamInviteLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteTeamInviteLinkDetails:(DBTEAMLOGDeleteTeamInviteLinkDetails *)deleteTeamInviteLinkDetails; - -/// -/// Initializes union class with tag state of "member_add_external_id_details". -/// -/// @param memberAddExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddExternalIdDetails:(DBTEAMLOGMemberAddExternalIdDetails *)memberAddExternalIdDetails; - -/// -/// Initializes union class with tag state of "member_add_name_details". -/// -/// @param memberAddNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddNameDetails:(DBTEAMLOGMemberAddNameDetails *)memberAddNameDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_admin_role_details". -/// -/// @param memberChangeAdminRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeAdminRoleDetails: - (DBTEAMLOGMemberChangeAdminRoleDetails *)memberChangeAdminRoleDetails; - -/// -/// Initializes union class with tag state of "member_change_email_details". -/// -/// @param memberChangeEmailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeEmailDetails:(DBTEAMLOGMemberChangeEmailDetails *)memberChangeEmailDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_external_id_details". -/// -/// @param memberChangeExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeExternalIdDetails: - (DBTEAMLOGMemberChangeExternalIdDetails *)memberChangeExternalIdDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_membership_type_details". -/// -/// @param memberChangeMembershipTypeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeMembershipTypeDetails: - (DBTEAMLOGMemberChangeMembershipTypeDetails *)memberChangeMembershipTypeDetails; - -/// -/// Initializes union class with tag state of "member_change_name_details". -/// -/// @param memberChangeNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeNameDetails:(DBTEAMLOGMemberChangeNameDetails *)memberChangeNameDetails; - -/// -/// Initializes union class with tag state of -/// "member_change_reseller_role_details". -/// -/// @param memberChangeResellerRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeResellerRoleDetails: - (DBTEAMLOGMemberChangeResellerRoleDetails *)memberChangeResellerRoleDetails; - -/// -/// Initializes union class with tag state of "member_change_status_details". -/// -/// @param memberChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeStatusDetails:(DBTEAMLOGMemberChangeStatusDetails *)memberChangeStatusDetails; - -/// -/// Initializes union class with tag state of -/// "member_delete_manual_contacts_details". -/// -/// @param memberDeleteManualContactsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteManualContactsDetails: - (DBTEAMLOGMemberDeleteManualContactsDetails *)memberDeleteManualContactsDetails; - -/// -/// Initializes union class with tag state of -/// "member_delete_profile_photo_details". -/// -/// @param memberDeleteProfilePhotoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteProfilePhotoDetails: - (DBTEAMLOGMemberDeleteProfilePhotoDetails *)memberDeleteProfilePhotoDetails; - -/// -/// Initializes union class with tag state of -/// "member_permanently_delete_account_contents_details". -/// -/// @param memberPermanentlyDeleteAccountContentsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberPermanentlyDeleteAccountContentsDetails: - (DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *)memberPermanentlyDeleteAccountContentsDetails; - -/// -/// Initializes union class with tag state of -/// "member_remove_external_id_details". -/// -/// @param memberRemoveExternalIdDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRemoveExternalIdDetails: - (DBTEAMLOGMemberRemoveExternalIdDetails *)memberRemoveExternalIdDetails; - -/// -/// Initializes union class with tag state of -/// "member_set_profile_photo_details". -/// -/// @param memberSetProfilePhotoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSetProfilePhotoDetails: - (DBTEAMLOGMemberSetProfilePhotoDetails *)memberSetProfilePhotoDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_custom_quota_details". -/// -/// @param memberSpaceLimitsAddCustomQuotaDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddCustomQuotaDetails: - (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *)memberSpaceLimitsAddCustomQuotaDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_custom_quota_details". -/// -/// @param memberSpaceLimitsChangeCustomQuotaDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCustomQuotaDetails: - (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *)memberSpaceLimitsChangeCustomQuotaDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_status_details". -/// -/// @param memberSpaceLimitsChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeStatusDetails: - (DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *)memberSpaceLimitsChangeStatusDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_custom_quota_details". -/// -/// @param memberSpaceLimitsRemoveCustomQuotaDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveCustomQuotaDetails: - (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *)memberSpaceLimitsRemoveCustomQuotaDetails; - -/// -/// Initializes union class with tag state of "member_suggest_details". -/// -/// @param memberSuggestDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestDetails:(DBTEAMLOGMemberSuggestDetails *)memberSuggestDetails; - -/// -/// Initializes union class with tag state of -/// "member_transfer_account_contents_details". -/// -/// @param memberTransferAccountContentsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberTransferAccountContentsDetails: - (DBTEAMLOGMemberTransferAccountContentsDetails *)memberTransferAccountContentsDetails; - -/// -/// Initializes union class with tag state of -/// "pending_secondary_email_added_details". -/// -/// @param pendingSecondaryEmailAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPendingSecondaryEmailAddedDetails: - (DBTEAMLOGPendingSecondaryEmailAddedDetails *)pendingSecondaryEmailAddedDetails; - -/// -/// Initializes union class with tag state of "secondary_email_deleted_details". -/// -/// @param secondaryEmailDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailDeletedDetails: - (DBTEAMLOGSecondaryEmailDeletedDetails *)secondaryEmailDeletedDetails; - -/// -/// Initializes union class with tag state of -/// "secondary_email_verified_details". -/// -/// @param secondaryEmailVerifiedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailVerifiedDetails: - (DBTEAMLOGSecondaryEmailVerifiedDetails *)secondaryEmailVerifiedDetails; - -/// -/// Initializes union class with tag state of -/// "secondary_mails_policy_changed_details". -/// -/// @param secondaryMailsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryMailsPolicyChangedDetails: - (DBTEAMLOGSecondaryMailsPolicyChangedDetails *)secondaryMailsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of "binder_add_page_details". -/// -/// @param binderAddPageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddPageDetails:(DBTEAMLOGBinderAddPageDetails *)binderAddPageDetails; - -/// -/// Initializes union class with tag state of "binder_add_section_details". -/// -/// @param binderAddSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddSectionDetails:(DBTEAMLOGBinderAddSectionDetails *)binderAddSectionDetails; - -/// -/// Initializes union class with tag state of "binder_remove_page_details". -/// -/// @param binderRemovePageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemovePageDetails:(DBTEAMLOGBinderRemovePageDetails *)binderRemovePageDetails; - -/// -/// Initializes union class with tag state of "binder_remove_section_details". -/// -/// @param binderRemoveSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemoveSectionDetails:(DBTEAMLOGBinderRemoveSectionDetails *)binderRemoveSectionDetails; - -/// -/// Initializes union class with tag state of "binder_rename_page_details". -/// -/// @param binderRenamePageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenamePageDetails:(DBTEAMLOGBinderRenamePageDetails *)binderRenamePageDetails; - -/// -/// Initializes union class with tag state of "binder_rename_section_details". -/// -/// @param binderRenameSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenameSectionDetails:(DBTEAMLOGBinderRenameSectionDetails *)binderRenameSectionDetails; - -/// -/// Initializes union class with tag state of "binder_reorder_page_details". -/// -/// @param binderReorderPageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderPageDetails:(DBTEAMLOGBinderReorderPageDetails *)binderReorderPageDetails; - -/// -/// Initializes union class with tag state of "binder_reorder_section_details". -/// -/// @param binderReorderSectionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderSectionDetails:(DBTEAMLOGBinderReorderSectionDetails *)binderReorderSectionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_add_member_details". -/// -/// @param paperContentAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddMemberDetails: - (DBTEAMLOGPaperContentAddMemberDetails *)paperContentAddMemberDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_add_to_folder_details". -/// -/// @param paperContentAddToFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddToFolderDetails: - (DBTEAMLOGPaperContentAddToFolderDetails *)paperContentAddToFolderDetails; - -/// -/// Initializes union class with tag state of "paper_content_archive_details". -/// -/// @param paperContentArchiveDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentArchiveDetails:(DBTEAMLOGPaperContentArchiveDetails *)paperContentArchiveDetails; - -/// -/// Initializes union class with tag state of "paper_content_create_details". -/// -/// @param paperContentCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentCreateDetails:(DBTEAMLOGPaperContentCreateDetails *)paperContentCreateDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_permanently_delete_details". -/// -/// @param paperContentPermanentlyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentPermanentlyDeleteDetails: - (DBTEAMLOGPaperContentPermanentlyDeleteDetails *)paperContentPermanentlyDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_from_folder_details". -/// -/// @param paperContentRemoveFromFolderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveFromFolderDetails: - (DBTEAMLOGPaperContentRemoveFromFolderDetails *)paperContentRemoveFromFolderDetails; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_member_details". -/// -/// @param paperContentRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveMemberDetails: - (DBTEAMLOGPaperContentRemoveMemberDetails *)paperContentRemoveMemberDetails; - -/// -/// Initializes union class with tag state of "paper_content_rename_details". -/// -/// @param paperContentRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRenameDetails:(DBTEAMLOGPaperContentRenameDetails *)paperContentRenameDetails; - -/// -/// Initializes union class with tag state of "paper_content_restore_details". -/// -/// @param paperContentRestoreDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRestoreDetails:(DBTEAMLOGPaperContentRestoreDetails *)paperContentRestoreDetails; - -/// -/// Initializes union class with tag state of "paper_doc_add_comment_details". -/// -/// @param paperDocAddCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocAddCommentDetails:(DBTEAMLOGPaperDocAddCommentDetails *)paperDocAddCommentDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_change_member_role_details". -/// -/// @param paperDocChangeMemberRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeMemberRoleDetails: - (DBTEAMLOGPaperDocChangeMemberRoleDetails *)paperDocChangeMemberRoleDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_change_sharing_policy_details". -/// -/// @param paperDocChangeSharingPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSharingPolicyDetails: - (DBTEAMLOGPaperDocChangeSharingPolicyDetails *)paperDocChangeSharingPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_change_subscription_details". -/// -/// @param paperDocChangeSubscriptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSubscriptionDetails: - (DBTEAMLOGPaperDocChangeSubscriptionDetails *)paperDocChangeSubscriptionDetails; - -/// -/// Initializes union class with tag state of "paper_doc_deleted_details". -/// -/// @param paperDocDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeletedDetails:(DBTEAMLOGPaperDocDeletedDetails *)paperDocDeletedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_delete_comment_details". -/// -/// @param paperDocDeleteCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleteCommentDetails: - (DBTEAMLOGPaperDocDeleteCommentDetails *)paperDocDeleteCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_download_details". -/// -/// @param paperDocDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDownloadDetails:(DBTEAMLOGPaperDocDownloadDetails *)paperDocDownloadDetails; - -/// -/// Initializes union class with tag state of "paper_doc_edit_details". -/// -/// @param paperDocEditDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditDetails:(DBTEAMLOGPaperDocEditDetails *)paperDocEditDetails; - -/// -/// Initializes union class with tag state of "paper_doc_edit_comment_details". -/// -/// @param paperDocEditCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditCommentDetails:(DBTEAMLOGPaperDocEditCommentDetails *)paperDocEditCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_followed_details". -/// -/// @param paperDocFollowedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocFollowedDetails:(DBTEAMLOGPaperDocFollowedDetails *)paperDocFollowedDetails; - -/// -/// Initializes union class with tag state of "paper_doc_mention_details". -/// -/// @param paperDocMentionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocMentionDetails:(DBTEAMLOGPaperDocMentionDetails *)paperDocMentionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_ownership_changed_details". -/// -/// @param paperDocOwnershipChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocOwnershipChangedDetails: - (DBTEAMLOGPaperDocOwnershipChangedDetails *)paperDocOwnershipChangedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_request_access_details". -/// -/// @param paperDocRequestAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRequestAccessDetails: - (DBTEAMLOGPaperDocRequestAccessDetails *)paperDocRequestAccessDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_resolve_comment_details". -/// -/// @param paperDocResolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocResolveCommentDetails: - (DBTEAMLOGPaperDocResolveCommentDetails *)paperDocResolveCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_revert_details". -/// -/// @param paperDocRevertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRevertDetails:(DBTEAMLOGPaperDocRevertDetails *)paperDocRevertDetails; - -/// -/// Initializes union class with tag state of "paper_doc_slack_share_details". -/// -/// @param paperDocSlackShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocSlackShareDetails:(DBTEAMLOGPaperDocSlackShareDetails *)paperDocSlackShareDetails; - -/// -/// Initializes union class with tag state of "paper_doc_team_invite_details". -/// -/// @param paperDocTeamInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTeamInviteDetails:(DBTEAMLOGPaperDocTeamInviteDetails *)paperDocTeamInviteDetails; - -/// -/// Initializes union class with tag state of "paper_doc_trashed_details". -/// -/// @param paperDocTrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTrashedDetails:(DBTEAMLOGPaperDocTrashedDetails *)paperDocTrashedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_doc_unresolve_comment_details". -/// -/// @param paperDocUnresolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUnresolveCommentDetails: - (DBTEAMLOGPaperDocUnresolveCommentDetails *)paperDocUnresolveCommentDetails; - -/// -/// Initializes union class with tag state of "paper_doc_untrashed_details". -/// -/// @param paperDocUntrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUntrashedDetails:(DBTEAMLOGPaperDocUntrashedDetails *)paperDocUntrashedDetails; - -/// -/// Initializes union class with tag state of "paper_doc_view_details". -/// -/// @param paperDocViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocViewDetails:(DBTEAMLOGPaperDocViewDetails *)paperDocViewDetails; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_allow_details". -/// -/// @param paperExternalViewAllowDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewAllowDetails: - (DBTEAMLOGPaperExternalViewAllowDetails *)paperExternalViewAllowDetails; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_default_team_details". -/// -/// @param paperExternalViewDefaultTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewDefaultTeamDetails: - (DBTEAMLOGPaperExternalViewDefaultTeamDetails *)paperExternalViewDefaultTeamDetails; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_forbid_details". -/// -/// @param paperExternalViewForbidDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewForbidDetails: - (DBTEAMLOGPaperExternalViewForbidDetails *)paperExternalViewForbidDetails; - -/// -/// Initializes union class with tag state of -/// "paper_folder_change_subscription_details". -/// -/// @param paperFolderChangeSubscriptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderChangeSubscriptionDetails: - (DBTEAMLOGPaperFolderChangeSubscriptionDetails *)paperFolderChangeSubscriptionDetails; - -/// -/// Initializes union class with tag state of "paper_folder_deleted_details". -/// -/// @param paperFolderDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderDeletedDetails:(DBTEAMLOGPaperFolderDeletedDetails *)paperFolderDeletedDetails; - -/// -/// Initializes union class with tag state of "paper_folder_followed_details". -/// -/// @param paperFolderFollowedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderFollowedDetails:(DBTEAMLOGPaperFolderFollowedDetails *)paperFolderFollowedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_folder_team_invite_details". -/// -/// @param paperFolderTeamInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderTeamInviteDetails: - (DBTEAMLOGPaperFolderTeamInviteDetails *)paperFolderTeamInviteDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_change_permission_details". -/// -/// @param paperPublishedLinkChangePermissionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkChangePermissionDetails: - (DBTEAMLOGPaperPublishedLinkChangePermissionDetails *)paperPublishedLinkChangePermissionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_create_details". -/// -/// @param paperPublishedLinkCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkCreateDetails: - (DBTEAMLOGPaperPublishedLinkCreateDetails *)paperPublishedLinkCreateDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_disabled_details". -/// -/// @param paperPublishedLinkDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkDisabledDetails: - (DBTEAMLOGPaperPublishedLinkDisabledDetails *)paperPublishedLinkDisabledDetails; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_view_details". -/// -/// @param paperPublishedLinkViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkViewDetails: - (DBTEAMLOGPaperPublishedLinkViewDetails *)paperPublishedLinkViewDetails; - -/// -/// Initializes union class with tag state of "password_change_details". -/// -/// @param passwordChangeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordChangeDetails:(DBTEAMLOGPasswordChangeDetails *)passwordChangeDetails; - -/// -/// Initializes union class with tag state of "password_reset_details". -/// -/// @param passwordResetDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetDetails:(DBTEAMLOGPasswordResetDetails *)passwordResetDetails; - -/// -/// Initializes union class with tag state of "password_reset_all_details". -/// -/// @param passwordResetAllDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetAllDetails:(DBTEAMLOGPasswordResetAllDetails *)passwordResetAllDetails; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_details". -/// -/// @param classificationCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportDetails: - (DBTEAMLOGClassificationCreateReportDetails *)classificationCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_fail_details". -/// -/// @param classificationCreateReportFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportFailDetails: - (DBTEAMLOGClassificationCreateReportFailDetails *)classificationCreateReportFailDetails; - -/// -/// Initializes union class with tag state of -/// "emm_create_exceptions_report_details". -/// -/// @param emmCreateExceptionsReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateExceptionsReportDetails: - (DBTEAMLOGEmmCreateExceptionsReportDetails *)emmCreateExceptionsReportDetails; - -/// -/// Initializes union class with tag state of "emm_create_usage_report_details". -/// -/// @param emmCreateUsageReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateUsageReportDetails:(DBTEAMLOGEmmCreateUsageReportDetails *)emmCreateUsageReportDetails; - -/// -/// Initializes union class with tag state of "export_members_report_details". -/// -/// @param exportMembersReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportDetails:(DBTEAMLOGExportMembersReportDetails *)exportMembersReportDetails; - -/// -/// Initializes union class with tag state of -/// "export_members_report_fail_details". -/// -/// @param exportMembersReportFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportFailDetails: - (DBTEAMLOGExportMembersReportFailDetails *)exportMembersReportFailDetails; - -/// -/// Initializes union class with tag state of -/// "external_sharing_create_report_details". -/// -/// @param externalSharingCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingCreateReportDetails: - (DBTEAMLOGExternalSharingCreateReportDetails *)externalSharingCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "external_sharing_report_failed_details". -/// -/// @param externalSharingReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingReportFailedDetails: - (DBTEAMLOGExternalSharingReportFailedDetails *)externalSharingReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_create_report_details". -/// -/// @param noExpirationLinkGenCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenCreateReportDetails: - (DBTEAMLOGNoExpirationLinkGenCreateReportDetails *)noExpirationLinkGenCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_report_failed_details". -/// -/// @param noExpirationLinkGenReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenReportFailedDetails: - (DBTEAMLOGNoExpirationLinkGenReportFailedDetails *)noExpirationLinkGenReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_create_report_details". -/// -/// @param noPasswordLinkGenCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenCreateReportDetails: - (DBTEAMLOGNoPasswordLinkGenCreateReportDetails *)noPasswordLinkGenCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_report_failed_details". -/// -/// @param noPasswordLinkGenReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenReportFailedDetails: - (DBTEAMLOGNoPasswordLinkGenReportFailedDetails *)noPasswordLinkGenReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_create_report_details". -/// -/// @param noPasswordLinkViewCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewCreateReportDetails: - (DBTEAMLOGNoPasswordLinkViewCreateReportDetails *)noPasswordLinkViewCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_report_failed_details". -/// -/// @param noPasswordLinkViewReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewReportFailedDetails: - (DBTEAMLOGNoPasswordLinkViewReportFailedDetails *)noPasswordLinkViewReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_create_report_details". -/// -/// @param outdatedLinkViewCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewCreateReportDetails: - (DBTEAMLOGOutdatedLinkViewCreateReportDetails *)outdatedLinkViewCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_report_failed_details". -/// -/// @param outdatedLinkViewReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewReportFailedDetails: - (DBTEAMLOGOutdatedLinkViewReportFailedDetails *)outdatedLinkViewReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_admin_export_start_details". -/// -/// @param paperAdminExportStartDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAdminExportStartDetails: - (DBTEAMLOGPaperAdminExportStartDetails *)paperAdminExportStartDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_details". -/// -/// @param ransomwareAlertCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportDetails: - (DBTEAMLOGRansomwareAlertCreateReportDetails *)ransomwareAlertCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_failed_details". -/// -/// @param ransomwareAlertCreateReportFailedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportFailedDetails: - (DBTEAMLOGRansomwareAlertCreateReportFailedDetails *)ransomwareAlertCreateReportFailedDetails; - -/// -/// Initializes union class with tag state of -/// "smart_sync_create_admin_privilege_report_details". -/// -/// @param smartSyncCreateAdminPrivilegeReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncCreateAdminPrivilegeReportDetails: - (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *)smartSyncCreateAdminPrivilegeReportDetails; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_details". -/// -/// @param teamActivityCreateReportDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportDetails: - (DBTEAMLOGTeamActivityCreateReportDetails *)teamActivityCreateReportDetails; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_fail_details". -/// -/// @param teamActivityCreateReportFailDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportFailDetails: - (DBTEAMLOGTeamActivityCreateReportFailDetails *)teamActivityCreateReportFailDetails; - -/// -/// Initializes union class with tag state of "collection_share_details". -/// -/// @param collectionShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCollectionShareDetails:(DBTEAMLOGCollectionShareDetails *)collectionShareDetails; - -/// -/// Initializes union class with tag state of "file_transfers_file_add_details". -/// -/// @param fileTransfersFileAddDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersFileAddDetails:(DBTEAMLOGFileTransfersFileAddDetails *)fileTransfersFileAddDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_delete_details". -/// -/// @param fileTransfersTransferDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDeleteDetails: - (DBTEAMLOGFileTransfersTransferDeleteDetails *)fileTransfersTransferDeleteDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_download_details". -/// -/// @param fileTransfersTransferDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDownloadDetails: - (DBTEAMLOGFileTransfersTransferDownloadDetails *)fileTransfersTransferDownloadDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_send_details". -/// -/// @param fileTransfersTransferSendDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferSendDetails: - (DBTEAMLOGFileTransfersTransferSendDetails *)fileTransfersTransferSendDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_view_details". -/// -/// @param fileTransfersTransferViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferViewDetails: - (DBTEAMLOGFileTransfersTransferViewDetails *)fileTransfersTransferViewDetails; - -/// -/// Initializes union class with tag state of "note_acl_invite_only_details". -/// -/// @param noteAclInviteOnlyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclInviteOnlyDetails:(DBTEAMLOGNoteAclInviteOnlyDetails *)noteAclInviteOnlyDetails; - -/// -/// Initializes union class with tag state of "note_acl_link_details". -/// -/// @param noteAclLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclLinkDetails:(DBTEAMLOGNoteAclLinkDetails *)noteAclLinkDetails; - -/// -/// Initializes union class with tag state of "note_acl_team_link_details". -/// -/// @param noteAclTeamLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclTeamLinkDetails:(DBTEAMLOGNoteAclTeamLinkDetails *)noteAclTeamLinkDetails; - -/// -/// Initializes union class with tag state of "note_shared_details". -/// -/// @param noteSharedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteSharedDetails:(DBTEAMLOGNoteSharedDetails *)noteSharedDetails; - -/// -/// Initializes union class with tag state of "note_share_receive_details". -/// -/// @param noteShareReceiveDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShareReceiveDetails:(DBTEAMLOGNoteShareReceiveDetails *)noteShareReceiveDetails; - -/// -/// Initializes union class with tag state of "open_note_shared_details". -/// -/// @param openNoteSharedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenNoteSharedDetails:(DBTEAMLOGOpenNoteSharedDetails *)openNoteSharedDetails; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_created_details". -/// -/// @param replayFileSharedLinkCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkCreatedDetails: - (DBTEAMLOGReplayFileSharedLinkCreatedDetails *)replayFileSharedLinkCreatedDetails; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_modified_details". -/// -/// @param replayFileSharedLinkModifiedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkModifiedDetails: - (DBTEAMLOGReplayFileSharedLinkModifiedDetails *)replayFileSharedLinkModifiedDetails; - -/// -/// Initializes union class with tag state of "replay_project_team_add_details". -/// -/// @param replayProjectTeamAddDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamAddDetails:(DBTEAMLOGReplayProjectTeamAddDetails *)replayProjectTeamAddDetails; - -/// -/// Initializes union class with tag state of -/// "replay_project_team_delete_details". -/// -/// @param replayProjectTeamDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamDeleteDetails: - (DBTEAMLOGReplayProjectTeamDeleteDetails *)replayProjectTeamDeleteDetails; - -/// -/// Initializes union class with tag state of "sf_add_group_details". -/// -/// @param sfAddGroupDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAddGroupDetails:(DBTEAMLOGSfAddGroupDetails *)sfAddGroupDetails; - -/// -/// Initializes union class with tag state of -/// "sf_allow_non_members_to_view_shared_links_details". -/// -/// @param sfAllowNonMembersToViewSharedLinksDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAllowNonMembersToViewSharedLinksDetails: - (DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *)sfAllowNonMembersToViewSharedLinksDetails; - -/// -/// Initializes union class with tag state of "sf_external_invite_warn_details". -/// -/// @param sfExternalInviteWarnDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfExternalInviteWarnDetails:(DBTEAMLOGSfExternalInviteWarnDetails *)sfExternalInviteWarnDetails; - -/// -/// Initializes union class with tag state of "sf_fb_invite_details". -/// -/// @param sfFbInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteDetails:(DBTEAMLOGSfFbInviteDetails *)sfFbInviteDetails; - -/// -/// Initializes union class with tag state of -/// "sf_fb_invite_change_role_details". -/// -/// @param sfFbInviteChangeRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteChangeRoleDetails:(DBTEAMLOGSfFbInviteChangeRoleDetails *)sfFbInviteChangeRoleDetails; - -/// -/// Initializes union class with tag state of "sf_fb_uninvite_details". -/// -/// @param sfFbUninviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbUninviteDetails:(DBTEAMLOGSfFbUninviteDetails *)sfFbUninviteDetails; - -/// -/// Initializes union class with tag state of "sf_invite_group_details". -/// -/// @param sfInviteGroupDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfInviteGroupDetails:(DBTEAMLOGSfInviteGroupDetails *)sfInviteGroupDetails; - -/// -/// Initializes union class with tag state of "sf_team_grant_access_details". -/// -/// @param sfTeamGrantAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamGrantAccessDetails:(DBTEAMLOGSfTeamGrantAccessDetails *)sfTeamGrantAccessDetails; - -/// -/// Initializes union class with tag state of "sf_team_invite_details". -/// -/// @param sfTeamInviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteDetails:(DBTEAMLOGSfTeamInviteDetails *)sfTeamInviteDetails; - -/// -/// Initializes union class with tag state of -/// "sf_team_invite_change_role_details". -/// -/// @param sfTeamInviteChangeRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteChangeRoleDetails: - (DBTEAMLOGSfTeamInviteChangeRoleDetails *)sfTeamInviteChangeRoleDetails; - -/// -/// Initializes union class with tag state of "sf_team_join_details". -/// -/// @param sfTeamJoinDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinDetails:(DBTEAMLOGSfTeamJoinDetails *)sfTeamJoinDetails; - -/// -/// Initializes union class with tag state of -/// "sf_team_join_from_oob_link_details". -/// -/// @param sfTeamJoinFromOobLinkDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinFromOobLinkDetails: - (DBTEAMLOGSfTeamJoinFromOobLinkDetails *)sfTeamJoinFromOobLinkDetails; - -/// -/// Initializes union class with tag state of "sf_team_uninvite_details". -/// -/// @param sfTeamUninviteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamUninviteDetails:(DBTEAMLOGSfTeamUninviteDetails *)sfTeamUninviteDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_invitees_details". -/// -/// @param sharedContentAddInviteesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddInviteesDetails: - (DBTEAMLOGSharedContentAddInviteesDetails *)sharedContentAddInviteesDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_expiry_details". -/// -/// @param sharedContentAddLinkExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkExpiryDetails: - (DBTEAMLOGSharedContentAddLinkExpiryDetails *)sharedContentAddLinkExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_password_details". -/// -/// @param sharedContentAddLinkPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkPasswordDetails: - (DBTEAMLOGSharedContentAddLinkPasswordDetails *)sharedContentAddLinkPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_member_details". -/// -/// @param sharedContentAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddMemberDetails: - (DBTEAMLOGSharedContentAddMemberDetails *)sharedContentAddMemberDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_downloads_policy_details". -/// -/// @param sharedContentChangeDownloadsPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeDownloadsPolicyDetails: - (DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *)sharedContentChangeDownloadsPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_invitee_role_details". -/// -/// @param sharedContentChangeInviteeRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeInviteeRoleDetails: - (DBTEAMLOGSharedContentChangeInviteeRoleDetails *)sharedContentChangeInviteeRoleDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_audience_details". -/// -/// @param sharedContentChangeLinkAudienceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkAudienceDetails: - (DBTEAMLOGSharedContentChangeLinkAudienceDetails *)sharedContentChangeLinkAudienceDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_expiry_details". -/// -/// @param sharedContentChangeLinkExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkExpiryDetails: - (DBTEAMLOGSharedContentChangeLinkExpiryDetails *)sharedContentChangeLinkExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_password_details". -/// -/// @param sharedContentChangeLinkPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkPasswordDetails: - (DBTEAMLOGSharedContentChangeLinkPasswordDetails *)sharedContentChangeLinkPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_member_role_details". -/// -/// @param sharedContentChangeMemberRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeMemberRoleDetails: - (DBTEAMLOGSharedContentChangeMemberRoleDetails *)sharedContentChangeMemberRoleDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_viewer_info_policy_details". -/// -/// @param sharedContentChangeViewerInfoPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeViewerInfoPolicyDetails: - (DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *)sharedContentChangeViewerInfoPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_claim_invitation_details". -/// -/// @param sharedContentClaimInvitationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentClaimInvitationDetails: - (DBTEAMLOGSharedContentClaimInvitationDetails *)sharedContentClaimInvitationDetails; - -/// -/// Initializes union class with tag state of "shared_content_copy_details". -/// -/// @param sharedContentCopyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentCopyDetails:(DBTEAMLOGSharedContentCopyDetails *)sharedContentCopyDetails; - -/// -/// Initializes union class with tag state of "shared_content_download_details". -/// -/// @param sharedContentDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentDownloadDetails: - (DBTEAMLOGSharedContentDownloadDetails *)sharedContentDownloadDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_relinquish_membership_details". -/// -/// @param sharedContentRelinquishMembershipDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRelinquishMembershipDetails: - (DBTEAMLOGSharedContentRelinquishMembershipDetails *)sharedContentRelinquishMembershipDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_invitees_details". -/// -/// @param sharedContentRemoveInviteesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveInviteesDetails: - (DBTEAMLOGSharedContentRemoveInviteesDetails *)sharedContentRemoveInviteesDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_expiry_details". -/// -/// @param sharedContentRemoveLinkExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkExpiryDetails: - (DBTEAMLOGSharedContentRemoveLinkExpiryDetails *)sharedContentRemoveLinkExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_password_details". -/// -/// @param sharedContentRemoveLinkPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkPasswordDetails: - (DBTEAMLOGSharedContentRemoveLinkPasswordDetails *)sharedContentRemoveLinkPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_member_details". -/// -/// @param sharedContentRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveMemberDetails: - (DBTEAMLOGSharedContentRemoveMemberDetails *)sharedContentRemoveMemberDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_request_access_details". -/// -/// @param sharedContentRequestAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRequestAccessDetails: - (DBTEAMLOGSharedContentRequestAccessDetails *)sharedContentRequestAccessDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_restore_invitees_details". -/// -/// @param sharedContentRestoreInviteesDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreInviteesDetails: - (DBTEAMLOGSharedContentRestoreInviteesDetails *)sharedContentRestoreInviteesDetails; - -/// -/// Initializes union class with tag state of -/// "shared_content_restore_member_details". -/// -/// @param sharedContentRestoreMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreMemberDetails: - (DBTEAMLOGSharedContentRestoreMemberDetails *)sharedContentRestoreMemberDetails; - -/// -/// Initializes union class with tag state of "shared_content_unshare_details". -/// -/// @param sharedContentUnshareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentUnshareDetails:(DBTEAMLOGSharedContentUnshareDetails *)sharedContentUnshareDetails; - -/// -/// Initializes union class with tag state of "shared_content_view_details". -/// -/// @param sharedContentViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentViewDetails:(DBTEAMLOGSharedContentViewDetails *)sharedContentViewDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_link_policy_details". -/// -/// @param sharedFolderChangeLinkPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeLinkPolicyDetails: - (DBTEAMLOGSharedFolderChangeLinkPolicyDetails *)sharedFolderChangeLinkPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_inheritance_policy_details". -/// -/// @param sharedFolderChangeMembersInheritancePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersInheritancePolicyDetails: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *)sharedFolderChangeMembersInheritancePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_management_policy_details". -/// -/// @param sharedFolderChangeMembersManagementPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersManagementPolicyDetails: - (DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *)sharedFolderChangeMembersManagementPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_policy_details". -/// -/// @param sharedFolderChangeMembersPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersPolicyDetails: - (DBTEAMLOGSharedFolderChangeMembersPolicyDetails *)sharedFolderChangeMembersPolicyDetails; - -/// -/// Initializes union class with tag state of "shared_folder_create_details". -/// -/// @param sharedFolderCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderCreateDetails:(DBTEAMLOGSharedFolderCreateDetails *)sharedFolderCreateDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_decline_invitation_details". -/// -/// @param sharedFolderDeclineInvitationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderDeclineInvitationDetails: - (DBTEAMLOGSharedFolderDeclineInvitationDetails *)sharedFolderDeclineInvitationDetails; - -/// -/// Initializes union class with tag state of "shared_folder_mount_details". -/// -/// @param sharedFolderMountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMountDetails:(DBTEAMLOGSharedFolderMountDetails *)sharedFolderMountDetails; - -/// -/// Initializes union class with tag state of "shared_folder_nest_details". -/// -/// @param sharedFolderNestDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderNestDetails:(DBTEAMLOGSharedFolderNestDetails *)sharedFolderNestDetails; - -/// -/// Initializes union class with tag state of -/// "shared_folder_transfer_ownership_details". -/// -/// @param sharedFolderTransferOwnershipDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderTransferOwnershipDetails: - (DBTEAMLOGSharedFolderTransferOwnershipDetails *)sharedFolderTransferOwnershipDetails; - -/// -/// Initializes union class with tag state of "shared_folder_unmount_details". -/// -/// @param sharedFolderUnmountDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderUnmountDetails:(DBTEAMLOGSharedFolderUnmountDetails *)sharedFolderUnmountDetails; - -/// -/// Initializes union class with tag state of "shared_link_add_expiry_details". -/// -/// @param sharedLinkAddExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAddExpiryDetails:(DBTEAMLOGSharedLinkAddExpiryDetails *)sharedLinkAddExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_change_expiry_details". -/// -/// @param sharedLinkChangeExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeExpiryDetails: - (DBTEAMLOGSharedLinkChangeExpiryDetails *)sharedLinkChangeExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_change_visibility_details". -/// -/// @param sharedLinkChangeVisibilityDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeVisibilityDetails: - (DBTEAMLOGSharedLinkChangeVisibilityDetails *)sharedLinkChangeVisibilityDetails; - -/// -/// Initializes union class with tag state of "shared_link_copy_details". -/// -/// @param sharedLinkCopyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCopyDetails:(DBTEAMLOGSharedLinkCopyDetails *)sharedLinkCopyDetails; - -/// -/// Initializes union class with tag state of "shared_link_create_details". -/// -/// @param sharedLinkCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCreateDetails:(DBTEAMLOGSharedLinkCreateDetails *)sharedLinkCreateDetails; - -/// -/// Initializes union class with tag state of "shared_link_disable_details". -/// -/// @param sharedLinkDisableDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDisableDetails:(DBTEAMLOGSharedLinkDisableDetails *)sharedLinkDisableDetails; - -/// -/// Initializes union class with tag state of "shared_link_download_details". -/// -/// @param sharedLinkDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDownloadDetails:(DBTEAMLOGSharedLinkDownloadDetails *)sharedLinkDownloadDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_remove_expiry_details". -/// -/// @param sharedLinkRemoveExpiryDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkRemoveExpiryDetails: - (DBTEAMLOGSharedLinkRemoveExpiryDetails *)sharedLinkRemoveExpiryDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_expiration_details". -/// -/// @param sharedLinkSettingsAddExpirationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddExpirationDetails: - (DBTEAMLOGSharedLinkSettingsAddExpirationDetails *)sharedLinkSettingsAddExpirationDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_password_details". -/// -/// @param sharedLinkSettingsAddPasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddPasswordDetails: - (DBTEAMLOGSharedLinkSettingsAddPasswordDetails *)sharedLinkSettingsAddPasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_disabled_details". -/// -/// @param sharedLinkSettingsAllowDownloadDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadDisabledDetails: - (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *)sharedLinkSettingsAllowDownloadDisabledDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_enabled_details". -/// -/// @param sharedLinkSettingsAllowDownloadEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadEnabledDetails: - (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *)sharedLinkSettingsAllowDownloadEnabledDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_audience_details". -/// -/// @param sharedLinkSettingsChangeAudienceDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeAudienceDetails: - (DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *)sharedLinkSettingsChangeAudienceDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_expiration_details". -/// -/// @param sharedLinkSettingsChangeExpirationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeExpirationDetails: - (DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *)sharedLinkSettingsChangeExpirationDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_password_details". -/// -/// @param sharedLinkSettingsChangePasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangePasswordDetails: - (DBTEAMLOGSharedLinkSettingsChangePasswordDetails *)sharedLinkSettingsChangePasswordDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_expiration_details". -/// -/// @param sharedLinkSettingsRemoveExpirationDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemoveExpirationDetails: - (DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *)sharedLinkSettingsRemoveExpirationDetails; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_password_details". -/// -/// @param sharedLinkSettingsRemovePasswordDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemovePasswordDetails: - (DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *)sharedLinkSettingsRemovePasswordDetails; - -/// -/// Initializes union class with tag state of "shared_link_share_details". -/// -/// @param sharedLinkShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkShareDetails:(DBTEAMLOGSharedLinkShareDetails *)sharedLinkShareDetails; - -/// -/// Initializes union class with tag state of "shared_link_view_details". -/// -/// @param sharedLinkViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkViewDetails:(DBTEAMLOGSharedLinkViewDetails *)sharedLinkViewDetails; - -/// -/// Initializes union class with tag state of "shared_note_opened_details". -/// -/// @param sharedNoteOpenedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedNoteOpenedDetails:(DBTEAMLOGSharedNoteOpenedDetails *)sharedNoteOpenedDetails; - -/// -/// Initializes union class with tag state of -/// "shmodel_disable_downloads_details". -/// -/// @param shmodelDisableDownloadsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelDisableDownloadsDetails: - (DBTEAMLOGShmodelDisableDownloadsDetails *)shmodelDisableDownloadsDetails; - -/// -/// Initializes union class with tag state of -/// "shmodel_enable_downloads_details". -/// -/// @param shmodelEnableDownloadsDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelEnableDownloadsDetails: - (DBTEAMLOGShmodelEnableDownloadsDetails *)shmodelEnableDownloadsDetails; - -/// -/// Initializes union class with tag state of "shmodel_group_share_details". -/// -/// @param shmodelGroupShareDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelGroupShareDetails:(DBTEAMLOGShmodelGroupShareDetails *)shmodelGroupShareDetails; - -/// -/// Initializes union class with tag state of "showcase_access_granted_details". -/// -/// @param showcaseAccessGrantedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAccessGrantedDetails: - (DBTEAMLOGShowcaseAccessGrantedDetails *)showcaseAccessGrantedDetails; - -/// -/// Initializes union class with tag state of "showcase_add_member_details". -/// -/// @param showcaseAddMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAddMemberDetails:(DBTEAMLOGShowcaseAddMemberDetails *)showcaseAddMemberDetails; - -/// -/// Initializes union class with tag state of "showcase_archived_details". -/// -/// @param showcaseArchivedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseArchivedDetails:(DBTEAMLOGShowcaseArchivedDetails *)showcaseArchivedDetails; - -/// -/// Initializes union class with tag state of "showcase_created_details". -/// -/// @param showcaseCreatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseCreatedDetails:(DBTEAMLOGShowcaseCreatedDetails *)showcaseCreatedDetails; - -/// -/// Initializes union class with tag state of "showcase_delete_comment_details". -/// -/// @param showcaseDeleteCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDeleteCommentDetails: - (DBTEAMLOGShowcaseDeleteCommentDetails *)showcaseDeleteCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_edited_details". -/// -/// @param showcaseEditedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditedDetails:(DBTEAMLOGShowcaseEditedDetails *)showcaseEditedDetails; - -/// -/// Initializes union class with tag state of "showcase_edit_comment_details". -/// -/// @param showcaseEditCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditCommentDetails:(DBTEAMLOGShowcaseEditCommentDetails *)showcaseEditCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_file_added_details". -/// -/// @param showcaseFileAddedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileAddedDetails:(DBTEAMLOGShowcaseFileAddedDetails *)showcaseFileAddedDetails; - -/// -/// Initializes union class with tag state of "showcase_file_download_details". -/// -/// @param showcaseFileDownloadDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileDownloadDetails:(DBTEAMLOGShowcaseFileDownloadDetails *)showcaseFileDownloadDetails; - -/// -/// Initializes union class with tag state of "showcase_file_removed_details". -/// -/// @param showcaseFileRemovedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileRemovedDetails:(DBTEAMLOGShowcaseFileRemovedDetails *)showcaseFileRemovedDetails; - -/// -/// Initializes union class with tag state of "showcase_file_view_details". -/// -/// @param showcaseFileViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileViewDetails:(DBTEAMLOGShowcaseFileViewDetails *)showcaseFileViewDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_permanently_deleted_details". -/// -/// @param showcasePermanentlyDeletedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePermanentlyDeletedDetails: - (DBTEAMLOGShowcasePermanentlyDeletedDetails *)showcasePermanentlyDeletedDetails; - -/// -/// Initializes union class with tag state of "showcase_post_comment_details". -/// -/// @param showcasePostCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePostCommentDetails:(DBTEAMLOGShowcasePostCommentDetails *)showcasePostCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_remove_member_details". -/// -/// @param showcaseRemoveMemberDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRemoveMemberDetails:(DBTEAMLOGShowcaseRemoveMemberDetails *)showcaseRemoveMemberDetails; - -/// -/// Initializes union class with tag state of "showcase_renamed_details". -/// -/// @param showcaseRenamedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRenamedDetails:(DBTEAMLOGShowcaseRenamedDetails *)showcaseRenamedDetails; - -/// -/// Initializes union class with tag state of "showcase_request_access_details". -/// -/// @param showcaseRequestAccessDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRequestAccessDetails: - (DBTEAMLOGShowcaseRequestAccessDetails *)showcaseRequestAccessDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_resolve_comment_details". -/// -/// @param showcaseResolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseResolveCommentDetails: - (DBTEAMLOGShowcaseResolveCommentDetails *)showcaseResolveCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_restored_details". -/// -/// @param showcaseRestoredDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRestoredDetails:(DBTEAMLOGShowcaseRestoredDetails *)showcaseRestoredDetails; - -/// -/// Initializes union class with tag state of "showcase_trashed_details". -/// -/// @param showcaseTrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDetails:(DBTEAMLOGShowcaseTrashedDetails *)showcaseTrashedDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_trashed_deprecated_details". -/// -/// @param showcaseTrashedDeprecatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDeprecatedDetails: - (DBTEAMLOGShowcaseTrashedDeprecatedDetails *)showcaseTrashedDeprecatedDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_unresolve_comment_details". -/// -/// @param showcaseUnresolveCommentDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUnresolveCommentDetails: - (DBTEAMLOGShowcaseUnresolveCommentDetails *)showcaseUnresolveCommentDetails; - -/// -/// Initializes union class with tag state of "showcase_untrashed_details". -/// -/// @param showcaseUntrashedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDetails:(DBTEAMLOGShowcaseUntrashedDetails *)showcaseUntrashedDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_untrashed_deprecated_details". -/// -/// @param showcaseUntrashedDeprecatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDeprecatedDetails: - (DBTEAMLOGShowcaseUntrashedDeprecatedDetails *)showcaseUntrashedDeprecatedDetails; - -/// -/// Initializes union class with tag state of "showcase_view_details". -/// -/// @param showcaseViewDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseViewDetails:(DBTEAMLOGShowcaseViewDetails *)showcaseViewDetails; - -/// -/// Initializes union class with tag state of "sso_add_cert_details". -/// -/// @param ssoAddCertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddCertDetails:(DBTEAMLOGSsoAddCertDetails *)ssoAddCertDetails; - -/// -/// Initializes union class with tag state of "sso_add_login_url_details". -/// -/// @param ssoAddLoginUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLoginUrlDetails:(DBTEAMLOGSsoAddLoginUrlDetails *)ssoAddLoginUrlDetails; - -/// -/// Initializes union class with tag state of "sso_add_logout_url_details". -/// -/// @param ssoAddLogoutUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLogoutUrlDetails:(DBTEAMLOGSsoAddLogoutUrlDetails *)ssoAddLogoutUrlDetails; - -/// -/// Initializes union class with tag state of "sso_change_cert_details". -/// -/// @param ssoChangeCertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeCertDetails:(DBTEAMLOGSsoChangeCertDetails *)ssoChangeCertDetails; - -/// -/// Initializes union class with tag state of "sso_change_login_url_details". -/// -/// @param ssoChangeLoginUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLoginUrlDetails:(DBTEAMLOGSsoChangeLoginUrlDetails *)ssoChangeLoginUrlDetails; - -/// -/// Initializes union class with tag state of "sso_change_logout_url_details". -/// -/// @param ssoChangeLogoutUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLogoutUrlDetails:(DBTEAMLOGSsoChangeLogoutUrlDetails *)ssoChangeLogoutUrlDetails; - -/// -/// Initializes union class with tag state of -/// "sso_change_saml_identity_mode_details". -/// -/// @param ssoChangeSamlIdentityModeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeSamlIdentityModeDetails: - (DBTEAMLOGSsoChangeSamlIdentityModeDetails *)ssoChangeSamlIdentityModeDetails; - -/// -/// Initializes union class with tag state of "sso_remove_cert_details". -/// -/// @param ssoRemoveCertDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveCertDetails:(DBTEAMLOGSsoRemoveCertDetails *)ssoRemoveCertDetails; - -/// -/// Initializes union class with tag state of "sso_remove_login_url_details". -/// -/// @param ssoRemoveLoginUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLoginUrlDetails:(DBTEAMLOGSsoRemoveLoginUrlDetails *)ssoRemoveLoginUrlDetails; - -/// -/// Initializes union class with tag state of "sso_remove_logout_url_details". -/// -/// @param ssoRemoveLogoutUrlDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLogoutUrlDetails:(DBTEAMLOGSsoRemoveLogoutUrlDetails *)ssoRemoveLogoutUrlDetails; - -/// -/// Initializes union class with tag state of -/// "team_folder_change_status_details". -/// -/// @param teamFolderChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderChangeStatusDetails: - (DBTEAMLOGTeamFolderChangeStatusDetails *)teamFolderChangeStatusDetails; - -/// -/// Initializes union class with tag state of "team_folder_create_details". -/// -/// @param teamFolderCreateDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderCreateDetails:(DBTEAMLOGTeamFolderCreateDetails *)teamFolderCreateDetails; - -/// -/// Initializes union class with tag state of "team_folder_downgrade_details". -/// -/// @param teamFolderDowngradeDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderDowngradeDetails:(DBTEAMLOGTeamFolderDowngradeDetails *)teamFolderDowngradeDetails; - -/// -/// Initializes union class with tag state of -/// "team_folder_permanently_delete_details". -/// -/// @param teamFolderPermanentlyDeleteDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderPermanentlyDeleteDetails: - (DBTEAMLOGTeamFolderPermanentlyDeleteDetails *)teamFolderPermanentlyDeleteDetails; - -/// -/// Initializes union class with tag state of "team_folder_rename_details". -/// -/// @param teamFolderRenameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderRenameDetails:(DBTEAMLOGTeamFolderRenameDetails *)teamFolderRenameDetails; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_settings_changed_details". -/// -/// @param teamSelectiveSyncSettingsChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncSettingsChangedDetails: - (DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *)teamSelectiveSyncSettingsChangedDetails; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_policy_details". -/// -/// @param accountCaptureChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangePolicyDetails: - (DBTEAMLOGAccountCaptureChangePolicyDetails *)accountCaptureChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "admin_email_reminders_changed_details". -/// -/// @param adminEmailRemindersChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminEmailRemindersChangedDetails: - (DBTEAMLOGAdminEmailRemindersChangedDetails *)adminEmailRemindersChangedDetails; - -/// -/// Initializes union class with tag state of "allow_download_disabled_details". -/// -/// @param allowDownloadDisabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadDisabledDetails: - (DBTEAMLOGAllowDownloadDisabledDetails *)allowDownloadDisabledDetails; - -/// -/// Initializes union class with tag state of "allow_download_enabled_details". -/// -/// @param allowDownloadEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadEnabledDetails:(DBTEAMLOGAllowDownloadEnabledDetails *)allowDownloadEnabledDetails; - -/// -/// Initializes union class with tag state of "app_permissions_changed_details". -/// -/// @param appPermissionsChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppPermissionsChangedDetails: - (DBTEAMLOGAppPermissionsChangedDetails *)appPermissionsChangedDetails; - -/// -/// Initializes union class with tag state of -/// "camera_uploads_policy_changed_details". -/// -/// @param cameraUploadsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCameraUploadsPolicyChangedDetails: - (DBTEAMLOGCameraUploadsPolicyChangedDetails *)cameraUploadsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "capture_transcript_policy_changed_details". -/// -/// @param captureTranscriptPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCaptureTranscriptPolicyChangedDetails: - (DBTEAMLOGCaptureTranscriptPolicyChangedDetails *)captureTranscriptPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "classification_change_policy_details". -/// -/// @param classificationChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationChangePolicyDetails: - (DBTEAMLOGClassificationChangePolicyDetails *)classificationChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "computer_backup_policy_changed_details". -/// -/// @param computerBackupPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComputerBackupPolicyChangedDetails: - (DBTEAMLOGComputerBackupPolicyChangedDetails *)computerBackupPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "content_administration_policy_changed_details". -/// -/// @param contentAdministrationPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdministrationPolicyChangedDetails: - (DBTEAMLOGContentAdministrationPolicyChangedDetails *)contentAdministrationPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_change_policy_details". -/// -/// @param dataPlacementRestrictionChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionChangePolicyDetails: - (DBTEAMLOGDataPlacementRestrictionChangePolicyDetails *)dataPlacementRestrictionChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_satisfy_policy_details". -/// -/// @param dataPlacementRestrictionSatisfyPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionSatisfyPolicyDetails: - (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyDetails *)dataPlacementRestrictionSatisfyPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_add_exception_details". -/// -/// @param deviceApprovalsAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsAddExceptionDetails: - (DBTEAMLOGDeviceApprovalsAddExceptionDetails *)deviceApprovalsAddExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_desktop_policy_details". -/// -/// @param deviceApprovalsChangeDesktopPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeDesktopPolicyDetails: - (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyDetails *)deviceApprovalsChangeDesktopPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_mobile_policy_details". -/// -/// @param deviceApprovalsChangeMobilePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeMobilePolicyDetails: - (DBTEAMLOGDeviceApprovalsChangeMobilePolicyDetails *)deviceApprovalsChangeMobilePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_overage_action_details". -/// -/// @param deviceApprovalsChangeOverageActionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeOverageActionDetails: - (DBTEAMLOGDeviceApprovalsChangeOverageActionDetails *)deviceApprovalsChangeOverageActionDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_unlink_action_details". -/// -/// @param deviceApprovalsChangeUnlinkActionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeUnlinkActionDetails: - (DBTEAMLOGDeviceApprovalsChangeUnlinkActionDetails *)deviceApprovalsChangeUnlinkActionDetails; - -/// -/// Initializes union class with tag state of -/// "device_approvals_remove_exception_details". -/// -/// @param deviceApprovalsRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsRemoveExceptionDetails: - (DBTEAMLOGDeviceApprovalsRemoveExceptionDetails *)deviceApprovalsRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_add_members_details". -/// -/// @param directoryRestrictionsAddMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsAddMembersDetails: - (DBTEAMLOGDirectoryRestrictionsAddMembersDetails *)directoryRestrictionsAddMembersDetails; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_remove_members_details". -/// -/// @param directoryRestrictionsRemoveMembersDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsRemoveMembersDetails: - (DBTEAMLOGDirectoryRestrictionsRemoveMembersDetails *)directoryRestrictionsRemoveMembersDetails; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_policy_changed_details". -/// -/// @param dropboxPasswordsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsPolicyChangedDetails: - (DBTEAMLOGDropboxPasswordsPolicyChangedDetails *)dropboxPasswordsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "email_ingest_policy_changed_details". -/// -/// @param emailIngestPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestPolicyChangedDetails: - (DBTEAMLOGEmailIngestPolicyChangedDetails *)emailIngestPolicyChangedDetails; - -/// -/// Initializes union class with tag state of "emm_add_exception_details". -/// -/// @param emmAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmAddExceptionDetails:(DBTEAMLOGEmmAddExceptionDetails *)emmAddExceptionDetails; - -/// -/// Initializes union class with tag state of "emm_change_policy_details". -/// -/// @param emmChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmChangePolicyDetails:(DBTEAMLOGEmmChangePolicyDetails *)emmChangePolicyDetails; - -/// -/// Initializes union class with tag state of "emm_remove_exception_details". -/// -/// @param emmRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRemoveExceptionDetails:(DBTEAMLOGEmmRemoveExceptionDetails *)emmRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "extended_version_history_change_policy_details". -/// -/// @param extendedVersionHistoryChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtendedVersionHistoryChangePolicyDetails: - (DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *)extendedVersionHistoryChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_policy_changed_details". -/// -/// @param externalDriveBackupPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupPolicyChangedDetails: - (DBTEAMLOGExternalDriveBackupPolicyChangedDetails *)externalDriveBackupPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "file_comments_change_policy_details". -/// -/// @param fileCommentsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommentsChangePolicyDetails: - (DBTEAMLOGFileCommentsChangePolicyDetails *)fileCommentsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "file_locking_policy_changed_details". -/// -/// @param fileLockingPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingPolicyChangedDetails: - (DBTEAMLOGFileLockingPolicyChangedDetails *)fileLockingPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "file_provider_migration_policy_changed_details". -/// -/// @param fileProviderMigrationPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileProviderMigrationPolicyChangedDetails: - (DBTEAMLOGFileProviderMigrationPolicyChangedDetails *)fileProviderMigrationPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "file_requests_change_policy_details". -/// -/// @param fileRequestsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsChangePolicyDetails: - (DBTEAMLOGFileRequestsChangePolicyDetails *)fileRequestsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_enabled_details". -/// -/// @param fileRequestsEmailsEnabledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsEnabledDetails: - (DBTEAMLOGFileRequestsEmailsEnabledDetails *)fileRequestsEmailsEnabledDetails; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_restricted_to_team_only_details". -/// -/// @param fileRequestsEmailsRestrictedToTeamOnlyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsRestrictedToTeamOnlyDetails: - (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *)fileRequestsEmailsRestrictedToTeamOnlyDetails; - -/// -/// Initializes union class with tag state of -/// "file_transfers_policy_changed_details". -/// -/// @param fileTransfersPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersPolicyChangedDetails: - (DBTEAMLOGFileTransfersPolicyChangedDetails *)fileTransfersPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "folder_link_restriction_policy_changed_details". -/// -/// @param folderLinkRestrictionPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderLinkRestrictionPolicyChangedDetails: - (DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *)folderLinkRestrictionPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "google_sso_change_policy_details". -/// -/// @param googleSsoChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleSsoChangePolicyDetails: - (DBTEAMLOGGoogleSsoChangePolicyDetails *)googleSsoChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "group_user_management_change_policy_details". -/// -/// @param groupUserManagementChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupUserManagementChangePolicyDetails: - (DBTEAMLOGGroupUserManagementChangePolicyDetails *)groupUserManagementChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "integration_policy_changed_details". -/// -/// @param integrationPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationPolicyChangedDetails: - (DBTEAMLOGIntegrationPolicyChangedDetails *)integrationPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "invite_acceptance_email_policy_changed_details". -/// -/// @param inviteAcceptanceEmailPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteAcceptanceEmailPolicyChangedDetails: - (DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *)inviteAcceptanceEmailPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "member_requests_change_policy_details". -/// -/// @param memberRequestsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRequestsChangePolicyDetails: - (DBTEAMLOGMemberRequestsChangePolicyDetails *)memberRequestsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "member_send_invite_policy_changed_details". -/// -/// @param memberSendInvitePolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSendInvitePolicyChangedDetails: - (DBTEAMLOGMemberSendInvitePolicyChangedDetails *)memberSendInvitePolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_exception_details". -/// -/// @param memberSpaceLimitsAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddExceptionDetails: - (DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *)memberSpaceLimitsAddExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_caps_type_policy_details". -/// -/// @param memberSpaceLimitsChangeCapsTypePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCapsTypePolicyDetails: - (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *)memberSpaceLimitsChangeCapsTypePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_policy_details". -/// -/// @param memberSpaceLimitsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangePolicyDetails: - (DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *)memberSpaceLimitsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_exception_details". -/// -/// @param memberSpaceLimitsRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveExceptionDetails: - (DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *)memberSpaceLimitsRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "member_suggestions_change_policy_details". -/// -/// @param memberSuggestionsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestionsChangePolicyDetails: - (DBTEAMLOGMemberSuggestionsChangePolicyDetails *)memberSuggestionsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "microsoft_office_addin_change_policy_details". -/// -/// @param microsoftOfficeAddinChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMicrosoftOfficeAddinChangePolicyDetails: - (DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *)microsoftOfficeAddinChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "network_control_change_policy_details". -/// -/// @param networkControlChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNetworkControlChangePolicyDetails: - (DBTEAMLOGNetworkControlChangePolicyDetails *)networkControlChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_change_deployment_policy_details". -/// -/// @param paperChangeDeploymentPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeDeploymentPolicyDetails: - (DBTEAMLOGPaperChangeDeploymentPolicyDetails *)paperChangeDeploymentPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_change_member_link_policy_details". -/// -/// @param paperChangeMemberLinkPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberLinkPolicyDetails: - (DBTEAMLOGPaperChangeMemberLinkPolicyDetails *)paperChangeMemberLinkPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_change_member_policy_details". -/// -/// @param paperChangeMemberPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberPolicyDetails: - (DBTEAMLOGPaperChangeMemberPolicyDetails *)paperChangeMemberPolicyDetails; - -/// -/// Initializes union class with tag state of "paper_change_policy_details". -/// -/// @param paperChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangePolicyDetails:(DBTEAMLOGPaperChangePolicyDetails *)paperChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "paper_default_folder_policy_changed_details". -/// -/// @param paperDefaultFolderPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDefaultFolderPolicyChangedDetails: - (DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *)paperDefaultFolderPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_desktop_policy_changed_details". -/// -/// @param paperDesktopPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDesktopPolicyChangedDetails: - (DBTEAMLOGPaperDesktopPolicyChangedDetails *)paperDesktopPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_addition_details". -/// -/// @param paperEnabledUsersGroupAdditionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupAdditionDetails: - (DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *)paperEnabledUsersGroupAdditionDetails; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_removal_details". -/// -/// @param paperEnabledUsersGroupRemovalDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupRemovalDetails: - (DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *)paperEnabledUsersGroupRemovalDetails; - -/// -/// Initializes union class with tag state of -/// "password_strength_requirements_change_policy_details". -/// -/// @param passwordStrengthRequirementsChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordStrengthRequirementsChangePolicyDetails: - (DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *)passwordStrengthRequirementsChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "permanent_delete_change_policy_details". -/// -/// @param permanentDeleteChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermanentDeleteChangePolicyDetails: - (DBTEAMLOGPermanentDeleteChangePolicyDetails *)permanentDeleteChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "reseller_support_change_policy_details". -/// -/// @param resellerSupportChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportChangePolicyDetails: - (DBTEAMLOGResellerSupportChangePolicyDetails *)resellerSupportChangePolicyDetails; - -/// -/// Initializes union class with tag state of "rewind_policy_changed_details". -/// -/// @param rewindPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindPolicyChangedDetails:(DBTEAMLOGRewindPolicyChangedDetails *)rewindPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "send_for_signature_policy_changed_details". -/// -/// @param sendForSignaturePolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSendForSignaturePolicyChangedDetails: - (DBTEAMLOGSendForSignaturePolicyChangedDetails *)sendForSignaturePolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_folder_join_policy_details". -/// -/// @param sharingChangeFolderJoinPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeFolderJoinPolicyDetails: - (DBTEAMLOGSharingChangeFolderJoinPolicyDetails *)sharingChangeFolderJoinPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_allow_change_expiration_policy_details". -/// -/// @param sharingChangeLinkAllowChangeExpirationPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkAllowChangeExpirationPolicyDetails: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *)sharingChangeLinkAllowChangeExpirationPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_default_expiration_policy_details". -/// -/// @param sharingChangeLinkDefaultExpirationPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkDefaultExpirationPolicyDetails: - (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *)sharingChangeLinkDefaultExpirationPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_enforce_password_policy_details". -/// -/// @param sharingChangeLinkEnforcePasswordPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkEnforcePasswordPolicyDetails: - (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *)sharingChangeLinkEnforcePasswordPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_policy_details". -/// -/// @param sharingChangeLinkPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkPolicyDetails: - (DBTEAMLOGSharingChangeLinkPolicyDetails *)sharingChangeLinkPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "sharing_change_member_policy_details". -/// -/// @param sharingChangeMemberPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeMemberPolicyDetails: - (DBTEAMLOGSharingChangeMemberPolicyDetails *)sharingChangeMemberPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_change_download_policy_details". -/// -/// @param showcaseChangeDownloadPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeDownloadPolicyDetails: - (DBTEAMLOGShowcaseChangeDownloadPolicyDetails *)showcaseChangeDownloadPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_change_enabled_policy_details". -/// -/// @param showcaseChangeEnabledPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeEnabledPolicyDetails: - (DBTEAMLOGShowcaseChangeEnabledPolicyDetails *)showcaseChangeEnabledPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "showcase_change_external_sharing_policy_details". -/// -/// @param showcaseChangeExternalSharingPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeExternalSharingPolicyDetails: - (DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *)showcaseChangeExternalSharingPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "smarter_smart_sync_policy_changed_details". -/// -/// @param smarterSmartSyncPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmarterSmartSyncPolicyChangedDetails: - (DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *)smarterSmartSyncPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "smart_sync_change_policy_details". -/// -/// @param smartSyncChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncChangePolicyDetails: - (DBTEAMLOGSmartSyncChangePolicyDetails *)smartSyncChangePolicyDetails; - -/// -/// Initializes union class with tag state of "smart_sync_not_opt_out_details". -/// -/// @param smartSyncNotOptOutDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncNotOptOutDetails:(DBTEAMLOGSmartSyncNotOptOutDetails *)smartSyncNotOptOutDetails; - -/// -/// Initializes union class with tag state of "smart_sync_opt_out_details". -/// -/// @param smartSyncOptOutDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncOptOutDetails:(DBTEAMLOGSmartSyncOptOutDetails *)smartSyncOptOutDetails; - -/// -/// Initializes union class with tag state of "sso_change_policy_details". -/// -/// @param ssoChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangePolicyDetails:(DBTEAMLOGSsoChangePolicyDetails *)ssoChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "team_branding_policy_changed_details". -/// -/// @param teamBrandingPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamBrandingPolicyChangedDetails: - (DBTEAMLOGTeamBrandingPolicyChangedDetails *)teamBrandingPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "team_extensions_policy_changed_details". -/// -/// @param teamExtensionsPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExtensionsPolicyChangedDetails: - (DBTEAMLOGTeamExtensionsPolicyChangedDetails *)teamExtensionsPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_policy_changed_details". -/// -/// @param teamSelectiveSyncPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncPolicyChangedDetails: - (DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *)teamSelectiveSyncPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "team_sharing_whitelist_subjects_changed_details". -/// -/// @param teamSharingWhitelistSubjectsChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharingWhitelistSubjectsChangedDetails: - (DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *)teamSharingWhitelistSubjectsChangedDetails; - -/// -/// Initializes union class with tag state of "tfa_add_exception_details". -/// -/// @param tfaAddExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddExceptionDetails:(DBTEAMLOGTfaAddExceptionDetails *)tfaAddExceptionDetails; - -/// -/// Initializes union class with tag state of "tfa_change_policy_details". -/// -/// @param tfaChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangePolicyDetails:(DBTEAMLOGTfaChangePolicyDetails *)tfaChangePolicyDetails; - -/// -/// Initializes union class with tag state of "tfa_remove_exception_details". -/// -/// @param tfaRemoveExceptionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveExceptionDetails:(DBTEAMLOGTfaRemoveExceptionDetails *)tfaRemoveExceptionDetails; - -/// -/// Initializes union class with tag state of -/// "two_account_change_policy_details". -/// -/// @param twoAccountChangePolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoAccountChangePolicyDetails: - (DBTEAMLOGTwoAccountChangePolicyDetails *)twoAccountChangePolicyDetails; - -/// -/// Initializes union class with tag state of -/// "viewer_info_policy_changed_details". -/// -/// @param viewerInfoPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerInfoPolicyChangedDetails: - (DBTEAMLOGViewerInfoPolicyChangedDetails *)viewerInfoPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "watermarking_policy_changed_details". -/// -/// @param watermarkingPolicyChangedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWatermarkingPolicyChangedDetails: - (DBTEAMLOGWatermarkingPolicyChangedDetails *)watermarkingPolicyChangedDetails; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_active_session_limit_details". -/// -/// @param webSessionsChangeActiveSessionLimitDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeActiveSessionLimitDetails: - (DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *)webSessionsChangeActiveSessionLimitDetails; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_fixed_length_policy_details". -/// -/// @param webSessionsChangeFixedLengthPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeFixedLengthPolicyDetails: - (DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *)webSessionsChangeFixedLengthPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_idle_length_policy_details". -/// -/// @param webSessionsChangeIdleLengthPolicyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeIdleLengthPolicyDetails: - (DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *)webSessionsChangeIdleLengthPolicyDetails; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_successful_details". -/// -/// @param dataResidencyMigrationRequestSuccessfulDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestSuccessfulDetails: - (DBTEAMLOGDataResidencyMigrationRequestSuccessfulDetails *)dataResidencyMigrationRequestSuccessfulDetails; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_unsuccessful_details". -/// -/// @param dataResidencyMigrationRequestUnsuccessfulDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestUnsuccessfulDetails: - (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulDetails *)dataResidencyMigrationRequestUnsuccessfulDetails; - -/// -/// Initializes union class with tag state of "team_merge_from_details". -/// -/// @param teamMergeFromDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeFromDetails:(DBTEAMLOGTeamMergeFromDetails *)teamMergeFromDetails; - -/// -/// Initializes union class with tag state of "team_merge_to_details". -/// -/// @param teamMergeToDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeToDetails:(DBTEAMLOGTeamMergeToDetails *)teamMergeToDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_add_background_details". -/// -/// @param teamProfileAddBackgroundDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddBackgroundDetails: - (DBTEAMLOGTeamProfileAddBackgroundDetails *)teamProfileAddBackgroundDetails; - -/// -/// Initializes union class with tag state of "team_profile_add_logo_details". -/// -/// @param teamProfileAddLogoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddLogoDetails:(DBTEAMLOGTeamProfileAddLogoDetails *)teamProfileAddLogoDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_background_details". -/// -/// @param teamProfileChangeBackgroundDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeBackgroundDetails: - (DBTEAMLOGTeamProfileChangeBackgroundDetails *)teamProfileChangeBackgroundDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_default_language_details". -/// -/// @param teamProfileChangeDefaultLanguageDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeDefaultLanguageDetails: - (DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *)teamProfileChangeDefaultLanguageDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_logo_details". -/// -/// @param teamProfileChangeLogoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeLogoDetails: - (DBTEAMLOGTeamProfileChangeLogoDetails *)teamProfileChangeLogoDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_name_details". -/// -/// @param teamProfileChangeNameDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeNameDetails: - (DBTEAMLOGTeamProfileChangeNameDetails *)teamProfileChangeNameDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_remove_background_details". -/// -/// @param teamProfileRemoveBackgroundDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveBackgroundDetails: - (DBTEAMLOGTeamProfileRemoveBackgroundDetails *)teamProfileRemoveBackgroundDetails; - -/// -/// Initializes union class with tag state of -/// "team_profile_remove_logo_details". -/// -/// @param teamProfileRemoveLogoDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveLogoDetails: - (DBTEAMLOGTeamProfileRemoveLogoDetails *)teamProfileRemoveLogoDetails; - -/// -/// Initializes union class with tag state of "tfa_add_backup_phone_details". -/// -/// @param tfaAddBackupPhoneDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddBackupPhoneDetails:(DBTEAMLOGTfaAddBackupPhoneDetails *)tfaAddBackupPhoneDetails; - -/// -/// Initializes union class with tag state of "tfa_add_security_key_details". -/// -/// @param tfaAddSecurityKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddSecurityKeyDetails:(DBTEAMLOGTfaAddSecurityKeyDetails *)tfaAddSecurityKeyDetails; - -/// -/// Initializes union class with tag state of "tfa_change_backup_phone_details". -/// -/// @param tfaChangeBackupPhoneDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeBackupPhoneDetails:(DBTEAMLOGTfaChangeBackupPhoneDetails *)tfaChangeBackupPhoneDetails; - -/// -/// Initializes union class with tag state of "tfa_change_status_details". -/// -/// @param tfaChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeStatusDetails:(DBTEAMLOGTfaChangeStatusDetails *)tfaChangeStatusDetails; - -/// -/// Initializes union class with tag state of "tfa_remove_backup_phone_details". -/// -/// @param tfaRemoveBackupPhoneDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveBackupPhoneDetails:(DBTEAMLOGTfaRemoveBackupPhoneDetails *)tfaRemoveBackupPhoneDetails; - -/// -/// Initializes union class with tag state of "tfa_remove_security_key_details". -/// -/// @param tfaRemoveSecurityKeyDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveSecurityKeyDetails:(DBTEAMLOGTfaRemoveSecurityKeyDetails *)tfaRemoveSecurityKeyDetails; - -/// -/// Initializes union class with tag state of "tfa_reset_details". -/// -/// @param tfaResetDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaResetDetails:(DBTEAMLOGTfaResetDetails *)tfaResetDetails; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_admin_role_details". -/// -/// @param changedEnterpriseAdminRoleDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseAdminRoleDetails: - (DBTEAMLOGChangedEnterpriseAdminRoleDetails *)changedEnterpriseAdminRoleDetails; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_connected_team_status_details". -/// -/// @param changedEnterpriseConnectedTeamStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseConnectedTeamStatusDetails: - (DBTEAMLOGChangedEnterpriseConnectedTeamStatusDetails *)changedEnterpriseConnectedTeamStatusDetails; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_details". -/// -/// @param endedEnterpriseAdminSessionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDetails: - (DBTEAMLOGEndedEnterpriseAdminSessionDetails *)endedEnterpriseAdminSessionDetails; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_deprecated_details". -/// -/// @param endedEnterpriseAdminSessionDeprecatedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDeprecatedDetails: - (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedDetails *)endedEnterpriseAdminSessionDeprecatedDetails; - -/// -/// Initializes union class with tag state of -/// "enterprise_settings_locking_details". -/// -/// @param enterpriseSettingsLockingDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseSettingsLockingDetails: - (DBTEAMLOGEnterpriseSettingsLockingDetails *)enterpriseSettingsLockingDetails; - -/// -/// Initializes union class with tag state of -/// "guest_admin_change_status_details". -/// -/// @param guestAdminChangeStatusDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminChangeStatusDetails: - (DBTEAMLOGGuestAdminChangeStatusDetails *)guestAdminChangeStatusDetails; - -/// -/// Initializes union class with tag state of -/// "started_enterprise_admin_session_details". -/// -/// @param startedEnterpriseAdminSessionDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartedEnterpriseAdminSessionDetails: - (DBTEAMLOGStartedEnterpriseAdminSessionDetails *)startedEnterpriseAdminSessionDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_details". -/// -/// @param teamMergeRequestAcceptedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedDetails: - (DBTEAMLOGTeamMergeRequestAcceptedDetails *)teamMergeRequestAcceptedDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_primary_team_details". -/// -/// @param teamMergeRequestAcceptedShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *)teamMergeRequestAcceptedShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestAcceptedShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *)teamMergeRequestAcceptedShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_auto_canceled_details". -/// -/// @param teamMergeRequestAutoCanceledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAutoCanceledDetails: - (DBTEAMLOGTeamMergeRequestAutoCanceledDetails *)teamMergeRequestAutoCanceledDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_details". -/// -/// @param teamMergeRequestCanceledDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledDetails: - (DBTEAMLOGTeamMergeRequestCanceledDetails *)teamMergeRequestCanceledDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_primary_team_details". -/// -/// @param teamMergeRequestCanceledShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *)teamMergeRequestCanceledShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestCanceledShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *)teamMergeRequestCanceledShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_details". -/// -/// @param teamMergeRequestExpiredDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredDetails: - (DBTEAMLOGTeamMergeRequestExpiredDetails *)teamMergeRequestExpiredDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_primary_team_details". -/// -/// @param teamMergeRequestExpiredShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *)teamMergeRequestExpiredShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestExpiredShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *)teamMergeRequestExpiredShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_primary_team_details". -/// -/// @param teamMergeRequestRejectedShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *)teamMergeRequestRejectedShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestRejectedShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *)teamMergeRequestRejectedShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_details". -/// -/// @param teamMergeRequestReminderDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderDetails: - (DBTEAMLOGTeamMergeRequestReminderDetails *)teamMergeRequestReminderDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_primary_team_details". -/// -/// @param teamMergeRequestReminderShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *)teamMergeRequestReminderShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestReminderShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *)teamMergeRequestReminderShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_revoked_details". -/// -/// @param teamMergeRequestRevokedDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRevokedDetails: - (DBTEAMLOGTeamMergeRequestRevokedDetails *)teamMergeRequestRevokedDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_primary_team_details". -/// -/// @param teamMergeRequestSentShownToPrimaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToPrimaryTeamDetails: - (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *)teamMergeRequestSentShownToPrimaryTeamDetails; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_secondary_team_details". -/// -/// @param teamMergeRequestSentShownToSecondaryTeamDetails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToSecondaryTeamDetails: - (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *)teamMergeRequestSentShownToSecondaryTeamDetails; - -/// -/// Initializes union class with tag state of "missing_details". -/// -/// Description of the "missing_details" tag state: Hints that this event was -/// returned with missing details due to an internal error. -/// -/// @param missingDetails Hints that this event was returned with missing -/// details due to an internal error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMissingDetails:(DBTEAMLOGMissingDetails *)missingDetails; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_alert_state_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingAlertStateChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_alert_state_changed_details". -/// -- (BOOL)isAdminAlertingAlertStateChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_changed_alert_config_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingChangedAlertConfigDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_changed_alert_config_details". -/// -- (BOOL)isAdminAlertingChangedAlertConfigDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_triggered_alert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingTriggeredAlertDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_triggered_alert_details". -/// -- (BOOL)isAdminAlertingTriggeredAlertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_completed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessCompletedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_completed_details". -/// -- (BOOL)isRansomwareRestoreProcessCompletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_started_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessStartedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_started_details". -/// -- (BOOL)isRansomwareRestoreProcessStartedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_blocked_by_permissions_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appBlockedByPermissionsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_blocked_by_permissions_details". -/// -- (BOOL)isAppBlockedByPermissionsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_link_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkTeamDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_link_team_details". -/// -- (BOOL)isAppLinkTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_link_user_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkUserDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_link_user_details". -/// -- (BOOL)isAppLinkUserDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_unlink_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkTeamDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_unlink_team_details". -/// -- (BOOL)isAppUnlinkTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_unlink_user_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkUserDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_unlink_user_details". -/// -- (BOOL)isAppUnlinkUserDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_connected_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationConnectedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_connected_details". -/// -- (BOOL)isIntegrationConnectedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_disconnected_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationDisconnectedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_disconnected_details". -/// -- (BOOL)isIntegrationDisconnectedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_add_comment_details". -/// -- (BOOL)isFileAddCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_change_comment_subscription_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileChangeCommentSubscriptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_change_comment_subscription_details". -/// -- (BOOL)isFileChangeCommentSubscriptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDeleteCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_delete_comment_details". -/// -- (BOOL)isFileDeleteCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEditCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_edit_comment_details". -/// -- (BOOL)isFileEditCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_like_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLikeCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_like_comment_details". -/// -- (BOOL)isFileLikeCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_resolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileResolveCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_resolve_comment_details". -/// -- (BOOL)isFileResolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unlike_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnlikeCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unlike_comment_details". -/// -- (BOOL)isFileUnlikeCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unresolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnresolveCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unresolve_comment_details". -/// -- (BOOL)isFileUnresolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folders_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFoldersDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folders_details". -/// -- (BOOL)isGovernancePolicyAddFoldersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folder_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFolderFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folder_failed_details". -/// -- (BOOL)isGovernancePolicyAddFolderFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_content_disposed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyContentDisposedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_content_disposed_details". -/// -- (BOOL)isGovernancePolicyContentDisposedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyCreateDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_create_details". -/// -- (BOOL)isGovernancePolicyCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyDeleteDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_delete_details". -/// -- (BOOL)isGovernancePolicyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_details_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDetailsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_details_details". -/// -- (BOOL)isGovernancePolicyEditDetailsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_duration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDurationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_duration_details". -/// -- (BOOL)isGovernancePolicyEditDurationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportCreatedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_created_details". -/// -- (BOOL)isGovernancePolicyExportCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportRemovedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_removed_details". -/// -- (BOOL)isGovernancePolicyExportRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_remove_folders_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyRemoveFoldersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_remove_folders_details". -/// -- (BOOL)isGovernancePolicyRemoveFoldersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_report_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyReportCreatedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_report_created_details". -/// -- (BOOL)isGovernancePolicyReportCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyZipPartDownloadedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded_details". -/// -- (BOOL)isGovernancePolicyZipPartDownloadedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_activate_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsActivateAHoldDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_activate_a_hold_details". -/// -- (BOOL)isLegalHoldsActivateAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_add_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsAddMembersDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_add_members_details". -/// -- (BOOL)isLegalHoldsAddMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_details_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldDetailsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_details_details". -/// -- (BOOL)isLegalHoldsChangeHoldDetailsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldNameDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_name_details". -/// -- (BOOL)isLegalHoldsChangeHoldNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportAHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_a_hold_details". -/// -- (BOOL)isLegalHoldsExportAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_cancelled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportCancelledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_cancelled_details". -/// -- (BOOL)isLegalHoldsExportCancelledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_downloaded_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportDownloadedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_downloaded_details". -/// -- (BOOL)isLegalHoldsExportDownloadedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportRemovedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_removed_details". -/// -- (BOOL)isLegalHoldsExportRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_release_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReleaseAHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_release_a_hold_details". -/// -- (BOOL)isLegalHoldsReleaseAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_remove_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsRemoveMembersDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_remove_members_details". -/// -- (BOOL)isLegalHoldsRemoveMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_report_a_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReportAHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_report_a_hold_details". -/// -- (BOOL)isLegalHoldsReportAHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_desktop_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpDesktopDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_desktop_details". -/// -- (BOOL)isDeviceChangeIpDesktopDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_mobile_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpMobileDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_mobile_details". -/// -- (BOOL)isDeviceChangeIpMobileDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_web_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpWebDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_web_details". -/// -- (BOOL)isDeviceChangeIpWebDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkFailDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_fail_details". -/// -- (BOOL)isDeviceDeleteOnUnlinkFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkSuccessDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_success_details". -/// -- (BOOL)isDeviceDeleteOnUnlinkSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkFailDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_link_fail_details". -/// -- (BOOL)isDeviceLinkFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkSuccessDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_link_success_details". -/// -- (BOOL)isDeviceLinkSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementDisabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_disabled_details". -/// -- (BOOL)isDeviceManagementDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementEnabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_enabled_details". -/// -- (BOOL)isDeviceManagementEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_sync_backup_status_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceSyncBackupStatusChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_sync_backup_status_changed_details". -/// -- (BOOL)isDeviceSyncBackupStatusChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_unlink_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceUnlinkDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_unlink_details". -/// -- (BOOL)isDeviceUnlinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_exported_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsExportedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_exported_details". -/// -- (BOOL)isDropboxPasswordsExportedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsNewDeviceEnrolledDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled_details". -/// -- (BOOL)isDropboxPasswordsNewDeviceEnrolledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_refresh_auth_token_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRefreshAuthTokenDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_refresh_auth_token_details". -/// -- (BOOL)isEmmRefreshAuthTokenDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupEligibilityStatusCheckedDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked_details". -/// -- (BOOL)isExternalDriveBackupEligibilityStatusCheckedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_status_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupStatusChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_status_changed_details". -/// -- (BOOL)isExternalDriveBackupStatusChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_availability_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangeAvailabilityDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_availability_details". -/// -- (BOOL)isAccountCaptureChangeAvailabilityDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_migrate_account_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureMigrateAccountDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_migrate_account_details". -/// -- (BOOL)isAccountCaptureMigrateAccountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_notification_emails_sent_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureNotificationEmailsSentDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_notification_emails_sent_details". -/// -- (BOOL)isAccountCaptureNotificationEmailsSentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_relinquish_account_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureRelinquishAccountDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_relinquish_account_details". -/// -- (BOOL)isAccountCaptureRelinquishAccountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_domain_invites_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `disabledDomainInvitesDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "disabled_domain_invites_details". -/// -- (BOOL)isDisabledDomainInvitesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesApproveRequestToJoinTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team_details". -/// -- (BOOL)isDomainInvitesApproveRequestToJoinTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesDeclineRequestToJoinTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team_details". -/// -- (BOOL)isDomainInvitesDeclineRequestToJoinTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_email_existing_users_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesEmailExistingUsersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_email_existing_users_details". -/// -- (BOOL)isDomainInvitesEmailExistingUsersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_request_to_join_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesRequestToJoinTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_request_to_join_team_details". -/// -- (BOOL)isDomainInvitesRequestToJoinTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToNoDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no_details". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToNoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToYesDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes_details". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToYesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainFailDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_fail_details". -/// -- (BOOL)isDomainVerificationAddDomainFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainSuccessDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_success_details". -/// -- (BOOL)isDomainVerificationAddDomainSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_remove_domain_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationRemoveDomainDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_remove_domain_details". -/// -- (BOOL)isDomainVerificationRemoveDomainDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "enabled_domain_invites_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabledDomainInvitesDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "enabled_domain_invites_details". -/// -- (BOOL)isEnabledDomainInvitesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCancelKeyDeletionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion_details". -/// -- (BOOL)isTeamEncryptionKeyCancelKeyDeletionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_create_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCreateKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_create_key_details". -/// -- (BOOL)isTeamEncryptionKeyCreateKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_delete_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDeleteKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_delete_key_details". -/// -- (BOOL)isTeamEncryptionKeyDeleteKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_disable_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDisableKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_disable_key_details". -/// -- (BOOL)isTeamEncryptionKeyDisableKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_enable_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyEnableKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_enable_key_details". -/// -- (BOOL)isTeamEncryptionKeyEnableKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_rotate_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyRotateKeyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_rotate_key_details". -/// -- (BOOL)isTeamEncryptionKeyRotateKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyScheduleKeyDeletionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion_details". -/// -- (BOOL)isTeamEncryptionKeyScheduleKeyDeletionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "apply_naming_convention_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `applyNamingConventionDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "apply_naming_convention_details". -/// -- (BOOL)isApplyNamingConventionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createFolderDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "create_folder_details". -/// -- (BOOL)isCreateFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_add_details". -/// -- (BOOL)isFileAddDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_from_automation_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddFromAutomationDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_add_from_automation_details". -/// -- (BOOL)isFileAddFromAutomationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_copy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCopyDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_copy_details". -/// -- (BOOL)isFileCopyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDeleteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_delete_details". -/// -- (BOOL)isFileDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDownloadDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_download_details". -/// -- (BOOL)isFileDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEditDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_edit_details". -/// -- (BOOL)isFileEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_get_copy_reference_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileGetCopyReferenceDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_get_copy_reference_details". -/// -- (BOOL)isFileGetCopyReferenceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_lock_status_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingLockStatusChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_lock_status_changed_details". -/// -- (BOOL)isFileLockingLockStatusChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_move_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileMoveDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_move_details". -/// -- (BOOL)isFileMoveDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_permanently_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePermanentlyDeleteDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_permanently_delete_details". -/// -- (BOOL)isFilePermanentlyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_preview_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePreviewDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_preview_details". -/// -- (BOOL)isFilePreviewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRenameDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_rename_details". -/// -- (BOOL)isFileRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_restore_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRestoreDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_restore_details". -/// -- (BOOL)isFileRestoreDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_revert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRevertDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_revert_details". -/// -- (BOOL)isFileRevertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rollback_changes_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRollbackChangesDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_rollback_changes_details". -/// -- (BOOL)isFileRollbackChangesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_save_copy_reference_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileSaveCopyReferenceDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_save_copy_reference_details". -/// -- (BOOL)isFileSaveCopyReferenceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_description_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewDescriptionChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_description_changed_details". -/// -- (BOOL)isFolderOverviewDescriptionChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_pinned_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemPinnedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_pinned_details". -/// -- (BOOL)isFolderOverviewItemPinnedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_unpinned_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemUnpinnedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_unpinned_details". -/// -- (BOOL)isFolderOverviewItemUnpinnedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelAddedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_added_details". -/// -- (BOOL)isObjectLabelAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelRemovedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_removed_details". -/// -- (BOOL)isObjectLabelRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_updated_value_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelUpdatedValueDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_updated_value_details". -/// -- (BOOL)isObjectLabelUpdatedValueDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "organize_folder_with_tidy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizeFolderWithTidyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "organize_folder_with_tidy_details". -/// -- (BOOL)isOrganizeFolderWithTidyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileDeleteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_delete_details". -/// -- (BOOL)isReplayFileDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindFolderDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "rewind_folder_details". -/// -- (BOOL)isRewindFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_naming_convention_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoNamingConventionDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_naming_convention_details". -/// -- (BOOL)isUndoNamingConventionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_organize_folder_with_tidy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoOrganizeFolderWithTidyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_organize_folder_with_tidy_details". -/// -- (BOOL)isUndoOrganizeFolderWithTidyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsAddedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_tags_added_details". -/// -- (BOOL)isUserTagsAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsRemovedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_tags_removed_details". -/// -- (BOOL)isUserTagsRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_receive_file_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestReceiveFileDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_receive_file_details". -/// -- (BOOL)isEmailIngestReceiveFileDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_change_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestChangeDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_change_details". -/// -- (BOOL)isFileRequestChangeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_close_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestCloseDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_close_details". -/// -- (BOOL)isFileRequestCloseDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_create_details". -/// -- (BOOL)isFileRequestCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestDeleteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_delete_details". -/// -- (BOOL)isFileRequestDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_receive_file_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestReceiveFileDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_receive_file_details". -/// -- (BOOL)isFileRequestReceiveFileDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddExternalIdDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_add_external_id_details". -/// -- (BOOL)isGroupAddExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddMemberDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_add_member_details". -/// -- (BOOL)isGroupAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_external_id_details". -/// -- (BOOL)isGroupChangeExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_management_type_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeManagementTypeDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_management_type_details". -/// -- (BOOL)isGroupChangeManagementTypeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_member_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeMemberRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_member_role_details". -/// -- (BOOL)isGroupChangeMemberRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupCreateDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_create_details". -/// -- (BOOL)isGroupCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDeleteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_delete_details". -/// -- (BOOL)isGroupDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_description_updated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDescriptionUpdatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_description_updated_details". -/// -- (BOOL)isGroupDescriptionUpdatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_join_policy_updated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupJoinPolicyUpdatedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_join_policy_updated_details". -/// -- (BOOL)isGroupJoinPolicyUpdatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_moved_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupMovedDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_moved_details". -/// -- (BOOL)isGroupMovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_external_id_details". -/// -- (BOOL)isGroupRemoveExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveMemberDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_member_details". -/// -- (BOOL)isGroupRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRenameDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_rename_details". -/// -- (BOOL)isGroupRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_lock_or_unlocked_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountLockOrUnlockedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_lock_or_unlocked_details". -/// -- (BOOL)isAccountLockOrUnlockedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_error_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmErrorDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_error_details". -/// -- (BOOL)isEmmErrorDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedInViaTrustedTeamsDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams_details". -/// -- (BOOL)isGuestAdminSignedInViaTrustedTeamsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedOutViaTrustedTeamsDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams_details". -/// -- (BOOL)isGuestAdminSignedOutViaTrustedTeamsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "login_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginFailDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "login_fail_details". -/// -- (BOOL)isLoginFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "login_success_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginSuccessDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "login_success_details". -/// -- (BOOL)isLoginSuccessDetails; - -/// -/// Retrieves whether the union's current tag state has value "logout_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `logoutDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "logout_details". -/// -- (BOOL)isLogoutDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_end_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionEndDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_end_details". -/// -- (BOOL)isResellerSupportSessionEndDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_start_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionStartDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_start_details". -/// -- (BOOL)isResellerSupportSessionStartDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_end_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionEndDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_end_details". -/// -- (BOOL)isSignInAsSessionEndDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_start_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionStartDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_start_details". -/// -- (BOOL)isSignInAsSessionStartDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_error_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoErrorDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_error_details". -/// -- (BOOL)isSsoErrorDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_admin_invitation_sent_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupAdminInvitationSentDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_admin_invitation_sent_details". -/// -- (BOOL)isBackupAdminInvitationSentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_invitation_opened_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupInvitationOpenedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_invitation_opened_details". -/// -- (BOOL)isBackupInvitationOpenedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_team_invite_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createTeamInviteLinkDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "create_team_invite_link_details". -/// -- (BOOL)isCreateTeamInviteLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_team_invite_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deleteTeamInviteLinkDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "delete_team_invite_link_details". -/// -- (BOOL)isDeleteTeamInviteLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddExternalIdDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_add_external_id_details". -/// -- (BOOL)isMemberAddExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddNameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_add_name_details". -/// -- (BOOL)isMemberAddNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_admin_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeAdminRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_admin_role_details". -/// -- (BOOL)isMemberChangeAdminRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_email_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeEmailDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_email_details". -/// -- (BOOL)isMemberChangeEmailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_external_id_details". -/// -- (BOOL)isMemberChangeExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_membership_type_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeMembershipTypeDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_membership_type_details". -/// -- (BOOL)isMemberChangeMembershipTypeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeNameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_name_details". -/// -- (BOOL)isMemberChangeNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_reseller_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeResellerRoleDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_reseller_role_details". -/// -- (BOOL)isMemberChangeResellerRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeStatusDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_status_details". -/// -- (BOOL)isMemberChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_manual_contacts_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteManualContactsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_manual_contacts_details". -/// -- (BOOL)isMemberDeleteManualContactsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_profile_photo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteProfilePhotoDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_profile_photo_details". -/// -- (BOOL)isMemberDeleteProfilePhotoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_permanently_delete_account_contents_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberPermanentlyDeleteAccountContentsDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_permanently_delete_account_contents_details". -/// -- (BOOL)isMemberPermanentlyDeleteAccountContentsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_remove_external_id_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRemoveExternalIdDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_remove_external_id_details". -/// -- (BOOL)isMemberRemoveExternalIdDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_set_profile_photo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSetProfilePhotoDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_set_profile_photo_details". -/// -- (BOOL)isMemberSetProfilePhotoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_custom_quota_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddCustomQuotaDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_custom_quota_details". -/// -- (BOOL)isMemberSpaceLimitsAddCustomQuotaDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_custom_quota_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCustomQuotaDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_custom_quota_details". -/// -- (BOOL)isMemberSpaceLimitsChangeCustomQuotaDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeStatusDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_status_details". -/// -- (BOOL)isMemberSpaceLimitsChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveCustomQuotaDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota_details". -/// -- (BOOL)isMemberSpaceLimitsRemoveCustomQuotaDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggest_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggestDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_suggest_details". -/// -- (BOOL)isMemberSuggestDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_transfer_account_contents_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberTransferAccountContentsDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_transfer_account_contents_details". -/// -- (BOOL)isMemberTransferAccountContentsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "pending_secondary_email_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pendingSecondaryEmailAddedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "pending_secondary_email_added_details". -/// -- (BOOL)isPendingSecondaryEmailAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailDeletedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_deleted_details". -/// -- (BOOL)isSecondaryEmailDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_verified_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailVerifiedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_verified_details". -/// -- (BOOL)isSecondaryEmailVerifiedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_mails_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryMailsPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_mails_policy_changed_details". -/// -- (BOOL)isSecondaryMailsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddPageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_add_page_details". -/// -- (BOOL)isBinderAddPageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddSectionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_add_section_details". -/// -- (BOOL)isBinderAddSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemovePageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_page_details". -/// -- (BOOL)isBinderRemovePageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemoveSectionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_section_details". -/// -- (BOOL)isBinderRemoveSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenamePageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_page_details". -/// -- (BOOL)isBinderRenamePageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenameSectionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_section_details". -/// -- (BOOL)isBinderRenameSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_page_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderPageDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_page_details". -/// -- (BOOL)isBinderReorderPageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_section_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderSectionDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_section_details". -/// -- (BOOL)isBinderReorderSectionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddMemberDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_member_details". -/// -- (BOOL)isPaperContentAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_to_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddToFolderDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_to_folder_details". -/// -- (BOOL)isPaperContentAddToFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_archive_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentArchiveDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_archive_details". -/// -- (BOOL)isPaperContentArchiveDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_create_details". -/// -- (BOOL)isPaperContentCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_permanently_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentPermanentlyDeleteDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_permanently_delete_details". -/// -- (BOOL)isPaperContentPermanentlyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_from_folder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveFromFolderDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_from_folder_details". -/// -- (BOOL)isPaperContentRemoveFromFolderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveMemberDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_member_details". -/// -- (BOOL)isPaperContentRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRenameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_rename_details". -/// -- (BOOL)isPaperContentRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_restore_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRestoreDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_restore_details". -/// -- (BOOL)isPaperContentRestoreDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_add_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocAddCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_add_comment_details". -/// -- (BOOL)isPaperDocAddCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_member_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeMemberRoleDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_member_role_details". -/// -- (BOOL)isPaperDocChangeMemberRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_sharing_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSharingPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_sharing_policy_details". -/// -- (BOOL)isPaperDocChangeSharingPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_subscription_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSubscriptionDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_subscription_details". -/// -- (BOOL)isPaperDocChangeSubscriptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeletedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_deleted_details". -/// -- (BOOL)isPaperDocDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_delete_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeleteCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_delete_comment_details". -/// -- (BOOL)isPaperDocDeleteCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDownloadDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_download_details". -/// -- (BOOL)isPaperDocDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEditDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_details". -/// -- (BOOL)isPaperDocEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEditCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_comment_details". -/// -- (BOOL)isPaperDocEditCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_followed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocFollowedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_followed_details". -/// -- (BOOL)isPaperDocFollowedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_mention_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocMentionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_mention_details". -/// -- (BOOL)isPaperDocMentionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_ownership_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocOwnershipChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_ownership_changed_details". -/// -- (BOOL)isPaperDocOwnershipChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_request_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRequestAccessDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_request_access_details". -/// -- (BOOL)isPaperDocRequestAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_resolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocResolveCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_resolve_comment_details". -/// -- (BOOL)isPaperDocResolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_revert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRevertDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_revert_details". -/// -- (BOOL)isPaperDocRevertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_slack_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocSlackShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_slack_share_details". -/// -- (BOOL)isPaperDocSlackShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTeamInviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_team_invite_details". -/// -- (BOOL)isPaperDocTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_trashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_trashed_details". -/// -- (BOOL)isPaperDocTrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_unresolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUnresolveCommentDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_unresolve_comment_details". -/// -- (BOOL)isPaperDocUnresolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_untrashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUntrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_untrashed_details". -/// -- (BOOL)isPaperDocUntrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_view_details". -/// -- (BOOL)isPaperDocViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_allow_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewAllowDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_allow_details". -/// -- (BOOL)isPaperExternalViewAllowDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_default_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewDefaultTeamDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_default_team_details". -/// -- (BOOL)isPaperExternalViewDefaultTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_forbid_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewForbidDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_forbid_details". -/// -- (BOOL)isPaperExternalViewForbidDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_change_subscription_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderChangeSubscriptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_change_subscription_details". -/// -- (BOOL)isPaperFolderChangeSubscriptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderDeletedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_deleted_details". -/// -- (BOOL)isPaperFolderDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_followed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderFollowedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_followed_details". -/// -- (BOOL)isPaperFolderFollowedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderTeamInviteDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_team_invite_details". -/// -- (BOOL)isPaperFolderTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_change_permission_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkChangePermissionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_change_permission_details". -/// -- (BOOL)isPaperPublishedLinkChangePermissionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkCreateDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_create_details". -/// -- (BOOL)isPaperPublishedLinkCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkDisabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_disabled_details". -/// -- (BOOL)isPaperPublishedLinkDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkViewDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_view_details". -/// -- (BOOL)isPaperPublishedLinkViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_change_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordChangeDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_change_details". -/// -- (BOOL)isPasswordChangeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordResetDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_reset_details". -/// -- (BOOL)isPasswordResetDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_all_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordResetAllDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_reset_all_details". -/// -- (BOOL)isPasswordResetAllDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_details". -/// -- (BOOL)isClassificationCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReportFailDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_fail_details". -/// -- (BOOL)isClassificationCreateReportFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_exceptions_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateExceptionsReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_exceptions_report_details". -/// -- (BOOL)isEmmCreateExceptionsReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_usage_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateUsageReportDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_usage_report_details". -/// -- (BOOL)isEmmCreateUsageReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReportDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_details". -/// -- (BOOL)isExportMembersReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReportFailDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_fail_details". -/// -- (BOOL)isExportMembersReportFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_create_report_details". -/// -- (BOOL)isExternalSharingCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingReportFailedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_report_failed_details". -/// -- (BOOL)isExternalSharingReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_create_report_details". -/// -- (BOOL)isNoExpirationLinkGenCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed_details". -/// -- (BOOL)isNoExpirationLinkGenReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_create_report_details". -/// -- (BOOL)isNoPasswordLinkGenCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_report_failed_details". -/// -- (BOOL)isNoPasswordLinkGenReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_create_report_details". -/// -- (BOOL)isNoPasswordLinkViewCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_report_failed_details". -/// -- (BOOL)isNoPasswordLinkViewReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewCreateReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_create_report_details". -/// -- (BOOL)isOutdatedLinkViewCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_report_failed_details". -/// -- (BOOL)isOutdatedLinkViewReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_admin_export_start_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAdminExportStartDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_admin_export_start_details". -/// -- (BOOL)isPaperAdminExportStartDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_details". -/// -- (BOOL)isRansomwareAlertCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_failed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReportFailedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_failed_details". -/// -- (BOOL)isRansomwareAlertCreateReportFailedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncCreateAdminPrivilegeReportDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report_details". -/// -- (BOOL)isSmartSyncCreateAdminPrivilegeReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReportDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_details". -/// -- (BOOL)isTeamActivityCreateReportDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_fail_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReportFailDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_fail_details". -/// -- (BOOL)isTeamActivityCreateReportFailDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "collection_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `collectionShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "collection_share_details". -/// -- (BOOL)isCollectionShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_file_add_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersFileAddDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_file_add_details". -/// -- (BOOL)isFileTransfersFileAddDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDeleteDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_delete_details". -/// -- (BOOL)isFileTransfersTransferDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDownloadDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_download_details". -/// -- (BOOL)isFileTransfersTransferDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_send_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferSendDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_send_details". -/// -- (BOOL)isFileTransfersTransferSendDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferViewDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_view_details". -/// -- (BOOL)isFileTransfersTransferViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_invite_only_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclInviteOnlyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_invite_only_details". -/// -- (BOOL)isNoteAclInviteOnlyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclLinkDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_link_details". -/// -- (BOOL)isNoteAclLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_team_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclTeamLinkDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_team_link_details". -/// -- (BOOL)isNoteAclTeamLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_shared_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteSharedDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_shared_details". -/// -- (BOOL)isNoteSharedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_share_receive_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteShareReceiveDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_share_receive_details". -/// -- (BOOL)isNoteShareReceiveDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "open_note_shared_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `openNoteSharedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "open_note_shared_details". -/// -- (BOOL)isOpenNoteSharedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkCreatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_created_details". -/// -- (BOOL)isReplayFileSharedLinkCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_modified_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkModifiedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_modified_details". -/// -- (BOOL)isReplayFileSharedLinkModifiedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_add_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamAddDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_add_details". -/// -- (BOOL)isReplayProjectTeamAddDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamDeleteDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_delete_details". -/// -- (BOOL)isReplayProjectTeamDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_add_group_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAddGroupDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_add_group_details". -/// -- (BOOL)isSfAddGroupDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAllowNonMembersToViewSharedLinksDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links_details". -/// -- (BOOL)isSfAllowNonMembersToViewSharedLinksDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_external_invite_warn_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfExternalInviteWarnDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_external_invite_warn_details". -/// -- (BOOL)isSfExternalInviteWarnDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInviteDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_details". -/// -- (BOOL)isSfFbInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_change_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInviteChangeRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_change_role_details". -/// -- (BOOL)isSfFbInviteChangeRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_uninvite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbUninviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_uninvite_details". -/// -- (BOOL)isSfFbUninviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_invite_group_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfInviteGroupDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_invite_group_details". -/// -- (BOOL)isSfInviteGroupDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_grant_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamGrantAccessDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_grant_access_details". -/// -- (BOOL)isSfTeamGrantAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_details". -/// -- (BOOL)isSfTeamInviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_change_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInviteChangeRoleDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_change_role_details". -/// -- (BOOL)isSfTeamInviteChangeRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoinDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_details". -/// -- (BOOL)isSfTeamJoinDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_from_oob_link_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoinFromOobLinkDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_from_oob_link_details". -/// -- (BOOL)isSfTeamJoinFromOobLinkDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_uninvite_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamUninviteDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_uninvite_details". -/// -- (BOOL)isSfTeamUninviteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_invitees_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddInviteesDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_invitees_details". -/// -- (BOOL)isSharedContentAddInviteesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkExpiryDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_expiry_details". -/// -- (BOOL)isSharedContentAddLinkExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_password_details". -/// -- (BOOL)isSharedContentAddLinkPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddMemberDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_member_details". -/// -- (BOOL)isSharedContentAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_downloads_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeDownloadsPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_downloads_policy_details". -/// -- (BOOL)isSharedContentChangeDownloadsPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_invitee_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeInviteeRoleDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_invitee_role_details". -/// -- (BOOL)isSharedContentChangeInviteeRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_audience_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkAudienceDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_audience_details". -/// -- (BOOL)isSharedContentChangeLinkAudienceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkExpiryDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_expiry_details". -/// -- (BOOL)isSharedContentChangeLinkExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_password_details". -/// -- (BOOL)isSharedContentChangeLinkPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_member_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeMemberRoleDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_member_role_details". -/// -- (BOOL)isSharedContentChangeMemberRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeViewerInfoPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy_details". -/// -- (BOOL)isSharedContentChangeViewerInfoPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_claim_invitation_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentClaimInvitationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_claim_invitation_details". -/// -- (BOOL)isSharedContentClaimInvitationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_copy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentCopyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_copy_details". -/// -- (BOOL)isSharedContentCopyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentDownloadDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_download_details". -/// -- (BOOL)isSharedContentDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_relinquish_membership_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRelinquishMembershipDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_relinquish_membership_details". -/// -- (BOOL)isSharedContentRelinquishMembershipDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_invitees_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveInviteesDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_invitees_details". -/// -- (BOOL)isSharedContentRemoveInviteesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkExpiryDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_expiry_details". -/// -- (BOOL)isSharedContentRemoveLinkExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_password_details". -/// -- (BOOL)isSharedContentRemoveLinkPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveMemberDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_member_details". -/// -- (BOOL)isSharedContentRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_request_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRequestAccessDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_request_access_details". -/// -- (BOOL)isSharedContentRequestAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_invitees_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreInviteesDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_invitees_details". -/// -- (BOOL)isSharedContentRestoreInviteesDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreMemberDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_member_details". -/// -- (BOOL)isSharedContentRestoreMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_unshare_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentUnshareDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_unshare_details". -/// -- (BOOL)isSharedContentUnshareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_view_details". -/// -- (BOOL)isSharedContentViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_link_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeLinkPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_link_policy_details". -/// -- (BOOL)isSharedFolderChangeLinkPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersInheritancePolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy_details". -/// -- (BOOL)isSharedFolderChangeMembersInheritancePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_management_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersManagementPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_management_policy_details". -/// -- (BOOL)isSharedFolderChangeMembersManagementPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_policy_details". -/// -- (BOOL)isSharedFolderChangeMembersPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_create_details". -/// -- (BOOL)isSharedFolderCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_decline_invitation_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderDeclineInvitationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_decline_invitation_details". -/// -- (BOOL)isSharedFolderDeclineInvitationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_mount_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderMountDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_mount_details". -/// -- (BOOL)isSharedFolderMountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_nest_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderNestDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_nest_details". -/// -- (BOOL)isSharedFolderNestDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_transfer_ownership_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderTransferOwnershipDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_transfer_ownership_details". -/// -- (BOOL)isSharedFolderTransferOwnershipDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_unmount_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderUnmountDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_unmount_details". -/// -- (BOOL)isSharedFolderUnmountDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_add_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkAddExpiryDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_add_expiry_details". -/// -- (BOOL)isSharedLinkAddExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeExpiryDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_expiry_details". -/// -- (BOOL)isSharedLinkChangeExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_visibility_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeVisibilityDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_visibility_details". -/// -- (BOOL)isSharedLinkChangeVisibilityDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_copy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCopyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_copy_details". -/// -- (BOOL)isSharedLinkCopyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_create_details". -/// -- (BOOL)isSharedLinkCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_disable_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDisableDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_disable_details". -/// -- (BOOL)isSharedLinkDisableDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDownloadDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_download_details". -/// -- (BOOL)isSharedLinkDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_remove_expiry_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkRemoveExpiryDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_remove_expiry_details". -/// -- (BOOL)isSharedLinkRemoveExpiryDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_expiration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddExpirationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_expiration_details". -/// -- (BOOL)isSharedLinkSettingsAddExpirationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddPasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_password_details". -/// -- (BOOL)isSharedLinkSettingsAddPasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadDisabledDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled_details". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadEnabledDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled_details". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_audience_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeAudienceDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_audience_details". -/// -- (BOOL)isSharedLinkSettingsChangeAudienceDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_expiration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeExpirationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_expiration_details". -/// -- (BOOL)isSharedLinkSettingsChangeExpirationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangePasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_password_details". -/// -- (BOOL)isSharedLinkSettingsChangePasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_expiration_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemoveExpirationDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_expiration_details". -/// -- (BOOL)isSharedLinkSettingsRemoveExpirationDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_password_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemovePasswordDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_password_details". -/// -- (BOOL)isSharedLinkSettingsRemovePasswordDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_share_details". -/// -- (BOOL)isSharedLinkShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_view_details". -/// -- (BOOL)isSharedLinkViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_note_opened_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedNoteOpenedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_note_opened_details". -/// -- (BOOL)isSharedNoteOpenedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_disable_downloads_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelDisableDownloadsDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_disable_downloads_details". -/// -- (BOOL)isShmodelDisableDownloadsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_enable_downloads_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelEnableDownloadsDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_enable_downloads_details". -/// -- (BOOL)isShmodelEnableDownloadsDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_group_share_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelGroupShareDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_group_share_details". -/// -- (BOOL)isShmodelGroupShareDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_access_granted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAccessGrantedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_access_granted_details". -/// -- (BOOL)isShowcaseAccessGrantedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_add_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAddMemberDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_add_member_details". -/// -- (BOOL)isShowcaseAddMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_archived_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseArchivedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_archived_details". -/// -- (BOOL)isShowcaseArchivedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_created_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseCreatedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_created_details". -/// -- (BOOL)isShowcaseCreatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_delete_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseDeleteCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_delete_comment_details". -/// -- (BOOL)isShowcaseDeleteCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edited_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEditedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_edited_details". -/// -- (BOOL)isShowcaseEditedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edit_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEditCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_edit_comment_details". -/// -- (BOOL)isShowcaseEditCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_added_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileAddedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_added_details". -/// -- (BOOL)isShowcaseFileAddedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_download_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileDownloadDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_download_details". -/// -- (BOOL)isShowcaseFileDownloadDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_removed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileRemovedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_removed_details". -/// -- (BOOL)isShowcaseFileRemovedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_view_details". -/// -- (BOOL)isShowcaseFileViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_permanently_deleted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePermanentlyDeletedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_permanently_deleted_details". -/// -- (BOOL)isShowcasePermanentlyDeletedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_post_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePostCommentDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_post_comment_details". -/// -- (BOOL)isShowcasePostCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_remove_member_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRemoveMemberDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_remove_member_details". -/// -- (BOOL)isShowcaseRemoveMemberDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_renamed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRenamedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_renamed_details". -/// -- (BOOL)isShowcaseRenamedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_request_access_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRequestAccessDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_request_access_details". -/// -- (BOOL)isShowcaseRequestAccessDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_resolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseResolveCommentDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_resolve_comment_details". -/// -- (BOOL)isShowcaseResolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_restored_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRestoredDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_restored_details". -/// -- (BOOL)isShowcaseRestoredDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_details". -/// -- (BOOL)isShowcaseTrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_deprecated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashedDeprecatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_deprecated_details". -/// -- (BOOL)isShowcaseTrashedDeprecatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_unresolve_comment_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUnresolveCommentDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_unresolve_comment_details". -/// -- (BOOL)isShowcaseUnresolveCommentDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_details". -/// -- (BOOL)isShowcaseUntrashedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_deprecated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashedDeprecatedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_deprecated_details". -/// -- (BOOL)isShowcaseUntrashedDeprecatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_view_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseViewDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_view_details". -/// -- (BOOL)isShowcaseViewDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_cert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddCertDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_cert_details". -/// -- (BOOL)isSsoAddCertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_login_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLoginUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_login_url_details". -/// -- (BOOL)isSsoAddLoginUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_logout_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLogoutUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_logout_url_details". -/// -- (BOOL)isSsoAddLogoutUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_cert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeCertDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_cert_details". -/// -- (BOOL)isSsoChangeCertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_login_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLoginUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_login_url_details". -/// -- (BOOL)isSsoChangeLoginUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_logout_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLogoutUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_logout_url_details". -/// -- (BOOL)isSsoChangeLogoutUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_saml_identity_mode_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeSamlIdentityModeDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_saml_identity_mode_details". -/// -- (BOOL)isSsoChangeSamlIdentityModeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_cert_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveCertDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_cert_details". -/// -- (BOOL)isSsoRemoveCertDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_login_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLoginUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_login_url_details". -/// -- (BOOL)isSsoRemoveLoginUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_logout_url_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLogoutUrlDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_logout_url_details". -/// -- (BOOL)isSsoRemoveLogoutUrlDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderChangeStatusDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_change_status_details". -/// -- (BOOL)isTeamFolderChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_create_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderCreateDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_create_details". -/// -- (BOOL)isTeamFolderCreateDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_downgrade_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderDowngradeDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_downgrade_details". -/// -- (BOOL)isTeamFolderDowngradeDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_permanently_delete_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderPermanentlyDeleteDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_permanently_delete_details". -/// -- (BOOL)isTeamFolderPermanentlyDeleteDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_rename_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderRenameDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_rename_details". -/// -- (BOOL)isTeamFolderRenameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_settings_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncSettingsChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_settings_changed_details". -/// -- (BOOL)isTeamSelectiveSyncSettingsChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_policy_details". -/// -- (BOOL)isAccountCaptureChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_email_reminders_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminEmailRemindersChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_email_reminders_changed_details". -/// -- (BOOL)isAdminEmailRemindersChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_disabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadDisabledDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_disabled_details". -/// -- (BOOL)isAllowDownloadDisabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadEnabledDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_enabled_details". -/// -- (BOOL)isAllowDownloadEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_permissions_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appPermissionsChangedDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_permissions_changed_details". -/// -- (BOOL)isAppPermissionsChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "camera_uploads_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cameraUploadsPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "camera_uploads_policy_changed_details". -/// -- (BOOL)isCameraUploadsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "capture_transcript_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `captureTranscriptPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "capture_transcript_policy_changed_details". -/// -- (BOOL)isCaptureTranscriptPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_change_policy_details". -/// -- (BOOL)isClassificationChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "computer_backup_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `computerBackupPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "computer_backup_policy_changed_details". -/// -- (BOOL)isComputerBackupPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_administration_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contentAdministrationPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "content_administration_policy_changed_details". -/// -- (BOOL)isContentAdministrationPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_change_policy_details". -/// -- (BOOL)isDataPlacementRestrictionChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionSatisfyPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy_details". -/// -- (BOOL)isDataPlacementRestrictionSatisfyPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsAddExceptionDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_add_exception_details". -/// -- (BOOL)isDeviceApprovalsAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_desktop_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeDesktopPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_desktop_policy_details". -/// -- (BOOL)isDeviceApprovalsChangeDesktopPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_mobile_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeMobilePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_mobile_policy_details". -/// -- (BOOL)isDeviceApprovalsChangeMobilePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_overage_action_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeOverageActionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_overage_action_details". -/// -- (BOOL)isDeviceApprovalsChangeOverageActionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_unlink_action_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeUnlinkActionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_unlink_action_details". -/// -- (BOOL)isDeviceApprovalsChangeUnlinkActionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsRemoveExceptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_remove_exception_details". -/// -- (BOOL)isDeviceApprovalsRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_add_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsAddMembersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_add_members_details". -/// -- (BOOL)isDirectoryRestrictionsAddMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_remove_members_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsRemoveMembersDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_remove_members_details". -/// -- (BOOL)isDirectoryRestrictionsRemoveMembersDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_policy_changed_details". -/// -- (BOOL)isDropboxPasswordsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_policy_changed_details". -/// -- (BOOL)isEmailIngestPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmAddExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_add_exception_details". -/// -- (BOOL)isEmmAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_change_policy_details". -/// -- (BOOL)isEmmChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRemoveExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_remove_exception_details". -/// -- (BOOL)isEmmRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "extended_version_history_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `extendedVersionHistoryChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "extended_version_history_change_policy_details". -/// -- (BOOL)isExtendedVersionHistoryChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_policy_changed_details". -/// -- (BOOL)isExternalDriveBackupPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_comments_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCommentsChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_comments_change_policy_details". -/// -- (BOOL)isFileCommentsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_policy_changed_details". -/// -- (BOOL)isFileLockingPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_provider_migration_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileProviderMigrationPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_provider_migration_policy_changed_details". -/// -- (BOOL)isFileProviderMigrationPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_change_policy_details". -/// -- (BOOL)isFileRequestsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_enabled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsEnabledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_enabled_details". -/// -- (BOOL)isFileRequestsEmailsEnabledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsRestrictedToTeamOnlyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only_details". -/// -- (BOOL)isFileRequestsEmailsRestrictedToTeamOnlyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_policy_changed_details". -/// -- (BOOL)isFileTransfersPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_link_restriction_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderLinkRestrictionPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_link_restriction_policy_changed_details". -/// -- (BOOL)isFolderLinkRestrictionPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "google_sso_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `googleSsoChangePolicyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "google_sso_change_policy_details". -/// -- (BOOL)isGoogleSsoChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_user_management_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupUserManagementChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_user_management_change_policy_details". -/// -- (BOOL)isGroupUserManagementChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_policy_changed_details". -/// -- (BOOL)isIntegrationPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `inviteAcceptanceEmailPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed_details". -/// -- (BOOL)isInviteAcceptanceEmailPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_requests_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRequestsChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_requests_change_policy_details". -/// -- (BOOL)isMemberRequestsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_send_invite_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSendInvitePolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_send_invite_policy_changed_details". -/// -- (BOOL)isMemberSendInvitePolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddExceptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_exception_details". -/// -- (BOOL)isMemberSpaceLimitsAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCapsTypePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy_details". -/// -- (BOOL)isMemberSpaceLimitsChangeCapsTypePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_policy_details". -/// -- (BOOL)isMemberSpaceLimitsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveExceptionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_exception_details". -/// -- (BOOL)isMemberSpaceLimitsRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggestions_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggestionsChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_suggestions_change_policy_details". -/// -- (BOOL)isMemberSuggestionsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "microsoft_office_addin_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `microsoftOfficeAddinChangePolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "microsoft_office_addin_change_policy_details". -/// -- (BOOL)isMicrosoftOfficeAddinChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "network_control_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `networkControlChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "network_control_change_policy_details". -/// -- (BOOL)isNetworkControlChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_deployment_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeDeploymentPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_deployment_policy_details". -/// -- (BOOL)isPaperChangeDeploymentPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_link_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberLinkPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_link_policy_details". -/// -- (BOOL)isPaperChangeMemberLinkPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_policy_details". -/// -- (BOOL)isPaperChangeMemberPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_policy_details". -/// -- (BOOL)isPaperChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_default_folder_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDefaultFolderPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_default_folder_policy_changed_details". -/// -- (BOOL)isPaperDefaultFolderPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_desktop_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDesktopPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_desktop_policy_changed_details". -/// -- (BOOL)isPaperDesktopPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_addition_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupAdditionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_addition_details". -/// -- (BOOL)isPaperEnabledUsersGroupAdditionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_removal_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupRemovalDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_removal_details". -/// -- (BOOL)isPaperEnabledUsersGroupRemovalDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_strength_requirements_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordStrengthRequirementsChangePolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_strength_requirements_change_policy_details". -/// -- (BOOL)isPasswordStrengthRequirementsChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "permanent_delete_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `permanentDeleteChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "permanent_delete_change_policy_details". -/// -- (BOOL)isPermanentDeleteChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportChangePolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_change_policy_details". -/// -- (BOOL)isResellerSupportChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindPolicyChangedDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "rewind_policy_changed_details". -/// -- (BOOL)isRewindPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "send_for_signature_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sendForSignaturePolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "send_for_signature_policy_changed_details". -/// -- (BOOL)isSendForSignaturePolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_folder_join_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeFolderJoinPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_folder_join_policy_details". -/// -- (BOOL)isSharingChangeFolderJoinPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkAllowChangeExpirationPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy_details". -/// -- (BOOL)isSharingChangeLinkAllowChangeExpirationPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkDefaultExpirationPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy_details". -/// -- (BOOL)isSharingChangeLinkDefaultExpirationPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkEnforcePasswordPolicyDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy_details". -/// -- (BOOL)isSharingChangeLinkEnforcePasswordPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_policy_details". -/// -- (BOOL)isSharingChangeLinkPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_member_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeMemberPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_member_policy_details". -/// -- (BOOL)isSharingChangeMemberPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_download_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeDownloadPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_download_policy_details". -/// -- (BOOL)isShowcaseChangeDownloadPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_enabled_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeEnabledPolicyDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_enabled_policy_details". -/// -- (BOOL)isShowcaseChangeEnabledPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_external_sharing_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeExternalSharingPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_external_sharing_policy_details". -/// -- (BOOL)isShowcaseChangeExternalSharingPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smarterSmartSyncPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed_details". -/// -- (BOOL)isSmarterSmartSyncPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncChangePolicyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_change_policy_details". -/// -- (BOOL)isSmartSyncChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_not_opt_out_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncNotOptOutDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_not_opt_out_details". -/// -- (BOOL)isSmartSyncNotOptOutDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_opt_out_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncOptOutDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_opt_out_details". -/// -- (BOOL)isSmartSyncOptOutDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_policy_details". -/// -- (BOOL)isSsoChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_branding_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamBrandingPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_branding_policy_changed_details". -/// -- (BOOL)isTeamBrandingPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_extensions_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamExtensionsPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_extensions_policy_changed_details". -/// -- (BOOL)isTeamExtensionsPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncPolicyChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_policy_changed_details". -/// -- (BOOL)isTeamSelectiveSyncPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharingWhitelistSubjectsChangedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed_details". -/// -- (BOOL)isTeamSharingWhitelistSubjectsChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_exception_details". -/// -- (BOOL)isTfaAddExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangePolicyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_policy_details". -/// -- (BOOL)isTfaChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_exception_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveExceptionDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_exception_details". -/// -- (BOOL)isTfaRemoveExceptionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_account_change_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `twoAccountChangePolicyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "two_account_change_policy_details". -/// -- (BOOL)isTwoAccountChangePolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_info_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `viewerInfoPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "viewer_info_policy_changed_details". -/// -- (BOOL)isViewerInfoPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "watermarking_policy_changed_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `watermarkingPolicyChangedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "watermarking_policy_changed_details". -/// -- (BOOL)isWatermarkingPolicyChangedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_active_session_limit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeActiveSessionLimitDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_active_session_limit_details". -/// -- (BOOL)isWebSessionsChangeActiveSessionLimitDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeFixedLengthPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy_details". -/// -- (BOOL)isWebSessionsChangeFixedLengthPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeIdleLengthPolicyDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy_details". -/// -- (BOOL)isWebSessionsChangeIdleLengthPolicyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_successful_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestSuccessfulDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_successful_details". -/// -- (BOOL)isDataResidencyMigrationRequestSuccessfulDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestUnsuccessfulDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful_details". -/// -- (BOOL)isDataResidencyMigrationRequestUnsuccessfulDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_from_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeFromDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_from_details". -/// -- (BOOL)isTeamMergeFromDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_to_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeToDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_to_details". -/// -- (BOOL)isTeamMergeToDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_background_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddBackgroundDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_background_details". -/// -- (BOOL)isTeamProfileAddBackgroundDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_logo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddLogoDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_logo_details". -/// -- (BOOL)isTeamProfileAddLogoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_background_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeBackgroundDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_background_details". -/// -- (BOOL)isTeamProfileChangeBackgroundDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_default_language_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeDefaultLanguageDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_default_language_details". -/// -- (BOOL)isTeamProfileChangeDefaultLanguageDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_logo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeLogoDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_logo_details". -/// -- (BOOL)isTeamProfileChangeLogoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_name_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeNameDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_name_details". -/// -- (BOOL)isTeamProfileChangeNameDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_background_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveBackgroundDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_background_details". -/// -- (BOOL)isTeamProfileRemoveBackgroundDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_logo_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveLogoDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_logo_details". -/// -- (BOOL)isTeamProfileRemoveLogoDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_backup_phone_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddBackupPhoneDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_backup_phone_details". -/// -- (BOOL)isTfaAddBackupPhoneDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_security_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddSecurityKeyDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_security_key_details". -/// -- (BOOL)isTfaAddSecurityKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_backup_phone_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeBackupPhoneDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_backup_phone_details". -/// -- (BOOL)isTfaChangeBackupPhoneDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeStatusDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_status_details". -/// -- (BOOL)isTfaChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_backup_phone_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveBackupPhoneDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_backup_phone_details". -/// -- (BOOL)isTfaRemoveBackupPhoneDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_security_key_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveSecurityKeyDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_security_key_details". -/// -- (BOOL)isTfaRemoveSecurityKeyDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_reset_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaResetDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_reset_details". -/// -- (BOOL)isTfaResetDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_admin_role_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseAdminRoleDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_admin_role_details". -/// -- (BOOL)isChangedEnterpriseAdminRoleDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_connected_team_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseConnectedTeamStatusDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_connected_team_status_details". -/// -- (BOOL)isChangedEnterpriseConnectedTeamStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSessionDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_details". -/// -- (BOOL)isEndedEnterpriseAdminSessionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSessionDeprecatedDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated_details". -/// -- (BOOL)isEndedEnterpriseAdminSessionDeprecatedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_settings_locking_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enterpriseSettingsLockingDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "enterprise_settings_locking_details". -/// -- (BOOL)isEnterpriseSettingsLockingDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_change_status_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminChangeStatusDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_change_status_details". -/// -- (BOOL)isGuestAdminChangeStatusDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "started_enterprise_admin_session_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `startedEnterpriseAdminSessionDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "started_enterprise_admin_session_details". -/// -- (BOOL)isStartedEnterpriseAdminSessionDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_details". -/// -- (BOOL)isTeamMergeRequestAcceptedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_auto_canceled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAutoCanceledDetails` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_auto_canceled_details". -/// -- (BOOL)isTeamMergeRequestAutoCanceledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_details". -/// -- (BOOL)isTeamMergeRequestCanceledDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestCanceledShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestCanceledShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_details". -/// -- (BOOL)isTeamMergeRequestExpiredDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestExpiredShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestExpiredShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestRejectedShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestRejectedShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_details". -/// -- (BOOL)isTeamMergeRequestReminderDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestReminderShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestReminderShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_revoked_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRevokedDetails` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_revoked_details". -/// -- (BOOL)isTeamMergeRequestRevokedDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToPrimaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team_details". -/// -- (BOOL)isTeamMergeRequestSentShownToPrimaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToSecondaryTeamDetails` property, otherwise a -/// runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team_details". -/// -- (BOOL)isTeamMergeRequestSentShownToSecondaryTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value "missing_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `missingDetails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "missing_details". -/// -- (BOOL)isMissingDetails; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventDetails` union. -/// -@interface DBTEAMLOGEventDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGEventDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventDetails` object. -/// -+ (DBTEAMLOGEventDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventType.h deleted file mode 100644 index 2e6d76e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventType.h +++ /dev/null @@ -1,17722 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccountCaptureChangeAvailabilityType; -@class DBTEAMLOGAccountCaptureChangePolicyType; -@class DBTEAMLOGAccountCaptureMigrateAccountType; -@class DBTEAMLOGAccountCaptureNotificationEmailsSentType; -@class DBTEAMLOGAccountCaptureRelinquishAccountType; -@class DBTEAMLOGAccountLockOrUnlockedType; -@class DBTEAMLOGAdminAlertingAlertStateChangedType; -@class DBTEAMLOGAdminAlertingChangedAlertConfigType; -@class DBTEAMLOGAdminAlertingTriggeredAlertType; -@class DBTEAMLOGAdminEmailRemindersChangedType; -@class DBTEAMLOGAllowDownloadDisabledType; -@class DBTEAMLOGAllowDownloadEnabledType; -@class DBTEAMLOGAppBlockedByPermissionsType; -@class DBTEAMLOGAppLinkTeamType; -@class DBTEAMLOGAppLinkUserType; -@class DBTEAMLOGAppPermissionsChangedType; -@class DBTEAMLOGAppUnlinkTeamType; -@class DBTEAMLOGAppUnlinkUserType; -@class DBTEAMLOGApplyNamingConventionType; -@class DBTEAMLOGBackupAdminInvitationSentType; -@class DBTEAMLOGBackupInvitationOpenedType; -@class DBTEAMLOGBinderAddPageType; -@class DBTEAMLOGBinderAddSectionType; -@class DBTEAMLOGBinderRemovePageType; -@class DBTEAMLOGBinderRemoveSectionType; -@class DBTEAMLOGBinderRenamePageType; -@class DBTEAMLOGBinderRenameSectionType; -@class DBTEAMLOGBinderReorderPageType; -@class DBTEAMLOGBinderReorderSectionType; -@class DBTEAMLOGCameraUploadsPolicyChangedType; -@class DBTEAMLOGCaptureTranscriptPolicyChangedType; -@class DBTEAMLOGChangedEnterpriseAdminRoleType; -@class DBTEAMLOGChangedEnterpriseConnectedTeamStatusType; -@class DBTEAMLOGClassificationChangePolicyType; -@class DBTEAMLOGClassificationCreateReportFailType; -@class DBTEAMLOGClassificationCreateReportType; -@class DBTEAMLOGCollectionShareType; -@class DBTEAMLOGComputerBackupPolicyChangedType; -@class DBTEAMLOGContentAdministrationPolicyChangedType; -@class DBTEAMLOGCreateFolderType; -@class DBTEAMLOGCreateTeamInviteLinkType; -@class DBTEAMLOGDataPlacementRestrictionChangePolicyType; -@class DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType; -@class DBTEAMLOGDataResidencyMigrationRequestSuccessfulType; -@class DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType; -@class DBTEAMLOGDeleteTeamInviteLinkType; -@class DBTEAMLOGDeviceApprovalsAddExceptionType; -@class DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType; -@class DBTEAMLOGDeviceApprovalsChangeMobilePolicyType; -@class DBTEAMLOGDeviceApprovalsChangeOverageActionType; -@class DBTEAMLOGDeviceApprovalsChangeUnlinkActionType; -@class DBTEAMLOGDeviceApprovalsRemoveExceptionType; -@class DBTEAMLOGDeviceChangeIpDesktopType; -@class DBTEAMLOGDeviceChangeIpMobileType; -@class DBTEAMLOGDeviceChangeIpWebType; -@class DBTEAMLOGDeviceDeleteOnUnlinkFailType; -@class DBTEAMLOGDeviceDeleteOnUnlinkSuccessType; -@class DBTEAMLOGDeviceLinkFailType; -@class DBTEAMLOGDeviceLinkSuccessType; -@class DBTEAMLOGDeviceManagementDisabledType; -@class DBTEAMLOGDeviceManagementEnabledType; -@class DBTEAMLOGDeviceSyncBackupStatusChangedType; -@class DBTEAMLOGDeviceUnlinkType; -@class DBTEAMLOGDirectoryRestrictionsAddMembersType; -@class DBTEAMLOGDirectoryRestrictionsRemoveMembersType; -@class DBTEAMLOGDisabledDomainInvitesType; -@class DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType; -@class DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType; -@class DBTEAMLOGDomainInvitesEmailExistingUsersType; -@class DBTEAMLOGDomainInvitesRequestToJoinTeamType; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType; -@class DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType; -@class DBTEAMLOGDomainVerificationAddDomainFailType; -@class DBTEAMLOGDomainVerificationAddDomainSuccessType; -@class DBTEAMLOGDomainVerificationRemoveDomainType; -@class DBTEAMLOGDropboxPasswordsExportedType; -@class DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType; -@class DBTEAMLOGDropboxPasswordsPolicyChangedType; -@class DBTEAMLOGEmailIngestPolicyChangedType; -@class DBTEAMLOGEmailIngestReceiveFileType; -@class DBTEAMLOGEmmAddExceptionType; -@class DBTEAMLOGEmmChangePolicyType; -@class DBTEAMLOGEmmCreateExceptionsReportType; -@class DBTEAMLOGEmmCreateUsageReportType; -@class DBTEAMLOGEmmErrorType; -@class DBTEAMLOGEmmRefreshAuthTokenType; -@class DBTEAMLOGEmmRemoveExceptionType; -@class DBTEAMLOGEnabledDomainInvitesType; -@class DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType; -@class DBTEAMLOGEndedEnterpriseAdminSessionType; -@class DBTEAMLOGEnterpriseSettingsLockingType; -@class DBTEAMLOGEventType; -@class DBTEAMLOGExportMembersReportFailType; -@class DBTEAMLOGExportMembersReportType; -@class DBTEAMLOGExtendedVersionHistoryChangePolicyType; -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType; -@class DBTEAMLOGExternalDriveBackupPolicyChangedType; -@class DBTEAMLOGExternalDriveBackupStatusChangedType; -@class DBTEAMLOGExternalSharingCreateReportType; -@class DBTEAMLOGExternalSharingReportFailedType; -@class DBTEAMLOGFileAddCommentType; -@class DBTEAMLOGFileAddFromAutomationType; -@class DBTEAMLOGFileAddType; -@class DBTEAMLOGFileChangeCommentSubscriptionType; -@class DBTEAMLOGFileCommentsChangePolicyType; -@class DBTEAMLOGFileCopyType; -@class DBTEAMLOGFileDeleteCommentType; -@class DBTEAMLOGFileDeleteType; -@class DBTEAMLOGFileDownloadType; -@class DBTEAMLOGFileEditCommentType; -@class DBTEAMLOGFileEditType; -@class DBTEAMLOGFileGetCopyReferenceType; -@class DBTEAMLOGFileLikeCommentType; -@class DBTEAMLOGFileLockingLockStatusChangedType; -@class DBTEAMLOGFileLockingPolicyChangedType; -@class DBTEAMLOGFileMoveType; -@class DBTEAMLOGFilePermanentlyDeleteType; -@class DBTEAMLOGFilePreviewType; -@class DBTEAMLOGFileProviderMigrationPolicyChangedType; -@class DBTEAMLOGFileRenameType; -@class DBTEAMLOGFileRequestChangeType; -@class DBTEAMLOGFileRequestCloseType; -@class DBTEAMLOGFileRequestCreateType; -@class DBTEAMLOGFileRequestDeleteType; -@class DBTEAMLOGFileRequestReceiveFileType; -@class DBTEAMLOGFileRequestsChangePolicyType; -@class DBTEAMLOGFileRequestsEmailsEnabledType; -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType; -@class DBTEAMLOGFileResolveCommentType; -@class DBTEAMLOGFileRestoreType; -@class DBTEAMLOGFileRevertType; -@class DBTEAMLOGFileRollbackChangesType; -@class DBTEAMLOGFileSaveCopyReferenceType; -@class DBTEAMLOGFileTransfersFileAddType; -@class DBTEAMLOGFileTransfersPolicyChangedType; -@class DBTEAMLOGFileTransfersTransferDeleteType; -@class DBTEAMLOGFileTransfersTransferDownloadType; -@class DBTEAMLOGFileTransfersTransferSendType; -@class DBTEAMLOGFileTransfersTransferViewType; -@class DBTEAMLOGFileUnlikeCommentType; -@class DBTEAMLOGFileUnresolveCommentType; -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedType; -@class DBTEAMLOGFolderOverviewDescriptionChangedType; -@class DBTEAMLOGFolderOverviewItemPinnedType; -@class DBTEAMLOGFolderOverviewItemUnpinnedType; -@class DBTEAMLOGGoogleSsoChangePolicyType; -@class DBTEAMLOGGovernancePolicyAddFolderFailedType; -@class DBTEAMLOGGovernancePolicyAddFoldersType; -@class DBTEAMLOGGovernancePolicyContentDisposedType; -@class DBTEAMLOGGovernancePolicyCreateType; -@class DBTEAMLOGGovernancePolicyDeleteType; -@class DBTEAMLOGGovernancePolicyEditDetailsType; -@class DBTEAMLOGGovernancePolicyEditDurationType; -@class DBTEAMLOGGovernancePolicyExportCreatedType; -@class DBTEAMLOGGovernancePolicyExportRemovedType; -@class DBTEAMLOGGovernancePolicyRemoveFoldersType; -@class DBTEAMLOGGovernancePolicyReportCreatedType; -@class DBTEAMLOGGovernancePolicyZipPartDownloadedType; -@class DBTEAMLOGGroupAddExternalIdType; -@class DBTEAMLOGGroupAddMemberType; -@class DBTEAMLOGGroupChangeExternalIdType; -@class DBTEAMLOGGroupChangeManagementTypeType; -@class DBTEAMLOGGroupChangeMemberRoleType; -@class DBTEAMLOGGroupCreateType; -@class DBTEAMLOGGroupDeleteType; -@class DBTEAMLOGGroupDescriptionUpdatedType; -@class DBTEAMLOGGroupJoinPolicyUpdatedType; -@class DBTEAMLOGGroupMovedType; -@class DBTEAMLOGGroupRemoveExternalIdType; -@class DBTEAMLOGGroupRemoveMemberType; -@class DBTEAMLOGGroupRenameType; -@class DBTEAMLOGGroupUserManagementChangePolicyType; -@class DBTEAMLOGGuestAdminChangeStatusType; -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType; -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType; -@class DBTEAMLOGIntegrationConnectedType; -@class DBTEAMLOGIntegrationDisconnectedType; -@class DBTEAMLOGIntegrationPolicyChangedType; -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedType; -@class DBTEAMLOGLegalHoldsActivateAHoldType; -@class DBTEAMLOGLegalHoldsAddMembersType; -@class DBTEAMLOGLegalHoldsChangeHoldDetailsType; -@class DBTEAMLOGLegalHoldsChangeHoldNameType; -@class DBTEAMLOGLegalHoldsExportAHoldType; -@class DBTEAMLOGLegalHoldsExportCancelledType; -@class DBTEAMLOGLegalHoldsExportDownloadedType; -@class DBTEAMLOGLegalHoldsExportRemovedType; -@class DBTEAMLOGLegalHoldsReleaseAHoldType; -@class DBTEAMLOGLegalHoldsRemoveMembersType; -@class DBTEAMLOGLegalHoldsReportAHoldType; -@class DBTEAMLOGLoginFailType; -@class DBTEAMLOGLoginSuccessType; -@class DBTEAMLOGLogoutType; -@class DBTEAMLOGMemberAddExternalIdType; -@class DBTEAMLOGMemberAddNameType; -@class DBTEAMLOGMemberChangeAdminRoleType; -@class DBTEAMLOGMemberChangeEmailType; -@class DBTEAMLOGMemberChangeExternalIdType; -@class DBTEAMLOGMemberChangeMembershipTypeType; -@class DBTEAMLOGMemberChangeNameType; -@class DBTEAMLOGMemberChangeResellerRoleType; -@class DBTEAMLOGMemberChangeStatusType; -@class DBTEAMLOGMemberDeleteManualContactsType; -@class DBTEAMLOGMemberDeleteProfilePhotoType; -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsType; -@class DBTEAMLOGMemberRemoveExternalIdType; -@class DBTEAMLOGMemberRequestsChangePolicyType; -@class DBTEAMLOGMemberSendInvitePolicyChangedType; -@class DBTEAMLOGMemberSetProfilePhotoType; -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType; -@class DBTEAMLOGMemberSpaceLimitsAddExceptionType; -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType; -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType; -@class DBTEAMLOGMemberSpaceLimitsChangePolicyType; -@class DBTEAMLOGMemberSpaceLimitsChangeStatusType; -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType; -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionType; -@class DBTEAMLOGMemberSuggestType; -@class DBTEAMLOGMemberSuggestionsChangePolicyType; -@class DBTEAMLOGMemberTransferAccountContentsType; -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyType; -@class DBTEAMLOGNetworkControlChangePolicyType; -@class DBTEAMLOGNoExpirationLinkGenCreateReportType; -@class DBTEAMLOGNoExpirationLinkGenReportFailedType; -@class DBTEAMLOGNoPasswordLinkGenCreateReportType; -@class DBTEAMLOGNoPasswordLinkGenReportFailedType; -@class DBTEAMLOGNoPasswordLinkViewCreateReportType; -@class DBTEAMLOGNoPasswordLinkViewReportFailedType; -@class DBTEAMLOGNoteAclInviteOnlyType; -@class DBTEAMLOGNoteAclLinkType; -@class DBTEAMLOGNoteAclTeamLinkType; -@class DBTEAMLOGNoteShareReceiveType; -@class DBTEAMLOGNoteSharedType; -@class DBTEAMLOGObjectLabelAddedType; -@class DBTEAMLOGObjectLabelRemovedType; -@class DBTEAMLOGObjectLabelUpdatedValueType; -@class DBTEAMLOGOpenNoteSharedType; -@class DBTEAMLOGOrganizeFolderWithTidyType; -@class DBTEAMLOGOutdatedLinkViewCreateReportType; -@class DBTEAMLOGOutdatedLinkViewReportFailedType; -@class DBTEAMLOGPaperAdminExportStartType; -@class DBTEAMLOGPaperChangeDeploymentPolicyType; -@class DBTEAMLOGPaperChangeMemberLinkPolicyType; -@class DBTEAMLOGPaperChangeMemberPolicyType; -@class DBTEAMLOGPaperChangePolicyType; -@class DBTEAMLOGPaperContentAddMemberType; -@class DBTEAMLOGPaperContentAddToFolderType; -@class DBTEAMLOGPaperContentArchiveType; -@class DBTEAMLOGPaperContentCreateType; -@class DBTEAMLOGPaperContentPermanentlyDeleteType; -@class DBTEAMLOGPaperContentRemoveFromFolderType; -@class DBTEAMLOGPaperContentRemoveMemberType; -@class DBTEAMLOGPaperContentRenameType; -@class DBTEAMLOGPaperContentRestoreType; -@class DBTEAMLOGPaperDefaultFolderPolicyChangedType; -@class DBTEAMLOGPaperDesktopPolicyChangedType; -@class DBTEAMLOGPaperDocAddCommentType; -@class DBTEAMLOGPaperDocChangeMemberRoleType; -@class DBTEAMLOGPaperDocChangeSharingPolicyType; -@class DBTEAMLOGPaperDocChangeSubscriptionType; -@class DBTEAMLOGPaperDocDeleteCommentType; -@class DBTEAMLOGPaperDocDeletedType; -@class DBTEAMLOGPaperDocDownloadType; -@class DBTEAMLOGPaperDocEditCommentType; -@class DBTEAMLOGPaperDocEditType; -@class DBTEAMLOGPaperDocFollowedType; -@class DBTEAMLOGPaperDocMentionType; -@class DBTEAMLOGPaperDocOwnershipChangedType; -@class DBTEAMLOGPaperDocRequestAccessType; -@class DBTEAMLOGPaperDocResolveCommentType; -@class DBTEAMLOGPaperDocRevertType; -@class DBTEAMLOGPaperDocSlackShareType; -@class DBTEAMLOGPaperDocTeamInviteType; -@class DBTEAMLOGPaperDocTrashedType; -@class DBTEAMLOGPaperDocUnresolveCommentType; -@class DBTEAMLOGPaperDocUntrashedType; -@class DBTEAMLOGPaperDocViewType; -@class DBTEAMLOGPaperEnabledUsersGroupAdditionType; -@class DBTEAMLOGPaperEnabledUsersGroupRemovalType; -@class DBTEAMLOGPaperExternalViewAllowType; -@class DBTEAMLOGPaperExternalViewDefaultTeamType; -@class DBTEAMLOGPaperExternalViewForbidType; -@class DBTEAMLOGPaperFolderChangeSubscriptionType; -@class DBTEAMLOGPaperFolderDeletedType; -@class DBTEAMLOGPaperFolderFollowedType; -@class DBTEAMLOGPaperFolderTeamInviteType; -@class DBTEAMLOGPaperPublishedLinkChangePermissionType; -@class DBTEAMLOGPaperPublishedLinkCreateType; -@class DBTEAMLOGPaperPublishedLinkDisabledType; -@class DBTEAMLOGPaperPublishedLinkViewType; -@class DBTEAMLOGPasswordChangeType; -@class DBTEAMLOGPasswordResetAllType; -@class DBTEAMLOGPasswordResetType; -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyType; -@class DBTEAMLOGPendingSecondaryEmailAddedType; -@class DBTEAMLOGPermanentDeleteChangePolicyType; -@class DBTEAMLOGRansomwareAlertCreateReportFailedType; -@class DBTEAMLOGRansomwareAlertCreateReportType; -@class DBTEAMLOGRansomwareRestoreProcessCompletedType; -@class DBTEAMLOGRansomwareRestoreProcessStartedType; -@class DBTEAMLOGReplayFileDeleteType; -@class DBTEAMLOGReplayFileSharedLinkCreatedType; -@class DBTEAMLOGReplayFileSharedLinkModifiedType; -@class DBTEAMLOGReplayProjectTeamAddType; -@class DBTEAMLOGReplayProjectTeamDeleteType; -@class DBTEAMLOGResellerSupportChangePolicyType; -@class DBTEAMLOGResellerSupportSessionEndType; -@class DBTEAMLOGResellerSupportSessionStartType; -@class DBTEAMLOGRewindFolderType; -@class DBTEAMLOGRewindPolicyChangedType; -@class DBTEAMLOGSecondaryEmailDeletedType; -@class DBTEAMLOGSecondaryEmailVerifiedType; -@class DBTEAMLOGSecondaryMailsPolicyChangedType; -@class DBTEAMLOGSendForSignaturePolicyChangedType; -@class DBTEAMLOGSfAddGroupType; -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksType; -@class DBTEAMLOGSfExternalInviteWarnType; -@class DBTEAMLOGSfFbInviteChangeRoleType; -@class DBTEAMLOGSfFbInviteType; -@class DBTEAMLOGSfFbUninviteType; -@class DBTEAMLOGSfInviteGroupType; -@class DBTEAMLOGSfTeamGrantAccessType; -@class DBTEAMLOGSfTeamInviteChangeRoleType; -@class DBTEAMLOGSfTeamInviteType; -@class DBTEAMLOGSfTeamJoinFromOobLinkType; -@class DBTEAMLOGSfTeamJoinType; -@class DBTEAMLOGSfTeamUninviteType; -@class DBTEAMLOGSharedContentAddInviteesType; -@class DBTEAMLOGSharedContentAddLinkExpiryType; -@class DBTEAMLOGSharedContentAddLinkPasswordType; -@class DBTEAMLOGSharedContentAddMemberType; -@class DBTEAMLOGSharedContentChangeDownloadsPolicyType; -@class DBTEAMLOGSharedContentChangeInviteeRoleType; -@class DBTEAMLOGSharedContentChangeLinkAudienceType; -@class DBTEAMLOGSharedContentChangeLinkExpiryType; -@class DBTEAMLOGSharedContentChangeLinkPasswordType; -@class DBTEAMLOGSharedContentChangeMemberRoleType; -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyType; -@class DBTEAMLOGSharedContentClaimInvitationType; -@class DBTEAMLOGSharedContentCopyType; -@class DBTEAMLOGSharedContentDownloadType; -@class DBTEAMLOGSharedContentRelinquishMembershipType; -@class DBTEAMLOGSharedContentRemoveInviteesType; -@class DBTEAMLOGSharedContentRemoveLinkExpiryType; -@class DBTEAMLOGSharedContentRemoveLinkPasswordType; -@class DBTEAMLOGSharedContentRemoveMemberType; -@class DBTEAMLOGSharedContentRequestAccessType; -@class DBTEAMLOGSharedContentRestoreInviteesType; -@class DBTEAMLOGSharedContentRestoreMemberType; -@class DBTEAMLOGSharedContentUnshareType; -@class DBTEAMLOGSharedContentViewType; -@class DBTEAMLOGSharedFolderChangeLinkPolicyType; -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType; -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyType; -@class DBTEAMLOGSharedFolderChangeMembersPolicyType; -@class DBTEAMLOGSharedFolderCreateType; -@class DBTEAMLOGSharedFolderDeclineInvitationType; -@class DBTEAMLOGSharedFolderMountType; -@class DBTEAMLOGSharedFolderNestType; -@class DBTEAMLOGSharedFolderTransferOwnershipType; -@class DBTEAMLOGSharedFolderUnmountType; -@class DBTEAMLOGSharedLinkAddExpiryType; -@class DBTEAMLOGSharedLinkChangeExpiryType; -@class DBTEAMLOGSharedLinkChangeVisibilityType; -@class DBTEAMLOGSharedLinkCopyType; -@class DBTEAMLOGSharedLinkCreateType; -@class DBTEAMLOGSharedLinkDisableType; -@class DBTEAMLOGSharedLinkDownloadType; -@class DBTEAMLOGSharedLinkRemoveExpiryType; -@class DBTEAMLOGSharedLinkSettingsAddExpirationType; -@class DBTEAMLOGSharedLinkSettingsAddPasswordType; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType; -@class DBTEAMLOGSharedLinkSettingsChangeAudienceType; -@class DBTEAMLOGSharedLinkSettingsChangeExpirationType; -@class DBTEAMLOGSharedLinkSettingsChangePasswordType; -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationType; -@class DBTEAMLOGSharedLinkSettingsRemovePasswordType; -@class DBTEAMLOGSharedLinkShareType; -@class DBTEAMLOGSharedLinkViewType; -@class DBTEAMLOGSharedNoteOpenedType; -@class DBTEAMLOGSharingChangeFolderJoinPolicyType; -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType; -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType; -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType; -@class DBTEAMLOGSharingChangeLinkPolicyType; -@class DBTEAMLOGSharingChangeMemberPolicyType; -@class DBTEAMLOGShmodelDisableDownloadsType; -@class DBTEAMLOGShmodelEnableDownloadsType; -@class DBTEAMLOGShmodelGroupShareType; -@class DBTEAMLOGShowcaseAccessGrantedType; -@class DBTEAMLOGShowcaseAddMemberType; -@class DBTEAMLOGShowcaseArchivedType; -@class DBTEAMLOGShowcaseChangeDownloadPolicyType; -@class DBTEAMLOGShowcaseChangeEnabledPolicyType; -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyType; -@class DBTEAMLOGShowcaseCreatedType; -@class DBTEAMLOGShowcaseDeleteCommentType; -@class DBTEAMLOGShowcaseEditCommentType; -@class DBTEAMLOGShowcaseEditedType; -@class DBTEAMLOGShowcaseFileAddedType; -@class DBTEAMLOGShowcaseFileDownloadType; -@class DBTEAMLOGShowcaseFileRemovedType; -@class DBTEAMLOGShowcaseFileViewType; -@class DBTEAMLOGShowcasePermanentlyDeletedType; -@class DBTEAMLOGShowcasePostCommentType; -@class DBTEAMLOGShowcaseRemoveMemberType; -@class DBTEAMLOGShowcaseRenamedType; -@class DBTEAMLOGShowcaseRequestAccessType; -@class DBTEAMLOGShowcaseResolveCommentType; -@class DBTEAMLOGShowcaseRestoredType; -@class DBTEAMLOGShowcaseTrashedDeprecatedType; -@class DBTEAMLOGShowcaseTrashedType; -@class DBTEAMLOGShowcaseUnresolveCommentType; -@class DBTEAMLOGShowcaseUntrashedDeprecatedType; -@class DBTEAMLOGShowcaseUntrashedType; -@class DBTEAMLOGShowcaseViewType; -@class DBTEAMLOGSignInAsSessionEndType; -@class DBTEAMLOGSignInAsSessionStartType; -@class DBTEAMLOGSmartSyncChangePolicyType; -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType; -@class DBTEAMLOGSmartSyncNotOptOutType; -@class DBTEAMLOGSmartSyncOptOutType; -@class DBTEAMLOGSmarterSmartSyncPolicyChangedType; -@class DBTEAMLOGSsoAddCertType; -@class DBTEAMLOGSsoAddLoginUrlType; -@class DBTEAMLOGSsoAddLogoutUrlType; -@class DBTEAMLOGSsoChangeCertType; -@class DBTEAMLOGSsoChangeLoginUrlType; -@class DBTEAMLOGSsoChangeLogoutUrlType; -@class DBTEAMLOGSsoChangePolicyType; -@class DBTEAMLOGSsoChangeSamlIdentityModeType; -@class DBTEAMLOGSsoErrorType; -@class DBTEAMLOGSsoRemoveCertType; -@class DBTEAMLOGSsoRemoveLoginUrlType; -@class DBTEAMLOGSsoRemoveLogoutUrlType; -@class DBTEAMLOGStartedEnterpriseAdminSessionType; -@class DBTEAMLOGTeamActivityCreateReportFailType; -@class DBTEAMLOGTeamActivityCreateReportType; -@class DBTEAMLOGTeamBrandingPolicyChangedType; -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType; -@class DBTEAMLOGTeamEncryptionKeyCreateKeyType; -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyType; -@class DBTEAMLOGTeamEncryptionKeyDisableKeyType; -@class DBTEAMLOGTeamEncryptionKeyEnableKeyType; -@class DBTEAMLOGTeamEncryptionKeyRotateKeyType; -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType; -@class DBTEAMLOGTeamExtensionsPolicyChangedType; -@class DBTEAMLOGTeamFolderChangeStatusType; -@class DBTEAMLOGTeamFolderCreateType; -@class DBTEAMLOGTeamFolderDowngradeType; -@class DBTEAMLOGTeamFolderPermanentlyDeleteType; -@class DBTEAMLOGTeamFolderRenameType; -@class DBTEAMLOGTeamMergeFromType; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestAcceptedType; -@class DBTEAMLOGTeamMergeRequestAutoCanceledType; -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestCanceledType; -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestExpiredType; -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeRequestReminderType; -@class DBTEAMLOGTeamMergeRequestRevokedType; -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType; -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType; -@class DBTEAMLOGTeamMergeToType; -@class DBTEAMLOGTeamProfileAddBackgroundType; -@class DBTEAMLOGTeamProfileAddLogoType; -@class DBTEAMLOGTeamProfileChangeBackgroundType; -@class DBTEAMLOGTeamProfileChangeDefaultLanguageType; -@class DBTEAMLOGTeamProfileChangeLogoType; -@class DBTEAMLOGTeamProfileChangeNameType; -@class DBTEAMLOGTeamProfileRemoveBackgroundType; -@class DBTEAMLOGTeamProfileRemoveLogoType; -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedType; -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedType; -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedType; -@class DBTEAMLOGTfaAddBackupPhoneType; -@class DBTEAMLOGTfaAddExceptionType; -@class DBTEAMLOGTfaAddSecurityKeyType; -@class DBTEAMLOGTfaChangeBackupPhoneType; -@class DBTEAMLOGTfaChangePolicyType; -@class DBTEAMLOGTfaChangeStatusType; -@class DBTEAMLOGTfaRemoveBackupPhoneType; -@class DBTEAMLOGTfaRemoveExceptionType; -@class DBTEAMLOGTfaRemoveSecurityKeyType; -@class DBTEAMLOGTfaResetType; -@class DBTEAMLOGTwoAccountChangePolicyType; -@class DBTEAMLOGUndoNamingConventionType; -@class DBTEAMLOGUndoOrganizeFolderWithTidyType; -@class DBTEAMLOGUserTagsAddedType; -@class DBTEAMLOGUserTagsRemovedType; -@class DBTEAMLOGViewerInfoPolicyChangedType; -@class DBTEAMLOGWatermarkingPolicyChangedType; -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitType; -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyType; -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventType` union. -/// -/// The type of the event with description. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventTypeTag) { - /// (admin_alerting) Changed an alert state - DBTEAMLOGEventTypeAdminAlertingAlertStateChanged, - - /// (admin_alerting) Changed an alert setting - DBTEAMLOGEventTypeAdminAlertingChangedAlertConfig, - - /// (admin_alerting) Triggered security alert - DBTEAMLOGEventTypeAdminAlertingTriggeredAlert, - - /// (admin_alerting) Completed ransomware restore process - DBTEAMLOGEventTypeRansomwareRestoreProcessCompleted, - - /// (admin_alerting) Started ransomware restore process - DBTEAMLOGEventTypeRansomwareRestoreProcessStarted, - - /// (apps) Failed to connect app for member - DBTEAMLOGEventTypeAppBlockedByPermissions, - - /// (apps) Linked app for team - DBTEAMLOGEventTypeAppLinkTeam, - - /// (apps) Linked app for member - DBTEAMLOGEventTypeAppLinkUser, - - /// (apps) Unlinked app for team - DBTEAMLOGEventTypeAppUnlinkTeam, - - /// (apps) Unlinked app for member - DBTEAMLOGEventTypeAppUnlinkUser, - - /// (apps) Connected integration for member - DBTEAMLOGEventTypeIntegrationConnected, - - /// (apps) Disconnected integration for member - DBTEAMLOGEventTypeIntegrationDisconnected, - - /// (comments) Added file comment - DBTEAMLOGEventTypeFileAddComment, - - /// (comments) Subscribed to or unsubscribed from comment notifications for - /// file - DBTEAMLOGEventTypeFileChangeCommentSubscription, - - /// (comments) Deleted file comment - DBTEAMLOGEventTypeFileDeleteComment, - - /// (comments) Edited file comment - DBTEAMLOGEventTypeFileEditComment, - - /// (comments) Liked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeFileLikeComment, - - /// (comments) Resolved file comment - DBTEAMLOGEventTypeFileResolveComment, - - /// (comments) Unliked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeFileUnlikeComment, - - /// (comments) Unresolved file comment - DBTEAMLOGEventTypeFileUnresolveComment, - - /// (data_governance) Added folders to policy - DBTEAMLOGEventTypeGovernancePolicyAddFolders, - - /// (data_governance) Couldn't add a folder to a policy - DBTEAMLOGEventTypeGovernancePolicyAddFolderFailed, - - /// (data_governance) Content disposed - DBTEAMLOGEventTypeGovernancePolicyContentDisposed, - - /// (data_governance) Activated a new policy - DBTEAMLOGEventTypeGovernancePolicyCreate, - - /// (data_governance) Deleted a policy - DBTEAMLOGEventTypeGovernancePolicyDelete, - - /// (data_governance) Edited policy - DBTEAMLOGEventTypeGovernancePolicyEditDetails, - - /// (data_governance) Changed policy duration - DBTEAMLOGEventTypeGovernancePolicyEditDuration, - - /// (data_governance) Created a policy download - DBTEAMLOGEventTypeGovernancePolicyExportCreated, - - /// (data_governance) Removed a policy download - DBTEAMLOGEventTypeGovernancePolicyExportRemoved, - - /// (data_governance) Removed folders from policy - DBTEAMLOGEventTypeGovernancePolicyRemoveFolders, - - /// (data_governance) Created a summary report for a policy - DBTEAMLOGEventTypeGovernancePolicyReportCreated, - - /// (data_governance) Downloaded content from a policy - DBTEAMLOGEventTypeGovernancePolicyZipPartDownloaded, - - /// (data_governance) Activated a hold - DBTEAMLOGEventTypeLegalHoldsActivateAHold, - - /// (data_governance) Added members to a hold - DBTEAMLOGEventTypeLegalHoldsAddMembers, - - /// (data_governance) Edited details for a hold - DBTEAMLOGEventTypeLegalHoldsChangeHoldDetails, - - /// (data_governance) Renamed a hold - DBTEAMLOGEventTypeLegalHoldsChangeHoldName, - - /// (data_governance) Exported hold - DBTEAMLOGEventTypeLegalHoldsExportAHold, - - /// (data_governance) Canceled export for a hold - DBTEAMLOGEventTypeLegalHoldsExportCancelled, - - /// (data_governance) Downloaded export for a hold - DBTEAMLOGEventTypeLegalHoldsExportDownloaded, - - /// (data_governance) Removed export for a hold - DBTEAMLOGEventTypeLegalHoldsExportRemoved, - - /// (data_governance) Released a hold - DBTEAMLOGEventTypeLegalHoldsReleaseAHold, - - /// (data_governance) Removed members from a hold - DBTEAMLOGEventTypeLegalHoldsRemoveMembers, - - /// (data_governance) Created a summary report for a hold - DBTEAMLOGEventTypeLegalHoldsReportAHold, - - /// (devices) Changed IP address associated with active desktop session - DBTEAMLOGEventTypeDeviceChangeIpDesktop, - - /// (devices) Changed IP address associated with active mobile session - DBTEAMLOGEventTypeDeviceChangeIpMobile, - - /// (devices) Changed IP address associated with active web session - DBTEAMLOGEventTypeDeviceChangeIpWeb, - - /// (devices) Failed to delete all files from unlinked device - DBTEAMLOGEventTypeDeviceDeleteOnUnlinkFail, - - /// (devices) Deleted all files from unlinked device - DBTEAMLOGEventTypeDeviceDeleteOnUnlinkSuccess, - - /// (devices) Failed to link device - DBTEAMLOGEventTypeDeviceLinkFail, - - /// (devices) Linked device - DBTEAMLOGEventTypeDeviceLinkSuccess, - - /// (devices) Disabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeDeviceManagementDisabled, - - /// (devices) Enabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeDeviceManagementEnabled, - - /// (devices) Enabled/disabled backup for computer - DBTEAMLOGEventTypeDeviceSyncBackupStatusChanged, - - /// (devices) Disconnected device - DBTEAMLOGEventTypeDeviceUnlink, - - /// (devices) Exported passwords - DBTEAMLOGEventTypeDropboxPasswordsExported, - - /// (devices) Enrolled new Dropbox Passwords device - DBTEAMLOGEventTypeDropboxPasswordsNewDeviceEnrolled, - - /// (devices) Refreshed auth token used for setting up EMM - DBTEAMLOGEventTypeEmmRefreshAuthToken, - - /// (devices) Checked external drive backup eligibility status - DBTEAMLOGEventTypeExternalDriveBackupEligibilityStatusChecked, - - /// (devices) Modified external drive backup - DBTEAMLOGEventTypeExternalDriveBackupStatusChanged, - - /// (domains) Granted/revoked option to enable account capture on team - /// domains - DBTEAMLOGEventTypeAccountCaptureChangeAvailability, - - /// (domains) Account-captured user migrated account to team - DBTEAMLOGEventTypeAccountCaptureMigrateAccount, - - /// (domains) Sent account capture email to all unmanaged members - DBTEAMLOGEventTypeAccountCaptureNotificationEmailsSent, - - /// (domains) Account-captured user changed account email to personal email - DBTEAMLOGEventTypeAccountCaptureRelinquishAccount, - - /// (domains) Disabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeDisabledDomainInvites, - - /// (domains) Approved user's request to join team - DBTEAMLOGEventTypeDomainInvitesApproveRequestToJoinTeam, - - /// (domains) Declined user's request to join team - DBTEAMLOGEventTypeDomainInvitesDeclineRequestToJoinTeam, - - /// (domains) Sent domain invites to existing domain accounts (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeDomainInvitesEmailExistingUsers, - - /// (domains) Requested to join team - DBTEAMLOGEventTypeDomainInvitesRequestToJoinTeam, - - /// (domains) Disabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeDomainInvitesSetInviteNewUserPrefToNo, - - /// (domains) Enabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeDomainInvitesSetInviteNewUserPrefToYes, - - /// (domains) Failed to verify team domain - DBTEAMLOGEventTypeDomainVerificationAddDomainFail, - - /// (domains) Verified team domain - DBTEAMLOGEventTypeDomainVerificationAddDomainSuccess, - - /// (domains) Removed domain from list of verified team domains - DBTEAMLOGEventTypeDomainVerificationRemoveDomain, - - /// (domains) Enabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeEnabledDomainInvites, - - /// (encryption) Canceled team encryption key deletion - DBTEAMLOGEventTypeTeamEncryptionKeyCancelKeyDeletion, - - /// (encryption) Created team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyCreateKey, - - /// (encryption) Deleted team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyDeleteKey, - - /// (encryption) Disabled team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyDisableKey, - - /// (encryption) Enabled team encryption key - DBTEAMLOGEventTypeTeamEncryptionKeyEnableKey, - - /// (encryption) Rotated team encryption key (deprecated, no longer logged) - DBTEAMLOGEventTypeTeamEncryptionKeyRotateKey, - - /// (encryption) Scheduled encryption key deletion - DBTEAMLOGEventTypeTeamEncryptionKeyScheduleKeyDeletion, - - /// (file_operations) Applied naming convention - DBTEAMLOGEventTypeApplyNamingConvention, - - /// (file_operations) Created folders (deprecated, no longer logged) - DBTEAMLOGEventTypeCreateFolder, - - /// (file_operations) Added files and/or folders - DBTEAMLOGEventTypeFileAdd, - - /// (file_operations) Added files and/or folders from automation - DBTEAMLOGEventTypeFileAddFromAutomation, - - /// (file_operations) Copied files and/or folders - DBTEAMLOGEventTypeFileCopy, - - /// (file_operations) Deleted files and/or folders - DBTEAMLOGEventTypeFileDelete, - - /// (file_operations) Downloaded files and/or folders - DBTEAMLOGEventTypeFileDownload, - - /// (file_operations) Edited files - DBTEAMLOGEventTypeFileEdit, - - /// (file_operations) Created copy reference to file/folder - DBTEAMLOGEventTypeFileGetCopyReference, - - /// (file_operations) Locked/unlocked editing for a file - DBTEAMLOGEventTypeFileLockingLockStatusChanged, - - /// (file_operations) Moved files and/or folders - DBTEAMLOGEventTypeFileMove, - - /// (file_operations) Permanently deleted files and/or folders - DBTEAMLOGEventTypeFilePermanentlyDelete, - - /// (file_operations) Previewed files and/or folders - DBTEAMLOGEventTypeFilePreview, - - /// (file_operations) Renamed files and/or folders - DBTEAMLOGEventTypeFileRename, - - /// (file_operations) Restored deleted files and/or folders - DBTEAMLOGEventTypeFileRestore, - - /// (file_operations) Reverted files to previous version - DBTEAMLOGEventTypeFileRevert, - - /// (file_operations) Rolled back file actions - DBTEAMLOGEventTypeFileRollbackChanges, - - /// (file_operations) Saved file/folder using copy reference - DBTEAMLOGEventTypeFileSaveCopyReference, - - /// (file_operations) Updated folder overview - DBTEAMLOGEventTypeFolderOverviewDescriptionChanged, - - /// (file_operations) Pinned item to folder overview - DBTEAMLOGEventTypeFolderOverviewItemPinned, - - /// (file_operations) Unpinned item from folder overview - DBTEAMLOGEventTypeFolderOverviewItemUnpinned, - - /// (file_operations) Added a label - DBTEAMLOGEventTypeObjectLabelAdded, - - /// (file_operations) Removed a label - DBTEAMLOGEventTypeObjectLabelRemoved, - - /// (file_operations) Updated a label's value - DBTEAMLOGEventTypeObjectLabelUpdatedValue, - - /// (file_operations) Organized a folder with multi-file organize - DBTEAMLOGEventTypeOrganizeFolderWithTidy, - - /// (file_operations) Deleted files in Replay - DBTEAMLOGEventTypeReplayFileDelete, - - /// (file_operations) Rewound a folder - DBTEAMLOGEventTypeRewindFolder, - - /// (file_operations) Reverted naming convention - DBTEAMLOGEventTypeUndoNamingConvention, - - /// (file_operations) Removed multi-file organize - DBTEAMLOGEventTypeUndoOrganizeFolderWithTidy, - - /// (file_operations) Tagged a file - DBTEAMLOGEventTypeUserTagsAdded, - - /// (file_operations) Removed tags - DBTEAMLOGEventTypeUserTagsRemoved, - - /// (file_requests) Received files via Email to Dropbox - DBTEAMLOGEventTypeEmailIngestReceiveFile, - - /// (file_requests) Changed file request - DBTEAMLOGEventTypeFileRequestChange, - - /// (file_requests) Closed file request - DBTEAMLOGEventTypeFileRequestClose, - - /// (file_requests) Created file request - DBTEAMLOGEventTypeFileRequestCreate, - - /// (file_requests) Delete file request - DBTEAMLOGEventTypeFileRequestDelete, - - /// (file_requests) Received files for file request - DBTEAMLOGEventTypeFileRequestReceiveFile, - - /// (groups) Added external ID for group - DBTEAMLOGEventTypeGroupAddExternalId, - - /// (groups) Added team members to group - DBTEAMLOGEventTypeGroupAddMember, - - /// (groups) Changed external ID for group - DBTEAMLOGEventTypeGroupChangeExternalId, - - /// (groups) Changed group management type - DBTEAMLOGEventTypeGroupChangeManagementType, - - /// (groups) Changed manager permissions of group member - DBTEAMLOGEventTypeGroupChangeMemberRole, - - /// (groups) Created group - DBTEAMLOGEventTypeGroupCreate, - - /// (groups) Deleted group - DBTEAMLOGEventTypeGroupDelete, - - /// (groups) Updated group (deprecated, no longer logged) - DBTEAMLOGEventTypeGroupDescriptionUpdated, - - /// (groups) Updated group join policy (deprecated, no longer logged) - DBTEAMLOGEventTypeGroupJoinPolicyUpdated, - - /// (groups) Moved group (deprecated, no longer logged) - DBTEAMLOGEventTypeGroupMoved, - - /// (groups) Removed external ID for group - DBTEAMLOGEventTypeGroupRemoveExternalId, - - /// (groups) Removed team members from group - DBTEAMLOGEventTypeGroupRemoveMember, - - /// (groups) Renamed group - DBTEAMLOGEventTypeGroupRename, - - /// (logins) Unlocked/locked account after failed sign in attempts - DBTEAMLOGEventTypeAccountLockOrUnlocked, - - /// (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeEmmError, - - /// (logins) Started trusted team admin session - DBTEAMLOGEventTypeGuestAdminSignedInViaTrustedTeams, - - /// (logins) Ended trusted team admin session - DBTEAMLOGEventTypeGuestAdminSignedOutViaTrustedTeams, - - /// (logins) Failed to sign in - DBTEAMLOGEventTypeLoginFail, - - /// (logins) Signed in - DBTEAMLOGEventTypeLoginSuccess, - - /// (logins) Signed out - DBTEAMLOGEventTypeLogout, - - /// (logins) Ended reseller support session - DBTEAMLOGEventTypeResellerSupportSessionEnd, - - /// (logins) Started reseller support session - DBTEAMLOGEventTypeResellerSupportSessionStart, - - /// (logins) Ended admin sign-in-as session - DBTEAMLOGEventTypeSignInAsSessionEnd, - - /// (logins) Started admin sign-in-as session - DBTEAMLOGEventTypeSignInAsSessionStart, - - /// (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeSsoError, - - /// (members) Invited members to activate Backup - DBTEAMLOGEventTypeBackupAdminInvitationSent, - - /// (members) Opened Backup invite - DBTEAMLOGEventTypeBackupInvitationOpened, - - /// (members) Created team invite link - DBTEAMLOGEventTypeCreateTeamInviteLink, - - /// (members) Deleted team invite link - DBTEAMLOGEventTypeDeleteTeamInviteLink, - - /// (members) Added an external ID for team member - DBTEAMLOGEventTypeMemberAddExternalId, - - /// (members) Added team member name - DBTEAMLOGEventTypeMemberAddName, - - /// (members) Changed team member admin role - DBTEAMLOGEventTypeMemberChangeAdminRole, - - /// (members) Changed team member email - DBTEAMLOGEventTypeMemberChangeEmail, - - /// (members) Changed the external ID for team member - DBTEAMLOGEventTypeMemberChangeExternalId, - - /// (members) Changed membership type (limited/full) of member (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeMemberChangeMembershipType, - - /// (members) Changed team member name - DBTEAMLOGEventTypeMemberChangeName, - - /// (members) Changed team member reseller role - DBTEAMLOGEventTypeMemberChangeResellerRole, - - /// (members) Changed member status (invited, joined, suspended, etc.) - DBTEAMLOGEventTypeMemberChangeStatus, - - /// (members) Cleared manually added contacts - DBTEAMLOGEventTypeMemberDeleteManualContacts, - - /// (members) Deleted team member profile photo - DBTEAMLOGEventTypeMemberDeleteProfilePhoto, - - /// (members) Permanently deleted contents of deleted team member account - DBTEAMLOGEventTypeMemberPermanentlyDeleteAccountContents, - - /// (members) Removed the external ID for team member - DBTEAMLOGEventTypeMemberRemoveExternalId, - - /// (members) Set team member profile photo - DBTEAMLOGEventTypeMemberSetProfilePhoto, - - /// (members) Set custom member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsAddCustomQuota, - - /// (members) Changed custom member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsChangeCustomQuota, - - /// (members) Changed space limit status - DBTEAMLOGEventTypeMemberSpaceLimitsChangeStatus, - - /// (members) Removed custom member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsRemoveCustomQuota, - - /// (members) Suggested person to add to team - DBTEAMLOGEventTypeMemberSuggest, - - /// (members) Transferred contents of deleted member account to another - /// member - DBTEAMLOGEventTypeMemberTransferAccountContents, - - /// (members) Added pending secondary email - DBTEAMLOGEventTypePendingSecondaryEmailAdded, - - /// (members) Deleted secondary email - DBTEAMLOGEventTypeSecondaryEmailDeleted, - - /// (members) Verified secondary email - DBTEAMLOGEventTypeSecondaryEmailVerified, - - /// (members) Secondary mails policy changed - DBTEAMLOGEventTypeSecondaryMailsPolicyChanged, - - /// (paper) Added Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderAddPage, - - /// (paper) Added Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderAddSection, - - /// (paper) Removed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRemovePage, - - /// (paper) Removed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRemoveSection, - - /// (paper) Renamed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRenamePage, - - /// (paper) Renamed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderRenameSection, - - /// (paper) Reordered Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeBinderReorderPage, - - /// (paper) Reordered Binder section (deprecated, replaced by 'Edited - /// files') - DBTEAMLOGEventTypeBinderReorderSection, - - /// (paper) Added users and/or groups to Paper doc/folder - DBTEAMLOGEventTypePaperContentAddMember, - - /// (paper) Added Paper doc/folder to folder - DBTEAMLOGEventTypePaperContentAddToFolder, - - /// (paper) Archived Paper doc/folder - DBTEAMLOGEventTypePaperContentArchive, - - /// (paper) Created Paper doc/folder - DBTEAMLOGEventTypePaperContentCreate, - - /// (paper) Permanently deleted Paper doc/folder - DBTEAMLOGEventTypePaperContentPermanentlyDelete, - - /// (paper) Removed Paper doc/folder from folder - DBTEAMLOGEventTypePaperContentRemoveFromFolder, - - /// (paper) Removed users and/or groups from Paper doc/folder - DBTEAMLOGEventTypePaperContentRemoveMember, - - /// (paper) Renamed Paper doc/folder - DBTEAMLOGEventTypePaperContentRename, - - /// (paper) Restored archived Paper doc/folder - DBTEAMLOGEventTypePaperContentRestore, - - /// (paper) Added Paper doc comment - DBTEAMLOGEventTypePaperDocAddComment, - - /// (paper) Changed member permissions for Paper doc - DBTEAMLOGEventTypePaperDocChangeMemberRole, - - /// (paper) Changed sharing setting for Paper doc - DBTEAMLOGEventTypePaperDocChangeSharingPolicy, - - /// (paper) Followed/unfollowed Paper doc - DBTEAMLOGEventTypePaperDocChangeSubscription, - - /// (paper) Archived Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypePaperDocDeleted, - - /// (paper) Deleted Paper doc comment - DBTEAMLOGEventTypePaperDocDeleteComment, - - /// (paper) Downloaded Paper doc in specific format - DBTEAMLOGEventTypePaperDocDownload, - - /// (paper) Edited Paper doc - DBTEAMLOGEventTypePaperDocEdit, - - /// (paper) Edited Paper doc comment - DBTEAMLOGEventTypePaperDocEditComment, - - /// (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed - /// Paper doc') - DBTEAMLOGEventTypePaperDocFollowed, - - /// (paper) Mentioned user in Paper doc - DBTEAMLOGEventTypePaperDocMention, - - /// (paper) Transferred ownership of Paper doc - DBTEAMLOGEventTypePaperDocOwnershipChanged, - - /// (paper) Requested access to Paper doc - DBTEAMLOGEventTypePaperDocRequestAccess, - - /// (paper) Resolved Paper doc comment - DBTEAMLOGEventTypePaperDocResolveComment, - - /// (paper) Restored Paper doc to previous version - DBTEAMLOGEventTypePaperDocRevert, - - /// (paper) Shared Paper doc via Slack - DBTEAMLOGEventTypePaperDocSlackShare, - - /// (paper) Shared Paper doc with users and/or groups (deprecated, no longer - /// logged) - DBTEAMLOGEventTypePaperDocTeamInvite, - - /// (paper) Deleted Paper doc - DBTEAMLOGEventTypePaperDocTrashed, - - /// (paper) Unresolved Paper doc comment - DBTEAMLOGEventTypePaperDocUnresolveComment, - - /// (paper) Restored Paper doc - DBTEAMLOGEventTypePaperDocUntrashed, - - /// (paper) Viewed Paper doc - DBTEAMLOGEventTypePaperDocView, - - /// (paper) Changed Paper external sharing setting to anyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypePaperExternalViewAllow, - - /// (paper) Changed Paper external sharing setting to default team - /// (deprecated, no longer logged) - DBTEAMLOGEventTypePaperExternalViewDefaultTeam, - - /// (paper) Changed Paper external sharing setting to team-only (deprecated, - /// no longer logged) - DBTEAMLOGEventTypePaperExternalViewForbid, - - /// (paper) Followed/unfollowed Paper folder - DBTEAMLOGEventTypePaperFolderChangeSubscription, - - /// (paper) Archived Paper folder (deprecated, no longer logged) - DBTEAMLOGEventTypePaperFolderDeleted, - - /// (paper) Followed Paper folder (deprecated, replaced by - /// 'Followed/unfollowed Paper folder') - DBTEAMLOGEventTypePaperFolderFollowed, - - /// (paper) Shared Paper folder with users and/or groups (deprecated, no - /// longer logged) - DBTEAMLOGEventTypePaperFolderTeamInvite, - - /// (paper) Changed permissions for published doc - DBTEAMLOGEventTypePaperPublishedLinkChangePermission, - - /// (paper) Published doc - DBTEAMLOGEventTypePaperPublishedLinkCreate, - - /// (paper) Unpublished doc - DBTEAMLOGEventTypePaperPublishedLinkDisabled, - - /// (paper) Viewed published doc - DBTEAMLOGEventTypePaperPublishedLinkView, - - /// (passwords) Changed password - DBTEAMLOGEventTypePasswordChange, - - /// (passwords) Reset password - DBTEAMLOGEventTypePasswordReset, - - /// (passwords) Reset all team member passwords - DBTEAMLOGEventTypePasswordResetAll, - - /// (reports) Created Classification report - DBTEAMLOGEventTypeClassificationCreateReport, - - /// (reports) Couldn't create Classification report - DBTEAMLOGEventTypeClassificationCreateReportFail, - - /// (reports) Created EMM-excluded users report - DBTEAMLOGEventTypeEmmCreateExceptionsReport, - - /// (reports) Created EMM mobile app usage report - DBTEAMLOGEventTypeEmmCreateUsageReport, - - /// (reports) Created member data report - DBTEAMLOGEventTypeExportMembersReport, - - /// (reports) Failed to create members data report - DBTEAMLOGEventTypeExportMembersReportFail, - - /// (reports) Created External sharing report - DBTEAMLOGEventTypeExternalSharingCreateReport, - - /// (reports) Couldn't create External sharing report - DBTEAMLOGEventTypeExternalSharingReportFailed, - - /// (reports) Report created: Links created with no expiration - DBTEAMLOGEventTypeNoExpirationLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created with no expiration - DBTEAMLOGEventTypeNoExpirationLinkGenReportFailed, - - /// (reports) Report created: Links created without passwords - DBTEAMLOGEventTypeNoPasswordLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created without passwords - DBTEAMLOGEventTypeNoPasswordLinkGenReportFailed, - - /// (reports) Report created: Views of links without passwords - DBTEAMLOGEventTypeNoPasswordLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of links without passwords - DBTEAMLOGEventTypeNoPasswordLinkViewReportFailed, - - /// (reports) Report created: Views of old links - DBTEAMLOGEventTypeOutdatedLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of old links - DBTEAMLOGEventTypeOutdatedLinkViewReportFailed, - - /// (reports) Exported all team Paper docs - DBTEAMLOGEventTypePaperAdminExportStart, - - /// (reports) Created ransomware report - DBTEAMLOGEventTypeRansomwareAlertCreateReport, - - /// (reports) Couldn't generate ransomware report - DBTEAMLOGEventTypeRansomwareAlertCreateReportFailed, - - /// (reports) Created Smart Sync non-admin devices report - DBTEAMLOGEventTypeSmartSyncCreateAdminPrivilegeReport, - - /// (reports) Created team activity report - DBTEAMLOGEventTypeTeamActivityCreateReport, - - /// (reports) Couldn't generate team activity report - DBTEAMLOGEventTypeTeamActivityCreateReportFail, - - /// (sharing) Shared album - DBTEAMLOGEventTypeCollectionShare, - - /// (sharing) Transfer files added - DBTEAMLOGEventTypeFileTransfersFileAdd, - - /// (sharing) Deleted transfer - DBTEAMLOGEventTypeFileTransfersTransferDelete, - - /// (sharing) Transfer downloaded - DBTEAMLOGEventTypeFileTransfersTransferDownload, - - /// (sharing) Sent transfer - DBTEAMLOGEventTypeFileTransfersTransferSend, - - /// (sharing) Viewed transfer - DBTEAMLOGEventTypeFileTransfersTransferView, - - /// (sharing) Changed Paper doc to invite-only (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeNoteAclInviteOnly, - - /// (sharing) Changed Paper doc to link-accessible (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeNoteAclLink, - - /// (sharing) Changed Paper doc to link-accessible for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeNoteAclTeamLink, - - /// (sharing) Shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeNoteShared, - - /// (sharing) Shared received Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeNoteShareReceive, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeOpenNoteShared, - - /// (sharing) Created shared link in Replay - DBTEAMLOGEventTypeReplayFileSharedLinkCreated, - - /// (sharing) Modified shared link in Replay - DBTEAMLOGEventTypeReplayFileSharedLinkModified, - - /// (sharing) Added member to Replay Project - DBTEAMLOGEventTypeReplayProjectTeamAdd, - - /// (sharing) Removed member from Replay Project - DBTEAMLOGEventTypeReplayProjectTeamDelete, - - /// (sharing) Added team to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfAddGroup, - - /// (sharing) Allowed non-collaborators to view links to files in shared - /// folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfAllowNonMembersToViewSharedLinks, - - /// (sharing) Set team members to see warning before sharing folders outside - /// team (deprecated, no longer logged) - DBTEAMLOGEventTypeSfExternalInviteWarn, - - /// (sharing) Invited Facebook users to shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeSfFbInvite, - - /// (sharing) Changed Facebook user's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfFbInviteChangeRole, - - /// (sharing) Uninvited Facebook user from shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfFbUninvite, - - /// (sharing) Invited group to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfInviteGroup, - - /// (sharing) Granted access to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeSfTeamGrantAccess, - - /// (sharing) Invited team members to shared folder (deprecated, replaced by - /// 'Invited user to Dropbox and added them to shared file/folder') - DBTEAMLOGEventTypeSfTeamInvite, - - /// (sharing) Changed team member's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfTeamInviteChangeRole, - - /// (sharing) Joined team member's shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeSfTeamJoin, - - /// (sharing) Joined team member's shared folder from link (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSfTeamJoinFromOobLink, - - /// (sharing) Unshared folder with team member (deprecated, replaced by - /// 'Removed invitee from shared file/folder before invite was accepted') - DBTEAMLOGEventTypeSfTeamUninvite, - - /// (sharing) Invited user to Dropbox and added them to shared file/folder - DBTEAMLOGEventTypeSharedContentAddInvitees, - - /// (sharing) Added expiration date to link for shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedContentAddLinkExpiry, - - /// (sharing) Added password to link for shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentAddLinkPassword, - - /// (sharing) Added users and/or groups to shared file/folder - DBTEAMLOGEventTypeSharedContentAddMember, - - /// (sharing) Changed whether members can download shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedContentChangeDownloadsPolicy, - - /// (sharing) Changed access type of invitee to shared file/folder before - /// invite was accepted - DBTEAMLOGEventTypeSharedContentChangeInviteeRole, - - /// (sharing) Changed link audience of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentChangeLinkAudience, - - /// (sharing) Changed link expiration of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentChangeLinkExpiry, - - /// (sharing) Changed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentChangeLinkPassword, - - /// (sharing) Changed access type of shared file/folder member - DBTEAMLOGEventTypeSharedContentChangeMemberRole, - - /// (sharing) Changed whether members can see who viewed shared file/folder - DBTEAMLOGEventTypeSharedContentChangeViewerInfoPolicy, - - /// (sharing) Acquired membership of shared file/folder by accepting invite - DBTEAMLOGEventTypeSharedContentClaimInvitation, - - /// (sharing) Copied shared file/folder to own Dropbox - DBTEAMLOGEventTypeSharedContentCopy, - - /// (sharing) Downloaded shared file/folder - DBTEAMLOGEventTypeSharedContentDownload, - - /// (sharing) Left shared file/folder - DBTEAMLOGEventTypeSharedContentRelinquishMembership, - - /// (sharing) Removed invitee from shared file/folder before invite was - /// accepted - DBTEAMLOGEventTypeSharedContentRemoveInvitees, - - /// (sharing) Removed link expiration date of shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedContentRemoveLinkExpiry, - - /// (sharing) Removed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeSharedContentRemoveLinkPassword, - - /// (sharing) Removed user/group from shared file/folder - DBTEAMLOGEventTypeSharedContentRemoveMember, - - /// (sharing) Requested access to shared file/folder - DBTEAMLOGEventTypeSharedContentRequestAccess, - - /// (sharing) Restored shared file/folder invitees - DBTEAMLOGEventTypeSharedContentRestoreInvitees, - - /// (sharing) Restored users and/or groups to membership of shared - /// file/folder - DBTEAMLOGEventTypeSharedContentRestoreMember, - - /// (sharing) Unshared file/folder by clearing membership - DBTEAMLOGEventTypeSharedContentUnshare, - - /// (sharing) Previewed shared file/folder - DBTEAMLOGEventTypeSharedContentView, - - /// (sharing) Changed who can access shared folder via link - DBTEAMLOGEventTypeSharedFolderChangeLinkPolicy, - - /// (sharing) Changed whether shared folder inherits members from parent - /// folder - DBTEAMLOGEventTypeSharedFolderChangeMembersInheritancePolicy, - - /// (sharing) Changed who can add/remove members of shared folder - DBTEAMLOGEventTypeSharedFolderChangeMembersManagementPolicy, - - /// (sharing) Changed who can become member of shared folder - DBTEAMLOGEventTypeSharedFolderChangeMembersPolicy, - - /// (sharing) Created shared folder - DBTEAMLOGEventTypeSharedFolderCreate, - - /// (sharing) Declined team member's invite to shared folder - DBTEAMLOGEventTypeSharedFolderDeclineInvitation, - - /// (sharing) Added shared folder to own Dropbox - DBTEAMLOGEventTypeSharedFolderMount, - - /// (sharing) Changed parent of shared folder - DBTEAMLOGEventTypeSharedFolderNest, - - /// (sharing) Transferred ownership of shared folder to another member - DBTEAMLOGEventTypeSharedFolderTransferOwnership, - - /// (sharing) Deleted shared folder from Dropbox - DBTEAMLOGEventTypeSharedFolderUnmount, - - /// (sharing) Added shared link expiration date - DBTEAMLOGEventTypeSharedLinkAddExpiry, - - /// (sharing) Changed shared link expiration date - DBTEAMLOGEventTypeSharedLinkChangeExpiry, - - /// (sharing) Changed visibility of shared link - DBTEAMLOGEventTypeSharedLinkChangeVisibility, - - /// (sharing) Added file/folder to Dropbox from shared link - DBTEAMLOGEventTypeSharedLinkCopy, - - /// (sharing) Created shared link - DBTEAMLOGEventTypeSharedLinkCreate, - - /// (sharing) Removed shared link - DBTEAMLOGEventTypeSharedLinkDisable, - - /// (sharing) Downloaded file/folder from shared link - DBTEAMLOGEventTypeSharedLinkDownload, - - /// (sharing) Removed shared link expiration date - DBTEAMLOGEventTypeSharedLinkRemoveExpiry, - - /// (sharing) Added an expiration date to the shared link - DBTEAMLOGEventTypeSharedLinkSettingsAddExpiration, - - /// (sharing) Added a password to the shared link - DBTEAMLOGEventTypeSharedLinkSettingsAddPassword, - - /// (sharing) Disabled downloads - DBTEAMLOGEventTypeSharedLinkSettingsAllowDownloadDisabled, - - /// (sharing) Enabled downloads - DBTEAMLOGEventTypeSharedLinkSettingsAllowDownloadEnabled, - - /// (sharing) Changed the audience of the shared link - DBTEAMLOGEventTypeSharedLinkSettingsChangeAudience, - - /// (sharing) Changed the expiration date of the shared link - DBTEAMLOGEventTypeSharedLinkSettingsChangeExpiration, - - /// (sharing) Changed the password of the shared link - DBTEAMLOGEventTypeSharedLinkSettingsChangePassword, - - /// (sharing) Removed the expiration date from the shared link - DBTEAMLOGEventTypeSharedLinkSettingsRemoveExpiration, - - /// (sharing) Removed the password from the shared link - DBTEAMLOGEventTypeSharedLinkSettingsRemovePassword, - - /// (sharing) Added members as audience of shared link - DBTEAMLOGEventTypeSharedLinkShare, - - /// (sharing) Opened shared link - DBTEAMLOGEventTypeSharedLinkView, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeSharedNoteOpened, - - /// (sharing) Disabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeShmodelDisableDownloads, - - /// (sharing) Enabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeShmodelEnableDownloads, - - /// (sharing) Shared link with group (deprecated, no longer logged) - DBTEAMLOGEventTypeShmodelGroupShare, - - /// (showcase) Granted access to showcase - DBTEAMLOGEventTypeShowcaseAccessGranted, - - /// (showcase) Added member to showcase - DBTEAMLOGEventTypeShowcaseAddMember, - - /// (showcase) Archived showcase - DBTEAMLOGEventTypeShowcaseArchived, - - /// (showcase) Created showcase - DBTEAMLOGEventTypeShowcaseCreated, - - /// (showcase) Deleted showcase comment - DBTEAMLOGEventTypeShowcaseDeleteComment, - - /// (showcase) Edited showcase - DBTEAMLOGEventTypeShowcaseEdited, - - /// (showcase) Edited showcase comment - DBTEAMLOGEventTypeShowcaseEditComment, - - /// (showcase) Added file to showcase - DBTEAMLOGEventTypeShowcaseFileAdded, - - /// (showcase) Downloaded file from showcase - DBTEAMLOGEventTypeShowcaseFileDownload, - - /// (showcase) Removed file from showcase - DBTEAMLOGEventTypeShowcaseFileRemoved, - - /// (showcase) Viewed file in showcase - DBTEAMLOGEventTypeShowcaseFileView, - - /// (showcase) Permanently deleted showcase - DBTEAMLOGEventTypeShowcasePermanentlyDeleted, - - /// (showcase) Added showcase comment - DBTEAMLOGEventTypeShowcasePostComment, - - /// (showcase) Removed member from showcase - DBTEAMLOGEventTypeShowcaseRemoveMember, - - /// (showcase) Renamed showcase - DBTEAMLOGEventTypeShowcaseRenamed, - - /// (showcase) Requested access to showcase - DBTEAMLOGEventTypeShowcaseRequestAccess, - - /// (showcase) Resolved showcase comment - DBTEAMLOGEventTypeShowcaseResolveComment, - - /// (showcase) Unarchived showcase - DBTEAMLOGEventTypeShowcaseRestored, - - /// (showcase) Deleted showcase - DBTEAMLOGEventTypeShowcaseTrashed, - - /// (showcase) Deleted showcase (old version) (deprecated, replaced by - /// 'Deleted showcase') - DBTEAMLOGEventTypeShowcaseTrashedDeprecated, - - /// (showcase) Unresolved showcase comment - DBTEAMLOGEventTypeShowcaseUnresolveComment, - - /// (showcase) Restored showcase - DBTEAMLOGEventTypeShowcaseUntrashed, - - /// (showcase) Restored showcase (old version) (deprecated, replaced by - /// 'Restored showcase') - DBTEAMLOGEventTypeShowcaseUntrashedDeprecated, - - /// (showcase) Viewed showcase - DBTEAMLOGEventTypeShowcaseView, - - /// (sso) Added X.509 certificate for SSO - DBTEAMLOGEventTypeSsoAddCert, - - /// (sso) Added sign-in URL for SSO - DBTEAMLOGEventTypeSsoAddLoginUrl, - - /// (sso) Added sign-out URL for SSO - DBTEAMLOGEventTypeSsoAddLogoutUrl, - - /// (sso) Changed X.509 certificate for SSO - DBTEAMLOGEventTypeSsoChangeCert, - - /// (sso) Changed sign-in URL for SSO - DBTEAMLOGEventTypeSsoChangeLoginUrl, - - /// (sso) Changed sign-out URL for SSO - DBTEAMLOGEventTypeSsoChangeLogoutUrl, - - /// (sso) Changed SAML identity mode for SSO - DBTEAMLOGEventTypeSsoChangeSamlIdentityMode, - - /// (sso) Removed X.509 certificate for SSO - DBTEAMLOGEventTypeSsoRemoveCert, - - /// (sso) Removed sign-in URL for SSO - DBTEAMLOGEventTypeSsoRemoveLoginUrl, - - /// (sso) Removed sign-out URL for SSO - DBTEAMLOGEventTypeSsoRemoveLogoutUrl, - - /// (team_folders) Changed archival status of team folder - DBTEAMLOGEventTypeTeamFolderChangeStatus, - - /// (team_folders) Created team folder in active status - DBTEAMLOGEventTypeTeamFolderCreate, - - /// (team_folders) Downgraded team folder to regular shared folder - DBTEAMLOGEventTypeTeamFolderDowngrade, - - /// (team_folders) Permanently deleted archived team folder - DBTEAMLOGEventTypeTeamFolderPermanentlyDelete, - - /// (team_folders) Renamed active/archived team folder - DBTEAMLOGEventTypeTeamFolderRename, - - /// (team_folders) Changed sync default - DBTEAMLOGEventTypeTeamSelectiveSyncSettingsChanged, - - /// (team_policies) Changed account capture setting on team domain - DBTEAMLOGEventTypeAccountCaptureChangePolicy, - - /// (team_policies) Changed admin reminder settings for requests to join the - /// team - DBTEAMLOGEventTypeAdminEmailRemindersChanged, - - /// (team_policies) Disabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeAllowDownloadDisabled, - - /// (team_policies) Enabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeAllowDownloadEnabled, - - /// (team_policies) Changed app permissions - DBTEAMLOGEventTypeAppPermissionsChanged, - - /// (team_policies) Changed camera uploads setting for team - DBTEAMLOGEventTypeCameraUploadsPolicyChanged, - - /// (team_policies) Changed Capture transcription policy for team - DBTEAMLOGEventTypeCaptureTranscriptPolicyChanged, - - /// (team_policies) Changed classification policy for team - DBTEAMLOGEventTypeClassificationChangePolicy, - - /// (team_policies) Changed computer backup policy for team - DBTEAMLOGEventTypeComputerBackupPolicyChanged, - - /// (team_policies) Changed content management setting - DBTEAMLOGEventTypeContentAdministrationPolicyChanged, - - /// (team_policies) Set restrictions on data center locations where team - /// data resides - DBTEAMLOGEventTypeDataPlacementRestrictionChangePolicy, - - /// (team_policies) Completed restrictions on data center locations where - /// team data resides - DBTEAMLOGEventTypeDataPlacementRestrictionSatisfyPolicy, - - /// (team_policies) Added members to device approvals exception list - DBTEAMLOGEventTypeDeviceApprovalsAddException, - - /// (team_policies) Set/removed limit on number of computers member can link - /// to team Dropbox account - DBTEAMLOGEventTypeDeviceApprovalsChangeDesktopPolicy, - - /// (team_policies) Set/removed limit on number of mobile devices member can - /// link to team Dropbox account - DBTEAMLOGEventTypeDeviceApprovalsChangeMobilePolicy, - - /// (team_policies) Changed device approvals setting when member is over - /// limit - DBTEAMLOGEventTypeDeviceApprovalsChangeOverageAction, - - /// (team_policies) Changed device approvals setting when member unlinks - /// approved device - DBTEAMLOGEventTypeDeviceApprovalsChangeUnlinkAction, - - /// (team_policies) Removed members from device approvals exception list - DBTEAMLOGEventTypeDeviceApprovalsRemoveException, - - /// (team_policies) Added members to directory restrictions list - DBTEAMLOGEventTypeDirectoryRestrictionsAddMembers, - - /// (team_policies) Removed members from directory restrictions list - DBTEAMLOGEventTypeDirectoryRestrictionsRemoveMembers, - - /// (team_policies) Changed Dropbox Passwords policy for team - DBTEAMLOGEventTypeDropboxPasswordsPolicyChanged, - - /// (team_policies) Changed email to Dropbox policy for team - DBTEAMLOGEventTypeEmailIngestPolicyChanged, - - /// (team_policies) Added members to EMM exception list - DBTEAMLOGEventTypeEmmAddException, - - /// (team_policies) Enabled/disabled enterprise mobility management for - /// members - DBTEAMLOGEventTypeEmmChangePolicy, - - /// (team_policies) Removed members from EMM exception list - DBTEAMLOGEventTypeEmmRemoveException, - - /// (team_policies) Accepted/opted out of extended version history - DBTEAMLOGEventTypeExtendedVersionHistoryChangePolicy, - - /// (team_policies) Changed external drive backup policy for team - DBTEAMLOGEventTypeExternalDriveBackupPolicyChanged, - - /// (team_policies) Enabled/disabled commenting on team files - DBTEAMLOGEventTypeFileCommentsChangePolicy, - - /// (team_policies) Changed file locking policy for team - DBTEAMLOGEventTypeFileLockingPolicyChanged, - - /// (team_policies) Changed File Provider Migration policy for team - DBTEAMLOGEventTypeFileProviderMigrationPolicyChanged, - - /// (team_policies) Enabled/disabled file requests - DBTEAMLOGEventTypeFileRequestsChangePolicy, - - /// (team_policies) Enabled file request emails for everyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeFileRequestsEmailsEnabled, - - /// (team_policies) Enabled file request emails for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeFileRequestsEmailsRestrictedToTeamOnly, - - /// (team_policies) Changed file transfers policy for team - DBTEAMLOGEventTypeFileTransfersPolicyChanged, - - /// (team_policies) Changed folder link restrictions policy for team - DBTEAMLOGEventTypeFolderLinkRestrictionPolicyChanged, - - /// (team_policies) Enabled/disabled Google single sign-on for team - DBTEAMLOGEventTypeGoogleSsoChangePolicy, - - /// (team_policies) Changed who can create groups - DBTEAMLOGEventTypeGroupUserManagementChangePolicy, - - /// (team_policies) Changed integration policy for team - DBTEAMLOGEventTypeIntegrationPolicyChanged, - - /// (team_policies) Changed invite accept email policy for team - DBTEAMLOGEventTypeInviteAcceptanceEmailPolicyChanged, - - /// (team_policies) Changed whether users can find team when not invited - DBTEAMLOGEventTypeMemberRequestsChangePolicy, - - /// (team_policies) Changed member send invite policy for team - DBTEAMLOGEventTypeMemberSendInvitePolicyChanged, - - /// (team_policies) Added members to member space limit exception list - DBTEAMLOGEventTypeMemberSpaceLimitsAddException, - - /// (team_policies) Changed member space limit type for team - DBTEAMLOGEventTypeMemberSpaceLimitsChangeCapsTypePolicy, - - /// (team_policies) Changed team default member space limit - DBTEAMLOGEventTypeMemberSpaceLimitsChangePolicy, - - /// (team_policies) Removed members from member space limit exception list - DBTEAMLOGEventTypeMemberSpaceLimitsRemoveException, - - /// (team_policies) Enabled/disabled option for team members to suggest - /// people to add to team - DBTEAMLOGEventTypeMemberSuggestionsChangePolicy, - - /// (team_policies) Enabled/disabled Microsoft Office add-in - DBTEAMLOGEventTypeMicrosoftOfficeAddinChangePolicy, - - /// (team_policies) Enabled/disabled network control - DBTEAMLOGEventTypeNetworkControlChangePolicy, - - /// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed - /// to all members or to specific members - DBTEAMLOGEventTypePaperChangeDeploymentPolicy, - - /// (team_policies) Changed whether non-members can view Paper docs with - /// link (deprecated, no longer logged) - DBTEAMLOGEventTypePaperChangeMemberLinkPolicy, - - /// (team_policies) Changed whether members can share Paper docs outside - /// team, and if docs are accessible only by team members or anyone by - /// default - DBTEAMLOGEventTypePaperChangeMemberPolicy, - - /// (team_policies) Enabled/disabled Dropbox Paper for team - DBTEAMLOGEventTypePaperChangePolicy, - - /// (team_policies) Changed Paper Default Folder Policy setting for team - DBTEAMLOGEventTypePaperDefaultFolderPolicyChanged, - - /// (team_policies) Enabled/disabled Paper Desktop for team - DBTEAMLOGEventTypePaperDesktopPolicyChanged, - - /// (team_policies) Added users to Paper-enabled users list - DBTEAMLOGEventTypePaperEnabledUsersGroupAddition, - - /// (team_policies) Removed users from Paper-enabled users list - DBTEAMLOGEventTypePaperEnabledUsersGroupRemoval, - - /// (team_policies) Changed team password strength requirements - DBTEAMLOGEventTypePasswordStrengthRequirementsChangePolicy, - - /// (team_policies) Enabled/disabled ability of team members to permanently - /// delete content - DBTEAMLOGEventTypePermanentDeleteChangePolicy, - - /// (team_policies) Enabled/disabled reseller support - DBTEAMLOGEventTypeResellerSupportChangePolicy, - - /// (team_policies) Changed Rewind policy for team - DBTEAMLOGEventTypeRewindPolicyChanged, - - /// (team_policies) Changed send for signature policy for team - DBTEAMLOGEventTypeSendForSignaturePolicyChanged, - - /// (team_policies) Changed whether team members can join shared folders - /// owned outside team - DBTEAMLOGEventTypeSharingChangeFolderJoinPolicy, - - /// (team_policies) Changed the allow remove or change expiration policy for - /// the links shared outside of the team - DBTEAMLOGEventTypeSharingChangeLinkAllowChangeExpirationPolicy, - - /// (team_policies) Changed the default expiration for the links shared - /// outside of the team - DBTEAMLOGEventTypeSharingChangeLinkDefaultExpirationPolicy, - - /// (team_policies) Changed the password requirement for the links shared - /// outside of the team - DBTEAMLOGEventTypeSharingChangeLinkEnforcePasswordPolicy, - - /// (team_policies) Changed whether members can share links outside team, - /// and if links are accessible only by team members or anyone by default - DBTEAMLOGEventTypeSharingChangeLinkPolicy, - - /// (team_policies) Changed whether members can share files/folders outside - /// team - DBTEAMLOGEventTypeSharingChangeMemberPolicy, - - /// (team_policies) Enabled/disabled downloading files from Dropbox Showcase - /// for team - DBTEAMLOGEventTypeShowcaseChangeDownloadPolicy, - - /// (team_policies) Enabled/disabled Dropbox Showcase for team - DBTEAMLOGEventTypeShowcaseChangeEnabledPolicy, - - /// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for - /// team - DBTEAMLOGEventTypeShowcaseChangeExternalSharingPolicy, - - /// (team_policies) Changed automatic Smart Sync setting for team - DBTEAMLOGEventTypeSmarterSmartSyncPolicyChanged, - - /// (team_policies) Changed default Smart Sync setting for team members - DBTEAMLOGEventTypeSmartSyncChangePolicy, - - /// (team_policies) Opted team into Smart Sync - DBTEAMLOGEventTypeSmartSyncNotOptOut, - - /// (team_policies) Opted team out of Smart Sync - DBTEAMLOGEventTypeSmartSyncOptOut, - - /// (team_policies) Changed single sign-on setting for team - DBTEAMLOGEventTypeSsoChangePolicy, - - /// (team_policies) Changed team branding policy for team - DBTEAMLOGEventTypeTeamBrandingPolicyChanged, - - /// (team_policies) Changed App Integrations setting for team - DBTEAMLOGEventTypeTeamExtensionsPolicyChanged, - - /// (team_policies) Enabled/disabled Team Selective Sync for team - DBTEAMLOGEventTypeTeamSelectiveSyncPolicyChanged, - - /// (team_policies) Edited the approved list for sharing externally - DBTEAMLOGEventTypeTeamSharingWhitelistSubjectsChanged, - - /// (team_policies) Added members to two factor authentication exception - /// list - DBTEAMLOGEventTypeTfaAddException, - - /// (team_policies) Changed two-step verification setting for team - DBTEAMLOGEventTypeTfaChangePolicy, - - /// (team_policies) Removed members from two factor authentication exception - /// list - DBTEAMLOGEventTypeTfaRemoveException, - - /// (team_policies) Enabled/disabled option for members to link personal - /// Dropbox account and team account to same computer - DBTEAMLOGEventTypeTwoAccountChangePolicy, - - /// (team_policies) Changed team policy for viewer info - DBTEAMLOGEventTypeViewerInfoPolicyChanged, - - /// (team_policies) Changed watermarking policy for team - DBTEAMLOGEventTypeWatermarkingPolicyChanged, - - /// (team_policies) Changed limit on active sessions per member - DBTEAMLOGEventTypeWebSessionsChangeActiveSessionLimit, - - /// (team_policies) Changed how long members can stay signed in to - /// Dropbox.com - DBTEAMLOGEventTypeWebSessionsChangeFixedLengthPolicy, - - /// (team_policies) Changed how long team members can be idle while signed - /// in to Dropbox.com - DBTEAMLOGEventTypeWebSessionsChangeIdleLengthPolicy, - - /// (team_profile) Requested data residency migration for team data - DBTEAMLOGEventTypeDataResidencyMigrationRequestSuccessful, - - /// (team_profile) Request for data residency migration for team data has - /// failed - DBTEAMLOGEventTypeDataResidencyMigrationRequestUnsuccessful, - - /// (team_profile) Merged another team into this team - DBTEAMLOGEventTypeTeamMergeFrom, - - /// (team_profile) Merged this team into another team - DBTEAMLOGEventTypeTeamMergeTo, - - /// (team_profile) Added team background to display on shared link headers - DBTEAMLOGEventTypeTeamProfileAddBackground, - - /// (team_profile) Added team logo to display on shared link headers - DBTEAMLOGEventTypeTeamProfileAddLogo, - - /// (team_profile) Changed team background displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileChangeBackground, - - /// (team_profile) Changed default language for team - DBTEAMLOGEventTypeTeamProfileChangeDefaultLanguage, - - /// (team_profile) Changed team logo displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileChangeLogo, - - /// (team_profile) Changed team name - DBTEAMLOGEventTypeTeamProfileChangeName, - - /// (team_profile) Removed team background displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileRemoveBackground, - - /// (team_profile) Removed team logo displayed on shared link headers - DBTEAMLOGEventTypeTeamProfileRemoveLogo, - - /// (tfa) Added backup phone for two-step verification - DBTEAMLOGEventTypeTfaAddBackupPhone, - - /// (tfa) Added security key for two-step verification - DBTEAMLOGEventTypeTfaAddSecurityKey, - - /// (tfa) Changed backup phone for two-step verification - DBTEAMLOGEventTypeTfaChangeBackupPhone, - - /// (tfa) Enabled/disabled/changed two-step verification setting - DBTEAMLOGEventTypeTfaChangeStatus, - - /// (tfa) Removed backup phone for two-step verification - DBTEAMLOGEventTypeTfaRemoveBackupPhone, - - /// (tfa) Removed security key for two-step verification - DBTEAMLOGEventTypeTfaRemoveSecurityKey, - - /// (tfa) Reset two-step verification for team member - DBTEAMLOGEventTypeTfaReset, - - /// (trusted_teams) Changed enterprise admin role - DBTEAMLOGEventTypeChangedEnterpriseAdminRole, - - /// (trusted_teams) Changed enterprise-connected team status - DBTEAMLOGEventTypeChangedEnterpriseConnectedTeamStatus, - - /// (trusted_teams) Ended enterprise admin session - DBTEAMLOGEventTypeEndedEnterpriseAdminSession, - - /// (trusted_teams) Ended enterprise admin session (deprecated, replaced by - /// 'Ended enterprise admin session') - DBTEAMLOGEventTypeEndedEnterpriseAdminSessionDeprecated, - - /// (trusted_teams) Changed who can update a setting - DBTEAMLOGEventTypeEnterpriseSettingsLocking, - - /// (trusted_teams) Changed guest team admin status - DBTEAMLOGEventTypeGuestAdminChangeStatus, - - /// (trusted_teams) Started enterprise admin session - DBTEAMLOGEventTypeStartedEnterpriseAdminSession, - - /// (trusted_teams) Accepted a team merge request - DBTEAMLOGEventTypeTeamMergeRequestAccepted, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestAcceptedShownToPrimaryTeam, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestAcceptedShownToSecondaryTeam, - - /// (trusted_teams) Automatically canceled team merge request - DBTEAMLOGEventTypeTeamMergeRequestAutoCanceled, - - /// (trusted_teams) Canceled a team merge request - DBTEAMLOGEventTypeTeamMergeRequestCanceled, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestCanceledShownToPrimaryTeam, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeTeamMergeRequestCanceledShownToSecondaryTeam, - - /// (trusted_teams) Team merge request expired - DBTEAMLOGEventTypeTeamMergeRequestExpired, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeTeamMergeRequestExpiredShownToPrimaryTeam, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeTeamMergeRequestExpiredShownToSecondaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeTeamMergeRequestRejectedShownToPrimaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeTeamMergeRequestRejectedShownToSecondaryTeam, - - /// (trusted_teams) Sent a team merge request reminder - DBTEAMLOGEventTypeTeamMergeRequestReminder, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeTeamMergeRequestReminderShownToPrimaryTeam, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeTeamMergeRequestReminderShownToSecondaryTeam, - - /// (trusted_teams) Canceled the team merge - DBTEAMLOGEventTypeTeamMergeRequestRevoked, - - /// (trusted_teams) Requested to merge their Dropbox team into yours - DBTEAMLOGEventTypeTeamMergeRequestSentShownToPrimaryTeam, - - /// (trusted_teams) Requested to merge your team into another Dropbox team - DBTEAMLOGEventTypeTeamMergeRequestSentShownToSecondaryTeam, - - /// (no description). - DBTEAMLOGEventTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventTypeTag tag; - -/// (admin_alerting) Changed an alert state @note Ensure the -/// `isAdminAlertingAlertStateChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingAlertStateChangedType *adminAlertingAlertStateChanged; - -/// (admin_alerting) Changed an alert setting @note Ensure the -/// `isAdminAlertingChangedAlertConfig` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingChangedAlertConfigType *adminAlertingChangedAlertConfig; - -/// (admin_alerting) Triggered security alert @note Ensure the -/// `isAdminAlertingTriggeredAlert` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminAlertingTriggeredAlertType *adminAlertingTriggeredAlert; - -/// (admin_alerting) Completed ransomware restore process @note Ensure the -/// `isRansomwareRestoreProcessCompleted` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareRestoreProcessCompletedType *ransomwareRestoreProcessCompleted; - -/// (admin_alerting) Started ransomware restore process @note Ensure the -/// `isRansomwareRestoreProcessStarted` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareRestoreProcessStartedType *ransomwareRestoreProcessStarted; - -/// (apps) Failed to connect app for member @note Ensure the -/// `isAppBlockedByPermissions` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppBlockedByPermissionsType *appBlockedByPermissions; - -/// (apps) Linked app for team @note Ensure the `isAppLinkTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkTeamType *appLinkTeam; - -/// (apps) Linked app for member @note Ensure the `isAppLinkUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppLinkUserType *appLinkUser; - -/// (apps) Unlinked app for team @note Ensure the `isAppUnlinkTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkTeamType *appUnlinkTeam; - -/// (apps) Unlinked app for member @note Ensure the `isAppUnlinkUser` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppUnlinkUserType *appUnlinkUser; - -/// (apps) Connected integration for member @note Ensure the -/// `isIntegrationConnected` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationConnectedType *integrationConnected; - -/// (apps) Disconnected integration for member @note Ensure the -/// `isIntegrationDisconnected` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationDisconnectedType *integrationDisconnected; - -/// (comments) Added file comment @note Ensure the `isFileAddComment` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddCommentType *fileAddComment; - -/// (comments) Subscribed to or unsubscribed from comment notifications for file -/// @note Ensure the `isFileChangeCommentSubscription` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileChangeCommentSubscriptionType *fileChangeCommentSubscription; - -/// (comments) Deleted file comment @note Ensure the `isFileDeleteComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteCommentType *fileDeleteComment; - -/// (comments) Edited file comment @note Ensure the `isFileEditComment` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditCommentType *fileEditComment; - -/// (comments) Liked file comment (deprecated, no longer logged) @note Ensure -/// the `isFileLikeComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLikeCommentType *fileLikeComment; - -/// (comments) Resolved file comment @note Ensure the `isFileResolveComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileResolveCommentType *fileResolveComment; - -/// (comments) Unliked file comment (deprecated, no longer logged) @note Ensure -/// the `isFileUnlikeComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnlikeCommentType *fileUnlikeComment; - -/// (comments) Unresolved file comment @note Ensure the `isFileUnresolveComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileUnresolveCommentType *fileUnresolveComment; - -/// (data_governance) Added folders to policy @note Ensure the -/// `isGovernancePolicyAddFolders` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFoldersType *governancePolicyAddFolders; - -/// (data_governance) Couldn't add a folder to a policy @note Ensure the -/// `isGovernancePolicyAddFolderFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyAddFolderFailedType *governancePolicyAddFolderFailed; - -/// (data_governance) Content disposed @note Ensure the -/// `isGovernancePolicyContentDisposed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyContentDisposedType *governancePolicyContentDisposed; - -/// (data_governance) Activated a new policy @note Ensure the -/// `isGovernancePolicyCreate` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyCreateType *governancePolicyCreate; - -/// (data_governance) Deleted a policy @note Ensure the -/// `isGovernancePolicyDelete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyDeleteType *governancePolicyDelete; - -/// (data_governance) Edited policy @note Ensure the -/// `isGovernancePolicyEditDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDetailsType *governancePolicyEditDetails; - -/// (data_governance) Changed policy duration @note Ensure the -/// `isGovernancePolicyEditDuration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyEditDurationType *governancePolicyEditDuration; - -/// (data_governance) Created a policy download @note Ensure the -/// `isGovernancePolicyExportCreated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportCreatedType *governancePolicyExportCreated; - -/// (data_governance) Removed a policy download @note Ensure the -/// `isGovernancePolicyExportRemoved` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyExportRemovedType *governancePolicyExportRemoved; - -/// (data_governance) Removed folders from policy @note Ensure the -/// `isGovernancePolicyRemoveFolders` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyRemoveFoldersType *governancePolicyRemoveFolders; - -/// (data_governance) Created a summary report for a policy @note Ensure the -/// `isGovernancePolicyReportCreated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyReportCreatedType *governancePolicyReportCreated; - -/// (data_governance) Downloaded content from a policy @note Ensure the -/// `isGovernancePolicyZipPartDownloaded` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGovernancePolicyZipPartDownloadedType *governancePolicyZipPartDownloaded; - -/// (data_governance) Activated a hold @note Ensure the -/// `isLegalHoldsActivateAHold` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsActivateAHoldType *legalHoldsActivateAHold; - -/// (data_governance) Added members to a hold @note Ensure the -/// `isLegalHoldsAddMembers` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsAddMembersType *legalHoldsAddMembers; - -/// (data_governance) Edited details for a hold @note Ensure the -/// `isLegalHoldsChangeHoldDetails` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldDetailsType *legalHoldsChangeHoldDetails; - -/// (data_governance) Renamed a hold @note Ensure the -/// `isLegalHoldsChangeHoldName` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsChangeHoldNameType *legalHoldsChangeHoldName; - -/// (data_governance) Exported hold @note Ensure the `isLegalHoldsExportAHold` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportAHoldType *legalHoldsExportAHold; - -/// (data_governance) Canceled export for a hold @note Ensure the -/// `isLegalHoldsExportCancelled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportCancelledType *legalHoldsExportCancelled; - -/// (data_governance) Downloaded export for a hold @note Ensure the -/// `isLegalHoldsExportDownloaded` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportDownloadedType *legalHoldsExportDownloaded; - -/// (data_governance) Removed export for a hold @note Ensure the -/// `isLegalHoldsExportRemoved` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsExportRemovedType *legalHoldsExportRemoved; - -/// (data_governance) Released a hold @note Ensure the -/// `isLegalHoldsReleaseAHold` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReleaseAHoldType *legalHoldsReleaseAHold; - -/// (data_governance) Removed members from a hold @note Ensure the -/// `isLegalHoldsRemoveMembers` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsRemoveMembersType *legalHoldsRemoveMembers; - -/// (data_governance) Created a summary report for a hold @note Ensure the -/// `isLegalHoldsReportAHold` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLegalHoldsReportAHoldType *legalHoldsReportAHold; - -/// (devices) Changed IP address associated with active desktop session @note -/// Ensure the `isDeviceChangeIpDesktop` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpDesktopType *deviceChangeIpDesktop; - -/// (devices) Changed IP address associated with active mobile session @note -/// Ensure the `isDeviceChangeIpMobile` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpMobileType *deviceChangeIpMobile; - -/// (devices) Changed IP address associated with active web session @note Ensure -/// the `isDeviceChangeIpWeb` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceChangeIpWebType *deviceChangeIpWeb; - -/// (devices) Failed to delete all files from unlinked device @note Ensure the -/// `isDeviceDeleteOnUnlinkFail` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkFailType *deviceDeleteOnUnlinkFail; - -/// (devices) Deleted all files from unlinked device @note Ensure the -/// `isDeviceDeleteOnUnlinkSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *deviceDeleteOnUnlinkSuccess; - -/// (devices) Failed to link device @note Ensure the `isDeviceLinkFail` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkFailType *deviceLinkFail; - -/// (devices) Linked device @note Ensure the `isDeviceLinkSuccess` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceLinkSuccessType *deviceLinkSuccess; - -/// (devices) Disabled device management (deprecated, no longer logged) @note -/// Ensure the `isDeviceManagementDisabled` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementDisabledType *deviceManagementDisabled; - -/// (devices) Enabled device management (deprecated, no longer logged) @note -/// Ensure the `isDeviceManagementEnabled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceManagementEnabledType *deviceManagementEnabled; - -/// (devices) Enabled/disabled backup for computer @note Ensure the -/// `isDeviceSyncBackupStatusChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceSyncBackupStatusChangedType *deviceSyncBackupStatusChanged; - -/// (devices) Disconnected device @note Ensure the `isDeviceUnlink` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceUnlinkType *deviceUnlink; - -/// (devices) Exported passwords @note Ensure the `isDropboxPasswordsExported` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsExportedType *dropboxPasswordsExported; - -/// (devices) Enrolled new Dropbox Passwords device @note Ensure the -/// `isDropboxPasswordsNewDeviceEnrolled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *dropboxPasswordsNewDeviceEnrolled; - -/// (devices) Refreshed auth token used for setting up EMM @note Ensure the -/// `isEmmRefreshAuthToken` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRefreshAuthTokenType *emmRefreshAuthToken; - -/// (devices) Checked external drive backup eligibility status @note Ensure the -/// `isExternalDriveBackupEligibilityStatusChecked` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *externalDriveBackupEligibilityStatusChecked; - -/// (devices) Modified external drive backup @note Ensure the -/// `isExternalDriveBackupStatusChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatusChangedType *externalDriveBackupStatusChanged; - -/// (domains) Granted/revoked option to enable account capture on team domains -/// @note Ensure the `isAccountCaptureChangeAvailability` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureChangeAvailabilityType *accountCaptureChangeAvailability; - -/// (domains) Account-captured user migrated account to team @note Ensure the -/// `isAccountCaptureMigrateAccount` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureMigrateAccountType *accountCaptureMigrateAccount; - -/// (domains) Sent account capture email to all unmanaged members @note Ensure -/// the `isAccountCaptureNotificationEmailsSent` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureNotificationEmailsSentType *accountCaptureNotificationEmailsSent; - -/// (domains) Account-captured user changed account email to personal email -/// @note Ensure the `isAccountCaptureRelinquishAccount` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureRelinquishAccountType *accountCaptureRelinquishAccount; - -/// (domains) Disabled domain invites (deprecated, no longer logged) @note -/// Ensure the `isDisabledDomainInvites` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDisabledDomainInvitesType *disabledDomainInvites; - -/// (domains) Approved user's request to join team @note Ensure the -/// `isDomainInvitesApproveRequestToJoinTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *domainInvitesApproveRequestToJoinTeam; - -/// (domains) Declined user's request to join team @note Ensure the -/// `isDomainInvitesDeclineRequestToJoinTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *domainInvitesDeclineRequestToJoinTeam; - -/// (domains) Sent domain invites to existing domain accounts (deprecated, no -/// longer logged) @note Ensure the `isDomainInvitesEmailExistingUsers` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesEmailExistingUsersType *domainInvitesEmailExistingUsers; - -/// (domains) Requested to join team @note Ensure the -/// `isDomainInvitesRequestToJoinTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainInvitesRequestToJoinTeamType *domainInvitesRequestToJoinTeam; - -/// (domains) Disabled "Automatically invite new users" (deprecated, no longer -/// logged) @note Ensure the `isDomainInvitesSetInviteNewUserPrefToNo` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *domainInvitesSetInviteNewUserPrefToNo; - -/// (domains) Enabled "Automatically invite new users" (deprecated, no longer -/// logged) @note Ensure the `isDomainInvitesSetInviteNewUserPrefToYes` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *domainInvitesSetInviteNewUserPrefToYes; - -/// (domains) Failed to verify team domain @note Ensure the -/// `isDomainVerificationAddDomainFail` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationAddDomainFailType *domainVerificationAddDomainFail; - -/// (domains) Verified team domain @note Ensure the -/// `isDomainVerificationAddDomainSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationAddDomainSuccessType *domainVerificationAddDomainSuccess; - -/// (domains) Removed domain from list of verified team domains @note Ensure the -/// `isDomainVerificationRemoveDomain` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDomainVerificationRemoveDomainType *domainVerificationRemoveDomain; - -/// (domains) Enabled domain invites (deprecated, no longer logged) @note Ensure -/// the `isEnabledDomainInvites` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEnabledDomainInvitesType *enabledDomainInvites; - -/// (encryption) Canceled team encryption key deletion @note Ensure the -/// `isTeamEncryptionKeyCancelKeyDeletion` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *teamEncryptionKeyCancelKeyDeletion; - -/// (encryption) Created team encryption key @note Ensure the -/// `isTeamEncryptionKeyCreateKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyCreateKeyType *teamEncryptionKeyCreateKey; - -/// (encryption) Deleted team encryption key @note Ensure the -/// `isTeamEncryptionKeyDeleteKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDeleteKeyType *teamEncryptionKeyDeleteKey; - -/// (encryption) Disabled team encryption key @note Ensure the -/// `isTeamEncryptionKeyDisableKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyDisableKeyType *teamEncryptionKeyDisableKey; - -/// (encryption) Enabled team encryption key @note Ensure the -/// `isTeamEncryptionKeyEnableKey` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyEnableKeyType *teamEncryptionKeyEnableKey; - -/// (encryption) Rotated team encryption key (deprecated, no longer logged) -/// @note Ensure the `isTeamEncryptionKeyRotateKey` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyRotateKeyType *teamEncryptionKeyRotateKey; - -/// (encryption) Scheduled encryption key deletion @note Ensure the -/// `isTeamEncryptionKeyScheduleKeyDeletion` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *teamEncryptionKeyScheduleKeyDeletion; - -/// (file_operations) Applied naming convention @note Ensure the -/// `isApplyNamingConvention` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGApplyNamingConventionType *applyNamingConvention; - -/// (file_operations) Created folders (deprecated, no longer logged) @note -/// Ensure the `isCreateFolder` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCreateFolderType *createFolder; - -/// (file_operations) Added files and/or folders @note Ensure the `isFileAdd` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddType *fileAdd; - -/// (file_operations) Added files and/or folders from automation @note Ensure -/// the `isFileAddFromAutomation` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileAddFromAutomationType *fileAddFromAutomation; - -/// (file_operations) Copied files and/or folders @note Ensure the `isFileCopy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileCopyType *fileCopy; - -/// (file_operations) Deleted files and/or folders @note Ensure the -/// `isFileDelete` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDeleteType *fileDelete; - -/// (file_operations) Downloaded files and/or folders @note Ensure the -/// `isFileDownload` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileDownloadType *fileDownload; - -/// (file_operations) Edited files @note Ensure the `isFileEdit` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileEditType *fileEdit; - -/// (file_operations) Created copy reference to file/folder @note Ensure the -/// `isFileGetCopyReference` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileGetCopyReferenceType *fileGetCopyReference; - -/// (file_operations) Locked/unlocked editing for a file @note Ensure the -/// `isFileLockingLockStatusChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingLockStatusChangedType *fileLockingLockStatusChanged; - -/// (file_operations) Moved files and/or folders @note Ensure the `isFileMove` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileMoveType *fileMove; - -/// (file_operations) Permanently deleted files and/or folders @note Ensure the -/// `isFilePermanentlyDelete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePermanentlyDeleteType *filePermanentlyDelete; - -/// (file_operations) Previewed files and/or folders @note Ensure the -/// `isFilePreview` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFilePreviewType *filePreview; - -/// (file_operations) Renamed files and/or folders @note Ensure the -/// `isFileRename` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRenameType *fileRename; - -/// (file_operations) Restored deleted files and/or folders @note Ensure the -/// `isFileRestore` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRestoreType *fileRestore; - -/// (file_operations) Reverted files to previous version @note Ensure the -/// `isFileRevert` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRevertType *fileRevert; - -/// (file_operations) Rolled back file actions @note Ensure the -/// `isFileRollbackChanges` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRollbackChangesType *fileRollbackChanges; - -/// (file_operations) Saved file/folder using copy reference @note Ensure the -/// `isFileSaveCopyReference` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileSaveCopyReferenceType *fileSaveCopyReference; - -/// (file_operations) Updated folder overview @note Ensure the -/// `isFolderOverviewDescriptionChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewDescriptionChangedType *folderOverviewDescriptionChanged; - -/// (file_operations) Pinned item to folder overview @note Ensure the -/// `isFolderOverviewItemPinned` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemPinnedType *folderOverviewItemPinned; - -/// (file_operations) Unpinned item from folder overview @note Ensure the -/// `isFolderOverviewItemUnpinned` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderOverviewItemUnpinnedType *folderOverviewItemUnpinned; - -/// (file_operations) Added a label @note Ensure the `isObjectLabelAdded` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelAddedType *objectLabelAdded; - -/// (file_operations) Removed a label @note Ensure the `isObjectLabelRemoved` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelRemovedType *objectLabelRemoved; - -/// (file_operations) Updated a label's value @note Ensure the -/// `isObjectLabelUpdatedValue` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGObjectLabelUpdatedValueType *objectLabelUpdatedValue; - -/// (file_operations) Organized a folder with multi-file organize @note Ensure -/// the `isOrganizeFolderWithTidy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizeFolderWithTidyType *organizeFolderWithTidy; - -/// (file_operations) Deleted files in Replay @note Ensure the -/// `isReplayFileDelete` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileDeleteType *replayFileDelete; - -/// (file_operations) Rewound a folder @note Ensure the `isRewindFolder` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindFolderType *rewindFolder; - -/// (file_operations) Reverted naming convention @note Ensure the -/// `isUndoNamingConvention` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUndoNamingConventionType *undoNamingConvention; - -/// (file_operations) Removed multi-file organize @note Ensure the -/// `isUndoOrganizeFolderWithTidy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUndoOrganizeFolderWithTidyType *undoOrganizeFolderWithTidy; - -/// (file_operations) Tagged a file @note Ensure the `isUserTagsAdded` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsAddedType *userTagsAdded; - -/// (file_operations) Removed tags @note Ensure the `isUserTagsRemoved` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserTagsRemovedType *userTagsRemoved; - -/// (file_requests) Received files via Email to Dropbox @note Ensure the -/// `isEmailIngestReceiveFile` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestReceiveFileType *emailIngestReceiveFile; - -/// (file_requests) Changed file request @note Ensure the `isFileRequestChange` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestChangeType *fileRequestChange; - -/// (file_requests) Closed file request @note Ensure the `isFileRequestClose` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCloseType *fileRequestClose; - -/// (file_requests) Created file request @note Ensure the `isFileRequestCreate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestCreateType *fileRequestCreate; - -/// (file_requests) Delete file request @note Ensure the `isFileRequestDelete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestDeleteType *fileRequestDelete; - -/// (file_requests) Received files for file request @note Ensure the -/// `isFileRequestReceiveFile` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestReceiveFileType *fileRequestReceiveFile; - -/// (groups) Added external ID for group @note Ensure the `isGroupAddExternalId` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddExternalIdType *groupAddExternalId; - -/// (groups) Added team members to group @note Ensure the `isGroupAddMember` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGGroupAddMemberType *groupAddMember; - -/// (groups) Changed external ID for group @note Ensure the -/// `isGroupChangeExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeExternalIdType *groupChangeExternalId; - -/// (groups) Changed group management type @note Ensure the -/// `isGroupChangeManagementType` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeManagementTypeType *groupChangeManagementType; - -/// (groups) Changed manager permissions of group member @note Ensure the -/// `isGroupChangeMemberRole` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupChangeMemberRoleType *groupChangeMemberRole; - -/// (groups) Created group @note Ensure the `isGroupCreate` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupCreateType *groupCreate; - -/// (groups) Deleted group @note Ensure the `isGroupDelete` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDeleteType *groupDelete; - -/// (groups) Updated group (deprecated, no longer logged) @note Ensure the -/// `isGroupDescriptionUpdated` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupDescriptionUpdatedType *groupDescriptionUpdated; - -/// (groups) Updated group join policy (deprecated, no longer logged) @note -/// Ensure the `isGroupJoinPolicyUpdated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupJoinPolicyUpdatedType *groupJoinPolicyUpdated; - -/// (groups) Moved group (deprecated, no longer logged) @note Ensure the -/// `isGroupMoved` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupMovedType *groupMoved; - -/// (groups) Removed external ID for group @note Ensure the -/// `isGroupRemoveExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveExternalIdType *groupRemoveExternalId; - -/// (groups) Removed team members from group @note Ensure the -/// `isGroupRemoveMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRemoveMemberType *groupRemoveMember; - -/// (groups) Renamed group @note Ensure the `isGroupRename` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupRenameType *groupRename; - -/// (logins) Unlocked/locked account after failed sign in attempts @note Ensure -/// the `isAccountLockOrUnlocked` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountLockOrUnlockedType *accountLockOrUnlocked; - -/// (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to sign -/// in') @note Ensure the `isEmmError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmErrorType *emmError; - -/// (logins) Started trusted team admin session @note Ensure the -/// `isGuestAdminSignedInViaTrustedTeams` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *guestAdminSignedInViaTrustedTeams; - -/// (logins) Ended trusted team admin session @note Ensure the -/// `isGuestAdminSignedOutViaTrustedTeams` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *guestAdminSignedOutViaTrustedTeams; - -/// (logins) Failed to sign in @note Ensure the `isLoginFail` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginFailType *loginFail; - -/// (logins) Signed in @note Ensure the `isLoginSuccess` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLoginSuccessType *loginSuccess; - -/// (logins) Signed out @note Ensure the `isLogout` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGLogoutType *logout; - -/// (logins) Ended reseller support session @note Ensure the -/// `isResellerSupportSessionEnd` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionEndType *resellerSupportSessionEnd; - -/// (logins) Started reseller support session @note Ensure the -/// `isResellerSupportSessionStart` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportSessionStartType *resellerSupportSessionStart; - -/// (logins) Ended admin sign-in-as session @note Ensure the -/// `isSignInAsSessionEnd` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionEndType *signInAsSessionEnd; - -/// (logins) Started admin sign-in-as session @note Ensure the -/// `isSignInAsSessionStart` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSignInAsSessionStartType *signInAsSessionStart; - -/// (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to sign -/// in') @note Ensure the `isSsoError` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoErrorType *ssoError; - -/// (members) Invited members to activate Backup @note Ensure the -/// `isBackupAdminInvitationSent` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBackupAdminInvitationSentType *backupAdminInvitationSent; - -/// (members) Opened Backup invite @note Ensure the `isBackupInvitationOpened` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGBackupInvitationOpenedType *backupInvitationOpened; - -/// (members) Created team invite link @note Ensure the `isCreateTeamInviteLink` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGCreateTeamInviteLinkType *createTeamInviteLink; - -/// (members) Deleted team invite link @note Ensure the `isDeleteTeamInviteLink` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeleteTeamInviteLinkType *deleteTeamInviteLink; - -/// (members) Added an external ID for team member @note Ensure the -/// `isMemberAddExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddExternalIdType *memberAddExternalId; - -/// (members) Added team member name @note Ensure the `isMemberAddName` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberAddNameType *memberAddName; - -/// (members) Changed team member admin role @note Ensure the -/// `isMemberChangeAdminRole` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeAdminRoleType *memberChangeAdminRole; - -/// (members) Changed team member email @note Ensure the `isMemberChangeEmail` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeEmailType *memberChangeEmail; - -/// (members) Changed the external ID for team member @note Ensure the -/// `isMemberChangeExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeExternalIdType *memberChangeExternalId; - -/// (members) Changed membership type (limited/full) of member (deprecated, no -/// longer logged) @note Ensure the `isMemberChangeMembershipType` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeMembershipTypeType *memberChangeMembershipType; - -/// (members) Changed team member name @note Ensure the `isMemberChangeName` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeNameType *memberChangeName; - -/// (members) Changed team member reseller role @note Ensure the -/// `isMemberChangeResellerRole` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeResellerRoleType *memberChangeResellerRole; - -/// (members) Changed member status (invited, joined, suspended, etc.) @note -/// Ensure the `isMemberChangeStatus` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberChangeStatusType *memberChangeStatus; - -/// (members) Cleared manually added contacts @note Ensure the -/// `isMemberDeleteManualContacts` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteManualContactsType *memberDeleteManualContacts; - -/// (members) Deleted team member profile photo @note Ensure the -/// `isMemberDeleteProfilePhoto` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberDeleteProfilePhotoType *memberDeleteProfilePhoto; - -/// (members) Permanently deleted contents of deleted team member account @note -/// Ensure the `isMemberPermanentlyDeleteAccountContents` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *memberPermanentlyDeleteAccountContents; - -/// (members) Removed the external ID for team member @note Ensure the -/// `isMemberRemoveExternalId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveExternalIdType *memberRemoveExternalId; - -/// (members) Set team member profile photo @note Ensure the -/// `isMemberSetProfilePhoto` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSetProfilePhotoType *memberSetProfilePhoto; - -/// (members) Set custom member space limit @note Ensure the -/// `isMemberSpaceLimitsAddCustomQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *memberSpaceLimitsAddCustomQuota; - -/// (members) Changed custom member space limit @note Ensure the -/// `isMemberSpaceLimitsChangeCustomQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *memberSpaceLimitsChangeCustomQuota; - -/// (members) Changed space limit status @note Ensure the -/// `isMemberSpaceLimitsChangeStatus` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangeStatusType *memberSpaceLimitsChangeStatus; - -/// (members) Removed custom member space limit @note Ensure the -/// `isMemberSpaceLimitsRemoveCustomQuota` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *memberSpaceLimitsRemoveCustomQuota; - -/// (members) Suggested person to add to team @note Ensure the `isMemberSuggest` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestType *memberSuggest; - -/// (members) Transferred contents of deleted member account to another member -/// @note Ensure the `isMemberTransferAccountContents` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberTransferAccountContentsType *memberTransferAccountContents; - -/// (members) Added pending secondary email @note Ensure the -/// `isPendingSecondaryEmailAdded` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPendingSecondaryEmailAddedType *pendingSecondaryEmailAdded; - -/// (members) Deleted secondary email @note Ensure the `isSecondaryEmailDeleted` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailDeletedType *secondaryEmailDeleted; - -/// (members) Verified secondary email @note Ensure the -/// `isSecondaryEmailVerified` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryEmailVerifiedType *secondaryEmailVerified; - -/// (members) Secondary mails policy changed @note Ensure the -/// `isSecondaryMailsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicyChangedType *secondaryMailsPolicyChanged; - -/// (paper) Added Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderAddPage` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddPageType *binderAddPage; - -/// (paper) Added Binder section (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderAddSection` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderAddSectionType *binderAddSection; - -/// (paper) Removed Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderRemovePage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemovePageType *binderRemovePage; - -/// (paper) Removed Binder section (deprecated, replaced by 'Edited files') -/// @note Ensure the `isBinderRemoveSection` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRemoveSectionType *binderRemoveSection; - -/// (paper) Renamed Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderRenamePage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenamePageType *binderRenamePage; - -/// (paper) Renamed Binder section (deprecated, replaced by 'Edited files') -/// @note Ensure the `isBinderRenameSection` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderRenameSectionType *binderRenameSection; - -/// (paper) Reordered Binder page (deprecated, replaced by 'Edited files') @note -/// Ensure the `isBinderReorderPage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderPageType *binderReorderPage; - -/// (paper) Reordered Binder section (deprecated, replaced by 'Edited files') -/// @note Ensure the `isBinderReorderSection` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGBinderReorderSectionType *binderReorderSection; - -/// (paper) Added users and/or groups to Paper doc/folder @note Ensure the -/// `isPaperContentAddMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddMemberType *paperContentAddMember; - -/// (paper) Added Paper doc/folder to folder @note Ensure the -/// `isPaperContentAddToFolder` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentAddToFolderType *paperContentAddToFolder; - -/// (paper) Archived Paper doc/folder @note Ensure the `isPaperContentArchive` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentArchiveType *paperContentArchive; - -/// (paper) Created Paper doc/folder @note Ensure the `isPaperContentCreate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentCreateType *paperContentCreate; - -/// (paper) Permanently deleted Paper doc/folder @note Ensure the -/// `isPaperContentPermanentlyDelete` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentPermanentlyDeleteType *paperContentPermanentlyDelete; - -/// (paper) Removed Paper doc/folder from folder @note Ensure the -/// `isPaperContentRemoveFromFolder` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveFromFolderType *paperContentRemoveFromFolder; - -/// (paper) Removed users and/or groups from Paper doc/folder @note Ensure the -/// `isPaperContentRemoveMember` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRemoveMemberType *paperContentRemoveMember; - -/// (paper) Renamed Paper doc/folder @note Ensure the `isPaperContentRename` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRenameType *paperContentRename; - -/// (paper) Restored archived Paper doc/folder @note Ensure the -/// `isPaperContentRestore` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperContentRestoreType *paperContentRestore; - -/// (paper) Added Paper doc comment @note Ensure the `isPaperDocAddComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocAddCommentType *paperDocAddComment; - -/// (paper) Changed member permissions for Paper doc @note Ensure the -/// `isPaperDocChangeMemberRole` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeMemberRoleType *paperDocChangeMemberRole; - -/// (paper) Changed sharing setting for Paper doc @note Ensure the -/// `isPaperDocChangeSharingPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSharingPolicyType *paperDocChangeSharingPolicy; - -/// (paper) Followed/unfollowed Paper doc @note Ensure the -/// `isPaperDocChangeSubscription` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocChangeSubscriptionType *paperDocChangeSubscription; - -/// (paper) Archived Paper doc (deprecated, no longer logged) @note Ensure the -/// `isPaperDocDeleted` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeletedType *paperDocDeleted; - -/// (paper) Deleted Paper doc comment @note Ensure the `isPaperDocDeleteComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDeleteCommentType *paperDocDeleteComment; - -/// (paper) Downloaded Paper doc in specific format @note Ensure the -/// `isPaperDocDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocDownloadType *paperDocDownload; - -/// (paper) Edited Paper doc @note Ensure the `isPaperDocEdit` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditType *paperDocEdit; - -/// (paper) Edited Paper doc comment @note Ensure the `isPaperDocEditComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocEditCommentType *paperDocEditComment; - -/// (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed -/// Paper doc') @note Ensure the `isPaperDocFollowed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocFollowedType *paperDocFollowed; - -/// (paper) Mentioned user in Paper doc @note Ensure the `isPaperDocMention` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocMentionType *paperDocMention; - -/// (paper) Transferred ownership of Paper doc @note Ensure the -/// `isPaperDocOwnershipChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocOwnershipChangedType *paperDocOwnershipChanged; - -/// (paper) Requested access to Paper doc @note Ensure the -/// `isPaperDocRequestAccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRequestAccessType *paperDocRequestAccess; - -/// (paper) Resolved Paper doc comment @note Ensure the -/// `isPaperDocResolveComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocResolveCommentType *paperDocResolveComment; - -/// (paper) Restored Paper doc to previous version @note Ensure the -/// `isPaperDocRevert` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocRevertType *paperDocRevert; - -/// (paper) Shared Paper doc via Slack @note Ensure the `isPaperDocSlackShare` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocSlackShareType *paperDocSlackShare; - -/// (paper) Shared Paper doc with users and/or groups (deprecated, no longer -/// logged) @note Ensure the `isPaperDocTeamInvite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTeamInviteType *paperDocTeamInvite; - -/// (paper) Deleted Paper doc @note Ensure the `isPaperDocTrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocTrashedType *paperDocTrashed; - -/// (paper) Unresolved Paper doc comment @note Ensure the -/// `isPaperDocUnresolveComment` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUnresolveCommentType *paperDocUnresolveComment; - -/// (paper) Restored Paper doc @note Ensure the `isPaperDocUntrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocUntrashedType *paperDocUntrashed; - -/// (paper) Viewed Paper doc @note Ensure the `isPaperDocView` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDocViewType *paperDocView; - -/// (paper) Changed Paper external sharing setting to anyone (deprecated, no -/// longer logged) @note Ensure the `isPaperExternalViewAllow` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewAllowType *paperExternalViewAllow; - -/// (paper) Changed Paper external sharing setting to default team (deprecated, -/// no longer logged) @note Ensure the `isPaperExternalViewDefaultTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewDefaultTeamType *paperExternalViewDefaultTeam; - -/// (paper) Changed Paper external sharing setting to team-only (deprecated, no -/// longer logged) @note Ensure the `isPaperExternalViewForbid` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperExternalViewForbidType *paperExternalViewForbid; - -/// (paper) Followed/unfollowed Paper folder @note Ensure the -/// `isPaperFolderChangeSubscription` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderChangeSubscriptionType *paperFolderChangeSubscription; - -/// (paper) Archived Paper folder (deprecated, no longer logged) @note Ensure -/// the `isPaperFolderDeleted` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderDeletedType *paperFolderDeleted; - -/// (paper) Followed Paper folder (deprecated, replaced by 'Followed/unfollowed -/// Paper folder') @note Ensure the `isPaperFolderFollowed` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderFollowedType *paperFolderFollowed; - -/// (paper) Shared Paper folder with users and/or groups (deprecated, no longer -/// logged) @note Ensure the `isPaperFolderTeamInvite` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperFolderTeamInviteType *paperFolderTeamInvite; - -/// (paper) Changed permissions for published doc @note Ensure the -/// `isPaperPublishedLinkChangePermission` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkChangePermissionType *paperPublishedLinkChangePermission; - -/// (paper) Published doc @note Ensure the `isPaperPublishedLinkCreate` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkCreateType *paperPublishedLinkCreate; - -/// (paper) Unpublished doc @note Ensure the `isPaperPublishedLinkDisabled` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkDisabledType *paperPublishedLinkDisabled; - -/// (paper) Viewed published doc @note Ensure the `isPaperPublishedLinkView` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGPaperPublishedLinkViewType *paperPublishedLinkView; - -/// (passwords) Changed password @note Ensure the `isPasswordChange` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordChangeType *passwordChange; - -/// (passwords) Reset password @note Ensure the `isPasswordReset` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetType *passwordReset; - -/// (passwords) Reset all team member passwords @note Ensure the -/// `isPasswordResetAll` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPasswordResetAllType *passwordResetAll; - -/// (reports) Created Classification report @note Ensure the -/// `isClassificationCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportType *classificationCreateReport; - -/// (reports) Couldn't create Classification report @note Ensure the -/// `isClassificationCreateReportFail` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationCreateReportFailType *classificationCreateReportFail; - -/// (reports) Created EMM-excluded users report @note Ensure the -/// `isEmmCreateExceptionsReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateExceptionsReportType *emmCreateExceptionsReport; - -/// (reports) Created EMM mobile app usage report @note Ensure the -/// `isEmmCreateUsageReport` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmCreateUsageReportType *emmCreateUsageReport; - -/// (reports) Created member data report @note Ensure the -/// `isExportMembersReport` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportType *exportMembersReport; - -/// (reports) Failed to create members data report @note Ensure the -/// `isExportMembersReportFail` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExportMembersReportFailType *exportMembersReportFail; - -/// (reports) Created External sharing report @note Ensure the -/// `isExternalSharingCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingCreateReportType *externalSharingCreateReport; - -/// (reports) Couldn't create External sharing report @note Ensure the -/// `isExternalSharingReportFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalSharingReportFailedType *externalSharingReportFailed; - -/// (reports) Report created: Links created with no expiration @note Ensure the -/// `isNoExpirationLinkGenCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenCreateReportType *noExpirationLinkGenCreateReport; - -/// (reports) Couldn't create report: Links created with no expiration @note -/// Ensure the `isNoExpirationLinkGenReportFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoExpirationLinkGenReportFailedType *noExpirationLinkGenReportFailed; - -/// (reports) Report created: Links created without passwords @note Ensure the -/// `isNoPasswordLinkGenCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenCreateReportType *noPasswordLinkGenCreateReport; - -/// (reports) Couldn't create report: Links created without passwords @note -/// Ensure the `isNoPasswordLinkGenReportFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkGenReportFailedType *noPasswordLinkGenReportFailed; - -/// (reports) Report created: Views of links without passwords @note Ensure the -/// `isNoPasswordLinkViewCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewCreateReportType *noPasswordLinkViewCreateReport; - -/// (reports) Couldn't create report: Views of links without passwords @note -/// Ensure the `isNoPasswordLinkViewReportFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoPasswordLinkViewReportFailedType *noPasswordLinkViewReportFailed; - -/// (reports) Report created: Views of old links @note Ensure the -/// `isOutdatedLinkViewCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewCreateReportType *outdatedLinkViewCreateReport; - -/// (reports) Couldn't create report: Views of old links @note Ensure the -/// `isOutdatedLinkViewReportFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOutdatedLinkViewReportFailedType *outdatedLinkViewReportFailed; - -/// (reports) Exported all team Paper docs @note Ensure the -/// `isPaperAdminExportStart` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperAdminExportStartType *paperAdminExportStart; - -/// (reports) Created ransomware report @note Ensure the -/// `isRansomwareAlertCreateReport` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareAlertCreateReportType *ransomwareAlertCreateReport; - -/// (reports) Couldn't generate ransomware report @note Ensure the -/// `isRansomwareAlertCreateReportFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRansomwareAlertCreateReportFailedType *ransomwareAlertCreateReportFailed; - -/// (reports) Created Smart Sync non-admin devices report @note Ensure the -/// `isSmartSyncCreateAdminPrivilegeReport` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *smartSyncCreateAdminPrivilegeReport; - -/// (reports) Created team activity report @note Ensure the -/// `isTeamActivityCreateReport` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportType *teamActivityCreateReport; - -/// (reports) Couldn't generate team activity report @note Ensure the -/// `isTeamActivityCreateReportFail` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamActivityCreateReportFailType *teamActivityCreateReportFail; - -/// (sharing) Shared album @note Ensure the `isCollectionShare` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCollectionShareType *collectionShare; - -/// (sharing) Transfer files added @note Ensure the `isFileTransfersFileAdd` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersFileAddType *fileTransfersFileAdd; - -/// (sharing) Deleted transfer @note Ensure the `isFileTransfersTransferDelete` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDeleteType *fileTransfersTransferDelete; - -/// (sharing) Transfer downloaded @note Ensure the -/// `isFileTransfersTransferDownload` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferDownloadType *fileTransfersTransferDownload; - -/// (sharing) Sent transfer @note Ensure the `isFileTransfersTransferSend` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferSendType *fileTransfersTransferSend; - -/// (sharing) Viewed transfer @note Ensure the `isFileTransfersTransferView` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersTransferViewType *fileTransfersTransferView; - -/// (sharing) Changed Paper doc to invite-only (deprecated, no longer logged) -/// @note Ensure the `isNoteAclInviteOnly` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclInviteOnlyType *noteAclInviteOnly; - -/// (sharing) Changed Paper doc to link-accessible (deprecated, no longer -/// logged) @note Ensure the `isNoteAclLink` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclLinkType *noteAclLink; - -/// (sharing) Changed Paper doc to link-accessible for team (deprecated, no -/// longer logged) @note Ensure the `isNoteAclTeamLink` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteAclTeamLinkType *noteAclTeamLink; - -/// (sharing) Shared Paper doc (deprecated, no longer logged) @note Ensure the -/// `isNoteShared` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteSharedType *noteShared; - -/// (sharing) Shared received Paper doc (deprecated, no longer logged) @note -/// Ensure the `isNoteShareReceive` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNoteShareReceiveType *noteShareReceive; - -/// (sharing) Opened shared Paper doc (deprecated, no longer logged) @note -/// Ensure the `isOpenNoteShared` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOpenNoteSharedType *openNoteShared; - -/// (sharing) Created shared link in Replay @note Ensure the -/// `isReplayFileSharedLinkCreated` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkCreatedType *replayFileSharedLinkCreated; - -/// (sharing) Modified shared link in Replay @note Ensure the -/// `isReplayFileSharedLinkModified` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayFileSharedLinkModifiedType *replayFileSharedLinkModified; - -/// (sharing) Added member to Replay Project @note Ensure the -/// `isReplayProjectTeamAdd` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamAddType *replayProjectTeamAdd; - -/// (sharing) Removed member from Replay Project @note Ensure the -/// `isReplayProjectTeamDelete` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGReplayProjectTeamDeleteType *replayProjectTeamDelete; - -/// (sharing) Added team to shared folder (deprecated, no longer logged) @note -/// Ensure the `isSfAddGroup` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfAddGroupType *sfAddGroup; - -/// (sharing) Allowed non-collaborators to view links to files in shared folder -/// (deprecated, no longer logged) @note Ensure the -/// `isSfAllowNonMembersToViewSharedLinks` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *sfAllowNonMembersToViewSharedLinks; - -/// (sharing) Set team members to see warning before sharing folders outside -/// team (deprecated, no longer logged) @note Ensure the -/// `isSfExternalInviteWarn` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfExternalInviteWarnType *sfExternalInviteWarn; - -/// (sharing) Invited Facebook users to shared folder (deprecated, no longer -/// logged) @note Ensure the `isSfFbInvite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteType *sfFbInvite; - -/// (sharing) Changed Facebook user's role in shared folder (deprecated, no -/// longer logged) @note Ensure the `isSfFbInviteChangeRole` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbInviteChangeRoleType *sfFbInviteChangeRole; - -/// (sharing) Uninvited Facebook user from shared folder (deprecated, no longer -/// logged) @note Ensure the `isSfFbUninvite` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfFbUninviteType *sfFbUninvite; - -/// (sharing) Invited group to shared folder (deprecated, no longer logged) -/// @note Ensure the `isSfInviteGroup` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfInviteGroupType *sfInviteGroup; - -/// (sharing) Granted access to shared folder (deprecated, no longer logged) -/// @note Ensure the `isSfTeamGrantAccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamGrantAccessType *sfTeamGrantAccess; - -/// (sharing) Invited team members to shared folder (deprecated, replaced by -/// 'Invited user to Dropbox and added them to shared file/folder') @note Ensure -/// the `isSfTeamInvite` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteType *sfTeamInvite; - -/// (sharing) Changed team member's role in shared folder (deprecated, no longer -/// logged) @note Ensure the `isSfTeamInviteChangeRole` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamInviteChangeRoleType *sfTeamInviteChangeRole; - -/// (sharing) Joined team member's shared folder (deprecated, no longer logged) -/// @note Ensure the `isSfTeamJoin` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinType *sfTeamJoin; - -/// (sharing) Joined team member's shared folder from link (deprecated, no -/// longer logged) @note Ensure the `isSfTeamJoinFromOobLink` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamJoinFromOobLinkType *sfTeamJoinFromOobLink; - -/// (sharing) Unshared folder with team member (deprecated, replaced by 'Removed -/// invitee from shared file/folder before invite was accepted') @note Ensure -/// the `isSfTeamUninvite` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSfTeamUninviteType *sfTeamUninvite; - -/// (sharing) Invited user to Dropbox and added them to shared file/folder @note -/// Ensure the `isSharedContentAddInvitees` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddInviteesType *sharedContentAddInvitees; - -/// (sharing) Added expiration date to link for shared file/folder (deprecated, -/// no longer logged) @note Ensure the `isSharedContentAddLinkExpiry` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkExpiryType *sharedContentAddLinkExpiry; - -/// (sharing) Added password to link for shared file/folder (deprecated, no -/// longer logged) @note Ensure the `isSharedContentAddLinkPassword` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddLinkPasswordType *sharedContentAddLinkPassword; - -/// (sharing) Added users and/or groups to shared file/folder @note Ensure the -/// `isSharedContentAddMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentAddMemberType *sharedContentAddMember; - -/// (sharing) Changed whether members can download shared file/folder -/// (deprecated, no longer logged) @note Ensure the -/// `isSharedContentChangeDownloadsPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeDownloadsPolicyType *sharedContentChangeDownloadsPolicy; - -/// (sharing) Changed access type of invitee to shared file/folder before invite -/// was accepted @note Ensure the `isSharedContentChangeInviteeRole` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeInviteeRoleType *sharedContentChangeInviteeRole; - -/// (sharing) Changed link audience of shared file/folder (deprecated, no longer -/// logged) @note Ensure the `isSharedContentChangeLinkAudience` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkAudienceType *sharedContentChangeLinkAudience; - -/// (sharing) Changed link expiration of shared file/folder (deprecated, no -/// longer logged) @note Ensure the `isSharedContentChangeLinkExpiry` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkExpiryType *sharedContentChangeLinkExpiry; - -/// (sharing) Changed link password of shared file/folder (deprecated, no longer -/// logged) @note Ensure the `isSharedContentChangeLinkPassword` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeLinkPasswordType *sharedContentChangeLinkPassword; - -/// (sharing) Changed access type of shared file/folder member @note Ensure the -/// `isSharedContentChangeMemberRole` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeMemberRoleType *sharedContentChangeMemberRole; - -/// (sharing) Changed whether members can see who viewed shared file/folder -/// @note Ensure the `isSharedContentChangeViewerInfoPolicy` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentChangeViewerInfoPolicyType *sharedContentChangeViewerInfoPolicy; - -/// (sharing) Acquired membership of shared file/folder by accepting invite -/// @note Ensure the `isSharedContentClaimInvitation` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentClaimInvitationType *sharedContentClaimInvitation; - -/// (sharing) Copied shared file/folder to own Dropbox @note Ensure the -/// `isSharedContentCopy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentCopyType *sharedContentCopy; - -/// (sharing) Downloaded shared file/folder @note Ensure the -/// `isSharedContentDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentDownloadType *sharedContentDownload; - -/// (sharing) Left shared file/folder @note Ensure the -/// `isSharedContentRelinquishMembership` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRelinquishMembershipType *sharedContentRelinquishMembership; - -/// (sharing) Removed invitee from shared file/folder before invite was accepted -/// @note Ensure the `isSharedContentRemoveInvitees` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveInviteesType *sharedContentRemoveInvitees; - -/// (sharing) Removed link expiration date of shared file/folder (deprecated, no -/// longer logged) @note Ensure the `isSharedContentRemoveLinkExpiry` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkExpiryType *sharedContentRemoveLinkExpiry; - -/// (sharing) Removed link password of shared file/folder (deprecated, no longer -/// logged) @note Ensure the `isSharedContentRemoveLinkPassword` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveLinkPasswordType *sharedContentRemoveLinkPassword; - -/// (sharing) Removed user/group from shared file/folder @note Ensure the -/// `isSharedContentRemoveMember` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRemoveMemberType *sharedContentRemoveMember; - -/// (sharing) Requested access to shared file/folder @note Ensure the -/// `isSharedContentRequestAccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRequestAccessType *sharedContentRequestAccess; - -/// (sharing) Restored shared file/folder invitees @note Ensure the -/// `isSharedContentRestoreInvitees` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreInviteesType *sharedContentRestoreInvitees; - -/// (sharing) Restored users and/or groups to membership of shared file/folder -/// @note Ensure the `isSharedContentRestoreMember` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentRestoreMemberType *sharedContentRestoreMember; - -/// (sharing) Unshared file/folder by clearing membership @note Ensure the -/// `isSharedContentUnshare` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentUnshareType *sharedContentUnshare; - -/// (sharing) Previewed shared file/folder @note Ensure the -/// `isSharedContentView` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedContentViewType *sharedContentView; - -/// (sharing) Changed who can access shared folder via link @note Ensure the -/// `isSharedFolderChangeLinkPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeLinkPolicyType *sharedFolderChangeLinkPolicy; - -/// (sharing) Changed whether shared folder inherits members from parent folder -/// @note Ensure the `isSharedFolderChangeMembersInheritancePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *sharedFolderChangeMembersInheritancePolicy; - -/// (sharing) Changed who can add/remove members of shared folder @note Ensure -/// the `isSharedFolderChangeMembersManagementPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *sharedFolderChangeMembersManagementPolicy; - -/// (sharing) Changed who can become member of shared folder @note Ensure the -/// `isSharedFolderChangeMembersPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderChangeMembersPolicyType *sharedFolderChangeMembersPolicy; - -/// (sharing) Created shared folder @note Ensure the `isSharedFolderCreate` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderCreateType *sharedFolderCreate; - -/// (sharing) Declined team member's invite to shared folder @note Ensure the -/// `isSharedFolderDeclineInvitation` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderDeclineInvitationType *sharedFolderDeclineInvitation; - -/// (sharing) Added shared folder to own Dropbox @note Ensure the -/// `isSharedFolderMount` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMountType *sharedFolderMount; - -/// (sharing) Changed parent of shared folder @note Ensure the -/// `isSharedFolderNest` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderNestType *sharedFolderNest; - -/// (sharing) Transferred ownership of shared folder to another member @note -/// Ensure the `isSharedFolderTransferOwnership` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderTransferOwnershipType *sharedFolderTransferOwnership; - -/// (sharing) Deleted shared folder from Dropbox @note Ensure the -/// `isSharedFolderUnmount` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderUnmountType *sharedFolderUnmount; - -/// (sharing) Added shared link expiration date @note Ensure the -/// `isSharedLinkAddExpiry` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkAddExpiryType *sharedLinkAddExpiry; - -/// (sharing) Changed shared link expiration date @note Ensure the -/// `isSharedLinkChangeExpiry` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeExpiryType *sharedLinkChangeExpiry; - -/// (sharing) Changed visibility of shared link @note Ensure the -/// `isSharedLinkChangeVisibility` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkChangeVisibilityType *sharedLinkChangeVisibility; - -/// (sharing) Added file/folder to Dropbox from shared link @note Ensure the -/// `isSharedLinkCopy` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCopyType *sharedLinkCopy; - -/// (sharing) Created shared link @note Ensure the `isSharedLinkCreate` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkCreateType *sharedLinkCreate; - -/// (sharing) Removed shared link @note Ensure the `isSharedLinkDisable` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDisableType *sharedLinkDisable; - -/// (sharing) Downloaded file/folder from shared link @note Ensure the -/// `isSharedLinkDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkDownloadType *sharedLinkDownload; - -/// (sharing) Removed shared link expiration date @note Ensure the -/// `isSharedLinkRemoveExpiry` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkRemoveExpiryType *sharedLinkRemoveExpiry; - -/// (sharing) Added an expiration date to the shared link @note Ensure the -/// `isSharedLinkSettingsAddExpiration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddExpirationType *sharedLinkSettingsAddExpiration; - -/// (sharing) Added a password to the shared link @note Ensure the -/// `isSharedLinkSettingsAddPassword` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsAddPasswordType *sharedLinkSettingsAddPassword; - -/// (sharing) Disabled downloads @note Ensure the -/// `isSharedLinkSettingsAllowDownloadDisabled` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *sharedLinkSettingsAllowDownloadDisabled; - -/// (sharing) Enabled downloads @note Ensure the -/// `isSharedLinkSettingsAllowDownloadEnabled` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *sharedLinkSettingsAllowDownloadEnabled; - -/// (sharing) Changed the audience of the shared link @note Ensure the -/// `isSharedLinkSettingsChangeAudience` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsChangeAudienceType *sharedLinkSettingsChangeAudience; - -/// (sharing) Changed the expiration date of the shared link @note Ensure the -/// `isSharedLinkSettingsChangeExpiration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsChangeExpirationType *sharedLinkSettingsChangeExpiration; - -/// (sharing) Changed the password of the shared link @note Ensure the -/// `isSharedLinkSettingsChangePassword` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsChangePasswordType *sharedLinkSettingsChangePassword; - -/// (sharing) Removed the expiration date from the shared link @note Ensure the -/// `isSharedLinkSettingsRemoveExpiration` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsRemoveExpirationType *sharedLinkSettingsRemoveExpiration; - -/// (sharing) Removed the password from the shared link @note Ensure the -/// `isSharedLinkSettingsRemovePassword` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkSettingsRemovePasswordType *sharedLinkSettingsRemovePassword; - -/// (sharing) Added members as audience of shared link @note Ensure the -/// `isSharedLinkShare` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkShareType *sharedLinkShare; - -/// (sharing) Opened shared link @note Ensure the `isSharedLinkView` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkViewType *sharedLinkView; - -/// (sharing) Opened shared Paper doc (deprecated, no longer logged) @note -/// Ensure the `isSharedNoteOpened` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharedNoteOpenedType *sharedNoteOpened; - -/// (sharing) Disabled downloads for link (deprecated, no longer logged) @note -/// Ensure the `isShmodelDisableDownloads` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelDisableDownloadsType *shmodelDisableDownloads; - -/// (sharing) Enabled downloads for link (deprecated, no longer logged) @note -/// Ensure the `isShmodelEnableDownloads` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelEnableDownloadsType *shmodelEnableDownloads; - -/// (sharing) Shared link with group (deprecated, no longer logged) @note Ensure -/// the `isShmodelGroupShare` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShmodelGroupShareType *shmodelGroupShare; - -/// (showcase) Granted access to showcase @note Ensure the -/// `isShowcaseAccessGranted` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAccessGrantedType *showcaseAccessGranted; - -/// (showcase) Added member to showcase @note Ensure the `isShowcaseAddMember` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseAddMemberType *showcaseAddMember; - -/// (showcase) Archived showcase @note Ensure the `isShowcaseArchived` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseArchivedType *showcaseArchived; - -/// (showcase) Created showcase @note Ensure the `isShowcaseCreated` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseCreatedType *showcaseCreated; - -/// (showcase) Deleted showcase comment @note Ensure the -/// `isShowcaseDeleteComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDeleteCommentType *showcaseDeleteComment; - -/// (showcase) Edited showcase @note Ensure the `isShowcaseEdited` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditedType *showcaseEdited; - -/// (showcase) Edited showcase comment @note Ensure the `isShowcaseEditComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEditCommentType *showcaseEditComment; - -/// (showcase) Added file to showcase @note Ensure the `isShowcaseFileAdded` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileAddedType *showcaseFileAdded; - -/// (showcase) Downloaded file from showcase @note Ensure the -/// `isShowcaseFileDownload` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileDownloadType *showcaseFileDownload; - -/// (showcase) Removed file from showcase @note Ensure the -/// `isShowcaseFileRemoved` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileRemovedType *showcaseFileRemoved; - -/// (showcase) Viewed file in showcase @note Ensure the `isShowcaseFileView` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseFileViewType *showcaseFileView; - -/// (showcase) Permanently deleted showcase @note Ensure the -/// `isShowcasePermanentlyDeleted` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePermanentlyDeletedType *showcasePermanentlyDeleted; - -/// (showcase) Added showcase comment @note Ensure the `isShowcasePostComment` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGShowcasePostCommentType *showcasePostComment; - -/// (showcase) Removed member from showcase @note Ensure the -/// `isShowcaseRemoveMember` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRemoveMemberType *showcaseRemoveMember; - -/// (showcase) Renamed showcase @note Ensure the `isShowcaseRenamed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRenamedType *showcaseRenamed; - -/// (showcase) Requested access to showcase @note Ensure the -/// `isShowcaseRequestAccess` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRequestAccessType *showcaseRequestAccess; - -/// (showcase) Resolved showcase comment @note Ensure the -/// `isShowcaseResolveComment` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseResolveCommentType *showcaseResolveComment; - -/// (showcase) Unarchived showcase @note Ensure the `isShowcaseRestored` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseRestoredType *showcaseRestored; - -/// (showcase) Deleted showcase @note Ensure the `isShowcaseTrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedType *showcaseTrashed; - -/// (showcase) Deleted showcase (old version) (deprecated, replaced by 'Deleted -/// showcase') @note Ensure the `isShowcaseTrashedDeprecated` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseTrashedDeprecatedType *showcaseTrashedDeprecated; - -/// (showcase) Unresolved showcase comment @note Ensure the -/// `isShowcaseUnresolveComment` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUnresolveCommentType *showcaseUnresolveComment; - -/// (showcase) Restored showcase @note Ensure the `isShowcaseUntrashed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedType *showcaseUntrashed; - -/// (showcase) Restored showcase (old version) (deprecated, replaced by -/// 'Restored showcase') @note Ensure the `isShowcaseUntrashedDeprecated` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseUntrashedDeprecatedType *showcaseUntrashedDeprecated; - -/// (showcase) Viewed showcase @note Ensure the `isShowcaseView` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseViewType *showcaseView; - -/// (sso) Added X.509 certificate for SSO @note Ensure the `isSsoAddCert` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddCertType *ssoAddCert; - -/// (sso) Added sign-in URL for SSO @note Ensure the `isSsoAddLoginUrl` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLoginUrlType *ssoAddLoginUrl; - -/// (sso) Added sign-out URL for SSO @note Ensure the `isSsoAddLogoutUrl` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoAddLogoutUrlType *ssoAddLogoutUrl; - -/// (sso) Changed X.509 certificate for SSO @note Ensure the `isSsoChangeCert` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeCertType *ssoChangeCert; - -/// (sso) Changed sign-in URL for SSO @note Ensure the `isSsoChangeLoginUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLoginUrlType *ssoChangeLoginUrl; - -/// (sso) Changed sign-out URL for SSO @note Ensure the `isSsoChangeLogoutUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeLogoutUrlType *ssoChangeLogoutUrl; - -/// (sso) Changed SAML identity mode for SSO @note Ensure the -/// `isSsoChangeSamlIdentityMode` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangeSamlIdentityModeType *ssoChangeSamlIdentityMode; - -/// (sso) Removed X.509 certificate for SSO @note Ensure the `isSsoRemoveCert` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveCertType *ssoRemoveCert; - -/// (sso) Removed sign-in URL for SSO @note Ensure the `isSsoRemoveLoginUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLoginUrlType *ssoRemoveLoginUrl; - -/// (sso) Removed sign-out URL for SSO @note Ensure the `isSsoRemoveLogoutUrl` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGSsoRemoveLogoutUrlType *ssoRemoveLogoutUrl; - -/// (team_folders) Changed archival status of team folder @note Ensure the -/// `isTeamFolderChangeStatus` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderChangeStatusType *teamFolderChangeStatus; - -/// (team_folders) Created team folder in active status @note Ensure the -/// `isTeamFolderCreate` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderCreateType *teamFolderCreate; - -/// (team_folders) Downgraded team folder to regular shared folder @note Ensure -/// the `isTeamFolderDowngrade` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderDowngradeType *teamFolderDowngrade; - -/// (team_folders) Permanently deleted archived team folder @note Ensure the -/// `isTeamFolderPermanentlyDelete` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderPermanentlyDeleteType *teamFolderPermanentlyDelete; - -/// (team_folders) Renamed active/archived team folder @note Ensure the -/// `isTeamFolderRename` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamFolderRenameType *teamFolderRename; - -/// (team_folders) Changed sync default @note Ensure the -/// `isTeamSelectiveSyncSettingsChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncSettingsChangedType *teamSelectiveSyncSettingsChanged; - -/// (team_policies) Changed account capture setting on team domain @note Ensure -/// the `isAccountCaptureChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAccountCaptureChangePolicyType *accountCaptureChangePolicy; - -/// (team_policies) Changed admin reminder settings for requests to join the -/// team @note Ensure the `isAdminEmailRemindersChanged` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAdminEmailRemindersChangedType *adminEmailRemindersChanged; - -/// (team_policies) Disabled downloads (deprecated, no longer logged) @note -/// Ensure the `isAllowDownloadDisabled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadDisabledType *allowDownloadDisabled; - -/// (team_policies) Enabled downloads (deprecated, no longer logged) @note -/// Ensure the `isAllowDownloadEnabled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAllowDownloadEnabledType *allowDownloadEnabled; - -/// (team_policies) Changed app permissions @note Ensure the -/// `isAppPermissionsChanged` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGAppPermissionsChangedType *appPermissionsChanged; - -/// (team_policies) Changed camera uploads setting for team @note Ensure the -/// `isCameraUploadsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCameraUploadsPolicyChangedType *cameraUploadsPolicyChanged; - -/// (team_policies) Changed Capture transcription policy for team @note Ensure -/// the `isCaptureTranscriptPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGCaptureTranscriptPolicyChangedType *captureTranscriptPolicyChanged; - -/// (team_policies) Changed classification policy for team @note Ensure the -/// `isClassificationChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGClassificationChangePolicyType *classificationChangePolicy; - -/// (team_policies) Changed computer backup policy for team @note Ensure the -/// `isComputerBackupPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGComputerBackupPolicyChangedType *computerBackupPolicyChanged; - -/// (team_policies) Changed content management setting @note Ensure the -/// `isContentAdministrationPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGContentAdministrationPolicyChangedType *contentAdministrationPolicyChanged; - -/// (team_policies) Set restrictions on data center locations where team data -/// resides @note Ensure the `isDataPlacementRestrictionChangePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDataPlacementRestrictionChangePolicyType *dataPlacementRestrictionChangePolicy; - -/// (team_policies) Completed restrictions on data center locations where team -/// data resides @note Ensure the `isDataPlacementRestrictionSatisfyPolicy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) - DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *dataPlacementRestrictionSatisfyPolicy; - -/// (team_policies) Added members to device approvals exception list @note -/// Ensure the `isDeviceApprovalsAddException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsAddExceptionType *deviceApprovalsAddException; - -/// (team_policies) Set/removed limit on number of computers member can link to -/// team Dropbox account @note Ensure the `isDeviceApprovalsChangeDesktopPolicy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *deviceApprovalsChangeDesktopPolicy; - -/// (team_policies) Set/removed limit on number of mobile devices member can -/// link to team Dropbox account @note Ensure the -/// `isDeviceApprovalsChangeMobilePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *deviceApprovalsChangeMobilePolicy; - -/// (team_policies) Changed device approvals setting when member is over limit -/// @note Ensure the `isDeviceApprovalsChangeOverageAction` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeOverageActionType *deviceApprovalsChangeOverageAction; - -/// (team_policies) Changed device approvals setting when member unlinks -/// approved device @note Ensure the `isDeviceApprovalsChangeUnlinkAction` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *deviceApprovalsChangeUnlinkAction; - -/// (team_policies) Removed members from device approvals exception list @note -/// Ensure the `isDeviceApprovalsRemoveException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDeviceApprovalsRemoveExceptionType *deviceApprovalsRemoveException; - -/// (team_policies) Added members to directory restrictions list @note Ensure -/// the `isDirectoryRestrictionsAddMembers` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDirectoryRestrictionsAddMembersType *directoryRestrictionsAddMembers; - -/// (team_policies) Removed members from directory restrictions list @note -/// Ensure the `isDirectoryRestrictionsRemoveMembers` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDirectoryRestrictionsRemoveMembersType *directoryRestrictionsRemoveMembers; - -/// (team_policies) Changed Dropbox Passwords policy for team @note Ensure the -/// `isDropboxPasswordsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDropboxPasswordsPolicyChangedType *dropboxPasswordsPolicyChanged; - -/// (team_policies) Changed email to Dropbox policy for team @note Ensure the -/// `isEmailIngestPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmailIngestPolicyChangedType *emailIngestPolicyChanged; - -/// (team_policies) Added members to EMM exception list @note Ensure the -/// `isEmmAddException` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmAddExceptionType *emmAddException; - -/// (team_policies) Enabled/disabled enterprise mobility management for members -/// @note Ensure the `isEmmChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmChangePolicyType *emmChangePolicy; - -/// (team_policies) Removed members from EMM exception list @note Ensure the -/// `isEmmRemoveException` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEmmRemoveExceptionType *emmRemoveException; - -/// (team_policies) Accepted/opted out of extended version history @note Ensure -/// the `isExtendedVersionHistoryChangePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExtendedVersionHistoryChangePolicyType *extendedVersionHistoryChangePolicy; - -/// (team_policies) Changed external drive backup policy for team @note Ensure -/// the `isExternalDriveBackupPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicyChangedType *externalDriveBackupPolicyChanged; - -/// (team_policies) Enabled/disabled commenting on team files @note Ensure the -/// `isFileCommentsChangePolicy` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsChangePolicyType *fileCommentsChangePolicy; - -/// (team_policies) Changed file locking policy for team @note Ensure the -/// `isFileLockingPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileLockingPolicyChangedType *fileLockingPolicyChanged; - -/// (team_policies) Changed File Provider Migration policy for team @note Ensure -/// the `isFileProviderMigrationPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileProviderMigrationPolicyChangedType *fileProviderMigrationPolicyChanged; - -/// (team_policies) Enabled/disabled file requests @note Ensure the -/// `isFileRequestsChangePolicy` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsChangePolicyType *fileRequestsChangePolicy; - -/// (team_policies) Enabled file request emails for everyone (deprecated, no -/// longer logged) @note Ensure the `isFileRequestsEmailsEnabled` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsEmailsEnabledType *fileRequestsEmailsEnabled; - -/// (team_policies) Enabled file request emails for team (deprecated, no longer -/// logged) @note Ensure the `isFileRequestsEmailsRestrictedToTeamOnly` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *fileRequestsEmailsRestrictedToTeamOnly; - -/// (team_policies) Changed file transfers policy for team @note Ensure the -/// `isFileTransfersPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicyChangedType *fileTransfersPolicyChanged; - -/// (team_policies) Changed folder link restrictions policy for team @note -/// Ensure the `isFolderLinkRestrictionPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicyChangedType *folderLinkRestrictionPolicyChanged; - -/// (team_policies) Enabled/disabled Google single sign-on for team @note Ensure -/// the `isGoogleSsoChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoChangePolicyType *googleSsoChangePolicy; - -/// (team_policies) Changed who can create groups @note Ensure the -/// `isGroupUserManagementChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupUserManagementChangePolicyType *groupUserManagementChangePolicy; - -/// (team_policies) Changed integration policy for team @note Ensure the -/// `isIntegrationPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicyChangedType *integrationPolicyChanged; - -/// (team_policies) Changed invite accept email policy for team @note Ensure the -/// `isInviteAcceptanceEmailPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *inviteAcceptanceEmailPolicyChanged; - -/// (team_policies) Changed whether users can find team when not invited @note -/// Ensure the `isMemberRequestsChangePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsChangePolicyType *memberRequestsChangePolicy; - -/// (team_policies) Changed member send invite policy for team @note Ensure the -/// `isMemberSendInvitePolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicyChangedType *memberSendInvitePolicyChanged; - -/// (team_policies) Added members to member space limit exception list @note -/// Ensure the `isMemberSpaceLimitsAddException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsAddExceptionType *memberSpaceLimitsAddException; - -/// (team_policies) Changed member space limit type for team @note Ensure the -/// `isMemberSpaceLimitsChangeCapsTypePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *memberSpaceLimitsChangeCapsTypePolicy; - -/// (team_policies) Changed team default member space limit @note Ensure the -/// `isMemberSpaceLimitsChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsChangePolicyType *memberSpaceLimitsChangePolicy; - -/// (team_policies) Removed members from member space limit exception list @note -/// Ensure the `isMemberSpaceLimitsRemoveException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *memberSpaceLimitsRemoveException; - -/// (team_policies) Enabled/disabled option for team members to suggest people -/// to add to team @note Ensure the `isMemberSuggestionsChangePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsChangePolicyType *memberSuggestionsChangePolicy; - -/// (team_policies) Enabled/disabled Microsoft Office add-in @note Ensure the -/// `isMicrosoftOfficeAddinChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *microsoftOfficeAddinChangePolicy; - -/// (team_policies) Enabled/disabled network control @note Ensure the -/// `isNetworkControlChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlChangePolicyType *networkControlChangePolicy; - -/// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to -/// all members or to specific members @note Ensure the -/// `isPaperChangeDeploymentPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeDeploymentPolicyType *paperChangeDeploymentPolicy; - -/// (team_policies) Changed whether non-members can view Paper docs with link -/// (deprecated, no longer logged) @note Ensure the -/// `isPaperChangeMemberLinkPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberLinkPolicyType *paperChangeMemberLinkPolicy; - -/// (team_policies) Changed whether members can share Paper docs outside team, -/// and if docs are accessible only by team members or anyone by default @note -/// Ensure the `isPaperChangeMemberPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangeMemberPolicyType *paperChangeMemberPolicy; - -/// (team_policies) Enabled/disabled Dropbox Paper for team @note Ensure the -/// `isPaperChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperChangePolicyType *paperChangePolicy; - -/// (team_policies) Changed Paper Default Folder Policy setting for team @note -/// Ensure the `isPaperDefaultFolderPolicyChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicyChangedType *paperDefaultFolderPolicyChanged; - -/// (team_policies) Enabled/disabled Paper Desktop for team @note Ensure the -/// `isPaperDesktopPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicyChangedType *paperDesktopPolicyChanged; - -/// (team_policies) Added users to Paper-enabled users list @note Ensure the -/// `isPaperEnabledUsersGroupAddition` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupAdditionType *paperEnabledUsersGroupAddition; - -/// (team_policies) Removed users from Paper-enabled users list @note Ensure the -/// `isPaperEnabledUsersGroupRemoval` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPaperEnabledUsersGroupRemovalType *paperEnabledUsersGroupRemoval; - -/// (team_policies) Changed team password strength requirements @note Ensure the -/// `isPasswordStrengthRequirementsChangePolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *passwordStrengthRequirementsChangePolicy; - -/// (team_policies) Enabled/disabled ability of team members to permanently -/// delete content @note Ensure the `isPermanentDeleteChangePolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPermanentDeleteChangePolicyType *permanentDeleteChangePolicy; - -/// (team_policies) Enabled/disabled reseller support @note Ensure the -/// `isResellerSupportChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportChangePolicyType *resellerSupportChangePolicy; - -/// (team_policies) Changed Rewind policy for team @note Ensure the -/// `isRewindPolicyChanged` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicyChangedType *rewindPolicyChanged; - -/// (team_policies) Changed send for signature policy for team @note Ensure the -/// `isSendForSignaturePolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicyChangedType *sendForSignaturePolicyChanged; - -/// (team_policies) Changed whether team members can join shared folders owned -/// outside team @note Ensure the `isSharingChangeFolderJoinPolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeFolderJoinPolicyType *sharingChangeFolderJoinPolicy; - -/// (team_policies) Changed the allow remove or change expiration policy for the -/// links shared outside of the team @note Ensure the -/// `isSharingChangeLinkAllowChangeExpirationPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *sharingChangeLinkAllowChangeExpirationPolicy; - -/// (team_policies) Changed the default expiration for the links shared outside -/// of the team @note Ensure the `isSharingChangeLinkDefaultExpirationPolicy` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *sharingChangeLinkDefaultExpirationPolicy; - -/// (team_policies) Changed the password requirement for the links shared -/// outside of the team @note Ensure the -/// `isSharingChangeLinkEnforcePasswordPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *sharingChangeLinkEnforcePasswordPolicy; - -/// (team_policies) Changed whether members can share links outside team, and if -/// links are accessible only by team members or anyone by default @note Ensure -/// the `isSharingChangeLinkPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeLinkPolicyType *sharingChangeLinkPolicy; - -/// (team_policies) Changed whether members can share files/folders outside team -/// @note Ensure the `isSharingChangeMemberPolicy` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSharingChangeMemberPolicyType *sharingChangeMemberPolicy; - -/// (team_policies) Enabled/disabled downloading files from Dropbox Showcase for -/// team @note Ensure the `isShowcaseChangeDownloadPolicy` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeDownloadPolicyType *showcaseChangeDownloadPolicy; - -/// (team_policies) Enabled/disabled Dropbox Showcase for team @note Ensure the -/// `isShowcaseChangeEnabledPolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeEnabledPolicyType *showcaseChangeEnabledPolicy; - -/// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for -/// team @note Ensure the `isShowcaseChangeExternalSharingPolicy` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGShowcaseChangeExternalSharingPolicyType *showcaseChangeExternalSharingPolicy; - -/// (team_policies) Changed automatic Smart Sync setting for team @note Ensure -/// the `isSmarterSmartSyncPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmarterSmartSyncPolicyChangedType *smarterSmartSyncPolicyChanged; - -/// (team_policies) Changed default Smart Sync setting for team members @note -/// Ensure the `isSmartSyncChangePolicy` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncChangePolicyType *smartSyncChangePolicy; - -/// (team_policies) Opted team into Smart Sync @note Ensure the -/// `isSmartSyncNotOptOut` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncNotOptOutType *smartSyncNotOptOut; - -/// (team_policies) Opted team out of Smart Sync @note Ensure the -/// `isSmartSyncOptOut` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutType *smartSyncOptOut; - -/// (team_policies) Changed single sign-on setting for team @note Ensure the -/// `isSsoChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSsoChangePolicyType *ssoChangePolicy; - -/// (team_policies) Changed team branding policy for team @note Ensure the -/// `isTeamBrandingPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicyChangedType *teamBrandingPolicyChanged; - -/// (team_policies) Changed App Integrations setting for team @note Ensure the -/// `isTeamExtensionsPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicyChangedType *teamExtensionsPolicyChanged; - -/// (team_policies) Enabled/disabled Team Selective Sync for team @note Ensure -/// the `isTeamSelectiveSyncPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicyChangedType *teamSelectiveSyncPolicyChanged; - -/// (team_policies) Edited the approved list for sharing externally @note Ensure -/// the `isTeamSharingWhitelistSubjectsChanged` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *teamSharingWhitelistSubjectsChanged; - -/// (team_policies) Added members to two factor authentication exception list -/// @note Ensure the `isTfaAddException` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddExceptionType *tfaAddException; - -/// (team_policies) Changed two-step verification setting for team @note Ensure -/// the `isTfaChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangePolicyType *tfaChangePolicy; - -/// (team_policies) Removed members from two factor authentication exception -/// list @note Ensure the `isTfaRemoveException` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveExceptionType *tfaRemoveException; - -/// (team_policies) Enabled/disabled option for members to link personal Dropbox -/// account and team account to same computer @note Ensure the -/// `isTwoAccountChangePolicy` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountChangePolicyType *twoAccountChangePolicy; - -/// (team_policies) Changed team policy for viewer info @note Ensure the -/// `isViewerInfoPolicyChanged` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGViewerInfoPolicyChangedType *viewerInfoPolicyChanged; - -/// (team_policies) Changed watermarking policy for team @note Ensure the -/// `isWatermarkingPolicyChanged` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicyChangedType *watermarkingPolicyChanged; - -/// (team_policies) Changed limit on active sessions per member @note Ensure the -/// `isWebSessionsChangeActiveSessionLimit` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsChangeActiveSessionLimitType *webSessionsChangeActiveSessionLimit; - -/// (team_policies) Changed how long members can stay signed in to Dropbox.com -/// @note Ensure the `isWebSessionsChangeFixedLengthPolicy` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *webSessionsChangeFixedLengthPolicy; - -/// (team_policies) Changed how long team members can be idle while signed in to -/// Dropbox.com @note Ensure the `isWebSessionsChangeIdleLengthPolicy` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *webSessionsChangeIdleLengthPolicy; - -/// (team_profile) Requested data residency migration for team data @note Ensure -/// the `isDataResidencyMigrationRequestSuccessful` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *dataResidencyMigrationRequestSuccessful; - -/// (team_profile) Request for data residency migration for team data has failed -/// @note Ensure the `isDataResidencyMigrationRequestUnsuccessful` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *dataResidencyMigrationRequestUnsuccessful; - -/// (team_profile) Merged another team into this team @note Ensure the -/// `isTeamMergeFrom` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeFromType *teamMergeFrom; - -/// (team_profile) Merged this team into another team @note Ensure the -/// `isTeamMergeTo` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeToType *teamMergeTo; - -/// (team_profile) Added team background to display on shared link headers @note -/// Ensure the `isTeamProfileAddBackground` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddBackgroundType *teamProfileAddBackground; - -/// (team_profile) Added team logo to display on shared link headers @note -/// Ensure the `isTeamProfileAddLogo` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileAddLogoType *teamProfileAddLogo; - -/// (team_profile) Changed team background displayed on shared link headers -/// @note Ensure the `isTeamProfileChangeBackground` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeBackgroundType *teamProfileChangeBackground; - -/// (team_profile) Changed default language for team @note Ensure the -/// `isTeamProfileChangeDefaultLanguage` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeDefaultLanguageType *teamProfileChangeDefaultLanguage; - -/// (team_profile) Changed team logo displayed on shared link headers @note -/// Ensure the `isTeamProfileChangeLogo` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeLogoType *teamProfileChangeLogo; - -/// (team_profile) Changed team name @note Ensure the `isTeamProfileChangeName` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileChangeNameType *teamProfileChangeName; - -/// (team_profile) Removed team background displayed on shared link headers -/// @note Ensure the `isTeamProfileRemoveBackground` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveBackgroundType *teamProfileRemoveBackground; - -/// (team_profile) Removed team logo displayed on shared link headers @note -/// Ensure the `isTeamProfileRemoveLogo` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamProfileRemoveLogoType *teamProfileRemoveLogo; - -/// (tfa) Added backup phone for two-step verification @note Ensure the -/// `isTfaAddBackupPhone` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddBackupPhoneType *tfaAddBackupPhone; - -/// (tfa) Added security key for two-step verification @note Ensure the -/// `isTfaAddSecurityKey` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaAddSecurityKeyType *tfaAddSecurityKey; - -/// (tfa) Changed backup phone for two-step verification @note Ensure the -/// `isTfaChangeBackupPhone` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeBackupPhoneType *tfaChangeBackupPhone; - -/// (tfa) Enabled/disabled/changed two-step verification setting @note Ensure -/// the `isTfaChangeStatus` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaChangeStatusType *tfaChangeStatus; - -/// (tfa) Removed backup phone for two-step verification @note Ensure the -/// `isTfaRemoveBackupPhone` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveBackupPhoneType *tfaRemoveBackupPhone; - -/// (tfa) Removed security key for two-step verification @note Ensure the -/// `isTfaRemoveSecurityKey` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaRemoveSecurityKeyType *tfaRemoveSecurityKey; - -/// (tfa) Reset two-step verification for team member @note Ensure the -/// `isTfaReset` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTfaResetType *tfaReset; - -/// (trusted_teams) Changed enterprise admin role @note Ensure the -/// `isChangedEnterpriseAdminRole` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGChangedEnterpriseAdminRoleType *changedEnterpriseAdminRole; - -/// (trusted_teams) Changed enterprise-connected team status @note Ensure the -/// `isChangedEnterpriseConnectedTeamStatus` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *changedEnterpriseConnectedTeamStatus; - -/// (trusted_teams) Ended enterprise admin session @note Ensure the -/// `isEndedEnterpriseAdminSession` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEndedEnterpriseAdminSessionType *endedEnterpriseAdminSession; - -/// (trusted_teams) Ended enterprise admin session (deprecated, replaced by -/// 'Ended enterprise admin session') @note Ensure the -/// `isEndedEnterpriseAdminSessionDeprecated` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *endedEnterpriseAdminSessionDeprecated; - -/// (trusted_teams) Changed who can update a setting @note Ensure the -/// `isEnterpriseSettingsLocking` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGEnterpriseSettingsLockingType *enterpriseSettingsLocking; - -/// (trusted_teams) Changed guest team admin status @note Ensure the -/// `isGuestAdminChangeStatus` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGuestAdminChangeStatusType *guestAdminChangeStatus; - -/// (trusted_teams) Started enterprise admin session @note Ensure the -/// `isStartedEnterpriseAdminSession` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGStartedEnterpriseAdminSessionType *startedEnterpriseAdminSession; - -/// (trusted_teams) Accepted a team merge request @note Ensure the -/// `isTeamMergeRequestAccepted` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedType *teamMergeRequestAccepted; - -/// (trusted_teams) Accepted a team merge request (deprecated, replaced by -/// 'Accepted a team merge request') @note Ensure the -/// `isTeamMergeRequestAcceptedShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *teamMergeRequestAcceptedShownToPrimaryTeam; - -/// (trusted_teams) Accepted a team merge request (deprecated, replaced by -/// 'Accepted a team merge request') @note Ensure the -/// `isTeamMergeRequestAcceptedShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *teamMergeRequestAcceptedShownToSecondaryTeam; - -/// (trusted_teams) Automatically canceled team merge request @note Ensure the -/// `isTeamMergeRequestAutoCanceled` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAutoCanceledType *teamMergeRequestAutoCanceled; - -/// (trusted_teams) Canceled a team merge request @note Ensure the -/// `isTeamMergeRequestCanceled` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledType *teamMergeRequestCanceled; - -/// (trusted_teams) Canceled a team merge request (deprecated, replaced by -/// 'Canceled a team merge request') @note Ensure the -/// `isTeamMergeRequestCanceledShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *teamMergeRequestCanceledShownToPrimaryTeam; - -/// (trusted_teams) Canceled a team merge request (deprecated, replaced by -/// 'Canceled a team merge request') @note Ensure the -/// `isTeamMergeRequestCanceledShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *teamMergeRequestCanceledShownToSecondaryTeam; - -/// (trusted_teams) Team merge request expired @note Ensure the -/// `isTeamMergeRequestExpired` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredType *teamMergeRequestExpired; - -/// (trusted_teams) Team merge request expired (deprecated, replaced by 'Team -/// merge request expired') @note Ensure the -/// `isTeamMergeRequestExpiredShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *teamMergeRequestExpiredShownToPrimaryTeam; - -/// (trusted_teams) Team merge request expired (deprecated, replaced by 'Team -/// merge request expired') @note Ensure the -/// `isTeamMergeRequestExpiredShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *teamMergeRequestExpiredShownToSecondaryTeam; - -/// (trusted_teams) Rejected a team merge request (deprecated, no longer logged) -/// @note Ensure the `isTeamMergeRequestRejectedShownToPrimaryTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *teamMergeRequestRejectedShownToPrimaryTeam; - -/// (trusted_teams) Rejected a team merge request (deprecated, no longer logged) -/// @note Ensure the `isTeamMergeRequestRejectedShownToSecondaryTeam` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *teamMergeRequestRejectedShownToSecondaryTeam; - -/// (trusted_teams) Sent a team merge request reminder @note Ensure the -/// `isTeamMergeRequestReminder` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderType *teamMergeRequestReminder; - -/// (trusted_teams) Sent a team merge request reminder (deprecated, replaced by -/// 'Sent a team merge request reminder') @note Ensure the -/// `isTeamMergeRequestReminderShownToPrimaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *teamMergeRequestReminderShownToPrimaryTeam; - -/// (trusted_teams) Sent a team merge request reminder (deprecated, replaced by -/// 'Sent a team merge request reminder') @note Ensure the -/// `isTeamMergeRequestReminderShownToSecondaryTeam` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *teamMergeRequestReminderShownToSecondaryTeam; - -/// (trusted_teams) Canceled the team merge @note Ensure the -/// `isTeamMergeRequestRevoked` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestRevokedType *teamMergeRequestRevoked; - -/// (trusted_teams) Requested to merge their Dropbox team into yours @note -/// Ensure the `isTeamMergeRequestSentShownToPrimaryTeam` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *teamMergeRequestSentShownToPrimaryTeam; - -/// (trusted_teams) Requested to merge your team into another Dropbox team @note -/// Ensure the `isTeamMergeRequestSentShownToSecondaryTeam` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) - DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *teamMergeRequestSentShownToSecondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "admin_alerting_alert_state_changed". -/// -/// Description of the "admin_alerting_alert_state_changed" tag state: -/// (admin_alerting) Changed an alert state -/// -/// @param adminAlertingAlertStateChanged (admin_alerting) Changed an alert -/// state -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingAlertStateChanged: - (DBTEAMLOGAdminAlertingAlertStateChangedType *)adminAlertingAlertStateChanged; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_changed_alert_config". -/// -/// Description of the "admin_alerting_changed_alert_config" tag state: -/// (admin_alerting) Changed an alert setting -/// -/// @param adminAlertingChangedAlertConfig (admin_alerting) Changed an alert -/// setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingChangedAlertConfig: - (DBTEAMLOGAdminAlertingChangedAlertConfigType *)adminAlertingChangedAlertConfig; - -/// -/// Initializes union class with tag state of "admin_alerting_triggered_alert". -/// -/// Description of the "admin_alerting_triggered_alert" tag state: -/// (admin_alerting) Triggered security alert -/// -/// @param adminAlertingTriggeredAlert (admin_alerting) Triggered security alert -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingTriggeredAlert: - (DBTEAMLOGAdminAlertingTriggeredAlertType *)adminAlertingTriggeredAlert; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_completed". -/// -/// Description of the "ransomware_restore_process_completed" tag state: -/// (admin_alerting) Completed ransomware restore process -/// -/// @param ransomwareRestoreProcessCompleted (admin_alerting) Completed -/// ransomware restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessCompleted: - (DBTEAMLOGRansomwareRestoreProcessCompletedType *)ransomwareRestoreProcessCompleted; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_started". -/// -/// Description of the "ransomware_restore_process_started" tag state: -/// (admin_alerting) Started ransomware restore process -/// -/// @param ransomwareRestoreProcessStarted (admin_alerting) Started ransomware -/// restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessStarted: - (DBTEAMLOGRansomwareRestoreProcessStartedType *)ransomwareRestoreProcessStarted; - -/// -/// Initializes union class with tag state of "app_blocked_by_permissions". -/// -/// Description of the "app_blocked_by_permissions" tag state: (apps) Failed to -/// connect app for member -/// -/// @param appBlockedByPermissions (apps) Failed to connect app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppBlockedByPermissions:(DBTEAMLOGAppBlockedByPermissionsType *)appBlockedByPermissions; - -/// -/// Initializes union class with tag state of "app_link_team". -/// -/// Description of the "app_link_team" tag state: (apps) Linked app for team -/// -/// @param appLinkTeam (apps) Linked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkTeam:(DBTEAMLOGAppLinkTeamType *)appLinkTeam; - -/// -/// Initializes union class with tag state of "app_link_user". -/// -/// Description of the "app_link_user" tag state: (apps) Linked app for member -/// -/// @param appLinkUser (apps) Linked app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkUser:(DBTEAMLOGAppLinkUserType *)appLinkUser; - -/// -/// Initializes union class with tag state of "app_unlink_team". -/// -/// Description of the "app_unlink_team" tag state: (apps) Unlinked app for team -/// -/// @param appUnlinkTeam (apps) Unlinked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkTeam:(DBTEAMLOGAppUnlinkTeamType *)appUnlinkTeam; - -/// -/// Initializes union class with tag state of "app_unlink_user". -/// -/// Description of the "app_unlink_user" tag state: (apps) Unlinked app for -/// member -/// -/// @param appUnlinkUser (apps) Unlinked app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkUser:(DBTEAMLOGAppUnlinkUserType *)appUnlinkUser; - -/// -/// Initializes union class with tag state of "integration_connected". -/// -/// Description of the "integration_connected" tag state: (apps) Connected -/// integration for member -/// -/// @param integrationConnected (apps) Connected integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationConnected:(DBTEAMLOGIntegrationConnectedType *)integrationConnected; - -/// -/// Initializes union class with tag state of "integration_disconnected". -/// -/// Description of the "integration_disconnected" tag state: (apps) Disconnected -/// integration for member -/// -/// @param integrationDisconnected (apps) Disconnected integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationDisconnected:(DBTEAMLOGIntegrationDisconnectedType *)integrationDisconnected; - -/// -/// Initializes union class with tag state of "file_add_comment". -/// -/// Description of the "file_add_comment" tag state: (comments) Added file -/// comment -/// -/// @param fileAddComment (comments) Added file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddComment:(DBTEAMLOGFileAddCommentType *)fileAddComment; - -/// -/// Initializes union class with tag state of -/// "file_change_comment_subscription". -/// -/// Description of the "file_change_comment_subscription" tag state: (comments) -/// Subscribed to or unsubscribed from comment notifications for file -/// -/// @param fileChangeCommentSubscription (comments) Subscribed to or -/// unsubscribed from comment notifications for file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileChangeCommentSubscription: - (DBTEAMLOGFileChangeCommentSubscriptionType *)fileChangeCommentSubscription; - -/// -/// Initializes union class with tag state of "file_delete_comment". -/// -/// Description of the "file_delete_comment" tag state: (comments) Deleted file -/// comment -/// -/// @param fileDeleteComment (comments) Deleted file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteComment:(DBTEAMLOGFileDeleteCommentType *)fileDeleteComment; - -/// -/// Initializes union class with tag state of "file_edit_comment". -/// -/// Description of the "file_edit_comment" tag state: (comments) Edited file -/// comment -/// -/// @param fileEditComment (comments) Edited file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditComment:(DBTEAMLOGFileEditCommentType *)fileEditComment; - -/// -/// Initializes union class with tag state of "file_like_comment". -/// -/// Description of the "file_like_comment" tag state: (comments) Liked file -/// comment (deprecated, no longer logged) -/// -/// @param fileLikeComment (comments) Liked file comment (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLikeComment:(DBTEAMLOGFileLikeCommentType *)fileLikeComment; - -/// -/// Initializes union class with tag state of "file_resolve_comment". -/// -/// Description of the "file_resolve_comment" tag state: (comments) Resolved -/// file comment -/// -/// @param fileResolveComment (comments) Resolved file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileResolveComment:(DBTEAMLOGFileResolveCommentType *)fileResolveComment; - -/// -/// Initializes union class with tag state of "file_unlike_comment". -/// -/// Description of the "file_unlike_comment" tag state: (comments) Unliked file -/// comment (deprecated, no longer logged) -/// -/// @param fileUnlikeComment (comments) Unliked file comment (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnlikeComment:(DBTEAMLOGFileUnlikeCommentType *)fileUnlikeComment; - -/// -/// Initializes union class with tag state of "file_unresolve_comment". -/// -/// Description of the "file_unresolve_comment" tag state: (comments) Unresolved -/// file comment -/// -/// @param fileUnresolveComment (comments) Unresolved file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnresolveComment:(DBTEAMLOGFileUnresolveCommentType *)fileUnresolveComment; - -/// -/// Initializes union class with tag state of "governance_policy_add_folders". -/// -/// Description of the "governance_policy_add_folders" tag state: -/// (data_governance) Added folders to policy -/// -/// @param governancePolicyAddFolders (data_governance) Added folders to policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolders: - (DBTEAMLOGGovernancePolicyAddFoldersType *)governancePolicyAddFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folder_failed". -/// -/// Description of the "governance_policy_add_folder_failed" tag state: -/// (data_governance) Couldn't add a folder to a policy -/// -/// @param governancePolicyAddFolderFailed (data_governance) Couldn't add a -/// folder to a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolderFailed: - (DBTEAMLOGGovernancePolicyAddFolderFailedType *)governancePolicyAddFolderFailed; - -/// -/// Initializes union class with tag state of -/// "governance_policy_content_disposed". -/// -/// Description of the "governance_policy_content_disposed" tag state: -/// (data_governance) Content disposed -/// -/// @param governancePolicyContentDisposed (data_governance) Content disposed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyContentDisposed: - (DBTEAMLOGGovernancePolicyContentDisposedType *)governancePolicyContentDisposed; - -/// -/// Initializes union class with tag state of "governance_policy_create". -/// -/// Description of the "governance_policy_create" tag state: (data_governance) -/// Activated a new policy -/// -/// @param governancePolicyCreate (data_governance) Activated a new policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyCreate:(DBTEAMLOGGovernancePolicyCreateType *)governancePolicyCreate; - -/// -/// Initializes union class with tag state of "governance_policy_delete". -/// -/// Description of the "governance_policy_delete" tag state: (data_governance) -/// Deleted a policy -/// -/// @param governancePolicyDelete (data_governance) Deleted a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyDelete:(DBTEAMLOGGovernancePolicyDeleteType *)governancePolicyDelete; - -/// -/// Initializes union class with tag state of "governance_policy_edit_details". -/// -/// Description of the "governance_policy_edit_details" tag state: -/// (data_governance) Edited policy -/// -/// @param governancePolicyEditDetails (data_governance) Edited policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDetails: - (DBTEAMLOGGovernancePolicyEditDetailsType *)governancePolicyEditDetails; - -/// -/// Initializes union class with tag state of "governance_policy_edit_duration". -/// -/// Description of the "governance_policy_edit_duration" tag state: -/// (data_governance) Changed policy duration -/// -/// @param governancePolicyEditDuration (data_governance) Changed policy -/// duration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDuration: - (DBTEAMLOGGovernancePolicyEditDurationType *)governancePolicyEditDuration; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_created". -/// -/// Description of the "governance_policy_export_created" tag state: -/// (data_governance) Created a policy download -/// -/// @param governancePolicyExportCreated (data_governance) Created a policy -/// download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportCreated: - (DBTEAMLOGGovernancePolicyExportCreatedType *)governancePolicyExportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_removed". -/// -/// Description of the "governance_policy_export_removed" tag state: -/// (data_governance) Removed a policy download -/// -/// @param governancePolicyExportRemoved (data_governance) Removed a policy -/// download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportRemoved: - (DBTEAMLOGGovernancePolicyExportRemovedType *)governancePolicyExportRemoved; - -/// -/// Initializes union class with tag state of -/// "governance_policy_remove_folders". -/// -/// Description of the "governance_policy_remove_folders" tag state: -/// (data_governance) Removed folders from policy -/// -/// @param governancePolicyRemoveFolders (data_governance) Removed folders from -/// policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyRemoveFolders: - (DBTEAMLOGGovernancePolicyRemoveFoldersType *)governancePolicyRemoveFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_report_created". -/// -/// Description of the "governance_policy_report_created" tag state: -/// (data_governance) Created a summary report for a policy -/// -/// @param governancePolicyReportCreated (data_governance) Created a summary -/// report for a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyReportCreated: - (DBTEAMLOGGovernancePolicyReportCreatedType *)governancePolicyReportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_zip_part_downloaded". -/// -/// Description of the "governance_policy_zip_part_downloaded" tag state: -/// (data_governance) Downloaded content from a policy -/// -/// @param governancePolicyZipPartDownloaded (data_governance) Downloaded -/// content from a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyZipPartDownloaded: - (DBTEAMLOGGovernancePolicyZipPartDownloadedType *)governancePolicyZipPartDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_activate_a_hold". -/// -/// Description of the "legal_holds_activate_a_hold" tag state: -/// (data_governance) Activated a hold -/// -/// @param legalHoldsActivateAHold (data_governance) Activated a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsActivateAHold:(DBTEAMLOGLegalHoldsActivateAHoldType *)legalHoldsActivateAHold; - -/// -/// Initializes union class with tag state of "legal_holds_add_members". -/// -/// Description of the "legal_holds_add_members" tag state: (data_governance) -/// Added members to a hold -/// -/// @param legalHoldsAddMembers (data_governance) Added members to a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsAddMembers:(DBTEAMLOGLegalHoldsAddMembersType *)legalHoldsAddMembers; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_details". -/// -/// Description of the "legal_holds_change_hold_details" tag state: -/// (data_governance) Edited details for a hold -/// -/// @param legalHoldsChangeHoldDetails (data_governance) Edited details for a -/// hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldDetails: - (DBTEAMLOGLegalHoldsChangeHoldDetailsType *)legalHoldsChangeHoldDetails; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_name". -/// -/// Description of the "legal_holds_change_hold_name" tag state: -/// (data_governance) Renamed a hold -/// -/// @param legalHoldsChangeHoldName (data_governance) Renamed a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldName:(DBTEAMLOGLegalHoldsChangeHoldNameType *)legalHoldsChangeHoldName; - -/// -/// Initializes union class with tag state of "legal_holds_export_a_hold". -/// -/// Description of the "legal_holds_export_a_hold" tag state: (data_governance) -/// Exported hold -/// -/// @param legalHoldsExportAHold (data_governance) Exported hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportAHold:(DBTEAMLOGLegalHoldsExportAHoldType *)legalHoldsExportAHold; - -/// -/// Initializes union class with tag state of "legal_holds_export_cancelled". -/// -/// Description of the "legal_holds_export_cancelled" tag state: -/// (data_governance) Canceled export for a hold -/// -/// @param legalHoldsExportCancelled (data_governance) Canceled export for a -/// hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportCancelled:(DBTEAMLOGLegalHoldsExportCancelledType *)legalHoldsExportCancelled; - -/// -/// Initializes union class with tag state of "legal_holds_export_downloaded". -/// -/// Description of the "legal_holds_export_downloaded" tag state: -/// (data_governance) Downloaded export for a hold -/// -/// @param legalHoldsExportDownloaded (data_governance) Downloaded export for a -/// hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportDownloaded: - (DBTEAMLOGLegalHoldsExportDownloadedType *)legalHoldsExportDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_export_removed". -/// -/// Description of the "legal_holds_export_removed" tag state: (data_governance) -/// Removed export for a hold -/// -/// @param legalHoldsExportRemoved (data_governance) Removed export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportRemoved:(DBTEAMLOGLegalHoldsExportRemovedType *)legalHoldsExportRemoved; - -/// -/// Initializes union class with tag state of "legal_holds_release_a_hold". -/// -/// Description of the "legal_holds_release_a_hold" tag state: (data_governance) -/// Released a hold -/// -/// @param legalHoldsReleaseAHold (data_governance) Released a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReleaseAHold:(DBTEAMLOGLegalHoldsReleaseAHoldType *)legalHoldsReleaseAHold; - -/// -/// Initializes union class with tag state of "legal_holds_remove_members". -/// -/// Description of the "legal_holds_remove_members" tag state: (data_governance) -/// Removed members from a hold -/// -/// @param legalHoldsRemoveMembers (data_governance) Removed members from a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsRemoveMembers:(DBTEAMLOGLegalHoldsRemoveMembersType *)legalHoldsRemoveMembers; - -/// -/// Initializes union class with tag state of "legal_holds_report_a_hold". -/// -/// Description of the "legal_holds_report_a_hold" tag state: (data_governance) -/// Created a summary report for a hold -/// -/// @param legalHoldsReportAHold (data_governance) Created a summary report for -/// a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReportAHold:(DBTEAMLOGLegalHoldsReportAHoldType *)legalHoldsReportAHold; - -/// -/// Initializes union class with tag state of "device_change_ip_desktop". -/// -/// Description of the "device_change_ip_desktop" tag state: (devices) Changed -/// IP address associated with active desktop session -/// -/// @param deviceChangeIpDesktop (devices) Changed IP address associated with -/// active desktop session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpDesktop:(DBTEAMLOGDeviceChangeIpDesktopType *)deviceChangeIpDesktop; - -/// -/// Initializes union class with tag state of "device_change_ip_mobile". -/// -/// Description of the "device_change_ip_mobile" tag state: (devices) Changed IP -/// address associated with active mobile session -/// -/// @param deviceChangeIpMobile (devices) Changed IP address associated with -/// active mobile session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpMobile:(DBTEAMLOGDeviceChangeIpMobileType *)deviceChangeIpMobile; - -/// -/// Initializes union class with tag state of "device_change_ip_web". -/// -/// Description of the "device_change_ip_web" tag state: (devices) Changed IP -/// address associated with active web session -/// -/// @param deviceChangeIpWeb (devices) Changed IP address associated with active -/// web session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpWeb:(DBTEAMLOGDeviceChangeIpWebType *)deviceChangeIpWeb; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_fail". -/// -/// Description of the "device_delete_on_unlink_fail" tag state: (devices) -/// Failed to delete all files from unlinked device -/// -/// @param deviceDeleteOnUnlinkFail (devices) Failed to delete all files from -/// unlinked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkFail:(DBTEAMLOGDeviceDeleteOnUnlinkFailType *)deviceDeleteOnUnlinkFail; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_success". -/// -/// Description of the "device_delete_on_unlink_success" tag state: (devices) -/// Deleted all files from unlinked device -/// -/// @param deviceDeleteOnUnlinkSuccess (devices) Deleted all files from unlinked -/// device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkSuccess: - (DBTEAMLOGDeviceDeleteOnUnlinkSuccessType *)deviceDeleteOnUnlinkSuccess; - -/// -/// Initializes union class with tag state of "device_link_fail". -/// -/// Description of the "device_link_fail" tag state: (devices) Failed to link -/// device -/// -/// @param deviceLinkFail (devices) Failed to link device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkFail:(DBTEAMLOGDeviceLinkFailType *)deviceLinkFail; - -/// -/// Initializes union class with tag state of "device_link_success". -/// -/// Description of the "device_link_success" tag state: (devices) Linked device -/// -/// @param deviceLinkSuccess (devices) Linked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkSuccess:(DBTEAMLOGDeviceLinkSuccessType *)deviceLinkSuccess; - -/// -/// Initializes union class with tag state of "device_management_disabled". -/// -/// Description of the "device_management_disabled" tag state: (devices) -/// Disabled device management (deprecated, no longer logged) -/// -/// @param deviceManagementDisabled (devices) Disabled device management -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementDisabled:(DBTEAMLOGDeviceManagementDisabledType *)deviceManagementDisabled; - -/// -/// Initializes union class with tag state of "device_management_enabled". -/// -/// Description of the "device_management_enabled" tag state: (devices) Enabled -/// device management (deprecated, no longer logged) -/// -/// @param deviceManagementEnabled (devices) Enabled device management -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementEnabled:(DBTEAMLOGDeviceManagementEnabledType *)deviceManagementEnabled; - -/// -/// Initializes union class with tag state of -/// "device_sync_backup_status_changed". -/// -/// Description of the "device_sync_backup_status_changed" tag state: (devices) -/// Enabled/disabled backup for computer -/// -/// @param deviceSyncBackupStatusChanged (devices) Enabled/disabled backup for -/// computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSyncBackupStatusChanged: - (DBTEAMLOGDeviceSyncBackupStatusChangedType *)deviceSyncBackupStatusChanged; - -/// -/// Initializes union class with tag state of "device_unlink". -/// -/// Description of the "device_unlink" tag state: (devices) Disconnected device -/// -/// @param deviceUnlink (devices) Disconnected device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceUnlink:(DBTEAMLOGDeviceUnlinkType *)deviceUnlink; - -/// -/// Initializes union class with tag state of "dropbox_passwords_exported". -/// -/// Description of the "dropbox_passwords_exported" tag state: (devices) -/// Exported passwords -/// -/// @param dropboxPasswordsExported (devices) Exported passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsExported:(DBTEAMLOGDropboxPasswordsExportedType *)dropboxPasswordsExported; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_new_device_enrolled". -/// -/// Description of the "dropbox_passwords_new_device_enrolled" tag state: -/// (devices) Enrolled new Dropbox Passwords device -/// -/// @param dropboxPasswordsNewDeviceEnrolled (devices) Enrolled new Dropbox -/// Passwords device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsNewDeviceEnrolled: - (DBTEAMLOGDropboxPasswordsNewDeviceEnrolledType *)dropboxPasswordsNewDeviceEnrolled; - -/// -/// Initializes union class with tag state of "emm_refresh_auth_token". -/// -/// Description of the "emm_refresh_auth_token" tag state: (devices) Refreshed -/// auth token used for setting up EMM -/// -/// @param emmRefreshAuthToken (devices) Refreshed auth token used for setting -/// up EMM -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRefreshAuthToken:(DBTEAMLOGEmmRefreshAuthTokenType *)emmRefreshAuthToken; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_eligibility_status_checked". -/// -/// Description of the "external_drive_backup_eligibility_status_checked" tag -/// state: (devices) Checked external drive backup eligibility status -/// -/// @param externalDriveBackupEligibilityStatusChecked (devices) Checked -/// external drive backup eligibility status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupEligibilityStatusChecked: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *)externalDriveBackupEligibilityStatusChecked; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_status_changed". -/// -/// Description of the "external_drive_backup_status_changed" tag state: -/// (devices) Modified external drive backup -/// -/// @param externalDriveBackupStatusChanged (devices) Modified external drive -/// backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupStatusChanged: - (DBTEAMLOGExternalDriveBackupStatusChangedType *)externalDriveBackupStatusChanged; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_availability". -/// -/// Description of the "account_capture_change_availability" tag state: -/// (domains) Granted/revoked option to enable account capture on team domains -/// -/// @param accountCaptureChangeAvailability (domains) Granted/revoked option to -/// enable account capture on team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangeAvailability: - (DBTEAMLOGAccountCaptureChangeAvailabilityType *)accountCaptureChangeAvailability; - -/// -/// Initializes union class with tag state of "account_capture_migrate_account". -/// -/// Description of the "account_capture_migrate_account" tag state: (domains) -/// Account-captured user migrated account to team -/// -/// @param accountCaptureMigrateAccount (domains) Account-captured user migrated -/// account to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureMigrateAccount: - (DBTEAMLOGAccountCaptureMigrateAccountType *)accountCaptureMigrateAccount; - -/// -/// Initializes union class with tag state of -/// "account_capture_notification_emails_sent". -/// -/// Description of the "account_capture_notification_emails_sent" tag state: -/// (domains) Sent account capture email to all unmanaged members -/// -/// @param accountCaptureNotificationEmailsSent (domains) Sent account capture -/// email to all unmanaged members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureNotificationEmailsSent: - (DBTEAMLOGAccountCaptureNotificationEmailsSentType *)accountCaptureNotificationEmailsSent; - -/// -/// Initializes union class with tag state of -/// "account_capture_relinquish_account". -/// -/// Description of the "account_capture_relinquish_account" tag state: (domains) -/// Account-captured user changed account email to personal email -/// -/// @param accountCaptureRelinquishAccount (domains) Account-captured user -/// changed account email to personal email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureRelinquishAccount: - (DBTEAMLOGAccountCaptureRelinquishAccountType *)accountCaptureRelinquishAccount; - -/// -/// Initializes union class with tag state of "disabled_domain_invites". -/// -/// Description of the "disabled_domain_invites" tag state: (domains) Disabled -/// domain invites (deprecated, no longer logged) -/// -/// @param disabledDomainInvites (domains) Disabled domain invites (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledDomainInvites:(DBTEAMLOGDisabledDomainInvitesType *)disabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "domain_invites_approve_request_to_join_team". -/// -/// Description of the "domain_invites_approve_request_to_join_team" tag state: -/// (domains) Approved user's request to join team -/// -/// @param domainInvitesApproveRequestToJoinTeam (domains) Approved user's -/// request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesApproveRequestToJoinTeam: - (DBTEAMLOGDomainInvitesApproveRequestToJoinTeamType *)domainInvitesApproveRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_decline_request_to_join_team". -/// -/// Description of the "domain_invites_decline_request_to_join_team" tag state: -/// (domains) Declined user's request to join team -/// -/// @param domainInvitesDeclineRequestToJoinTeam (domains) Declined user's -/// request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesDeclineRequestToJoinTeam: - (DBTEAMLOGDomainInvitesDeclineRequestToJoinTeamType *)domainInvitesDeclineRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_email_existing_users". -/// -/// Description of the "domain_invites_email_existing_users" tag state: -/// (domains) Sent domain invites to existing domain accounts (deprecated, no -/// longer logged) -/// -/// @param domainInvitesEmailExistingUsers (domains) Sent domain invites to -/// existing domain accounts (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesEmailExistingUsers: - (DBTEAMLOGDomainInvitesEmailExistingUsersType *)domainInvitesEmailExistingUsers; - -/// -/// Initializes union class with tag state of -/// "domain_invites_request_to_join_team". -/// -/// Description of the "domain_invites_request_to_join_team" tag state: -/// (domains) Requested to join team -/// -/// @param domainInvitesRequestToJoinTeam (domains) Requested to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesRequestToJoinTeam: - (DBTEAMLOGDomainInvitesRequestToJoinTeamType *)domainInvitesRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_no" tag -/// state: (domains) Disabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @param domainInvitesSetInviteNewUserPrefToNo (domains) Disabled -/// "Automatically invite new users" (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToNo: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToNoType *)domainInvitesSetInviteNewUserPrefToNo; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_yes" tag -/// state: (domains) Enabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @param domainInvitesSetInviteNewUserPrefToYes (domains) Enabled -/// "Automatically invite new users" (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToYes: - (DBTEAMLOGDomainInvitesSetInviteNewUserPrefToYesType *)domainInvitesSetInviteNewUserPrefToYes; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_fail". -/// -/// Description of the "domain_verification_add_domain_fail" tag state: -/// (domains) Failed to verify team domain -/// -/// @param domainVerificationAddDomainFail (domains) Failed to verify team -/// domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainFail: - (DBTEAMLOGDomainVerificationAddDomainFailType *)domainVerificationAddDomainFail; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_success". -/// -/// Description of the "domain_verification_add_domain_success" tag state: -/// (domains) Verified team domain -/// -/// @param domainVerificationAddDomainSuccess (domains) Verified team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainSuccess: - (DBTEAMLOGDomainVerificationAddDomainSuccessType *)domainVerificationAddDomainSuccess; - -/// -/// Initializes union class with tag state of -/// "domain_verification_remove_domain". -/// -/// Description of the "domain_verification_remove_domain" tag state: (domains) -/// Removed domain from list of verified team domains -/// -/// @param domainVerificationRemoveDomain (domains) Removed domain from list of -/// verified team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationRemoveDomain: - (DBTEAMLOGDomainVerificationRemoveDomainType *)domainVerificationRemoveDomain; - -/// -/// Initializes union class with tag state of "enabled_domain_invites". -/// -/// Description of the "enabled_domain_invites" tag state: (domains) Enabled -/// domain invites (deprecated, no longer logged) -/// -/// @param enabledDomainInvites (domains) Enabled domain invites (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabledDomainInvites:(DBTEAMLOGEnabledDomainInvitesType *)enabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_cancel_key_deletion". -/// -/// Description of the "team_encryption_key_cancel_key_deletion" tag state: -/// (encryption) Canceled team encryption key deletion -/// -/// @param teamEncryptionKeyCancelKeyDeletion (encryption) Canceled team -/// encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCancelKeyDeletion: - (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *)teamEncryptionKeyCancelKeyDeletion; - -/// -/// Initializes union class with tag state of "team_encryption_key_create_key". -/// -/// Description of the "team_encryption_key_create_key" tag state: (encryption) -/// Created team encryption key -/// -/// @param teamEncryptionKeyCreateKey (encryption) Created team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCreateKey: - (DBTEAMLOGTeamEncryptionKeyCreateKeyType *)teamEncryptionKeyCreateKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_delete_key". -/// -/// Description of the "team_encryption_key_delete_key" tag state: (encryption) -/// Deleted team encryption key -/// -/// @param teamEncryptionKeyDeleteKey (encryption) Deleted team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDeleteKey: - (DBTEAMLOGTeamEncryptionKeyDeleteKeyType *)teamEncryptionKeyDeleteKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_disable_key". -/// -/// Description of the "team_encryption_key_disable_key" tag state: (encryption) -/// Disabled team encryption key -/// -/// @param teamEncryptionKeyDisableKey (encryption) Disabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDisableKey: - (DBTEAMLOGTeamEncryptionKeyDisableKeyType *)teamEncryptionKeyDisableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_enable_key". -/// -/// Description of the "team_encryption_key_enable_key" tag state: (encryption) -/// Enabled team encryption key -/// -/// @param teamEncryptionKeyEnableKey (encryption) Enabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyEnableKey: - (DBTEAMLOGTeamEncryptionKeyEnableKeyType *)teamEncryptionKeyEnableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_rotate_key". -/// -/// Description of the "team_encryption_key_rotate_key" tag state: (encryption) -/// Rotated team encryption key (deprecated, no longer logged) -/// -/// @param teamEncryptionKeyRotateKey (encryption) Rotated team encryption key -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyRotateKey: - (DBTEAMLOGTeamEncryptionKeyRotateKeyType *)teamEncryptionKeyRotateKey; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_schedule_key_deletion". -/// -/// Description of the "team_encryption_key_schedule_key_deletion" tag state: -/// (encryption) Scheduled encryption key deletion -/// -/// @param teamEncryptionKeyScheduleKeyDeletion (encryption) Scheduled -/// encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyScheduleKeyDeletion: - (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *)teamEncryptionKeyScheduleKeyDeletion; - -/// -/// Initializes union class with tag state of "apply_naming_convention". -/// -/// Description of the "apply_naming_convention" tag state: (file_operations) -/// Applied naming convention -/// -/// @param applyNamingConvention (file_operations) Applied naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApplyNamingConvention:(DBTEAMLOGApplyNamingConventionType *)applyNamingConvention; - -/// -/// Initializes union class with tag state of "create_folder". -/// -/// Description of the "create_folder" tag state: (file_operations) Created -/// folders (deprecated, no longer logged) -/// -/// @param createFolder (file_operations) Created folders (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateFolder:(DBTEAMLOGCreateFolderType *)createFolder; - -/// -/// Initializes union class with tag state of "file_add". -/// -/// Description of the "file_add" tag state: (file_operations) Added files -/// and/or folders -/// -/// @param fileAdd (file_operations) Added files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAdd:(DBTEAMLOGFileAddType *)fileAdd; - -/// -/// Initializes union class with tag state of "file_add_from_automation". -/// -/// Description of the "file_add_from_automation" tag state: (file_operations) -/// Added files and/or folders from automation -/// -/// @param fileAddFromAutomation (file_operations) Added files and/or folders -/// from automation -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddFromAutomation:(DBTEAMLOGFileAddFromAutomationType *)fileAddFromAutomation; - -/// -/// Initializes union class with tag state of "file_copy". -/// -/// Description of the "file_copy" tag state: (file_operations) Copied files -/// and/or folders -/// -/// @param fileCopy (file_operations) Copied files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCopy:(DBTEAMLOGFileCopyType *)fileCopy; - -/// -/// Initializes union class with tag state of "file_delete". -/// -/// Description of the "file_delete" tag state: (file_operations) Deleted files -/// and/or folders -/// -/// @param fileDelete (file_operations) Deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDelete:(DBTEAMLOGFileDeleteType *)fileDelete; - -/// -/// Initializes union class with tag state of "file_download". -/// -/// Description of the "file_download" tag state: (file_operations) Downloaded -/// files and/or folders -/// -/// @param fileDownload (file_operations) Downloaded files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDownload:(DBTEAMLOGFileDownloadType *)fileDownload; - -/// -/// Initializes union class with tag state of "file_edit". -/// -/// Description of the "file_edit" tag state: (file_operations) Edited files -/// -/// @param fileEdit (file_operations) Edited files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEdit:(DBTEAMLOGFileEditType *)fileEdit; - -/// -/// Initializes union class with tag state of "file_get_copy_reference". -/// -/// Description of the "file_get_copy_reference" tag state: (file_operations) -/// Created copy reference to file/folder -/// -/// @param fileGetCopyReference (file_operations) Created copy reference to -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileGetCopyReference:(DBTEAMLOGFileGetCopyReferenceType *)fileGetCopyReference; - -/// -/// Initializes union class with tag state of -/// "file_locking_lock_status_changed". -/// -/// Description of the "file_locking_lock_status_changed" tag state: -/// (file_operations) Locked/unlocked editing for a file -/// -/// @param fileLockingLockStatusChanged (file_operations) Locked/unlocked -/// editing for a file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingLockStatusChanged: - (DBTEAMLOGFileLockingLockStatusChangedType *)fileLockingLockStatusChanged; - -/// -/// Initializes union class with tag state of "file_move". -/// -/// Description of the "file_move" tag state: (file_operations) Moved files -/// and/or folders -/// -/// @param fileMove (file_operations) Moved files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMove:(DBTEAMLOGFileMoveType *)fileMove; - -/// -/// Initializes union class with tag state of "file_permanently_delete". -/// -/// Description of the "file_permanently_delete" tag state: (file_operations) -/// Permanently deleted files and/or folders -/// -/// @param filePermanentlyDelete (file_operations) Permanently deleted files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePermanentlyDelete:(DBTEAMLOGFilePermanentlyDeleteType *)filePermanentlyDelete; - -/// -/// Initializes union class with tag state of "file_preview". -/// -/// Description of the "file_preview" tag state: (file_operations) Previewed -/// files and/or folders -/// -/// @param filePreview (file_operations) Previewed files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePreview:(DBTEAMLOGFilePreviewType *)filePreview; - -/// -/// Initializes union class with tag state of "file_rename". -/// -/// Description of the "file_rename" tag state: (file_operations) Renamed files -/// and/or folders -/// -/// @param fileRename (file_operations) Renamed files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRename:(DBTEAMLOGFileRenameType *)fileRename; - -/// -/// Initializes union class with tag state of "file_restore". -/// -/// Description of the "file_restore" tag state: (file_operations) Restored -/// deleted files and/or folders -/// -/// @param fileRestore (file_operations) Restored deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRestore:(DBTEAMLOGFileRestoreType *)fileRestore; - -/// -/// Initializes union class with tag state of "file_revert". -/// -/// Description of the "file_revert" tag state: (file_operations) Reverted files -/// to previous version -/// -/// @param fileRevert (file_operations) Reverted files to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRevert:(DBTEAMLOGFileRevertType *)fileRevert; - -/// -/// Initializes union class with tag state of "file_rollback_changes". -/// -/// Description of the "file_rollback_changes" tag state: (file_operations) -/// Rolled back file actions -/// -/// @param fileRollbackChanges (file_operations) Rolled back file actions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRollbackChanges:(DBTEAMLOGFileRollbackChangesType *)fileRollbackChanges; - -/// -/// Initializes union class with tag state of "file_save_copy_reference". -/// -/// Description of the "file_save_copy_reference" tag state: (file_operations) -/// Saved file/folder using copy reference -/// -/// @param fileSaveCopyReference (file_operations) Saved file/folder using copy -/// reference -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSaveCopyReference:(DBTEAMLOGFileSaveCopyReferenceType *)fileSaveCopyReference; - -/// -/// Initializes union class with tag state of -/// "folder_overview_description_changed". -/// -/// Description of the "folder_overview_description_changed" tag state: -/// (file_operations) Updated folder overview -/// -/// @param folderOverviewDescriptionChanged (file_operations) Updated folder -/// overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewDescriptionChanged: - (DBTEAMLOGFolderOverviewDescriptionChangedType *)folderOverviewDescriptionChanged; - -/// -/// Initializes union class with tag state of "folder_overview_item_pinned". -/// -/// Description of the "folder_overview_item_pinned" tag state: -/// (file_operations) Pinned item to folder overview -/// -/// @param folderOverviewItemPinned (file_operations) Pinned item to folder -/// overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemPinned:(DBTEAMLOGFolderOverviewItemPinnedType *)folderOverviewItemPinned; - -/// -/// Initializes union class with tag state of "folder_overview_item_unpinned". -/// -/// Description of the "folder_overview_item_unpinned" tag state: -/// (file_operations) Unpinned item from folder overview -/// -/// @param folderOverviewItemUnpinned (file_operations) Unpinned item from -/// folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemUnpinned: - (DBTEAMLOGFolderOverviewItemUnpinnedType *)folderOverviewItemUnpinned; - -/// -/// Initializes union class with tag state of "object_label_added". -/// -/// Description of the "object_label_added" tag state: (file_operations) Added a -/// label -/// -/// @param objectLabelAdded (file_operations) Added a label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelAdded:(DBTEAMLOGObjectLabelAddedType *)objectLabelAdded; - -/// -/// Initializes union class with tag state of "object_label_removed". -/// -/// Description of the "object_label_removed" tag state: (file_operations) -/// Removed a label -/// -/// @param objectLabelRemoved (file_operations) Removed a label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelRemoved:(DBTEAMLOGObjectLabelRemovedType *)objectLabelRemoved; - -/// -/// Initializes union class with tag state of "object_label_updated_value". -/// -/// Description of the "object_label_updated_value" tag state: (file_operations) -/// Updated a label's value -/// -/// @param objectLabelUpdatedValue (file_operations) Updated a label's value -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelUpdatedValue:(DBTEAMLOGObjectLabelUpdatedValueType *)objectLabelUpdatedValue; - -/// -/// Initializes union class with tag state of "organize_folder_with_tidy". -/// -/// Description of the "organize_folder_with_tidy" tag state: (file_operations) -/// Organized a folder with multi-file organize -/// -/// @param organizeFolderWithTidy (file_operations) Organized a folder with -/// multi-file organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizeFolderWithTidy:(DBTEAMLOGOrganizeFolderWithTidyType *)organizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "replay_file_delete". -/// -/// Description of the "replay_file_delete" tag state: (file_operations) Deleted -/// files in Replay -/// -/// @param replayFileDelete (file_operations) Deleted files in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileDelete:(DBTEAMLOGReplayFileDeleteType *)replayFileDelete; - -/// -/// Initializes union class with tag state of "rewind_folder". -/// -/// Description of the "rewind_folder" tag state: (file_operations) Rewound a -/// folder -/// -/// @param rewindFolder (file_operations) Rewound a folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolder:(DBTEAMLOGRewindFolderType *)rewindFolder; - -/// -/// Initializes union class with tag state of "undo_naming_convention". -/// -/// Description of the "undo_naming_convention" tag state: (file_operations) -/// Reverted naming convention -/// -/// @param undoNamingConvention (file_operations) Reverted naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoNamingConvention:(DBTEAMLOGUndoNamingConventionType *)undoNamingConvention; - -/// -/// Initializes union class with tag state of "undo_organize_folder_with_tidy". -/// -/// Description of the "undo_organize_folder_with_tidy" tag state: -/// (file_operations) Removed multi-file organize -/// -/// @param undoOrganizeFolderWithTidy (file_operations) Removed multi-file -/// organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoOrganizeFolderWithTidy: - (DBTEAMLOGUndoOrganizeFolderWithTidyType *)undoOrganizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "user_tags_added". -/// -/// Description of the "user_tags_added" tag state: (file_operations) Tagged a -/// file -/// -/// @param userTagsAdded (file_operations) Tagged a file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsAdded:(DBTEAMLOGUserTagsAddedType *)userTagsAdded; - -/// -/// Initializes union class with tag state of "user_tags_removed". -/// -/// Description of the "user_tags_removed" tag state: (file_operations) Removed -/// tags -/// -/// @param userTagsRemoved (file_operations) Removed tags -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsRemoved:(DBTEAMLOGUserTagsRemovedType *)userTagsRemoved; - -/// -/// Initializes union class with tag state of "email_ingest_receive_file". -/// -/// Description of the "email_ingest_receive_file" tag state: (file_requests) -/// Received files via Email to Dropbox -/// -/// @param emailIngestReceiveFile (file_requests) Received files via Email to -/// Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestReceiveFile:(DBTEAMLOGEmailIngestReceiveFileType *)emailIngestReceiveFile; - -/// -/// Initializes union class with tag state of "file_request_change". -/// -/// Description of the "file_request_change" tag state: (file_requests) Changed -/// file request -/// -/// @param fileRequestChange (file_requests) Changed file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestChange:(DBTEAMLOGFileRequestChangeType *)fileRequestChange; - -/// -/// Initializes union class with tag state of "file_request_close". -/// -/// Description of the "file_request_close" tag state: (file_requests) Closed -/// file request -/// -/// @param fileRequestClose (file_requests) Closed file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestClose:(DBTEAMLOGFileRequestCloseType *)fileRequestClose; - -/// -/// Initializes union class with tag state of "file_request_create". -/// -/// Description of the "file_request_create" tag state: (file_requests) Created -/// file request -/// -/// @param fileRequestCreate (file_requests) Created file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCreate:(DBTEAMLOGFileRequestCreateType *)fileRequestCreate; - -/// -/// Initializes union class with tag state of "file_request_delete". -/// -/// Description of the "file_request_delete" tag state: (file_requests) Delete -/// file request -/// -/// @param fileRequestDelete (file_requests) Delete file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestDelete:(DBTEAMLOGFileRequestDeleteType *)fileRequestDelete; - -/// -/// Initializes union class with tag state of "file_request_receive_file". -/// -/// Description of the "file_request_receive_file" tag state: (file_requests) -/// Received files for file request -/// -/// @param fileRequestReceiveFile (file_requests) Received files for file -/// request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestReceiveFile:(DBTEAMLOGFileRequestReceiveFileType *)fileRequestReceiveFile; - -/// -/// Initializes union class with tag state of "group_add_external_id". -/// -/// Description of the "group_add_external_id" tag state: (groups) Added -/// external ID for group -/// -/// @param groupAddExternalId (groups) Added external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddExternalId:(DBTEAMLOGGroupAddExternalIdType *)groupAddExternalId; - -/// -/// Initializes union class with tag state of "group_add_member". -/// -/// Description of the "group_add_member" tag state: (groups) Added team members -/// to group -/// -/// @param groupAddMember (groups) Added team members to group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddMember:(DBTEAMLOGGroupAddMemberType *)groupAddMember; - -/// -/// Initializes union class with tag state of "group_change_external_id". -/// -/// Description of the "group_change_external_id" tag state: (groups) Changed -/// external ID for group -/// -/// @param groupChangeExternalId (groups) Changed external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeExternalId:(DBTEAMLOGGroupChangeExternalIdType *)groupChangeExternalId; - -/// -/// Initializes union class with tag state of "group_change_management_type". -/// -/// Description of the "group_change_management_type" tag state: (groups) -/// Changed group management type -/// -/// @param groupChangeManagementType (groups) Changed group management type -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeManagementType:(DBTEAMLOGGroupChangeManagementTypeType *)groupChangeManagementType; - -/// -/// Initializes union class with tag state of "group_change_member_role". -/// -/// Description of the "group_change_member_role" tag state: (groups) Changed -/// manager permissions of group member -/// -/// @param groupChangeMemberRole (groups) Changed manager permissions of group -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeMemberRole:(DBTEAMLOGGroupChangeMemberRoleType *)groupChangeMemberRole; - -/// -/// Initializes union class with tag state of "group_create". -/// -/// Description of the "group_create" tag state: (groups) Created group -/// -/// @param groupCreate (groups) Created group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupCreate:(DBTEAMLOGGroupCreateType *)groupCreate; - -/// -/// Initializes union class with tag state of "group_delete". -/// -/// Description of the "group_delete" tag state: (groups) Deleted group -/// -/// @param groupDelete (groups) Deleted group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDelete:(DBTEAMLOGGroupDeleteType *)groupDelete; - -/// -/// Initializes union class with tag state of "group_description_updated". -/// -/// Description of the "group_description_updated" tag state: (groups) Updated -/// group (deprecated, no longer logged) -/// -/// @param groupDescriptionUpdated (groups) Updated group (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDescriptionUpdated:(DBTEAMLOGGroupDescriptionUpdatedType *)groupDescriptionUpdated; - -/// -/// Initializes union class with tag state of "group_join_policy_updated". -/// -/// Description of the "group_join_policy_updated" tag state: (groups) Updated -/// group join policy (deprecated, no longer logged) -/// -/// @param groupJoinPolicyUpdated (groups) Updated group join policy -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupJoinPolicyUpdated:(DBTEAMLOGGroupJoinPolicyUpdatedType *)groupJoinPolicyUpdated; - -/// -/// Initializes union class with tag state of "group_moved". -/// -/// Description of the "group_moved" tag state: (groups) Moved group -/// (deprecated, no longer logged) -/// -/// @param groupMoved (groups) Moved group (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupMoved:(DBTEAMLOGGroupMovedType *)groupMoved; - -/// -/// Initializes union class with tag state of "group_remove_external_id". -/// -/// Description of the "group_remove_external_id" tag state: (groups) Removed -/// external ID for group -/// -/// @param groupRemoveExternalId (groups) Removed external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveExternalId:(DBTEAMLOGGroupRemoveExternalIdType *)groupRemoveExternalId; - -/// -/// Initializes union class with tag state of "group_remove_member". -/// -/// Description of the "group_remove_member" tag state: (groups) Removed team -/// members from group -/// -/// @param groupRemoveMember (groups) Removed team members from group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveMember:(DBTEAMLOGGroupRemoveMemberType *)groupRemoveMember; - -/// -/// Initializes union class with tag state of "group_rename". -/// -/// Description of the "group_rename" tag state: (groups) Renamed group -/// -/// @param groupRename (groups) Renamed group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRename:(DBTEAMLOGGroupRenameType *)groupRename; - -/// -/// Initializes union class with tag state of "account_lock_or_unlocked". -/// -/// Description of the "account_lock_or_unlocked" tag state: (logins) -/// Unlocked/locked account after failed sign in attempts -/// -/// @param accountLockOrUnlocked (logins) Unlocked/locked account after failed -/// sign in attempts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountLockOrUnlocked:(DBTEAMLOGAccountLockOrUnlockedType *)accountLockOrUnlocked; - -/// -/// Initializes union class with tag state of "emm_error". -/// -/// Description of the "emm_error" tag state: (logins) Failed to sign in via EMM -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @param emmError (logins) Failed to sign in via EMM (deprecated, replaced by -/// 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmError:(DBTEAMLOGEmmErrorType *)emmError; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_in_via_trusted_teams" tag state: -/// (logins) Started trusted team admin session -/// -/// @param guestAdminSignedInViaTrustedTeams (logins) Started trusted team admin -/// session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedInViaTrustedTeams: - (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *)guestAdminSignedInViaTrustedTeams; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_out_via_trusted_teams" tag state: -/// (logins) Ended trusted team admin session -/// -/// @param guestAdminSignedOutViaTrustedTeams (logins) Ended trusted team admin -/// session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedOutViaTrustedTeams: - (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *)guestAdminSignedOutViaTrustedTeams; - -/// -/// Initializes union class with tag state of "login_fail". -/// -/// Description of the "login_fail" tag state: (logins) Failed to sign in -/// -/// @param loginFail (logins) Failed to sign in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginFail:(DBTEAMLOGLoginFailType *)loginFail; - -/// -/// Initializes union class with tag state of "login_success". -/// -/// Description of the "login_success" tag state: (logins) Signed in -/// -/// @param loginSuccess (logins) Signed in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginSuccess:(DBTEAMLOGLoginSuccessType *)loginSuccess; - -/// -/// Initializes union class with tag state of "logout". -/// -/// Description of the "logout" tag state: (logins) Signed out -/// -/// @param logout (logins) Signed out -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogout:(DBTEAMLOGLogoutType *)logout; - -/// -/// Initializes union class with tag state of "reseller_support_session_end". -/// -/// Description of the "reseller_support_session_end" tag state: (logins) Ended -/// reseller support session -/// -/// @param resellerSupportSessionEnd (logins) Ended reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionEnd:(DBTEAMLOGResellerSupportSessionEndType *)resellerSupportSessionEnd; - -/// -/// Initializes union class with tag state of "reseller_support_session_start". -/// -/// Description of the "reseller_support_session_start" tag state: (logins) -/// Started reseller support session -/// -/// @param resellerSupportSessionStart (logins) Started reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionStart: - (DBTEAMLOGResellerSupportSessionStartType *)resellerSupportSessionStart; - -/// -/// Initializes union class with tag state of "sign_in_as_session_end". -/// -/// Description of the "sign_in_as_session_end" tag state: (logins) Ended admin -/// sign-in-as session -/// -/// @param signInAsSessionEnd (logins) Ended admin sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionEnd:(DBTEAMLOGSignInAsSessionEndType *)signInAsSessionEnd; - -/// -/// Initializes union class with tag state of "sign_in_as_session_start". -/// -/// Description of the "sign_in_as_session_start" tag state: (logins) Started -/// admin sign-in-as session -/// -/// @param signInAsSessionStart (logins) Started admin sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionStart:(DBTEAMLOGSignInAsSessionStartType *)signInAsSessionStart; - -/// -/// Initializes union class with tag state of "sso_error". -/// -/// Description of the "sso_error" tag state: (logins) Failed to sign in via SSO -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @param ssoError (logins) Failed to sign in via SSO (deprecated, replaced by -/// 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoError:(DBTEAMLOGSsoErrorType *)ssoError; - -/// -/// Initializes union class with tag state of "backup_admin_invitation_sent". -/// -/// Description of the "backup_admin_invitation_sent" tag state: (members) -/// Invited members to activate Backup -/// -/// @param backupAdminInvitationSent (members) Invited members to activate -/// Backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupAdminInvitationSent:(DBTEAMLOGBackupAdminInvitationSentType *)backupAdminInvitationSent; - -/// -/// Initializes union class with tag state of "backup_invitation_opened". -/// -/// Description of the "backup_invitation_opened" tag state: (members) Opened -/// Backup invite -/// -/// @param backupInvitationOpened (members) Opened Backup invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupInvitationOpened:(DBTEAMLOGBackupInvitationOpenedType *)backupInvitationOpened; - -/// -/// Initializes union class with tag state of "create_team_invite_link". -/// -/// Description of the "create_team_invite_link" tag state: (members) Created -/// team invite link -/// -/// @param createTeamInviteLink (members) Created team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateTeamInviteLink:(DBTEAMLOGCreateTeamInviteLinkType *)createTeamInviteLink; - -/// -/// Initializes union class with tag state of "delete_team_invite_link". -/// -/// Description of the "delete_team_invite_link" tag state: (members) Deleted -/// team invite link -/// -/// @param deleteTeamInviteLink (members) Deleted team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteTeamInviteLink:(DBTEAMLOGDeleteTeamInviteLinkType *)deleteTeamInviteLink; - -/// -/// Initializes union class with tag state of "member_add_external_id". -/// -/// Description of the "member_add_external_id" tag state: (members) Added an -/// external ID for team member -/// -/// @param memberAddExternalId (members) Added an external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddExternalId:(DBTEAMLOGMemberAddExternalIdType *)memberAddExternalId; - -/// -/// Initializes union class with tag state of "member_add_name". -/// -/// Description of the "member_add_name" tag state: (members) Added team member -/// name -/// -/// @param memberAddName (members) Added team member name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddName:(DBTEAMLOGMemberAddNameType *)memberAddName; - -/// -/// Initializes union class with tag state of "member_change_admin_role". -/// -/// Description of the "member_change_admin_role" tag state: (members) Changed -/// team member admin role -/// -/// @param memberChangeAdminRole (members) Changed team member admin role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeAdminRole:(DBTEAMLOGMemberChangeAdminRoleType *)memberChangeAdminRole; - -/// -/// Initializes union class with tag state of "member_change_email". -/// -/// Description of the "member_change_email" tag state: (members) Changed team -/// member email -/// -/// @param memberChangeEmail (members) Changed team member email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeEmail:(DBTEAMLOGMemberChangeEmailType *)memberChangeEmail; - -/// -/// Initializes union class with tag state of "member_change_external_id". -/// -/// Description of the "member_change_external_id" tag state: (members) Changed -/// the external ID for team member -/// -/// @param memberChangeExternalId (members) Changed the external ID for team -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeExternalId:(DBTEAMLOGMemberChangeExternalIdType *)memberChangeExternalId; - -/// -/// Initializes union class with tag state of "member_change_membership_type". -/// -/// Description of the "member_change_membership_type" tag state: (members) -/// Changed membership type (limited/full) of member (deprecated, no longer -/// logged) -/// -/// @param memberChangeMembershipType (members) Changed membership type -/// (limited/full) of member (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeMembershipType: - (DBTEAMLOGMemberChangeMembershipTypeType *)memberChangeMembershipType; - -/// -/// Initializes union class with tag state of "member_change_name". -/// -/// Description of the "member_change_name" tag state: (members) Changed team -/// member name -/// -/// @param memberChangeName (members) Changed team member name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeName:(DBTEAMLOGMemberChangeNameType *)memberChangeName; - -/// -/// Initializes union class with tag state of "member_change_reseller_role". -/// -/// Description of the "member_change_reseller_role" tag state: (members) -/// Changed team member reseller role -/// -/// @param memberChangeResellerRole (members) Changed team member reseller role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeResellerRole:(DBTEAMLOGMemberChangeResellerRoleType *)memberChangeResellerRole; - -/// -/// Initializes union class with tag state of "member_change_status". -/// -/// Description of the "member_change_status" tag state: (members) Changed -/// member status (invited, joined, suspended, etc.) -/// -/// @param memberChangeStatus (members) Changed member status (invited, joined, -/// suspended, etc.) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeStatus:(DBTEAMLOGMemberChangeStatusType *)memberChangeStatus; - -/// -/// Initializes union class with tag state of "member_delete_manual_contacts". -/// -/// Description of the "member_delete_manual_contacts" tag state: (members) -/// Cleared manually added contacts -/// -/// @param memberDeleteManualContacts (members) Cleared manually added contacts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteManualContacts: - (DBTEAMLOGMemberDeleteManualContactsType *)memberDeleteManualContacts; - -/// -/// Initializes union class with tag state of "member_delete_profile_photo". -/// -/// Description of the "member_delete_profile_photo" tag state: (members) -/// Deleted team member profile photo -/// -/// @param memberDeleteProfilePhoto (members) Deleted team member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteProfilePhoto:(DBTEAMLOGMemberDeleteProfilePhotoType *)memberDeleteProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_permanently_delete_account_contents". -/// -/// Description of the "member_permanently_delete_account_contents" tag state: -/// (members) Permanently deleted contents of deleted team member account -/// -/// @param memberPermanentlyDeleteAccountContents (members) Permanently deleted -/// contents of deleted team member account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberPermanentlyDeleteAccountContents: - (DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *)memberPermanentlyDeleteAccountContents; - -/// -/// Initializes union class with tag state of "member_remove_external_id". -/// -/// Description of the "member_remove_external_id" tag state: (members) Removed -/// the external ID for team member -/// -/// @param memberRemoveExternalId (members) Removed the external ID for team -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRemoveExternalId:(DBTEAMLOGMemberRemoveExternalIdType *)memberRemoveExternalId; - -/// -/// Initializes union class with tag state of "member_set_profile_photo". -/// -/// Description of the "member_set_profile_photo" tag state: (members) Set team -/// member profile photo -/// -/// @param memberSetProfilePhoto (members) Set team member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSetProfilePhoto:(DBTEAMLOGMemberSetProfilePhotoType *)memberSetProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_custom_quota". -/// -/// Description of the "member_space_limits_add_custom_quota" tag state: -/// (members) Set custom member space limit -/// -/// @param memberSpaceLimitsAddCustomQuota (members) Set custom member space -/// limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddCustomQuota: - (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *)memberSpaceLimitsAddCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_custom_quota". -/// -/// Description of the "member_space_limits_change_custom_quota" tag state: -/// (members) Changed custom member space limit -/// -/// @param memberSpaceLimitsChangeCustomQuota (members) Changed custom member -/// space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCustomQuota: - (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *)memberSpaceLimitsChangeCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_status". -/// -/// Description of the "member_space_limits_change_status" tag state: (members) -/// Changed space limit status -/// -/// @param memberSpaceLimitsChangeStatus (members) Changed space limit status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeStatus: - (DBTEAMLOGMemberSpaceLimitsChangeStatusType *)memberSpaceLimitsChangeStatus; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_custom_quota". -/// -/// Description of the "member_space_limits_remove_custom_quota" tag state: -/// (members) Removed custom member space limit -/// -/// @param memberSpaceLimitsRemoveCustomQuota (members) Removed custom member -/// space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveCustomQuota: - (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *)memberSpaceLimitsRemoveCustomQuota; - -/// -/// Initializes union class with tag state of "member_suggest". -/// -/// Description of the "member_suggest" tag state: (members) Suggested person to -/// add to team -/// -/// @param memberSuggest (members) Suggested person to add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggest:(DBTEAMLOGMemberSuggestType *)memberSuggest; - -/// -/// Initializes union class with tag state of -/// "member_transfer_account_contents". -/// -/// Description of the "member_transfer_account_contents" tag state: (members) -/// Transferred contents of deleted member account to another member -/// -/// @param memberTransferAccountContents (members) Transferred contents of -/// deleted member account to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberTransferAccountContents: - (DBTEAMLOGMemberTransferAccountContentsType *)memberTransferAccountContents; - -/// -/// Initializes union class with tag state of "pending_secondary_email_added". -/// -/// Description of the "pending_secondary_email_added" tag state: (members) -/// Added pending secondary email -/// -/// @param pendingSecondaryEmailAdded (members) Added pending secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPendingSecondaryEmailAdded: - (DBTEAMLOGPendingSecondaryEmailAddedType *)pendingSecondaryEmailAdded; - -/// -/// Initializes union class with tag state of "secondary_email_deleted". -/// -/// Description of the "secondary_email_deleted" tag state: (members) Deleted -/// secondary email -/// -/// @param secondaryEmailDeleted (members) Deleted secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailDeleted:(DBTEAMLOGSecondaryEmailDeletedType *)secondaryEmailDeleted; - -/// -/// Initializes union class with tag state of "secondary_email_verified". -/// -/// Description of the "secondary_email_verified" tag state: (members) Verified -/// secondary email -/// -/// @param secondaryEmailVerified (members) Verified secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailVerified:(DBTEAMLOGSecondaryEmailVerifiedType *)secondaryEmailVerified; - -/// -/// Initializes union class with tag state of "secondary_mails_policy_changed". -/// -/// Description of the "secondary_mails_policy_changed" tag state: (members) -/// Secondary mails policy changed -/// -/// @param secondaryMailsPolicyChanged (members) Secondary mails policy changed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryMailsPolicyChanged: - (DBTEAMLOGSecondaryMailsPolicyChangedType *)secondaryMailsPolicyChanged; - -/// -/// Initializes union class with tag state of "binder_add_page". -/// -/// Description of the "binder_add_page" tag state: (paper) Added Binder page -/// (deprecated, replaced by 'Edited files') -/// -/// @param binderAddPage (paper) Added Binder page (deprecated, replaced by -/// 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddPage:(DBTEAMLOGBinderAddPageType *)binderAddPage; - -/// -/// Initializes union class with tag state of "binder_add_section". -/// -/// Description of the "binder_add_section" tag state: (paper) Added Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @param binderAddSection (paper) Added Binder section (deprecated, replaced -/// by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddSection:(DBTEAMLOGBinderAddSectionType *)binderAddSection; - -/// -/// Initializes union class with tag state of "binder_remove_page". -/// -/// Description of the "binder_remove_page" tag state: (paper) Removed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @param binderRemovePage (paper) Removed Binder page (deprecated, replaced by -/// 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemovePage:(DBTEAMLOGBinderRemovePageType *)binderRemovePage; - -/// -/// Initializes union class with tag state of "binder_remove_section". -/// -/// Description of the "binder_remove_section" tag state: (paper) Removed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @param binderRemoveSection (paper) Removed Binder section (deprecated, -/// replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemoveSection:(DBTEAMLOGBinderRemoveSectionType *)binderRemoveSection; - -/// -/// Initializes union class with tag state of "binder_rename_page". -/// -/// Description of the "binder_rename_page" tag state: (paper) Renamed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @param binderRenamePage (paper) Renamed Binder page (deprecated, replaced by -/// 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenamePage:(DBTEAMLOGBinderRenamePageType *)binderRenamePage; - -/// -/// Initializes union class with tag state of "binder_rename_section". -/// -/// Description of the "binder_rename_section" tag state: (paper) Renamed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @param binderRenameSection (paper) Renamed Binder section (deprecated, -/// replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenameSection:(DBTEAMLOGBinderRenameSectionType *)binderRenameSection; - -/// -/// Initializes union class with tag state of "binder_reorder_page". -/// -/// Description of the "binder_reorder_page" tag state: (paper) Reordered Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @param binderReorderPage (paper) Reordered Binder page (deprecated, replaced -/// by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderPage:(DBTEAMLOGBinderReorderPageType *)binderReorderPage; - -/// -/// Initializes union class with tag state of "binder_reorder_section". -/// -/// Description of the "binder_reorder_section" tag state: (paper) Reordered -/// Binder section (deprecated, replaced by 'Edited files') -/// -/// @param binderReorderSection (paper) Reordered Binder section (deprecated, -/// replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderSection:(DBTEAMLOGBinderReorderSectionType *)binderReorderSection; - -/// -/// Initializes union class with tag state of "paper_content_add_member". -/// -/// Description of the "paper_content_add_member" tag state: (paper) Added users -/// and/or groups to Paper doc/folder -/// -/// @param paperContentAddMember (paper) Added users and/or groups to Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddMember:(DBTEAMLOGPaperContentAddMemberType *)paperContentAddMember; - -/// -/// Initializes union class with tag state of "paper_content_add_to_folder". -/// -/// Description of the "paper_content_add_to_folder" tag state: (paper) Added -/// Paper doc/folder to folder -/// -/// @param paperContentAddToFolder (paper) Added Paper doc/folder to folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddToFolder:(DBTEAMLOGPaperContentAddToFolderType *)paperContentAddToFolder; - -/// -/// Initializes union class with tag state of "paper_content_archive". -/// -/// Description of the "paper_content_archive" tag state: (paper) Archived Paper -/// doc/folder -/// -/// @param paperContentArchive (paper) Archived Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentArchive:(DBTEAMLOGPaperContentArchiveType *)paperContentArchive; - -/// -/// Initializes union class with tag state of "paper_content_create". -/// -/// Description of the "paper_content_create" tag state: (paper) Created Paper -/// doc/folder -/// -/// @param paperContentCreate (paper) Created Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentCreate:(DBTEAMLOGPaperContentCreateType *)paperContentCreate; - -/// -/// Initializes union class with tag state of -/// "paper_content_permanently_delete". -/// -/// Description of the "paper_content_permanently_delete" tag state: (paper) -/// Permanently deleted Paper doc/folder -/// -/// @param paperContentPermanentlyDelete (paper) Permanently deleted Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentPermanentlyDelete: - (DBTEAMLOGPaperContentPermanentlyDeleteType *)paperContentPermanentlyDelete; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_from_folder". -/// -/// Description of the "paper_content_remove_from_folder" tag state: (paper) -/// Removed Paper doc/folder from folder -/// -/// @param paperContentRemoveFromFolder (paper) Removed Paper doc/folder from -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveFromFolder: - (DBTEAMLOGPaperContentRemoveFromFolderType *)paperContentRemoveFromFolder; - -/// -/// Initializes union class with tag state of "paper_content_remove_member". -/// -/// Description of the "paper_content_remove_member" tag state: (paper) Removed -/// users and/or groups from Paper doc/folder -/// -/// @param paperContentRemoveMember (paper) Removed users and/or groups from -/// Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveMember:(DBTEAMLOGPaperContentRemoveMemberType *)paperContentRemoveMember; - -/// -/// Initializes union class with tag state of "paper_content_rename". -/// -/// Description of the "paper_content_rename" tag state: (paper) Renamed Paper -/// doc/folder -/// -/// @param paperContentRename (paper) Renamed Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRename:(DBTEAMLOGPaperContentRenameType *)paperContentRename; - -/// -/// Initializes union class with tag state of "paper_content_restore". -/// -/// Description of the "paper_content_restore" tag state: (paper) Restored -/// archived Paper doc/folder -/// -/// @param paperContentRestore (paper) Restored archived Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRestore:(DBTEAMLOGPaperContentRestoreType *)paperContentRestore; - -/// -/// Initializes union class with tag state of "paper_doc_add_comment". -/// -/// Description of the "paper_doc_add_comment" tag state: (paper) Added Paper -/// doc comment -/// -/// @param paperDocAddComment (paper) Added Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocAddComment:(DBTEAMLOGPaperDocAddCommentType *)paperDocAddComment; - -/// -/// Initializes union class with tag state of "paper_doc_change_member_role". -/// -/// Description of the "paper_doc_change_member_role" tag state: (paper) Changed -/// member permissions for Paper doc -/// -/// @param paperDocChangeMemberRole (paper) Changed member permissions for Paper -/// doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeMemberRole:(DBTEAMLOGPaperDocChangeMemberRoleType *)paperDocChangeMemberRole; - -/// -/// Initializes union class with tag state of "paper_doc_change_sharing_policy". -/// -/// Description of the "paper_doc_change_sharing_policy" tag state: (paper) -/// Changed sharing setting for Paper doc -/// -/// @param paperDocChangeSharingPolicy (paper) Changed sharing setting for Paper -/// doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSharingPolicy: - (DBTEAMLOGPaperDocChangeSharingPolicyType *)paperDocChangeSharingPolicy; - -/// -/// Initializes union class with tag state of "paper_doc_change_subscription". -/// -/// Description of the "paper_doc_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper doc -/// -/// @param paperDocChangeSubscription (paper) Followed/unfollowed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSubscription: - (DBTEAMLOGPaperDocChangeSubscriptionType *)paperDocChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_doc_deleted". -/// -/// Description of the "paper_doc_deleted" tag state: (paper) Archived Paper doc -/// (deprecated, no longer logged) -/// -/// @param paperDocDeleted (paper) Archived Paper doc (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleted:(DBTEAMLOGPaperDocDeletedType *)paperDocDeleted; - -/// -/// Initializes union class with tag state of "paper_doc_delete_comment". -/// -/// Description of the "paper_doc_delete_comment" tag state: (paper) Deleted -/// Paper doc comment -/// -/// @param paperDocDeleteComment (paper) Deleted Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleteComment:(DBTEAMLOGPaperDocDeleteCommentType *)paperDocDeleteComment; - -/// -/// Initializes union class with tag state of "paper_doc_download". -/// -/// Description of the "paper_doc_download" tag state: (paper) Downloaded Paper -/// doc in specific format -/// -/// @param paperDocDownload (paper) Downloaded Paper doc in specific format -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDownload:(DBTEAMLOGPaperDocDownloadType *)paperDocDownload; - -/// -/// Initializes union class with tag state of "paper_doc_edit". -/// -/// Description of the "paper_doc_edit" tag state: (paper) Edited Paper doc -/// -/// @param paperDocEdit (paper) Edited Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEdit:(DBTEAMLOGPaperDocEditType *)paperDocEdit; - -/// -/// Initializes union class with tag state of "paper_doc_edit_comment". -/// -/// Description of the "paper_doc_edit_comment" tag state: (paper) Edited Paper -/// doc comment -/// -/// @param paperDocEditComment (paper) Edited Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditComment:(DBTEAMLOGPaperDocEditCommentType *)paperDocEditComment; - -/// -/// Initializes union class with tag state of "paper_doc_followed". -/// -/// Description of the "paper_doc_followed" tag state: (paper) Followed Paper -/// doc (deprecated, replaced by 'Followed/unfollowed Paper doc') -/// -/// @param paperDocFollowed (paper) Followed Paper doc (deprecated, replaced by -/// 'Followed/unfollowed Paper doc') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocFollowed:(DBTEAMLOGPaperDocFollowedType *)paperDocFollowed; - -/// -/// Initializes union class with tag state of "paper_doc_mention". -/// -/// Description of the "paper_doc_mention" tag state: (paper) Mentioned user in -/// Paper doc -/// -/// @param paperDocMention (paper) Mentioned user in Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocMention:(DBTEAMLOGPaperDocMentionType *)paperDocMention; - -/// -/// Initializes union class with tag state of "paper_doc_ownership_changed". -/// -/// Description of the "paper_doc_ownership_changed" tag state: (paper) -/// Transferred ownership of Paper doc -/// -/// @param paperDocOwnershipChanged (paper) Transferred ownership of Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocOwnershipChanged:(DBTEAMLOGPaperDocOwnershipChangedType *)paperDocOwnershipChanged; - -/// -/// Initializes union class with tag state of "paper_doc_request_access". -/// -/// Description of the "paper_doc_request_access" tag state: (paper) Requested -/// access to Paper doc -/// -/// @param paperDocRequestAccess (paper) Requested access to Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRequestAccess:(DBTEAMLOGPaperDocRequestAccessType *)paperDocRequestAccess; - -/// -/// Initializes union class with tag state of "paper_doc_resolve_comment". -/// -/// Description of the "paper_doc_resolve_comment" tag state: (paper) Resolved -/// Paper doc comment -/// -/// @param paperDocResolveComment (paper) Resolved Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocResolveComment:(DBTEAMLOGPaperDocResolveCommentType *)paperDocResolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_revert". -/// -/// Description of the "paper_doc_revert" tag state: (paper) Restored Paper doc -/// to previous version -/// -/// @param paperDocRevert (paper) Restored Paper doc to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRevert:(DBTEAMLOGPaperDocRevertType *)paperDocRevert; - -/// -/// Initializes union class with tag state of "paper_doc_slack_share". -/// -/// Description of the "paper_doc_slack_share" tag state: (paper) Shared Paper -/// doc via Slack -/// -/// @param paperDocSlackShare (paper) Shared Paper doc via Slack -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocSlackShare:(DBTEAMLOGPaperDocSlackShareType *)paperDocSlackShare; - -/// -/// Initializes union class with tag state of "paper_doc_team_invite". -/// -/// Description of the "paper_doc_team_invite" tag state: (paper) Shared Paper -/// doc with users and/or groups (deprecated, no longer logged) -/// -/// @param paperDocTeamInvite (paper) Shared Paper doc with users and/or groups -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTeamInvite:(DBTEAMLOGPaperDocTeamInviteType *)paperDocTeamInvite; - -/// -/// Initializes union class with tag state of "paper_doc_trashed". -/// -/// Description of the "paper_doc_trashed" tag state: (paper) Deleted Paper doc -/// -/// @param paperDocTrashed (paper) Deleted Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTrashed:(DBTEAMLOGPaperDocTrashedType *)paperDocTrashed; - -/// -/// Initializes union class with tag state of "paper_doc_unresolve_comment". -/// -/// Description of the "paper_doc_unresolve_comment" tag state: (paper) -/// Unresolved Paper doc comment -/// -/// @param paperDocUnresolveComment (paper) Unresolved Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUnresolveComment:(DBTEAMLOGPaperDocUnresolveCommentType *)paperDocUnresolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_untrashed". -/// -/// Description of the "paper_doc_untrashed" tag state: (paper) Restored Paper -/// doc -/// -/// @param paperDocUntrashed (paper) Restored Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUntrashed:(DBTEAMLOGPaperDocUntrashedType *)paperDocUntrashed; - -/// -/// Initializes union class with tag state of "paper_doc_view". -/// -/// Description of the "paper_doc_view" tag state: (paper) Viewed Paper doc -/// -/// @param paperDocView (paper) Viewed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocView:(DBTEAMLOGPaperDocViewType *)paperDocView; - -/// -/// Initializes union class with tag state of "paper_external_view_allow". -/// -/// Description of the "paper_external_view_allow" tag state: (paper) Changed -/// Paper external sharing setting to anyone (deprecated, no longer logged) -/// -/// @param paperExternalViewAllow (paper) Changed Paper external sharing setting -/// to anyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewAllow:(DBTEAMLOGPaperExternalViewAllowType *)paperExternalViewAllow; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_default_team". -/// -/// Description of the "paper_external_view_default_team" tag state: (paper) -/// Changed Paper external sharing setting to default team (deprecated, no -/// longer logged) -/// -/// @param paperExternalViewDefaultTeam (paper) Changed Paper external sharing -/// setting to default team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewDefaultTeam: - (DBTEAMLOGPaperExternalViewDefaultTeamType *)paperExternalViewDefaultTeam; - -/// -/// Initializes union class with tag state of "paper_external_view_forbid". -/// -/// Description of the "paper_external_view_forbid" tag state: (paper) Changed -/// Paper external sharing setting to team-only (deprecated, no longer logged) -/// -/// @param paperExternalViewForbid (paper) Changed Paper external sharing -/// setting to team-only (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewForbid:(DBTEAMLOGPaperExternalViewForbidType *)paperExternalViewForbid; - -/// -/// Initializes union class with tag state of -/// "paper_folder_change_subscription". -/// -/// Description of the "paper_folder_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper folder -/// -/// @param paperFolderChangeSubscription (paper) Followed/unfollowed Paper -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderChangeSubscription: - (DBTEAMLOGPaperFolderChangeSubscriptionType *)paperFolderChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_folder_deleted". -/// -/// Description of the "paper_folder_deleted" tag state: (paper) Archived Paper -/// folder (deprecated, no longer logged) -/// -/// @param paperFolderDeleted (paper) Archived Paper folder (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderDeleted:(DBTEAMLOGPaperFolderDeletedType *)paperFolderDeleted; - -/// -/// Initializes union class with tag state of "paper_folder_followed". -/// -/// Description of the "paper_folder_followed" tag state: (paper) Followed Paper -/// folder (deprecated, replaced by 'Followed/unfollowed Paper folder') -/// -/// @param paperFolderFollowed (paper) Followed Paper folder (deprecated, -/// replaced by 'Followed/unfollowed Paper folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderFollowed:(DBTEAMLOGPaperFolderFollowedType *)paperFolderFollowed; - -/// -/// Initializes union class with tag state of "paper_folder_team_invite". -/// -/// Description of the "paper_folder_team_invite" tag state: (paper) Shared -/// Paper folder with users and/or groups (deprecated, no longer logged) -/// -/// @param paperFolderTeamInvite (paper) Shared Paper folder with users and/or -/// groups (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderTeamInvite:(DBTEAMLOGPaperFolderTeamInviteType *)paperFolderTeamInvite; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_change_permission". -/// -/// Description of the "paper_published_link_change_permission" tag state: -/// (paper) Changed permissions for published doc -/// -/// @param paperPublishedLinkChangePermission (paper) Changed permissions for -/// published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkChangePermission: - (DBTEAMLOGPaperPublishedLinkChangePermissionType *)paperPublishedLinkChangePermission; - -/// -/// Initializes union class with tag state of "paper_published_link_create". -/// -/// Description of the "paper_published_link_create" tag state: (paper) -/// Published doc -/// -/// @param paperPublishedLinkCreate (paper) Published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkCreate:(DBTEAMLOGPaperPublishedLinkCreateType *)paperPublishedLinkCreate; - -/// -/// Initializes union class with tag state of "paper_published_link_disabled". -/// -/// Description of the "paper_published_link_disabled" tag state: (paper) -/// Unpublished doc -/// -/// @param paperPublishedLinkDisabled (paper) Unpublished doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkDisabled: - (DBTEAMLOGPaperPublishedLinkDisabledType *)paperPublishedLinkDisabled; - -/// -/// Initializes union class with tag state of "paper_published_link_view". -/// -/// Description of the "paper_published_link_view" tag state: (paper) Viewed -/// published doc -/// -/// @param paperPublishedLinkView (paper) Viewed published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkView:(DBTEAMLOGPaperPublishedLinkViewType *)paperPublishedLinkView; - -/// -/// Initializes union class with tag state of "password_change". -/// -/// Description of the "password_change" tag state: (passwords) Changed password -/// -/// @param passwordChange (passwords) Changed password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordChange:(DBTEAMLOGPasswordChangeType *)passwordChange; - -/// -/// Initializes union class with tag state of "password_reset". -/// -/// Description of the "password_reset" tag state: (passwords) Reset password -/// -/// @param passwordReset (passwords) Reset password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordReset:(DBTEAMLOGPasswordResetType *)passwordReset; - -/// -/// Initializes union class with tag state of "password_reset_all". -/// -/// Description of the "password_reset_all" tag state: (passwords) Reset all -/// team member passwords -/// -/// @param passwordResetAll (passwords) Reset all team member passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetAll:(DBTEAMLOGPasswordResetAllType *)passwordResetAll; - -/// -/// Initializes union class with tag state of "classification_create_report". -/// -/// Description of the "classification_create_report" tag state: (reports) -/// Created Classification report -/// -/// @param classificationCreateReport (reports) Created Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReport: - (DBTEAMLOGClassificationCreateReportType *)classificationCreateReport; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_fail". -/// -/// Description of the "classification_create_report_fail" tag state: (reports) -/// Couldn't create Classification report -/// -/// @param classificationCreateReportFail (reports) Couldn't create -/// Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportFail: - (DBTEAMLOGClassificationCreateReportFailType *)classificationCreateReportFail; - -/// -/// Initializes union class with tag state of "emm_create_exceptions_report". -/// -/// Description of the "emm_create_exceptions_report" tag state: (reports) -/// Created EMM-excluded users report -/// -/// @param emmCreateExceptionsReport (reports) Created EMM-excluded users report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateExceptionsReport:(DBTEAMLOGEmmCreateExceptionsReportType *)emmCreateExceptionsReport; - -/// -/// Initializes union class with tag state of "emm_create_usage_report". -/// -/// Description of the "emm_create_usage_report" tag state: (reports) Created -/// EMM mobile app usage report -/// -/// @param emmCreateUsageReport (reports) Created EMM mobile app usage report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateUsageReport:(DBTEAMLOGEmmCreateUsageReportType *)emmCreateUsageReport; - -/// -/// Initializes union class with tag state of "export_members_report". -/// -/// Description of the "export_members_report" tag state: (reports) Created -/// member data report -/// -/// @param exportMembersReport (reports) Created member data report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReport:(DBTEAMLOGExportMembersReportType *)exportMembersReport; - -/// -/// Initializes union class with tag state of "export_members_report_fail". -/// -/// Description of the "export_members_report_fail" tag state: (reports) Failed -/// to create members data report -/// -/// @param exportMembersReportFail (reports) Failed to create members data -/// report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportFail:(DBTEAMLOGExportMembersReportFailType *)exportMembersReportFail; - -/// -/// Initializes union class with tag state of "external_sharing_create_report". -/// -/// Description of the "external_sharing_create_report" tag state: (reports) -/// Created External sharing report -/// -/// @param externalSharingCreateReport (reports) Created External sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingCreateReport: - (DBTEAMLOGExternalSharingCreateReportType *)externalSharingCreateReport; - -/// -/// Initializes union class with tag state of "external_sharing_report_failed". -/// -/// Description of the "external_sharing_report_failed" tag state: (reports) -/// Couldn't create External sharing report -/// -/// @param externalSharingReportFailed (reports) Couldn't create External -/// sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingReportFailed: - (DBTEAMLOGExternalSharingReportFailedType *)externalSharingReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_create_report". -/// -/// Description of the "no_expiration_link_gen_create_report" tag state: -/// (reports) Report created: Links created with no expiration -/// -/// @param noExpirationLinkGenCreateReport (reports) Report created: Links -/// created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenCreateReport: - (DBTEAMLOGNoExpirationLinkGenCreateReportType *)noExpirationLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_report_failed". -/// -/// Description of the "no_expiration_link_gen_report_failed" tag state: -/// (reports) Couldn't create report: Links created with no expiration -/// -/// @param noExpirationLinkGenReportFailed (reports) Couldn't create report: -/// Links created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenReportFailed: - (DBTEAMLOGNoExpirationLinkGenReportFailedType *)noExpirationLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_create_report". -/// -/// Description of the "no_password_link_gen_create_report" tag state: (reports) -/// Report created: Links created without passwords -/// -/// @param noPasswordLinkGenCreateReport (reports) Report created: Links created -/// without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenCreateReport: - (DBTEAMLOGNoPasswordLinkGenCreateReportType *)noPasswordLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_report_failed". -/// -/// Description of the "no_password_link_gen_report_failed" tag state: (reports) -/// Couldn't create report: Links created without passwords -/// -/// @param noPasswordLinkGenReportFailed (reports) Couldn't create report: Links -/// created without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenReportFailed: - (DBTEAMLOGNoPasswordLinkGenReportFailedType *)noPasswordLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_create_report". -/// -/// Description of the "no_password_link_view_create_report" tag state: -/// (reports) Report created: Views of links without passwords -/// -/// @param noPasswordLinkViewCreateReport (reports) Report created: Views of -/// links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewCreateReport: - (DBTEAMLOGNoPasswordLinkViewCreateReportType *)noPasswordLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_report_failed". -/// -/// Description of the "no_password_link_view_report_failed" tag state: -/// (reports) Couldn't create report: Views of links without passwords -/// -/// @param noPasswordLinkViewReportFailed (reports) Couldn't create report: -/// Views of links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewReportFailed: - (DBTEAMLOGNoPasswordLinkViewReportFailedType *)noPasswordLinkViewReportFailed; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_create_report". -/// -/// Description of the "outdated_link_view_create_report" tag state: (reports) -/// Report created: Views of old links -/// -/// @param outdatedLinkViewCreateReport (reports) Report created: Views of old -/// links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewCreateReport: - (DBTEAMLOGOutdatedLinkViewCreateReportType *)outdatedLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_report_failed". -/// -/// Description of the "outdated_link_view_report_failed" tag state: (reports) -/// Couldn't create report: Views of old links -/// -/// @param outdatedLinkViewReportFailed (reports) Couldn't create report: Views -/// of old links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewReportFailed: - (DBTEAMLOGOutdatedLinkViewReportFailedType *)outdatedLinkViewReportFailed; - -/// -/// Initializes union class with tag state of "paper_admin_export_start". -/// -/// Description of the "paper_admin_export_start" tag state: (reports) Exported -/// all team Paper docs -/// -/// @param paperAdminExportStart (reports) Exported all team Paper docs -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAdminExportStart:(DBTEAMLOGPaperAdminExportStartType *)paperAdminExportStart; - -/// -/// Initializes union class with tag state of "ransomware_alert_create_report". -/// -/// Description of the "ransomware_alert_create_report" tag state: (reports) -/// Created ransomware report -/// -/// @param ransomwareAlertCreateReport (reports) Created ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReport: - (DBTEAMLOGRansomwareAlertCreateReportType *)ransomwareAlertCreateReport; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_failed". -/// -/// Description of the "ransomware_alert_create_report_failed" tag state: -/// (reports) Couldn't generate ransomware report -/// -/// @param ransomwareAlertCreateReportFailed (reports) Couldn't generate -/// ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportFailed: - (DBTEAMLOGRansomwareAlertCreateReportFailedType *)ransomwareAlertCreateReportFailed; - -/// -/// Initializes union class with tag state of -/// "smart_sync_create_admin_privilege_report". -/// -/// Description of the "smart_sync_create_admin_privilege_report" tag state: -/// (reports) Created Smart Sync non-admin devices report -/// -/// @param smartSyncCreateAdminPrivilegeReport (reports) Created Smart Sync -/// non-admin devices report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncCreateAdminPrivilegeReport: - (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *)smartSyncCreateAdminPrivilegeReport; - -/// -/// Initializes union class with tag state of "team_activity_create_report". -/// -/// Description of the "team_activity_create_report" tag state: (reports) -/// Created team activity report -/// -/// @param teamActivityCreateReport (reports) Created team activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReport:(DBTEAMLOGTeamActivityCreateReportType *)teamActivityCreateReport; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_fail". -/// -/// Description of the "team_activity_create_report_fail" tag state: (reports) -/// Couldn't generate team activity report -/// -/// @param teamActivityCreateReportFail (reports) Couldn't generate team -/// activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportFail: - (DBTEAMLOGTeamActivityCreateReportFailType *)teamActivityCreateReportFail; - -/// -/// Initializes union class with tag state of "collection_share". -/// -/// Description of the "collection_share" tag state: (sharing) Shared album -/// -/// @param collectionShare (sharing) Shared album -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCollectionShare:(DBTEAMLOGCollectionShareType *)collectionShare; - -/// -/// Initializes union class with tag state of "file_transfers_file_add". -/// -/// Description of the "file_transfers_file_add" tag state: (sharing) Transfer -/// files added -/// -/// @param fileTransfersFileAdd (sharing) Transfer files added -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersFileAdd:(DBTEAMLOGFileTransfersFileAddType *)fileTransfersFileAdd; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_delete". -/// -/// Description of the "file_transfers_transfer_delete" tag state: (sharing) -/// Deleted transfer -/// -/// @param fileTransfersTransferDelete (sharing) Deleted transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDelete: - (DBTEAMLOGFileTransfersTransferDeleteType *)fileTransfersTransferDelete; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_download". -/// -/// Description of the "file_transfers_transfer_download" tag state: (sharing) -/// Transfer downloaded -/// -/// @param fileTransfersTransferDownload (sharing) Transfer downloaded -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDownload: - (DBTEAMLOGFileTransfersTransferDownloadType *)fileTransfersTransferDownload; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_send". -/// -/// Description of the "file_transfers_transfer_send" tag state: (sharing) Sent -/// transfer -/// -/// @param fileTransfersTransferSend (sharing) Sent transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferSend:(DBTEAMLOGFileTransfersTransferSendType *)fileTransfersTransferSend; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_view". -/// -/// Description of the "file_transfers_transfer_view" tag state: (sharing) -/// Viewed transfer -/// -/// @param fileTransfersTransferView (sharing) Viewed transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferView:(DBTEAMLOGFileTransfersTransferViewType *)fileTransfersTransferView; - -/// -/// Initializes union class with tag state of "note_acl_invite_only". -/// -/// Description of the "note_acl_invite_only" tag state: (sharing) Changed Paper -/// doc to invite-only (deprecated, no longer logged) -/// -/// @param noteAclInviteOnly (sharing) Changed Paper doc to invite-only -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclInviteOnly:(DBTEAMLOGNoteAclInviteOnlyType *)noteAclInviteOnly; - -/// -/// Initializes union class with tag state of "note_acl_link". -/// -/// Description of the "note_acl_link" tag state: (sharing) Changed Paper doc to -/// link-accessible (deprecated, no longer logged) -/// -/// @param noteAclLink (sharing) Changed Paper doc to link-accessible -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclLink:(DBTEAMLOGNoteAclLinkType *)noteAclLink; - -/// -/// Initializes union class with tag state of "note_acl_team_link". -/// -/// Description of the "note_acl_team_link" tag state: (sharing) Changed Paper -/// doc to link-accessible for team (deprecated, no longer logged) -/// -/// @param noteAclTeamLink (sharing) Changed Paper doc to link-accessible for -/// team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclTeamLink:(DBTEAMLOGNoteAclTeamLinkType *)noteAclTeamLink; - -/// -/// Initializes union class with tag state of "note_shared". -/// -/// Description of the "note_shared" tag state: (sharing) Shared Paper doc -/// (deprecated, no longer logged) -/// -/// @param noteShared (sharing) Shared Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShared:(DBTEAMLOGNoteSharedType *)noteShared; - -/// -/// Initializes union class with tag state of "note_share_receive". -/// -/// Description of the "note_share_receive" tag state: (sharing) Shared received -/// Paper doc (deprecated, no longer logged) -/// -/// @param noteShareReceive (sharing) Shared received Paper doc (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShareReceive:(DBTEAMLOGNoteShareReceiveType *)noteShareReceive; - -/// -/// Initializes union class with tag state of "open_note_shared". -/// -/// Description of the "open_note_shared" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @param openNoteShared (sharing) Opened shared Paper doc (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenNoteShared:(DBTEAMLOGOpenNoteSharedType *)openNoteShared; - -/// -/// Initializes union class with tag state of "replay_file_shared_link_created". -/// -/// Description of the "replay_file_shared_link_created" tag state: (sharing) -/// Created shared link in Replay -/// -/// @param replayFileSharedLinkCreated (sharing) Created shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkCreated: - (DBTEAMLOGReplayFileSharedLinkCreatedType *)replayFileSharedLinkCreated; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_modified". -/// -/// Description of the "replay_file_shared_link_modified" tag state: (sharing) -/// Modified shared link in Replay -/// -/// @param replayFileSharedLinkModified (sharing) Modified shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkModified: - (DBTEAMLOGReplayFileSharedLinkModifiedType *)replayFileSharedLinkModified; - -/// -/// Initializes union class with tag state of "replay_project_team_add". -/// -/// Description of the "replay_project_team_add" tag state: (sharing) Added -/// member to Replay Project -/// -/// @param replayProjectTeamAdd (sharing) Added member to Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamAdd:(DBTEAMLOGReplayProjectTeamAddType *)replayProjectTeamAdd; - -/// -/// Initializes union class with tag state of "replay_project_team_delete". -/// -/// Description of the "replay_project_team_delete" tag state: (sharing) Removed -/// member from Replay Project -/// -/// @param replayProjectTeamDelete (sharing) Removed member from Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamDelete:(DBTEAMLOGReplayProjectTeamDeleteType *)replayProjectTeamDelete; - -/// -/// Initializes union class with tag state of "sf_add_group". -/// -/// Description of the "sf_add_group" tag state: (sharing) Added team to shared -/// folder (deprecated, no longer logged) -/// -/// @param sfAddGroup (sharing) Added team to shared folder (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAddGroup:(DBTEAMLOGSfAddGroupType *)sfAddGroup; - -/// -/// Initializes union class with tag state of -/// "sf_allow_non_members_to_view_shared_links". -/// -/// Description of the "sf_allow_non_members_to_view_shared_links" tag state: -/// (sharing) Allowed non-collaborators to view links to files in shared folder -/// (deprecated, no longer logged) -/// -/// @param sfAllowNonMembersToViewSharedLinks (sharing) Allowed -/// non-collaborators to view links to files in shared folder (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAllowNonMembersToViewSharedLinks: - (DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *)sfAllowNonMembersToViewSharedLinks; - -/// -/// Initializes union class with tag state of "sf_external_invite_warn". -/// -/// Description of the "sf_external_invite_warn" tag state: (sharing) Set team -/// members to see warning before sharing folders outside team (deprecated, no -/// longer logged) -/// -/// @param sfExternalInviteWarn (sharing) Set team members to see warning before -/// sharing folders outside team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfExternalInviteWarn:(DBTEAMLOGSfExternalInviteWarnType *)sfExternalInviteWarn; - -/// -/// Initializes union class with tag state of "sf_fb_invite". -/// -/// Description of the "sf_fb_invite" tag state: (sharing) Invited Facebook -/// users to shared folder (deprecated, no longer logged) -/// -/// @param sfFbInvite (sharing) Invited Facebook users to shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInvite:(DBTEAMLOGSfFbInviteType *)sfFbInvite; - -/// -/// Initializes union class with tag state of "sf_fb_invite_change_role". -/// -/// Description of the "sf_fb_invite_change_role" tag state: (sharing) Changed -/// Facebook user's role in shared folder (deprecated, no longer logged) -/// -/// @param sfFbInviteChangeRole (sharing) Changed Facebook user's role in shared -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteChangeRole:(DBTEAMLOGSfFbInviteChangeRoleType *)sfFbInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_fb_uninvite". -/// -/// Description of the "sf_fb_uninvite" tag state: (sharing) Uninvited Facebook -/// user from shared folder (deprecated, no longer logged) -/// -/// @param sfFbUninvite (sharing) Uninvited Facebook user from shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbUninvite:(DBTEAMLOGSfFbUninviteType *)sfFbUninvite; - -/// -/// Initializes union class with tag state of "sf_invite_group". -/// -/// Description of the "sf_invite_group" tag state: (sharing) Invited group to -/// shared folder (deprecated, no longer logged) -/// -/// @param sfInviteGroup (sharing) Invited group to shared folder (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfInviteGroup:(DBTEAMLOGSfInviteGroupType *)sfInviteGroup; - -/// -/// Initializes union class with tag state of "sf_team_grant_access". -/// -/// Description of the "sf_team_grant_access" tag state: (sharing) Granted -/// access to shared folder (deprecated, no longer logged) -/// -/// @param sfTeamGrantAccess (sharing) Granted access to shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamGrantAccess:(DBTEAMLOGSfTeamGrantAccessType *)sfTeamGrantAccess; - -/// -/// Initializes union class with tag state of "sf_team_invite". -/// -/// Description of the "sf_team_invite" tag state: (sharing) Invited team -/// members to shared folder (deprecated, replaced by 'Invited user to Dropbox -/// and added them to shared file/folder') -/// -/// @param sfTeamInvite (sharing) Invited team members to shared folder -/// (deprecated, replaced by 'Invited user to Dropbox and added them to shared -/// file/folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInvite:(DBTEAMLOGSfTeamInviteType *)sfTeamInvite; - -/// -/// Initializes union class with tag state of "sf_team_invite_change_role". -/// -/// Description of the "sf_team_invite_change_role" tag state: (sharing) Changed -/// team member's role in shared folder (deprecated, no longer logged) -/// -/// @param sfTeamInviteChangeRole (sharing) Changed team member's role in shared -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteChangeRole:(DBTEAMLOGSfTeamInviteChangeRoleType *)sfTeamInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_team_join". -/// -/// Description of the "sf_team_join" tag state: (sharing) Joined team member's -/// shared folder (deprecated, no longer logged) -/// -/// @param sfTeamJoin (sharing) Joined team member's shared folder (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoin:(DBTEAMLOGSfTeamJoinType *)sfTeamJoin; - -/// -/// Initializes union class with tag state of "sf_team_join_from_oob_link". -/// -/// Description of the "sf_team_join_from_oob_link" tag state: (sharing) Joined -/// team member's shared folder from link (deprecated, no longer logged) -/// -/// @param sfTeamJoinFromOobLink (sharing) Joined team member's shared folder -/// from link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinFromOobLink:(DBTEAMLOGSfTeamJoinFromOobLinkType *)sfTeamJoinFromOobLink; - -/// -/// Initializes union class with tag state of "sf_team_uninvite". -/// -/// Description of the "sf_team_uninvite" tag state: (sharing) Unshared folder -/// with team member (deprecated, replaced by 'Removed invitee from shared -/// file/folder before invite was accepted') -/// -/// @param sfTeamUninvite (sharing) Unshared folder with team member -/// (deprecated, replaced by 'Removed invitee from shared file/folder before -/// invite was accepted') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamUninvite:(DBTEAMLOGSfTeamUninviteType *)sfTeamUninvite; - -/// -/// Initializes union class with tag state of "shared_content_add_invitees". -/// -/// Description of the "shared_content_add_invitees" tag state: (sharing) -/// Invited user to Dropbox and added them to shared file/folder -/// -/// @param sharedContentAddInvitees (sharing) Invited user to Dropbox and added -/// them to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddInvitees:(DBTEAMLOGSharedContentAddInviteesType *)sharedContentAddInvitees; - -/// -/// Initializes union class with tag state of "shared_content_add_link_expiry". -/// -/// Description of the "shared_content_add_link_expiry" tag state: (sharing) -/// Added expiration date to link for shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentAddLinkExpiry (sharing) Added expiration date to link -/// for shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkExpiry: - (DBTEAMLOGSharedContentAddLinkExpiryType *)sharedContentAddLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_password". -/// -/// Description of the "shared_content_add_link_password" tag state: (sharing) -/// Added password to link for shared file/folder (deprecated, no longer logged) -/// -/// @param sharedContentAddLinkPassword (sharing) Added password to link for -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkPassword: - (DBTEAMLOGSharedContentAddLinkPasswordType *)sharedContentAddLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_add_member". -/// -/// Description of the "shared_content_add_member" tag state: (sharing) Added -/// users and/or groups to shared file/folder -/// -/// @param sharedContentAddMember (sharing) Added users and/or groups to shared -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddMember:(DBTEAMLOGSharedContentAddMemberType *)sharedContentAddMember; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_downloads_policy". -/// -/// Description of the "shared_content_change_downloads_policy" tag state: -/// (sharing) Changed whether members can download shared file/folder -/// (deprecated, no longer logged) -/// -/// @param sharedContentChangeDownloadsPolicy (sharing) Changed whether members -/// can download shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeDownloadsPolicy: - (DBTEAMLOGSharedContentChangeDownloadsPolicyType *)sharedContentChangeDownloadsPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_invitee_role". -/// -/// Description of the "shared_content_change_invitee_role" tag state: (sharing) -/// Changed access type of invitee to shared file/folder before invite was -/// accepted -/// -/// @param sharedContentChangeInviteeRole (sharing) Changed access type of -/// invitee to shared file/folder before invite was accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeInviteeRole: - (DBTEAMLOGSharedContentChangeInviteeRoleType *)sharedContentChangeInviteeRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_audience". -/// -/// Description of the "shared_content_change_link_audience" tag state: -/// (sharing) Changed link audience of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentChangeLinkAudience (sharing) Changed link audience of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkAudience: - (DBTEAMLOGSharedContentChangeLinkAudienceType *)sharedContentChangeLinkAudience; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_expiry". -/// -/// Description of the "shared_content_change_link_expiry" tag state: (sharing) -/// Changed link expiration of shared file/folder (deprecated, no longer logged) -/// -/// @param sharedContentChangeLinkExpiry (sharing) Changed link expiration of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkExpiry: - (DBTEAMLOGSharedContentChangeLinkExpiryType *)sharedContentChangeLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_password". -/// -/// Description of the "shared_content_change_link_password" tag state: -/// (sharing) Changed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentChangeLinkPassword (sharing) Changed link password of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkPassword: - (DBTEAMLOGSharedContentChangeLinkPasswordType *)sharedContentChangeLinkPassword; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_member_role". -/// -/// Description of the "shared_content_change_member_role" tag state: (sharing) -/// Changed access type of shared file/folder member -/// -/// @param sharedContentChangeMemberRole (sharing) Changed access type of shared -/// file/folder member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeMemberRole: - (DBTEAMLOGSharedContentChangeMemberRoleType *)sharedContentChangeMemberRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_viewer_info_policy". -/// -/// Description of the "shared_content_change_viewer_info_policy" tag state: -/// (sharing) Changed whether members can see who viewed shared file/folder -/// -/// @param sharedContentChangeViewerInfoPolicy (sharing) Changed whether members -/// can see who viewed shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeViewerInfoPolicy: - (DBTEAMLOGSharedContentChangeViewerInfoPolicyType *)sharedContentChangeViewerInfoPolicy; - -/// -/// Initializes union class with tag state of "shared_content_claim_invitation". -/// -/// Description of the "shared_content_claim_invitation" tag state: (sharing) -/// Acquired membership of shared file/folder by accepting invite -/// -/// @param sharedContentClaimInvitation (sharing) Acquired membership of shared -/// file/folder by accepting invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentClaimInvitation: - (DBTEAMLOGSharedContentClaimInvitationType *)sharedContentClaimInvitation; - -/// -/// Initializes union class with tag state of "shared_content_copy". -/// -/// Description of the "shared_content_copy" tag state: (sharing) Copied shared -/// file/folder to own Dropbox -/// -/// @param sharedContentCopy (sharing) Copied shared file/folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentCopy:(DBTEAMLOGSharedContentCopyType *)sharedContentCopy; - -/// -/// Initializes union class with tag state of "shared_content_download". -/// -/// Description of the "shared_content_download" tag state: (sharing) Downloaded -/// shared file/folder -/// -/// @param sharedContentDownload (sharing) Downloaded shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentDownload:(DBTEAMLOGSharedContentDownloadType *)sharedContentDownload; - -/// -/// Initializes union class with tag state of -/// "shared_content_relinquish_membership". -/// -/// Description of the "shared_content_relinquish_membership" tag state: -/// (sharing) Left shared file/folder -/// -/// @param sharedContentRelinquishMembership (sharing) Left shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRelinquishMembership: - (DBTEAMLOGSharedContentRelinquishMembershipType *)sharedContentRelinquishMembership; - -/// -/// Initializes union class with tag state of "shared_content_remove_invitees". -/// -/// Description of the "shared_content_remove_invitees" tag state: (sharing) -/// Removed invitee from shared file/folder before invite was accepted -/// -/// @param sharedContentRemoveInvitees (sharing) Removed invitee from shared -/// file/folder before invite was accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveInvitees: - (DBTEAMLOGSharedContentRemoveInviteesType *)sharedContentRemoveInvitees; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_expiry". -/// -/// Description of the "shared_content_remove_link_expiry" tag state: (sharing) -/// Removed link expiration date of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentRemoveLinkExpiry (sharing) Removed link expiration date -/// of shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkExpiry: - (DBTEAMLOGSharedContentRemoveLinkExpiryType *)sharedContentRemoveLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_password". -/// -/// Description of the "shared_content_remove_link_password" tag state: -/// (sharing) Removed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @param sharedContentRemoveLinkPassword (sharing) Removed link password of -/// shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkPassword: - (DBTEAMLOGSharedContentRemoveLinkPasswordType *)sharedContentRemoveLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_remove_member". -/// -/// Description of the "shared_content_remove_member" tag state: (sharing) -/// Removed user/group from shared file/folder -/// -/// @param sharedContentRemoveMember (sharing) Removed user/group from shared -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveMember:(DBTEAMLOGSharedContentRemoveMemberType *)sharedContentRemoveMember; - -/// -/// Initializes union class with tag state of "shared_content_request_access". -/// -/// Description of the "shared_content_request_access" tag state: (sharing) -/// Requested access to shared file/folder -/// -/// @param sharedContentRequestAccess (sharing) Requested access to shared -/// file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRequestAccess: - (DBTEAMLOGSharedContentRequestAccessType *)sharedContentRequestAccess; - -/// -/// Initializes union class with tag state of "shared_content_restore_invitees". -/// -/// Description of the "shared_content_restore_invitees" tag state: (sharing) -/// Restored shared file/folder invitees -/// -/// @param sharedContentRestoreInvitees (sharing) Restored shared file/folder -/// invitees -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreInvitees: - (DBTEAMLOGSharedContentRestoreInviteesType *)sharedContentRestoreInvitees; - -/// -/// Initializes union class with tag state of "shared_content_restore_member". -/// -/// Description of the "shared_content_restore_member" tag state: (sharing) -/// Restored users and/or groups to membership of shared file/folder -/// -/// @param sharedContentRestoreMember (sharing) Restored users and/or groups to -/// membership of shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreMember: - (DBTEAMLOGSharedContentRestoreMemberType *)sharedContentRestoreMember; - -/// -/// Initializes union class with tag state of "shared_content_unshare". -/// -/// Description of the "shared_content_unshare" tag state: (sharing) Unshared -/// file/folder by clearing membership -/// -/// @param sharedContentUnshare (sharing) Unshared file/folder by clearing -/// membership -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentUnshare:(DBTEAMLOGSharedContentUnshareType *)sharedContentUnshare; - -/// -/// Initializes union class with tag state of "shared_content_view". -/// -/// Description of the "shared_content_view" tag state: (sharing) Previewed -/// shared file/folder -/// -/// @param sharedContentView (sharing) Previewed shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentView:(DBTEAMLOGSharedContentViewType *)sharedContentView; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_link_policy". -/// -/// Description of the "shared_folder_change_link_policy" tag state: (sharing) -/// Changed who can access shared folder via link -/// -/// @param sharedFolderChangeLinkPolicy (sharing) Changed who can access shared -/// folder via link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeLinkPolicy: - (DBTEAMLOGSharedFolderChangeLinkPolicyType *)sharedFolderChangeLinkPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_inheritance_policy". -/// -/// Description of the "shared_folder_change_members_inheritance_policy" tag -/// state: (sharing) Changed whether shared folder inherits members from parent -/// folder -/// -/// @param sharedFolderChangeMembersInheritancePolicy (sharing) Changed whether -/// shared folder inherits members from parent folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersInheritancePolicy: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *)sharedFolderChangeMembersInheritancePolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_management_policy". -/// -/// Description of the "shared_folder_change_members_management_policy" tag -/// state: (sharing) Changed who can add/remove members of shared folder -/// -/// @param sharedFolderChangeMembersManagementPolicy (sharing) Changed who can -/// add/remove members of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersManagementPolicy: - (DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *)sharedFolderChangeMembersManagementPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_policy". -/// -/// Description of the "shared_folder_change_members_policy" tag state: -/// (sharing) Changed who can become member of shared folder -/// -/// @param sharedFolderChangeMembersPolicy (sharing) Changed who can become -/// member of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersPolicy: - (DBTEAMLOGSharedFolderChangeMembersPolicyType *)sharedFolderChangeMembersPolicy; - -/// -/// Initializes union class with tag state of "shared_folder_create". -/// -/// Description of the "shared_folder_create" tag state: (sharing) Created -/// shared folder -/// -/// @param sharedFolderCreate (sharing) Created shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderCreate:(DBTEAMLOGSharedFolderCreateType *)sharedFolderCreate; - -/// -/// Initializes union class with tag state of -/// "shared_folder_decline_invitation". -/// -/// Description of the "shared_folder_decline_invitation" tag state: (sharing) -/// Declined team member's invite to shared folder -/// -/// @param sharedFolderDeclineInvitation (sharing) Declined team member's invite -/// to shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderDeclineInvitation: - (DBTEAMLOGSharedFolderDeclineInvitationType *)sharedFolderDeclineInvitation; - -/// -/// Initializes union class with tag state of "shared_folder_mount". -/// -/// Description of the "shared_folder_mount" tag state: (sharing) Added shared -/// folder to own Dropbox -/// -/// @param sharedFolderMount (sharing) Added shared folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMount:(DBTEAMLOGSharedFolderMountType *)sharedFolderMount; - -/// -/// Initializes union class with tag state of "shared_folder_nest". -/// -/// Description of the "shared_folder_nest" tag state: (sharing) Changed parent -/// of shared folder -/// -/// @param sharedFolderNest (sharing) Changed parent of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderNest:(DBTEAMLOGSharedFolderNestType *)sharedFolderNest; - -/// -/// Initializes union class with tag state of -/// "shared_folder_transfer_ownership". -/// -/// Description of the "shared_folder_transfer_ownership" tag state: (sharing) -/// Transferred ownership of shared folder to another member -/// -/// @param sharedFolderTransferOwnership (sharing) Transferred ownership of -/// shared folder to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderTransferOwnership: - (DBTEAMLOGSharedFolderTransferOwnershipType *)sharedFolderTransferOwnership; - -/// -/// Initializes union class with tag state of "shared_folder_unmount". -/// -/// Description of the "shared_folder_unmount" tag state: (sharing) Deleted -/// shared folder from Dropbox -/// -/// @param sharedFolderUnmount (sharing) Deleted shared folder from Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderUnmount:(DBTEAMLOGSharedFolderUnmountType *)sharedFolderUnmount; - -/// -/// Initializes union class with tag state of "shared_link_add_expiry". -/// -/// Description of the "shared_link_add_expiry" tag state: (sharing) Added -/// shared link expiration date -/// -/// @param sharedLinkAddExpiry (sharing) Added shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAddExpiry:(DBTEAMLOGSharedLinkAddExpiryType *)sharedLinkAddExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_expiry". -/// -/// Description of the "shared_link_change_expiry" tag state: (sharing) Changed -/// shared link expiration date -/// -/// @param sharedLinkChangeExpiry (sharing) Changed shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeExpiry:(DBTEAMLOGSharedLinkChangeExpiryType *)sharedLinkChangeExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_visibility". -/// -/// Description of the "shared_link_change_visibility" tag state: (sharing) -/// Changed visibility of shared link -/// -/// @param sharedLinkChangeVisibility (sharing) Changed visibility of shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeVisibility: - (DBTEAMLOGSharedLinkChangeVisibilityType *)sharedLinkChangeVisibility; - -/// -/// Initializes union class with tag state of "shared_link_copy". -/// -/// Description of the "shared_link_copy" tag state: (sharing) Added file/folder -/// to Dropbox from shared link -/// -/// @param sharedLinkCopy (sharing) Added file/folder to Dropbox from shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCopy:(DBTEAMLOGSharedLinkCopyType *)sharedLinkCopy; - -/// -/// Initializes union class with tag state of "shared_link_create". -/// -/// Description of the "shared_link_create" tag state: (sharing) Created shared -/// link -/// -/// @param sharedLinkCreate (sharing) Created shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCreate:(DBTEAMLOGSharedLinkCreateType *)sharedLinkCreate; - -/// -/// Initializes union class with tag state of "shared_link_disable". -/// -/// Description of the "shared_link_disable" tag state: (sharing) Removed shared -/// link -/// -/// @param sharedLinkDisable (sharing) Removed shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDisable:(DBTEAMLOGSharedLinkDisableType *)sharedLinkDisable; - -/// -/// Initializes union class with tag state of "shared_link_download". -/// -/// Description of the "shared_link_download" tag state: (sharing) Downloaded -/// file/folder from shared link -/// -/// @param sharedLinkDownload (sharing) Downloaded file/folder from shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDownload:(DBTEAMLOGSharedLinkDownloadType *)sharedLinkDownload; - -/// -/// Initializes union class with tag state of "shared_link_remove_expiry". -/// -/// Description of the "shared_link_remove_expiry" tag state: (sharing) Removed -/// shared link expiration date -/// -/// @param sharedLinkRemoveExpiry (sharing) Removed shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkRemoveExpiry:(DBTEAMLOGSharedLinkRemoveExpiryType *)sharedLinkRemoveExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_expiration". -/// -/// Description of the "shared_link_settings_add_expiration" tag state: -/// (sharing) Added an expiration date to the shared link -/// -/// @param sharedLinkSettingsAddExpiration (sharing) Added an expiration date to -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddExpiration: - (DBTEAMLOGSharedLinkSettingsAddExpirationType *)sharedLinkSettingsAddExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_password". -/// -/// Description of the "shared_link_settings_add_password" tag state: (sharing) -/// Added a password to the shared link -/// -/// @param sharedLinkSettingsAddPassword (sharing) Added a password to the -/// shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddPassword: - (DBTEAMLOGSharedLinkSettingsAddPasswordType *)sharedLinkSettingsAddPassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_disabled". -/// -/// Description of the "shared_link_settings_allow_download_disabled" tag state: -/// (sharing) Disabled downloads -/// -/// @param sharedLinkSettingsAllowDownloadDisabled (sharing) Disabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadDisabled: - (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *)sharedLinkSettingsAllowDownloadDisabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_enabled". -/// -/// Description of the "shared_link_settings_allow_download_enabled" tag state: -/// (sharing) Enabled downloads -/// -/// @param sharedLinkSettingsAllowDownloadEnabled (sharing) Enabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadEnabled: - (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *)sharedLinkSettingsAllowDownloadEnabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_audience". -/// -/// Description of the "shared_link_settings_change_audience" tag state: -/// (sharing) Changed the audience of the shared link -/// -/// @param sharedLinkSettingsChangeAudience (sharing) Changed the audience of -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeAudience: - (DBTEAMLOGSharedLinkSettingsChangeAudienceType *)sharedLinkSettingsChangeAudience; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_expiration". -/// -/// Description of the "shared_link_settings_change_expiration" tag state: -/// (sharing) Changed the expiration date of the shared link -/// -/// @param sharedLinkSettingsChangeExpiration (sharing) Changed the expiration -/// date of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeExpiration: - (DBTEAMLOGSharedLinkSettingsChangeExpirationType *)sharedLinkSettingsChangeExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_password". -/// -/// Description of the "shared_link_settings_change_password" tag state: -/// (sharing) Changed the password of the shared link -/// -/// @param sharedLinkSettingsChangePassword (sharing) Changed the password of -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangePassword: - (DBTEAMLOGSharedLinkSettingsChangePasswordType *)sharedLinkSettingsChangePassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_expiration". -/// -/// Description of the "shared_link_settings_remove_expiration" tag state: -/// (sharing) Removed the expiration date from the shared link -/// -/// @param sharedLinkSettingsRemoveExpiration (sharing) Removed the expiration -/// date from the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemoveExpiration: - (DBTEAMLOGSharedLinkSettingsRemoveExpirationType *)sharedLinkSettingsRemoveExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_password". -/// -/// Description of the "shared_link_settings_remove_password" tag state: -/// (sharing) Removed the password from the shared link -/// -/// @param sharedLinkSettingsRemovePassword (sharing) Removed the password from -/// the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemovePassword: - (DBTEAMLOGSharedLinkSettingsRemovePasswordType *)sharedLinkSettingsRemovePassword; - -/// -/// Initializes union class with tag state of "shared_link_share". -/// -/// Description of the "shared_link_share" tag state: (sharing) Added members as -/// audience of shared link -/// -/// @param sharedLinkShare (sharing) Added members as audience of shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkShare:(DBTEAMLOGSharedLinkShareType *)sharedLinkShare; - -/// -/// Initializes union class with tag state of "shared_link_view". -/// -/// Description of the "shared_link_view" tag state: (sharing) Opened shared -/// link -/// -/// @param sharedLinkView (sharing) Opened shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkView:(DBTEAMLOGSharedLinkViewType *)sharedLinkView; - -/// -/// Initializes union class with tag state of "shared_note_opened". -/// -/// Description of the "shared_note_opened" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @param sharedNoteOpened (sharing) Opened shared Paper doc (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedNoteOpened:(DBTEAMLOGSharedNoteOpenedType *)sharedNoteOpened; - -/// -/// Initializes union class with tag state of "shmodel_disable_downloads". -/// -/// Description of the "shmodel_disable_downloads" tag state: (sharing) Disabled -/// downloads for link (deprecated, no longer logged) -/// -/// @param shmodelDisableDownloads (sharing) Disabled downloads for link -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelDisableDownloads:(DBTEAMLOGShmodelDisableDownloadsType *)shmodelDisableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_enable_downloads". -/// -/// Description of the "shmodel_enable_downloads" tag state: (sharing) Enabled -/// downloads for link (deprecated, no longer logged) -/// -/// @param shmodelEnableDownloads (sharing) Enabled downloads for link -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelEnableDownloads:(DBTEAMLOGShmodelEnableDownloadsType *)shmodelEnableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_group_share". -/// -/// Description of the "shmodel_group_share" tag state: (sharing) Shared link -/// with group (deprecated, no longer logged) -/// -/// @param shmodelGroupShare (sharing) Shared link with group (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelGroupShare:(DBTEAMLOGShmodelGroupShareType *)shmodelGroupShare; - -/// -/// Initializes union class with tag state of "showcase_access_granted". -/// -/// Description of the "showcase_access_granted" tag state: (showcase) Granted -/// access to showcase -/// -/// @param showcaseAccessGranted (showcase) Granted access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAccessGranted:(DBTEAMLOGShowcaseAccessGrantedType *)showcaseAccessGranted; - -/// -/// Initializes union class with tag state of "showcase_add_member". -/// -/// Description of the "showcase_add_member" tag state: (showcase) Added member -/// to showcase -/// -/// @param showcaseAddMember (showcase) Added member to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAddMember:(DBTEAMLOGShowcaseAddMemberType *)showcaseAddMember; - -/// -/// Initializes union class with tag state of "showcase_archived". -/// -/// Description of the "showcase_archived" tag state: (showcase) Archived -/// showcase -/// -/// @param showcaseArchived (showcase) Archived showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseArchived:(DBTEAMLOGShowcaseArchivedType *)showcaseArchived; - -/// -/// Initializes union class with tag state of "showcase_created". -/// -/// Description of the "showcase_created" tag state: (showcase) Created showcase -/// -/// @param showcaseCreated (showcase) Created showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseCreated:(DBTEAMLOGShowcaseCreatedType *)showcaseCreated; - -/// -/// Initializes union class with tag state of "showcase_delete_comment". -/// -/// Description of the "showcase_delete_comment" tag state: (showcase) Deleted -/// showcase comment -/// -/// @param showcaseDeleteComment (showcase) Deleted showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDeleteComment:(DBTEAMLOGShowcaseDeleteCommentType *)showcaseDeleteComment; - -/// -/// Initializes union class with tag state of "showcase_edited". -/// -/// Description of the "showcase_edited" tag state: (showcase) Edited showcase -/// -/// @param showcaseEdited (showcase) Edited showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEdited:(DBTEAMLOGShowcaseEditedType *)showcaseEdited; - -/// -/// Initializes union class with tag state of "showcase_edit_comment". -/// -/// Description of the "showcase_edit_comment" tag state: (showcase) Edited -/// showcase comment -/// -/// @param showcaseEditComment (showcase) Edited showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditComment:(DBTEAMLOGShowcaseEditCommentType *)showcaseEditComment; - -/// -/// Initializes union class with tag state of "showcase_file_added". -/// -/// Description of the "showcase_file_added" tag state: (showcase) Added file to -/// showcase -/// -/// @param showcaseFileAdded (showcase) Added file to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileAdded:(DBTEAMLOGShowcaseFileAddedType *)showcaseFileAdded; - -/// -/// Initializes union class with tag state of "showcase_file_download". -/// -/// Description of the "showcase_file_download" tag state: (showcase) Downloaded -/// file from showcase -/// -/// @param showcaseFileDownload (showcase) Downloaded file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileDownload:(DBTEAMLOGShowcaseFileDownloadType *)showcaseFileDownload; - -/// -/// Initializes union class with tag state of "showcase_file_removed". -/// -/// Description of the "showcase_file_removed" tag state: (showcase) Removed -/// file from showcase -/// -/// @param showcaseFileRemoved (showcase) Removed file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileRemoved:(DBTEAMLOGShowcaseFileRemovedType *)showcaseFileRemoved; - -/// -/// Initializes union class with tag state of "showcase_file_view". -/// -/// Description of the "showcase_file_view" tag state: (showcase) Viewed file in -/// showcase -/// -/// @param showcaseFileView (showcase) Viewed file in showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileView:(DBTEAMLOGShowcaseFileViewType *)showcaseFileView; - -/// -/// Initializes union class with tag state of "showcase_permanently_deleted". -/// -/// Description of the "showcase_permanently_deleted" tag state: (showcase) -/// Permanently deleted showcase -/// -/// @param showcasePermanentlyDeleted (showcase) Permanently deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePermanentlyDeleted: - (DBTEAMLOGShowcasePermanentlyDeletedType *)showcasePermanentlyDeleted; - -/// -/// Initializes union class with tag state of "showcase_post_comment". -/// -/// Description of the "showcase_post_comment" tag state: (showcase) Added -/// showcase comment -/// -/// @param showcasePostComment (showcase) Added showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePostComment:(DBTEAMLOGShowcasePostCommentType *)showcasePostComment; - -/// -/// Initializes union class with tag state of "showcase_remove_member". -/// -/// Description of the "showcase_remove_member" tag state: (showcase) Removed -/// member from showcase -/// -/// @param showcaseRemoveMember (showcase) Removed member from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRemoveMember:(DBTEAMLOGShowcaseRemoveMemberType *)showcaseRemoveMember; - -/// -/// Initializes union class with tag state of "showcase_renamed". -/// -/// Description of the "showcase_renamed" tag state: (showcase) Renamed showcase -/// -/// @param showcaseRenamed (showcase) Renamed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRenamed:(DBTEAMLOGShowcaseRenamedType *)showcaseRenamed; - -/// -/// Initializes union class with tag state of "showcase_request_access". -/// -/// Description of the "showcase_request_access" tag state: (showcase) Requested -/// access to showcase -/// -/// @param showcaseRequestAccess (showcase) Requested access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRequestAccess:(DBTEAMLOGShowcaseRequestAccessType *)showcaseRequestAccess; - -/// -/// Initializes union class with tag state of "showcase_resolve_comment". -/// -/// Description of the "showcase_resolve_comment" tag state: (showcase) Resolved -/// showcase comment -/// -/// @param showcaseResolveComment (showcase) Resolved showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseResolveComment:(DBTEAMLOGShowcaseResolveCommentType *)showcaseResolveComment; - -/// -/// Initializes union class with tag state of "showcase_restored". -/// -/// Description of the "showcase_restored" tag state: (showcase) Unarchived -/// showcase -/// -/// @param showcaseRestored (showcase) Unarchived showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRestored:(DBTEAMLOGShowcaseRestoredType *)showcaseRestored; - -/// -/// Initializes union class with tag state of "showcase_trashed". -/// -/// Description of the "showcase_trashed" tag state: (showcase) Deleted showcase -/// -/// @param showcaseTrashed (showcase) Deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashed:(DBTEAMLOGShowcaseTrashedType *)showcaseTrashed; - -/// -/// Initializes union class with tag state of "showcase_trashed_deprecated". -/// -/// Description of the "showcase_trashed_deprecated" tag state: (showcase) -/// Deleted showcase (old version) (deprecated, replaced by 'Deleted showcase') -/// -/// @param showcaseTrashedDeprecated (showcase) Deleted showcase (old version) -/// (deprecated, replaced by 'Deleted showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDeprecated:(DBTEAMLOGShowcaseTrashedDeprecatedType *)showcaseTrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_unresolve_comment". -/// -/// Description of the "showcase_unresolve_comment" tag state: (showcase) -/// Unresolved showcase comment -/// -/// @param showcaseUnresolveComment (showcase) Unresolved showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUnresolveComment:(DBTEAMLOGShowcaseUnresolveCommentType *)showcaseUnresolveComment; - -/// -/// Initializes union class with tag state of "showcase_untrashed". -/// -/// Description of the "showcase_untrashed" tag state: (showcase) Restored -/// showcase -/// -/// @param showcaseUntrashed (showcase) Restored showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashed:(DBTEAMLOGShowcaseUntrashedType *)showcaseUntrashed; - -/// -/// Initializes union class with tag state of "showcase_untrashed_deprecated". -/// -/// Description of the "showcase_untrashed_deprecated" tag state: (showcase) -/// Restored showcase (old version) (deprecated, replaced by 'Restored -/// showcase') -/// -/// @param showcaseUntrashedDeprecated (showcase) Restored showcase (old -/// version) (deprecated, replaced by 'Restored showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDeprecated: - (DBTEAMLOGShowcaseUntrashedDeprecatedType *)showcaseUntrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_view". -/// -/// Description of the "showcase_view" tag state: (showcase) Viewed showcase -/// -/// @param showcaseView (showcase) Viewed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseView:(DBTEAMLOGShowcaseViewType *)showcaseView; - -/// -/// Initializes union class with tag state of "sso_add_cert". -/// -/// Description of the "sso_add_cert" tag state: (sso) Added X.509 certificate -/// for SSO -/// -/// @param ssoAddCert (sso) Added X.509 certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddCert:(DBTEAMLOGSsoAddCertType *)ssoAddCert; - -/// -/// Initializes union class with tag state of "sso_add_login_url". -/// -/// Description of the "sso_add_login_url" tag state: (sso) Added sign-in URL -/// for SSO -/// -/// @param ssoAddLoginUrl (sso) Added sign-in URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLoginUrl:(DBTEAMLOGSsoAddLoginUrlType *)ssoAddLoginUrl; - -/// -/// Initializes union class with tag state of "sso_add_logout_url". -/// -/// Description of the "sso_add_logout_url" tag state: (sso) Added sign-out URL -/// for SSO -/// -/// @param ssoAddLogoutUrl (sso) Added sign-out URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLogoutUrl:(DBTEAMLOGSsoAddLogoutUrlType *)ssoAddLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_cert". -/// -/// Description of the "sso_change_cert" tag state: (sso) Changed X.509 -/// certificate for SSO -/// -/// @param ssoChangeCert (sso) Changed X.509 certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeCert:(DBTEAMLOGSsoChangeCertType *)ssoChangeCert; - -/// -/// Initializes union class with tag state of "sso_change_login_url". -/// -/// Description of the "sso_change_login_url" tag state: (sso) Changed sign-in -/// URL for SSO -/// -/// @param ssoChangeLoginUrl (sso) Changed sign-in URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLoginUrl:(DBTEAMLOGSsoChangeLoginUrlType *)ssoChangeLoginUrl; - -/// -/// Initializes union class with tag state of "sso_change_logout_url". -/// -/// Description of the "sso_change_logout_url" tag state: (sso) Changed sign-out -/// URL for SSO -/// -/// @param ssoChangeLogoutUrl (sso) Changed sign-out URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLogoutUrl:(DBTEAMLOGSsoChangeLogoutUrlType *)ssoChangeLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_saml_identity_mode". -/// -/// Description of the "sso_change_saml_identity_mode" tag state: (sso) Changed -/// SAML identity mode for SSO -/// -/// @param ssoChangeSamlIdentityMode (sso) Changed SAML identity mode for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeSamlIdentityMode:(DBTEAMLOGSsoChangeSamlIdentityModeType *)ssoChangeSamlIdentityMode; - -/// -/// Initializes union class with tag state of "sso_remove_cert". -/// -/// Description of the "sso_remove_cert" tag state: (sso) Removed X.509 -/// certificate for SSO -/// -/// @param ssoRemoveCert (sso) Removed X.509 certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveCert:(DBTEAMLOGSsoRemoveCertType *)ssoRemoveCert; - -/// -/// Initializes union class with tag state of "sso_remove_login_url". -/// -/// Description of the "sso_remove_login_url" tag state: (sso) Removed sign-in -/// URL for SSO -/// -/// @param ssoRemoveLoginUrl (sso) Removed sign-in URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLoginUrl:(DBTEAMLOGSsoRemoveLoginUrlType *)ssoRemoveLoginUrl; - -/// -/// Initializes union class with tag state of "sso_remove_logout_url". -/// -/// Description of the "sso_remove_logout_url" tag state: (sso) Removed sign-out -/// URL for SSO -/// -/// @param ssoRemoveLogoutUrl (sso) Removed sign-out URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLogoutUrl:(DBTEAMLOGSsoRemoveLogoutUrlType *)ssoRemoveLogoutUrl; - -/// -/// Initializes union class with tag state of "team_folder_change_status". -/// -/// Description of the "team_folder_change_status" tag state: (team_folders) -/// Changed archival status of team folder -/// -/// @param teamFolderChangeStatus (team_folders) Changed archival status of team -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderChangeStatus:(DBTEAMLOGTeamFolderChangeStatusType *)teamFolderChangeStatus; - -/// -/// Initializes union class with tag state of "team_folder_create". -/// -/// Description of the "team_folder_create" tag state: (team_folders) Created -/// team folder in active status -/// -/// @param teamFolderCreate (team_folders) Created team folder in active status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderCreate:(DBTEAMLOGTeamFolderCreateType *)teamFolderCreate; - -/// -/// Initializes union class with tag state of "team_folder_downgrade". -/// -/// Description of the "team_folder_downgrade" tag state: (team_folders) -/// Downgraded team folder to regular shared folder -/// -/// @param teamFolderDowngrade (team_folders) Downgraded team folder to regular -/// shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderDowngrade:(DBTEAMLOGTeamFolderDowngradeType *)teamFolderDowngrade; - -/// -/// Initializes union class with tag state of "team_folder_permanently_delete". -/// -/// Description of the "team_folder_permanently_delete" tag state: -/// (team_folders) Permanently deleted archived team folder -/// -/// @param teamFolderPermanentlyDelete (team_folders) Permanently deleted -/// archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderPermanentlyDelete: - (DBTEAMLOGTeamFolderPermanentlyDeleteType *)teamFolderPermanentlyDelete; - -/// -/// Initializes union class with tag state of "team_folder_rename". -/// -/// Description of the "team_folder_rename" tag state: (team_folders) Renamed -/// active/archived team folder -/// -/// @param teamFolderRename (team_folders) Renamed active/archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderRename:(DBTEAMLOGTeamFolderRenameType *)teamFolderRename; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_settings_changed". -/// -/// Description of the "team_selective_sync_settings_changed" tag state: -/// (team_folders) Changed sync default -/// -/// @param teamSelectiveSyncSettingsChanged (team_folders) Changed sync default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncSettingsChanged: - (DBTEAMLOGTeamSelectiveSyncSettingsChangedType *)teamSelectiveSyncSettingsChanged; - -/// -/// Initializes union class with tag state of "account_capture_change_policy". -/// -/// Description of the "account_capture_change_policy" tag state: -/// (team_policies) Changed account capture setting on team domain -/// -/// @param accountCaptureChangePolicy (team_policies) Changed account capture -/// setting on team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangePolicy: - (DBTEAMLOGAccountCaptureChangePolicyType *)accountCaptureChangePolicy; - -/// -/// Initializes union class with tag state of "admin_email_reminders_changed". -/// -/// Description of the "admin_email_reminders_changed" tag state: -/// (team_policies) Changed admin reminder settings for requests to join the -/// team -/// -/// @param adminEmailRemindersChanged (team_policies) Changed admin reminder -/// settings for requests to join the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminEmailRemindersChanged: - (DBTEAMLOGAdminEmailRemindersChangedType *)adminEmailRemindersChanged; - -/// -/// Initializes union class with tag state of "allow_download_disabled". -/// -/// Description of the "allow_download_disabled" tag state: (team_policies) -/// Disabled downloads (deprecated, no longer logged) -/// -/// @param allowDownloadDisabled (team_policies) Disabled downloads (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadDisabled:(DBTEAMLOGAllowDownloadDisabledType *)allowDownloadDisabled; - -/// -/// Initializes union class with tag state of "allow_download_enabled". -/// -/// Description of the "allow_download_enabled" tag state: (team_policies) -/// Enabled downloads (deprecated, no longer logged) -/// -/// @param allowDownloadEnabled (team_policies) Enabled downloads (deprecated, -/// no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadEnabled:(DBTEAMLOGAllowDownloadEnabledType *)allowDownloadEnabled; - -/// -/// Initializes union class with tag state of "app_permissions_changed". -/// -/// Description of the "app_permissions_changed" tag state: (team_policies) -/// Changed app permissions -/// -/// @param appPermissionsChanged (team_policies) Changed app permissions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppPermissionsChanged:(DBTEAMLOGAppPermissionsChangedType *)appPermissionsChanged; - -/// -/// Initializes union class with tag state of "camera_uploads_policy_changed". -/// -/// Description of the "camera_uploads_policy_changed" tag state: -/// (team_policies) Changed camera uploads setting for team -/// -/// @param cameraUploadsPolicyChanged (team_policies) Changed camera uploads -/// setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCameraUploadsPolicyChanged: - (DBTEAMLOGCameraUploadsPolicyChangedType *)cameraUploadsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "capture_transcript_policy_changed". -/// -/// Description of the "capture_transcript_policy_changed" tag state: -/// (team_policies) Changed Capture transcription policy for team -/// -/// @param captureTranscriptPolicyChanged (team_policies) Changed Capture -/// transcription policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCaptureTranscriptPolicyChanged: - (DBTEAMLOGCaptureTranscriptPolicyChangedType *)captureTranscriptPolicyChanged; - -/// -/// Initializes union class with tag state of "classification_change_policy". -/// -/// Description of the "classification_change_policy" tag state: (team_policies) -/// Changed classification policy for team -/// -/// @param classificationChangePolicy (team_policies) Changed classification -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationChangePolicy: - (DBTEAMLOGClassificationChangePolicyType *)classificationChangePolicy; - -/// -/// Initializes union class with tag state of "computer_backup_policy_changed". -/// -/// Description of the "computer_backup_policy_changed" tag state: -/// (team_policies) Changed computer backup policy for team -/// -/// @param computerBackupPolicyChanged (team_policies) Changed computer backup -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComputerBackupPolicyChanged: - (DBTEAMLOGComputerBackupPolicyChangedType *)computerBackupPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "content_administration_policy_changed". -/// -/// Description of the "content_administration_policy_changed" tag state: -/// (team_policies) Changed content management setting -/// -/// @param contentAdministrationPolicyChanged (team_policies) Changed content -/// management setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdministrationPolicyChanged: - (DBTEAMLOGContentAdministrationPolicyChangedType *)contentAdministrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_change_policy". -/// -/// Description of the "data_placement_restriction_change_policy" tag state: -/// (team_policies) Set restrictions on data center locations where team data -/// resides -/// -/// @param dataPlacementRestrictionChangePolicy (team_policies) Set restrictions -/// on data center locations where team data resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionChangePolicy: - (DBTEAMLOGDataPlacementRestrictionChangePolicyType *)dataPlacementRestrictionChangePolicy; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_satisfy_policy". -/// -/// Description of the "data_placement_restriction_satisfy_policy" tag state: -/// (team_policies) Completed restrictions on data center locations where team -/// data resides -/// -/// @param dataPlacementRestrictionSatisfyPolicy (team_policies) Completed -/// restrictions on data center locations where team data resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionSatisfyPolicy: - (DBTEAMLOGDataPlacementRestrictionSatisfyPolicyType *)dataPlacementRestrictionSatisfyPolicy; - -/// -/// Initializes union class with tag state of "device_approvals_add_exception". -/// -/// Description of the "device_approvals_add_exception" tag state: -/// (team_policies) Added members to device approvals exception list -/// -/// @param deviceApprovalsAddException (team_policies) Added members to device -/// approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsAddException: - (DBTEAMLOGDeviceApprovalsAddExceptionType *)deviceApprovalsAddException; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_desktop_policy". -/// -/// Description of the "device_approvals_change_desktop_policy" tag state: -/// (team_policies) Set/removed limit on number of computers member can link to -/// team Dropbox account -/// -/// @param deviceApprovalsChangeDesktopPolicy (team_policies) Set/removed limit -/// on number of computers member can link to team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeDesktopPolicy: - (DBTEAMLOGDeviceApprovalsChangeDesktopPolicyType *)deviceApprovalsChangeDesktopPolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_mobile_policy". -/// -/// Description of the "device_approvals_change_mobile_policy" tag state: -/// (team_policies) Set/removed limit on number of mobile devices member can -/// link to team Dropbox account -/// -/// @param deviceApprovalsChangeMobilePolicy (team_policies) Set/removed limit -/// on number of mobile devices member can link to team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeMobilePolicy: - (DBTEAMLOGDeviceApprovalsChangeMobilePolicyType *)deviceApprovalsChangeMobilePolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_overage_action". -/// -/// Description of the "device_approvals_change_overage_action" tag state: -/// (team_policies) Changed device approvals setting when member is over limit -/// -/// @param deviceApprovalsChangeOverageAction (team_policies) Changed device -/// approvals setting when member is over limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeOverageAction: - (DBTEAMLOGDeviceApprovalsChangeOverageActionType *)deviceApprovalsChangeOverageAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_unlink_action". -/// -/// Description of the "device_approvals_change_unlink_action" tag state: -/// (team_policies) Changed device approvals setting when member unlinks -/// approved device -/// -/// @param deviceApprovalsChangeUnlinkAction (team_policies) Changed device -/// approvals setting when member unlinks approved device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeUnlinkAction: - (DBTEAMLOGDeviceApprovalsChangeUnlinkActionType *)deviceApprovalsChangeUnlinkAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_remove_exception". -/// -/// Description of the "device_approvals_remove_exception" tag state: -/// (team_policies) Removed members from device approvals exception list -/// -/// @param deviceApprovalsRemoveException (team_policies) Removed members from -/// device approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsRemoveException: - (DBTEAMLOGDeviceApprovalsRemoveExceptionType *)deviceApprovalsRemoveException; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_add_members". -/// -/// Description of the "directory_restrictions_add_members" tag state: -/// (team_policies) Added members to directory restrictions list -/// -/// @param directoryRestrictionsAddMembers (team_policies) Added members to -/// directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsAddMembers: - (DBTEAMLOGDirectoryRestrictionsAddMembersType *)directoryRestrictionsAddMembers; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_remove_members". -/// -/// Description of the "directory_restrictions_remove_members" tag state: -/// (team_policies) Removed members from directory restrictions list -/// -/// @param directoryRestrictionsRemoveMembers (team_policies) Removed members -/// from directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsRemoveMembers: - (DBTEAMLOGDirectoryRestrictionsRemoveMembersType *)directoryRestrictionsRemoveMembers; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_policy_changed". -/// -/// Description of the "dropbox_passwords_policy_changed" tag state: -/// (team_policies) Changed Dropbox Passwords policy for team -/// -/// @param dropboxPasswordsPolicyChanged (team_policies) Changed Dropbox -/// Passwords policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsPolicyChanged: - (DBTEAMLOGDropboxPasswordsPolicyChangedType *)dropboxPasswordsPolicyChanged; - -/// -/// Initializes union class with tag state of "email_ingest_policy_changed". -/// -/// Description of the "email_ingest_policy_changed" tag state: (team_policies) -/// Changed email to Dropbox policy for team -/// -/// @param emailIngestPolicyChanged (team_policies) Changed email to Dropbox -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestPolicyChanged:(DBTEAMLOGEmailIngestPolicyChangedType *)emailIngestPolicyChanged; - -/// -/// Initializes union class with tag state of "emm_add_exception". -/// -/// Description of the "emm_add_exception" tag state: (team_policies) Added -/// members to EMM exception list -/// -/// @param emmAddException (team_policies) Added members to EMM exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmAddException:(DBTEAMLOGEmmAddExceptionType *)emmAddException; - -/// -/// Initializes union class with tag state of "emm_change_policy". -/// -/// Description of the "emm_change_policy" tag state: (team_policies) -/// Enabled/disabled enterprise mobility management for members -/// -/// @param emmChangePolicy (team_policies) Enabled/disabled enterprise mobility -/// management for members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmChangePolicy:(DBTEAMLOGEmmChangePolicyType *)emmChangePolicy; - -/// -/// Initializes union class with tag state of "emm_remove_exception". -/// -/// Description of the "emm_remove_exception" tag state: (team_policies) Removed -/// members from EMM exception list -/// -/// @param emmRemoveException (team_policies) Removed members from EMM exception -/// list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRemoveException:(DBTEAMLOGEmmRemoveExceptionType *)emmRemoveException; - -/// -/// Initializes union class with tag state of -/// "extended_version_history_change_policy". -/// -/// Description of the "extended_version_history_change_policy" tag state: -/// (team_policies) Accepted/opted out of extended version history -/// -/// @param extendedVersionHistoryChangePolicy (team_policies) Accepted/opted out -/// of extended version history -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtendedVersionHistoryChangePolicy: - (DBTEAMLOGExtendedVersionHistoryChangePolicyType *)extendedVersionHistoryChangePolicy; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_policy_changed". -/// -/// Description of the "external_drive_backup_policy_changed" tag state: -/// (team_policies) Changed external drive backup policy for team -/// -/// @param externalDriveBackupPolicyChanged (team_policies) Changed external -/// drive backup policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupPolicyChanged: - (DBTEAMLOGExternalDriveBackupPolicyChangedType *)externalDriveBackupPolicyChanged; - -/// -/// Initializes union class with tag state of "file_comments_change_policy". -/// -/// Description of the "file_comments_change_policy" tag state: (team_policies) -/// Enabled/disabled commenting on team files -/// -/// @param fileCommentsChangePolicy (team_policies) Enabled/disabled commenting -/// on team files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommentsChangePolicy:(DBTEAMLOGFileCommentsChangePolicyType *)fileCommentsChangePolicy; - -/// -/// Initializes union class with tag state of "file_locking_policy_changed". -/// -/// Description of the "file_locking_policy_changed" tag state: (team_policies) -/// Changed file locking policy for team -/// -/// @param fileLockingPolicyChanged (team_policies) Changed file locking policy -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingPolicyChanged:(DBTEAMLOGFileLockingPolicyChangedType *)fileLockingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "file_provider_migration_policy_changed". -/// -/// Description of the "file_provider_migration_policy_changed" tag state: -/// (team_policies) Changed File Provider Migration policy for team -/// -/// @param fileProviderMigrationPolicyChanged (team_policies) Changed File -/// Provider Migration policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileProviderMigrationPolicyChanged: - (DBTEAMLOGFileProviderMigrationPolicyChangedType *)fileProviderMigrationPolicyChanged; - -/// -/// Initializes union class with tag state of "file_requests_change_policy". -/// -/// Description of the "file_requests_change_policy" tag state: (team_policies) -/// Enabled/disabled file requests -/// -/// @param fileRequestsChangePolicy (team_policies) Enabled/disabled file -/// requests -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsChangePolicy:(DBTEAMLOGFileRequestsChangePolicyType *)fileRequestsChangePolicy; - -/// -/// Initializes union class with tag state of "file_requests_emails_enabled". -/// -/// Description of the "file_requests_emails_enabled" tag state: (team_policies) -/// Enabled file request emails for everyone (deprecated, no longer logged) -/// -/// @param fileRequestsEmailsEnabled (team_policies) Enabled file request emails -/// for everyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsEnabled:(DBTEAMLOGFileRequestsEmailsEnabledType *)fileRequestsEmailsEnabled; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_restricted_to_team_only". -/// -/// Description of the "file_requests_emails_restricted_to_team_only" tag state: -/// (team_policies) Enabled file request emails for team (deprecated, no longer -/// logged) -/// -/// @param fileRequestsEmailsRestrictedToTeamOnly (team_policies) Enabled file -/// request emails for team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsRestrictedToTeamOnly: - (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *)fileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Initializes union class with tag state of "file_transfers_policy_changed". -/// -/// Description of the "file_transfers_policy_changed" tag state: -/// (team_policies) Changed file transfers policy for team -/// -/// @param fileTransfersPolicyChanged (team_policies) Changed file transfers -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersPolicyChanged: - (DBTEAMLOGFileTransfersPolicyChangedType *)fileTransfersPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "folder_link_restriction_policy_changed". -/// -/// Description of the "folder_link_restriction_policy_changed" tag state: -/// (team_policies) Changed folder link restrictions policy for team -/// -/// @param folderLinkRestrictionPolicyChanged (team_policies) Changed folder -/// link restrictions policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderLinkRestrictionPolicyChanged: - (DBTEAMLOGFolderLinkRestrictionPolicyChangedType *)folderLinkRestrictionPolicyChanged; - -/// -/// Initializes union class with tag state of "google_sso_change_policy". -/// -/// Description of the "google_sso_change_policy" tag state: (team_policies) -/// Enabled/disabled Google single sign-on for team -/// -/// @param googleSsoChangePolicy (team_policies) Enabled/disabled Google single -/// sign-on for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleSsoChangePolicy:(DBTEAMLOGGoogleSsoChangePolicyType *)googleSsoChangePolicy; - -/// -/// Initializes union class with tag state of -/// "group_user_management_change_policy". -/// -/// Description of the "group_user_management_change_policy" tag state: -/// (team_policies) Changed who can create groups -/// -/// @param groupUserManagementChangePolicy (team_policies) Changed who can -/// create groups -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupUserManagementChangePolicy: - (DBTEAMLOGGroupUserManagementChangePolicyType *)groupUserManagementChangePolicy; - -/// -/// Initializes union class with tag state of "integration_policy_changed". -/// -/// Description of the "integration_policy_changed" tag state: (team_policies) -/// Changed integration policy for team -/// -/// @param integrationPolicyChanged (team_policies) Changed integration policy -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationPolicyChanged:(DBTEAMLOGIntegrationPolicyChangedType *)integrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "invite_acceptance_email_policy_changed". -/// -/// Description of the "invite_acceptance_email_policy_changed" tag state: -/// (team_policies) Changed invite accept email policy for team -/// -/// @param inviteAcceptanceEmailPolicyChanged (team_policies) Changed invite -/// accept email policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteAcceptanceEmailPolicyChanged: - (DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *)inviteAcceptanceEmailPolicyChanged; - -/// -/// Initializes union class with tag state of "member_requests_change_policy". -/// -/// Description of the "member_requests_change_policy" tag state: -/// (team_policies) Changed whether users can find team when not invited -/// -/// @param memberRequestsChangePolicy (team_policies) Changed whether users can -/// find team when not invited -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRequestsChangePolicy: - (DBTEAMLOGMemberRequestsChangePolicyType *)memberRequestsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_send_invite_policy_changed". -/// -/// Description of the "member_send_invite_policy_changed" tag state: -/// (team_policies) Changed member send invite policy for team -/// -/// @param memberSendInvitePolicyChanged (team_policies) Changed member send -/// invite policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSendInvitePolicyChanged: - (DBTEAMLOGMemberSendInvitePolicyChangedType *)memberSendInvitePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_exception". -/// -/// Description of the "member_space_limits_add_exception" tag state: -/// (team_policies) Added members to member space limit exception list -/// -/// @param memberSpaceLimitsAddException (team_policies) Added members to member -/// space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddException: - (DBTEAMLOGMemberSpaceLimitsAddExceptionType *)memberSpaceLimitsAddException; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_caps_type_policy". -/// -/// Description of the "member_space_limits_change_caps_type_policy" tag state: -/// (team_policies) Changed member space limit type for team -/// -/// @param memberSpaceLimitsChangeCapsTypePolicy (team_policies) Changed member -/// space limit type for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCapsTypePolicy: - (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *)memberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_policy". -/// -/// Description of the "member_space_limits_change_policy" tag state: -/// (team_policies) Changed team default member space limit -/// -/// @param memberSpaceLimitsChangePolicy (team_policies) Changed team default -/// member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangePolicy: - (DBTEAMLOGMemberSpaceLimitsChangePolicyType *)memberSpaceLimitsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_exception". -/// -/// Description of the "member_space_limits_remove_exception" tag state: -/// (team_policies) Removed members from member space limit exception list -/// -/// @param memberSpaceLimitsRemoveException (team_policies) Removed members from -/// member space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveException: - (DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *)memberSpaceLimitsRemoveException; - -/// -/// Initializes union class with tag state of -/// "member_suggestions_change_policy". -/// -/// Description of the "member_suggestions_change_policy" tag state: -/// (team_policies) Enabled/disabled option for team members to suggest people -/// to add to team -/// -/// @param memberSuggestionsChangePolicy (team_policies) Enabled/disabled option -/// for team members to suggest people to add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestionsChangePolicy: - (DBTEAMLOGMemberSuggestionsChangePolicyType *)memberSuggestionsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "microsoft_office_addin_change_policy". -/// -/// Description of the "microsoft_office_addin_change_policy" tag state: -/// (team_policies) Enabled/disabled Microsoft Office add-in -/// -/// @param microsoftOfficeAddinChangePolicy (team_policies) Enabled/disabled -/// Microsoft Office add-in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMicrosoftOfficeAddinChangePolicy: - (DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *)microsoftOfficeAddinChangePolicy; - -/// -/// Initializes union class with tag state of "network_control_change_policy". -/// -/// Description of the "network_control_change_policy" tag state: -/// (team_policies) Enabled/disabled network control -/// -/// @param networkControlChangePolicy (team_policies) Enabled/disabled network -/// control -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNetworkControlChangePolicy: - (DBTEAMLOGNetworkControlChangePolicyType *)networkControlChangePolicy; - -/// -/// Initializes union class with tag state of "paper_change_deployment_policy". -/// -/// Description of the "paper_change_deployment_policy" tag state: -/// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to -/// all members or to specific members -/// -/// @param paperChangeDeploymentPolicy (team_policies) Changed whether Dropbox -/// Paper, when enabled, is deployed to all members or to specific members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeDeploymentPolicy: - (DBTEAMLOGPaperChangeDeploymentPolicyType *)paperChangeDeploymentPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_link_policy". -/// -/// Description of the "paper_change_member_link_policy" tag state: -/// (team_policies) Changed whether non-members can view Paper docs with link -/// (deprecated, no longer logged) -/// -/// @param paperChangeMemberLinkPolicy (team_policies) Changed whether -/// non-members can view Paper docs with link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberLinkPolicy: - (DBTEAMLOGPaperChangeMemberLinkPolicyType *)paperChangeMemberLinkPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_policy". -/// -/// Description of the "paper_change_member_policy" tag state: (team_policies) -/// Changed whether members can share Paper docs outside team, and if docs are -/// accessible only by team members or anyone by default -/// -/// @param paperChangeMemberPolicy (team_policies) Changed whether members can -/// share Paper docs outside team, and if docs are accessible only by team -/// members or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberPolicy:(DBTEAMLOGPaperChangeMemberPolicyType *)paperChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "paper_change_policy". -/// -/// Description of the "paper_change_policy" tag state: (team_policies) -/// Enabled/disabled Dropbox Paper for team -/// -/// @param paperChangePolicy (team_policies) Enabled/disabled Dropbox Paper for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangePolicy:(DBTEAMLOGPaperChangePolicyType *)paperChangePolicy; - -/// -/// Initializes union class with tag state of -/// "paper_default_folder_policy_changed". -/// -/// Description of the "paper_default_folder_policy_changed" tag state: -/// (team_policies) Changed Paper Default Folder Policy setting for team -/// -/// @param paperDefaultFolderPolicyChanged (team_policies) Changed Paper Default -/// Folder Policy setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDefaultFolderPolicyChanged: - (DBTEAMLOGPaperDefaultFolderPolicyChangedType *)paperDefaultFolderPolicyChanged; - -/// -/// Initializes union class with tag state of "paper_desktop_policy_changed". -/// -/// Description of the "paper_desktop_policy_changed" tag state: (team_policies) -/// Enabled/disabled Paper Desktop for team -/// -/// @param paperDesktopPolicyChanged (team_policies) Enabled/disabled Paper -/// Desktop for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDesktopPolicyChanged:(DBTEAMLOGPaperDesktopPolicyChangedType *)paperDesktopPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_addition". -/// -/// Description of the "paper_enabled_users_group_addition" tag state: -/// (team_policies) Added users to Paper-enabled users list -/// -/// @param paperEnabledUsersGroupAddition (team_policies) Added users to -/// Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupAddition: - (DBTEAMLOGPaperEnabledUsersGroupAdditionType *)paperEnabledUsersGroupAddition; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_removal". -/// -/// Description of the "paper_enabled_users_group_removal" tag state: -/// (team_policies) Removed users from Paper-enabled users list -/// -/// @param paperEnabledUsersGroupRemoval (team_policies) Removed users from -/// Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupRemoval: - (DBTEAMLOGPaperEnabledUsersGroupRemovalType *)paperEnabledUsersGroupRemoval; - -/// -/// Initializes union class with tag state of -/// "password_strength_requirements_change_policy". -/// -/// Description of the "password_strength_requirements_change_policy" tag state: -/// (team_policies) Changed team password strength requirements -/// -/// @param passwordStrengthRequirementsChangePolicy (team_policies) Changed team -/// password strength requirements -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordStrengthRequirementsChangePolicy: - (DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *)passwordStrengthRequirementsChangePolicy; - -/// -/// Initializes union class with tag state of "permanent_delete_change_policy". -/// -/// Description of the "permanent_delete_change_policy" tag state: -/// (team_policies) Enabled/disabled ability of team members to permanently -/// delete content -/// -/// @param permanentDeleteChangePolicy (team_policies) Enabled/disabled ability -/// of team members to permanently delete content -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermanentDeleteChangePolicy: - (DBTEAMLOGPermanentDeleteChangePolicyType *)permanentDeleteChangePolicy; - -/// -/// Initializes union class with tag state of "reseller_support_change_policy". -/// -/// Description of the "reseller_support_change_policy" tag state: -/// (team_policies) Enabled/disabled reseller support -/// -/// @param resellerSupportChangePolicy (team_policies) Enabled/disabled reseller -/// support -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportChangePolicy: - (DBTEAMLOGResellerSupportChangePolicyType *)resellerSupportChangePolicy; - -/// -/// Initializes union class with tag state of "rewind_policy_changed". -/// -/// Description of the "rewind_policy_changed" tag state: (team_policies) -/// Changed Rewind policy for team -/// -/// @param rewindPolicyChanged (team_policies) Changed Rewind policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindPolicyChanged:(DBTEAMLOGRewindPolicyChangedType *)rewindPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "send_for_signature_policy_changed". -/// -/// Description of the "send_for_signature_policy_changed" tag state: -/// (team_policies) Changed send for signature policy for team -/// -/// @param sendForSignaturePolicyChanged (team_policies) Changed send for -/// signature policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSendForSignaturePolicyChanged: - (DBTEAMLOGSendForSignaturePolicyChangedType *)sendForSignaturePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "sharing_change_folder_join_policy". -/// -/// Description of the "sharing_change_folder_join_policy" tag state: -/// (team_policies) Changed whether team members can join shared folders owned -/// outside team -/// -/// @param sharingChangeFolderJoinPolicy (team_policies) Changed whether team -/// members can join shared folders owned outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeFolderJoinPolicy: - (DBTEAMLOGSharingChangeFolderJoinPolicyType *)sharingChangeFolderJoinPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// Description of the "sharing_change_link_allow_change_expiration_policy" tag -/// state: (team_policies) Changed the allow remove or change expiration policy -/// for the links shared outside of the team -/// -/// @param sharingChangeLinkAllowChangeExpirationPolicy (team_policies) Changed -/// the allow remove or change expiration policy for the links shared outside of -/// the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkAllowChangeExpirationPolicy: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *)sharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_default_expiration_policy". -/// -/// Description of the "sharing_change_link_default_expiration_policy" tag -/// state: (team_policies) Changed the default expiration for the links shared -/// outside of the team -/// -/// @param sharingChangeLinkDefaultExpirationPolicy (team_policies) Changed the -/// default expiration for the links shared outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkDefaultExpirationPolicy: - (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *)sharingChangeLinkDefaultExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_enforce_password_policy". -/// -/// Description of the "sharing_change_link_enforce_password_policy" tag state: -/// (team_policies) Changed the password requirement for the links shared -/// outside of the team -/// -/// @param sharingChangeLinkEnforcePasswordPolicy (team_policies) Changed the -/// password requirement for the links shared outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkEnforcePasswordPolicy: - (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *)sharingChangeLinkEnforcePasswordPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_link_policy". -/// -/// Description of the "sharing_change_link_policy" tag state: (team_policies) -/// Changed whether members can share links outside team, and if links are -/// accessible only by team members or anyone by default -/// -/// @param sharingChangeLinkPolicy (team_policies) Changed whether members can -/// share links outside team, and if links are accessible only by team members -/// or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkPolicy:(DBTEAMLOGSharingChangeLinkPolicyType *)sharingChangeLinkPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_member_policy". -/// -/// Description of the "sharing_change_member_policy" tag state: (team_policies) -/// Changed whether members can share files/folders outside team -/// -/// @param sharingChangeMemberPolicy (team_policies) Changed whether members can -/// share files/folders outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeMemberPolicy:(DBTEAMLOGSharingChangeMemberPolicyType *)sharingChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_download_policy". -/// -/// Description of the "showcase_change_download_policy" tag state: -/// (team_policies) Enabled/disabled downloading files from Dropbox Showcase for -/// team -/// -/// @param showcaseChangeDownloadPolicy (team_policies) Enabled/disabled -/// downloading files from Dropbox Showcase for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeDownloadPolicy: - (DBTEAMLOGShowcaseChangeDownloadPolicyType *)showcaseChangeDownloadPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_enabled_policy". -/// -/// Description of the "showcase_change_enabled_policy" tag state: -/// (team_policies) Enabled/disabled Dropbox Showcase for team -/// -/// @param showcaseChangeEnabledPolicy (team_policies) Enabled/disabled Dropbox -/// Showcase for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeEnabledPolicy: - (DBTEAMLOGShowcaseChangeEnabledPolicyType *)showcaseChangeEnabledPolicy; - -/// -/// Initializes union class with tag state of -/// "showcase_change_external_sharing_policy". -/// -/// Description of the "showcase_change_external_sharing_policy" tag state: -/// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for -/// team -/// -/// @param showcaseChangeExternalSharingPolicy (team_policies) Enabled/disabled -/// sharing Dropbox Showcase externally for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeExternalSharingPolicy: - (DBTEAMLOGShowcaseChangeExternalSharingPolicyType *)showcaseChangeExternalSharingPolicy; - -/// -/// Initializes union class with tag state of -/// "smarter_smart_sync_policy_changed". -/// -/// Description of the "smarter_smart_sync_policy_changed" tag state: -/// (team_policies) Changed automatic Smart Sync setting for team -/// -/// @param smarterSmartSyncPolicyChanged (team_policies) Changed automatic Smart -/// Sync setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmarterSmartSyncPolicyChanged: - (DBTEAMLOGSmarterSmartSyncPolicyChangedType *)smarterSmartSyncPolicyChanged; - -/// -/// Initializes union class with tag state of "smart_sync_change_policy". -/// -/// Description of the "smart_sync_change_policy" tag state: (team_policies) -/// Changed default Smart Sync setting for team members -/// -/// @param smartSyncChangePolicy (team_policies) Changed default Smart Sync -/// setting for team members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncChangePolicy:(DBTEAMLOGSmartSyncChangePolicyType *)smartSyncChangePolicy; - -/// -/// Initializes union class with tag state of "smart_sync_not_opt_out". -/// -/// Description of the "smart_sync_not_opt_out" tag state: (team_policies) Opted -/// team into Smart Sync -/// -/// @param smartSyncNotOptOut (team_policies) Opted team into Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncNotOptOut:(DBTEAMLOGSmartSyncNotOptOutType *)smartSyncNotOptOut; - -/// -/// Initializes union class with tag state of "smart_sync_opt_out". -/// -/// Description of the "smart_sync_opt_out" tag state: (team_policies) Opted -/// team out of Smart Sync -/// -/// @param smartSyncOptOut (team_policies) Opted team out of Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncOptOut:(DBTEAMLOGSmartSyncOptOutType *)smartSyncOptOut; - -/// -/// Initializes union class with tag state of "sso_change_policy". -/// -/// Description of the "sso_change_policy" tag state: (team_policies) Changed -/// single sign-on setting for team -/// -/// @param ssoChangePolicy (team_policies) Changed single sign-on setting for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangePolicy:(DBTEAMLOGSsoChangePolicyType *)ssoChangePolicy; - -/// -/// Initializes union class with tag state of "team_branding_policy_changed". -/// -/// Description of the "team_branding_policy_changed" tag state: (team_policies) -/// Changed team branding policy for team -/// -/// @param teamBrandingPolicyChanged (team_policies) Changed team branding -/// policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamBrandingPolicyChanged:(DBTEAMLOGTeamBrandingPolicyChangedType *)teamBrandingPolicyChanged; - -/// -/// Initializes union class with tag state of "team_extensions_policy_changed". -/// -/// Description of the "team_extensions_policy_changed" tag state: -/// (team_policies) Changed App Integrations setting for team -/// -/// @param teamExtensionsPolicyChanged (team_policies) Changed App Integrations -/// setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExtensionsPolicyChanged: - (DBTEAMLOGTeamExtensionsPolicyChangedType *)teamExtensionsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_policy_changed". -/// -/// Description of the "team_selective_sync_policy_changed" tag state: -/// (team_policies) Enabled/disabled Team Selective Sync for team -/// -/// @param teamSelectiveSyncPolicyChanged (team_policies) Enabled/disabled Team -/// Selective Sync for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncPolicyChanged: - (DBTEAMLOGTeamSelectiveSyncPolicyChangedType *)teamSelectiveSyncPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_sharing_whitelist_subjects_changed". -/// -/// Description of the "team_sharing_whitelist_subjects_changed" tag state: -/// (team_policies) Edited the approved list for sharing externally -/// -/// @param teamSharingWhitelistSubjectsChanged (team_policies) Edited the -/// approved list for sharing externally -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharingWhitelistSubjectsChanged: - (DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *)teamSharingWhitelistSubjectsChanged; - -/// -/// Initializes union class with tag state of "tfa_add_exception". -/// -/// Description of the "tfa_add_exception" tag state: (team_policies) Added -/// members to two factor authentication exception list -/// -/// @param tfaAddException (team_policies) Added members to two factor -/// authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddException:(DBTEAMLOGTfaAddExceptionType *)tfaAddException; - -/// -/// Initializes union class with tag state of "tfa_change_policy". -/// -/// Description of the "tfa_change_policy" tag state: (team_policies) Changed -/// two-step verification setting for team -/// -/// @param tfaChangePolicy (team_policies) Changed two-step verification setting -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangePolicy:(DBTEAMLOGTfaChangePolicyType *)tfaChangePolicy; - -/// -/// Initializes union class with tag state of "tfa_remove_exception". -/// -/// Description of the "tfa_remove_exception" tag state: (team_policies) Removed -/// members from two factor authentication exception list -/// -/// @param tfaRemoveException (team_policies) Removed members from two factor -/// authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveException:(DBTEAMLOGTfaRemoveExceptionType *)tfaRemoveException; - -/// -/// Initializes union class with tag state of "two_account_change_policy". -/// -/// Description of the "two_account_change_policy" tag state: (team_policies) -/// Enabled/disabled option for members to link personal Dropbox account and -/// team account to same computer -/// -/// @param twoAccountChangePolicy (team_policies) Enabled/disabled option for -/// members to link personal Dropbox account and team account to same computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoAccountChangePolicy:(DBTEAMLOGTwoAccountChangePolicyType *)twoAccountChangePolicy; - -/// -/// Initializes union class with tag state of "viewer_info_policy_changed". -/// -/// Description of the "viewer_info_policy_changed" tag state: (team_policies) -/// Changed team policy for viewer info -/// -/// @param viewerInfoPolicyChanged (team_policies) Changed team policy for -/// viewer info -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerInfoPolicyChanged:(DBTEAMLOGViewerInfoPolicyChangedType *)viewerInfoPolicyChanged; - -/// -/// Initializes union class with tag state of "watermarking_policy_changed". -/// -/// Description of the "watermarking_policy_changed" tag state: (team_policies) -/// Changed watermarking policy for team -/// -/// @param watermarkingPolicyChanged (team_policies) Changed watermarking policy -/// for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWatermarkingPolicyChanged:(DBTEAMLOGWatermarkingPolicyChangedType *)watermarkingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_active_session_limit". -/// -/// Description of the "web_sessions_change_active_session_limit" tag state: -/// (team_policies) Changed limit on active sessions per member -/// -/// @param webSessionsChangeActiveSessionLimit (team_policies) Changed limit on -/// active sessions per member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeActiveSessionLimit: - (DBTEAMLOGWebSessionsChangeActiveSessionLimitType *)webSessionsChangeActiveSessionLimit; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_fixed_length_policy". -/// -/// Description of the "web_sessions_change_fixed_length_policy" tag state: -/// (team_policies) Changed how long members can stay signed in to Dropbox.com -/// -/// @param webSessionsChangeFixedLengthPolicy (team_policies) Changed how long -/// members can stay signed in to Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeFixedLengthPolicy: - (DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *)webSessionsChangeFixedLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_idle_length_policy". -/// -/// Description of the "web_sessions_change_idle_length_policy" tag state: -/// (team_policies) Changed how long team members can be idle while signed in to -/// Dropbox.com -/// -/// @param webSessionsChangeIdleLengthPolicy (team_policies) Changed how long -/// team members can be idle while signed in to Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeIdleLengthPolicy: - (DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *)webSessionsChangeIdleLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_successful". -/// -/// Description of the "data_residency_migration_request_successful" tag state: -/// (team_profile) Requested data residency migration for team data -/// -/// @param dataResidencyMigrationRequestSuccessful (team_profile) Requested data -/// residency migration for team data -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestSuccessful: - (DBTEAMLOGDataResidencyMigrationRequestSuccessfulType *)dataResidencyMigrationRequestSuccessful; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_unsuccessful". -/// -/// Description of the "data_residency_migration_request_unsuccessful" tag -/// state: (team_profile) Request for data residency migration for team data has -/// failed -/// -/// @param dataResidencyMigrationRequestUnsuccessful (team_profile) Request for -/// data residency migration for team data has failed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestUnsuccessful: - (DBTEAMLOGDataResidencyMigrationRequestUnsuccessfulType *)dataResidencyMigrationRequestUnsuccessful; - -/// -/// Initializes union class with tag state of "team_merge_from". -/// -/// Description of the "team_merge_from" tag state: (team_profile) Merged -/// another team into this team -/// -/// @param teamMergeFrom (team_profile) Merged another team into this team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeFrom:(DBTEAMLOGTeamMergeFromType *)teamMergeFrom; - -/// -/// Initializes union class with tag state of "team_merge_to". -/// -/// Description of the "team_merge_to" tag state: (team_profile) Merged this -/// team into another team -/// -/// @param teamMergeTo (team_profile) Merged this team into another team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeTo:(DBTEAMLOGTeamMergeToType *)teamMergeTo; - -/// -/// Initializes union class with tag state of "team_profile_add_background". -/// -/// Description of the "team_profile_add_background" tag state: (team_profile) -/// Added team background to display on shared link headers -/// -/// @param teamProfileAddBackground (team_profile) Added team background to -/// display on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddBackground:(DBTEAMLOGTeamProfileAddBackgroundType *)teamProfileAddBackground; - -/// -/// Initializes union class with tag state of "team_profile_add_logo". -/// -/// Description of the "team_profile_add_logo" tag state: (team_profile) Added -/// team logo to display on shared link headers -/// -/// @param teamProfileAddLogo (team_profile) Added team logo to display on -/// shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddLogo:(DBTEAMLOGTeamProfileAddLogoType *)teamProfileAddLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_background". -/// -/// Description of the "team_profile_change_background" tag state: -/// (team_profile) Changed team background displayed on shared link headers -/// -/// @param teamProfileChangeBackground (team_profile) Changed team background -/// displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeBackground: - (DBTEAMLOGTeamProfileChangeBackgroundType *)teamProfileChangeBackground; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_default_language". -/// -/// Description of the "team_profile_change_default_language" tag state: -/// (team_profile) Changed default language for team -/// -/// @param teamProfileChangeDefaultLanguage (team_profile) Changed default -/// language for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeDefaultLanguage: - (DBTEAMLOGTeamProfileChangeDefaultLanguageType *)teamProfileChangeDefaultLanguage; - -/// -/// Initializes union class with tag state of "team_profile_change_logo". -/// -/// Description of the "team_profile_change_logo" tag state: (team_profile) -/// Changed team logo displayed on shared link headers -/// -/// @param teamProfileChangeLogo (team_profile) Changed team logo displayed on -/// shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeLogo:(DBTEAMLOGTeamProfileChangeLogoType *)teamProfileChangeLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_name". -/// -/// Description of the "team_profile_change_name" tag state: (team_profile) -/// Changed team name -/// -/// @param teamProfileChangeName (team_profile) Changed team name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeName:(DBTEAMLOGTeamProfileChangeNameType *)teamProfileChangeName; - -/// -/// Initializes union class with tag state of "team_profile_remove_background". -/// -/// Description of the "team_profile_remove_background" tag state: -/// (team_profile) Removed team background displayed on shared link headers -/// -/// @param teamProfileRemoveBackground (team_profile) Removed team background -/// displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveBackground: - (DBTEAMLOGTeamProfileRemoveBackgroundType *)teamProfileRemoveBackground; - -/// -/// Initializes union class with tag state of "team_profile_remove_logo". -/// -/// Description of the "team_profile_remove_logo" tag state: (team_profile) -/// Removed team logo displayed on shared link headers -/// -/// @param teamProfileRemoveLogo (team_profile) Removed team logo displayed on -/// shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveLogo:(DBTEAMLOGTeamProfileRemoveLogoType *)teamProfileRemoveLogo; - -/// -/// Initializes union class with tag state of "tfa_add_backup_phone". -/// -/// Description of the "tfa_add_backup_phone" tag state: (tfa) Added backup -/// phone for two-step verification -/// -/// @param tfaAddBackupPhone (tfa) Added backup phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddBackupPhone:(DBTEAMLOGTfaAddBackupPhoneType *)tfaAddBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_add_security_key". -/// -/// Description of the "tfa_add_security_key" tag state: (tfa) Added security -/// key for two-step verification -/// -/// @param tfaAddSecurityKey (tfa) Added security key for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddSecurityKey:(DBTEAMLOGTfaAddSecurityKeyType *)tfaAddSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_change_backup_phone". -/// -/// Description of the "tfa_change_backup_phone" tag state: (tfa) Changed backup -/// phone for two-step verification -/// -/// @param tfaChangeBackupPhone (tfa) Changed backup phone for two-step -/// verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeBackupPhone:(DBTEAMLOGTfaChangeBackupPhoneType *)tfaChangeBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_change_status". -/// -/// Description of the "tfa_change_status" tag state: (tfa) -/// Enabled/disabled/changed two-step verification setting -/// -/// @param tfaChangeStatus (tfa) Enabled/disabled/changed two-step verification -/// setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeStatus:(DBTEAMLOGTfaChangeStatusType *)tfaChangeStatus; - -/// -/// Initializes union class with tag state of "tfa_remove_backup_phone". -/// -/// Description of the "tfa_remove_backup_phone" tag state: (tfa) Removed backup -/// phone for two-step verification -/// -/// @param tfaRemoveBackupPhone (tfa) Removed backup phone for two-step -/// verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveBackupPhone:(DBTEAMLOGTfaRemoveBackupPhoneType *)tfaRemoveBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_remove_security_key". -/// -/// Description of the "tfa_remove_security_key" tag state: (tfa) Removed -/// security key for two-step verification -/// -/// @param tfaRemoveSecurityKey (tfa) Removed security key for two-step -/// verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveSecurityKey:(DBTEAMLOGTfaRemoveSecurityKeyType *)tfaRemoveSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_reset". -/// -/// Description of the "tfa_reset" tag state: (tfa) Reset two-step verification -/// for team member -/// -/// @param tfaReset (tfa) Reset two-step verification for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaReset:(DBTEAMLOGTfaResetType *)tfaReset; - -/// -/// Initializes union class with tag state of "changed_enterprise_admin_role". -/// -/// Description of the "changed_enterprise_admin_role" tag state: -/// (trusted_teams) Changed enterprise admin role -/// -/// @param changedEnterpriseAdminRole (trusted_teams) Changed enterprise admin -/// role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseAdminRole: - (DBTEAMLOGChangedEnterpriseAdminRoleType *)changedEnterpriseAdminRole; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_connected_team_status". -/// -/// Description of the "changed_enterprise_connected_team_status" tag state: -/// (trusted_teams) Changed enterprise-connected team status -/// -/// @param changedEnterpriseConnectedTeamStatus (trusted_teams) Changed -/// enterprise-connected team status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseConnectedTeamStatus: - (DBTEAMLOGChangedEnterpriseConnectedTeamStatusType *)changedEnterpriseConnectedTeamStatus; - -/// -/// Initializes union class with tag state of "ended_enterprise_admin_session". -/// -/// Description of the "ended_enterprise_admin_session" tag state: -/// (trusted_teams) Ended enterprise admin session -/// -/// @param endedEnterpriseAdminSession (trusted_teams) Ended enterprise admin -/// session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSession: - (DBTEAMLOGEndedEnterpriseAdminSessionType *)endedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_deprecated". -/// -/// Description of the "ended_enterprise_admin_session_deprecated" tag state: -/// (trusted_teams) Ended enterprise admin session (deprecated, replaced by -/// 'Ended enterprise admin session') -/// -/// @param endedEnterpriseAdminSessionDeprecated (trusted_teams) Ended -/// enterprise admin session (deprecated, replaced by 'Ended enterprise admin -/// session') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDeprecated: - (DBTEAMLOGEndedEnterpriseAdminSessionDeprecatedType *)endedEnterpriseAdminSessionDeprecated; - -/// -/// Initializes union class with tag state of "enterprise_settings_locking". -/// -/// Description of the "enterprise_settings_locking" tag state: (trusted_teams) -/// Changed who can update a setting -/// -/// @param enterpriseSettingsLocking (trusted_teams) Changed who can update a -/// setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseSettingsLocking:(DBTEAMLOGEnterpriseSettingsLockingType *)enterpriseSettingsLocking; - -/// -/// Initializes union class with tag state of "guest_admin_change_status". -/// -/// Description of the "guest_admin_change_status" tag state: (trusted_teams) -/// Changed guest team admin status -/// -/// @param guestAdminChangeStatus (trusted_teams) Changed guest team admin -/// status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminChangeStatus:(DBTEAMLOGGuestAdminChangeStatusType *)guestAdminChangeStatus; - -/// -/// Initializes union class with tag state of -/// "started_enterprise_admin_session". -/// -/// Description of the "started_enterprise_admin_session" tag state: -/// (trusted_teams) Started enterprise admin session -/// -/// @param startedEnterpriseAdminSession (trusted_teams) Started enterprise -/// admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartedEnterpriseAdminSession: - (DBTEAMLOGStartedEnterpriseAdminSessionType *)startedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of "team_merge_request_accepted". -/// -/// Description of the "team_merge_request_accepted" tag state: (trusted_teams) -/// Accepted a team merge request -/// -/// @param teamMergeRequestAccepted (trusted_teams) Accepted a team merge -/// request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAccepted:(DBTEAMLOGTeamMergeRequestAcceptedType *)teamMergeRequestAccepted; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_primary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @param teamMergeRequestAcceptedShownToPrimaryTeam (trusted_teams) Accepted a -/// team merge request (deprecated, replaced by 'Accepted a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *)teamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_secondary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @param teamMergeRequestAcceptedShownToSecondaryTeam (trusted_teams) Accepted -/// a team merge request (deprecated, replaced by 'Accepted a team merge -/// request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *)teamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_auto_canceled". -/// -/// Description of the "team_merge_request_auto_canceled" tag state: -/// (trusted_teams) Automatically canceled team merge request -/// -/// @param teamMergeRequestAutoCanceled (trusted_teams) Automatically canceled -/// team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAutoCanceled: - (DBTEAMLOGTeamMergeRequestAutoCanceledType *)teamMergeRequestAutoCanceled; - -/// -/// Initializes union class with tag state of "team_merge_request_canceled". -/// -/// Description of the "team_merge_request_canceled" tag state: (trusted_teams) -/// Canceled a team merge request -/// -/// @param teamMergeRequestCanceled (trusted_teams) Canceled a team merge -/// request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceled:(DBTEAMLOGTeamMergeRequestCanceledType *)teamMergeRequestCanceled; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_primary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @param teamMergeRequestCanceledShownToPrimaryTeam (trusted_teams) Canceled a -/// team merge request (deprecated, replaced by 'Canceled a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *)teamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_secondary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @param teamMergeRequestCanceledShownToSecondaryTeam (trusted_teams) Canceled -/// a team merge request (deprecated, replaced by 'Canceled a team merge -/// request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *)teamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_expired". -/// -/// Description of the "team_merge_request_expired" tag state: (trusted_teams) -/// Team merge request expired -/// -/// @param teamMergeRequestExpired (trusted_teams) Team merge request expired -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpired:(DBTEAMLOGTeamMergeRequestExpiredType *)teamMergeRequestExpired; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_primary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @param teamMergeRequestExpiredShownToPrimaryTeam (trusted_teams) Team merge -/// request expired (deprecated, replaced by 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *)teamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_secondary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @param teamMergeRequestExpiredShownToSecondaryTeam (trusted_teams) Team -/// merge request expired (deprecated, replaced by 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *)teamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_primary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @param teamMergeRequestRejectedShownToPrimaryTeam (trusted_teams) Rejected a -/// team merge request (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *)teamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_secondary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @param teamMergeRequestRejectedShownToSecondaryTeam (trusted_teams) Rejected -/// a team merge request (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *)teamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_reminder". -/// -/// Description of the "team_merge_request_reminder" tag state: (trusted_teams) -/// Sent a team merge request reminder -/// -/// @param teamMergeRequestReminder (trusted_teams) Sent a team merge request -/// reminder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminder:(DBTEAMLOGTeamMergeRequestReminderType *)teamMergeRequestReminder; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_primary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @param teamMergeRequestReminderShownToPrimaryTeam (trusted_teams) Sent a -/// team merge request reminder (deprecated, replaced by 'Sent a team merge -/// request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *)teamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_secondary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @param teamMergeRequestReminderShownToSecondaryTeam (trusted_teams) Sent a -/// team merge request reminder (deprecated, replaced by 'Sent a team merge -/// request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *)teamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_revoked". -/// -/// Description of the "team_merge_request_revoked" tag state: (trusted_teams) -/// Canceled the team merge -/// -/// @param teamMergeRequestRevoked (trusted_teams) Canceled the team merge -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRevoked:(DBTEAMLOGTeamMergeRequestRevokedType *)teamMergeRequestRevoked; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_primary_team" tag -/// state: (trusted_teams) Requested to merge their Dropbox team into yours -/// -/// @param teamMergeRequestSentShownToPrimaryTeam (trusted_teams) Requested to -/// merge their Dropbox team into yours -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToPrimaryTeam: - (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *)teamMergeRequestSentShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_secondary_team" tag -/// state: (trusted_teams) Requested to merge your team into another Dropbox -/// team -/// -/// @param teamMergeRequestSentShownToSecondaryTeam (trusted_teams) Requested to -/// merge your team into another Dropbox team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToSecondaryTeam: - (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *)teamMergeRequestSentShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingAlertStateChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -- (BOOL)isAdminAlertingAlertStateChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingChangedAlertConfig` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -- (BOOL)isAdminAlertingChangedAlertConfig; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminAlertingTriggeredAlert` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -- (BOOL)isAdminAlertingTriggeredAlert; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessCompleted` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -- (BOOL)isRansomwareRestoreProcessCompleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareRestoreProcessStarted` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -- (BOOL)isRansomwareRestoreProcessStarted; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appBlockedByPermissions` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -- (BOOL)isAppBlockedByPermissions; - -/// -/// Retrieves whether the union's current tag state has value "app_link_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_link_team". -/// -- (BOOL)isAppLinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_link_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appLinkUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_link_user". -/// -- (BOOL)isAppLinkUser; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_unlink_team". -/// -- (BOOL)isAppUnlinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appUnlinkUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "app_unlink_user". -/// -- (BOOL)isAppUnlinkUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_connected". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationConnected` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_connected". -/// -- (BOOL)isIntegrationConnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_disconnected". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationDisconnected` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_disconnected". -/// -- (BOOL)isIntegrationDisconnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_add_comment". -/// -- (BOOL)isFileAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileChangeCommentSubscription` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -- (BOOL)isFileChangeCommentSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDeleteComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_delete_comment". -/// -- (BOOL)isFileDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEditComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_edit_comment". -/// -- (BOOL)isFileEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_like_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLikeComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_like_comment". -/// -- (BOOL)isFileLikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_resolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileResolveComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_resolve_comment". -/// -- (BOOL)isFileResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unlike_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnlikeComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unlike_comment". -/// -- (BOOL)isFileUnlikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unresolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileUnresolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_unresolve_comment". -/// -- (BOOL)isFileUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFolders` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -- (BOOL)isGovernancePolicyAddFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyAddFolderFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -- (BOOL)isGovernancePolicyAddFolderFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyContentDisposed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -- (BOOL)isGovernancePolicyContentDisposed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyCreate` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_create". -/// -- (BOOL)isGovernancePolicyCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyDelete` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_delete". -/// -- (BOOL)isGovernancePolicyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -- (BOOL)isGovernancePolicyEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyEditDuration` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -- (BOOL)isGovernancePolicyEditDuration; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportCreated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_created". -/// -- (BOOL)isGovernancePolicyExportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyExportRemoved` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -- (BOOL)isGovernancePolicyExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyRemoveFolders` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -- (BOOL)isGovernancePolicyRemoveFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_report_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyReportCreated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_report_created". -/// -- (BOOL)isGovernancePolicyReportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `governancePolicyZipPartDownloaded` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -- (BOOL)isGovernancePolicyZipPartDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsActivateAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -- (BOOL)isLegalHoldsActivateAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_add_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsAddMembers` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_add_members". -/// -- (BOOL)isLegalHoldsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldDetails` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -- (BOOL)isLegalHoldsChangeHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsChangeHoldName` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -- (BOOL)isLegalHoldsChangeHoldName; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -- (BOOL)isLegalHoldsExportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportCancelled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -- (BOOL)isLegalHoldsExportCancelled; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportDownloaded` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -- (BOOL)isLegalHoldsExportDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsExportRemoved` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -- (BOOL)isLegalHoldsExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReleaseAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -- (BOOL)isLegalHoldsReleaseAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsRemoveMembers` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -- (BOOL)isLegalHoldsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legalHoldsReportAHold` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -- (BOOL)isLegalHoldsReportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpDesktop` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -- (BOOL)isDeviceChangeIpDesktop; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpMobile` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -- (BOOL)isDeviceChangeIpMobile; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_web". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceChangeIpWeb` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_web". -/// -- (BOOL)isDeviceChangeIpWeb; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkFail` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -- (BOOL)isDeviceDeleteOnUnlinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceDeleteOnUnlinkSuccess` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -- (BOOL)isDeviceDeleteOnUnlinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkFail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "device_link_fail". -/// -- (BOOL)isDeviceLinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceLinkSuccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_link_success". -/// -- (BOOL)isDeviceLinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_disabled". -/// -- (BOOL)isDeviceManagementDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceManagementEnabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_management_enabled". -/// -- (BOOL)isDeviceManagementEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceSyncBackupStatusChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -- (BOOL)isDeviceSyncBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "device_unlink". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceUnlink` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "device_unlink". -/// -- (BOOL)isDeviceUnlink; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsExported` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -- (BOOL)isDropboxPasswordsExported; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsNewDeviceEnrolled` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -- (BOOL)isDropboxPasswordsNewDeviceEnrolled; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRefreshAuthToken` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -- (BOOL)isEmmRefreshAuthToken; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupEligibilityStatusChecked` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -- (BOOL)isExternalDriveBackupEligibilityStatusChecked; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupStatusChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -- (BOOL)isExternalDriveBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_availability". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangeAvailability` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_availability". -/// -- (BOOL)isAccountCaptureChangeAvailability; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureMigrateAccount` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -- (BOOL)isAccountCaptureMigrateAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureNotificationEmailsSent` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -- (BOOL)isAccountCaptureNotificationEmailsSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureRelinquishAccount` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -- (BOOL)isAccountCaptureRelinquishAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_domain_invites". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `disabledDomainInvites` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "disabled_domain_invites". -/// -- (BOOL)isDisabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesApproveRequestToJoinTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -- (BOOL)isDomainInvitesApproveRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesDeclineRequestToJoinTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -- (BOOL)isDomainInvitesDeclineRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesEmailExistingUsers` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -- (BOOL)isDomainInvitesEmailExistingUsers; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesRequestToJoinTeam` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -- (BOOL)isDomainInvitesRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToNo` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToNo; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainInvitesSetInviteNewUserPrefToYes` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToYes; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainFail` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -- (BOOL)isDomainVerificationAddDomainFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationAddDomainSuccess` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -- (BOOL)isDomainVerificationAddDomainSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `domainVerificationRemoveDomain` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -- (BOOL)isDomainVerificationRemoveDomain; - -/// -/// Retrieves whether the union's current tag state has value -/// "enabled_domain_invites". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabledDomainInvites` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "enabled_domain_invites". -/// -- (BOOL)isEnabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCancelKeyDeletion` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyCancelKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyCreateKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -- (BOOL)isTeamEncryptionKeyCreateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDeleteKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -- (BOOL)isTeamEncryptionKeyDeleteKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyDisableKey` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -- (BOOL)isTeamEncryptionKeyDisableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyEnableKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -- (BOOL)isTeamEncryptionKeyEnableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyRotateKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -- (BOOL)isTeamEncryptionKeyRotateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamEncryptionKeyScheduleKeyDeletion` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyScheduleKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "apply_naming_convention". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `applyNamingConvention` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "apply_naming_convention". -/// -- (BOOL)isApplyNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value "create_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createFolder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "create_folder". -/// -- (BOOL)isCreateFolder; - -/// -/// Retrieves whether the union's current tag state has value "file_add". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAdd` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_add". -/// -- (BOOL)isFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_from_automation". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileAddFromAutomation` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_add_from_automation". -/// -- (BOOL)isFileAddFromAutomation; - -/// -/// Retrieves whether the union's current tag state has value "file_copy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCopy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_copy". -/// -- (BOOL)isFileCopy; - -/// -/// Retrieves whether the union's current tag state has value "file_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_delete". -/// -- (BOOL)isFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileDownload` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_download". -/// -- (BOOL)isFileDownload; - -/// -/// Retrieves whether the union's current tag state has value "file_edit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileEdit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_edit". -/// -- (BOOL)isFileEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_get_copy_reference". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileGetCopyReference` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_get_copy_reference". -/// -- (BOOL)isFileGetCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingLockStatusChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -- (BOOL)isFileLockingLockStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "file_move". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileMove` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_move". -/// -- (BOOL)isFileMove; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_permanently_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePermanentlyDelete` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_permanently_delete". -/// -- (BOOL)isFilePermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_preview". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `filePreview` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_preview". -/// -- (BOOL)isFilePreview; - -/// -/// Retrieves whether the union's current tag state has value "file_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_rename". -/// -- (BOOL)isFileRename; - -/// -/// Retrieves whether the union's current tag state has value "file_restore". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRestore` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_restore". -/// -- (BOOL)isFileRestore; - -/// -/// Retrieves whether the union's current tag state has value "file_revert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRevert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_revert". -/// -- (BOOL)isFileRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rollback_changes". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRollbackChanges` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_rollback_changes". -/// -- (BOOL)isFileRollbackChanges; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_save_copy_reference". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileSaveCopyReference` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_save_copy_reference". -/// -- (BOOL)isFileSaveCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewDescriptionChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -- (BOOL)isFolderOverviewDescriptionChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemPinned` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -- (BOOL)isFolderOverviewItemPinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderOverviewItemUnpinned` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -- (BOOL)isFolderOverviewItemUnpinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelAdded` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_added". -/// -- (BOOL)isObjectLabelAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelRemoved` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_removed". -/// -- (BOOL)isObjectLabelRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_updated_value". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `objectLabelUpdatedValue` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "object_label_updated_value". -/// -- (BOOL)isObjectLabelUpdatedValue; - -/// -/// Retrieves whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizeFolderWithTidy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -- (BOOL)isOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_delete". -/// -- (BOOL)isReplayFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "rewind_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindFolder` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "rewind_folder". -/// -- (BOOL)isRewindFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_naming_convention". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoNamingConvention` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_naming_convention". -/// -- (BOOL)isUndoNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `undoOrganizeFolderWithTidy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -- (BOOL)isUndoOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value "user_tags_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsAdded` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_tags_added". -/// -- (BOOL)isUserTagsAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userTagsRemoved` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user_tags_removed". -/// -- (BOOL)isUserTagsRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestReceiveFile` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -- (BOOL)isEmailIngestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_change". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestChange` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_change". -/// -- (BOOL)isFileRequestChange; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_close". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestClose` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_close". -/// -- (BOOL)isFileRequestClose; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_create". -/// -- (BOOL)isFileRequestCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_delete". -/// -- (BOOL)isFileRequestDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_receive_file". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestReceiveFile` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_request_receive_file". -/// -- (BOOL)isFileRequestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddExternalId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_add_external_id". -/// -- (BOOL)isGroupAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupAddMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_add_member". -/// -- (BOOL)isGroupAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_external_id". -/// -- (BOOL)isGroupChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_management_type". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeManagementType` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_management_type". -/// -- (BOOL)isGroupChangeManagementType; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_member_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupChangeMemberRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_change_member_role". -/// -- (BOOL)isGroupChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value "group_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_create". -/// -- (BOOL)isGroupCreate; - -/// -/// Retrieves whether the union's current tag state has value "group_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDelete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_delete". -/// -- (BOOL)isGroupDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_description_updated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupDescriptionUpdated` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_description_updated". -/// -- (BOOL)isGroupDescriptionUpdated; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_join_policy_updated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupJoinPolicyUpdated` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_join_policy_updated". -/// -- (BOOL)isGroupJoinPolicyUpdated; - -/// -/// Retrieves whether the union's current tag state has value "group_moved". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupMoved` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_moved". -/// -- (BOOL)isGroupMoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_external_id". -/// -- (BOOL)isGroupRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRemoveMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_remove_member". -/// -- (BOOL)isGroupRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value "group_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group_rename". -/// -- (BOOL)isGroupRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountLockOrUnlocked` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -- (BOOL)isAccountLockOrUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "emm_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_error". -/// -- (BOOL)isEmmError; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedInViaTrustedTeams` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedInViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminSignedOutViaTrustedTeams` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedOutViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value "login_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginFail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "login_fail". -/// -- (BOOL)isLoginFail; - -/// -/// Retrieves whether the union's current tag state has value "login_success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `loginSuccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "login_success". -/// -- (BOOL)isLoginSuccess; - -/// -/// Retrieves whether the union's current tag state has value "logout". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `logout` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "logout". -/// -- (BOOL)isLogout; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_end". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionEnd` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_end". -/// -- (BOOL)isResellerSupportSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_start". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportSessionStart` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_start". -/// -- (BOOL)isResellerSupportSessionStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionEnd` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -- (BOOL)isSignInAsSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `signInAsSessionStart` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -- (BOOL)isSignInAsSessionStart; - -/// -/// Retrieves whether the union's current tag state has value "sso_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_error". -/// -- (BOOL)isSsoError; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupAdminInvitationSent` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -- (BOOL)isBackupAdminInvitationSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_invitation_opened". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `backupInvitationOpened` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "backup_invitation_opened". -/// -- (BOOL)isBackupInvitationOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_team_invite_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `createTeamInviteLink` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "create_team_invite_link". -/// -- (BOOL)isCreateTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_team_invite_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deleteTeamInviteLink` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "delete_team_invite_link". -/// -- (BOOL)isDeleteTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_add_external_id". -/// -- (BOOL)isMemberAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value "member_add_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberAddName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_add_name". -/// -- (BOOL)isMemberAddName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_admin_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeAdminRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_admin_role". -/// -- (BOOL)isMemberChangeAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeEmail` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_email". -/// -- (BOOL)isMemberChangeEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_external_id". -/// -- (BOOL)isMemberChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_membership_type". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeMembershipType` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_membership_type". -/// -- (BOOL)isMemberChangeMembershipType; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_name". -/// -- (BOOL)isMemberChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_reseller_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeResellerRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_reseller_role". -/// -- (BOOL)isMemberChangeResellerRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberChangeStatus` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_change_status". -/// -- (BOOL)isMemberChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteManualContacts` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -- (BOOL)isMemberDeleteManualContacts; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberDeleteProfilePhoto` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -- (BOOL)isMemberDeleteProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberPermanentlyDeleteAccountContents` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -- (BOOL)isMemberPermanentlyDeleteAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_remove_external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRemoveExternalId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_remove_external_id". -/// -- (BOOL)isMemberRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_set_profile_photo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSetProfilePhoto` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_set_profile_photo". -/// -- (BOOL)isMemberSetProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddCustomQuota` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsAddCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCustomQuota` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsChangeCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeStatus` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -- (BOOL)isMemberSpaceLimitsChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveCustomQuota` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsRemoveCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value "member_suggest". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggest` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_suggest". -/// -- (BOOL)isMemberSuggest; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberTransferAccountContents` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -- (BOOL)isMemberTransferAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `pendingSecondaryEmailAdded` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -- (BOOL)isPendingSecondaryEmailAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailDeleted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_deleted". -/// -- (BOOL)isSecondaryEmailDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_verified". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryEmailVerified` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_verified". -/// -- (BOOL)isSecondaryEmailVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryMailsPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -- (BOOL)isSecondaryMailsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value "binder_add_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddPage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "binder_add_page". -/// -- (BOOL)isBinderAddPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderAddSection` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_add_section". -/// -- (BOOL)isBinderAddSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemovePage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_page". -/// -- (BOOL)isBinderRemovePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRemoveSection` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_section". -/// -- (BOOL)isBinderRemoveSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenamePage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_page". -/// -- (BOOL)isBinderRenamePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderRenameSection` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_section". -/// -- (BOOL)isBinderRenameSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_page". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderPage` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_page". -/// -- (BOOL)isBinderReorderPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_section". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `binderReorderSection` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_section". -/// -- (BOOL)isBinderReorderSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_member". -/// -- (BOOL)isPaperContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentAddToFolder` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -- (BOOL)isPaperContentAddToFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_archive". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentArchive` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_archive". -/// -- (BOOL)isPaperContentArchive; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_create". -/// -- (BOOL)isPaperContentCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentPermanentlyDelete` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -- (BOOL)isPaperContentPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveFromFolder` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -- (BOOL)isPaperContentRemoveFromFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRemoveMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_member". -/// -- (BOOL)isPaperContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_rename". -/// -- (BOOL)isPaperContentRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_restore". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperContentRestore` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_content_restore". -/// -- (BOOL)isPaperContentRestore; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocAddComment` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -- (BOOL)isPaperDocAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeMemberRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -- (BOOL)isPaperDocChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSharingPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -- (BOOL)isPaperDocChangeSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocChangeSubscription` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -- (BOOL)isPaperDocChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeleted` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_deleted". -/// -- (BOOL)isPaperDocDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDeleteComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -- (BOOL)isPaperDocDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocDownload` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_download". -/// -- (BOOL)isPaperDocDownload; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_edit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEdit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_edit". -/// -- (BOOL)isPaperDocEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocEditComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -- (BOOL)isPaperDocEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_followed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocFollowed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_followed". -/// -- (BOOL)isPaperDocFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_mention". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocMention` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_mention". -/// -- (BOOL)isPaperDocMention; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocOwnershipChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -- (BOOL)isPaperDocOwnershipChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_request_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRequestAccess` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_request_access". -/// -- (BOOL)isPaperDocRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocResolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -- (BOOL)isPaperDocResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_revert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocRevert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_revert". -/// -- (BOOL)isPaperDocRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocSlackShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -- (BOOL)isPaperDocSlackShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTeamInvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -- (BOOL)isPaperDocTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_trashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocTrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_trashed". -/// -- (BOOL)isPaperDocTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUnresolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -- (BOOL)isPaperDocUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocUntrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -- (BOOL)isPaperDocUntrashed; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDocView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_doc_view". -/// -- (BOOL)isPaperDocView; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_allow". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewAllow` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_allow". -/// -- (BOOL)isPaperExternalViewAllow; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewDefaultTeam` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -- (BOOL)isPaperExternalViewDefaultTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperExternalViewForbid` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -- (BOOL)isPaperExternalViewForbid; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderChangeSubscription` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -- (BOOL)isPaperFolderChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderDeleted` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_deleted". -/// -- (BOOL)isPaperFolderDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_followed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderFollowed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_followed". -/// -- (BOOL)isPaperFolderFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperFolderTeamInvite` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -- (BOOL)isPaperFolderTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkChangePermission` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -- (BOOL)isPaperPublishedLinkChangePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkCreate` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_create". -/// -- (BOOL)isPaperPublishedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -- (BOOL)isPaperPublishedLinkDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperPublishedLinkView` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_view". -/// -- (BOOL)isPaperPublishedLinkView; - -/// -/// Retrieves whether the union's current tag state has value "password_change". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordChange` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "password_change". -/// -- (BOOL)isPasswordChange; - -/// -/// Retrieves whether the union's current tag state has value "password_reset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordReset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "password_reset". -/// -- (BOOL)isPasswordReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_all". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordResetAll` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_reset_all". -/// -- (BOOL)isPasswordResetAll; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report". -/// -- (BOOL)isClassificationCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationCreateReportFail` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_fail". -/// -- (BOOL)isClassificationCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateExceptionsReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -- (BOOL)isEmmCreateExceptionsReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_usage_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmCreateUsageReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_create_usage_report". -/// -- (BOOL)isEmmCreateUsageReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report". -/// -- (BOOL)isExportMembersReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `exportMembersReportFail` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_fail". -/// -- (BOOL)isExportMembersReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_create_report". -/// -- (BOOL)isExternalSharingCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalSharingReportFailed` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -- (BOOL)isExternalSharingReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenCreateReport` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -- (BOOL)isNoExpirationLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noExpirationLinkGenReportFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -- (BOOL)isNoExpirationLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -- (BOOL)isNoPasswordLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkGenReportFailed` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -- (BOOL)isNoPasswordLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewCreateReport` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -- (BOOL)isNoPasswordLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noPasswordLinkViewReportFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -- (BOOL)isNoPasswordLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -- (BOOL)isOutdatedLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `outdatedLinkViewReportFailed` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -- (BOOL)isOutdatedLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_admin_export_start". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAdminExportStart` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_admin_export_start". -/// -- (BOOL)isPaperAdminExportStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReport` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -- (BOOL)isRansomwareAlertCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ransomwareAlertCreateReportFailed` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -- (BOOL)isRansomwareAlertCreateReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncCreateAdminPrivilegeReport` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -- (BOOL)isSmartSyncCreateAdminPrivilegeReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReport` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report". -/// -- (BOOL)isTeamActivityCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamActivityCreateReportFail` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -- (BOOL)isTeamActivityCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "collection_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `collectionShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "collection_share". -/// -- (BOOL)isCollectionShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_file_add". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersFileAdd` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_file_add". -/// -- (BOOL)isFileTransfersFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDelete` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -- (BOOL)isFileTransfersTransferDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferDownload` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -- (BOOL)isFileTransfersTransferDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferSend` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -- (BOOL)isFileTransfersTransferSend; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersTransferView` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -- (BOOL)isFileTransfersTransferView; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_invite_only". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclInviteOnly` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_invite_only". -/// -- (BOOL)isNoteAclInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "note_acl_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclLink` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "note_acl_link". -/// -- (BOOL)isNoteAclLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_team_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteAclTeamLink` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_acl_team_link". -/// -- (BOOL)isNoteAclTeamLink; - -/// -/// Retrieves whether the union's current tag state has value "note_shared". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteShared` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "note_shared". -/// -- (BOOL)isNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_share_receive". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noteShareReceive` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "note_share_receive". -/// -- (BOOL)isNoteShareReceive; - -/// -/// Retrieves whether the union's current tag state has value -/// "open_note_shared". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `openNoteShared` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "open_note_shared". -/// -- (BOOL)isOpenNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkCreated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -- (BOOL)isReplayFileSharedLinkCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayFileSharedLinkModified` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -- (BOOL)isReplayFileSharedLinkModified; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_add". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamAdd` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_add". -/// -- (BOOL)isReplayProjectTeamAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `replayProjectTeamDelete` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_delete". -/// -- (BOOL)isReplayProjectTeamDelete; - -/// -/// Retrieves whether the union's current tag state has value "sf_add_group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAddGroup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_add_group". -/// -- (BOOL)isSfAddGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfAllowNonMembersToViewSharedLinks` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -- (BOOL)isSfAllowNonMembersToViewSharedLinks; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfExternalInviteWarn` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -- (BOOL)isSfExternalInviteWarn; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_fb_invite". -/// -- (BOOL)isSfFbInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbInviteChangeRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -- (BOOL)isSfFbInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_uninvite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfFbUninvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_fb_uninvite". -/// -- (BOOL)isSfFbUninvite; - -/// -/// Retrieves whether the union's current tag state has value "sf_invite_group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfInviteGroup` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_invite_group". -/// -- (BOOL)isSfInviteGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_grant_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamGrantAccess` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_grant_access". -/// -- (BOOL)isSfTeamGrantAccess; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_invite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_team_invite". -/// -- (BOOL)isSfTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamInviteChangeRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -- (BOOL)isSfTeamInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_join". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoin` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_team_join". -/// -- (BOOL)isSfTeamJoin; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamJoinFromOobLink` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -- (BOOL)isSfTeamJoinFromOobLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_uninvite". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sfTeamUninvite` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sf_team_uninvite". -/// -- (BOOL)isSfTeamUninvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddInvitees` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -- (BOOL)isSharedContentAddInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -- (BOOL)isSharedContentAddLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddLinkPassword` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -- (BOOL)isSharedContentAddLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentAddMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_member". -/// -- (BOOL)isSharedContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeDownloadsPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -- (BOOL)isSharedContentChangeDownloadsPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeInviteeRole` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -- (BOOL)isSharedContentChangeInviteeRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkAudience` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -- (BOOL)isSharedContentChangeLinkAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkExpiry` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -- (BOOL)isSharedContentChangeLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeLinkPassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -- (BOOL)isSharedContentChangeLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeMemberRole` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -- (BOOL)isSharedContentChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentChangeViewerInfoPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -- (BOOL)isSharedContentChangeViewerInfoPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentClaimInvitation` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -- (BOOL)isSharedContentClaimInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_copy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentCopy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_copy". -/// -- (BOOL)isSharedContentCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentDownload` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_download". -/// -- (BOOL)isSharedContentDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRelinquishMembership` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -- (BOOL)isSharedContentRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveInvitees` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -- (BOOL)isSharedContentRemoveInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkExpiry` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -- (BOOL)isSharedContentRemoveLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveLinkPassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -- (BOOL)isSharedContentRemoveLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRemoveMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_member". -/// -- (BOOL)isSharedContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_request_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRequestAccess` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_request_access". -/// -- (BOOL)isSharedContentRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreInvitees` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -- (BOOL)isSharedContentRestoreInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentRestoreMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_member". -/// -- (BOOL)isSharedContentRestoreMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_unshare". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentUnshare` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_unshare". -/// -- (BOOL)isSharedContentUnshare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedContentView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_content_view". -/// -- (BOOL)isSharedContentView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeLinkPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -- (BOOL)isSharedFolderChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersInheritancePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -- (BOOL)isSharedFolderChangeMembersInheritancePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersManagementPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -- (BOOL)isSharedFolderChangeMembersManagementPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderChangeMembersPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -- (BOOL)isSharedFolderChangeMembersPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_create". -/// -- (BOOL)isSharedFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderDeclineInvitation` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -- (BOOL)isSharedFolderDeclineInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_mount". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderMount` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_mount". -/// -- (BOOL)isSharedFolderMount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_nest". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderNest` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_nest". -/// -- (BOOL)isSharedFolderNest; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderTransferOwnership` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -- (BOOL)isSharedFolderTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_unmount". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedFolderUnmount` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_unmount". -/// -- (BOOL)isSharedFolderUnmount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkAddExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -- (BOOL)isSharedLinkAddExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -- (BOOL)isSharedLinkChangeExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkChangeVisibility` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -- (BOOL)isSharedLinkChangeVisibility; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_copy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCopy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "shared_link_copy". -/// -- (BOOL)isSharedLinkCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_create". -/// -- (BOOL)isSharedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_disable". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDisable` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_disable". -/// -- (BOOL)isSharedLinkDisable; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkDownload` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_download". -/// -- (BOOL)isSharedLinkDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkRemoveExpiry` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -- (BOOL)isSharedLinkRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddExpiration` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -- (BOOL)isSharedLinkSettingsAddExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAddPassword` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -- (BOOL)isSharedLinkSettingsAddPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadDisabled` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsAllowDownloadEnabled` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeAudience` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -- (BOOL)isSharedLinkSettingsChangeAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangeExpiration` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -- (BOOL)isSharedLinkSettingsChangeExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsChangePassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -- (BOOL)isSharedLinkSettingsChangePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemoveExpiration` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -- (BOOL)isSharedLinkSettingsRemoveExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkSettingsRemovePassword` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -- (BOOL)isSharedLinkSettingsRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "shared_link_share". -/// -- (BOOL)isSharedLinkShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedLinkView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "shared_link_view". -/// -- (BOOL)isSharedLinkView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_note_opened". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharedNoteOpened` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shared_note_opened". -/// -- (BOOL)isSharedNoteOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelDisableDownloads` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -- (BOOL)isShmodelDisableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelEnableDownloads` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -- (BOOL)isShmodelEnableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_group_share". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `shmodelGroupShare` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "shmodel_group_share". -/// -- (BOOL)isShmodelGroupShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_access_granted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAccessGranted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_access_granted". -/// -- (BOOL)isShowcaseAccessGranted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_add_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseAddMember` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_add_member". -/// -- (BOOL)isShowcaseAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_archived". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseArchived` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_archived". -/// -- (BOOL)isShowcaseArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_created". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseCreated` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_created". -/// -- (BOOL)isShowcaseCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_delete_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseDeleteComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_delete_comment". -/// -- (BOOL)isShowcaseDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value "showcase_edited". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEdited` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_edited". -/// -- (BOOL)isShowcaseEdited; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edit_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseEditComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_edit_comment". -/// -- (BOOL)isShowcaseEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_added". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileAdded` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_added". -/// -- (BOOL)isShowcaseFileAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_download". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileDownload` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_download". -/// -- (BOOL)isShowcaseFileDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileRemoved` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_removed". -/// -- (BOOL)isShowcaseFileRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseFileView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_view". -/// -- (BOOL)isShowcaseFileView; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePermanentlyDeleted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -- (BOOL)isShowcasePermanentlyDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_post_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcasePostComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_post_comment". -/// -- (BOOL)isShowcasePostComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_remove_member". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRemoveMember` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_remove_member". -/// -- (BOOL)isShowcaseRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_renamed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRenamed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_renamed". -/// -- (BOOL)isShowcaseRenamed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_request_access". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRequestAccess` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_request_access". -/// -- (BOOL)isShowcaseRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseResolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -- (BOOL)isShowcaseResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_restored". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseRestored` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_restored". -/// -- (BOOL)isShowcaseRestored; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_trashed". -/// -- (BOOL)isShowcaseTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseTrashedDeprecated` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -- (BOOL)isShowcaseTrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUnresolveComment` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -- (BOOL)isShowcaseUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed". -/// -- (BOOL)isShowcaseUntrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseUntrashedDeprecated` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -- (BOOL)isShowcaseUntrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value "showcase_view". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseView` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "showcase_view". -/// -- (BOOL)isShowcaseView; - -/// -/// Retrieves whether the union's current tag state has value "sso_add_cert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddCert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_add_cert". -/// -- (BOOL)isSsoAddCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_login_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLoginUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_add_login_url". -/// -- (BOOL)isSsoAddLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_logout_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoAddLogoutUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_add_logout_url". -/// -- (BOOL)isSsoAddLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value "sso_change_cert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeCert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_change_cert". -/// -- (BOOL)isSsoChangeCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_login_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLoginUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_login_url". -/// -- (BOOL)isSsoChangeLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_logout_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeLogoutUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_logout_url". -/// -- (BOOL)isSsoChangeLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangeSamlIdentityMode` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -- (BOOL)isSsoChangeSamlIdentityMode; - -/// -/// Retrieves whether the union's current tag state has value "sso_remove_cert". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveCert` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_remove_cert". -/// -- (BOOL)isSsoRemoveCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_login_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLoginUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_login_url". -/// -- (BOOL)isSsoRemoveLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoRemoveLogoutUrl` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -- (BOOL)isSsoRemoveLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderChangeStatus` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_change_status". -/// -- (BOOL)isTeamFolderChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_create". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderCreate` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_create". -/// -- (BOOL)isTeamFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_downgrade". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderDowngrade` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_downgrade". -/// -- (BOOL)isTeamFolderDowngrade; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderPermanentlyDelete` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -- (BOOL)isTeamFolderPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_rename". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderRename` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_rename". -/// -- (BOOL)isTeamFolderRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncSettingsChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -- (BOOL)isTeamSelectiveSyncSettingsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accountCaptureChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_policy". -/// -- (BOOL)isAccountCaptureChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `adminEmailRemindersChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -- (BOOL)isAdminEmailRemindersChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_disabled". -/// -- (BOOL)isAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `allowDownloadEnabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "allow_download_enabled". -/// -- (BOOL)isAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_permissions_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `appPermissionsChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "app_permissions_changed". -/// -- (BOOL)isAppPermissionsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `cameraUploadsPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -- (BOOL)isCameraUploadsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `captureTranscriptPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -- (BOOL)isCaptureTranscriptPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `classificationChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "classification_change_policy". -/// -- (BOOL)isClassificationChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `computerBackupPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -- (BOOL)isComputerBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `contentAdministrationPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -- (BOOL)isContentAdministrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionChangePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -- (BOOL)isDataPlacementRestrictionChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataPlacementRestrictionSatisfyPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -- (BOOL)isDataPlacementRestrictionSatisfyPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsAddException` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -- (BOOL)isDeviceApprovalsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeDesktopPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -- (BOOL)isDeviceApprovalsChangeDesktopPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeMobilePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -- (BOOL)isDeviceApprovalsChangeMobilePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeOverageAction` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -- (BOOL)isDeviceApprovalsChangeOverageAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsChangeUnlinkAction` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -- (BOOL)isDeviceApprovalsChangeUnlinkAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `deviceApprovalsRemoveException` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -- (BOOL)isDeviceApprovalsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsAddMembers` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -- (BOOL)isDirectoryRestrictionsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `directoryRestrictionsRemoveMembers` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -- (BOOL)isDirectoryRestrictionsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dropboxPasswordsPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -- (BOOL)isDropboxPasswordsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emailIngestPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -- (BOOL)isEmailIngestPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmAddException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_add_exception". -/// -- (BOOL)isEmmAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emm_change_policy". -/// -- (BOOL)isEmmChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emmRemoveException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "emm_remove_exception". -/// -- (BOOL)isEmmRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `extendedVersionHistoryChangePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -- (BOOL)isExtendedVersionHistoryChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalDriveBackupPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -- (BOOL)isExternalDriveBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_comments_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileCommentsChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_comments_change_policy". -/// -- (BOOL)isFileCommentsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLockingPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -- (BOOL)isFileLockingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileProviderMigrationPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -- (BOOL)isFileProviderMigrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_change_policy". -/// -- (BOOL)isFileRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsEnabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -- (BOOL)isFileRequestsEmailsEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileRequestsEmailsRestrictedToTeamOnly` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -- (BOOL)isFileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileTransfersPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -- (BOOL)isFileTransfersPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `folderLinkRestrictionPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -- (BOOL)isFolderLinkRestrictionPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "google_sso_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `googleSsoChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "google_sso_change_policy". -/// -- (BOOL)isGoogleSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `groupUserManagementChangePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -- (BOOL)isGroupUserManagementChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `integrationPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "integration_policy_changed". -/// -- (BOOL)isIntegrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `inviteAcceptanceEmailPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -- (BOOL)isInviteAcceptanceEmailPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_requests_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberRequestsChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_requests_change_policy". -/// -- (BOOL)isMemberRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSendInvitePolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -- (BOOL)isMemberSendInvitePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsAddException` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -- (BOOL)isMemberSpaceLimitsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangeCapsTypePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -- (BOOL)isMemberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -- (BOOL)isMemberSpaceLimitsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSpaceLimitsRemoveException` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -- (BOOL)isMemberSpaceLimitsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberSuggestionsChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -- (BOOL)isMemberSuggestionsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `microsoftOfficeAddinChangePolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -- (BOOL)isMicrosoftOfficeAddinChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "network_control_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `networkControlChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "network_control_change_policy". -/// -- (BOOL)isNetworkControlChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeDeploymentPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -- (BOOL)isPaperChangeDeploymentPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberLinkPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -- (BOOL)isPaperChangeMemberLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangeMemberPolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_policy". -/// -- (BOOL)isPaperChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_change_policy". -/// -- (BOOL)isPaperChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDefaultFolderPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -- (BOOL)isPaperDefaultFolderPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperDesktopPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -- (BOOL)isPaperDesktopPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupAddition` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -- (BOOL)isPaperEnabledUsersGroupAddition; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperEnabledUsersGroupRemoval` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -- (BOOL)isPaperEnabledUsersGroupRemoval; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `passwordStrengthRequirementsChangePolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -- (BOOL)isPasswordStrengthRequirementsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `permanentDeleteChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -- (BOOL)isPermanentDeleteChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `resellerSupportChangePolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -- (BOOL)isResellerSupportChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rewindPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "rewind_policy_changed". -/// -- (BOOL)isRewindPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sendForSignaturePolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -- (BOOL)isSendForSignaturePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeFolderJoinPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -- (BOOL)isSharingChangeFolderJoinPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkAllowChangeExpirationPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -- (BOOL)isSharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkDefaultExpirationPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -- (BOOL)isSharingChangeLinkDefaultExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkEnforcePasswordPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -- (BOOL)isSharingChangeLinkEnforcePasswordPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeLinkPolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -- (BOOL)isSharingChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `sharingChangeMemberPolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -- (BOOL)isSharingChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeDownloadPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -- (BOOL)isShowcaseChangeDownloadPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeEnabledPolicy` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -- (BOOL)isShowcaseChangeEnabledPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `showcaseChangeExternalSharingPolicy` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -- (BOOL)isShowcaseChangeExternalSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smarterSmartSyncPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -- (BOOL)isSmarterSmartSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -- (BOOL)isSmartSyncChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncNotOptOut` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -- (BOOL)isSmartSyncNotOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `smartSyncOptOut` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -- (BOOL)isSmartSyncOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `ssoChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "sso_change_policy". -/// -- (BOOL)isSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamBrandingPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -- (BOOL)isTeamBrandingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamExtensionsPolicyChanged` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -- (BOOL)isTeamExtensionsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSelectiveSyncPolicyChanged` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -- (BOOL)isTeamSelectiveSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharingWhitelistSubjectsChanged` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -- (BOOL)isTeamSharingWhitelistSubjectsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_add_exception". -/// -- (BOOL)isTfaAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangePolicy` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_change_policy". -/// -- (BOOL)isTfaChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_exception". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveException` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_exception". -/// -- (BOOL)isTfaRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_account_change_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `twoAccountChangePolicy` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "two_account_change_policy". -/// -- (BOOL)isTwoAccountChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `viewerInfoPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -- (BOOL)isViewerInfoPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `watermarkingPolicyChanged` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -- (BOOL)isWatermarkingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeActiveSessionLimit` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -- (BOOL)isWebSessionsChangeActiveSessionLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeFixedLengthPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -- (BOOL)isWebSessionsChangeFixedLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSessionsChangeIdleLengthPolicy` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -- (BOOL)isWebSessionsChangeIdleLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestSuccessful` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -- (BOOL)isDataResidencyMigrationRequestSuccessful; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `dataResidencyMigrationRequestUnsuccessful` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -- (BOOL)isDataResidencyMigrationRequestUnsuccessful; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_from". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeFrom` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_merge_from". -/// -- (BOOL)isTeamMergeFrom; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_to". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeTo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_merge_to". -/// -- (BOOL)isTeamMergeTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_background". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddBackground` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_background". -/// -- (BOOL)isTeamProfileAddBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_logo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileAddLogo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_logo". -/// -- (BOOL)isTeamProfileAddLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_background". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeBackground` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_background". -/// -- (BOOL)isTeamProfileChangeBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeDefaultLanguage` property, otherwise a runtime exception -/// will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -- (BOOL)isTeamProfileChangeDefaultLanguage; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_logo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeLogo` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_logo". -/// -- (BOOL)isTeamProfileChangeLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileChangeName` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_name". -/// -- (BOOL)isTeamProfileChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_background". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveBackground` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_background". -/// -- (BOOL)isTeamProfileRemoveBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamProfileRemoveLogo` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -- (BOOL)isTeamProfileRemoveLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddBackupPhone` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -- (BOOL)isTfaAddBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_security_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaAddSecurityKey` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_security_key". -/// -- (BOOL)isTfaAddSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeBackupPhone` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -- (BOOL)isTfaChangeBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaChangeStatus` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_change_status". -/// -- (BOOL)isTfaChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveBackupPhone` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -- (BOOL)isTfaRemoveBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaRemoveSecurityKey` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -- (BOOL)isTfaRemoveSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value "tfa_reset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `tfaReset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "tfa_reset". -/// -- (BOOL)isTfaReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseAdminRole` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -- (BOOL)isChangedEnterpriseAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `changedEnterpriseConnectedTeamStatus` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -- (BOOL)isChangedEnterpriseConnectedTeamStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSession` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -- (BOOL)isEndedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `endedEnterpriseAdminSessionDeprecated` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -- (BOOL)isEndedEnterpriseAdminSessionDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enterpriseSettingsLocking` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -- (BOOL)isEnterpriseSettingsLocking; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_change_status". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `guestAdminChangeStatus` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_change_status". -/// -- (BOOL)isGuestAdminChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `startedEnterpriseAdminSession` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -- (BOOL)isStartedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAccepted` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -- (BOOL)isTeamMergeRequestAccepted; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAcceptedShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestAutoCanceled` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -- (BOOL)isTeamMergeRequestAutoCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -- (BOOL)isTeamMergeRequestCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestCanceledShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpired` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired". -/// -- (BOOL)isTeamMergeRequestExpired; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestExpiredShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRejectedShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminder` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -- (BOOL)isTeamMergeRequestReminder; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestReminderShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestRevoked` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -- (BOOL)isTeamMergeRequestRevoked; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToPrimaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMergeRequestSentShownToSecondaryTeam` property, otherwise a runtime -/// exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventType` union. -/// -@interface DBTEAMLOGEventTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventType *)instance; - -/// -/// Deserializes `DBTEAMLOGEventType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventType` object. -/// -+ (DBTEAMLOGEventType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventTypeArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventTypeArg.h deleted file mode 100644 index 118352de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGEventTypeArg.h +++ /dev/null @@ -1,11299 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEventTypeArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EventTypeArg` union. -/// -/// The type of the event. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGEventTypeArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGEventTypeArgTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGEventTypeArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGEventTypeArgTag) { - /// (admin_alerting) Changed an alert state - DBTEAMLOGEventTypeArgAdminAlertingAlertStateChanged, - - /// (admin_alerting) Changed an alert setting - DBTEAMLOGEventTypeArgAdminAlertingChangedAlertConfig, - - /// (admin_alerting) Triggered security alert - DBTEAMLOGEventTypeArgAdminAlertingTriggeredAlert, - - /// (admin_alerting) Completed ransomware restore process - DBTEAMLOGEventTypeArgRansomwareRestoreProcessCompleted, - - /// (admin_alerting) Started ransomware restore process - DBTEAMLOGEventTypeArgRansomwareRestoreProcessStarted, - - /// (apps) Failed to connect app for member - DBTEAMLOGEventTypeArgAppBlockedByPermissions, - - /// (apps) Linked app for team - DBTEAMLOGEventTypeArgAppLinkTeam, - - /// (apps) Linked app for member - DBTEAMLOGEventTypeArgAppLinkUser, - - /// (apps) Unlinked app for team - DBTEAMLOGEventTypeArgAppUnlinkTeam, - - /// (apps) Unlinked app for member - DBTEAMLOGEventTypeArgAppUnlinkUser, - - /// (apps) Connected integration for member - DBTEAMLOGEventTypeArgIntegrationConnected, - - /// (apps) Disconnected integration for member - DBTEAMLOGEventTypeArgIntegrationDisconnected, - - /// (comments) Added file comment - DBTEAMLOGEventTypeArgFileAddComment, - - /// (comments) Subscribed to or unsubscribed from comment notifications for - /// file - DBTEAMLOGEventTypeArgFileChangeCommentSubscription, - - /// (comments) Deleted file comment - DBTEAMLOGEventTypeArgFileDeleteComment, - - /// (comments) Edited file comment - DBTEAMLOGEventTypeArgFileEditComment, - - /// (comments) Liked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeArgFileLikeComment, - - /// (comments) Resolved file comment - DBTEAMLOGEventTypeArgFileResolveComment, - - /// (comments) Unliked file comment (deprecated, no longer logged) - DBTEAMLOGEventTypeArgFileUnlikeComment, - - /// (comments) Unresolved file comment - DBTEAMLOGEventTypeArgFileUnresolveComment, - - /// (data_governance) Added folders to policy - DBTEAMLOGEventTypeArgGovernancePolicyAddFolders, - - /// (data_governance) Couldn't add a folder to a policy - DBTEAMLOGEventTypeArgGovernancePolicyAddFolderFailed, - - /// (data_governance) Content disposed - DBTEAMLOGEventTypeArgGovernancePolicyContentDisposed, - - /// (data_governance) Activated a new policy - DBTEAMLOGEventTypeArgGovernancePolicyCreate, - - /// (data_governance) Deleted a policy - DBTEAMLOGEventTypeArgGovernancePolicyDelete, - - /// (data_governance) Edited policy - DBTEAMLOGEventTypeArgGovernancePolicyEditDetails, - - /// (data_governance) Changed policy duration - DBTEAMLOGEventTypeArgGovernancePolicyEditDuration, - - /// (data_governance) Created a policy download - DBTEAMLOGEventTypeArgGovernancePolicyExportCreated, - - /// (data_governance) Removed a policy download - DBTEAMLOGEventTypeArgGovernancePolicyExportRemoved, - - /// (data_governance) Removed folders from policy - DBTEAMLOGEventTypeArgGovernancePolicyRemoveFolders, - - /// (data_governance) Created a summary report for a policy - DBTEAMLOGEventTypeArgGovernancePolicyReportCreated, - - /// (data_governance) Downloaded content from a policy - DBTEAMLOGEventTypeArgGovernancePolicyZipPartDownloaded, - - /// (data_governance) Activated a hold - DBTEAMLOGEventTypeArgLegalHoldsActivateAHold, - - /// (data_governance) Added members to a hold - DBTEAMLOGEventTypeArgLegalHoldsAddMembers, - - /// (data_governance) Edited details for a hold - DBTEAMLOGEventTypeArgLegalHoldsChangeHoldDetails, - - /// (data_governance) Renamed a hold - DBTEAMLOGEventTypeArgLegalHoldsChangeHoldName, - - /// (data_governance) Exported hold - DBTEAMLOGEventTypeArgLegalHoldsExportAHold, - - /// (data_governance) Canceled export for a hold - DBTEAMLOGEventTypeArgLegalHoldsExportCancelled, - - /// (data_governance) Downloaded export for a hold - DBTEAMLOGEventTypeArgLegalHoldsExportDownloaded, - - /// (data_governance) Removed export for a hold - DBTEAMLOGEventTypeArgLegalHoldsExportRemoved, - - /// (data_governance) Released a hold - DBTEAMLOGEventTypeArgLegalHoldsReleaseAHold, - - /// (data_governance) Removed members from a hold - DBTEAMLOGEventTypeArgLegalHoldsRemoveMembers, - - /// (data_governance) Created a summary report for a hold - DBTEAMLOGEventTypeArgLegalHoldsReportAHold, - - /// (devices) Changed IP address associated with active desktop session - DBTEAMLOGEventTypeArgDeviceChangeIpDesktop, - - /// (devices) Changed IP address associated with active mobile session - DBTEAMLOGEventTypeArgDeviceChangeIpMobile, - - /// (devices) Changed IP address associated with active web session - DBTEAMLOGEventTypeArgDeviceChangeIpWeb, - - /// (devices) Failed to delete all files from unlinked device - DBTEAMLOGEventTypeArgDeviceDeleteOnUnlinkFail, - - /// (devices) Deleted all files from unlinked device - DBTEAMLOGEventTypeArgDeviceDeleteOnUnlinkSuccess, - - /// (devices) Failed to link device - DBTEAMLOGEventTypeArgDeviceLinkFail, - - /// (devices) Linked device - DBTEAMLOGEventTypeArgDeviceLinkSuccess, - - /// (devices) Disabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeArgDeviceManagementDisabled, - - /// (devices) Enabled device management (deprecated, no longer logged) - DBTEAMLOGEventTypeArgDeviceManagementEnabled, - - /// (devices) Enabled/disabled backup for computer - DBTEAMLOGEventTypeArgDeviceSyncBackupStatusChanged, - - /// (devices) Disconnected device - DBTEAMLOGEventTypeArgDeviceUnlink, - - /// (devices) Exported passwords - DBTEAMLOGEventTypeArgDropboxPasswordsExported, - - /// (devices) Enrolled new Dropbox Passwords device - DBTEAMLOGEventTypeArgDropboxPasswordsNewDeviceEnrolled, - - /// (devices) Refreshed auth token used for setting up EMM - DBTEAMLOGEventTypeArgEmmRefreshAuthToken, - - /// (devices) Checked external drive backup eligibility status - DBTEAMLOGEventTypeArgExternalDriveBackupEligibilityStatusChecked, - - /// (devices) Modified external drive backup - DBTEAMLOGEventTypeArgExternalDriveBackupStatusChanged, - - /// (domains) Granted/revoked option to enable account capture on team - /// domains - DBTEAMLOGEventTypeArgAccountCaptureChangeAvailability, - - /// (domains) Account-captured user migrated account to team - DBTEAMLOGEventTypeArgAccountCaptureMigrateAccount, - - /// (domains) Sent account capture email to all unmanaged members - DBTEAMLOGEventTypeArgAccountCaptureNotificationEmailsSent, - - /// (domains) Account-captured user changed account email to personal email - DBTEAMLOGEventTypeArgAccountCaptureRelinquishAccount, - - /// (domains) Disabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeArgDisabledDomainInvites, - - /// (domains) Approved user's request to join team - DBTEAMLOGEventTypeArgDomainInvitesApproveRequestToJoinTeam, - - /// (domains) Declined user's request to join team - DBTEAMLOGEventTypeArgDomainInvitesDeclineRequestToJoinTeam, - - /// (domains) Sent domain invites to existing domain accounts (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeArgDomainInvitesEmailExistingUsers, - - /// (domains) Requested to join team - DBTEAMLOGEventTypeArgDomainInvitesRequestToJoinTeam, - - /// (domains) Disabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgDomainInvitesSetInviteNewUserPrefToNo, - - /// (domains) Enabled "Automatically invite new users" (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgDomainInvitesSetInviteNewUserPrefToYes, - - /// (domains) Failed to verify team domain - DBTEAMLOGEventTypeArgDomainVerificationAddDomainFail, - - /// (domains) Verified team domain - DBTEAMLOGEventTypeArgDomainVerificationAddDomainSuccess, - - /// (domains) Removed domain from list of verified team domains - DBTEAMLOGEventTypeArgDomainVerificationRemoveDomain, - - /// (domains) Enabled domain invites (deprecated, no longer logged) - DBTEAMLOGEventTypeArgEnabledDomainInvites, - - /// (encryption) Canceled team encryption key deletion - DBTEAMLOGEventTypeArgTeamEncryptionKeyCancelKeyDeletion, - - /// (encryption) Created team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyCreateKey, - - /// (encryption) Deleted team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyDeleteKey, - - /// (encryption) Disabled team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyDisableKey, - - /// (encryption) Enabled team encryption key - DBTEAMLOGEventTypeArgTeamEncryptionKeyEnableKey, - - /// (encryption) Rotated team encryption key (deprecated, no longer logged) - DBTEAMLOGEventTypeArgTeamEncryptionKeyRotateKey, - - /// (encryption) Scheduled encryption key deletion - DBTEAMLOGEventTypeArgTeamEncryptionKeyScheduleKeyDeletion, - - /// (file_operations) Applied naming convention - DBTEAMLOGEventTypeArgApplyNamingConvention, - - /// (file_operations) Created folders (deprecated, no longer logged) - DBTEAMLOGEventTypeArgCreateFolder, - - /// (file_operations) Added files and/or folders - DBTEAMLOGEventTypeArgFileAdd, - - /// (file_operations) Added files and/or folders from automation - DBTEAMLOGEventTypeArgFileAddFromAutomation, - - /// (file_operations) Copied files and/or folders - DBTEAMLOGEventTypeArgFileCopy, - - /// (file_operations) Deleted files and/or folders - DBTEAMLOGEventTypeArgFileDelete, - - /// (file_operations) Downloaded files and/or folders - DBTEAMLOGEventTypeArgFileDownload, - - /// (file_operations) Edited files - DBTEAMLOGEventTypeArgFileEdit, - - /// (file_operations) Created copy reference to file/folder - DBTEAMLOGEventTypeArgFileGetCopyReference, - - /// (file_operations) Locked/unlocked editing for a file - DBTEAMLOGEventTypeArgFileLockingLockStatusChanged, - - /// (file_operations) Moved files and/or folders - DBTEAMLOGEventTypeArgFileMove, - - /// (file_operations) Permanently deleted files and/or folders - DBTEAMLOGEventTypeArgFilePermanentlyDelete, - - /// (file_operations) Previewed files and/or folders - DBTEAMLOGEventTypeArgFilePreview, - - /// (file_operations) Renamed files and/or folders - DBTEAMLOGEventTypeArgFileRename, - - /// (file_operations) Restored deleted files and/or folders - DBTEAMLOGEventTypeArgFileRestore, - - /// (file_operations) Reverted files to previous version - DBTEAMLOGEventTypeArgFileRevert, - - /// (file_operations) Rolled back file actions - DBTEAMLOGEventTypeArgFileRollbackChanges, - - /// (file_operations) Saved file/folder using copy reference - DBTEAMLOGEventTypeArgFileSaveCopyReference, - - /// (file_operations) Updated folder overview - DBTEAMLOGEventTypeArgFolderOverviewDescriptionChanged, - - /// (file_operations) Pinned item to folder overview - DBTEAMLOGEventTypeArgFolderOverviewItemPinned, - - /// (file_operations) Unpinned item from folder overview - DBTEAMLOGEventTypeArgFolderOverviewItemUnpinned, - - /// (file_operations) Added a label - DBTEAMLOGEventTypeArgObjectLabelAdded, - - /// (file_operations) Removed a label - DBTEAMLOGEventTypeArgObjectLabelRemoved, - - /// (file_operations) Updated a label's value - DBTEAMLOGEventTypeArgObjectLabelUpdatedValue, - - /// (file_operations) Organized a folder with multi-file organize - DBTEAMLOGEventTypeArgOrganizeFolderWithTidy, - - /// (file_operations) Deleted files in Replay - DBTEAMLOGEventTypeArgReplayFileDelete, - - /// (file_operations) Rewound a folder - DBTEAMLOGEventTypeArgRewindFolder, - - /// (file_operations) Reverted naming convention - DBTEAMLOGEventTypeArgUndoNamingConvention, - - /// (file_operations) Removed multi-file organize - DBTEAMLOGEventTypeArgUndoOrganizeFolderWithTidy, - - /// (file_operations) Tagged a file - DBTEAMLOGEventTypeArgUserTagsAdded, - - /// (file_operations) Removed tags - DBTEAMLOGEventTypeArgUserTagsRemoved, - - /// (file_requests) Received files via Email to Dropbox - DBTEAMLOGEventTypeArgEmailIngestReceiveFile, - - /// (file_requests) Changed file request - DBTEAMLOGEventTypeArgFileRequestChange, - - /// (file_requests) Closed file request - DBTEAMLOGEventTypeArgFileRequestClose, - - /// (file_requests) Created file request - DBTEAMLOGEventTypeArgFileRequestCreate, - - /// (file_requests) Delete file request - DBTEAMLOGEventTypeArgFileRequestDelete, - - /// (file_requests) Received files for file request - DBTEAMLOGEventTypeArgFileRequestReceiveFile, - - /// (groups) Added external ID for group - DBTEAMLOGEventTypeArgGroupAddExternalId, - - /// (groups) Added team members to group - DBTEAMLOGEventTypeArgGroupAddMember, - - /// (groups) Changed external ID for group - DBTEAMLOGEventTypeArgGroupChangeExternalId, - - /// (groups) Changed group management type - DBTEAMLOGEventTypeArgGroupChangeManagementType, - - /// (groups) Changed manager permissions of group member - DBTEAMLOGEventTypeArgGroupChangeMemberRole, - - /// (groups) Created group - DBTEAMLOGEventTypeArgGroupCreate, - - /// (groups) Deleted group - DBTEAMLOGEventTypeArgGroupDelete, - - /// (groups) Updated group (deprecated, no longer logged) - DBTEAMLOGEventTypeArgGroupDescriptionUpdated, - - /// (groups) Updated group join policy (deprecated, no longer logged) - DBTEAMLOGEventTypeArgGroupJoinPolicyUpdated, - - /// (groups) Moved group (deprecated, no longer logged) - DBTEAMLOGEventTypeArgGroupMoved, - - /// (groups) Removed external ID for group - DBTEAMLOGEventTypeArgGroupRemoveExternalId, - - /// (groups) Removed team members from group - DBTEAMLOGEventTypeArgGroupRemoveMember, - - /// (groups) Renamed group - DBTEAMLOGEventTypeArgGroupRename, - - /// (logins) Unlocked/locked account after failed sign in attempts - DBTEAMLOGEventTypeArgAccountLockOrUnlocked, - - /// (logins) Failed to sign in via EMM (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeArgEmmError, - - /// (logins) Started trusted team admin session - DBTEAMLOGEventTypeArgGuestAdminSignedInViaTrustedTeams, - - /// (logins) Ended trusted team admin session - DBTEAMLOGEventTypeArgGuestAdminSignedOutViaTrustedTeams, - - /// (logins) Failed to sign in - DBTEAMLOGEventTypeArgLoginFail, - - /// (logins) Signed in - DBTEAMLOGEventTypeArgLoginSuccess, - - /// (logins) Signed out - DBTEAMLOGEventTypeArgLogout, - - /// (logins) Ended reseller support session - DBTEAMLOGEventTypeArgResellerSupportSessionEnd, - - /// (logins) Started reseller support session - DBTEAMLOGEventTypeArgResellerSupportSessionStart, - - /// (logins) Ended admin sign-in-as session - DBTEAMLOGEventTypeArgSignInAsSessionEnd, - - /// (logins) Started admin sign-in-as session - DBTEAMLOGEventTypeArgSignInAsSessionStart, - - /// (logins) Failed to sign in via SSO (deprecated, replaced by 'Failed to - /// sign in') - DBTEAMLOGEventTypeArgSsoError, - - /// (members) Invited members to activate Backup - DBTEAMLOGEventTypeArgBackupAdminInvitationSent, - - /// (members) Opened Backup invite - DBTEAMLOGEventTypeArgBackupInvitationOpened, - - /// (members) Created team invite link - DBTEAMLOGEventTypeArgCreateTeamInviteLink, - - /// (members) Deleted team invite link - DBTEAMLOGEventTypeArgDeleteTeamInviteLink, - - /// (members) Added an external ID for team member - DBTEAMLOGEventTypeArgMemberAddExternalId, - - /// (members) Added team member name - DBTEAMLOGEventTypeArgMemberAddName, - - /// (members) Changed team member admin role - DBTEAMLOGEventTypeArgMemberChangeAdminRole, - - /// (members) Changed team member email - DBTEAMLOGEventTypeArgMemberChangeEmail, - - /// (members) Changed the external ID for team member - DBTEAMLOGEventTypeArgMemberChangeExternalId, - - /// (members) Changed membership type (limited/full) of member (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeArgMemberChangeMembershipType, - - /// (members) Changed team member name - DBTEAMLOGEventTypeArgMemberChangeName, - - /// (members) Changed team member reseller role - DBTEAMLOGEventTypeArgMemberChangeResellerRole, - - /// (members) Changed member status (invited, joined, suspended, etc.) - DBTEAMLOGEventTypeArgMemberChangeStatus, - - /// (members) Cleared manually added contacts - DBTEAMLOGEventTypeArgMemberDeleteManualContacts, - - /// (members) Deleted team member profile photo - DBTEAMLOGEventTypeArgMemberDeleteProfilePhoto, - - /// (members) Permanently deleted contents of deleted team member account - DBTEAMLOGEventTypeArgMemberPermanentlyDeleteAccountContents, - - /// (members) Removed the external ID for team member - DBTEAMLOGEventTypeArgMemberRemoveExternalId, - - /// (members) Set team member profile photo - DBTEAMLOGEventTypeArgMemberSetProfilePhoto, - - /// (members) Set custom member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsAddCustomQuota, - - /// (members) Changed custom member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangeCustomQuota, - - /// (members) Changed space limit status - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangeStatus, - - /// (members) Removed custom member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsRemoveCustomQuota, - - /// (members) Suggested person to add to team - DBTEAMLOGEventTypeArgMemberSuggest, - - /// (members) Transferred contents of deleted member account to another - /// member - DBTEAMLOGEventTypeArgMemberTransferAccountContents, - - /// (members) Added pending secondary email - DBTEAMLOGEventTypeArgPendingSecondaryEmailAdded, - - /// (members) Deleted secondary email - DBTEAMLOGEventTypeArgSecondaryEmailDeleted, - - /// (members) Verified secondary email - DBTEAMLOGEventTypeArgSecondaryEmailVerified, - - /// (members) Secondary mails policy changed - DBTEAMLOGEventTypeArgSecondaryMailsPolicyChanged, - - /// (paper) Added Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderAddPage, - - /// (paper) Added Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderAddSection, - - /// (paper) Removed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRemovePage, - - /// (paper) Removed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRemoveSection, - - /// (paper) Renamed Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRenamePage, - - /// (paper) Renamed Binder section (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderRenameSection, - - /// (paper) Reordered Binder page (deprecated, replaced by 'Edited files') - DBTEAMLOGEventTypeArgBinderReorderPage, - - /// (paper) Reordered Binder section (deprecated, replaced by 'Edited - /// files') - DBTEAMLOGEventTypeArgBinderReorderSection, - - /// (paper) Added users and/or groups to Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentAddMember, - - /// (paper) Added Paper doc/folder to folder - DBTEAMLOGEventTypeArgPaperContentAddToFolder, - - /// (paper) Archived Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentArchive, - - /// (paper) Created Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentCreate, - - /// (paper) Permanently deleted Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentPermanentlyDelete, - - /// (paper) Removed Paper doc/folder from folder - DBTEAMLOGEventTypeArgPaperContentRemoveFromFolder, - - /// (paper) Removed users and/or groups from Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentRemoveMember, - - /// (paper) Renamed Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentRename, - - /// (paper) Restored archived Paper doc/folder - DBTEAMLOGEventTypeArgPaperContentRestore, - - /// (paper) Added Paper doc comment - DBTEAMLOGEventTypeArgPaperDocAddComment, - - /// (paper) Changed member permissions for Paper doc - DBTEAMLOGEventTypeArgPaperDocChangeMemberRole, - - /// (paper) Changed sharing setting for Paper doc - DBTEAMLOGEventTypeArgPaperDocChangeSharingPolicy, - - /// (paper) Followed/unfollowed Paper doc - DBTEAMLOGEventTypeArgPaperDocChangeSubscription, - - /// (paper) Archived Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperDocDeleted, - - /// (paper) Deleted Paper doc comment - DBTEAMLOGEventTypeArgPaperDocDeleteComment, - - /// (paper) Downloaded Paper doc in specific format - DBTEAMLOGEventTypeArgPaperDocDownload, - - /// (paper) Edited Paper doc - DBTEAMLOGEventTypeArgPaperDocEdit, - - /// (paper) Edited Paper doc comment - DBTEAMLOGEventTypeArgPaperDocEditComment, - - /// (paper) Followed Paper doc (deprecated, replaced by 'Followed/unfollowed - /// Paper doc') - DBTEAMLOGEventTypeArgPaperDocFollowed, - - /// (paper) Mentioned user in Paper doc - DBTEAMLOGEventTypeArgPaperDocMention, - - /// (paper) Transferred ownership of Paper doc - DBTEAMLOGEventTypeArgPaperDocOwnershipChanged, - - /// (paper) Requested access to Paper doc - DBTEAMLOGEventTypeArgPaperDocRequestAccess, - - /// (paper) Resolved Paper doc comment - DBTEAMLOGEventTypeArgPaperDocResolveComment, - - /// (paper) Restored Paper doc to previous version - DBTEAMLOGEventTypeArgPaperDocRevert, - - /// (paper) Shared Paper doc via Slack - DBTEAMLOGEventTypeArgPaperDocSlackShare, - - /// (paper) Shared Paper doc with users and/or groups (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgPaperDocTeamInvite, - - /// (paper) Deleted Paper doc - DBTEAMLOGEventTypeArgPaperDocTrashed, - - /// (paper) Unresolved Paper doc comment - DBTEAMLOGEventTypeArgPaperDocUnresolveComment, - - /// (paper) Restored Paper doc - DBTEAMLOGEventTypeArgPaperDocUntrashed, - - /// (paper) Viewed Paper doc - DBTEAMLOGEventTypeArgPaperDocView, - - /// (paper) Changed Paper external sharing setting to anyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgPaperExternalViewAllow, - - /// (paper) Changed Paper external sharing setting to default team - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperExternalViewDefaultTeam, - - /// (paper) Changed Paper external sharing setting to team-only (deprecated, - /// no longer logged) - DBTEAMLOGEventTypeArgPaperExternalViewForbid, - - /// (paper) Followed/unfollowed Paper folder - DBTEAMLOGEventTypeArgPaperFolderChangeSubscription, - - /// (paper) Archived Paper folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperFolderDeleted, - - /// (paper) Followed Paper folder (deprecated, replaced by - /// 'Followed/unfollowed Paper folder') - DBTEAMLOGEventTypeArgPaperFolderFollowed, - - /// (paper) Shared Paper folder with users and/or groups (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgPaperFolderTeamInvite, - - /// (paper) Changed permissions for published doc - DBTEAMLOGEventTypeArgPaperPublishedLinkChangePermission, - - /// (paper) Published doc - DBTEAMLOGEventTypeArgPaperPublishedLinkCreate, - - /// (paper) Unpublished doc - DBTEAMLOGEventTypeArgPaperPublishedLinkDisabled, - - /// (paper) Viewed published doc - DBTEAMLOGEventTypeArgPaperPublishedLinkView, - - /// (passwords) Changed password - DBTEAMLOGEventTypeArgPasswordChange, - - /// (passwords) Reset password - DBTEAMLOGEventTypeArgPasswordReset, - - /// (passwords) Reset all team member passwords - DBTEAMLOGEventTypeArgPasswordResetAll, - - /// (reports) Created Classification report - DBTEAMLOGEventTypeArgClassificationCreateReport, - - /// (reports) Couldn't create Classification report - DBTEAMLOGEventTypeArgClassificationCreateReportFail, - - /// (reports) Created EMM-excluded users report - DBTEAMLOGEventTypeArgEmmCreateExceptionsReport, - - /// (reports) Created EMM mobile app usage report - DBTEAMLOGEventTypeArgEmmCreateUsageReport, - - /// (reports) Created member data report - DBTEAMLOGEventTypeArgExportMembersReport, - - /// (reports) Failed to create members data report - DBTEAMLOGEventTypeArgExportMembersReportFail, - - /// (reports) Created External sharing report - DBTEAMLOGEventTypeArgExternalSharingCreateReport, - - /// (reports) Couldn't create External sharing report - DBTEAMLOGEventTypeArgExternalSharingReportFailed, - - /// (reports) Report created: Links created with no expiration - DBTEAMLOGEventTypeArgNoExpirationLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created with no expiration - DBTEAMLOGEventTypeArgNoExpirationLinkGenReportFailed, - - /// (reports) Report created: Links created without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkGenCreateReport, - - /// (reports) Couldn't create report: Links created without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkGenReportFailed, - - /// (reports) Report created: Views of links without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of links without passwords - DBTEAMLOGEventTypeArgNoPasswordLinkViewReportFailed, - - /// (reports) Report created: Views of old links - DBTEAMLOGEventTypeArgOutdatedLinkViewCreateReport, - - /// (reports) Couldn't create report: Views of old links - DBTEAMLOGEventTypeArgOutdatedLinkViewReportFailed, - - /// (reports) Exported all team Paper docs - DBTEAMLOGEventTypeArgPaperAdminExportStart, - - /// (reports) Created ransomware report - DBTEAMLOGEventTypeArgRansomwareAlertCreateReport, - - /// (reports) Couldn't generate ransomware report - DBTEAMLOGEventTypeArgRansomwareAlertCreateReportFailed, - - /// (reports) Created Smart Sync non-admin devices report - DBTEAMLOGEventTypeArgSmartSyncCreateAdminPrivilegeReport, - - /// (reports) Created team activity report - DBTEAMLOGEventTypeArgTeamActivityCreateReport, - - /// (reports) Couldn't generate team activity report - DBTEAMLOGEventTypeArgTeamActivityCreateReportFail, - - /// (sharing) Shared album - DBTEAMLOGEventTypeArgCollectionShare, - - /// (sharing) Transfer files added - DBTEAMLOGEventTypeArgFileTransfersFileAdd, - - /// (sharing) Deleted transfer - DBTEAMLOGEventTypeArgFileTransfersTransferDelete, - - /// (sharing) Transfer downloaded - DBTEAMLOGEventTypeArgFileTransfersTransferDownload, - - /// (sharing) Sent transfer - DBTEAMLOGEventTypeArgFileTransfersTransferSend, - - /// (sharing) Viewed transfer - DBTEAMLOGEventTypeArgFileTransfersTransferView, - - /// (sharing) Changed Paper doc to invite-only (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgNoteAclInviteOnly, - - /// (sharing) Changed Paper doc to link-accessible (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgNoteAclLink, - - /// (sharing) Changed Paper doc to link-accessible for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgNoteAclTeamLink, - - /// (sharing) Shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgNoteShared, - - /// (sharing) Shared received Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgNoteShareReceive, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgOpenNoteShared, - - /// (sharing) Created shared link in Replay - DBTEAMLOGEventTypeArgReplayFileSharedLinkCreated, - - /// (sharing) Modified shared link in Replay - DBTEAMLOGEventTypeArgReplayFileSharedLinkModified, - - /// (sharing) Added member to Replay Project - DBTEAMLOGEventTypeArgReplayProjectTeamAdd, - - /// (sharing) Removed member from Replay Project - DBTEAMLOGEventTypeArgReplayProjectTeamDelete, - - /// (sharing) Added team to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfAddGroup, - - /// (sharing) Allowed non-collaborators to view links to files in shared - /// folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfAllowNonMembersToViewSharedLinks, - - /// (sharing) Set team members to see warning before sharing folders outside - /// team (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfExternalInviteWarn, - - /// (sharing) Invited Facebook users to shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgSfFbInvite, - - /// (sharing) Changed Facebook user's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfFbInviteChangeRole, - - /// (sharing) Uninvited Facebook user from shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfFbUninvite, - - /// (sharing) Invited group to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfInviteGroup, - - /// (sharing) Granted access to shared folder (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSfTeamGrantAccess, - - /// (sharing) Invited team members to shared folder (deprecated, replaced by - /// 'Invited user to Dropbox and added them to shared file/folder') - DBTEAMLOGEventTypeArgSfTeamInvite, - - /// (sharing) Changed team member's role in shared folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfTeamInviteChangeRole, - - /// (sharing) Joined team member's shared folder (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgSfTeamJoin, - - /// (sharing) Joined team member's shared folder from link (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSfTeamJoinFromOobLink, - - /// (sharing) Unshared folder with team member (deprecated, replaced by - /// 'Removed invitee from shared file/folder before invite was accepted') - DBTEAMLOGEventTypeArgSfTeamUninvite, - - /// (sharing) Invited user to Dropbox and added them to shared file/folder - DBTEAMLOGEventTypeArgSharedContentAddInvitees, - - /// (sharing) Added expiration date to link for shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedContentAddLinkExpiry, - - /// (sharing) Added password to link for shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentAddLinkPassword, - - /// (sharing) Added users and/or groups to shared file/folder - DBTEAMLOGEventTypeArgSharedContentAddMember, - - /// (sharing) Changed whether members can download shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeDownloadsPolicy, - - /// (sharing) Changed access type of invitee to shared file/folder before - /// invite was accepted - DBTEAMLOGEventTypeArgSharedContentChangeInviteeRole, - - /// (sharing) Changed link audience of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeLinkAudience, - - /// (sharing) Changed link expiration of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeLinkExpiry, - - /// (sharing) Changed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentChangeLinkPassword, - - /// (sharing) Changed access type of shared file/folder member - DBTEAMLOGEventTypeArgSharedContentChangeMemberRole, - - /// (sharing) Changed whether members can see who viewed shared file/folder - DBTEAMLOGEventTypeArgSharedContentChangeViewerInfoPolicy, - - /// (sharing) Acquired membership of shared file/folder by accepting invite - DBTEAMLOGEventTypeArgSharedContentClaimInvitation, - - /// (sharing) Copied shared file/folder to own Dropbox - DBTEAMLOGEventTypeArgSharedContentCopy, - - /// (sharing) Downloaded shared file/folder - DBTEAMLOGEventTypeArgSharedContentDownload, - - /// (sharing) Left shared file/folder - DBTEAMLOGEventTypeArgSharedContentRelinquishMembership, - - /// (sharing) Removed invitee from shared file/folder before invite was - /// accepted - DBTEAMLOGEventTypeArgSharedContentRemoveInvitees, - - /// (sharing) Removed link expiration date of shared file/folder - /// (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedContentRemoveLinkExpiry, - - /// (sharing) Removed link password of shared file/folder (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgSharedContentRemoveLinkPassword, - - /// (sharing) Removed user/group from shared file/folder - DBTEAMLOGEventTypeArgSharedContentRemoveMember, - - /// (sharing) Requested access to shared file/folder - DBTEAMLOGEventTypeArgSharedContentRequestAccess, - - /// (sharing) Restored shared file/folder invitees - DBTEAMLOGEventTypeArgSharedContentRestoreInvitees, - - /// (sharing) Restored users and/or groups to membership of shared - /// file/folder - DBTEAMLOGEventTypeArgSharedContentRestoreMember, - - /// (sharing) Unshared file/folder by clearing membership - DBTEAMLOGEventTypeArgSharedContentUnshare, - - /// (sharing) Previewed shared file/folder - DBTEAMLOGEventTypeArgSharedContentView, - - /// (sharing) Changed who can access shared folder via link - DBTEAMLOGEventTypeArgSharedFolderChangeLinkPolicy, - - /// (sharing) Changed whether shared folder inherits members from parent - /// folder - DBTEAMLOGEventTypeArgSharedFolderChangeMembersInheritancePolicy, - - /// (sharing) Changed who can add/remove members of shared folder - DBTEAMLOGEventTypeArgSharedFolderChangeMembersManagementPolicy, - - /// (sharing) Changed who can become member of shared folder - DBTEAMLOGEventTypeArgSharedFolderChangeMembersPolicy, - - /// (sharing) Created shared folder - DBTEAMLOGEventTypeArgSharedFolderCreate, - - /// (sharing) Declined team member's invite to shared folder - DBTEAMLOGEventTypeArgSharedFolderDeclineInvitation, - - /// (sharing) Added shared folder to own Dropbox - DBTEAMLOGEventTypeArgSharedFolderMount, - - /// (sharing) Changed parent of shared folder - DBTEAMLOGEventTypeArgSharedFolderNest, - - /// (sharing) Transferred ownership of shared folder to another member - DBTEAMLOGEventTypeArgSharedFolderTransferOwnership, - - /// (sharing) Deleted shared folder from Dropbox - DBTEAMLOGEventTypeArgSharedFolderUnmount, - - /// (sharing) Added shared link expiration date - DBTEAMLOGEventTypeArgSharedLinkAddExpiry, - - /// (sharing) Changed shared link expiration date - DBTEAMLOGEventTypeArgSharedLinkChangeExpiry, - - /// (sharing) Changed visibility of shared link - DBTEAMLOGEventTypeArgSharedLinkChangeVisibility, - - /// (sharing) Added file/folder to Dropbox from shared link - DBTEAMLOGEventTypeArgSharedLinkCopy, - - /// (sharing) Created shared link - DBTEAMLOGEventTypeArgSharedLinkCreate, - - /// (sharing) Removed shared link - DBTEAMLOGEventTypeArgSharedLinkDisable, - - /// (sharing) Downloaded file/folder from shared link - DBTEAMLOGEventTypeArgSharedLinkDownload, - - /// (sharing) Removed shared link expiration date - DBTEAMLOGEventTypeArgSharedLinkRemoveExpiry, - - /// (sharing) Added an expiration date to the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsAddExpiration, - - /// (sharing) Added a password to the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsAddPassword, - - /// (sharing) Disabled downloads - DBTEAMLOGEventTypeArgSharedLinkSettingsAllowDownloadDisabled, - - /// (sharing) Enabled downloads - DBTEAMLOGEventTypeArgSharedLinkSettingsAllowDownloadEnabled, - - /// (sharing) Changed the audience of the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsChangeAudience, - - /// (sharing) Changed the expiration date of the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsChangeExpiration, - - /// (sharing) Changed the password of the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsChangePassword, - - /// (sharing) Removed the expiration date from the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsRemoveExpiration, - - /// (sharing) Removed the password from the shared link - DBTEAMLOGEventTypeArgSharedLinkSettingsRemovePassword, - - /// (sharing) Added members as audience of shared link - DBTEAMLOGEventTypeArgSharedLinkShare, - - /// (sharing) Opened shared link - DBTEAMLOGEventTypeArgSharedLinkView, - - /// (sharing) Opened shared Paper doc (deprecated, no longer logged) - DBTEAMLOGEventTypeArgSharedNoteOpened, - - /// (sharing) Disabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeArgShmodelDisableDownloads, - - /// (sharing) Enabled downloads for link (deprecated, no longer logged) - DBTEAMLOGEventTypeArgShmodelEnableDownloads, - - /// (sharing) Shared link with group (deprecated, no longer logged) - DBTEAMLOGEventTypeArgShmodelGroupShare, - - /// (showcase) Granted access to showcase - DBTEAMLOGEventTypeArgShowcaseAccessGranted, - - /// (showcase) Added member to showcase - DBTEAMLOGEventTypeArgShowcaseAddMember, - - /// (showcase) Archived showcase - DBTEAMLOGEventTypeArgShowcaseArchived, - - /// (showcase) Created showcase - DBTEAMLOGEventTypeArgShowcaseCreated, - - /// (showcase) Deleted showcase comment - DBTEAMLOGEventTypeArgShowcaseDeleteComment, - - /// (showcase) Edited showcase - DBTEAMLOGEventTypeArgShowcaseEdited, - - /// (showcase) Edited showcase comment - DBTEAMLOGEventTypeArgShowcaseEditComment, - - /// (showcase) Added file to showcase - DBTEAMLOGEventTypeArgShowcaseFileAdded, - - /// (showcase) Downloaded file from showcase - DBTEAMLOGEventTypeArgShowcaseFileDownload, - - /// (showcase) Removed file from showcase - DBTEAMLOGEventTypeArgShowcaseFileRemoved, - - /// (showcase) Viewed file in showcase - DBTEAMLOGEventTypeArgShowcaseFileView, - - /// (showcase) Permanently deleted showcase - DBTEAMLOGEventTypeArgShowcasePermanentlyDeleted, - - /// (showcase) Added showcase comment - DBTEAMLOGEventTypeArgShowcasePostComment, - - /// (showcase) Removed member from showcase - DBTEAMLOGEventTypeArgShowcaseRemoveMember, - - /// (showcase) Renamed showcase - DBTEAMLOGEventTypeArgShowcaseRenamed, - - /// (showcase) Requested access to showcase - DBTEAMLOGEventTypeArgShowcaseRequestAccess, - - /// (showcase) Resolved showcase comment - DBTEAMLOGEventTypeArgShowcaseResolveComment, - - /// (showcase) Unarchived showcase - DBTEAMLOGEventTypeArgShowcaseRestored, - - /// (showcase) Deleted showcase - DBTEAMLOGEventTypeArgShowcaseTrashed, - - /// (showcase) Deleted showcase (old version) (deprecated, replaced by - /// 'Deleted showcase') - DBTEAMLOGEventTypeArgShowcaseTrashedDeprecated, - - /// (showcase) Unresolved showcase comment - DBTEAMLOGEventTypeArgShowcaseUnresolveComment, - - /// (showcase) Restored showcase - DBTEAMLOGEventTypeArgShowcaseUntrashed, - - /// (showcase) Restored showcase (old version) (deprecated, replaced by - /// 'Restored showcase') - DBTEAMLOGEventTypeArgShowcaseUntrashedDeprecated, - - /// (showcase) Viewed showcase - DBTEAMLOGEventTypeArgShowcaseView, - - /// (sso) Added X.509 certificate for SSO - DBTEAMLOGEventTypeArgSsoAddCert, - - /// (sso) Added sign-in URL for SSO - DBTEAMLOGEventTypeArgSsoAddLoginUrl, - - /// (sso) Added sign-out URL for SSO - DBTEAMLOGEventTypeArgSsoAddLogoutUrl, - - /// (sso) Changed X.509 certificate for SSO - DBTEAMLOGEventTypeArgSsoChangeCert, - - /// (sso) Changed sign-in URL for SSO - DBTEAMLOGEventTypeArgSsoChangeLoginUrl, - - /// (sso) Changed sign-out URL for SSO - DBTEAMLOGEventTypeArgSsoChangeLogoutUrl, - - /// (sso) Changed SAML identity mode for SSO - DBTEAMLOGEventTypeArgSsoChangeSamlIdentityMode, - - /// (sso) Removed X.509 certificate for SSO - DBTEAMLOGEventTypeArgSsoRemoveCert, - - /// (sso) Removed sign-in URL for SSO - DBTEAMLOGEventTypeArgSsoRemoveLoginUrl, - - /// (sso) Removed sign-out URL for SSO - DBTEAMLOGEventTypeArgSsoRemoveLogoutUrl, - - /// (team_folders) Changed archival status of team folder - DBTEAMLOGEventTypeArgTeamFolderChangeStatus, - - /// (team_folders) Created team folder in active status - DBTEAMLOGEventTypeArgTeamFolderCreate, - - /// (team_folders) Downgraded team folder to regular shared folder - DBTEAMLOGEventTypeArgTeamFolderDowngrade, - - /// (team_folders) Permanently deleted archived team folder - DBTEAMLOGEventTypeArgTeamFolderPermanentlyDelete, - - /// (team_folders) Renamed active/archived team folder - DBTEAMLOGEventTypeArgTeamFolderRename, - - /// (team_folders) Changed sync default - DBTEAMLOGEventTypeArgTeamSelectiveSyncSettingsChanged, - - /// (team_policies) Changed account capture setting on team domain - DBTEAMLOGEventTypeArgAccountCaptureChangePolicy, - - /// (team_policies) Changed admin reminder settings for requests to join the - /// team - DBTEAMLOGEventTypeArgAdminEmailRemindersChanged, - - /// (team_policies) Disabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeArgAllowDownloadDisabled, - - /// (team_policies) Enabled downloads (deprecated, no longer logged) - DBTEAMLOGEventTypeArgAllowDownloadEnabled, - - /// (team_policies) Changed app permissions - DBTEAMLOGEventTypeArgAppPermissionsChanged, - - /// (team_policies) Changed camera uploads setting for team - DBTEAMLOGEventTypeArgCameraUploadsPolicyChanged, - - /// (team_policies) Changed Capture transcription policy for team - DBTEAMLOGEventTypeArgCaptureTranscriptPolicyChanged, - - /// (team_policies) Changed classification policy for team - DBTEAMLOGEventTypeArgClassificationChangePolicy, - - /// (team_policies) Changed computer backup policy for team - DBTEAMLOGEventTypeArgComputerBackupPolicyChanged, - - /// (team_policies) Changed content management setting - DBTEAMLOGEventTypeArgContentAdministrationPolicyChanged, - - /// (team_policies) Set restrictions on data center locations where team - /// data resides - DBTEAMLOGEventTypeArgDataPlacementRestrictionChangePolicy, - - /// (team_policies) Completed restrictions on data center locations where - /// team data resides - DBTEAMLOGEventTypeArgDataPlacementRestrictionSatisfyPolicy, - - /// (team_policies) Added members to device approvals exception list - DBTEAMLOGEventTypeArgDeviceApprovalsAddException, - - /// (team_policies) Set/removed limit on number of computers member can link - /// to team Dropbox account - DBTEAMLOGEventTypeArgDeviceApprovalsChangeDesktopPolicy, - - /// (team_policies) Set/removed limit on number of mobile devices member can - /// link to team Dropbox account - DBTEAMLOGEventTypeArgDeviceApprovalsChangeMobilePolicy, - - /// (team_policies) Changed device approvals setting when member is over - /// limit - DBTEAMLOGEventTypeArgDeviceApprovalsChangeOverageAction, - - /// (team_policies) Changed device approvals setting when member unlinks - /// approved device - DBTEAMLOGEventTypeArgDeviceApprovalsChangeUnlinkAction, - - /// (team_policies) Removed members from device approvals exception list - DBTEAMLOGEventTypeArgDeviceApprovalsRemoveException, - - /// (team_policies) Added members to directory restrictions list - DBTEAMLOGEventTypeArgDirectoryRestrictionsAddMembers, - - /// (team_policies) Removed members from directory restrictions list - DBTEAMLOGEventTypeArgDirectoryRestrictionsRemoveMembers, - - /// (team_policies) Changed Dropbox Passwords policy for team - DBTEAMLOGEventTypeArgDropboxPasswordsPolicyChanged, - - /// (team_policies) Changed email to Dropbox policy for team - DBTEAMLOGEventTypeArgEmailIngestPolicyChanged, - - /// (team_policies) Added members to EMM exception list - DBTEAMLOGEventTypeArgEmmAddException, - - /// (team_policies) Enabled/disabled enterprise mobility management for - /// members - DBTEAMLOGEventTypeArgEmmChangePolicy, - - /// (team_policies) Removed members from EMM exception list - DBTEAMLOGEventTypeArgEmmRemoveException, - - /// (team_policies) Accepted/opted out of extended version history - DBTEAMLOGEventTypeArgExtendedVersionHistoryChangePolicy, - - /// (team_policies) Changed external drive backup policy for team - DBTEAMLOGEventTypeArgExternalDriveBackupPolicyChanged, - - /// (team_policies) Enabled/disabled commenting on team files - DBTEAMLOGEventTypeArgFileCommentsChangePolicy, - - /// (team_policies) Changed file locking policy for team - DBTEAMLOGEventTypeArgFileLockingPolicyChanged, - - /// (team_policies) Changed File Provider Migration policy for team - DBTEAMLOGEventTypeArgFileProviderMigrationPolicyChanged, - - /// (team_policies) Enabled/disabled file requests - DBTEAMLOGEventTypeArgFileRequestsChangePolicy, - - /// (team_policies) Enabled file request emails for everyone (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgFileRequestsEmailsEnabled, - - /// (team_policies) Enabled file request emails for team (deprecated, no - /// longer logged) - DBTEAMLOGEventTypeArgFileRequestsEmailsRestrictedToTeamOnly, - - /// (team_policies) Changed file transfers policy for team - DBTEAMLOGEventTypeArgFileTransfersPolicyChanged, - - /// (team_policies) Changed folder link restrictions policy for team - DBTEAMLOGEventTypeArgFolderLinkRestrictionPolicyChanged, - - /// (team_policies) Enabled/disabled Google single sign-on for team - DBTEAMLOGEventTypeArgGoogleSsoChangePolicy, - - /// (team_policies) Changed who can create groups - DBTEAMLOGEventTypeArgGroupUserManagementChangePolicy, - - /// (team_policies) Changed integration policy for team - DBTEAMLOGEventTypeArgIntegrationPolicyChanged, - - /// (team_policies) Changed invite accept email policy for team - DBTEAMLOGEventTypeArgInviteAcceptanceEmailPolicyChanged, - - /// (team_policies) Changed whether users can find team when not invited - DBTEAMLOGEventTypeArgMemberRequestsChangePolicy, - - /// (team_policies) Changed member send invite policy for team - DBTEAMLOGEventTypeArgMemberSendInvitePolicyChanged, - - /// (team_policies) Added members to member space limit exception list - DBTEAMLOGEventTypeArgMemberSpaceLimitsAddException, - - /// (team_policies) Changed member space limit type for team - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangeCapsTypePolicy, - - /// (team_policies) Changed team default member space limit - DBTEAMLOGEventTypeArgMemberSpaceLimitsChangePolicy, - - /// (team_policies) Removed members from member space limit exception list - DBTEAMLOGEventTypeArgMemberSpaceLimitsRemoveException, - - /// (team_policies) Enabled/disabled option for team members to suggest - /// people to add to team - DBTEAMLOGEventTypeArgMemberSuggestionsChangePolicy, - - /// (team_policies) Enabled/disabled Microsoft Office add-in - DBTEAMLOGEventTypeArgMicrosoftOfficeAddinChangePolicy, - - /// (team_policies) Enabled/disabled network control - DBTEAMLOGEventTypeArgNetworkControlChangePolicy, - - /// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed - /// to all members or to specific members - DBTEAMLOGEventTypeArgPaperChangeDeploymentPolicy, - - /// (team_policies) Changed whether non-members can view Paper docs with - /// link (deprecated, no longer logged) - DBTEAMLOGEventTypeArgPaperChangeMemberLinkPolicy, - - /// (team_policies) Changed whether members can share Paper docs outside - /// team, and if docs are accessible only by team members or anyone by - /// default - DBTEAMLOGEventTypeArgPaperChangeMemberPolicy, - - /// (team_policies) Enabled/disabled Dropbox Paper for team - DBTEAMLOGEventTypeArgPaperChangePolicy, - - /// (team_policies) Changed Paper Default Folder Policy setting for team - DBTEAMLOGEventTypeArgPaperDefaultFolderPolicyChanged, - - /// (team_policies) Enabled/disabled Paper Desktop for team - DBTEAMLOGEventTypeArgPaperDesktopPolicyChanged, - - /// (team_policies) Added users to Paper-enabled users list - DBTEAMLOGEventTypeArgPaperEnabledUsersGroupAddition, - - /// (team_policies) Removed users from Paper-enabled users list - DBTEAMLOGEventTypeArgPaperEnabledUsersGroupRemoval, - - /// (team_policies) Changed team password strength requirements - DBTEAMLOGEventTypeArgPasswordStrengthRequirementsChangePolicy, - - /// (team_policies) Enabled/disabled ability of team members to permanently - /// delete content - DBTEAMLOGEventTypeArgPermanentDeleteChangePolicy, - - /// (team_policies) Enabled/disabled reseller support - DBTEAMLOGEventTypeArgResellerSupportChangePolicy, - - /// (team_policies) Changed Rewind policy for team - DBTEAMLOGEventTypeArgRewindPolicyChanged, - - /// (team_policies) Changed send for signature policy for team - DBTEAMLOGEventTypeArgSendForSignaturePolicyChanged, - - /// (team_policies) Changed whether team members can join shared folders - /// owned outside team - DBTEAMLOGEventTypeArgSharingChangeFolderJoinPolicy, - - /// (team_policies) Changed the allow remove or change expiration policy for - /// the links shared outside of the team - DBTEAMLOGEventTypeArgSharingChangeLinkAllowChangeExpirationPolicy, - - /// (team_policies) Changed the default expiration for the links shared - /// outside of the team - DBTEAMLOGEventTypeArgSharingChangeLinkDefaultExpirationPolicy, - - /// (team_policies) Changed the password requirement for the links shared - /// outside of the team - DBTEAMLOGEventTypeArgSharingChangeLinkEnforcePasswordPolicy, - - /// (team_policies) Changed whether members can share links outside team, - /// and if links are accessible only by team members or anyone by default - DBTEAMLOGEventTypeArgSharingChangeLinkPolicy, - - /// (team_policies) Changed whether members can share files/folders outside - /// team - DBTEAMLOGEventTypeArgSharingChangeMemberPolicy, - - /// (team_policies) Enabled/disabled downloading files from Dropbox Showcase - /// for team - DBTEAMLOGEventTypeArgShowcaseChangeDownloadPolicy, - - /// (team_policies) Enabled/disabled Dropbox Showcase for team - DBTEAMLOGEventTypeArgShowcaseChangeEnabledPolicy, - - /// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for - /// team - DBTEAMLOGEventTypeArgShowcaseChangeExternalSharingPolicy, - - /// (team_policies) Changed automatic Smart Sync setting for team - DBTEAMLOGEventTypeArgSmarterSmartSyncPolicyChanged, - - /// (team_policies) Changed default Smart Sync setting for team members - DBTEAMLOGEventTypeArgSmartSyncChangePolicy, - - /// (team_policies) Opted team into Smart Sync - DBTEAMLOGEventTypeArgSmartSyncNotOptOut, - - /// (team_policies) Opted team out of Smart Sync - DBTEAMLOGEventTypeArgSmartSyncOptOut, - - /// (team_policies) Changed single sign-on setting for team - DBTEAMLOGEventTypeArgSsoChangePolicy, - - /// (team_policies) Changed team branding policy for team - DBTEAMLOGEventTypeArgTeamBrandingPolicyChanged, - - /// (team_policies) Changed App Integrations setting for team - DBTEAMLOGEventTypeArgTeamExtensionsPolicyChanged, - - /// (team_policies) Enabled/disabled Team Selective Sync for team - DBTEAMLOGEventTypeArgTeamSelectiveSyncPolicyChanged, - - /// (team_policies) Edited the approved list for sharing externally - DBTEAMLOGEventTypeArgTeamSharingWhitelistSubjectsChanged, - - /// (team_policies) Added members to two factor authentication exception - /// list - DBTEAMLOGEventTypeArgTfaAddException, - - /// (team_policies) Changed two-step verification setting for team - DBTEAMLOGEventTypeArgTfaChangePolicy, - - /// (team_policies) Removed members from two factor authentication exception - /// list - DBTEAMLOGEventTypeArgTfaRemoveException, - - /// (team_policies) Enabled/disabled option for members to link personal - /// Dropbox account and team account to same computer - DBTEAMLOGEventTypeArgTwoAccountChangePolicy, - - /// (team_policies) Changed team policy for viewer info - DBTEAMLOGEventTypeArgViewerInfoPolicyChanged, - - /// (team_policies) Changed watermarking policy for team - DBTEAMLOGEventTypeArgWatermarkingPolicyChanged, - - /// (team_policies) Changed limit on active sessions per member - DBTEAMLOGEventTypeArgWebSessionsChangeActiveSessionLimit, - - /// (team_policies) Changed how long members can stay signed in to - /// Dropbox.com - DBTEAMLOGEventTypeArgWebSessionsChangeFixedLengthPolicy, - - /// (team_policies) Changed how long team members can be idle while signed - /// in to Dropbox.com - DBTEAMLOGEventTypeArgWebSessionsChangeIdleLengthPolicy, - - /// (team_profile) Requested data residency migration for team data - DBTEAMLOGEventTypeArgDataResidencyMigrationRequestSuccessful, - - /// (team_profile) Request for data residency migration for team data has - /// failed - DBTEAMLOGEventTypeArgDataResidencyMigrationRequestUnsuccessful, - - /// (team_profile) Merged another team into this team - DBTEAMLOGEventTypeArgTeamMergeFrom, - - /// (team_profile) Merged this team into another team - DBTEAMLOGEventTypeArgTeamMergeTo, - - /// (team_profile) Added team background to display on shared link headers - DBTEAMLOGEventTypeArgTeamProfileAddBackground, - - /// (team_profile) Added team logo to display on shared link headers - DBTEAMLOGEventTypeArgTeamProfileAddLogo, - - /// (team_profile) Changed team background displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileChangeBackground, - - /// (team_profile) Changed default language for team - DBTEAMLOGEventTypeArgTeamProfileChangeDefaultLanguage, - - /// (team_profile) Changed team logo displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileChangeLogo, - - /// (team_profile) Changed team name - DBTEAMLOGEventTypeArgTeamProfileChangeName, - - /// (team_profile) Removed team background displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileRemoveBackground, - - /// (team_profile) Removed team logo displayed on shared link headers - DBTEAMLOGEventTypeArgTeamProfileRemoveLogo, - - /// (tfa) Added backup phone for two-step verification - DBTEAMLOGEventTypeArgTfaAddBackupPhone, - - /// (tfa) Added security key for two-step verification - DBTEAMLOGEventTypeArgTfaAddSecurityKey, - - /// (tfa) Changed backup phone for two-step verification - DBTEAMLOGEventTypeArgTfaChangeBackupPhone, - - /// (tfa) Enabled/disabled/changed two-step verification setting - DBTEAMLOGEventTypeArgTfaChangeStatus, - - /// (tfa) Removed backup phone for two-step verification - DBTEAMLOGEventTypeArgTfaRemoveBackupPhone, - - /// (tfa) Removed security key for two-step verification - DBTEAMLOGEventTypeArgTfaRemoveSecurityKey, - - /// (tfa) Reset two-step verification for team member - DBTEAMLOGEventTypeArgTfaReset, - - /// (trusted_teams) Changed enterprise admin role - DBTEAMLOGEventTypeArgChangedEnterpriseAdminRole, - - /// (trusted_teams) Changed enterprise-connected team status - DBTEAMLOGEventTypeArgChangedEnterpriseConnectedTeamStatus, - - /// (trusted_teams) Ended enterprise admin session - DBTEAMLOGEventTypeArgEndedEnterpriseAdminSession, - - /// (trusted_teams) Ended enterprise admin session (deprecated, replaced by - /// 'Ended enterprise admin session') - DBTEAMLOGEventTypeArgEndedEnterpriseAdminSessionDeprecated, - - /// (trusted_teams) Changed who can update a setting - DBTEAMLOGEventTypeArgEnterpriseSettingsLocking, - - /// (trusted_teams) Changed guest team admin status - DBTEAMLOGEventTypeArgGuestAdminChangeStatus, - - /// (trusted_teams) Started enterprise admin session - DBTEAMLOGEventTypeArgStartedEnterpriseAdminSession, - - /// (trusted_teams) Accepted a team merge request - DBTEAMLOGEventTypeArgTeamMergeRequestAccepted, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestAcceptedShownToPrimaryTeam, - - /// (trusted_teams) Accepted a team merge request (deprecated, replaced by - /// 'Accepted a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestAcceptedShownToSecondaryTeam, - - /// (trusted_teams) Automatically canceled team merge request - DBTEAMLOGEventTypeArgTeamMergeRequestAutoCanceled, - - /// (trusted_teams) Canceled a team merge request - DBTEAMLOGEventTypeArgTeamMergeRequestCanceled, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestCanceledShownToPrimaryTeam, - - /// (trusted_teams) Canceled a team merge request (deprecated, replaced by - /// 'Canceled a team merge request') - DBTEAMLOGEventTypeArgTeamMergeRequestCanceledShownToSecondaryTeam, - - /// (trusted_teams) Team merge request expired - DBTEAMLOGEventTypeArgTeamMergeRequestExpired, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeArgTeamMergeRequestExpiredShownToPrimaryTeam, - - /// (trusted_teams) Team merge request expired (deprecated, replaced by - /// 'Team merge request expired') - DBTEAMLOGEventTypeArgTeamMergeRequestExpiredShownToSecondaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgTeamMergeRequestRejectedShownToPrimaryTeam, - - /// (trusted_teams) Rejected a team merge request (deprecated, no longer - /// logged) - DBTEAMLOGEventTypeArgTeamMergeRequestRejectedShownToSecondaryTeam, - - /// (trusted_teams) Sent a team merge request reminder - DBTEAMLOGEventTypeArgTeamMergeRequestReminder, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeArgTeamMergeRequestReminderShownToPrimaryTeam, - - /// (trusted_teams) Sent a team merge request reminder (deprecated, replaced - /// by 'Sent a team merge request reminder') - DBTEAMLOGEventTypeArgTeamMergeRequestReminderShownToSecondaryTeam, - - /// (trusted_teams) Canceled the team merge - DBTEAMLOGEventTypeArgTeamMergeRequestRevoked, - - /// (trusted_teams) Requested to merge their Dropbox team into yours - DBTEAMLOGEventTypeArgTeamMergeRequestSentShownToPrimaryTeam, - - /// (trusted_teams) Requested to merge your team into another Dropbox team - DBTEAMLOGEventTypeArgTeamMergeRequestSentShownToSecondaryTeam, - - /// (no description). - DBTEAMLOGEventTypeArgOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGEventTypeArgTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of -/// "admin_alerting_alert_state_changed". -/// -/// Description of the "admin_alerting_alert_state_changed" tag state: -/// (admin_alerting) Changed an alert state -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingAlertStateChanged; - -/// -/// Initializes union class with tag state of -/// "admin_alerting_changed_alert_config". -/// -/// Description of the "admin_alerting_changed_alert_config" tag state: -/// (admin_alerting) Changed an alert setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingChangedAlertConfig; - -/// -/// Initializes union class with tag state of "admin_alerting_triggered_alert". -/// -/// Description of the "admin_alerting_triggered_alert" tag state: -/// (admin_alerting) Triggered security alert -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminAlertingTriggeredAlert; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_completed". -/// -/// Description of the "ransomware_restore_process_completed" tag state: -/// (admin_alerting) Completed ransomware restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessCompleted; - -/// -/// Initializes union class with tag state of -/// "ransomware_restore_process_started". -/// -/// Description of the "ransomware_restore_process_started" tag state: -/// (admin_alerting) Started ransomware restore process -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareRestoreProcessStarted; - -/// -/// Initializes union class with tag state of "app_blocked_by_permissions". -/// -/// Description of the "app_blocked_by_permissions" tag state: (apps) Failed to -/// connect app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppBlockedByPermissions; - -/// -/// Initializes union class with tag state of "app_link_team". -/// -/// Description of the "app_link_team" tag state: (apps) Linked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkTeam; - -/// -/// Initializes union class with tag state of "app_link_user". -/// -/// Description of the "app_link_user" tag state: (apps) Linked app for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppLinkUser; - -/// -/// Initializes union class with tag state of "app_unlink_team". -/// -/// Description of the "app_unlink_team" tag state: (apps) Unlinked app for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkTeam; - -/// -/// Initializes union class with tag state of "app_unlink_user". -/// -/// Description of the "app_unlink_user" tag state: (apps) Unlinked app for -/// member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppUnlinkUser; - -/// -/// Initializes union class with tag state of "integration_connected". -/// -/// Description of the "integration_connected" tag state: (apps) Connected -/// integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationConnected; - -/// -/// Initializes union class with tag state of "integration_disconnected". -/// -/// Description of the "integration_disconnected" tag state: (apps) Disconnected -/// integration for member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationDisconnected; - -/// -/// Initializes union class with tag state of "file_add_comment". -/// -/// Description of the "file_add_comment" tag state: (comments) Added file -/// comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddComment; - -/// -/// Initializes union class with tag state of -/// "file_change_comment_subscription". -/// -/// Description of the "file_change_comment_subscription" tag state: (comments) -/// Subscribed to or unsubscribed from comment notifications for file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileChangeCommentSubscription; - -/// -/// Initializes union class with tag state of "file_delete_comment". -/// -/// Description of the "file_delete_comment" tag state: (comments) Deleted file -/// comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDeleteComment; - -/// -/// Initializes union class with tag state of "file_edit_comment". -/// -/// Description of the "file_edit_comment" tag state: (comments) Edited file -/// comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEditComment; - -/// -/// Initializes union class with tag state of "file_like_comment". -/// -/// Description of the "file_like_comment" tag state: (comments) Liked file -/// comment (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLikeComment; - -/// -/// Initializes union class with tag state of "file_resolve_comment". -/// -/// Description of the "file_resolve_comment" tag state: (comments) Resolved -/// file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileResolveComment; - -/// -/// Initializes union class with tag state of "file_unlike_comment". -/// -/// Description of the "file_unlike_comment" tag state: (comments) Unliked file -/// comment (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnlikeComment; - -/// -/// Initializes union class with tag state of "file_unresolve_comment". -/// -/// Description of the "file_unresolve_comment" tag state: (comments) Unresolved -/// file comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileUnresolveComment; - -/// -/// Initializes union class with tag state of "governance_policy_add_folders". -/// -/// Description of the "governance_policy_add_folders" tag state: -/// (data_governance) Added folders to policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_add_folder_failed". -/// -/// Description of the "governance_policy_add_folder_failed" tag state: -/// (data_governance) Couldn't add a folder to a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyAddFolderFailed; - -/// -/// Initializes union class with tag state of -/// "governance_policy_content_disposed". -/// -/// Description of the "governance_policy_content_disposed" tag state: -/// (data_governance) Content disposed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyContentDisposed; - -/// -/// Initializes union class with tag state of "governance_policy_create". -/// -/// Description of the "governance_policy_create" tag state: (data_governance) -/// Activated a new policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyCreate; - -/// -/// Initializes union class with tag state of "governance_policy_delete". -/// -/// Description of the "governance_policy_delete" tag state: (data_governance) -/// Deleted a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyDelete; - -/// -/// Initializes union class with tag state of "governance_policy_edit_details". -/// -/// Description of the "governance_policy_edit_details" tag state: -/// (data_governance) Edited policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDetails; - -/// -/// Initializes union class with tag state of "governance_policy_edit_duration". -/// -/// Description of the "governance_policy_edit_duration" tag state: -/// (data_governance) Changed policy duration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyEditDuration; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_created". -/// -/// Description of the "governance_policy_export_created" tag state: -/// (data_governance) Created a policy download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_export_removed". -/// -/// Description of the "governance_policy_export_removed" tag state: -/// (data_governance) Removed a policy download -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyExportRemoved; - -/// -/// Initializes union class with tag state of -/// "governance_policy_remove_folders". -/// -/// Description of the "governance_policy_remove_folders" tag state: -/// (data_governance) Removed folders from policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyRemoveFolders; - -/// -/// Initializes union class with tag state of -/// "governance_policy_report_created". -/// -/// Description of the "governance_policy_report_created" tag state: -/// (data_governance) Created a summary report for a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyReportCreated; - -/// -/// Initializes union class with tag state of -/// "governance_policy_zip_part_downloaded". -/// -/// Description of the "governance_policy_zip_part_downloaded" tag state: -/// (data_governance) Downloaded content from a policy -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyZipPartDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_activate_a_hold". -/// -/// Description of the "legal_holds_activate_a_hold" tag state: -/// (data_governance) Activated a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsActivateAHold; - -/// -/// Initializes union class with tag state of "legal_holds_add_members". -/// -/// Description of the "legal_holds_add_members" tag state: (data_governance) -/// Added members to a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsAddMembers; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_details". -/// -/// Description of the "legal_holds_change_hold_details" tag state: -/// (data_governance) Edited details for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldDetails; - -/// -/// Initializes union class with tag state of "legal_holds_change_hold_name". -/// -/// Description of the "legal_holds_change_hold_name" tag state: -/// (data_governance) Renamed a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsChangeHoldName; - -/// -/// Initializes union class with tag state of "legal_holds_export_a_hold". -/// -/// Description of the "legal_holds_export_a_hold" tag state: (data_governance) -/// Exported hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportAHold; - -/// -/// Initializes union class with tag state of "legal_holds_export_cancelled". -/// -/// Description of the "legal_holds_export_cancelled" tag state: -/// (data_governance) Canceled export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportCancelled; - -/// -/// Initializes union class with tag state of "legal_holds_export_downloaded". -/// -/// Description of the "legal_holds_export_downloaded" tag state: -/// (data_governance) Downloaded export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportDownloaded; - -/// -/// Initializes union class with tag state of "legal_holds_export_removed". -/// -/// Description of the "legal_holds_export_removed" tag state: (data_governance) -/// Removed export for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsExportRemoved; - -/// -/// Initializes union class with tag state of "legal_holds_release_a_hold". -/// -/// Description of the "legal_holds_release_a_hold" tag state: (data_governance) -/// Released a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReleaseAHold; - -/// -/// Initializes union class with tag state of "legal_holds_remove_members". -/// -/// Description of the "legal_holds_remove_members" tag state: (data_governance) -/// Removed members from a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsRemoveMembers; - -/// -/// Initializes union class with tag state of "legal_holds_report_a_hold". -/// -/// Description of the "legal_holds_report_a_hold" tag state: (data_governance) -/// Created a summary report for a hold -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldsReportAHold; - -/// -/// Initializes union class with tag state of "device_change_ip_desktop". -/// -/// Description of the "device_change_ip_desktop" tag state: (devices) Changed -/// IP address associated with active desktop session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpDesktop; - -/// -/// Initializes union class with tag state of "device_change_ip_mobile". -/// -/// Description of the "device_change_ip_mobile" tag state: (devices) Changed IP -/// address associated with active mobile session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpMobile; - -/// -/// Initializes union class with tag state of "device_change_ip_web". -/// -/// Description of the "device_change_ip_web" tag state: (devices) Changed IP -/// address associated with active web session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceChangeIpWeb; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_fail". -/// -/// Description of the "device_delete_on_unlink_fail" tag state: (devices) -/// Failed to delete all files from unlinked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkFail; - -/// -/// Initializes union class with tag state of "device_delete_on_unlink_success". -/// -/// Description of the "device_delete_on_unlink_success" tag state: (devices) -/// Deleted all files from unlinked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceDeleteOnUnlinkSuccess; - -/// -/// Initializes union class with tag state of "device_link_fail". -/// -/// Description of the "device_link_fail" tag state: (devices) Failed to link -/// device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkFail; - -/// -/// Initializes union class with tag state of "device_link_success". -/// -/// Description of the "device_link_success" tag state: (devices) Linked device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceLinkSuccess; - -/// -/// Initializes union class with tag state of "device_management_disabled". -/// -/// Description of the "device_management_disabled" tag state: (devices) -/// Disabled device management (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementDisabled; - -/// -/// Initializes union class with tag state of "device_management_enabled". -/// -/// Description of the "device_management_enabled" tag state: (devices) Enabled -/// device management (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceManagementEnabled; - -/// -/// Initializes union class with tag state of -/// "device_sync_backup_status_changed". -/// -/// Description of the "device_sync_backup_status_changed" tag state: (devices) -/// Enabled/disabled backup for computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSyncBackupStatusChanged; - -/// -/// Initializes union class with tag state of "device_unlink". -/// -/// Description of the "device_unlink" tag state: (devices) Disconnected device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceUnlink; - -/// -/// Initializes union class with tag state of "dropbox_passwords_exported". -/// -/// Description of the "dropbox_passwords_exported" tag state: (devices) -/// Exported passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsExported; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_new_device_enrolled". -/// -/// Description of the "dropbox_passwords_new_device_enrolled" tag state: -/// (devices) Enrolled new Dropbox Passwords device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsNewDeviceEnrolled; - -/// -/// Initializes union class with tag state of "emm_refresh_auth_token". -/// -/// Description of the "emm_refresh_auth_token" tag state: (devices) Refreshed -/// auth token used for setting up EMM -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRefreshAuthToken; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_eligibility_status_checked". -/// -/// Description of the "external_drive_backup_eligibility_status_checked" tag -/// state: (devices) Checked external drive backup eligibility status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupEligibilityStatusChecked; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_status_changed". -/// -/// Description of the "external_drive_backup_status_changed" tag state: -/// (devices) Modified external drive backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupStatusChanged; - -/// -/// Initializes union class with tag state of -/// "account_capture_change_availability". -/// -/// Description of the "account_capture_change_availability" tag state: -/// (domains) Granted/revoked option to enable account capture on team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangeAvailability; - -/// -/// Initializes union class with tag state of "account_capture_migrate_account". -/// -/// Description of the "account_capture_migrate_account" tag state: (domains) -/// Account-captured user migrated account to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureMigrateAccount; - -/// -/// Initializes union class with tag state of -/// "account_capture_notification_emails_sent". -/// -/// Description of the "account_capture_notification_emails_sent" tag state: -/// (domains) Sent account capture email to all unmanaged members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureNotificationEmailsSent; - -/// -/// Initializes union class with tag state of -/// "account_capture_relinquish_account". -/// -/// Description of the "account_capture_relinquish_account" tag state: (domains) -/// Account-captured user changed account email to personal email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureRelinquishAccount; - -/// -/// Initializes union class with tag state of "disabled_domain_invites". -/// -/// Description of the "disabled_domain_invites" tag state: (domains) Disabled -/// domain invites (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "domain_invites_approve_request_to_join_team". -/// -/// Description of the "domain_invites_approve_request_to_join_team" tag state: -/// (domains) Approved user's request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesApproveRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_decline_request_to_join_team". -/// -/// Description of the "domain_invites_decline_request_to_join_team" tag state: -/// (domains) Declined user's request to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesDeclineRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_email_existing_users". -/// -/// Description of the "domain_invites_email_existing_users" tag state: -/// (domains) Sent domain invites to existing domain accounts (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesEmailExistingUsers; - -/// -/// Initializes union class with tag state of -/// "domain_invites_request_to_join_team". -/// -/// Description of the "domain_invites_request_to_join_team" tag state: -/// (domains) Requested to join team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesRequestToJoinTeam; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_no" tag -/// state: (domains) Disabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToNo; - -/// -/// Initializes union class with tag state of -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// Description of the "domain_invites_set_invite_new_user_pref_to_yes" tag -/// state: (domains) Enabled "Automatically invite new users" (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainInvitesSetInviteNewUserPrefToYes; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_fail". -/// -/// Description of the "domain_verification_add_domain_fail" tag state: -/// (domains) Failed to verify team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainFail; - -/// -/// Initializes union class with tag state of -/// "domain_verification_add_domain_success". -/// -/// Description of the "domain_verification_add_domain_success" tag state: -/// (domains) Verified team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationAddDomainSuccess; - -/// -/// Initializes union class with tag state of -/// "domain_verification_remove_domain". -/// -/// Description of the "domain_verification_remove_domain" tag state: (domains) -/// Removed domain from list of verified team domains -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomainVerificationRemoveDomain; - -/// -/// Initializes union class with tag state of "enabled_domain_invites". -/// -/// Description of the "enabled_domain_invites" tag state: (domains) Enabled -/// domain invites (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabledDomainInvites; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_cancel_key_deletion". -/// -/// Description of the "team_encryption_key_cancel_key_deletion" tag state: -/// (encryption) Canceled team encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCancelKeyDeletion; - -/// -/// Initializes union class with tag state of "team_encryption_key_create_key". -/// -/// Description of the "team_encryption_key_create_key" tag state: (encryption) -/// Created team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyCreateKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_delete_key". -/// -/// Description of the "team_encryption_key_delete_key" tag state: (encryption) -/// Deleted team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDeleteKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_disable_key". -/// -/// Description of the "team_encryption_key_disable_key" tag state: (encryption) -/// Disabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyDisableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_enable_key". -/// -/// Description of the "team_encryption_key_enable_key" tag state: (encryption) -/// Enabled team encryption key -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyEnableKey; - -/// -/// Initializes union class with tag state of "team_encryption_key_rotate_key". -/// -/// Description of the "team_encryption_key_rotate_key" tag state: (encryption) -/// Rotated team encryption key (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyRotateKey; - -/// -/// Initializes union class with tag state of -/// "team_encryption_key_schedule_key_deletion". -/// -/// Description of the "team_encryption_key_schedule_key_deletion" tag state: -/// (encryption) Scheduled encryption key deletion -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamEncryptionKeyScheduleKeyDeletion; - -/// -/// Initializes union class with tag state of "apply_naming_convention". -/// -/// Description of the "apply_naming_convention" tag state: (file_operations) -/// Applied naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApplyNamingConvention; - -/// -/// Initializes union class with tag state of "create_folder". -/// -/// Description of the "create_folder" tag state: (file_operations) Created -/// folders (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateFolder; - -/// -/// Initializes union class with tag state of "file_add". -/// -/// Description of the "file_add" tag state: (file_operations) Added files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAdd; - -/// -/// Initializes union class with tag state of "file_add_from_automation". -/// -/// Description of the "file_add_from_automation" tag state: (file_operations) -/// Added files and/or folders from automation -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileAddFromAutomation; - -/// -/// Initializes union class with tag state of "file_copy". -/// -/// Description of the "file_copy" tag state: (file_operations) Copied files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCopy; - -/// -/// Initializes union class with tag state of "file_delete". -/// -/// Description of the "file_delete" tag state: (file_operations) Deleted files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDelete; - -/// -/// Initializes union class with tag state of "file_download". -/// -/// Description of the "file_download" tag state: (file_operations) Downloaded -/// files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileDownload; - -/// -/// Initializes union class with tag state of "file_edit". -/// -/// Description of the "file_edit" tag state: (file_operations) Edited files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileEdit; - -/// -/// Initializes union class with tag state of "file_get_copy_reference". -/// -/// Description of the "file_get_copy_reference" tag state: (file_operations) -/// Created copy reference to file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileGetCopyReference; - -/// -/// Initializes union class with tag state of -/// "file_locking_lock_status_changed". -/// -/// Description of the "file_locking_lock_status_changed" tag state: -/// (file_operations) Locked/unlocked editing for a file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingLockStatusChanged; - -/// -/// Initializes union class with tag state of "file_move". -/// -/// Description of the "file_move" tag state: (file_operations) Moved files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileMove; - -/// -/// Initializes union class with tag state of "file_permanently_delete". -/// -/// Description of the "file_permanently_delete" tag state: (file_operations) -/// Permanently deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePermanentlyDelete; - -/// -/// Initializes union class with tag state of "file_preview". -/// -/// Description of the "file_preview" tag state: (file_operations) Previewed -/// files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFilePreview; - -/// -/// Initializes union class with tag state of "file_rename". -/// -/// Description of the "file_rename" tag state: (file_operations) Renamed files -/// and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRename; - -/// -/// Initializes union class with tag state of "file_restore". -/// -/// Description of the "file_restore" tag state: (file_operations) Restored -/// deleted files and/or folders -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRestore; - -/// -/// Initializes union class with tag state of "file_revert". -/// -/// Description of the "file_revert" tag state: (file_operations) Reverted files -/// to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRevert; - -/// -/// Initializes union class with tag state of "file_rollback_changes". -/// -/// Description of the "file_rollback_changes" tag state: (file_operations) -/// Rolled back file actions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRollbackChanges; - -/// -/// Initializes union class with tag state of "file_save_copy_reference". -/// -/// Description of the "file_save_copy_reference" tag state: (file_operations) -/// Saved file/folder using copy reference -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileSaveCopyReference; - -/// -/// Initializes union class with tag state of -/// "folder_overview_description_changed". -/// -/// Description of the "folder_overview_description_changed" tag state: -/// (file_operations) Updated folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewDescriptionChanged; - -/// -/// Initializes union class with tag state of "folder_overview_item_pinned". -/// -/// Description of the "folder_overview_item_pinned" tag state: -/// (file_operations) Pinned item to folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemPinned; - -/// -/// Initializes union class with tag state of "folder_overview_item_unpinned". -/// -/// Description of the "folder_overview_item_unpinned" tag state: -/// (file_operations) Unpinned item from folder overview -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewItemUnpinned; - -/// -/// Initializes union class with tag state of "object_label_added". -/// -/// Description of the "object_label_added" tag state: (file_operations) Added a -/// label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelAdded; - -/// -/// Initializes union class with tag state of "object_label_removed". -/// -/// Description of the "object_label_removed" tag state: (file_operations) -/// Removed a label -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelRemoved; - -/// -/// Initializes union class with tag state of "object_label_updated_value". -/// -/// Description of the "object_label_updated_value" tag state: (file_operations) -/// Updated a label's value -/// -/// @return An initialized instance. -/// -- (instancetype)initWithObjectLabelUpdatedValue; - -/// -/// Initializes union class with tag state of "organize_folder_with_tidy". -/// -/// Description of the "organize_folder_with_tidy" tag state: (file_operations) -/// Organized a folder with multi-file organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "replay_file_delete". -/// -/// Description of the "replay_file_delete" tag state: (file_operations) Deleted -/// files in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileDelete; - -/// -/// Initializes union class with tag state of "rewind_folder". -/// -/// Description of the "rewind_folder" tag state: (file_operations) Rewound a -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolder; - -/// -/// Initializes union class with tag state of "undo_naming_convention". -/// -/// Description of the "undo_naming_convention" tag state: (file_operations) -/// Reverted naming convention -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoNamingConvention; - -/// -/// Initializes union class with tag state of "undo_organize_folder_with_tidy". -/// -/// Description of the "undo_organize_folder_with_tidy" tag state: -/// (file_operations) Removed multi-file organize -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndoOrganizeFolderWithTidy; - -/// -/// Initializes union class with tag state of "user_tags_added". -/// -/// Description of the "user_tags_added" tag state: (file_operations) Tagged a -/// file -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsAdded; - -/// -/// Initializes union class with tag state of "user_tags_removed". -/// -/// Description of the "user_tags_removed" tag state: (file_operations) Removed -/// tags -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserTagsRemoved; - -/// -/// Initializes union class with tag state of "email_ingest_receive_file". -/// -/// Description of the "email_ingest_receive_file" tag state: (file_requests) -/// Received files via Email to Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestReceiveFile; - -/// -/// Initializes union class with tag state of "file_request_change". -/// -/// Description of the "file_request_change" tag state: (file_requests) Changed -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestChange; - -/// -/// Initializes union class with tag state of "file_request_close". -/// -/// Description of the "file_request_close" tag state: (file_requests) Closed -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestClose; - -/// -/// Initializes union class with tag state of "file_request_create". -/// -/// Description of the "file_request_create" tag state: (file_requests) Created -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestCreate; - -/// -/// Initializes union class with tag state of "file_request_delete". -/// -/// Description of the "file_request_delete" tag state: (file_requests) Delete -/// file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestDelete; - -/// -/// Initializes union class with tag state of "file_request_receive_file". -/// -/// Description of the "file_request_receive_file" tag state: (file_requests) -/// Received files for file request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestReceiveFile; - -/// -/// Initializes union class with tag state of "group_add_external_id". -/// -/// Description of the "group_add_external_id" tag state: (groups) Added -/// external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddExternalId; - -/// -/// Initializes union class with tag state of "group_add_member". -/// -/// Description of the "group_add_member" tag state: (groups) Added team members -/// to group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupAddMember; - -/// -/// Initializes union class with tag state of "group_change_external_id". -/// -/// Description of the "group_change_external_id" tag state: (groups) Changed -/// external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeExternalId; - -/// -/// Initializes union class with tag state of "group_change_management_type". -/// -/// Description of the "group_change_management_type" tag state: (groups) -/// Changed group management type -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeManagementType; - -/// -/// Initializes union class with tag state of "group_change_member_role". -/// -/// Description of the "group_change_member_role" tag state: (groups) Changed -/// manager permissions of group member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupChangeMemberRole; - -/// -/// Initializes union class with tag state of "group_create". -/// -/// Description of the "group_create" tag state: (groups) Created group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupCreate; - -/// -/// Initializes union class with tag state of "group_delete". -/// -/// Description of the "group_delete" tag state: (groups) Deleted group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDelete; - -/// -/// Initializes union class with tag state of "group_description_updated". -/// -/// Description of the "group_description_updated" tag state: (groups) Updated -/// group (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupDescriptionUpdated; - -/// -/// Initializes union class with tag state of "group_join_policy_updated". -/// -/// Description of the "group_join_policy_updated" tag state: (groups) Updated -/// group join policy (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupJoinPolicyUpdated; - -/// -/// Initializes union class with tag state of "group_moved". -/// -/// Description of the "group_moved" tag state: (groups) Moved group -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupMoved; - -/// -/// Initializes union class with tag state of "group_remove_external_id". -/// -/// Description of the "group_remove_external_id" tag state: (groups) Removed -/// external ID for group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveExternalId; - -/// -/// Initializes union class with tag state of "group_remove_member". -/// -/// Description of the "group_remove_member" tag state: (groups) Removed team -/// members from group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRemoveMember; - -/// -/// Initializes union class with tag state of "group_rename". -/// -/// Description of the "group_rename" tag state: (groups) Renamed group -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupRename; - -/// -/// Initializes union class with tag state of "account_lock_or_unlocked". -/// -/// Description of the "account_lock_or_unlocked" tag state: (logins) -/// Unlocked/locked account after failed sign in attempts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountLockOrUnlocked; - -/// -/// Initializes union class with tag state of "emm_error". -/// -/// Description of the "emm_error" tag state: (logins) Failed to sign in via EMM -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmError; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_in_via_trusted_teams" tag state: -/// (logins) Started trusted team admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedInViaTrustedTeams; - -/// -/// Initializes union class with tag state of -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// Description of the "guest_admin_signed_out_via_trusted_teams" tag state: -/// (logins) Ended trusted team admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminSignedOutViaTrustedTeams; - -/// -/// Initializes union class with tag state of "login_fail". -/// -/// Description of the "login_fail" tag state: (logins) Failed to sign in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginFail; - -/// -/// Initializes union class with tag state of "login_success". -/// -/// Description of the "login_success" tag state: (logins) Signed in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginSuccess; - -/// -/// Initializes union class with tag state of "logout". -/// -/// Description of the "logout" tag state: (logins) Signed out -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLogout; - -/// -/// Initializes union class with tag state of "reseller_support_session_end". -/// -/// Description of the "reseller_support_session_end" tag state: (logins) Ended -/// reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionEnd; - -/// -/// Initializes union class with tag state of "reseller_support_session_start". -/// -/// Description of the "reseller_support_session_start" tag state: (logins) -/// Started reseller support session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportSessionStart; - -/// -/// Initializes union class with tag state of "sign_in_as_session_end". -/// -/// Description of the "sign_in_as_session_end" tag state: (logins) Ended admin -/// sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionEnd; - -/// -/// Initializes union class with tag state of "sign_in_as_session_start". -/// -/// Description of the "sign_in_as_session_start" tag state: (logins) Started -/// admin sign-in-as session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSignInAsSessionStart; - -/// -/// Initializes union class with tag state of "sso_error". -/// -/// Description of the "sso_error" tag state: (logins) Failed to sign in via SSO -/// (deprecated, replaced by 'Failed to sign in') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoError; - -/// -/// Initializes union class with tag state of "backup_admin_invitation_sent". -/// -/// Description of the "backup_admin_invitation_sent" tag state: (members) -/// Invited members to activate Backup -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupAdminInvitationSent; - -/// -/// Initializes union class with tag state of "backup_invitation_opened". -/// -/// Description of the "backup_invitation_opened" tag state: (members) Opened -/// Backup invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBackupInvitationOpened; - -/// -/// Initializes union class with tag state of "create_team_invite_link". -/// -/// Description of the "create_team_invite_link" tag state: (members) Created -/// team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreateTeamInviteLink; - -/// -/// Initializes union class with tag state of "delete_team_invite_link". -/// -/// Description of the "delete_team_invite_link" tag state: (members) Deleted -/// team invite link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteTeamInviteLink; - -/// -/// Initializes union class with tag state of "member_add_external_id". -/// -/// Description of the "member_add_external_id" tag state: (members) Added an -/// external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddExternalId; - -/// -/// Initializes union class with tag state of "member_add_name". -/// -/// Description of the "member_add_name" tag state: (members) Added team member -/// name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberAddName; - -/// -/// Initializes union class with tag state of "member_change_admin_role". -/// -/// Description of the "member_change_admin_role" tag state: (members) Changed -/// team member admin role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeAdminRole; - -/// -/// Initializes union class with tag state of "member_change_email". -/// -/// Description of the "member_change_email" tag state: (members) Changed team -/// member email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeEmail; - -/// -/// Initializes union class with tag state of "member_change_external_id". -/// -/// Description of the "member_change_external_id" tag state: (members) Changed -/// the external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeExternalId; - -/// -/// Initializes union class with tag state of "member_change_membership_type". -/// -/// Description of the "member_change_membership_type" tag state: (members) -/// Changed membership type (limited/full) of member (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeMembershipType; - -/// -/// Initializes union class with tag state of "member_change_name". -/// -/// Description of the "member_change_name" tag state: (members) Changed team -/// member name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeName; - -/// -/// Initializes union class with tag state of "member_change_reseller_role". -/// -/// Description of the "member_change_reseller_role" tag state: (members) -/// Changed team member reseller role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeResellerRole; - -/// -/// Initializes union class with tag state of "member_change_status". -/// -/// Description of the "member_change_status" tag state: (members) Changed -/// member status (invited, joined, suspended, etc.) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberChangeStatus; - -/// -/// Initializes union class with tag state of "member_delete_manual_contacts". -/// -/// Description of the "member_delete_manual_contacts" tag state: (members) -/// Cleared manually added contacts -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteManualContacts; - -/// -/// Initializes union class with tag state of "member_delete_profile_photo". -/// -/// Description of the "member_delete_profile_photo" tag state: (members) -/// Deleted team member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberDeleteProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_permanently_delete_account_contents". -/// -/// Description of the "member_permanently_delete_account_contents" tag state: -/// (members) Permanently deleted contents of deleted team member account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberPermanentlyDeleteAccountContents; - -/// -/// Initializes union class with tag state of "member_remove_external_id". -/// -/// Description of the "member_remove_external_id" tag state: (members) Removed -/// the external ID for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRemoveExternalId; - -/// -/// Initializes union class with tag state of "member_set_profile_photo". -/// -/// Description of the "member_set_profile_photo" tag state: (members) Set team -/// member profile photo -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSetProfilePhoto; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_custom_quota". -/// -/// Description of the "member_space_limits_add_custom_quota" tag state: -/// (members) Set custom member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_custom_quota". -/// -/// Description of the "member_space_limits_change_custom_quota" tag state: -/// (members) Changed custom member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCustomQuota; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_status". -/// -/// Description of the "member_space_limits_change_status" tag state: (members) -/// Changed space limit status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeStatus; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_custom_quota". -/// -/// Description of the "member_space_limits_remove_custom_quota" tag state: -/// (members) Removed custom member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveCustomQuota; - -/// -/// Initializes union class with tag state of "member_suggest". -/// -/// Description of the "member_suggest" tag state: (members) Suggested person to -/// add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggest; - -/// -/// Initializes union class with tag state of -/// "member_transfer_account_contents". -/// -/// Description of the "member_transfer_account_contents" tag state: (members) -/// Transferred contents of deleted member account to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberTransferAccountContents; - -/// -/// Initializes union class with tag state of "pending_secondary_email_added". -/// -/// Description of the "pending_secondary_email_added" tag state: (members) -/// Added pending secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPendingSecondaryEmailAdded; - -/// -/// Initializes union class with tag state of "secondary_email_deleted". -/// -/// Description of the "secondary_email_deleted" tag state: (members) Deleted -/// secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailDeleted; - -/// -/// Initializes union class with tag state of "secondary_email_verified". -/// -/// Description of the "secondary_email_verified" tag state: (members) Verified -/// secondary email -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmailVerified; - -/// -/// Initializes union class with tag state of "secondary_mails_policy_changed". -/// -/// Description of the "secondary_mails_policy_changed" tag state: (members) -/// Secondary mails policy changed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryMailsPolicyChanged; - -/// -/// Initializes union class with tag state of "binder_add_page". -/// -/// Description of the "binder_add_page" tag state: (paper) Added Binder page -/// (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddPage; - -/// -/// Initializes union class with tag state of "binder_add_section". -/// -/// Description of the "binder_add_section" tag state: (paper) Added Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderAddSection; - -/// -/// Initializes union class with tag state of "binder_remove_page". -/// -/// Description of the "binder_remove_page" tag state: (paper) Removed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemovePage; - -/// -/// Initializes union class with tag state of "binder_remove_section". -/// -/// Description of the "binder_remove_section" tag state: (paper) Removed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRemoveSection; - -/// -/// Initializes union class with tag state of "binder_rename_page". -/// -/// Description of the "binder_rename_page" tag state: (paper) Renamed Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenamePage; - -/// -/// Initializes union class with tag state of "binder_rename_section". -/// -/// Description of the "binder_rename_section" tag state: (paper) Renamed Binder -/// section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderRenameSection; - -/// -/// Initializes union class with tag state of "binder_reorder_page". -/// -/// Description of the "binder_reorder_page" tag state: (paper) Reordered Binder -/// page (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderPage; - -/// -/// Initializes union class with tag state of "binder_reorder_section". -/// -/// Description of the "binder_reorder_section" tag state: (paper) Reordered -/// Binder section (deprecated, replaced by 'Edited files') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBinderReorderSection; - -/// -/// Initializes union class with tag state of "paper_content_add_member". -/// -/// Description of the "paper_content_add_member" tag state: (paper) Added users -/// and/or groups to Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddMember; - -/// -/// Initializes union class with tag state of "paper_content_add_to_folder". -/// -/// Description of the "paper_content_add_to_folder" tag state: (paper) Added -/// Paper doc/folder to folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentAddToFolder; - -/// -/// Initializes union class with tag state of "paper_content_archive". -/// -/// Description of the "paper_content_archive" tag state: (paper) Archived Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentArchive; - -/// -/// Initializes union class with tag state of "paper_content_create". -/// -/// Description of the "paper_content_create" tag state: (paper) Created Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentCreate; - -/// -/// Initializes union class with tag state of -/// "paper_content_permanently_delete". -/// -/// Description of the "paper_content_permanently_delete" tag state: (paper) -/// Permanently deleted Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentPermanentlyDelete; - -/// -/// Initializes union class with tag state of -/// "paper_content_remove_from_folder". -/// -/// Description of the "paper_content_remove_from_folder" tag state: (paper) -/// Removed Paper doc/folder from folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveFromFolder; - -/// -/// Initializes union class with tag state of "paper_content_remove_member". -/// -/// Description of the "paper_content_remove_member" tag state: (paper) Removed -/// users and/or groups from Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRemoveMember; - -/// -/// Initializes union class with tag state of "paper_content_rename". -/// -/// Description of the "paper_content_rename" tag state: (paper) Renamed Paper -/// doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRename; - -/// -/// Initializes union class with tag state of "paper_content_restore". -/// -/// Description of the "paper_content_restore" tag state: (paper) Restored -/// archived Paper doc/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperContentRestore; - -/// -/// Initializes union class with tag state of "paper_doc_add_comment". -/// -/// Description of the "paper_doc_add_comment" tag state: (paper) Added Paper -/// doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocAddComment; - -/// -/// Initializes union class with tag state of "paper_doc_change_member_role". -/// -/// Description of the "paper_doc_change_member_role" tag state: (paper) Changed -/// member permissions for Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeMemberRole; - -/// -/// Initializes union class with tag state of "paper_doc_change_sharing_policy". -/// -/// Description of the "paper_doc_change_sharing_policy" tag state: (paper) -/// Changed sharing setting for Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSharingPolicy; - -/// -/// Initializes union class with tag state of "paper_doc_change_subscription". -/// -/// Description of the "paper_doc_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_doc_deleted". -/// -/// Description of the "paper_doc_deleted" tag state: (paper) Archived Paper doc -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleted; - -/// -/// Initializes union class with tag state of "paper_doc_delete_comment". -/// -/// Description of the "paper_doc_delete_comment" tag state: (paper) Deleted -/// Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDeleteComment; - -/// -/// Initializes union class with tag state of "paper_doc_download". -/// -/// Description of the "paper_doc_download" tag state: (paper) Downloaded Paper -/// doc in specific format -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocDownload; - -/// -/// Initializes union class with tag state of "paper_doc_edit". -/// -/// Description of the "paper_doc_edit" tag state: (paper) Edited Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEdit; - -/// -/// Initializes union class with tag state of "paper_doc_edit_comment". -/// -/// Description of the "paper_doc_edit_comment" tag state: (paper) Edited Paper -/// doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocEditComment; - -/// -/// Initializes union class with tag state of "paper_doc_followed". -/// -/// Description of the "paper_doc_followed" tag state: (paper) Followed Paper -/// doc (deprecated, replaced by 'Followed/unfollowed Paper doc') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocFollowed; - -/// -/// Initializes union class with tag state of "paper_doc_mention". -/// -/// Description of the "paper_doc_mention" tag state: (paper) Mentioned user in -/// Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocMention; - -/// -/// Initializes union class with tag state of "paper_doc_ownership_changed". -/// -/// Description of the "paper_doc_ownership_changed" tag state: (paper) -/// Transferred ownership of Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocOwnershipChanged; - -/// -/// Initializes union class with tag state of "paper_doc_request_access". -/// -/// Description of the "paper_doc_request_access" tag state: (paper) Requested -/// access to Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRequestAccess; - -/// -/// Initializes union class with tag state of "paper_doc_resolve_comment". -/// -/// Description of the "paper_doc_resolve_comment" tag state: (paper) Resolved -/// Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocResolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_revert". -/// -/// Description of the "paper_doc_revert" tag state: (paper) Restored Paper doc -/// to previous version -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocRevert; - -/// -/// Initializes union class with tag state of "paper_doc_slack_share". -/// -/// Description of the "paper_doc_slack_share" tag state: (paper) Shared Paper -/// doc via Slack -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocSlackShare; - -/// -/// Initializes union class with tag state of "paper_doc_team_invite". -/// -/// Description of the "paper_doc_team_invite" tag state: (paper) Shared Paper -/// doc with users and/or groups (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTeamInvite; - -/// -/// Initializes union class with tag state of "paper_doc_trashed". -/// -/// Description of the "paper_doc_trashed" tag state: (paper) Deleted Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocTrashed; - -/// -/// Initializes union class with tag state of "paper_doc_unresolve_comment". -/// -/// Description of the "paper_doc_unresolve_comment" tag state: (paper) -/// Unresolved Paper doc comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUnresolveComment; - -/// -/// Initializes union class with tag state of "paper_doc_untrashed". -/// -/// Description of the "paper_doc_untrashed" tag state: (paper) Restored Paper -/// doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocUntrashed; - -/// -/// Initializes union class with tag state of "paper_doc_view". -/// -/// Description of the "paper_doc_view" tag state: (paper) Viewed Paper doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDocView; - -/// -/// Initializes union class with tag state of "paper_external_view_allow". -/// -/// Description of the "paper_external_view_allow" tag state: (paper) Changed -/// Paper external sharing setting to anyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewAllow; - -/// -/// Initializes union class with tag state of -/// "paper_external_view_default_team". -/// -/// Description of the "paper_external_view_default_team" tag state: (paper) -/// Changed Paper external sharing setting to default team (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewDefaultTeam; - -/// -/// Initializes union class with tag state of "paper_external_view_forbid". -/// -/// Description of the "paper_external_view_forbid" tag state: (paper) Changed -/// Paper external sharing setting to team-only (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperExternalViewForbid; - -/// -/// Initializes union class with tag state of -/// "paper_folder_change_subscription". -/// -/// Description of the "paper_folder_change_subscription" tag state: (paper) -/// Followed/unfollowed Paper folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderChangeSubscription; - -/// -/// Initializes union class with tag state of "paper_folder_deleted". -/// -/// Description of the "paper_folder_deleted" tag state: (paper) Archived Paper -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderDeleted; - -/// -/// Initializes union class with tag state of "paper_folder_followed". -/// -/// Description of the "paper_folder_followed" tag state: (paper) Followed Paper -/// folder (deprecated, replaced by 'Followed/unfollowed Paper folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderFollowed; - -/// -/// Initializes union class with tag state of "paper_folder_team_invite". -/// -/// Description of the "paper_folder_team_invite" tag state: (paper) Shared -/// Paper folder with users and/or groups (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperFolderTeamInvite; - -/// -/// Initializes union class with tag state of -/// "paper_published_link_change_permission". -/// -/// Description of the "paper_published_link_change_permission" tag state: -/// (paper) Changed permissions for published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkChangePermission; - -/// -/// Initializes union class with tag state of "paper_published_link_create". -/// -/// Description of the "paper_published_link_create" tag state: (paper) -/// Published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkCreate; - -/// -/// Initializes union class with tag state of "paper_published_link_disabled". -/// -/// Description of the "paper_published_link_disabled" tag state: (paper) -/// Unpublished doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkDisabled; - -/// -/// Initializes union class with tag state of "paper_published_link_view". -/// -/// Description of the "paper_published_link_view" tag state: (paper) Viewed -/// published doc -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperPublishedLinkView; - -/// -/// Initializes union class with tag state of "password_change". -/// -/// Description of the "password_change" tag state: (passwords) Changed password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordChange; - -/// -/// Initializes union class with tag state of "password_reset". -/// -/// Description of the "password_reset" tag state: (passwords) Reset password -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordReset; - -/// -/// Initializes union class with tag state of "password_reset_all". -/// -/// Description of the "password_reset_all" tag state: (passwords) Reset all -/// team member passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordResetAll; - -/// -/// Initializes union class with tag state of "classification_create_report". -/// -/// Description of the "classification_create_report" tag state: (reports) -/// Created Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReport; - -/// -/// Initializes union class with tag state of -/// "classification_create_report_fail". -/// -/// Description of the "classification_create_report_fail" tag state: (reports) -/// Couldn't create Classification report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationCreateReportFail; - -/// -/// Initializes union class with tag state of "emm_create_exceptions_report". -/// -/// Description of the "emm_create_exceptions_report" tag state: (reports) -/// Created EMM-excluded users report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateExceptionsReport; - -/// -/// Initializes union class with tag state of "emm_create_usage_report". -/// -/// Description of the "emm_create_usage_report" tag state: (reports) Created -/// EMM mobile app usage report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmCreateUsageReport; - -/// -/// Initializes union class with tag state of "export_members_report". -/// -/// Description of the "export_members_report" tag state: (reports) Created -/// member data report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReport; - -/// -/// Initializes union class with tag state of "export_members_report_fail". -/// -/// Description of the "export_members_report_fail" tag state: (reports) Failed -/// to create members data report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExportMembersReportFail; - -/// -/// Initializes union class with tag state of "external_sharing_create_report". -/// -/// Description of the "external_sharing_create_report" tag state: (reports) -/// Created External sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingCreateReport; - -/// -/// Initializes union class with tag state of "external_sharing_report_failed". -/// -/// Description of the "external_sharing_report_failed" tag state: (reports) -/// Couldn't create External sharing report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalSharingReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_create_report". -/// -/// Description of the "no_expiration_link_gen_create_report" tag state: -/// (reports) Report created: Links created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_expiration_link_gen_report_failed". -/// -/// Description of the "no_expiration_link_gen_report_failed" tag state: -/// (reports) Couldn't create report: Links created with no expiration -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoExpirationLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_create_report". -/// -/// Description of the "no_password_link_gen_create_report" tag state: (reports) -/// Report created: Links created without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_gen_report_failed". -/// -/// Description of the "no_password_link_gen_report_failed" tag state: (reports) -/// Couldn't create report: Links created without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkGenReportFailed; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_create_report". -/// -/// Description of the "no_password_link_view_create_report" tag state: -/// (reports) Report created: Views of links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "no_password_link_view_report_failed". -/// -/// Description of the "no_password_link_view_report_failed" tag state: -/// (reports) Couldn't create report: Views of links without passwords -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoPasswordLinkViewReportFailed; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_create_report". -/// -/// Description of the "outdated_link_view_create_report" tag state: (reports) -/// Report created: Views of old links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewCreateReport; - -/// -/// Initializes union class with tag state of -/// "outdated_link_view_report_failed". -/// -/// Description of the "outdated_link_view_report_failed" tag state: (reports) -/// Couldn't create report: Views of old links -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOutdatedLinkViewReportFailed; - -/// -/// Initializes union class with tag state of "paper_admin_export_start". -/// -/// Description of the "paper_admin_export_start" tag state: (reports) Exported -/// all team Paper docs -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAdminExportStart; - -/// -/// Initializes union class with tag state of "ransomware_alert_create_report". -/// -/// Description of the "ransomware_alert_create_report" tag state: (reports) -/// Created ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReport; - -/// -/// Initializes union class with tag state of -/// "ransomware_alert_create_report_failed". -/// -/// Description of the "ransomware_alert_create_report_failed" tag state: -/// (reports) Couldn't generate ransomware report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRansomwareAlertCreateReportFailed; - -/// -/// Initializes union class with tag state of -/// "smart_sync_create_admin_privilege_report". -/// -/// Description of the "smart_sync_create_admin_privilege_report" tag state: -/// (reports) Created Smart Sync non-admin devices report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncCreateAdminPrivilegeReport; - -/// -/// Initializes union class with tag state of "team_activity_create_report". -/// -/// Description of the "team_activity_create_report" tag state: (reports) -/// Created team activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReport; - -/// -/// Initializes union class with tag state of -/// "team_activity_create_report_fail". -/// -/// Description of the "team_activity_create_report_fail" tag state: (reports) -/// Couldn't generate team activity report -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamActivityCreateReportFail; - -/// -/// Initializes union class with tag state of "collection_share". -/// -/// Description of the "collection_share" tag state: (sharing) Shared album -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCollectionShare; - -/// -/// Initializes union class with tag state of "file_transfers_file_add". -/// -/// Description of the "file_transfers_file_add" tag state: (sharing) Transfer -/// files added -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersFileAdd; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_delete". -/// -/// Description of the "file_transfers_transfer_delete" tag state: (sharing) -/// Deleted transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDelete; - -/// -/// Initializes union class with tag state of -/// "file_transfers_transfer_download". -/// -/// Description of the "file_transfers_transfer_download" tag state: (sharing) -/// Transfer downloaded -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferDownload; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_send". -/// -/// Description of the "file_transfers_transfer_send" tag state: (sharing) Sent -/// transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferSend; - -/// -/// Initializes union class with tag state of "file_transfers_transfer_view". -/// -/// Description of the "file_transfers_transfer_view" tag state: (sharing) -/// Viewed transfer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersTransferView; - -/// -/// Initializes union class with tag state of "note_acl_invite_only". -/// -/// Description of the "note_acl_invite_only" tag state: (sharing) Changed Paper -/// doc to invite-only (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclInviteOnly; - -/// -/// Initializes union class with tag state of "note_acl_link". -/// -/// Description of the "note_acl_link" tag state: (sharing) Changed Paper doc to -/// link-accessible (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclLink; - -/// -/// Initializes union class with tag state of "note_acl_team_link". -/// -/// Description of the "note_acl_team_link" tag state: (sharing) Changed Paper -/// doc to link-accessible for team (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteAclTeamLink; - -/// -/// Initializes union class with tag state of "note_shared". -/// -/// Description of the "note_shared" tag state: (sharing) Shared Paper doc -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShared; - -/// -/// Initializes union class with tag state of "note_share_receive". -/// -/// Description of the "note_share_receive" tag state: (sharing) Shared received -/// Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoteShareReceive; - -/// -/// Initializes union class with tag state of "open_note_shared". -/// -/// Description of the "open_note_shared" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpenNoteShared; - -/// -/// Initializes union class with tag state of "replay_file_shared_link_created". -/// -/// Description of the "replay_file_shared_link_created" tag state: (sharing) -/// Created shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkCreated; - -/// -/// Initializes union class with tag state of -/// "replay_file_shared_link_modified". -/// -/// Description of the "replay_file_shared_link_modified" tag state: (sharing) -/// Modified shared link in Replay -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayFileSharedLinkModified; - -/// -/// Initializes union class with tag state of "replay_project_team_add". -/// -/// Description of the "replay_project_team_add" tag state: (sharing) Added -/// member to Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamAdd; - -/// -/// Initializes union class with tag state of "replay_project_team_delete". -/// -/// Description of the "replay_project_team_delete" tag state: (sharing) Removed -/// member from Replay Project -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReplayProjectTeamDelete; - -/// -/// Initializes union class with tag state of "sf_add_group". -/// -/// Description of the "sf_add_group" tag state: (sharing) Added team to shared -/// folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAddGroup; - -/// -/// Initializes union class with tag state of -/// "sf_allow_non_members_to_view_shared_links". -/// -/// Description of the "sf_allow_non_members_to_view_shared_links" tag state: -/// (sharing) Allowed non-collaborators to view links to files in shared folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfAllowNonMembersToViewSharedLinks; - -/// -/// Initializes union class with tag state of "sf_external_invite_warn". -/// -/// Description of the "sf_external_invite_warn" tag state: (sharing) Set team -/// members to see warning before sharing folders outside team (deprecated, no -/// longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfExternalInviteWarn; - -/// -/// Initializes union class with tag state of "sf_fb_invite". -/// -/// Description of the "sf_fb_invite" tag state: (sharing) Invited Facebook -/// users to shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInvite; - -/// -/// Initializes union class with tag state of "sf_fb_invite_change_role". -/// -/// Description of the "sf_fb_invite_change_role" tag state: (sharing) Changed -/// Facebook user's role in shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_fb_uninvite". -/// -/// Description of the "sf_fb_uninvite" tag state: (sharing) Uninvited Facebook -/// user from shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfFbUninvite; - -/// -/// Initializes union class with tag state of "sf_invite_group". -/// -/// Description of the "sf_invite_group" tag state: (sharing) Invited group to -/// shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfInviteGroup; - -/// -/// Initializes union class with tag state of "sf_team_grant_access". -/// -/// Description of the "sf_team_grant_access" tag state: (sharing) Granted -/// access to shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamGrantAccess; - -/// -/// Initializes union class with tag state of "sf_team_invite". -/// -/// Description of the "sf_team_invite" tag state: (sharing) Invited team -/// members to shared folder (deprecated, replaced by 'Invited user to Dropbox -/// and added them to shared file/folder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInvite; - -/// -/// Initializes union class with tag state of "sf_team_invite_change_role". -/// -/// Description of the "sf_team_invite_change_role" tag state: (sharing) Changed -/// team member's role in shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamInviteChangeRole; - -/// -/// Initializes union class with tag state of "sf_team_join". -/// -/// Description of the "sf_team_join" tag state: (sharing) Joined team member's -/// shared folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoin; - -/// -/// Initializes union class with tag state of "sf_team_join_from_oob_link". -/// -/// Description of the "sf_team_join_from_oob_link" tag state: (sharing) Joined -/// team member's shared folder from link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamJoinFromOobLink; - -/// -/// Initializes union class with tag state of "sf_team_uninvite". -/// -/// Description of the "sf_team_uninvite" tag state: (sharing) Unshared folder -/// with team member (deprecated, replaced by 'Removed invitee from shared -/// file/folder before invite was accepted') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSfTeamUninvite; - -/// -/// Initializes union class with tag state of "shared_content_add_invitees". -/// -/// Description of the "shared_content_add_invitees" tag state: (sharing) -/// Invited user to Dropbox and added them to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddInvitees; - -/// -/// Initializes union class with tag state of "shared_content_add_link_expiry". -/// -/// Description of the "shared_content_add_link_expiry" tag state: (sharing) -/// Added expiration date to link for shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_add_link_password". -/// -/// Description of the "shared_content_add_link_password" tag state: (sharing) -/// Added password to link for shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_add_member". -/// -/// Description of the "shared_content_add_member" tag state: (sharing) Added -/// users and/or groups to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAddMember; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_downloads_policy". -/// -/// Description of the "shared_content_change_downloads_policy" tag state: -/// (sharing) Changed whether members can download shared file/folder -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeDownloadsPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_invitee_role". -/// -/// Description of the "shared_content_change_invitee_role" tag state: (sharing) -/// Changed access type of invitee to shared file/folder before invite was -/// accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeInviteeRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_audience". -/// -/// Description of the "shared_content_change_link_audience" tag state: -/// (sharing) Changed link audience of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkAudience; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_expiry". -/// -/// Description of the "shared_content_change_link_expiry" tag state: (sharing) -/// Changed link expiration of shared file/folder (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_link_password". -/// -/// Description of the "shared_content_change_link_password" tag state: -/// (sharing) Changed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeLinkPassword; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_member_role". -/// -/// Description of the "shared_content_change_member_role" tag state: (sharing) -/// Changed access type of shared file/folder member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeMemberRole; - -/// -/// Initializes union class with tag state of -/// "shared_content_change_viewer_info_policy". -/// -/// Description of the "shared_content_change_viewer_info_policy" tag state: -/// (sharing) Changed whether members can see who viewed shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentChangeViewerInfoPolicy; - -/// -/// Initializes union class with tag state of "shared_content_claim_invitation". -/// -/// Description of the "shared_content_claim_invitation" tag state: (sharing) -/// Acquired membership of shared file/folder by accepting invite -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentClaimInvitation; - -/// -/// Initializes union class with tag state of "shared_content_copy". -/// -/// Description of the "shared_content_copy" tag state: (sharing) Copied shared -/// file/folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentCopy; - -/// -/// Initializes union class with tag state of "shared_content_download". -/// -/// Description of the "shared_content_download" tag state: (sharing) Downloaded -/// shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentDownload; - -/// -/// Initializes union class with tag state of -/// "shared_content_relinquish_membership". -/// -/// Description of the "shared_content_relinquish_membership" tag state: -/// (sharing) Left shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRelinquishMembership; - -/// -/// Initializes union class with tag state of "shared_content_remove_invitees". -/// -/// Description of the "shared_content_remove_invitees" tag state: (sharing) -/// Removed invitee from shared file/folder before invite was accepted -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveInvitees; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_expiry". -/// -/// Description of the "shared_content_remove_link_expiry" tag state: (sharing) -/// Removed link expiration date of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_content_remove_link_password". -/// -/// Description of the "shared_content_remove_link_password" tag state: -/// (sharing) Removed link password of shared file/folder (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveLinkPassword; - -/// -/// Initializes union class with tag state of "shared_content_remove_member". -/// -/// Description of the "shared_content_remove_member" tag state: (sharing) -/// Removed user/group from shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRemoveMember; - -/// -/// Initializes union class with tag state of "shared_content_request_access". -/// -/// Description of the "shared_content_request_access" tag state: (sharing) -/// Requested access to shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRequestAccess; - -/// -/// Initializes union class with tag state of "shared_content_restore_invitees". -/// -/// Description of the "shared_content_restore_invitees" tag state: (sharing) -/// Restored shared file/folder invitees -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreInvitees; - -/// -/// Initializes union class with tag state of "shared_content_restore_member". -/// -/// Description of the "shared_content_restore_member" tag state: (sharing) -/// Restored users and/or groups to membership of shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentRestoreMember; - -/// -/// Initializes union class with tag state of "shared_content_unshare". -/// -/// Description of the "shared_content_unshare" tag state: (sharing) Unshared -/// file/folder by clearing membership -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentUnshare; - -/// -/// Initializes union class with tag state of "shared_content_view". -/// -/// Description of the "shared_content_view" tag state: (sharing) Previewed -/// shared file/folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentView; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_link_policy". -/// -/// Description of the "shared_folder_change_link_policy" tag state: (sharing) -/// Changed who can access shared folder via link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeLinkPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_inheritance_policy". -/// -/// Description of the "shared_folder_change_members_inheritance_policy" tag -/// state: (sharing) Changed whether shared folder inherits members from parent -/// folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersInheritancePolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_management_policy". -/// -/// Description of the "shared_folder_change_members_management_policy" tag -/// state: (sharing) Changed who can add/remove members of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersManagementPolicy; - -/// -/// Initializes union class with tag state of -/// "shared_folder_change_members_policy". -/// -/// Description of the "shared_folder_change_members_policy" tag state: -/// (sharing) Changed who can become member of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderChangeMembersPolicy; - -/// -/// Initializes union class with tag state of "shared_folder_create". -/// -/// Description of the "shared_folder_create" tag state: (sharing) Created -/// shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderCreate; - -/// -/// Initializes union class with tag state of -/// "shared_folder_decline_invitation". -/// -/// Description of the "shared_folder_decline_invitation" tag state: (sharing) -/// Declined team member's invite to shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderDeclineInvitation; - -/// -/// Initializes union class with tag state of "shared_folder_mount". -/// -/// Description of the "shared_folder_mount" tag state: (sharing) Added shared -/// folder to own Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMount; - -/// -/// Initializes union class with tag state of "shared_folder_nest". -/// -/// Description of the "shared_folder_nest" tag state: (sharing) Changed parent -/// of shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderNest; - -/// -/// Initializes union class with tag state of -/// "shared_folder_transfer_ownership". -/// -/// Description of the "shared_folder_transfer_ownership" tag state: (sharing) -/// Transferred ownership of shared folder to another member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderTransferOwnership; - -/// -/// Initializes union class with tag state of "shared_folder_unmount". -/// -/// Description of the "shared_folder_unmount" tag state: (sharing) Deleted -/// shared folder from Dropbox -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderUnmount; - -/// -/// Initializes union class with tag state of "shared_link_add_expiry". -/// -/// Description of the "shared_link_add_expiry" tag state: (sharing) Added -/// shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAddExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_expiry". -/// -/// Description of the "shared_link_change_expiry" tag state: (sharing) Changed -/// shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeExpiry; - -/// -/// Initializes union class with tag state of "shared_link_change_visibility". -/// -/// Description of the "shared_link_change_visibility" tag state: (sharing) -/// Changed visibility of shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkChangeVisibility; - -/// -/// Initializes union class with tag state of "shared_link_copy". -/// -/// Description of the "shared_link_copy" tag state: (sharing) Added file/folder -/// to Dropbox from shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCopy; - -/// -/// Initializes union class with tag state of "shared_link_create". -/// -/// Description of the "shared_link_create" tag state: (sharing) Created shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkCreate; - -/// -/// Initializes union class with tag state of "shared_link_disable". -/// -/// Description of the "shared_link_disable" tag state: (sharing) Removed shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDisable; - -/// -/// Initializes union class with tag state of "shared_link_download". -/// -/// Description of the "shared_link_download" tag state: (sharing) Downloaded -/// file/folder from shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkDownload; - -/// -/// Initializes union class with tag state of "shared_link_remove_expiry". -/// -/// Description of the "shared_link_remove_expiry" tag state: (sharing) Removed -/// shared link expiration date -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkRemoveExpiry; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_expiration". -/// -/// Description of the "shared_link_settings_add_expiration" tag state: -/// (sharing) Added an expiration date to the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_add_password". -/// -/// Description of the "shared_link_settings_add_password" tag state: (sharing) -/// Added a password to the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAddPassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_disabled". -/// -/// Description of the "shared_link_settings_allow_download_disabled" tag state: -/// (sharing) Disabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadDisabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_allow_download_enabled". -/// -/// Description of the "shared_link_settings_allow_download_enabled" tag state: -/// (sharing) Enabled downloads -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsAllowDownloadEnabled; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_audience". -/// -/// Description of the "shared_link_settings_change_audience" tag state: -/// (sharing) Changed the audience of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeAudience; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_expiration". -/// -/// Description of the "shared_link_settings_change_expiration" tag state: -/// (sharing) Changed the expiration date of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangeExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_change_password". -/// -/// Description of the "shared_link_settings_change_password" tag state: -/// (sharing) Changed the password of the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsChangePassword; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_expiration". -/// -/// Description of the "shared_link_settings_remove_expiration" tag state: -/// (sharing) Removed the expiration date from the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemoveExpiration; - -/// -/// Initializes union class with tag state of -/// "shared_link_settings_remove_password". -/// -/// Description of the "shared_link_settings_remove_password" tag state: -/// (sharing) Removed the password from the shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkSettingsRemovePassword; - -/// -/// Initializes union class with tag state of "shared_link_share". -/// -/// Description of the "shared_link_share" tag state: (sharing) Added members as -/// audience of shared link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkShare; - -/// -/// Initializes union class with tag state of "shared_link_view". -/// -/// Description of the "shared_link_view" tag state: (sharing) Opened shared -/// link -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkView; - -/// -/// Initializes union class with tag state of "shared_note_opened". -/// -/// Description of the "shared_note_opened" tag state: (sharing) Opened shared -/// Paper doc (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedNoteOpened; - -/// -/// Initializes union class with tag state of "shmodel_disable_downloads". -/// -/// Description of the "shmodel_disable_downloads" tag state: (sharing) Disabled -/// downloads for link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelDisableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_enable_downloads". -/// -/// Description of the "shmodel_enable_downloads" tag state: (sharing) Enabled -/// downloads for link (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelEnableDownloads; - -/// -/// Initializes union class with tag state of "shmodel_group_share". -/// -/// Description of the "shmodel_group_share" tag state: (sharing) Shared link -/// with group (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShmodelGroupShare; - -/// -/// Initializes union class with tag state of "showcase_access_granted". -/// -/// Description of the "showcase_access_granted" tag state: (showcase) Granted -/// access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAccessGranted; - -/// -/// Initializes union class with tag state of "showcase_add_member". -/// -/// Description of the "showcase_add_member" tag state: (showcase) Added member -/// to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseAddMember; - -/// -/// Initializes union class with tag state of "showcase_archived". -/// -/// Description of the "showcase_archived" tag state: (showcase) Archived -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseArchived; - -/// -/// Initializes union class with tag state of "showcase_created". -/// -/// Description of the "showcase_created" tag state: (showcase) Created showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseCreated; - -/// -/// Initializes union class with tag state of "showcase_delete_comment". -/// -/// Description of the "showcase_delete_comment" tag state: (showcase) Deleted -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseDeleteComment; - -/// -/// Initializes union class with tag state of "showcase_edited". -/// -/// Description of the "showcase_edited" tag state: (showcase) Edited showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEdited; - -/// -/// Initializes union class with tag state of "showcase_edit_comment". -/// -/// Description of the "showcase_edit_comment" tag state: (showcase) Edited -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseEditComment; - -/// -/// Initializes union class with tag state of "showcase_file_added". -/// -/// Description of the "showcase_file_added" tag state: (showcase) Added file to -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileAdded; - -/// -/// Initializes union class with tag state of "showcase_file_download". -/// -/// Description of the "showcase_file_download" tag state: (showcase) Downloaded -/// file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileDownload; - -/// -/// Initializes union class with tag state of "showcase_file_removed". -/// -/// Description of the "showcase_file_removed" tag state: (showcase) Removed -/// file from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileRemoved; - -/// -/// Initializes union class with tag state of "showcase_file_view". -/// -/// Description of the "showcase_file_view" tag state: (showcase) Viewed file in -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseFileView; - -/// -/// Initializes union class with tag state of "showcase_permanently_deleted". -/// -/// Description of the "showcase_permanently_deleted" tag state: (showcase) -/// Permanently deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePermanentlyDeleted; - -/// -/// Initializes union class with tag state of "showcase_post_comment". -/// -/// Description of the "showcase_post_comment" tag state: (showcase) Added -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcasePostComment; - -/// -/// Initializes union class with tag state of "showcase_remove_member". -/// -/// Description of the "showcase_remove_member" tag state: (showcase) Removed -/// member from showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRemoveMember; - -/// -/// Initializes union class with tag state of "showcase_renamed". -/// -/// Description of the "showcase_renamed" tag state: (showcase) Renamed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRenamed; - -/// -/// Initializes union class with tag state of "showcase_request_access". -/// -/// Description of the "showcase_request_access" tag state: (showcase) Requested -/// access to showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRequestAccess; - -/// -/// Initializes union class with tag state of "showcase_resolve_comment". -/// -/// Description of the "showcase_resolve_comment" tag state: (showcase) Resolved -/// showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseResolveComment; - -/// -/// Initializes union class with tag state of "showcase_restored". -/// -/// Description of the "showcase_restored" tag state: (showcase) Unarchived -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseRestored; - -/// -/// Initializes union class with tag state of "showcase_trashed". -/// -/// Description of the "showcase_trashed" tag state: (showcase) Deleted showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashed; - -/// -/// Initializes union class with tag state of "showcase_trashed_deprecated". -/// -/// Description of the "showcase_trashed_deprecated" tag state: (showcase) -/// Deleted showcase (old version) (deprecated, replaced by 'Deleted showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseTrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_unresolve_comment". -/// -/// Description of the "showcase_unresolve_comment" tag state: (showcase) -/// Unresolved showcase comment -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUnresolveComment; - -/// -/// Initializes union class with tag state of "showcase_untrashed". -/// -/// Description of the "showcase_untrashed" tag state: (showcase) Restored -/// showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashed; - -/// -/// Initializes union class with tag state of "showcase_untrashed_deprecated". -/// -/// Description of the "showcase_untrashed_deprecated" tag state: (showcase) -/// Restored showcase (old version) (deprecated, replaced by 'Restored -/// showcase') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseUntrashedDeprecated; - -/// -/// Initializes union class with tag state of "showcase_view". -/// -/// Description of the "showcase_view" tag state: (showcase) Viewed showcase -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseView; - -/// -/// Initializes union class with tag state of "sso_add_cert". -/// -/// Description of the "sso_add_cert" tag state: (sso) Added X.509 certificate -/// for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddCert; - -/// -/// Initializes union class with tag state of "sso_add_login_url". -/// -/// Description of the "sso_add_login_url" tag state: (sso) Added sign-in URL -/// for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLoginUrl; - -/// -/// Initializes union class with tag state of "sso_add_logout_url". -/// -/// Description of the "sso_add_logout_url" tag state: (sso) Added sign-out URL -/// for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoAddLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_cert". -/// -/// Description of the "sso_change_cert" tag state: (sso) Changed X.509 -/// certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeCert; - -/// -/// Initializes union class with tag state of "sso_change_login_url". -/// -/// Description of the "sso_change_login_url" tag state: (sso) Changed sign-in -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLoginUrl; - -/// -/// Initializes union class with tag state of "sso_change_logout_url". -/// -/// Description of the "sso_change_logout_url" tag state: (sso) Changed sign-out -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeLogoutUrl; - -/// -/// Initializes union class with tag state of "sso_change_saml_identity_mode". -/// -/// Description of the "sso_change_saml_identity_mode" tag state: (sso) Changed -/// SAML identity mode for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangeSamlIdentityMode; - -/// -/// Initializes union class with tag state of "sso_remove_cert". -/// -/// Description of the "sso_remove_cert" tag state: (sso) Removed X.509 -/// certificate for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveCert; - -/// -/// Initializes union class with tag state of "sso_remove_login_url". -/// -/// Description of the "sso_remove_login_url" tag state: (sso) Removed sign-in -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLoginUrl; - -/// -/// Initializes union class with tag state of "sso_remove_logout_url". -/// -/// Description of the "sso_remove_logout_url" tag state: (sso) Removed sign-out -/// URL for SSO -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoRemoveLogoutUrl; - -/// -/// Initializes union class with tag state of "team_folder_change_status". -/// -/// Description of the "team_folder_change_status" tag state: (team_folders) -/// Changed archival status of team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderChangeStatus; - -/// -/// Initializes union class with tag state of "team_folder_create". -/// -/// Description of the "team_folder_create" tag state: (team_folders) Created -/// team folder in active status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderCreate; - -/// -/// Initializes union class with tag state of "team_folder_downgrade". -/// -/// Description of the "team_folder_downgrade" tag state: (team_folders) -/// Downgraded team folder to regular shared folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderDowngrade; - -/// -/// Initializes union class with tag state of "team_folder_permanently_delete". -/// -/// Description of the "team_folder_permanently_delete" tag state: -/// (team_folders) Permanently deleted archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderPermanentlyDelete; - -/// -/// Initializes union class with tag state of "team_folder_rename". -/// -/// Description of the "team_folder_rename" tag state: (team_folders) Renamed -/// active/archived team folder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderRename; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_settings_changed". -/// -/// Description of the "team_selective_sync_settings_changed" tag state: -/// (team_folders) Changed sync default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncSettingsChanged; - -/// -/// Initializes union class with tag state of "account_capture_change_policy". -/// -/// Description of the "account_capture_change_policy" tag state: -/// (team_policies) Changed account capture setting on team domain -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountCaptureChangePolicy; - -/// -/// Initializes union class with tag state of "admin_email_reminders_changed". -/// -/// Description of the "admin_email_reminders_changed" tag state: -/// (team_policies) Changed admin reminder settings for requests to join the -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminEmailRemindersChanged; - -/// -/// Initializes union class with tag state of "allow_download_disabled". -/// -/// Description of the "allow_download_disabled" tag state: (team_policies) -/// Disabled downloads (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadDisabled; - -/// -/// Initializes union class with tag state of "allow_download_enabled". -/// -/// Description of the "allow_download_enabled" tag state: (team_policies) -/// Enabled downloads (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllowDownloadEnabled; - -/// -/// Initializes union class with tag state of "app_permissions_changed". -/// -/// Description of the "app_permissions_changed" tag state: (team_policies) -/// Changed app permissions -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppPermissionsChanged; - -/// -/// Initializes union class with tag state of "camera_uploads_policy_changed". -/// -/// Description of the "camera_uploads_policy_changed" tag state: -/// (team_policies) Changed camera uploads setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCameraUploadsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "capture_transcript_policy_changed". -/// -/// Description of the "capture_transcript_policy_changed" tag state: -/// (team_policies) Changed Capture transcription policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCaptureTranscriptPolicyChanged; - -/// -/// Initializes union class with tag state of "classification_change_policy". -/// -/// Description of the "classification_change_policy" tag state: (team_policies) -/// Changed classification policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithClassificationChangePolicy; - -/// -/// Initializes union class with tag state of "computer_backup_policy_changed". -/// -/// Description of the "computer_backup_policy_changed" tag state: -/// (team_policies) Changed computer backup policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComputerBackupPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "content_administration_policy_changed". -/// -/// Description of the "content_administration_policy_changed" tag state: -/// (team_policies) Changed content management setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithContentAdministrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_change_policy". -/// -/// Description of the "data_placement_restriction_change_policy" tag state: -/// (team_policies) Set restrictions on data center locations where team data -/// resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionChangePolicy; - -/// -/// Initializes union class with tag state of -/// "data_placement_restriction_satisfy_policy". -/// -/// Description of the "data_placement_restriction_satisfy_policy" tag state: -/// (team_policies) Completed restrictions on data center locations where team -/// data resides -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataPlacementRestrictionSatisfyPolicy; - -/// -/// Initializes union class with tag state of "device_approvals_add_exception". -/// -/// Description of the "device_approvals_add_exception" tag state: -/// (team_policies) Added members to device approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsAddException; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_desktop_policy". -/// -/// Description of the "device_approvals_change_desktop_policy" tag state: -/// (team_policies) Set/removed limit on number of computers member can link to -/// team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeDesktopPolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_mobile_policy". -/// -/// Description of the "device_approvals_change_mobile_policy" tag state: -/// (team_policies) Set/removed limit on number of mobile devices member can -/// link to team Dropbox account -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeMobilePolicy; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_overage_action". -/// -/// Description of the "device_approvals_change_overage_action" tag state: -/// (team_policies) Changed device approvals setting when member is over limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeOverageAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_change_unlink_action". -/// -/// Description of the "device_approvals_change_unlink_action" tag state: -/// (team_policies) Changed device approvals setting when member unlinks -/// approved device -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsChangeUnlinkAction; - -/// -/// Initializes union class with tag state of -/// "device_approvals_remove_exception". -/// -/// Description of the "device_approvals_remove_exception" tag state: -/// (team_policies) Removed members from device approvals exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceApprovalsRemoveException; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_add_members". -/// -/// Description of the "directory_restrictions_add_members" tag state: -/// (team_policies) Added members to directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsAddMembers; - -/// -/// Initializes union class with tag state of -/// "directory_restrictions_remove_members". -/// -/// Description of the "directory_restrictions_remove_members" tag state: -/// (team_policies) Removed members from directory restrictions list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictionsRemoveMembers; - -/// -/// Initializes union class with tag state of -/// "dropbox_passwords_policy_changed". -/// -/// Description of the "dropbox_passwords_policy_changed" tag state: -/// (team_policies) Changed Dropbox Passwords policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDropboxPasswordsPolicyChanged; - -/// -/// Initializes union class with tag state of "email_ingest_policy_changed". -/// -/// Description of the "email_ingest_policy_changed" tag state: (team_policies) -/// Changed email to Dropbox policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailIngestPolicyChanged; - -/// -/// Initializes union class with tag state of "emm_add_exception". -/// -/// Description of the "emm_add_exception" tag state: (team_policies) Added -/// members to EMM exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmAddException; - -/// -/// Initializes union class with tag state of "emm_change_policy". -/// -/// Description of the "emm_change_policy" tag state: (team_policies) -/// Enabled/disabled enterprise mobility management for members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmChangePolicy; - -/// -/// Initializes union class with tag state of "emm_remove_exception". -/// -/// Description of the "emm_remove_exception" tag state: (team_policies) Removed -/// members from EMM exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmmRemoveException; - -/// -/// Initializes union class with tag state of -/// "extended_version_history_change_policy". -/// -/// Description of the "extended_version_history_change_policy" tag state: -/// (team_policies) Accepted/opted out of extended version history -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtendedVersionHistoryChangePolicy; - -/// -/// Initializes union class with tag state of -/// "external_drive_backup_policy_changed". -/// -/// Description of the "external_drive_backup_policy_changed" tag state: -/// (team_policies) Changed external drive backup policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalDriveBackupPolicyChanged; - -/// -/// Initializes union class with tag state of "file_comments_change_policy". -/// -/// Description of the "file_comments_change_policy" tag state: (team_policies) -/// Enabled/disabled commenting on team files -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileCommentsChangePolicy; - -/// -/// Initializes union class with tag state of "file_locking_policy_changed". -/// -/// Description of the "file_locking_policy_changed" tag state: (team_policies) -/// Changed file locking policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLockingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "file_provider_migration_policy_changed". -/// -/// Description of the "file_provider_migration_policy_changed" tag state: -/// (team_policies) Changed File Provider Migration policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileProviderMigrationPolicyChanged; - -/// -/// Initializes union class with tag state of "file_requests_change_policy". -/// -/// Description of the "file_requests_change_policy" tag state: (team_policies) -/// Enabled/disabled file requests -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsChangePolicy; - -/// -/// Initializes union class with tag state of "file_requests_emails_enabled". -/// -/// Description of the "file_requests_emails_enabled" tag state: (team_policies) -/// Enabled file request emails for everyone (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsEnabled; - -/// -/// Initializes union class with tag state of -/// "file_requests_emails_restricted_to_team_only". -/// -/// Description of the "file_requests_emails_restricted_to_team_only" tag state: -/// (team_policies) Enabled file request emails for team (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Initializes union class with tag state of "file_transfers_policy_changed". -/// -/// Description of the "file_transfers_policy_changed" tag state: -/// (team_policies) Changed file transfers policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransfersPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "folder_link_restriction_policy_changed". -/// -/// Description of the "folder_link_restriction_policy_changed" tag state: -/// (team_policies) Changed folder link restrictions policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderLinkRestrictionPolicyChanged; - -/// -/// Initializes union class with tag state of "google_sso_change_policy". -/// -/// Description of the "google_sso_change_policy" tag state: (team_policies) -/// Enabled/disabled Google single sign-on for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleSsoChangePolicy; - -/// -/// Initializes union class with tag state of -/// "group_user_management_change_policy". -/// -/// Description of the "group_user_management_change_policy" tag state: -/// (team_policies) Changed who can create groups -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroupUserManagementChangePolicy; - -/// -/// Initializes union class with tag state of "integration_policy_changed". -/// -/// Description of the "integration_policy_changed" tag state: (team_policies) -/// Changed integration policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "invite_acceptance_email_policy_changed". -/// -/// Description of the "invite_acceptance_email_policy_changed" tag state: -/// (team_policies) Changed invite accept email policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteAcceptanceEmailPolicyChanged; - -/// -/// Initializes union class with tag state of "member_requests_change_policy". -/// -/// Description of the "member_requests_change_policy" tag state: -/// (team_policies) Changed whether users can find team when not invited -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberRequestsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_send_invite_policy_changed". -/// -/// Description of the "member_send_invite_policy_changed" tag state: -/// (team_policies) Changed member send invite policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSendInvitePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_add_exception". -/// -/// Description of the "member_space_limits_add_exception" tag state: -/// (team_policies) Added members to member space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsAddException; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_caps_type_policy". -/// -/// Description of the "member_space_limits_change_caps_type_policy" tag state: -/// (team_policies) Changed member space limit type for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_change_policy". -/// -/// Description of the "member_space_limits_change_policy" tag state: -/// (team_policies) Changed team default member space limit -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "member_space_limits_remove_exception". -/// -/// Description of the "member_space_limits_remove_exception" tag state: -/// (team_policies) Removed members from member space limit exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSpaceLimitsRemoveException; - -/// -/// Initializes union class with tag state of -/// "member_suggestions_change_policy". -/// -/// Description of the "member_suggestions_change_policy" tag state: -/// (team_policies) Enabled/disabled option for team members to suggest people -/// to add to team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberSuggestionsChangePolicy; - -/// -/// Initializes union class with tag state of -/// "microsoft_office_addin_change_policy". -/// -/// Description of the "microsoft_office_addin_change_policy" tag state: -/// (team_policies) Enabled/disabled Microsoft Office add-in -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMicrosoftOfficeAddinChangePolicy; - -/// -/// Initializes union class with tag state of "network_control_change_policy". -/// -/// Description of the "network_control_change_policy" tag state: -/// (team_policies) Enabled/disabled network control -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNetworkControlChangePolicy; - -/// -/// Initializes union class with tag state of "paper_change_deployment_policy". -/// -/// Description of the "paper_change_deployment_policy" tag state: -/// (team_policies) Changed whether Dropbox Paper, when enabled, is deployed to -/// all members or to specific members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeDeploymentPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_link_policy". -/// -/// Description of the "paper_change_member_link_policy" tag state: -/// (team_policies) Changed whether non-members can view Paper docs with link -/// (deprecated, no longer logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberLinkPolicy; - -/// -/// Initializes union class with tag state of "paper_change_member_policy". -/// -/// Description of the "paper_change_member_policy" tag state: (team_policies) -/// Changed whether members can share Paper docs outside team, and if docs are -/// accessible only by team members or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "paper_change_policy". -/// -/// Description of the "paper_change_policy" tag state: (team_policies) -/// Enabled/disabled Dropbox Paper for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperChangePolicy; - -/// -/// Initializes union class with tag state of -/// "paper_default_folder_policy_changed". -/// -/// Description of the "paper_default_folder_policy_changed" tag state: -/// (team_policies) Changed Paper Default Folder Policy setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDefaultFolderPolicyChanged; - -/// -/// Initializes union class with tag state of "paper_desktop_policy_changed". -/// -/// Description of the "paper_desktop_policy_changed" tag state: (team_policies) -/// Enabled/disabled Paper Desktop for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperDesktopPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_addition". -/// -/// Description of the "paper_enabled_users_group_addition" tag state: -/// (team_policies) Added users to Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupAddition; - -/// -/// Initializes union class with tag state of -/// "paper_enabled_users_group_removal". -/// -/// Description of the "paper_enabled_users_group_removal" tag state: -/// (team_policies) Removed users from Paper-enabled users list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperEnabledUsersGroupRemoval; - -/// -/// Initializes union class with tag state of -/// "password_strength_requirements_change_policy". -/// -/// Description of the "password_strength_requirements_change_policy" tag state: -/// (team_policies) Changed team password strength requirements -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPasswordStrengthRequirementsChangePolicy; - -/// -/// Initializes union class with tag state of "permanent_delete_change_policy". -/// -/// Description of the "permanent_delete_change_policy" tag state: -/// (team_policies) Enabled/disabled ability of team members to permanently -/// delete content -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPermanentDeleteChangePolicy; - -/// -/// Initializes union class with tag state of "reseller_support_change_policy". -/// -/// Description of the "reseller_support_change_policy" tag state: -/// (team_policies) Enabled/disabled reseller support -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerSupportChangePolicy; - -/// -/// Initializes union class with tag state of "rewind_policy_changed". -/// -/// Description of the "rewind_policy_changed" tag state: (team_policies) -/// Changed Rewind policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "send_for_signature_policy_changed". -/// -/// Description of the "send_for_signature_policy_changed" tag state: -/// (team_policies) Changed send for signature policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSendForSignaturePolicyChanged; - -/// -/// Initializes union class with tag state of -/// "sharing_change_folder_join_policy". -/// -/// Description of the "sharing_change_folder_join_policy" tag state: -/// (team_policies) Changed whether team members can join shared folders owned -/// outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeFolderJoinPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// Description of the "sharing_change_link_allow_change_expiration_policy" tag -/// state: (team_policies) Changed the allow remove or change expiration policy -/// for the links shared outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_default_expiration_policy". -/// -/// Description of the "sharing_change_link_default_expiration_policy" tag -/// state: (team_policies) Changed the default expiration for the links shared -/// outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkDefaultExpirationPolicy; - -/// -/// Initializes union class with tag state of -/// "sharing_change_link_enforce_password_policy". -/// -/// Description of the "sharing_change_link_enforce_password_policy" tag state: -/// (team_policies) Changed the password requirement for the links shared -/// outside of the team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkEnforcePasswordPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_link_policy". -/// -/// Description of the "sharing_change_link_policy" tag state: (team_policies) -/// Changed whether members can share links outside team, and if links are -/// accessible only by team members or anyone by default -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeLinkPolicy; - -/// -/// Initializes union class with tag state of "sharing_change_member_policy". -/// -/// Description of the "sharing_change_member_policy" tag state: (team_policies) -/// Changed whether members can share files/folders outside team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharingChangeMemberPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_download_policy". -/// -/// Description of the "showcase_change_download_policy" tag state: -/// (team_policies) Enabled/disabled downloading files from Dropbox Showcase for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeDownloadPolicy; - -/// -/// Initializes union class with tag state of "showcase_change_enabled_policy". -/// -/// Description of the "showcase_change_enabled_policy" tag state: -/// (team_policies) Enabled/disabled Dropbox Showcase for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeEnabledPolicy; - -/// -/// Initializes union class with tag state of -/// "showcase_change_external_sharing_policy". -/// -/// Description of the "showcase_change_external_sharing_policy" tag state: -/// (team_policies) Enabled/disabled sharing Dropbox Showcase externally for -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseChangeExternalSharingPolicy; - -/// -/// Initializes union class with tag state of -/// "smarter_smart_sync_policy_changed". -/// -/// Description of the "smarter_smart_sync_policy_changed" tag state: -/// (team_policies) Changed automatic Smart Sync setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmarterSmartSyncPolicyChanged; - -/// -/// Initializes union class with tag state of "smart_sync_change_policy". -/// -/// Description of the "smart_sync_change_policy" tag state: (team_policies) -/// Changed default Smart Sync setting for team members -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncChangePolicy; - -/// -/// Initializes union class with tag state of "smart_sync_not_opt_out". -/// -/// Description of the "smart_sync_not_opt_out" tag state: (team_policies) Opted -/// team into Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncNotOptOut; - -/// -/// Initializes union class with tag state of "smart_sync_opt_out". -/// -/// Description of the "smart_sync_opt_out" tag state: (team_policies) Opted -/// team out of Smart Sync -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSmartSyncOptOut; - -/// -/// Initializes union class with tag state of "sso_change_policy". -/// -/// Description of the "sso_change_policy" tag state: (team_policies) Changed -/// single sign-on setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSsoChangePolicy; - -/// -/// Initializes union class with tag state of "team_branding_policy_changed". -/// -/// Description of the "team_branding_policy_changed" tag state: (team_policies) -/// Changed team branding policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamBrandingPolicyChanged; - -/// -/// Initializes union class with tag state of "team_extensions_policy_changed". -/// -/// Description of the "team_extensions_policy_changed" tag state: -/// (team_policies) Changed App Integrations setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExtensionsPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_selective_sync_policy_changed". -/// -/// Description of the "team_selective_sync_policy_changed" tag state: -/// (team_policies) Enabled/disabled Team Selective Sync for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSelectiveSyncPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "team_sharing_whitelist_subjects_changed". -/// -/// Description of the "team_sharing_whitelist_subjects_changed" tag state: -/// (team_policies) Edited the approved list for sharing externally -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharingWhitelistSubjectsChanged; - -/// -/// Initializes union class with tag state of "tfa_add_exception". -/// -/// Description of the "tfa_add_exception" tag state: (team_policies) Added -/// members to two factor authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddException; - -/// -/// Initializes union class with tag state of "tfa_change_policy". -/// -/// Description of the "tfa_change_policy" tag state: (team_policies) Changed -/// two-step verification setting for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangePolicy; - -/// -/// Initializes union class with tag state of "tfa_remove_exception". -/// -/// Description of the "tfa_remove_exception" tag state: (team_policies) Removed -/// members from two factor authentication exception list -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveException; - -/// -/// Initializes union class with tag state of "two_account_change_policy". -/// -/// Description of the "two_account_change_policy" tag state: (team_policies) -/// Enabled/disabled option for members to link personal Dropbox account and -/// team account to same computer -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoAccountChangePolicy; - -/// -/// Initializes union class with tag state of "viewer_info_policy_changed". -/// -/// Description of the "viewer_info_policy_changed" tag state: (team_policies) -/// Changed team policy for viewer info -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewerInfoPolicyChanged; - -/// -/// Initializes union class with tag state of "watermarking_policy_changed". -/// -/// Description of the "watermarking_policy_changed" tag state: (team_policies) -/// Changed watermarking policy for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWatermarkingPolicyChanged; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_active_session_limit". -/// -/// Description of the "web_sessions_change_active_session_limit" tag state: -/// (team_policies) Changed limit on active sessions per member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeActiveSessionLimit; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_fixed_length_policy". -/// -/// Description of the "web_sessions_change_fixed_length_policy" tag state: -/// (team_policies) Changed how long members can stay signed in to Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeFixedLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "web_sessions_change_idle_length_policy". -/// -/// Description of the "web_sessions_change_idle_length_policy" tag state: -/// (team_policies) Changed how long team members can be idle while signed in to -/// Dropbox.com -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSessionsChangeIdleLengthPolicy; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_successful". -/// -/// Description of the "data_residency_migration_request_successful" tag state: -/// (team_profile) Requested data residency migration for team data -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestSuccessful; - -/// -/// Initializes union class with tag state of -/// "data_residency_migration_request_unsuccessful". -/// -/// Description of the "data_residency_migration_request_unsuccessful" tag -/// state: (team_profile) Request for data residency migration for team data has -/// failed -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDataResidencyMigrationRequestUnsuccessful; - -/// -/// Initializes union class with tag state of "team_merge_from". -/// -/// Description of the "team_merge_from" tag state: (team_profile) Merged -/// another team into this team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeFrom; - -/// -/// Initializes union class with tag state of "team_merge_to". -/// -/// Description of the "team_merge_to" tag state: (team_profile) Merged this -/// team into another team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeTo; - -/// -/// Initializes union class with tag state of "team_profile_add_background". -/// -/// Description of the "team_profile_add_background" tag state: (team_profile) -/// Added team background to display on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddBackground; - -/// -/// Initializes union class with tag state of "team_profile_add_logo". -/// -/// Description of the "team_profile_add_logo" tag state: (team_profile) Added -/// team logo to display on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileAddLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_background". -/// -/// Description of the "team_profile_change_background" tag state: -/// (team_profile) Changed team background displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeBackground; - -/// -/// Initializes union class with tag state of -/// "team_profile_change_default_language". -/// -/// Description of the "team_profile_change_default_language" tag state: -/// (team_profile) Changed default language for team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeDefaultLanguage; - -/// -/// Initializes union class with tag state of "team_profile_change_logo". -/// -/// Description of the "team_profile_change_logo" tag state: (team_profile) -/// Changed team logo displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeLogo; - -/// -/// Initializes union class with tag state of "team_profile_change_name". -/// -/// Description of the "team_profile_change_name" tag state: (team_profile) -/// Changed team name -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileChangeName; - -/// -/// Initializes union class with tag state of "team_profile_remove_background". -/// -/// Description of the "team_profile_remove_background" tag state: -/// (team_profile) Removed team background displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveBackground; - -/// -/// Initializes union class with tag state of "team_profile_remove_logo". -/// -/// Description of the "team_profile_remove_logo" tag state: (team_profile) -/// Removed team logo displayed on shared link headers -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamProfileRemoveLogo; - -/// -/// Initializes union class with tag state of "tfa_add_backup_phone". -/// -/// Description of the "tfa_add_backup_phone" tag state: (tfa) Added backup -/// phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_add_security_key". -/// -/// Description of the "tfa_add_security_key" tag state: (tfa) Added security -/// key for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaAddSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_change_backup_phone". -/// -/// Description of the "tfa_change_backup_phone" tag state: (tfa) Changed backup -/// phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_change_status". -/// -/// Description of the "tfa_change_status" tag state: (tfa) -/// Enabled/disabled/changed two-step verification setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaChangeStatus; - -/// -/// Initializes union class with tag state of "tfa_remove_backup_phone". -/// -/// Description of the "tfa_remove_backup_phone" tag state: (tfa) Removed backup -/// phone for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveBackupPhone; - -/// -/// Initializes union class with tag state of "tfa_remove_security_key". -/// -/// Description of the "tfa_remove_security_key" tag state: (tfa) Removed -/// security key for two-step verification -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaRemoveSecurityKey; - -/// -/// Initializes union class with tag state of "tfa_reset". -/// -/// Description of the "tfa_reset" tag state: (tfa) Reset two-step verification -/// for team member -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTfaReset; - -/// -/// Initializes union class with tag state of "changed_enterprise_admin_role". -/// -/// Description of the "changed_enterprise_admin_role" tag state: -/// (trusted_teams) Changed enterprise admin role -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseAdminRole; - -/// -/// Initializes union class with tag state of -/// "changed_enterprise_connected_team_status". -/// -/// Description of the "changed_enterprise_connected_team_status" tag state: -/// (trusted_teams) Changed enterprise-connected team status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithChangedEnterpriseConnectedTeamStatus; - -/// -/// Initializes union class with tag state of "ended_enterprise_admin_session". -/// -/// Description of the "ended_enterprise_admin_session" tag state: -/// (trusted_teams) Ended enterprise admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of -/// "ended_enterprise_admin_session_deprecated". -/// -/// Description of the "ended_enterprise_admin_session_deprecated" tag state: -/// (trusted_teams) Ended enterprise admin session (deprecated, replaced by -/// 'Ended enterprise admin session') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEndedEnterpriseAdminSessionDeprecated; - -/// -/// Initializes union class with tag state of "enterprise_settings_locking". -/// -/// Description of the "enterprise_settings_locking" tag state: (trusted_teams) -/// Changed who can update a setting -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseSettingsLocking; - -/// -/// Initializes union class with tag state of "guest_admin_change_status". -/// -/// Description of the "guest_admin_change_status" tag state: (trusted_teams) -/// Changed guest team admin status -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuestAdminChangeStatus; - -/// -/// Initializes union class with tag state of -/// "started_enterprise_admin_session". -/// -/// Description of the "started_enterprise_admin_session" tag state: -/// (trusted_teams) Started enterprise admin session -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartedEnterpriseAdminSession; - -/// -/// Initializes union class with tag state of "team_merge_request_accepted". -/// -/// Description of the "team_merge_request_accepted" tag state: (trusted_teams) -/// Accepted a team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAccepted; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_primary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_accepted_shown_to_secondary_team" tag -/// state: (trusted_teams) Accepted a team merge request (deprecated, replaced -/// by 'Accepted a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_auto_canceled". -/// -/// Description of the "team_merge_request_auto_canceled" tag state: -/// (trusted_teams) Automatically canceled team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestAutoCanceled; - -/// -/// Initializes union class with tag state of "team_merge_request_canceled". -/// -/// Description of the "team_merge_request_canceled" tag state: (trusted_teams) -/// Canceled a team merge request -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceled; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_primary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_canceled_shown_to_secondary_team" tag -/// state: (trusted_teams) Canceled a team merge request (deprecated, replaced -/// by 'Canceled a team merge request') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_expired". -/// -/// Description of the "team_merge_request_expired" tag state: (trusted_teams) -/// Team merge request expired -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpired; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_primary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_expired_shown_to_secondary_team" tag -/// state: (trusted_teams) Team merge request expired (deprecated, replaced by -/// 'Team merge request expired') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_primary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_rejected_shown_to_secondary_team" tag -/// state: (trusted_teams) Rejected a team merge request (deprecated, no longer -/// logged) -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_reminder". -/// -/// Description of the "team_merge_request_reminder" tag state: (trusted_teams) -/// Sent a team merge request reminder -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminder; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_primary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_reminder_shown_to_secondary_team" tag -/// state: (trusted_teams) Sent a team merge request reminder (deprecated, -/// replaced by 'Sent a team merge request reminder') -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "team_merge_request_revoked". -/// -/// Description of the "team_merge_request_revoked" tag state: (trusted_teams) -/// Canceled the team merge -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestRevoked; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_primary_team" tag -/// state: (trusted_teams) Requested to merge their Dropbox team into yours -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToPrimaryTeam; - -/// -/// Initializes union class with tag state of -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// Description of the "team_merge_request_sent_shown_to_secondary_team" tag -/// state: (trusted_teams) Requested to merge your team into another Dropbox -/// team -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMergeRequestSentShownToSecondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_alert_state_changed". -/// -- (BOOL)isAdminAlertingAlertStateChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_changed_alert_config". -/// -- (BOOL)isAdminAlertingChangedAlertConfig; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -/// @return Whether the union's current tag state has value -/// "admin_alerting_triggered_alert". -/// -- (BOOL)isAdminAlertingTriggeredAlert; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_completed". -/// -- (BOOL)isRansomwareRestoreProcessCompleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_restore_process_started". -/// -- (BOOL)isRansomwareRestoreProcessStarted; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -/// @return Whether the union's current tag state has value -/// "app_blocked_by_permissions". -/// -- (BOOL)isAppBlockedByPermissions; - -/// -/// Retrieves whether the union's current tag state has value "app_link_team". -/// -/// @return Whether the union's current tag state has value "app_link_team". -/// -- (BOOL)isAppLinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_link_user". -/// -/// @return Whether the union's current tag state has value "app_link_user". -/// -- (BOOL)isAppLinkUser; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_team". -/// -/// @return Whether the union's current tag state has value "app_unlink_team". -/// -- (BOOL)isAppUnlinkTeam; - -/// -/// Retrieves whether the union's current tag state has value "app_unlink_user". -/// -/// @return Whether the union's current tag state has value "app_unlink_user". -/// -- (BOOL)isAppUnlinkUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_connected". -/// -/// @return Whether the union's current tag state has value -/// "integration_connected". -/// -- (BOOL)isIntegrationConnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_disconnected". -/// -/// @return Whether the union's current tag state has value -/// "integration_disconnected". -/// -- (BOOL)isIntegrationDisconnected; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_comment". -/// -/// @return Whether the union's current tag state has value "file_add_comment". -/// -- (BOOL)isFileAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -/// @return Whether the union's current tag state has value -/// "file_change_comment_subscription". -/// -- (BOOL)isFileChangeCommentSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_delete_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_delete_comment". -/// -- (BOOL)isFileDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_edit_comment". -/// -/// @return Whether the union's current tag state has value "file_edit_comment". -/// -- (BOOL)isFileEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_like_comment". -/// -/// @return Whether the union's current tag state has value "file_like_comment". -/// -- (BOOL)isFileLikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_resolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_resolve_comment". -/// -- (BOOL)isFileResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unlike_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_unlike_comment". -/// -- (BOOL)isFileUnlikeComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_unresolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "file_unresolve_comment". -/// -- (BOOL)isFileUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folders". -/// -- (BOOL)isGovernancePolicyAddFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_add_folder_failed". -/// -- (BOOL)isGovernancePolicyAddFolderFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_content_disposed". -/// -- (BOOL)isGovernancePolicyContentDisposed; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_create". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_create". -/// -- (BOOL)isGovernancePolicyCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_delete". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_delete". -/// -- (BOOL)isGovernancePolicyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_details". -/// -- (BOOL)isGovernancePolicyEditDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_edit_duration". -/// -- (BOOL)isGovernancePolicyEditDuration; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_created". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_created". -/// -- (BOOL)isGovernancePolicyExportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_export_removed". -/// -- (BOOL)isGovernancePolicyExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_remove_folders". -/// -- (BOOL)isGovernancePolicyRemoveFolders; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_report_created". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_report_created". -/// -- (BOOL)isGovernancePolicyReportCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -/// @return Whether the union's current tag state has value -/// "governance_policy_zip_part_downloaded". -/// -- (BOOL)isGovernancePolicyZipPartDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_activate_a_hold". -/// -- (BOOL)isLegalHoldsActivateAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_add_members". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_add_members". -/// -- (BOOL)isLegalHoldsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_details". -/// -- (BOOL)isLegalHoldsChangeHoldDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_change_hold_name". -/// -- (BOOL)isLegalHoldsChangeHoldName; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_a_hold". -/// -- (BOOL)isLegalHoldsExportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_cancelled". -/// -- (BOOL)isLegalHoldsExportCancelled; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_downloaded". -/// -- (BOOL)isLegalHoldsExportDownloaded; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_export_removed". -/// -- (BOOL)isLegalHoldsExportRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_release_a_hold". -/// -- (BOOL)isLegalHoldsReleaseAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_remove_members". -/// -- (BOOL)isLegalHoldsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -/// @return Whether the union's current tag state has value -/// "legal_holds_report_a_hold". -/// -- (BOOL)isLegalHoldsReportAHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_desktop". -/// -- (BOOL)isDeviceChangeIpDesktop; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_mobile". -/// -- (BOOL)isDeviceChangeIpMobile; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_change_ip_web". -/// -/// @return Whether the union's current tag state has value -/// "device_change_ip_web". -/// -- (BOOL)isDeviceChangeIpWeb; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_fail". -/// -- (BOOL)isDeviceDeleteOnUnlinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -/// @return Whether the union's current tag state has value -/// "device_delete_on_unlink_success". -/// -- (BOOL)isDeviceDeleteOnUnlinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_fail". -/// -/// @return Whether the union's current tag state has value "device_link_fail". -/// -- (BOOL)isDeviceLinkFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_link_success". -/// -/// @return Whether the union's current tag state has value -/// "device_link_success". -/// -- (BOOL)isDeviceLinkSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_disabled". -/// -/// @return Whether the union's current tag state has value -/// "device_management_disabled". -/// -- (BOOL)isDeviceManagementDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_management_enabled". -/// -/// @return Whether the union's current tag state has value -/// "device_management_enabled". -/// -- (BOOL)isDeviceManagementEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -/// @return Whether the union's current tag state has value -/// "device_sync_backup_status_changed". -/// -- (BOOL)isDeviceSyncBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "device_unlink". -/// -/// @return Whether the union's current tag state has value "device_unlink". -/// -- (BOOL)isDeviceUnlink; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_exported". -/// -- (BOOL)isDropboxPasswordsExported; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_new_device_enrolled". -/// -- (BOOL)isDropboxPasswordsNewDeviceEnrolled; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -/// @return Whether the union's current tag state has value -/// "emm_refresh_auth_token". -/// -- (BOOL)isEmmRefreshAuthToken; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_eligibility_status_checked". -/// -- (BOOL)isExternalDriveBackupEligibilityStatusChecked; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_status_changed". -/// -- (BOOL)isExternalDriveBackupStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_availability". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_availability". -/// -- (BOOL)isAccountCaptureChangeAvailability; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_migrate_account". -/// -- (BOOL)isAccountCaptureMigrateAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_notification_emails_sent". -/// -- (BOOL)isAccountCaptureNotificationEmailsSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_relinquish_account". -/// -- (BOOL)isAccountCaptureRelinquishAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "disabled_domain_invites". -/// -/// @return Whether the union's current tag state has value -/// "disabled_domain_invites". -/// -- (BOOL)isDisabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_approve_request_to_join_team". -/// -- (BOOL)isDomainInvitesApproveRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_decline_request_to_join_team". -/// -- (BOOL)isDomainInvitesDeclineRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_email_existing_users". -/// -- (BOOL)isDomainInvitesEmailExistingUsers; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_request_to_join_team". -/// -- (BOOL)isDomainInvitesRequestToJoinTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_no". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToNo; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -/// @return Whether the union's current tag state has value -/// "domain_invites_set_invite_new_user_pref_to_yes". -/// -- (BOOL)isDomainInvitesSetInviteNewUserPrefToYes; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_fail". -/// -- (BOOL)isDomainVerificationAddDomainFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_add_domain_success". -/// -- (BOOL)isDomainVerificationAddDomainSuccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -/// @return Whether the union's current tag state has value -/// "domain_verification_remove_domain". -/// -- (BOOL)isDomainVerificationRemoveDomain; - -/// -/// Retrieves whether the union's current tag state has value -/// "enabled_domain_invites". -/// -/// @return Whether the union's current tag state has value -/// "enabled_domain_invites". -/// -- (BOOL)isEnabledDomainInvites; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_cancel_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyCancelKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_create_key". -/// -- (BOOL)isTeamEncryptionKeyCreateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_delete_key". -/// -- (BOOL)isTeamEncryptionKeyDeleteKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_disable_key". -/// -- (BOOL)isTeamEncryptionKeyDisableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_enable_key". -/// -- (BOOL)isTeamEncryptionKeyEnableKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_rotate_key". -/// -- (BOOL)isTeamEncryptionKeyRotateKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -/// @return Whether the union's current tag state has value -/// "team_encryption_key_schedule_key_deletion". -/// -- (BOOL)isTeamEncryptionKeyScheduleKeyDeletion; - -/// -/// Retrieves whether the union's current tag state has value -/// "apply_naming_convention". -/// -/// @return Whether the union's current tag state has value -/// "apply_naming_convention". -/// -- (BOOL)isApplyNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value "create_folder". -/// -/// @return Whether the union's current tag state has value "create_folder". -/// -- (BOOL)isCreateFolder; - -/// -/// Retrieves whether the union's current tag state has value "file_add". -/// -/// @return Whether the union's current tag state has value "file_add". -/// -- (BOOL)isFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_add_from_automation". -/// -/// @return Whether the union's current tag state has value -/// "file_add_from_automation". -/// -- (BOOL)isFileAddFromAutomation; - -/// -/// Retrieves whether the union's current tag state has value "file_copy". -/// -/// @return Whether the union's current tag state has value "file_copy". -/// -- (BOOL)isFileCopy; - -/// -/// Retrieves whether the union's current tag state has value "file_delete". -/// -/// @return Whether the union's current tag state has value "file_delete". -/// -- (BOOL)isFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_download". -/// -/// @return Whether the union's current tag state has value "file_download". -/// -- (BOOL)isFileDownload; - -/// -/// Retrieves whether the union's current tag state has value "file_edit". -/// -/// @return Whether the union's current tag state has value "file_edit". -/// -- (BOOL)isFileEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_get_copy_reference". -/// -/// @return Whether the union's current tag state has value -/// "file_get_copy_reference". -/// -- (BOOL)isFileGetCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_locking_lock_status_changed". -/// -- (BOOL)isFileLockingLockStatusChanged; - -/// -/// Retrieves whether the union's current tag state has value "file_move". -/// -/// @return Whether the union's current tag state has value "file_move". -/// -- (BOOL)isFileMove; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "file_permanently_delete". -/// -- (BOOL)isFilePermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value "file_preview". -/// -/// @return Whether the union's current tag state has value "file_preview". -/// -- (BOOL)isFilePreview; - -/// -/// Retrieves whether the union's current tag state has value "file_rename". -/// -/// @return Whether the union's current tag state has value "file_rename". -/// -- (BOOL)isFileRename; - -/// -/// Retrieves whether the union's current tag state has value "file_restore". -/// -/// @return Whether the union's current tag state has value "file_restore". -/// -- (BOOL)isFileRestore; - -/// -/// Retrieves whether the union's current tag state has value "file_revert". -/// -/// @return Whether the union's current tag state has value "file_revert". -/// -- (BOOL)isFileRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_rollback_changes". -/// -/// @return Whether the union's current tag state has value -/// "file_rollback_changes". -/// -- (BOOL)isFileRollbackChanges; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_save_copy_reference". -/// -/// @return Whether the union's current tag state has value -/// "file_save_copy_reference". -/// -- (BOOL)isFileSaveCopyReference; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_description_changed". -/// -- (BOOL)isFolderOverviewDescriptionChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_pinned". -/// -- (BOOL)isFolderOverviewItemPinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -/// @return Whether the union's current tag state has value -/// "folder_overview_item_unpinned". -/// -- (BOOL)isFolderOverviewItemUnpinned; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_added". -/// -/// @return Whether the union's current tag state has value -/// "object_label_added". -/// -- (BOOL)isObjectLabelAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_removed". -/// -/// @return Whether the union's current tag state has value -/// "object_label_removed". -/// -- (BOOL)isObjectLabelRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "object_label_updated_value". -/// -/// @return Whether the union's current tag state has value -/// "object_label_updated_value". -/// -- (BOOL)isObjectLabelUpdatedValue; - -/// -/// Retrieves whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -/// @return Whether the union's current tag state has value -/// "organize_folder_with_tidy". -/// -- (BOOL)isOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_delete". -/// -/// @return Whether the union's current tag state has value -/// "replay_file_delete". -/// -- (BOOL)isReplayFileDelete; - -/// -/// Retrieves whether the union's current tag state has value "rewind_folder". -/// -/// @return Whether the union's current tag state has value "rewind_folder". -/// -- (BOOL)isRewindFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_naming_convention". -/// -/// @return Whether the union's current tag state has value -/// "undo_naming_convention". -/// -- (BOOL)isUndoNamingConvention; - -/// -/// Retrieves whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -/// @return Whether the union's current tag state has value -/// "undo_organize_folder_with_tidy". -/// -- (BOOL)isUndoOrganizeFolderWithTidy; - -/// -/// Retrieves whether the union's current tag state has value "user_tags_added". -/// -/// @return Whether the union's current tag state has value "user_tags_added". -/// -- (BOOL)isUserTagsAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_tags_removed". -/// -/// @return Whether the union's current tag state has value "user_tags_removed". -/// -- (BOOL)isUserTagsRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_receive_file". -/// -- (BOOL)isEmailIngestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_change". -/// -/// @return Whether the union's current tag state has value -/// "file_request_change". -/// -- (BOOL)isFileRequestChange; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_close". -/// -/// @return Whether the union's current tag state has value -/// "file_request_close". -/// -- (BOOL)isFileRequestClose; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_create". -/// -/// @return Whether the union's current tag state has value -/// "file_request_create". -/// -- (BOOL)isFileRequestCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_delete". -/// -/// @return Whether the union's current tag state has value -/// "file_request_delete". -/// -- (BOOL)isFileRequestDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_request_receive_file". -/// -/// @return Whether the union's current tag state has value -/// "file_request_receive_file". -/// -- (BOOL)isFileRequestReceiveFile; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_external_id". -/// -/// @return Whether the union's current tag state has value -/// "group_add_external_id". -/// -- (BOOL)isGroupAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_add_member". -/// -/// @return Whether the union's current tag state has value "group_add_member". -/// -- (BOOL)isGroupAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_external_id". -/// -/// @return Whether the union's current tag state has value -/// "group_change_external_id". -/// -- (BOOL)isGroupChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_management_type". -/// -/// @return Whether the union's current tag state has value -/// "group_change_management_type". -/// -- (BOOL)isGroupChangeManagementType; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_change_member_role". -/// -/// @return Whether the union's current tag state has value -/// "group_change_member_role". -/// -- (BOOL)isGroupChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value "group_create". -/// -/// @return Whether the union's current tag state has value "group_create". -/// -- (BOOL)isGroupCreate; - -/// -/// Retrieves whether the union's current tag state has value "group_delete". -/// -/// @return Whether the union's current tag state has value "group_delete". -/// -- (BOOL)isGroupDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_description_updated". -/// -/// @return Whether the union's current tag state has value -/// "group_description_updated". -/// -- (BOOL)isGroupDescriptionUpdated; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_join_policy_updated". -/// -/// @return Whether the union's current tag state has value -/// "group_join_policy_updated". -/// -- (BOOL)isGroupJoinPolicyUpdated; - -/// -/// Retrieves whether the union's current tag state has value "group_moved". -/// -/// @return Whether the union's current tag state has value "group_moved". -/// -- (BOOL)isGroupMoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_external_id". -/// -/// @return Whether the union's current tag state has value -/// "group_remove_external_id". -/// -- (BOOL)isGroupRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "group_remove_member". -/// -- (BOOL)isGroupRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value "group_rename". -/// -/// @return Whether the union's current tag state has value "group_rename". -/// -- (BOOL)isGroupRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -/// @return Whether the union's current tag state has value -/// "account_lock_or_unlocked". -/// -- (BOOL)isAccountLockOrUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "emm_error". -/// -/// @return Whether the union's current tag state has value "emm_error". -/// -- (BOOL)isEmmError; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_in_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedInViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_signed_out_via_trusted_teams". -/// -- (BOOL)isGuestAdminSignedOutViaTrustedTeams; - -/// -/// Retrieves whether the union's current tag state has value "login_fail". -/// -/// @return Whether the union's current tag state has value "login_fail". -/// -- (BOOL)isLoginFail; - -/// -/// Retrieves whether the union's current tag state has value "login_success". -/// -/// @return Whether the union's current tag state has value "login_success". -/// -- (BOOL)isLoginSuccess; - -/// -/// Retrieves whether the union's current tag state has value "logout". -/// -/// @return Whether the union's current tag state has value "logout". -/// -- (BOOL)isLogout; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_end". -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_end". -/// -- (BOOL)isResellerSupportSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_session_start". -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_session_start". -/// -- (BOOL)isResellerSupportSessionStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_end". -/// -- (BOOL)isSignInAsSessionEnd; - -/// -/// Retrieves whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -/// @return Whether the union's current tag state has value -/// "sign_in_as_session_start". -/// -- (BOOL)isSignInAsSessionStart; - -/// -/// Retrieves whether the union's current tag state has value "sso_error". -/// -/// @return Whether the union's current tag state has value "sso_error". -/// -- (BOOL)isSsoError; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -/// @return Whether the union's current tag state has value -/// "backup_admin_invitation_sent". -/// -- (BOOL)isBackupAdminInvitationSent; - -/// -/// Retrieves whether the union's current tag state has value -/// "backup_invitation_opened". -/// -/// @return Whether the union's current tag state has value -/// "backup_invitation_opened". -/// -- (BOOL)isBackupInvitationOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "create_team_invite_link". -/// -/// @return Whether the union's current tag state has value -/// "create_team_invite_link". -/// -- (BOOL)isCreateTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_team_invite_link". -/// -/// @return Whether the union's current tag state has value -/// "delete_team_invite_link". -/// -- (BOOL)isDeleteTeamInviteLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_add_external_id". -/// -/// @return Whether the union's current tag state has value -/// "member_add_external_id". -/// -- (BOOL)isMemberAddExternalId; - -/// -/// Retrieves whether the union's current tag state has value "member_add_name". -/// -/// @return Whether the union's current tag state has value "member_add_name". -/// -- (BOOL)isMemberAddName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_admin_role". -/// -/// @return Whether the union's current tag state has value -/// "member_change_admin_role". -/// -- (BOOL)isMemberChangeAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_email". -/// -/// @return Whether the union's current tag state has value -/// "member_change_email". -/// -- (BOOL)isMemberChangeEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_external_id". -/// -/// @return Whether the union's current tag state has value -/// "member_change_external_id". -/// -- (BOOL)isMemberChangeExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_membership_type". -/// -/// @return Whether the union's current tag state has value -/// "member_change_membership_type". -/// -- (BOOL)isMemberChangeMembershipType; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_name". -/// -/// @return Whether the union's current tag state has value -/// "member_change_name". -/// -- (BOOL)isMemberChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_reseller_role". -/// -/// @return Whether the union's current tag state has value -/// "member_change_reseller_role". -/// -- (BOOL)isMemberChangeResellerRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_change_status". -/// -/// @return Whether the union's current tag state has value -/// "member_change_status". -/// -- (BOOL)isMemberChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -/// @return Whether the union's current tag state has value -/// "member_delete_manual_contacts". -/// -- (BOOL)isMemberDeleteManualContacts; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -/// @return Whether the union's current tag state has value -/// "member_delete_profile_photo". -/// -- (BOOL)isMemberDeleteProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -/// @return Whether the union's current tag state has value -/// "member_permanently_delete_account_contents". -/// -- (BOOL)isMemberPermanentlyDeleteAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_remove_external_id". -/// -/// @return Whether the union's current tag state has value -/// "member_remove_external_id". -/// -- (BOOL)isMemberRemoveExternalId; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_set_profile_photo". -/// -/// @return Whether the union's current tag state has value -/// "member_set_profile_photo". -/// -- (BOOL)isMemberSetProfilePhoto; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsAddCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsChangeCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_status". -/// -- (BOOL)isMemberSpaceLimitsChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_custom_quota". -/// -- (BOOL)isMemberSpaceLimitsRemoveCustomQuota; - -/// -/// Retrieves whether the union's current tag state has value "member_suggest". -/// -/// @return Whether the union's current tag state has value "member_suggest". -/// -- (BOOL)isMemberSuggest; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -/// @return Whether the union's current tag state has value -/// "member_transfer_account_contents". -/// -- (BOOL)isMemberTransferAccountContents; - -/// -/// Retrieves whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -/// @return Whether the union's current tag state has value -/// "pending_secondary_email_added". -/// -- (BOOL)isPendingSecondaryEmailAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_deleted". -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_deleted". -/// -- (BOOL)isSecondaryEmailDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_email_verified". -/// -/// @return Whether the union's current tag state has value -/// "secondary_email_verified". -/// -- (BOOL)isSecondaryEmailVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "secondary_mails_policy_changed". -/// -- (BOOL)isSecondaryMailsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value "binder_add_page". -/// -/// @return Whether the union's current tag state has value "binder_add_page". -/// -- (BOOL)isBinderAddPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_add_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_add_section". -/// -- (BOOL)isBinderAddSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_page". -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_page". -/// -- (BOOL)isBinderRemovePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_remove_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_remove_section". -/// -- (BOOL)isBinderRemoveSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_page". -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_page". -/// -- (BOOL)isBinderRenamePage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_rename_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_rename_section". -/// -- (BOOL)isBinderRenameSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_page". -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_page". -/// -- (BOOL)isBinderReorderPage; - -/// -/// Retrieves whether the union's current tag state has value -/// "binder_reorder_section". -/// -/// @return Whether the union's current tag state has value -/// "binder_reorder_section". -/// -- (BOOL)isBinderReorderSection; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_member". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_member". -/// -- (BOOL)isPaperContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_add_to_folder". -/// -- (BOOL)isPaperContentAddToFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_archive". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_archive". -/// -- (BOOL)isPaperContentArchive; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_create". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_create". -/// -- (BOOL)isPaperContentCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_permanently_delete". -/// -- (BOOL)isPaperContentPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_from_folder". -/// -- (BOOL)isPaperContentRemoveFromFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_remove_member". -/// -- (BOOL)isPaperContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_rename". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_rename". -/// -- (BOOL)isPaperContentRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_content_restore". -/// -/// @return Whether the union's current tag state has value -/// "paper_content_restore". -/// -- (BOOL)isPaperContentRestore; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_add_comment". -/// -- (BOOL)isPaperDocAddComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_member_role". -/// -- (BOOL)isPaperDocChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_sharing_policy". -/// -- (BOOL)isPaperDocChangeSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_change_subscription". -/// -- (BOOL)isPaperDocChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_deleted". -/// -/// @return Whether the union's current tag state has value "paper_doc_deleted". -/// -- (BOOL)isPaperDocDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_delete_comment". -/// -- (BOOL)isPaperDocDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_download". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_download". -/// -- (BOOL)isPaperDocDownload; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_edit". -/// -/// @return Whether the union's current tag state has value "paper_doc_edit". -/// -- (BOOL)isPaperDocEdit; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_edit_comment". -/// -- (BOOL)isPaperDocEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_followed". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_followed". -/// -- (BOOL)isPaperDocFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_mention". -/// -/// @return Whether the union's current tag state has value "paper_doc_mention". -/// -- (BOOL)isPaperDocMention; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_ownership_changed". -/// -- (BOOL)isPaperDocOwnershipChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_request_access". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_request_access". -/// -- (BOOL)isPaperDocRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_resolve_comment". -/// -- (BOOL)isPaperDocResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_revert". -/// -/// @return Whether the union's current tag state has value "paper_doc_revert". -/// -- (BOOL)isPaperDocRevert; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_slack_share". -/// -- (BOOL)isPaperDocSlackShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_team_invite". -/// -- (BOOL)isPaperDocTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_trashed". -/// -/// @return Whether the union's current tag state has value "paper_doc_trashed". -/// -- (BOOL)isPaperDocTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_unresolve_comment". -/// -- (BOOL)isPaperDocUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -/// @return Whether the union's current tag state has value -/// "paper_doc_untrashed". -/// -- (BOOL)isPaperDocUntrashed; - -/// -/// Retrieves whether the union's current tag state has value "paper_doc_view". -/// -/// @return Whether the union's current tag state has value "paper_doc_view". -/// -- (BOOL)isPaperDocView; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_allow". -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_allow". -/// -- (BOOL)isPaperExternalViewAllow; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_default_team". -/// -- (BOOL)isPaperExternalViewDefaultTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -/// @return Whether the union's current tag state has value -/// "paper_external_view_forbid". -/// -- (BOOL)isPaperExternalViewForbid; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_change_subscription". -/// -- (BOOL)isPaperFolderChangeSubscription; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_deleted". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_deleted". -/// -- (BOOL)isPaperFolderDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_followed". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_followed". -/// -- (BOOL)isPaperFolderFollowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -/// @return Whether the union's current tag state has value -/// "paper_folder_team_invite". -/// -- (BOOL)isPaperFolderTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_change_permission". -/// -- (BOOL)isPaperPublishedLinkChangePermission; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_create". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_create". -/// -- (BOOL)isPaperPublishedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_disabled". -/// -- (BOOL)isPaperPublishedLinkDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_published_link_view". -/// -/// @return Whether the union's current tag state has value -/// "paper_published_link_view". -/// -- (BOOL)isPaperPublishedLinkView; - -/// -/// Retrieves whether the union's current tag state has value "password_change". -/// -/// @return Whether the union's current tag state has value "password_change". -/// -- (BOOL)isPasswordChange; - -/// -/// Retrieves whether the union's current tag state has value "password_reset". -/// -/// @return Whether the union's current tag state has value "password_reset". -/// -- (BOOL)isPasswordReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_reset_all". -/// -/// @return Whether the union's current tag state has value -/// "password_reset_all". -/// -- (BOOL)isPasswordResetAll; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report". -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report". -/// -- (BOOL)isClassificationCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_create_report_fail". -/// -/// @return Whether the union's current tag state has value -/// "classification_create_report_fail". -/// -- (BOOL)isClassificationCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -/// @return Whether the union's current tag state has value -/// "emm_create_exceptions_report". -/// -- (BOOL)isEmmCreateExceptionsReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_create_usage_report". -/// -/// @return Whether the union's current tag state has value -/// "emm_create_usage_report". -/// -- (BOOL)isEmmCreateUsageReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report". -/// -/// @return Whether the union's current tag state has value -/// "export_members_report". -/// -- (BOOL)isExportMembersReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "export_members_report_fail". -/// -/// @return Whether the union's current tag state has value -/// "export_members_report_fail". -/// -- (BOOL)isExportMembersReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_create_report". -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_create_report". -/// -- (BOOL)isExternalSharingCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "external_sharing_report_failed". -/// -- (BOOL)isExternalSharingReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_create_report". -/// -- (BOOL)isNoExpirationLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "no_expiration_link_gen_report_failed". -/// -- (BOOL)isNoExpirationLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_create_report". -/// -- (BOOL)isNoPasswordLinkGenCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_gen_report_failed". -/// -- (BOOL)isNoPasswordLinkGenReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_create_report". -/// -- (BOOL)isNoPasswordLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "no_password_link_view_report_failed". -/// -- (BOOL)isNoPasswordLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_create_report". -/// -- (BOOL)isOutdatedLinkViewCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "outdated_link_view_report_failed". -/// -- (BOOL)isOutdatedLinkViewReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_admin_export_start". -/// -/// @return Whether the union's current tag state has value -/// "paper_admin_export_start". -/// -- (BOOL)isPaperAdminExportStart; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report". -/// -- (BOOL)isRansomwareAlertCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -/// @return Whether the union's current tag state has value -/// "ransomware_alert_create_report_failed". -/// -- (BOOL)isRansomwareAlertCreateReportFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_create_admin_privilege_report". -/// -- (BOOL)isSmartSyncCreateAdminPrivilegeReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report". -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report". -/// -- (BOOL)isTeamActivityCreateReport; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -/// @return Whether the union's current tag state has value -/// "team_activity_create_report_fail". -/// -- (BOOL)isTeamActivityCreateReportFail; - -/// -/// Retrieves whether the union's current tag state has value -/// "collection_share". -/// -/// @return Whether the union's current tag state has value "collection_share". -/// -- (BOOL)isCollectionShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_file_add". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_file_add". -/// -- (BOOL)isFileTransfersFileAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_delete". -/// -- (BOOL)isFileTransfersTransferDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_download". -/// -- (BOOL)isFileTransfersTransferDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_send". -/// -- (BOOL)isFileTransfersTransferSend; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_transfer_view". -/// -- (BOOL)isFileTransfersTransferView; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_invite_only". -/// -/// @return Whether the union's current tag state has value -/// "note_acl_invite_only". -/// -- (BOOL)isNoteAclInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "note_acl_link". -/// -/// @return Whether the union's current tag state has value "note_acl_link". -/// -- (BOOL)isNoteAclLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_acl_team_link". -/// -/// @return Whether the union's current tag state has value -/// "note_acl_team_link". -/// -- (BOOL)isNoteAclTeamLink; - -/// -/// Retrieves whether the union's current tag state has value "note_shared". -/// -/// @return Whether the union's current tag state has value "note_shared". -/// -- (BOOL)isNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "note_share_receive". -/// -/// @return Whether the union's current tag state has value -/// "note_share_receive". -/// -- (BOOL)isNoteShareReceive; - -/// -/// Retrieves whether the union's current tag state has value -/// "open_note_shared". -/// -/// @return Whether the union's current tag state has value "open_note_shared". -/// -- (BOOL)isOpenNoteShared; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_created". -/// -- (BOOL)isReplayFileSharedLinkCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -/// @return Whether the union's current tag state has value -/// "replay_file_shared_link_modified". -/// -- (BOOL)isReplayFileSharedLinkModified; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_add". -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_add". -/// -- (BOOL)isReplayProjectTeamAdd; - -/// -/// Retrieves whether the union's current tag state has value -/// "replay_project_team_delete". -/// -/// @return Whether the union's current tag state has value -/// "replay_project_team_delete". -/// -- (BOOL)isReplayProjectTeamDelete; - -/// -/// Retrieves whether the union's current tag state has value "sf_add_group". -/// -/// @return Whether the union's current tag state has value "sf_add_group". -/// -- (BOOL)isSfAddGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -/// @return Whether the union's current tag state has value -/// "sf_allow_non_members_to_view_shared_links". -/// -- (BOOL)isSfAllowNonMembersToViewSharedLinks; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -/// @return Whether the union's current tag state has value -/// "sf_external_invite_warn". -/// -- (BOOL)isSfExternalInviteWarn; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_invite". -/// -/// @return Whether the union's current tag state has value "sf_fb_invite". -/// -- (BOOL)isSfFbInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -/// @return Whether the union's current tag state has value -/// "sf_fb_invite_change_role". -/// -- (BOOL)isSfFbInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_fb_uninvite". -/// -/// @return Whether the union's current tag state has value "sf_fb_uninvite". -/// -- (BOOL)isSfFbUninvite; - -/// -/// Retrieves whether the union's current tag state has value "sf_invite_group". -/// -/// @return Whether the union's current tag state has value "sf_invite_group". -/// -- (BOOL)isSfInviteGroup; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_grant_access". -/// -/// @return Whether the union's current tag state has value -/// "sf_team_grant_access". -/// -- (BOOL)isSfTeamGrantAccess; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_invite". -/// -/// @return Whether the union's current tag state has value "sf_team_invite". -/// -- (BOOL)isSfTeamInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -/// @return Whether the union's current tag state has value -/// "sf_team_invite_change_role". -/// -- (BOOL)isSfTeamInviteChangeRole; - -/// -/// Retrieves whether the union's current tag state has value "sf_team_join". -/// -/// @return Whether the union's current tag state has value "sf_team_join". -/// -- (BOOL)isSfTeamJoin; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -/// @return Whether the union's current tag state has value -/// "sf_team_join_from_oob_link". -/// -- (BOOL)isSfTeamJoinFromOobLink; - -/// -/// Retrieves whether the union's current tag state has value -/// "sf_team_uninvite". -/// -/// @return Whether the union's current tag state has value "sf_team_uninvite". -/// -- (BOOL)isSfTeamUninvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_invitees". -/// -- (BOOL)isSharedContentAddInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_expiry". -/// -- (BOOL)isSharedContentAddLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_link_password". -/// -- (BOOL)isSharedContentAddLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_add_member". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_add_member". -/// -- (BOOL)isSharedContentAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_downloads_policy". -/// -- (BOOL)isSharedContentChangeDownloadsPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_invitee_role". -/// -- (BOOL)isSharedContentChangeInviteeRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_audience". -/// -- (BOOL)isSharedContentChangeLinkAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_expiry". -/// -- (BOOL)isSharedContentChangeLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_link_password". -/// -- (BOOL)isSharedContentChangeLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_member_role". -/// -- (BOOL)isSharedContentChangeMemberRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_change_viewer_info_policy". -/// -- (BOOL)isSharedContentChangeViewerInfoPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_claim_invitation". -/// -- (BOOL)isSharedContentClaimInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_copy". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_copy". -/// -- (BOOL)isSharedContentCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_download". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_download". -/// -- (BOOL)isSharedContentDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_relinquish_membership". -/// -- (BOOL)isSharedContentRelinquishMembership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_invitees". -/// -- (BOOL)isSharedContentRemoveInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_expiry". -/// -- (BOOL)isSharedContentRemoveLinkExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_link_password". -/// -- (BOOL)isSharedContentRemoveLinkPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_remove_member". -/// -- (BOOL)isSharedContentRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_request_access". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_request_access". -/// -- (BOOL)isSharedContentRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_invitees". -/// -- (BOOL)isSharedContentRestoreInvitees; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_restore_member". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_restore_member". -/// -- (BOOL)isSharedContentRestoreMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_unshare". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_unshare". -/// -- (BOOL)isSharedContentUnshare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_content_view". -/// -/// @return Whether the union's current tag state has value -/// "shared_content_view". -/// -- (BOOL)isSharedContentView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_link_policy". -/// -- (BOOL)isSharedFolderChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_inheritance_policy". -/// -- (BOOL)isSharedFolderChangeMembersInheritancePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_management_policy". -/// -- (BOOL)isSharedFolderChangeMembersManagementPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_change_members_policy". -/// -- (BOOL)isSharedFolderChangeMembersPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_create". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_create". -/// -- (BOOL)isSharedFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_decline_invitation". -/// -- (BOOL)isSharedFolderDeclineInvitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_mount". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_mount". -/// -- (BOOL)isSharedFolderMount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_nest". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_nest". -/// -- (BOOL)isSharedFolderNest; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_transfer_ownership". -/// -- (BOOL)isSharedFolderTransferOwnership; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_folder_unmount". -/// -/// @return Whether the union's current tag state has value -/// "shared_folder_unmount". -/// -- (BOOL)isSharedFolderUnmount; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_add_expiry". -/// -- (BOOL)isSharedLinkAddExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_expiry". -/// -- (BOOL)isSharedLinkChangeExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_change_visibility". -/// -- (BOOL)isSharedLinkChangeVisibility; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_copy". -/// -/// @return Whether the union's current tag state has value "shared_link_copy". -/// -- (BOOL)isSharedLinkCopy; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_create". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_create". -/// -- (BOOL)isSharedLinkCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_disable". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_disable". -/// -- (BOOL)isSharedLinkDisable; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_download". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_download". -/// -- (BOOL)isSharedLinkDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_remove_expiry". -/// -- (BOOL)isSharedLinkRemoveExpiry; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_expiration". -/// -- (BOOL)isSharedLinkSettingsAddExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_add_password". -/// -- (BOOL)isSharedLinkSettingsAddPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_disabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_allow_download_enabled". -/// -- (BOOL)isSharedLinkSettingsAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_audience". -/// -- (BOOL)isSharedLinkSettingsChangeAudience; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_expiration". -/// -- (BOOL)isSharedLinkSettingsChangeExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_change_password". -/// -- (BOOL)isSharedLinkSettingsChangePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_expiration". -/// -- (BOOL)isSharedLinkSettingsRemoveExpiration; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -/// @return Whether the union's current tag state has value -/// "shared_link_settings_remove_password". -/// -- (BOOL)isSharedLinkSettingsRemovePassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_share". -/// -/// @return Whether the union's current tag state has value "shared_link_share". -/// -- (BOOL)isSharedLinkShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_link_view". -/// -/// @return Whether the union's current tag state has value "shared_link_view". -/// -- (BOOL)isSharedLinkView; - -/// -/// Retrieves whether the union's current tag state has value -/// "shared_note_opened". -/// -/// @return Whether the union's current tag state has value -/// "shared_note_opened". -/// -- (BOOL)isSharedNoteOpened; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -/// @return Whether the union's current tag state has value -/// "shmodel_disable_downloads". -/// -- (BOOL)isShmodelDisableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -/// @return Whether the union's current tag state has value -/// "shmodel_enable_downloads". -/// -- (BOOL)isShmodelEnableDownloads; - -/// -/// Retrieves whether the union's current tag state has value -/// "shmodel_group_share". -/// -/// @return Whether the union's current tag state has value -/// "shmodel_group_share". -/// -- (BOOL)isShmodelGroupShare; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_access_granted". -/// -/// @return Whether the union's current tag state has value -/// "showcase_access_granted". -/// -- (BOOL)isShowcaseAccessGranted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_add_member". -/// -/// @return Whether the union's current tag state has value -/// "showcase_add_member". -/// -- (BOOL)isShowcaseAddMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_archived". -/// -/// @return Whether the union's current tag state has value "showcase_archived". -/// -- (BOOL)isShowcaseArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_created". -/// -/// @return Whether the union's current tag state has value "showcase_created". -/// -- (BOOL)isShowcaseCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_delete_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_delete_comment". -/// -- (BOOL)isShowcaseDeleteComment; - -/// -/// Retrieves whether the union's current tag state has value "showcase_edited". -/// -/// @return Whether the union's current tag state has value "showcase_edited". -/// -- (BOOL)isShowcaseEdited; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_edit_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_edit_comment". -/// -- (BOOL)isShowcaseEditComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_added". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_added". -/// -- (BOOL)isShowcaseFileAdded; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_download". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_download". -/// -- (BOOL)isShowcaseFileDownload; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_removed". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_removed". -/// -- (BOOL)isShowcaseFileRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_file_view". -/// -/// @return Whether the union's current tag state has value -/// "showcase_file_view". -/// -- (BOOL)isShowcaseFileView; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -/// @return Whether the union's current tag state has value -/// "showcase_permanently_deleted". -/// -- (BOOL)isShowcasePermanentlyDeleted; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_post_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_post_comment". -/// -- (BOOL)isShowcasePostComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_remove_member". -/// -/// @return Whether the union's current tag state has value -/// "showcase_remove_member". -/// -- (BOOL)isShowcaseRemoveMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_renamed". -/// -/// @return Whether the union's current tag state has value "showcase_renamed". -/// -- (BOOL)isShowcaseRenamed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_request_access". -/// -/// @return Whether the union's current tag state has value -/// "showcase_request_access". -/// -- (BOOL)isShowcaseRequestAccess; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_resolve_comment". -/// -- (BOOL)isShowcaseResolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_restored". -/// -/// @return Whether the union's current tag state has value "showcase_restored". -/// -- (BOOL)isShowcaseRestored; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed". -/// -/// @return Whether the union's current tag state has value "showcase_trashed". -/// -- (BOOL)isShowcaseTrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -/// @return Whether the union's current tag state has value -/// "showcase_trashed_deprecated". -/// -- (BOOL)isShowcaseTrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -/// @return Whether the union's current tag state has value -/// "showcase_unresolve_comment". -/// -- (BOOL)isShowcaseUnresolveComment; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed". -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed". -/// -- (BOOL)isShowcaseUntrashed; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -/// @return Whether the union's current tag state has value -/// "showcase_untrashed_deprecated". -/// -- (BOOL)isShowcaseUntrashedDeprecated; - -/// -/// Retrieves whether the union's current tag state has value "showcase_view". -/// -/// @return Whether the union's current tag state has value "showcase_view". -/// -- (BOOL)isShowcaseView; - -/// -/// Retrieves whether the union's current tag state has value "sso_add_cert". -/// -/// @return Whether the union's current tag state has value "sso_add_cert". -/// -- (BOOL)isSsoAddCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_login_url". -/// -/// @return Whether the union's current tag state has value "sso_add_login_url". -/// -- (BOOL)isSsoAddLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_add_logout_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_add_logout_url". -/// -- (BOOL)isSsoAddLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value "sso_change_cert". -/// -/// @return Whether the union's current tag state has value "sso_change_cert". -/// -- (BOOL)isSsoChangeCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_login_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_change_login_url". -/// -- (BOOL)isSsoChangeLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_logout_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_change_logout_url". -/// -- (BOOL)isSsoChangeLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -/// @return Whether the union's current tag state has value -/// "sso_change_saml_identity_mode". -/// -- (BOOL)isSsoChangeSamlIdentityMode; - -/// -/// Retrieves whether the union's current tag state has value "sso_remove_cert". -/// -/// @return Whether the union's current tag state has value "sso_remove_cert". -/// -- (BOOL)isSsoRemoveCert; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_login_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_login_url". -/// -- (BOOL)isSsoRemoveLoginUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -/// @return Whether the union's current tag state has value -/// "sso_remove_logout_url". -/// -- (BOOL)isSsoRemoveLogoutUrl; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_change_status". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_change_status". -/// -- (BOOL)isTeamFolderChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_create". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_create". -/// -- (BOOL)isTeamFolderCreate; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_downgrade". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_downgrade". -/// -- (BOOL)isTeamFolderDowngrade; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_permanently_delete". -/// -- (BOOL)isTeamFolderPermanentlyDelete; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_rename". -/// -/// @return Whether the union's current tag state has value -/// "team_folder_rename". -/// -- (BOOL)isTeamFolderRename; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_settings_changed". -/// -- (BOOL)isTeamSelectiveSyncSettingsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "account_capture_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "account_capture_change_policy". -/// -- (BOOL)isAccountCaptureChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -/// @return Whether the union's current tag state has value -/// "admin_email_reminders_changed". -/// -- (BOOL)isAdminEmailRemindersChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_disabled". -/// -/// @return Whether the union's current tag state has value -/// "allow_download_disabled". -/// -- (BOOL)isAllowDownloadDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "allow_download_enabled". -/// -/// @return Whether the union's current tag state has value -/// "allow_download_enabled". -/// -- (BOOL)isAllowDownloadEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_permissions_changed". -/// -/// @return Whether the union's current tag state has value -/// "app_permissions_changed". -/// -- (BOOL)isAppPermissionsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "camera_uploads_policy_changed". -/// -- (BOOL)isCameraUploadsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "capture_transcript_policy_changed". -/// -- (BOOL)isCaptureTranscriptPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "classification_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "classification_change_policy". -/// -- (BOOL)isClassificationChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "computer_backup_policy_changed". -/// -- (BOOL)isComputerBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "content_administration_policy_changed". -/// -- (BOOL)isContentAdministrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_change_policy". -/// -- (BOOL)isDataPlacementRestrictionChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -/// @return Whether the union's current tag state has value -/// "data_placement_restriction_satisfy_policy". -/// -- (BOOL)isDataPlacementRestrictionSatisfyPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_add_exception". -/// -- (BOOL)isDeviceApprovalsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_desktop_policy". -/// -- (BOOL)isDeviceApprovalsChangeDesktopPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_mobile_policy". -/// -- (BOOL)isDeviceApprovalsChangeMobilePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_overage_action". -/// -- (BOOL)isDeviceApprovalsChangeOverageAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_change_unlink_action". -/// -- (BOOL)isDeviceApprovalsChangeUnlinkAction; - -/// -/// Retrieves whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "device_approvals_remove_exception". -/// -- (BOOL)isDeviceApprovalsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_add_members". -/// -- (BOOL)isDirectoryRestrictionsAddMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -/// @return Whether the union's current tag state has value -/// "directory_restrictions_remove_members". -/// -- (BOOL)isDirectoryRestrictionsRemoveMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "dropbox_passwords_policy_changed". -/// -- (BOOL)isDropboxPasswordsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "email_ingest_policy_changed". -/// -- (BOOL)isEmailIngestPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_add_exception". -/// -/// @return Whether the union's current tag state has value "emm_add_exception". -/// -- (BOOL)isEmmAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_change_policy". -/// -/// @return Whether the union's current tag state has value "emm_change_policy". -/// -- (BOOL)isEmmChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "emm_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "emm_remove_exception". -/// -- (BOOL)isEmmRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "extended_version_history_change_policy". -/// -- (BOOL)isExtendedVersionHistoryChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "external_drive_backup_policy_changed". -/// -- (BOOL)isExternalDriveBackupPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_comments_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "file_comments_change_policy". -/// -- (BOOL)isFileCommentsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_locking_policy_changed". -/// -- (BOOL)isFileLockingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_provider_migration_policy_changed". -/// -- (BOOL)isFileProviderMigrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "file_requests_change_policy". -/// -- (BOOL)isFileRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_enabled". -/// -- (BOOL)isFileRequestsEmailsEnabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -/// @return Whether the union's current tag state has value -/// "file_requests_emails_restricted_to_team_only". -/// -- (BOOL)isFileRequestsEmailsRestrictedToTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "file_transfers_policy_changed". -/// -- (BOOL)isFileTransfersPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "folder_link_restriction_policy_changed". -/// -- (BOOL)isFolderLinkRestrictionPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "google_sso_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "google_sso_change_policy". -/// -- (BOOL)isGoogleSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "group_user_management_change_policy". -/// -- (BOOL)isGroupUserManagementChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "integration_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "integration_policy_changed". -/// -- (BOOL)isIntegrationPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "invite_acceptance_email_policy_changed". -/// -- (BOOL)isInviteAcceptanceEmailPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_requests_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_requests_change_policy". -/// -- (BOOL)isMemberRequestsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "member_send_invite_policy_changed". -/// -- (BOOL)isMemberSendInvitePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_add_exception". -/// -- (BOOL)isMemberSpaceLimitsAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_caps_type_policy". -/// -- (BOOL)isMemberSpaceLimitsChangeCapsTypePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_change_policy". -/// -- (BOOL)isMemberSpaceLimitsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "member_space_limits_remove_exception". -/// -- (BOOL)isMemberSpaceLimitsRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "member_suggestions_change_policy". -/// -- (BOOL)isMemberSuggestionsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "microsoft_office_addin_change_policy". -/// -- (BOOL)isMicrosoftOfficeAddinChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "network_control_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "network_control_change_policy". -/// -- (BOOL)isNetworkControlChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_deployment_policy". -/// -- (BOOL)isPaperChangeDeploymentPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_link_policy". -/// -- (BOOL)isPaperChangeMemberLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_member_policy". -/// -- (BOOL)isPaperChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "paper_change_policy". -/// -- (BOOL)isPaperChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "paper_default_folder_policy_changed". -/// -- (BOOL)isPaperDefaultFolderPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "paper_desktop_policy_changed". -/// -- (BOOL)isPaperDesktopPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_addition". -/// -- (BOOL)isPaperEnabledUsersGroupAddition; - -/// -/// Retrieves whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -/// @return Whether the union's current tag state has value -/// "paper_enabled_users_group_removal". -/// -- (BOOL)isPaperEnabledUsersGroupRemoval; - -/// -/// Retrieves whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "password_strength_requirements_change_policy". -/// -- (BOOL)isPasswordStrengthRequirementsChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "permanent_delete_change_policy". -/// -- (BOOL)isPermanentDeleteChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "reseller_support_change_policy". -/// -- (BOOL)isResellerSupportChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "rewind_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "rewind_policy_changed". -/// -- (BOOL)isRewindPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "send_for_signature_policy_changed". -/// -- (BOOL)isSendForSignaturePolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_folder_join_policy". -/// -- (BOOL)isSharingChangeFolderJoinPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_allow_change_expiration_policy". -/// -- (BOOL)isSharingChangeLinkAllowChangeExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_default_expiration_policy". -/// -- (BOOL)isSharingChangeLinkDefaultExpirationPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_enforce_password_policy". -/// -- (BOOL)isSharingChangeLinkEnforcePasswordPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_link_policy". -/// -- (BOOL)isSharingChangeLinkPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -/// @return Whether the union's current tag state has value -/// "sharing_change_member_policy". -/// -- (BOOL)isSharingChangeMemberPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_download_policy". -/// -- (BOOL)isShowcaseChangeDownloadPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_enabled_policy". -/// -- (BOOL)isShowcaseChangeEnabledPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -/// @return Whether the union's current tag state has value -/// "showcase_change_external_sharing_policy". -/// -- (BOOL)isShowcaseChangeExternalSharingPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "smarter_smart_sync_policy_changed". -/// -- (BOOL)isSmarterSmartSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_change_policy". -/// -- (BOOL)isSmartSyncChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_not_opt_out". -/// -- (BOOL)isSmartSyncNotOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -/// @return Whether the union's current tag state has value -/// "smart_sync_opt_out". -/// -- (BOOL)isSmartSyncOptOut; - -/// -/// Retrieves whether the union's current tag state has value -/// "sso_change_policy". -/// -/// @return Whether the union's current tag state has value "sso_change_policy". -/// -- (BOOL)isSsoChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_branding_policy_changed". -/// -- (BOOL)isTeamBrandingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_extensions_policy_changed". -/// -- (BOOL)isTeamExtensionsPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_selective_sync_policy_changed". -/// -- (BOOL)isTeamSelectiveSyncPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -/// @return Whether the union's current tag state has value -/// "team_sharing_whitelist_subjects_changed". -/// -- (BOOL)isTeamSharingWhitelistSubjectsChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_exception". -/// -/// @return Whether the union's current tag state has value "tfa_add_exception". -/// -- (BOOL)isTfaAddException; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_policy". -/// -/// @return Whether the union's current tag state has value "tfa_change_policy". -/// -- (BOOL)isTfaChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_exception". -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_exception". -/// -- (BOOL)isTfaRemoveException; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_account_change_policy". -/// -/// @return Whether the union's current tag state has value -/// "two_account_change_policy". -/// -- (BOOL)isTwoAccountChangePolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "viewer_info_policy_changed". -/// -- (BOOL)isViewerInfoPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -/// @return Whether the union's current tag state has value -/// "watermarking_policy_changed". -/// -- (BOOL)isWatermarkingPolicyChanged; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_active_session_limit". -/// -- (BOOL)isWebSessionsChangeActiveSessionLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_fixed_length_policy". -/// -- (BOOL)isWebSessionsChangeFixedLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -/// @return Whether the union's current tag state has value -/// "web_sessions_change_idle_length_policy". -/// -- (BOOL)isWebSessionsChangeIdleLengthPolicy; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_successful". -/// -- (BOOL)isDataResidencyMigrationRequestSuccessful; - -/// -/// Retrieves whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -/// @return Whether the union's current tag state has value -/// "data_residency_migration_request_unsuccessful". -/// -- (BOOL)isDataResidencyMigrationRequestUnsuccessful; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_from". -/// -/// @return Whether the union's current tag state has value "team_merge_from". -/// -- (BOOL)isTeamMergeFrom; - -/// -/// Retrieves whether the union's current tag state has value "team_merge_to". -/// -/// @return Whether the union's current tag state has value "team_merge_to". -/// -- (BOOL)isTeamMergeTo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_background". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_background". -/// -- (BOOL)isTeamProfileAddBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_add_logo". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_add_logo". -/// -- (BOOL)isTeamProfileAddLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_background". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_background". -/// -- (BOOL)isTeamProfileChangeBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_default_language". -/// -- (BOOL)isTeamProfileChangeDefaultLanguage; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_logo". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_logo". -/// -- (BOOL)isTeamProfileChangeLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_change_name". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_change_name". -/// -- (BOOL)isTeamProfileChangeName; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_background". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_background". -/// -- (BOOL)isTeamProfileRemoveBackground; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -/// @return Whether the union's current tag state has value -/// "team_profile_remove_logo". -/// -- (BOOL)isTeamProfileRemoveLogo; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_backup_phone". -/// -- (BOOL)isTfaAddBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_add_security_key". -/// -/// @return Whether the union's current tag state has value -/// "tfa_add_security_key". -/// -- (BOOL)isTfaAddSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -/// @return Whether the union's current tag state has value -/// "tfa_change_backup_phone". -/// -- (BOOL)isTfaChangeBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_change_status". -/// -/// @return Whether the union's current tag state has value "tfa_change_status". -/// -- (BOOL)isTfaChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_backup_phone". -/// -- (BOOL)isTfaRemoveBackupPhone; - -/// -/// Retrieves whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -/// @return Whether the union's current tag state has value -/// "tfa_remove_security_key". -/// -- (BOOL)isTfaRemoveSecurityKey; - -/// -/// Retrieves whether the union's current tag state has value "tfa_reset". -/// -/// @return Whether the union's current tag state has value "tfa_reset". -/// -- (BOOL)isTfaReset; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_admin_role". -/// -- (BOOL)isChangedEnterpriseAdminRole; - -/// -/// Retrieves whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -/// @return Whether the union's current tag state has value -/// "changed_enterprise_connected_team_status". -/// -- (BOOL)isChangedEnterpriseConnectedTeamStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session". -/// -- (BOOL)isEndedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -/// @return Whether the union's current tag state has value -/// "ended_enterprise_admin_session_deprecated". -/// -- (BOOL)isEndedEnterpriseAdminSessionDeprecated; - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -/// @return Whether the union's current tag state has value -/// "enterprise_settings_locking". -/// -- (BOOL)isEnterpriseSettingsLocking; - -/// -/// Retrieves whether the union's current tag state has value -/// "guest_admin_change_status". -/// -/// @return Whether the union's current tag state has value -/// "guest_admin_change_status". -/// -- (BOOL)isGuestAdminChangeStatus; - -/// -/// Retrieves whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -/// @return Whether the union's current tag state has value -/// "started_enterprise_admin_session". -/// -- (BOOL)isStartedEnterpriseAdminSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted". -/// -- (BOOL)isTeamMergeRequestAccepted; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_accepted_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestAcceptedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_auto_canceled". -/// -- (BOOL)isTeamMergeRequestAutoCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled". -/// -- (BOOL)isTeamMergeRequestCanceled; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_canceled_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestCanceledShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired". -/// -- (BOOL)isTeamMergeRequestExpired; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_expired_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestExpiredShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_rejected_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestRejectedShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder". -/// -- (BOOL)isTeamMergeRequestReminder; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_reminder_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestReminderShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_revoked". -/// -- (BOOL)isTeamMergeRequestRevoked; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_primary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -/// @return Whether the union's current tag state has value -/// "team_merge_request_sent_shown_to_secondary_team". -/// -- (BOOL)isTeamMergeRequestSentShownToSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGEventTypeArg` union. -/// -@interface DBTEAMLOGEventTypeArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGEventTypeArg` instances. -/// -/// @param instance An instance of the `DBTEAMLOGEventTypeArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGEventTypeArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGEventTypeArg *)instance; - -/// -/// Deserializes `DBTEAMLOGEventTypeArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGEventTypeArg` API object. -/// -/// @return An instantiation of the `DBTEAMLOGEventTypeArg` object. -/// -+ (DBTEAMLOGEventTypeArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportDetails.h deleted file mode 100644 index 408b8840..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportDetails` struct. -/// -/// Created member data report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportDetails` struct. -/// -@interface DBTEAMLOGExportMembersReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportDetails` -/// object. -/// -+ (DBTEAMLOGExportMembersReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportFailDetails.h deleted file mode 100644 index e893b6e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportFailDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportFailDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportFailDetails` struct. -/// -/// Failed to create members data report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportFailDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportFailDetails` struct. -/// -@interface DBTEAMLOGExportMembersReportFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportFailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportFailDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportFailDetails` -/// object. -/// -+ (DBTEAMLOGExportMembersReportFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportFailType.h deleted file mode 100644 index 228047e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportFailType` struct. -/// -@interface DBTEAMLOGExportMembersReportFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportFailType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportFailType` -/// object. -/// -+ (DBTEAMLOGExportMembersReportFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportType.h deleted file mode 100644 index cf1d7367..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExportMembersReportType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExportMembersReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExportMembersReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExportMembersReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExportMembersReportType` struct. -/// -@interface DBTEAMLOGExportMembersReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExportMembersReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExportMembersReportType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExportMembersReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGExportMembersReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExportMembersReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExportMembersReportType` object. -/// -+ (DBTEAMLOGExportMembersReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h deleted file mode 100644 index 81a7abd8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExtendedVersionHistoryChangePolicyDetails; -@class DBTEAMLOGExtendedVersionHistoryPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExtendedVersionHistoryChangePolicyDetails` struct. -/// -/// Accepted/opted out of extended version history. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New extended version history policy. -@property (nonatomic, readonly) DBTEAMLOGExtendedVersionHistoryPolicy *dNewValue; - -/// Previous extended version history policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGExtendedVersionHistoryPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New extended version history policy. -/// @param previousValue Previous extended version history policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGExtendedVersionHistoryPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGExtendedVersionHistoryPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New extended version history policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGExtendedVersionHistoryPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExtendedVersionHistoryChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyDetails` object. -/// -+ (DBTEAMLOGExtendedVersionHistoryChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyType.h deleted file mode 100644 index 584836ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExtendedVersionHistoryChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExtendedVersionHistoryChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExtendedVersionHistoryChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGExtendedVersionHistoryChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExtendedVersionHistoryChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExtendedVersionHistoryChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGExtendedVersionHistoryChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExtendedVersionHistoryChangePolicyType` object. -/// -+ (DBTEAMLOGExtendedVersionHistoryChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryPolicy.h deleted file mode 100644 index c05fdd23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExtendedVersionHistoryPolicy.h +++ /dev/null @@ -1,177 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExtendedVersionHistoryPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExtendedVersionHistoryPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExtendedVersionHistoryPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExtendedVersionHistoryPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExtendedVersionHistoryPolicyTag) { - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyExplicitlyLimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyExplicitlyUnlimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyImplicitlyLimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyImplicitlyUnlimited, - - /// (no description). - DBTEAMLOGExtendedVersionHistoryPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExtendedVersionHistoryPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "explicitly_limited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExplicitlyLimited; - -/// -/// Initializes union class with tag state of "explicitly_unlimited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExplicitlyUnlimited; - -/// -/// Initializes union class with tag state of "implicitly_limited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImplicitlyLimited; - -/// -/// Initializes union class with tag state of "implicitly_unlimited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithImplicitlyUnlimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "explicitly_limited". -/// -/// @return Whether the union's current tag state has value -/// "explicitly_limited". -/// -- (BOOL)isExplicitlyLimited; - -/// -/// Retrieves whether the union's current tag state has value -/// "explicitly_unlimited". -/// -/// @return Whether the union's current tag state has value -/// "explicitly_unlimited". -/// -- (BOOL)isExplicitlyUnlimited; - -/// -/// Retrieves whether the union's current tag state has value -/// "implicitly_limited". -/// -/// @return Whether the union's current tag state has value -/// "implicitly_limited". -/// -- (BOOL)isImplicitlyLimited; - -/// -/// Retrieves whether the union's current tag state has value -/// "implicitly_unlimited". -/// -/// @return Whether the union's current tag state has value -/// "implicitly_unlimited". -/// -- (BOOL)isImplicitlyUnlimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// union. -/// -@interface DBTEAMLOGExtendedVersionHistoryPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExtendedVersionHistoryPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExtendedVersionHistoryPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGExtendedVersionHistoryPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExtendedVersionHistoryPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExtendedVersionHistoryPolicy` -/// object. -/// -+ (DBTEAMLOGExtendedVersionHistoryPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatus.h deleted file mode 100644 index 7807fd8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatus.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupEligibilityStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupEligibilityStatus` union. -/// -/// External Drive Backup eligibility status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExternalDriveBackupEligibilityStatusTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExternalDriveBackupEligibilityStatusTag) { - /// (no description). - DBTEAMLOGExternalDriveBackupEligibilityStatusExceedLicenseCap, - - /// (no description). - DBTEAMLOGExternalDriveBackupEligibilityStatusSuccess, - - /// (no description). - DBTEAMLOGExternalDriveBackupEligibilityStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupEligibilityStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "exceed_license_cap". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExceedLicenseCap; - -/// -/// Initializes union class with tag state of "success". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "exceed_license_cap". -/// -/// @return Whether the union's current tag state has value -/// "exceed_license_cap". -/// -- (BOOL)isExceedLicenseCap; - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` union. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupEligibilityStatus` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupEligibilityStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupEligibilityStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatus` object. -/// -+ (DBTEAMLOGExternalDriveBackupEligibilityStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h deleted file mode 100644 index 14abded2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGExternalDriveBackupEligibilityStatus; -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupEligibilityStatusCheckedDetails` struct. -/// -/// Checked external drive backup eligibility status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSessionInfo; - -/// Current eligibility status of external drive backup. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupEligibilityStatus *status; - -/// Total number of valid external drive backup for all the team members. -@property (nonatomic, readonly) NSNumber *numberOfExternalDriveBackup; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param desktopDeviceSessionInfo Device's session logged information. -/// @param status Current eligibility status of external drive backup. -/// @param numberOfExternalDriveBackup Total number of valid external drive -/// backup for all the team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSessionInfo:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo - status:(DBTEAMLOGExternalDriveBackupEligibilityStatus *)status - numberOfExternalDriveBackup:(NSNumber *)numberOfExternalDriveBackup; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `ExternalDriveBackupEligibilityStatusCheckedDetails` struct. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails` object. -/// -+ (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h deleted file mode 100644 index ddbc91a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupEligibilityStatusCheckedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `ExternalDriveBackupEligibilityStatusCheckedType` struct. -/// -@interface DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType` object. -/// -+ (DBTEAMLOGExternalDriveBackupEligibilityStatusCheckedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicy.h deleted file mode 100644 index 31ace717..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicy.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicy` union. -/// -/// Policy for controlling team access to external drive backup feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExternalDriveBackupPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGExternalDriveBackupPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExternalDriveBackupPolicyTag) { - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyDefault_, - - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyDisabled, - - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyEnabled, - - /// (no description). - DBTEAMLOGExternalDriveBackupPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGExternalDriveBackupPolicy` union. -/// -@interface DBTEAMLOGExternalDriveBackupPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExternalDriveBackupPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalDriveBackupPolicy` object. -/// -+ (DBTEAMLOGExternalDriveBackupPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h deleted file mode 100644 index f037a122..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupPolicy; -@class DBTEAMLOGExternalDriveBackupPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicyChangedDetails` struct. -/// -/// Changed external drive backup policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New external drive backup policy. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicy *dNewValue; - -/// Previous external drive backup policy. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external drive backup policy. -/// @param previousValue Previous external drive backup policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGExternalDriveBackupPolicy *)dNewValue - previousValue:(DBTEAMLOGExternalDriveBackupPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedDetails` object. -/// -+ (DBTEAMLOGExternalDriveBackupPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedType.h deleted file mode 100644 index c9646088..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupPolicyChangedType` object. -/// -+ (DBTEAMLOGExternalDriveBackupPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatus.h deleted file mode 100644 index cac85267..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatus.h +++ /dev/null @@ -1,204 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupStatus` union. -/// -/// External Drive Backup status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGExternalDriveBackupStatusTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGExternalDriveBackupStatus` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGExternalDriveBackupStatusTag) { - /// (no description). - DBTEAMLOGExternalDriveBackupStatusBroken, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusCreated, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusCreatedOrBroken, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusDeleted, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusEmpty, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusUnknown, - - /// (no description). - DBTEAMLOGExternalDriveBackupStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "broken". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBroken; - -/// -/// Initializes union class with tag state of "created". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreated; - -/// -/// Initializes union class with tag state of "created_or_broken". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCreatedOrBroken; - -/// -/// Initializes union class with tag state of "deleted". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleted; - -/// -/// Initializes union class with tag state of "empty". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmpty; - -/// -/// Initializes union class with tag state of "unknown". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknown; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "broken". -/// -/// @return Whether the union's current tag state has value "broken". -/// -- (BOOL)isBroken; - -/// -/// Retrieves whether the union's current tag state has value "created". -/// -/// @return Whether the union's current tag state has value "created". -/// -- (BOOL)isCreated; - -/// -/// Retrieves whether the union's current tag state has value -/// "created_or_broken". -/// -/// @return Whether the union's current tag state has value "created_or_broken". -/// -- (BOOL)isCreatedOrBroken; - -/// -/// Retrieves whether the union's current tag state has value "deleted". -/// -/// @return Whether the union's current tag state has value "deleted". -/// -- (BOOL)isDeleted; - -/// -/// Retrieves whether the union's current tag state has value "empty". -/// -/// @return Whether the union's current tag state has value "empty". -/// -- (BOOL)isEmpty; - -/// -/// Retrieves whether the union's current tag state has value "unknown". -/// -/// @return Whether the union's current tag state has value "unknown". -/// -- (BOOL)isUnknown; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGExternalDriveBackupStatus` union. -/// -@interface DBTEAMLOGExternalDriveBackupStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExternalDriveBackupStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalDriveBackupStatus` object. -/// -+ (DBTEAMLOGExternalDriveBackupStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatusChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatusChangedDetails.h deleted file mode 100644 index d69b665d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatusChangedDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGExternalDriveBackupStatus; -@class DBTEAMLOGExternalDriveBackupStatusChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupStatusChangedDetails` struct. -/// -/// Modified external drive backup. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Device's session logged information. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSessionInfo; - -/// Previous status of this external drive backup. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatus *previousValue; - -/// Next status of this external drive backup. -@property (nonatomic, readonly) DBTEAMLOGExternalDriveBackupStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param desktopDeviceSessionInfo Device's session logged information. -/// @param previousValue Previous status of this external drive backup. -/// @param dNewValue Next status of this external drive backup. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSessionInfo:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSessionInfo - previousValue:(DBTEAMLOGExternalDriveBackupStatus *)previousValue - dNewValue:(DBTEAMLOGExternalDriveBackupStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupStatusChangedDetails` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupStatusChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupStatusChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupStatusChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedDetails` object. -/// -+ (DBTEAMLOGExternalDriveBackupStatusChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatusChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatusChangedType.h deleted file mode 100644 index c069df40..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalDriveBackupStatusChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalDriveBackupStatusChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupStatusChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalDriveBackupStatusChangedType` -/// struct. -/// -@interface DBTEAMLOGExternalDriveBackupStatusChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalDriveBackupStatusChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalDriveBackupStatusChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalDriveBackupStatusChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalDriveBackupStatusChangedType` object. -/// -+ (DBTEAMLOGExternalDriveBackupStatusChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingCreateReportDetails.h deleted file mode 100644 index 5dfa63b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingCreateReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingCreateReportDetails` struct. -/// -/// Created External sharing report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingCreateReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingCreateReportDetails` struct. -/// -@interface DBTEAMLOGExternalSharingCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalSharingCreateReportDetails` object. -/// -+ (DBTEAMLOGExternalSharingCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingCreateReportType.h deleted file mode 100644 index 697f6270..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingCreateReportType` struct. -/// -@interface DBTEAMLOGExternalSharingCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalSharingCreateReportType` -/// object. -/// -+ (DBTEAMLOGExternalSharingCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingReportFailedDetails.h deleted file mode 100644 index 20809c2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingReportFailedDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingReportFailedDetails` struct. -/// -/// Couldn't create External sharing report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingReportFailedDetails` struct. -/// -@interface DBTEAMLOGExternalSharingReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGExternalSharingReportFailedDetails` object. -/// -+ (DBTEAMLOGExternalSharingReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingReportFailedType.h deleted file mode 100644 index 35e497f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalSharingReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalSharingReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalSharingReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalSharingReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalSharingReportFailedType` struct. -/// -@interface DBTEAMLOGExternalSharingReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalSharingReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGExternalSharingReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalSharingReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalSharingReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalSharingReportFailedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalSharingReportFailedType` -/// object. -/// -+ (DBTEAMLOGExternalSharingReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalUserLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalUserLogInfo.h deleted file mode 100644 index 5264faae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGExternalUserLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalUserLogInfo; -@class DBTEAMLOGIdentifierType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalUserLogInfo` struct. -/// -/// A user without a Dropbox account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGExternalUserLogInfo : NSObject - -#pragma mark - Instance fields - -/// An external user identifier. -@property (nonatomic, readonly, copy) NSString *userIdentifier; - -/// Identifier type. -@property (nonatomic, readonly) DBTEAMLOGIdentifierType *identifierType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userIdentifier An external user identifier. -/// @param identifierType Identifier type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserIdentifier:(NSString *)userIdentifier - identifierType:(DBTEAMLOGIdentifierType *)identifierType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ExternalUserLogInfo` struct. -/// -@interface DBTEAMLOGExternalUserLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGExternalUserLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGExternalUserLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalUserLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGExternalUserLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGExternalUserLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGExternalUserLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGExternalUserLogInfo` object. -/// -+ (DBTEAMLOGExternalUserLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFailureDetailsLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFailureDetailsLogInfo.h deleted file mode 100644 index e95b76b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFailureDetailsLogInfo.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFailureDetailsLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FailureDetailsLogInfo` struct. -/// -/// Provides details about a failure -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFailureDetailsLogInfo : NSObject - -#pragma mark - Instance fields - -/// A user friendly explanation of the error. -@property (nonatomic, readonly, copy, nullable) NSString *userFriendlyMessage; - -/// A technical explanation of the error. This is relevant for some errors. -@property (nonatomic, readonly, copy, nullable) NSString *technicalErrorMessage; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userFriendlyMessage A user friendly explanation of the error. -/// @param technicalErrorMessage A technical explanation of the error. This is -/// relevant for some errors. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserFriendlyMessage:(nullable NSString *)userFriendlyMessage - technicalErrorMessage:(nullable NSString *)technicalErrorMessage; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FailureDetailsLogInfo` struct. -/// -@interface DBTEAMLOGFailureDetailsLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFailureDetailsLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFailureDetailsLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFailureDetailsLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFailureDetailsLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFailureDetailsLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFailureDetailsLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFailureDetailsLogInfo` object. -/// -+ (DBTEAMLOGFailureDetailsLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedAdminRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedAdminRole.h deleted file mode 100644 index 12f69f78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedAdminRole.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedAdminRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FedAdminRole` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFedAdminRole : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFedAdminRoleTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGFedAdminRole` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFedAdminRoleTag) { - /// (no description). - DBTEAMLOGFedAdminRoleEnterpriseAdmin, - - /// (no description). - DBTEAMLOGFedAdminRoleNotEnterpriseAdmin, - - /// (no description). - DBTEAMLOGFedAdminRoleOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFedAdminRoleTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enterprise_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseAdmin; - -/// -/// Initializes union class with tag state of "not_enterprise_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotEnterpriseAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_admin". -/// -/// @return Whether the union's current tag state has value "enterprise_admin". -/// -- (BOOL)isEnterpriseAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "not_enterprise_admin". -/// -/// @return Whether the union's current tag state has value -/// "not_enterprise_admin". -/// -- (BOOL)isNotEnterpriseAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFedAdminRole` union. -/// -@interface DBTEAMLOGFedAdminRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFedAdminRole` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFedAdminRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFedAdminRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFedAdminRole *)instance; - -/// -/// Deserializes `DBTEAMLOGFedAdminRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFedAdminRole` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFedAdminRole` object. -/// -+ (DBTEAMLOGFedAdminRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedExtraDetails.h deleted file mode 100644 index e00097c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedExtraDetails.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedExtraDetails; -@class DBTEAMLOGOrganizationDetails; -@class DBTEAMLOGTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FedExtraDetails` union. -/// -/// More details about the organization or team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFedExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFedExtraDetailsTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFedExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFedExtraDetailsTag) { - /// More details about the organization. - DBTEAMLOGFedExtraDetailsOrganization, - - /// More details about the team. - DBTEAMLOGFedExtraDetailsTeam, - - /// (no description). - DBTEAMLOGFedExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFedExtraDetailsTag tag; - -/// More details about the organization. @note Ensure the `isOrganization` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizationDetails *organization; - -/// More details about the team. @note Ensure the `isTeam` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGTeamDetails *team; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "organization". -/// -/// Description of the "organization" tag state: More details about the -/// organization. -/// -/// @param organization More details about the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganization:(DBTEAMLOGOrganizationDetails *)organization; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: More details about the team. -/// -/// @param team More details about the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(DBTEAMLOGTeamDetails *)team; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "organization". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organization` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "organization". -/// -- (BOOL)isOrganization; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `team` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFedExtraDetails` union. -/// -@interface DBTEAMLOGFedExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFedExtraDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFedExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFedExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFedExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFedExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFedExtraDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFedExtraDetails` object. -/// -+ (DBTEAMLOGFedExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedHandshakeAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedHandshakeAction.h deleted file mode 100644 index 6ed09ad7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFedHandshakeAction.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedHandshakeAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FedHandshakeAction` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFedHandshakeAction : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFedHandshakeActionTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFedHandshakeAction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFedHandshakeActionTag) { - /// (no description). - DBTEAMLOGFedHandshakeActionAcceptedInvite, - - /// (no description). - DBTEAMLOGFedHandshakeActionCanceledInvite, - - /// (no description). - DBTEAMLOGFedHandshakeActionInviteExpired, - - /// (no description). - DBTEAMLOGFedHandshakeActionInvited, - - /// (no description). - DBTEAMLOGFedHandshakeActionRejectedInvite, - - /// (no description). - DBTEAMLOGFedHandshakeActionRemovedTeam, - - /// (no description). - DBTEAMLOGFedHandshakeActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFedHandshakeActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "accepted_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAcceptedInvite; - -/// -/// Initializes union class with tag state of "canceled_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCanceledInvite; - -/// -/// Initializes union class with tag state of "invite_expired". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteExpired; - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "rejected_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRejectedInvite; - -/// -/// Initializes union class with tag state of "removed_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "accepted_invite". -/// -/// @return Whether the union's current tag state has value "accepted_invite". -/// -- (BOOL)isAcceptedInvite; - -/// -/// Retrieves whether the union's current tag state has value "canceled_invite". -/// -/// @return Whether the union's current tag state has value "canceled_invite". -/// -- (BOOL)isCanceledInvite; - -/// -/// Retrieves whether the union's current tag state has value "invite_expired". -/// -/// @return Whether the union's current tag state has value "invite_expired". -/// -- (BOOL)isInviteExpired; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "rejected_invite". -/// -/// @return Whether the union's current tag state has value "rejected_invite". -/// -- (BOOL)isRejectedInvite; - -/// -/// Retrieves whether the union's current tag state has value "removed_team". -/// -/// @return Whether the union's current tag state has value "removed_team". -/// -- (BOOL)isRemovedTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFedHandshakeAction` union. -/// -@interface DBTEAMLOGFedHandshakeActionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFedHandshakeAction` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFedHandshakeAction` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFedHandshakeAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFedHandshakeAction *)instance; - -/// -/// Deserializes `DBTEAMLOGFedHandshakeAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFedHandshakeAction` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFedHandshakeAction` object. -/// -+ (DBTEAMLOGFedHandshakeAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFederationStatusChangeAdditionalInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFederationStatusChangeAdditionalInfo.h deleted file mode 100644 index 1a83d56a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFederationStatusChangeAdditionalInfo.h +++ /dev/null @@ -1,199 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGConnectedTeamName; -@class DBTEAMLOGFederationStatusChangeAdditionalInfo; -@class DBTEAMLOGNonTrustedTeamDetails; -@class DBTEAMLOGOrganizationName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FederationStatusChangeAdditionalInfo` union. -/// -/// Additional information about the organization or connected team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFederationStatusChangeAdditionalInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFederationStatusChangeAdditionalInfoTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFederationStatusChangeAdditionalInfoTag) { - /// The name of the team. - DBTEAMLOGFederationStatusChangeAdditionalInfoConnectedTeamName, - - /// The email to which the request was sent. - DBTEAMLOGFederationStatusChangeAdditionalInfoNonTrustedTeamDetails, - - /// The name of the organization. - DBTEAMLOGFederationStatusChangeAdditionalInfoOrganizationName, - - /// (no description). - DBTEAMLOGFederationStatusChangeAdditionalInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFederationStatusChangeAdditionalInfoTag tag; - -/// The name of the team. @note Ensure the `isConnectedTeamName` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGConnectedTeamName *connectedTeamName; - -/// The email to which the request was sent. @note Ensure the -/// `isNonTrustedTeamDetails` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGNonTrustedTeamDetails *nonTrustedTeamDetails; - -/// The name of the organization. @note Ensure the `isOrganizationName` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGOrganizationName *organizationName; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "connected_team_name". -/// -/// Description of the "connected_team_name" tag state: The name of the team. -/// -/// @param connectedTeamName The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithConnectedTeamName:(DBTEAMLOGConnectedTeamName *)connectedTeamName; - -/// -/// Initializes union class with tag state of "non_trusted_team_details". -/// -/// Description of the "non_trusted_team_details" tag state: The email to which -/// the request was sent. -/// -/// @param nonTrustedTeamDetails The email to which the request was sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNonTrustedTeamDetails:(DBTEAMLOGNonTrustedTeamDetails *)nonTrustedTeamDetails; - -/// -/// Initializes union class with tag state of "organization_name". -/// -/// Description of the "organization_name" tag state: The name of the -/// organization. -/// -/// @param organizationName The name of the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganizationName:(DBTEAMLOGOrganizationName *)organizationName; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "connected_team_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `connectedTeamName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "connected_team_name". -/// -- (BOOL)isConnectedTeamName; - -/// -/// Retrieves whether the union's current tag state has value -/// "non_trusted_team_details". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `nonTrustedTeamDetails` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "non_trusted_team_details". -/// -- (BOOL)isNonTrustedTeamDetails; - -/// -/// Retrieves whether the union's current tag state has value -/// "organization_name". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `organizationName` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "organization_name". -/// -- (BOOL)isOrganizationName; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` union. -/// -@interface DBTEAMLOGFederationStatusChangeAdditionalInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFederationStatusChangeAdditionalInfo` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFederationStatusChangeAdditionalInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFederationStatusChangeAdditionalInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFederationStatusChangeAdditionalInfo` object. -/// -+ (DBTEAMLOGFederationStatusChangeAdditionalInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddCommentDetails.h deleted file mode 100644 index c9d7a074..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddCommentDetails` struct. -/// -/// Added file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddCommentDetails` struct. -/// -@interface DBTEAMLOGFileAddCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddCommentDetails` object. -/// -+ (DBTEAMLOGFileAddCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddCommentType.h deleted file mode 100644 index 623fedfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddCommentType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddCommentType` struct. -/// -@interface DBTEAMLOGFileAddCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddCommentType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddCommentType` object. -/// -+ (DBTEAMLOGFileAddCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddDetails.h deleted file mode 100644 index 6f6aa513..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddDetails` struct. -/// -/// Added files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddDetails` struct. -/// -@interface DBTEAMLOGFileAddDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddDetails` object. -/// -+ (DBTEAMLOGFileAddDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddFromAutomationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddFromAutomationDetails.h deleted file mode 100644 index 07da0438..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddFromAutomationDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddFromAutomationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddFromAutomationDetails` struct. -/// -/// Added files and/or folders from automation. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddFromAutomationDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddFromAutomationDetails` struct. -/// -@interface DBTEAMLOGFileAddFromAutomationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddFromAutomationDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddFromAutomationDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddFromAutomationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddFromAutomationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddFromAutomationDetails` -/// object. -/// -+ (DBTEAMLOGFileAddFromAutomationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddFromAutomationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddFromAutomationType.h deleted file mode 100644 index 9c71353a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddFromAutomationType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddFromAutomationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddFromAutomationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddFromAutomationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddFromAutomationType` struct. -/// -@interface DBTEAMLOGFileAddFromAutomationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddFromAutomationType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddFromAutomationType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddFromAutomationType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddFromAutomationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddFromAutomationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddFromAutomationType` object. -/// -+ (DBTEAMLOGFileAddFromAutomationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddType.h deleted file mode 100644 index 92cf465e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileAddType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileAddType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileAddType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileAddType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileAddType` struct. -/// -@interface DBTEAMLOGFileAddTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileAddType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileAddType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileAddType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileAddType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileAddType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileAddType` object. -/// -+ (DBTEAMLOGFileAddType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileChangeCommentSubscriptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileChangeCommentSubscriptionDetails.h deleted file mode 100644 index 273d21c5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileChangeCommentSubscriptionDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileChangeCommentSubscriptionDetails; -@class DBTEAMLOGFileCommentNotificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileChangeCommentSubscriptionDetails` struct. -/// -/// Subscribed to or unsubscribed from comment notifications for file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionDetails : NSObject - -#pragma mark - Instance fields - -/// New file comment subscription. -@property (nonatomic, readonly) DBTEAMLOGFileCommentNotificationPolicy *dNewValue; - -/// Previous file comment subscription. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileCommentNotificationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file comment subscription. -/// @param previousValue Previous file comment subscription. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentNotificationPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGFileCommentNotificationPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New file comment subscription. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentNotificationPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileChangeCommentSubscriptionDetails` -/// struct. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileChangeCommentSubscriptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileChangeCommentSubscriptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileChangeCommentSubscriptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionDetails` object. -/// -+ (DBTEAMLOGFileChangeCommentSubscriptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileChangeCommentSubscriptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileChangeCommentSubscriptionType.h deleted file mode 100644 index 3ca72c0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileChangeCommentSubscriptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileChangeCommentSubscriptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileChangeCommentSubscriptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileChangeCommentSubscriptionType` struct. -/// -@interface DBTEAMLOGFileChangeCommentSubscriptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileChangeCommentSubscriptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileChangeCommentSubscriptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileChangeCommentSubscriptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileChangeCommentSubscriptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileChangeCommentSubscriptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileChangeCommentSubscriptionType` -/// object. -/// -+ (DBTEAMLOGFileChangeCommentSubscriptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentNotificationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentNotificationPolicy.h deleted file mode 100644 index 93328f58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentNotificationPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentNotificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentNotificationPolicy` union. -/// -/// Enable or disable file comments notifications -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentNotificationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileCommentNotificationPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGFileCommentNotificationPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileCommentNotificationPolicyTag) { - /// (no description). - DBTEAMLOGFileCommentNotificationPolicyDisabled, - - /// (no description). - DBTEAMLOGFileCommentNotificationPolicyEnabled, - - /// (no description). - DBTEAMLOGFileCommentNotificationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileCommentNotificationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileCommentNotificationPolicy` -/// union. -/// -@interface DBTEAMLOGFileCommentNotificationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentNotificationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCommentNotificationPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentNotificationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentNotificationPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentNotificationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentNotificationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentNotificationPolicy` -/// object. -/// -+ (DBTEAMLOGFileCommentNotificationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsChangePolicyDetails.h deleted file mode 100644 index 675f6d38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentsChangePolicyDetails; -@class DBTEAMLOGFileCommentsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentsChangePolicyDetails` struct. -/// -/// Enabled/disabled commenting on team files. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New commenting on team files policy. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsPolicy *dNewValue; - -/// Previous commenting on team files policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileCommentsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New commenting on team files policy. -/// @param previousValue Previous commenting on team files policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGFileCommentsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New commenting on team files policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileCommentsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCommentsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGFileCommentsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileCommentsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentsChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGFileCommentsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsChangePolicyType.h deleted file mode 100644 index 39e95736..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCommentsChangePolicyType` struct. -/// -@interface DBTEAMLOGFileCommentsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentsChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCommentsChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGFileCommentsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsPolicy.h deleted file mode 100644 index 74705e1b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCommentsPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCommentsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCommentsPolicy` union. -/// -/// File comments policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCommentsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileCommentsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFileCommentsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileCommentsPolicyTag) { - /// (no description). - DBTEAMLOGFileCommentsPolicyDisabled, - - /// (no description). - DBTEAMLOGFileCommentsPolicyEnabled, - - /// (no description). - DBTEAMLOGFileCommentsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileCommentsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileCommentsPolicy` union. -/// -@interface DBTEAMLOGFileCommentsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCommentsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCommentsPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCommentsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCommentsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCommentsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCommentsPolicy` object. -/// -+ (DBTEAMLOGFileCommentsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCopyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCopyDetails.h deleted file mode 100644 index 2656983a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCopyDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCopyDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCopyDetails` struct. -/// -/// Copied files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCopyDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCopyDetails` struct. -/// -@interface DBTEAMLOGFileCopyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCopyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCopyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCopyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCopyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCopyDetails` object. -/// -+ (DBTEAMLOGFileCopyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCopyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCopyType.h deleted file mode 100644 index b2b105d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileCopyType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileCopyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileCopyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileCopyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileCopyType` struct. -/// -@interface DBTEAMLOGFileCopyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileCopyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileCopyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileCopyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileCopyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileCopyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileCopyType` object. -/// -+ (DBTEAMLOGFileCopyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteCommentDetails.h deleted file mode 100644 index 941060e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteCommentDetails` struct. -/// -/// Deleted file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteCommentDetails` struct. -/// -@interface DBTEAMLOGFileDeleteCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteCommentDetails` object. -/// -+ (DBTEAMLOGFileDeleteCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteCommentType.h deleted file mode 100644 index d1969b0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteCommentType` struct. -/// -@interface DBTEAMLOGFileDeleteCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteCommentType` object. -/// -+ (DBTEAMLOGFileDeleteCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteDetails.h deleted file mode 100644 index 3196f113..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteDetails` struct. -/// -/// Deleted files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteDetails` struct. -/// -@interface DBTEAMLOGFileDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteDetails` object. -/// -+ (DBTEAMLOGFileDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteType.h deleted file mode 100644 index ba21d007..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDeleteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDeleteType` struct. -/// -@interface DBTEAMLOGFileDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDeleteType` object. -/// -+ (DBTEAMLOGFileDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDownloadDetails.h deleted file mode 100644 index 5343cd5e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDownloadDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDownloadDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDownloadDetails` struct. -/// -/// Downloaded files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDownloadDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDownloadDetails` struct. -/// -@interface DBTEAMLOGFileDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDownloadDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDownloadDetails` object. -/// -+ (DBTEAMLOGFileDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDownloadType.h deleted file mode 100644 index 3d8d7bd1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileDownloadType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileDownloadType` struct. -/// -@interface DBTEAMLOGFileDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileDownloadType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileDownloadType` object. -/// -+ (DBTEAMLOGFileDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditCommentDetails.h deleted file mode 100644 index c780666e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditCommentDetails` struct. -/// -/// Edited file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -/// Previous comment text. -@property (nonatomic, readonly, copy) NSString *previousCommentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousCommentText Previous comment text. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousCommentText:(NSString *)previousCommentText - commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param previousCommentText Previous comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousCommentText:(NSString *)previousCommentText; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditCommentDetails` struct. -/// -@interface DBTEAMLOGFileEditCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditCommentDetails` object. -/// -+ (DBTEAMLOGFileEditCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditCommentType.h deleted file mode 100644 index 26d8978a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditCommentType` struct. -/// -@interface DBTEAMLOGFileEditCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditCommentType` object. -/// -+ (DBTEAMLOGFileEditCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditDetails.h deleted file mode 100644 index 6ac0a440..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditDetails` struct. -/// -/// Edited files. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditDetails` struct. -/// -@interface DBTEAMLOGFileEditDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditDetails` object. -/// -+ (DBTEAMLOGFileEditDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditType.h deleted file mode 100644 index a2452430..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileEditType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileEditType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileEditType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileEditType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileEditType` struct. -/// -@interface DBTEAMLOGFileEditTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileEditType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileEditType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileEditType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileEditType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileEditType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileEditType` object. -/// -+ (DBTEAMLOGFileEditType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileGetCopyReferenceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileGetCopyReferenceDetails.h deleted file mode 100644 index 9d611320..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileGetCopyReferenceDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileGetCopyReferenceDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileGetCopyReferenceDetails` struct. -/// -/// Created copy reference to file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileGetCopyReferenceDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileGetCopyReferenceDetails` struct. -/// -@interface DBTEAMLOGFileGetCopyReferenceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileGetCopyReferenceDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileGetCopyReferenceDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileGetCopyReferenceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileGetCopyReferenceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileGetCopyReferenceDetails` -/// object. -/// -+ (DBTEAMLOGFileGetCopyReferenceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileGetCopyReferenceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileGetCopyReferenceType.h deleted file mode 100644 index 4e89bc62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileGetCopyReferenceType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileGetCopyReferenceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileGetCopyReferenceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileGetCopyReferenceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileGetCopyReferenceType` struct. -/// -@interface DBTEAMLOGFileGetCopyReferenceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileGetCopyReferenceType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileGetCopyReferenceType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileGetCopyReferenceType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileGetCopyReferenceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileGetCopyReferenceType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileGetCopyReferenceType` object. -/// -+ (DBTEAMLOGFileGetCopyReferenceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLikeCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLikeCommentDetails.h deleted file mode 100644 index ce6388d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLikeCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLikeCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLikeCommentDetails` struct. -/// -/// Liked file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLikeCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLikeCommentDetails` struct. -/// -@interface DBTEAMLOGFileLikeCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLikeCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLikeCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLikeCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLikeCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLikeCommentDetails` object. -/// -+ (DBTEAMLOGFileLikeCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLikeCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLikeCommentType.h deleted file mode 100644 index bfe7eca3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLikeCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLikeCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLikeCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLikeCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLikeCommentType` struct. -/// -@interface DBTEAMLOGFileLikeCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLikeCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLikeCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLikeCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLikeCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLikeCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLikeCommentType` object. -/// -+ (DBTEAMLOGFileLikeCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingLockStatusChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingLockStatusChangedDetails.h deleted file mode 100644 index 76619202..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingLockStatusChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingLockStatusChangedDetails; -@class DBTEAMLOGLockStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingLockStatusChangedDetails` struct. -/// -/// Locked/unlocked editing for a file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous lock status of the file. -@property (nonatomic, readonly) DBTEAMLOGLockStatus *previousValue; - -/// New lock status of the file. -@property (nonatomic, readonly) DBTEAMLOGLockStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous lock status of the file. -/// @param dNewValue New lock status of the file. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGLockStatus *)previousValue dNewValue:(DBTEAMLOGLockStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingLockStatusChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingLockStatusChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingLockStatusChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingLockStatusChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileLockingLockStatusChangedDetails` object. -/// -+ (DBTEAMLOGFileLockingLockStatusChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingLockStatusChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingLockStatusChangedType.h deleted file mode 100644 index fc5657ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingLockStatusChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingLockStatusChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingLockStatusChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingLockStatusChangedType` struct. -/// -@interface DBTEAMLOGFileLockingLockStatusChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingLockStatusChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileLockingLockStatusChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingLockStatusChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingLockStatusChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingLockStatusChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLockingLockStatusChangedType` -/// object. -/// -+ (DBTEAMLOGFileLockingLockStatusChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingPolicyChangedDetails.h deleted file mode 100644 index 075b3c8e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingPolicyChangedDetails; -@class DBTEAMPOLICIESFileLockingPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingPolicyChangedDetails` struct. -/// -/// Changed file locking policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New file locking policy. -@property (nonatomic, readonly) DBTEAMPOLICIESFileLockingPolicyState *dNewValue; - -/// Previous file locking policy. -@property (nonatomic, readonly) DBTEAMPOLICIESFileLockingPolicyState *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file locking policy. -/// @param previousValue Previous file locking policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESFileLockingPolicyState *)dNewValue - previousValue:(DBTEAMPOLICIESFileLockingPolicyState *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGFileLockingPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileLockingPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLockingPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGFileLockingPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingPolicyChangedType.h deleted file mode 100644 index dcffc838..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLockingPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileLockingPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLockingPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLockingPolicyChangedType` struct. -/// -@interface DBTEAMLOGFileLockingPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLockingPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLockingPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLockingPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLockingPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLockingPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLockingPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGFileLockingPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLogInfo.h deleted file mode 100644 index ff4c7166..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileLogInfo.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGFileOrFolderLogInfo.h" - -@class DBTEAMLOGFileLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLogInfo` struct. -/// -/// File's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileLogInfo : DBTEAMLOGFileOrFolderLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path relative to event context. -/// @param displayName Display name. -/// @param fileId Unique ID. -/// @param fileSize File or folder size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path - displayName:(nullable NSString *)displayName - fileId:(nullable NSString *)fileId - fileSize:(nullable NSNumber *)fileSize; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path relative to event context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileLogInfo` struct. -/// -@interface DBTEAMLOGFileLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFileLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileLogInfo` object. -/// -+ (DBTEAMLOGFileLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileMoveDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileMoveDetails.h deleted file mode 100644 index 0864b6bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileMoveDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileMoveDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMoveDetails` struct. -/// -/// Moved files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileMoveDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMoveDetails` struct. -/// -@interface DBTEAMLOGFileMoveDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileMoveDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileMoveDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileMoveDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileMoveDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileMoveDetails` object. -/// -+ (DBTEAMLOGFileMoveDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileMoveType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileMoveType.h deleted file mode 100644 index 99446c02..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileMoveType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileMoveType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileMoveType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileMoveType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileMoveType` struct. -/// -@interface DBTEAMLOGFileMoveTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileMoveType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileMoveType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileMoveType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileMoveType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileMoveType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileMoveType` object. -/// -+ (DBTEAMLOGFileMoveType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileOrFolderLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileOrFolderLogInfo.h deleted file mode 100644 index e40bd22b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileOrFolderLogInfo.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileOrFolderLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileOrFolderLogInfo` struct. -/// -/// Generic information relevant both for files and folders -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileOrFolderLogInfo : NSObject - -#pragma mark - Instance fields - -/// Path relative to event context. -@property (nonatomic, readonly) DBTEAMLOGPathLogInfo *path; - -/// Display name. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// Unique ID. -@property (nonatomic, readonly, copy, nullable) NSString *fileId; - -/// File or folder size in bytes. -@property (nonatomic, readonly, nullable) NSNumber *fileSize; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path relative to event context. -/// @param displayName Display name. -/// @param fileId Unique ID. -/// @param fileSize File or folder size in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path - displayName:(nullable NSString *)displayName - fileId:(nullable NSString *)fileId - fileSize:(nullable NSNumber *)fileSize; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path relative to event context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileOrFolderLogInfo` struct. -/// -@interface DBTEAMLOGFileOrFolderLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileOrFolderLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileOrFolderLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileOrFolderLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileOrFolderLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFileOrFolderLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileOrFolderLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileOrFolderLogInfo` object. -/// -+ (DBTEAMLOGFileOrFolderLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePermanentlyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePermanentlyDeleteDetails.h deleted file mode 100644 index 3ec8eac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePermanentlyDeleteDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePermanentlyDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePermanentlyDeleteDetails` struct. -/// -/// Permanently deleted files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePermanentlyDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePermanentlyDeleteDetails` struct. -/// -@interface DBTEAMLOGFilePermanentlyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePermanentlyDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePermanentlyDeleteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePermanentlyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePermanentlyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePermanentlyDeleteDetails` -/// object. -/// -+ (DBTEAMLOGFilePermanentlyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePermanentlyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePermanentlyDeleteType.h deleted file mode 100644 index 7298bfa5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePermanentlyDeleteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePermanentlyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePermanentlyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePermanentlyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePermanentlyDeleteType` struct. -/// -@interface DBTEAMLOGFilePermanentlyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePermanentlyDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePermanentlyDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePermanentlyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePermanentlyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePermanentlyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePermanentlyDeleteType` object. -/// -+ (DBTEAMLOGFilePermanentlyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePreviewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePreviewDetails.h deleted file mode 100644 index dc75b7d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePreviewDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePreviewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePreviewDetails` struct. -/// -/// Previewed files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePreviewDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePreviewDetails` struct. -/// -@interface DBTEAMLOGFilePreviewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePreviewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePreviewDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePreviewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePreviewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePreviewDetails` object. -/// -+ (DBTEAMLOGFilePreviewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePreviewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePreviewType.h deleted file mode 100644 index a54ec3c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFilePreviewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFilePreviewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FilePreviewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFilePreviewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FilePreviewType` struct. -/// -@interface DBTEAMLOGFilePreviewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFilePreviewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFilePreviewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFilePreviewType *)instance; - -/// -/// Deserializes `DBTEAMLOGFilePreviewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFilePreviewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFilePreviewType` object. -/// -+ (DBTEAMLOGFilePreviewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h deleted file mode 100644 index d5d2307d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileProviderMigrationPolicyChangedDetails; -@class DBTEAMPOLICIESFileProviderMigrationPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileProviderMigrationPolicyChangedDetails` struct. -/// -/// Changed File Provider Migration policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMPOLICIESFileProviderMigrationPolicyState *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMPOLICIESFileProviderMigrationPolicyState *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESFileProviderMigrationPolicyState *)dNewValue - previousValue:(DBTEAMPOLICIESFileProviderMigrationPolicyState *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileProviderMigrationPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileProviderMigrationPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedDetails` object. -/// -+ (DBTEAMLOGFileProviderMigrationPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedType.h deleted file mode 100644 index fba0b6dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileProviderMigrationPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileProviderMigrationPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileProviderMigrationPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileProviderMigrationPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGFileProviderMigrationPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileProviderMigrationPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileProviderMigrationPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileProviderMigrationPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileProviderMigrationPolicyChangedType` object. -/// -+ (DBTEAMLOGFileProviderMigrationPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRenameDetails.h deleted file mode 100644 index 13316a3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRenameDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRenameDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRenameDetails` struct. -/// -/// Renamed files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRenameDetails` struct. -/// -@interface DBTEAMLOGFileRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRenameDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRenameDetails` object. -/// -+ (DBTEAMLOGFileRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRenameType.h deleted file mode 100644 index 4ac7f81f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRenameType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRenameType` struct. -/// -@interface DBTEAMLOGFileRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRenameType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRenameType` object. -/// -+ (DBTEAMLOGFileRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestChangeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestChangeDetails.h deleted file mode 100644 index fcb858e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestChangeDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestChangeDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestChangeDetails` struct. -/// -/// Changed file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestChangeDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// Previous file request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *previousDetails; - -/// New file request details. -@property (nonatomic, readonly) DBTEAMLOGFileRequestDetails *dNewDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewDetails New file request details. -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param previousDetails Previous file request details. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewDetails:(DBTEAMLOGFileRequestDetails *)dNewDetails - fileRequestId:(nullable NSString *)fileRequestId - previousDetails:(nullable DBTEAMLOGFileRequestDetails *)previousDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewDetails New file request details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewDetails:(DBTEAMLOGFileRequestDetails *)dNewDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestChangeDetails` struct. -/// -@interface DBTEAMLOGFileRequestChangeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestChangeDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestChangeDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestChangeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestChangeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestChangeDetails` object. -/// -+ (DBTEAMLOGFileRequestChangeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestChangeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestChangeType.h deleted file mode 100644 index e83e5e59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestChangeType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestChangeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestChangeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestChangeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestChangeType` struct. -/// -@interface DBTEAMLOGFileRequestChangeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestChangeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestChangeType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestChangeType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestChangeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestChangeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestChangeType` object. -/// -+ (DBTEAMLOGFileRequestChangeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCloseDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCloseDetails.h deleted file mode 100644 index 4dd7d132..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCloseDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCloseDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCloseDetails` struct. -/// -/// Closed file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCloseDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// Previous file request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *previousDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param previousDetails Previous file request details. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestId:(nullable NSString *)fileRequestId - previousDetails:(nullable DBTEAMLOGFileRequestDetails *)previousDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCloseDetails` struct. -/// -@interface DBTEAMLOGFileRequestCloseDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCloseDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCloseDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCloseDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCloseDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCloseDetails` object. -/// -+ (DBTEAMLOGFileRequestCloseDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCloseType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCloseType.h deleted file mode 100644 index c541fe5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCloseType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCloseType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCloseType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCloseType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCloseType` struct. -/// -@interface DBTEAMLOGFileRequestCloseTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCloseType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCloseType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCloseType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCloseType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCloseType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCloseType` object. -/// -+ (DBTEAMLOGFileRequestCloseType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCreateDetails.h deleted file mode 100644 index 42c13e60..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCreateDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCreateDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCreateDetails` struct. -/// -/// Created file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCreateDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// File request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *requestDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param requestDetails File request details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestId:(nullable NSString *)fileRequestId - requestDetails:(nullable DBTEAMLOGFileRequestDetails *)requestDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCreateDetails` struct. -/// -@interface DBTEAMLOGFileRequestCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCreateDetails` object. -/// -+ (DBTEAMLOGFileRequestCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCreateType.h deleted file mode 100644 index 622289ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestCreateType` struct. -/// -@interface DBTEAMLOGFileRequestCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestCreateType` object. -/// -+ (DBTEAMLOGFileRequestCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeadline.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeadline.h deleted file mode 100644 index 747ff08f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeadline.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeadline; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeadline` struct. -/// -/// File request deadline -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDeadline : NSObject - -#pragma mark - Instance fields - -/// The deadline for this file request. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) NSDate *deadline; - -/// If set, allow uploads after the deadline has passed. -@property (nonatomic, readonly, copy, nullable) NSString *allowLateUploads; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deadline The deadline for this file request. Might be missing due to -/// historical data gap. -/// @param allowLateUploads If set, allow uploads after the deadline has passed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeadline:(nullable NSDate *)deadline allowLateUploads:(nullable NSString *)allowLateUploads; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeadline` struct. -/// -@interface DBTEAMLOGFileRequestDeadlineSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDeadline` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDeadline` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeadline` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDeadline *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDeadline` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeadline` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDeadline` object. -/// -+ (DBTEAMLOGFileRequestDeadline *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeleteDetails.h deleted file mode 100644 index 5a8f7dfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeleteDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeleteDetails; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeleteDetails` struct. -/// -/// Delete file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// Previous file request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *previousDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param previousDetails Previous file request details. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileRequestId:(nullable NSString *)fileRequestId - previousDetails:(nullable DBTEAMLOGFileRequestDetails *)previousDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeleteDetails` struct. -/// -@interface DBTEAMLOGFileRequestDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDeleteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDeleteDetails` object. -/// -+ (DBTEAMLOGFileRequestDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeleteType.h deleted file mode 100644 index 547f4c7d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDeleteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDeleteType` struct. -/// -@interface DBTEAMLOGFileRequestDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDeleteType` object. -/// -+ (DBTEAMLOGFileRequestDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDetails.h deleted file mode 100644 index ff02c510..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDeadline; -@class DBTEAMLOGFileRequestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestDetails` struct. -/// -/// File request details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestDetails : NSObject - -#pragma mark - Instance fields - -/// Asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *assetIndex; - -/// File request deadline. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDeadline *deadline; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param assetIndex Asset position in the Assets list. -/// @param deadline File request deadline. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAssetIndex:(NSNumber *)assetIndex deadline:(nullable DBTEAMLOGFileRequestDeadline *)deadline; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param assetIndex Asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAssetIndex:(NSNumber *)assetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestDetails` struct. -/// -@interface DBTEAMLOGFileRequestDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestDetails` object. -/// -+ (DBTEAMLOGFileRequestDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestReceiveFileDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestReceiveFileDetails.h deleted file mode 100644 index a324a417..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestReceiveFileDetails.h +++ /dev/null @@ -1,112 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestDetails; -@class DBTEAMLOGFileRequestReceiveFileDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestReceiveFileDetails` struct. -/// -/// Received files for file request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestReceiveFileDetails : NSObject - -#pragma mark - Instance fields - -/// File request id. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *fileRequestId; - -/// File request details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestDetails *fileRequestDetails; - -/// Submitted file names. -@property (nonatomic, readonly) NSArray *submittedFileNames; - -/// The name as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *submitterName; - -/// The email as provided by the submitter. -@property (nonatomic, readonly, copy, nullable) NSString *submitterEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param submittedFileNames Submitted file names. -/// @param fileRequestId File request id. Might be missing due to historical -/// data gap. -/// @param fileRequestDetails File request details. Might be missing due to -/// historical data gap. -/// @param submitterName The name as provided by the submitter. -/// @param submitterEmail The email as provided by the submitter. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubmittedFileNames:(NSArray *)submittedFileNames - fileRequestId:(nullable NSString *)fileRequestId - fileRequestDetails:(nullable DBTEAMLOGFileRequestDetails *)fileRequestDetails - submitterName:(nullable NSString *)submitterName - submitterEmail:(nullable NSString *)submitterEmail; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param submittedFileNames Submitted file names. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSubmittedFileNames:(NSArray *)submittedFileNames; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestReceiveFileDetails` struct. -/// -@interface DBTEAMLOGFileRequestReceiveFileDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestReceiveFileDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestReceiveFileDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestReceiveFileDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestReceiveFileDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestReceiveFileDetails` -/// object. -/// -+ (DBTEAMLOGFileRequestReceiveFileDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestReceiveFileType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestReceiveFileType.h deleted file mode 100644 index 9cb0e662..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestReceiveFileType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestReceiveFileType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestReceiveFileType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestReceiveFileType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestReceiveFileType` struct. -/// -@interface DBTEAMLOGFileRequestReceiveFileTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestReceiveFileType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestReceiveFileType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestReceiveFileType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestReceiveFileType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestReceiveFileType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestReceiveFileType` -/// object. -/// -+ (DBTEAMLOGFileRequestReceiveFileType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsChangePolicyDetails.h deleted file mode 100644 index b1659867..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsChangePolicyDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsChangePolicyDetails; -@class DBTEAMLOGFileRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsChangePolicyDetails` struct. -/// -/// Enabled/disabled file requests. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New file requests policy. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsPolicy *dNewValue; - -/// Previous file requests policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGFileRequestsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file requests policy. -/// @param previousValue Previous file requests policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileRequestsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGFileRequestsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New file requests policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileRequestsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGFileRequestsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGFileRequestsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsChangePolicyType.h deleted file mode 100644 index ee2e90fb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsChangePolicyType` struct. -/// -@interface DBTEAMLOGFileRequestsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestsChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGFileRequestsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsEnabledDetails.h deleted file mode 100644 index 8e67a011..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsEnabledDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsEnabledDetails` struct. -/// -/// Enabled file request emails for everyone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsEmailsEnabledDetails` struct. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsEnabledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsEmailsEnabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsEnabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsEmailsEnabledDetails` -/// object. -/// -+ (DBTEAMLOGFileRequestsEmailsEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsEnabledType.h deleted file mode 100644 index a102fd78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsEnabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsEmailsEnabledType` struct. -/// -@interface DBTEAMLOGFileRequestsEmailsEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsEnabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestsEmailsEnabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsEnabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsEnabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsEmailsEnabledType` -/// object. -/// -+ (DBTEAMLOGFileRequestsEmailsEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h deleted file mode 100644 index 3a3c26d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsRestrictedToTeamOnlyDetails` struct. -/// -/// Enabled file request emails for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `FileRequestsEmailsRestrictedToTeamOnlyDetails` struct. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails` object. -/// -+ (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h deleted file mode 100644 index f1b599d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsEmailsRestrictedToTeamOnlyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRequestsEmailsRestrictedToTeamOnlyType` -/// struct. -/// -@interface DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType` object. -/// -+ (DBTEAMLOGFileRequestsEmailsRestrictedToTeamOnlyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsPolicy.h deleted file mode 100644 index 67d779fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRequestsPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRequestsPolicy` union. -/// -/// File requests policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRequestsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileRequestsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFileRequestsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileRequestsPolicyTag) { - /// (no description). - DBTEAMLOGFileRequestsPolicyDisabled, - - /// (no description). - DBTEAMLOGFileRequestsPolicyEnabled, - - /// (no description). - DBTEAMLOGFileRequestsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileRequestsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileRequestsPolicy` union. -/// -@interface DBTEAMLOGFileRequestsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRequestsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRequestsPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRequestsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRequestsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRequestsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRequestsPolicy` object. -/// -+ (DBTEAMLOGFileRequestsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileResolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileResolveCommentDetails.h deleted file mode 100644 index 057e7d67..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileResolveCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileResolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileResolveCommentDetails` struct. -/// -/// Resolved file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileResolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileResolveCommentDetails` struct. -/// -@interface DBTEAMLOGFileResolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileResolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileResolveCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileResolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileResolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileResolveCommentDetails` object. -/// -+ (DBTEAMLOGFileResolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileResolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileResolveCommentType.h deleted file mode 100644 index 6b642853..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileResolveCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileResolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileResolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileResolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileResolveCommentType` struct. -/// -@interface DBTEAMLOGFileResolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileResolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileResolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileResolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileResolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileResolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileResolveCommentType` object. -/// -+ (DBTEAMLOGFileResolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRestoreDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRestoreDetails.h deleted file mode 100644 index e1c2a90f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRestoreDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRestoreDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRestoreDetails` struct. -/// -/// Restored deleted files and/or folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRestoreDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRestoreDetails` struct. -/// -@interface DBTEAMLOGFileRestoreDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRestoreDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRestoreDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRestoreDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRestoreDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRestoreDetails` object. -/// -+ (DBTEAMLOGFileRestoreDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRestoreType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRestoreType.h deleted file mode 100644 index c3da21d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRestoreType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRestoreType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRestoreType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRestoreType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRestoreType` struct. -/// -@interface DBTEAMLOGFileRestoreTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRestoreType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRestoreType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRestoreType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRestoreType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRestoreType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRestoreType` object. -/// -+ (DBTEAMLOGFileRestoreType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRevertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRevertDetails.h deleted file mode 100644 index 1d0956ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRevertDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRevertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRevertDetails` struct. -/// -/// Reverted files to previous version. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRevertDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRevertDetails` struct. -/// -@interface DBTEAMLOGFileRevertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRevertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRevertDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRevertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRevertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRevertDetails` object. -/// -+ (DBTEAMLOGFileRevertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRevertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRevertType.h deleted file mode 100644 index 13d3c90b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRevertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRevertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRevertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRevertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRevertType` struct. -/// -@interface DBTEAMLOGFileRevertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRevertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRevertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRevertType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRevertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRevertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRevertType` object. -/// -+ (DBTEAMLOGFileRevertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRollbackChangesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRollbackChangesDetails.h deleted file mode 100644 index bd10524f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRollbackChangesDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRollbackChangesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRollbackChangesDetails` struct. -/// -/// Rolled back file actions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRollbackChangesDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRollbackChangesDetails` struct. -/// -@interface DBTEAMLOGFileRollbackChangesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRollbackChangesDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRollbackChangesDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRollbackChangesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRollbackChangesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRollbackChangesDetails` -/// object. -/// -+ (DBTEAMLOGFileRollbackChangesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRollbackChangesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRollbackChangesType.h deleted file mode 100644 index 0015f663..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileRollbackChangesType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileRollbackChangesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileRollbackChangesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileRollbackChangesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileRollbackChangesType` struct. -/// -@interface DBTEAMLOGFileRollbackChangesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileRollbackChangesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileRollbackChangesType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileRollbackChangesType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileRollbackChangesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileRollbackChangesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileRollbackChangesType` object. -/// -+ (DBTEAMLOGFileRollbackChangesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileSaveCopyReferenceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileSaveCopyReferenceDetails.h deleted file mode 100644 index 092e8091..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileSaveCopyReferenceDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileSaveCopyReferenceDetails; -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileSaveCopyReferenceDetails` struct. -/// -/// Saved file/folder using copy reference. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileSaveCopyReferenceDetails : NSObject - -#pragma mark - Instance fields - -/// Relocate action details. -@property (nonatomic, readonly) NSArray *relocateActionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param relocateActionDetails Relocate action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRelocateActionDetails: - (NSArray *)relocateActionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileSaveCopyReferenceDetails` struct. -/// -@interface DBTEAMLOGFileSaveCopyReferenceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileSaveCopyReferenceDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileSaveCopyReferenceDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileSaveCopyReferenceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileSaveCopyReferenceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileSaveCopyReferenceDetails` -/// object. -/// -+ (DBTEAMLOGFileSaveCopyReferenceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileSaveCopyReferenceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileSaveCopyReferenceType.h deleted file mode 100644 index 9e937693..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileSaveCopyReferenceType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileSaveCopyReferenceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileSaveCopyReferenceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileSaveCopyReferenceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileSaveCopyReferenceType` struct. -/// -@interface DBTEAMLOGFileSaveCopyReferenceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileSaveCopyReferenceType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileSaveCopyReferenceType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileSaveCopyReferenceType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileSaveCopyReferenceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileSaveCopyReferenceType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileSaveCopyReferenceType` object. -/// -+ (DBTEAMLOGFileSaveCopyReferenceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersFileAddDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersFileAddDetails.h deleted file mode 100644 index 23395284..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersFileAddDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersFileAddDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersFileAddDetails` struct. -/// -/// Transfer files added. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersFileAddDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersFileAddDetails` struct. -/// -@interface DBTEAMLOGFileTransfersFileAddDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersFileAddDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersFileAddDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersFileAddDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersFileAddDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersFileAddDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersFileAddDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersFileAddType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersFileAddType.h deleted file mode 100644 index 2e0c86dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersFileAddType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersFileAddType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersFileAddType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersFileAddType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersFileAddType` struct. -/// -@interface DBTEAMLOGFileTransfersFileAddTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersFileAddType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersFileAddType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersFileAddType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersFileAddType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersFileAddType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersFileAddType` object. -/// -+ (DBTEAMLOGFileTransfersFileAddType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicy.h deleted file mode 100644 index 5bf004be..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersPolicy` union. -/// -/// File transfers policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFileTransfersPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGFileTransfersPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFileTransfersPolicyTag) { - /// (no description). - DBTEAMLOGFileTransfersPolicyDisabled, - - /// (no description). - DBTEAMLOGFileTransfersPolicyEnabled, - - /// (no description). - DBTEAMLOGFileTransfersPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFileTransfersPolicy` union. -/// -@interface DBTEAMLOGFileTransfersPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersPolicy` object. -/// -+ (DBTEAMLOGFileTransfersPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicyChangedDetails.h deleted file mode 100644 index 426f02ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersPolicy; -@class DBTEAMLOGFileTransfersPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersPolicyChangedDetails` struct. -/// -/// Changed file transfers policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New file transfers policy. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicy *dNewValue; - -/// Previous file transfers policy. -@property (nonatomic, readonly) DBTEAMLOGFileTransfersPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New file transfers policy. -/// @param previousValue Previous file transfers policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFileTransfersPolicy *)dNewValue - previousValue:(DBTEAMLOGFileTransfersPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicyChangedType.h deleted file mode 100644 index c19662fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersPolicyChangedType` struct. -/// -@interface DBTEAMLOGFileTransfersPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGFileTransfersPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDeleteDetails.h deleted file mode 100644 index 1a40d560..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDeleteDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDeleteDetails` struct. -/// -/// Deleted transfer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDeleteDetails` struct. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDeleteDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileTransfersTransferDeleteDetails` object. -/// -+ (DBTEAMLOGFileTransfersTransferDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDeleteType.h deleted file mode 100644 index c043a6a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDeleteType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDeleteType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferDeleteType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDownloadDetails.h deleted file mode 100644 index 2a1a9c18..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDownloadDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDownloadDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDownloadDetails` struct. -/// -/// Transfer downloaded. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDownloadDetails` -/// struct. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDownloadDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFileTransfersTransferDownloadDetails` object. -/// -+ (DBTEAMLOGFileTransfersTransferDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDownloadType.h deleted file mode 100644 index 2b0ea229..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferDownloadType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferDownloadType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferDownloadType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferDownloadType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferDownloadType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferSendDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferSendDetails.h deleted file mode 100644 index 93b73c47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferSendDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferSendDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferSendDetails` struct. -/// -/// Sent transfer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferSendDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferSendDetails` struct. -/// -@interface DBTEAMLOGFileTransfersTransferSendDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferSendDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferSendDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferSendDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferSendDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferSendDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferSendDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferSendType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferSendType.h deleted file mode 100644 index 8ebbf496..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferSendType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferSendType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferSendType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferSendType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferSendType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferSendTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferSendType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersTransferSendType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferSendType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferSendType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferSendType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferSendType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferSendType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferViewDetails.h deleted file mode 100644 index aadd41cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferViewDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferViewDetails` struct. -/// -/// Viewed transfer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferViewDetails : NSObject - -#pragma mark - Instance fields - -/// Transfer id. -@property (nonatomic, readonly, copy) NSString *fileTransferId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param fileTransferId Transfer id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileTransferId:(NSString *)fileTransferId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferViewDetails` struct. -/// -@interface DBTEAMLOGFileTransfersTransferViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferViewDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFileTransfersTransferViewDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferViewDetails` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferViewType.h deleted file mode 100644 index 7c27c1b0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileTransfersTransferViewType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileTransfersTransferViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileTransfersTransferViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileTransfersTransferViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileTransfersTransferViewType` struct. -/// -@interface DBTEAMLOGFileTransfersTransferViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileTransfersTransferViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileTransfersTransferViewType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileTransfersTransferViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileTransfersTransferViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileTransfersTransferViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileTransfersTransferViewType` -/// object. -/// -+ (DBTEAMLOGFileTransfersTransferViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnlikeCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnlikeCommentDetails.h deleted file mode 100644 index b6dcf276..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnlikeCommentDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnlikeCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnlikeCommentDetails` struct. -/// -/// Unliked file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnlikeCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnlikeCommentDetails` struct. -/// -@interface DBTEAMLOGFileUnlikeCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnlikeCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnlikeCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnlikeCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnlikeCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnlikeCommentDetails` object. -/// -+ (DBTEAMLOGFileUnlikeCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnlikeCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnlikeCommentType.h deleted file mode 100644 index c17fde52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnlikeCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnlikeCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnlikeCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnlikeCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnlikeCommentType` struct. -/// -@interface DBTEAMLOGFileUnlikeCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnlikeCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnlikeCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnlikeCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnlikeCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnlikeCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnlikeCommentType` object. -/// -+ (DBTEAMLOGFileUnlikeCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnresolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnresolveCommentDetails.h deleted file mode 100644 index 373f6e69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnresolveCommentDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnresolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnresolveCommentDetails` struct. -/// -/// Unresolved file comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnresolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnresolveCommentDetails` struct. -/// -@interface DBTEAMLOGFileUnresolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnresolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnresolveCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnresolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnresolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnresolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGFileUnresolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnresolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnresolveCommentType.h deleted file mode 100644 index 8a72e174..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFileUnresolveCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFileUnresolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileUnresolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFileUnresolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FileUnresolveCommentType` struct. -/// -@interface DBTEAMLOGFileUnresolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFileUnresolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFileUnresolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFileUnresolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGFileUnresolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFileUnresolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFileUnresolveCommentType` object. -/// -+ (DBTEAMLOGFileUnresolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicy.h deleted file mode 100644 index 4eab5a45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLinkRestrictionPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkRestrictionPolicy` union. -/// -/// Policy for deciding whether applying link restrictions on all team owned -/// folders -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGFolderLinkRestrictionPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGFolderLinkRestrictionPolicyTag) { - /// (no description). - DBTEAMLOGFolderLinkRestrictionPolicyDisabled, - - /// (no description). - DBTEAMLOGFolderLinkRestrictionPolicyEnabled, - - /// (no description). - DBTEAMLOGFolderLinkRestrictionPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// union. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLinkRestrictionPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLinkRestrictionPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLinkRestrictionPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderLinkRestrictionPolicy` -/// object. -/// -+ (DBTEAMLOGFolderLinkRestrictionPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h deleted file mode 100644 index 6afa9fb8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLinkRestrictionPolicy; -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkRestrictionPolicyChangedDetails` struct. -/// -/// Changed folder link restrictions policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGFolderLinkRestrictionPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGFolderLinkRestrictionPolicy *)dNewValue - previousValue:(DBTEAMLOGFolderLinkRestrictionPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLinkRestrictionPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails` object. -/// -+ (DBTEAMLOGFolderLinkRestrictionPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h deleted file mode 100644 index 9a3c62e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLinkRestrictionPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLinkRestrictionPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLinkRestrictionPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLinkRestrictionPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGFolderLinkRestrictionPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLinkRestrictionPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderLinkRestrictionPolicyChangedType` object. -/// -+ (DBTEAMLOGFolderLinkRestrictionPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLogInfo.h deleted file mode 100644 index 6293e3ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderLogInfo.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGFileOrFolderLogInfo.h" - -@class DBTEAMLOGFolderLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderLogInfo` struct. -/// -/// Folder's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderLogInfo : DBTEAMLOGFileOrFolderLogInfo - -#pragma mark - Instance fields - -/// Number of files within the folder. -@property (nonatomic, readonly, nullable) NSNumber *fileCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param path Path relative to event context. -/// @param displayName Display name. -/// @param fileId Unique ID. -/// @param fileSize File or folder size in bytes. -/// @param fileCount Number of files within the folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path - displayName:(nullable NSString *)displayName - fileId:(nullable NSString *)fileId - fileSize:(nullable NSNumber *)fileSize - fileCount:(nullable NSNumber *)fileCount; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param path Path relative to event context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPath:(DBTEAMLOGPathLogInfo *)path; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderLogInfo` struct. -/// -@interface DBTEAMLOGFolderLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderLogInfo` object. -/// -+ (DBTEAMLOGFolderLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewDescriptionChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewDescriptionChangedDetails.h deleted file mode 100644 index 5e8a9e78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewDescriptionChangedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewDescriptionChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewDescriptionChangedDetails` struct. -/// -/// Updated folder overview. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Folder Overview location position in the Assets list. -@property (nonatomic, readonly) NSNumber *folderOverviewLocationAsset; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderOverviewLocationAsset Folder Overview location position in the -/// Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewLocationAsset:(NSNumber *)folderOverviewLocationAsset; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewDescriptionChangedDetails` -/// struct. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewDescriptionChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewDescriptionChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewDescriptionChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedDetails` object. -/// -+ (DBTEAMLOGFolderOverviewDescriptionChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewDescriptionChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewDescriptionChangedType.h deleted file mode 100644 index a27a7de0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewDescriptionChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewDescriptionChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewDescriptionChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewDescriptionChangedType` -/// struct. -/// -@interface DBTEAMLOGFolderOverviewDescriptionChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewDescriptionChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewDescriptionChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewDescriptionChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGFolderOverviewDescriptionChangedType` object. -/// -+ (DBTEAMLOGFolderOverviewDescriptionChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemPinnedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemPinnedDetails.h deleted file mode 100644 index c36150c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemPinnedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemPinnedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemPinnedDetails` struct. -/// -/// Pinned item to folder overview. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedDetails : NSObject - -#pragma mark - Instance fields - -/// Folder Overview location position in the Assets list. -@property (nonatomic, readonly) NSNumber *folderOverviewLocationAsset; - -/// Pinned items positions in the Assets list. -@property (nonatomic, readonly) NSArray *pinnedItemsAssetIndices; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderOverviewLocationAsset Folder Overview location position in the -/// Assets list. -/// @param pinnedItemsAssetIndices Pinned items positions in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewLocationAsset:(NSNumber *)folderOverviewLocationAsset - pinnedItemsAssetIndices:(NSArray *)pinnedItemsAssetIndices; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemPinnedDetails` struct. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemPinnedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewItemPinnedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemPinnedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemPinnedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemPinnedDetails` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemPinnedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemPinnedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemPinnedType.h deleted file mode 100644 index a1bb68b3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemPinnedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemPinnedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemPinnedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemPinnedType` struct. -/// -@interface DBTEAMLOGFolderOverviewItemPinnedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemPinnedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderOverviewItemPinnedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemPinnedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemPinnedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemPinnedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemPinnedType` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemPinnedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemUnpinnedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemUnpinnedDetails.h deleted file mode 100644 index bc00d46b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemUnpinnedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemUnpinnedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemUnpinnedDetails` struct. -/// -/// Unpinned item from folder overview. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedDetails : NSObject - -#pragma mark - Instance fields - -/// Folder Overview location position in the Assets list. -@property (nonatomic, readonly) NSNumber *folderOverviewLocationAsset; - -/// Pinned items positions in the Assets list. -@property (nonatomic, readonly) NSArray *pinnedItemsAssetIndices; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderOverviewLocationAsset Folder Overview location position in the -/// Assets list. -/// @param pinnedItemsAssetIndices Pinned items positions in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderOverviewLocationAsset:(NSNumber *)folderOverviewLocationAsset - pinnedItemsAssetIndices:(NSArray *)pinnedItemsAssetIndices; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemUnpinnedDetails` struct. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemUnpinnedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemUnpinnedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemUnpinnedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemUnpinnedDetails` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemUnpinnedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemUnpinnedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemUnpinnedType.h deleted file mode 100644 index 8818e84a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGFolderOverviewItemUnpinnedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderOverviewItemUnpinnedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FolderOverviewItemUnpinnedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FolderOverviewItemUnpinnedType` struct. -/// -@interface DBTEAMLOGFolderOverviewItemUnpinnedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGFolderOverviewItemUnpinnedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGFolderOverviewItemUnpinnedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGFolderOverviewItemUnpinnedType *)instance; - -/// -/// Deserializes `DBTEAMLOGFolderOverviewItemUnpinnedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGFolderOverviewItemUnpinnedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGFolderOverviewItemUnpinnedType` -/// object. -/// -+ (DBTEAMLOGFolderOverviewItemUnpinnedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGeoLocationLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGeoLocationLogInfo.h deleted file mode 100644 index 8500224f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGeoLocationLogInfo.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGeoLocationLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GeoLocationLogInfo` struct. -/// -/// Geographic location details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGeoLocationLogInfo : NSObject - -#pragma mark - Instance fields - -/// City name. -@property (nonatomic, readonly, copy, nullable) NSString *city; - -/// Region name. -@property (nonatomic, readonly, copy, nullable) NSString *region; - -/// Country code. -@property (nonatomic, readonly, copy, nullable) NSString *country; - -/// IP address. -@property (nonatomic, readonly, copy) NSString *ipAddress; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ipAddress IP address. -/// @param city City name. -/// @param region Region name. -/// @param country Country code. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(NSString *)ipAddress - city:(nullable NSString *)city - region:(nullable NSString *)region - country:(nullable NSString *)country; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param ipAddress IP address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(NSString *)ipAddress; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GeoLocationLogInfo` struct. -/// -@interface DBTEAMLOGGeoLocationLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGeoLocationLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGeoLocationLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGeoLocationLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGeoLocationLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGGeoLocationLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGeoLocationLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGeoLocationLogInfo` object. -/// -+ (DBTEAMLOGGeoLocationLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsArg.h deleted file mode 100644 index 89b70d9c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsArg.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONTimeRange; -@class DBTEAMLOGEventCategory; -@class DBTEAMLOGEventTypeArg; -@class DBTEAMLOGGetTeamEventsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsArg : NSObject - -#pragma mark - Instance fields - -/// The maximal number of results to return per call. Note that some calls may -/// not return limit number of events, and may even return no events, even with -/// `has_more` set to true. In this case, callers should fetch again using -/// `getEventsContinue`. -@property (nonatomic, readonly) NSNumber *limit; - -/// Filter the events by account ID. Return only events with this account_id as -/// either Actor, Context, or Participants. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -/// Filter by time range. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONTimeRange *time; - -/// Filter the returned events to a single category. Note that category -/// shouldn't be provided together with event_type. -@property (nonatomic, readonly, nullable) DBTEAMLOGEventCategory *category; - -/// Filter the returned events to a single event type. Note that event_type -/// shouldn't be provided together with category. -@property (nonatomic, readonly, nullable) DBTEAMLOGEventTypeArg *eventType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximal number of results to return per call. Note that -/// some calls may not return limit number of events, and may even return no -/// events, even with `has_more` set to true. In this case, callers should fetch -/// again using `getEventsContinue`. -/// @param accountId Filter the events by account ID. Return only events with -/// this account_id as either Actor, Context, or Participants. -/// @param time Filter by time range. -/// @param category Filter the returned events to a single category. Note that -/// category shouldn't be provided together with event_type. -/// @param eventType Filter the returned events to a single event type. Note -/// that event_type shouldn't be provided together with category. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit - accountId:(nullable NSString *)accountId - time:(nullable DBTEAMCOMMONTimeRange *)time - category:(nullable DBTEAMLOGEventCategory *)category - eventType:(nullable DBTEAMLOGEventTypeArg *)eventType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTeamEventsArg` struct. -/// -@interface DBTEAMLOGGetTeamEventsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsArg` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsArg *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsArg` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsArg` object. -/// -+ (DBTEAMLOGGetTeamEventsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsContinueArg.h deleted file mode 100644 index 2c228f09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of events. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of events. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTeamEventsContinueArg` struct. -/// -@interface DBTEAMLOGGetTeamEventsContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsContinueArg *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsContinueArg` object. -/// -+ (DBTEAMLOGGetTeamEventsContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsContinueError.h deleted file mode 100644 index 01726144..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsContinueError.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsContinueError` union. -/// -/// Errors that can be raised when calling `getEventsContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGetTeamEventsContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGGetTeamEventsContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGetTeamEventsContinueErrorTag) { - /// Bad cursor. - DBTEAMLOGGetTeamEventsContinueErrorBadCursor, - - /// Cursors are intended to be used quickly. Individual cursor values are - /// normally valid for days, but in rare cases may be reset sooner. Cursor - /// reset errors should be handled by fetching a new cursor from - /// `getEvents`. The associated value is the approximate timestamp of the - /// most recent event returned by the cursor. This should be used as a - /// resumption point when calling `getEvents` to obtain a new cursor. - DBTEAMLOGGetTeamEventsContinueErrorReset, - - /// (no description). - DBTEAMLOGGetTeamEventsContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGetTeamEventsContinueErrorTag tag; - -/// Cursors are intended to be used quickly. Individual cursor values are -/// normally valid for days, but in rare cases may be reset sooner. Cursor reset -/// errors should be handled by fetching a new cursor from `getEvents`. The -/// associated value is the approximate timestamp of the most recent event -/// returned by the cursor. This should be used as a resumption point when -/// calling `getEvents` to obtain a new cursor. @note Ensure the `isReset` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSDate *reset; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "bad_cursor". -/// -/// Description of the "bad_cursor" tag state: Bad cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBadCursor; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Cursors are intended to be used -/// quickly. Individual cursor values are normally valid for days, but in rare -/// cases may be reset sooner. Cursor reset errors should be handled by fetching -/// a new cursor from `getEvents`. The associated value is the approximate -/// timestamp of the most recent event returned by the cursor. This should be -/// used as a resumption point when calling `getEvents` to obtain a new cursor. -/// -/// @param reset Cursors are intended to be used quickly. Individual cursor -/// values are normally valid for days, but in rare cases may be reset sooner. -/// Cursor reset errors should be handled by fetching a new cursor from -/// `getEvents`. The associated value is the approximate timestamp of the most -/// recent event returned by the cursor. This should be used as a resumption -/// point when calling `getEvents` to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset:(NSDate *)reset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "bad_cursor". -/// -/// @return Whether the union's current tag state has value "bad_cursor". -/// -- (BOOL)isBadCursor; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `reset` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGetTeamEventsContinueError` union. -/// -@interface DBTEAMLOGGetTeamEventsContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsContinueError *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsContinueError` -/// object. -/// -+ (DBTEAMLOGGetTeamEventsContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsError.h deleted file mode 100644 index 19958ecc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsError.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsError` union. -/// -/// Errors that can be raised when calling `getEvents`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGetTeamEventsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGGetTeamEventsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGetTeamEventsErrorTag) { - /// No user found matching the provided account_id. - DBTEAMLOGGetTeamEventsErrorAccountIdNotFound, - - /// Invalid time range. - DBTEAMLOGGetTeamEventsErrorInvalidTimeRange, - - /// Invalid filters. Do not specify both event_type and category parameters - /// for the same call. - DBTEAMLOGGetTeamEventsErrorInvalidFilters, - - /// (no description). - DBTEAMLOGGetTeamEventsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGetTeamEventsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "account_id_not_found". -/// -/// Description of the "account_id_not_found" tag state: No user found matching -/// the provided account_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountIdNotFound; - -/// -/// Initializes union class with tag state of "invalid_time_range". -/// -/// Description of the "invalid_time_range" tag state: Invalid time range. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidTimeRange; - -/// -/// Initializes union class with tag state of "invalid_filters". -/// -/// Description of the "invalid_filters" tag state: Invalid filters. Do not -/// specify both event_type and category parameters for the same call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFilters; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "account_id_not_found". -/// -/// @return Whether the union's current tag state has value -/// "account_id_not_found". -/// -- (BOOL)isAccountIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_time_range". -/// -/// @return Whether the union's current tag state has value -/// "invalid_time_range". -/// -- (BOOL)isInvalidTimeRange; - -/// -/// Retrieves whether the union's current tag state has value "invalid_filters". -/// -/// @return Whether the union's current tag state has value "invalid_filters". -/// -- (BOOL)isInvalidFilters; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGetTeamEventsError` union. -/// -@interface DBTEAMLOGGetTeamEventsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsError` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsError *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsError` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsError` object. -/// -+ (DBTEAMLOGGetTeamEventsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsResult.h deleted file mode 100644 index 5ba1b5d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGetTeamEventsResult.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGetTeamEventsResult; -@class DBTEAMLOGTeamEvent; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetTeamEventsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGetTeamEventsResult : NSObject - -#pragma mark - Instance fields - -/// List of events. Note that events are not guaranteed to be sorted by their -/// timestamp value. -@property (nonatomic, readonly) NSArray *events; - -/// Pass the cursor into `getEventsContinue` to obtain additional events. The -/// value of cursor may change for each response from `getEventsContinue`, -/// regardless of the value of hasMore; older cursor strings may expire. Thus, -/// callers should ensure that they update their cursor based on the latest -/// value of cursor after each call, and poll regularly if they wish to poll for -/// new events. Callers should handle reset exceptions for expired cursors. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there may be additional events that have not been returned yet. -/// An additional call to `getEventsContinue` can retrieve them. Note that -/// hasMore may be true, even if events is empty. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param events List of events. Note that events are not guaranteed to be -/// sorted by their timestamp value. -/// @param cursor Pass the cursor into `getEventsContinue` to obtain additional -/// events. The value of cursor may change for each response from -/// `getEventsContinue`, regardless of the value of hasMore; older cursor -/// strings may expire. Thus, callers should ensure that they update their -/// cursor based on the latest value of cursor after each call, and poll -/// regularly if they wish to poll for new events. Callers should handle reset -/// exceptions for expired cursors. -/// @param hasMore Is true if there may be additional events that have not been -/// returned yet. An additional call to `getEventsContinue` can retrieve them. -/// Note that hasMore may be true, even if events is empty. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEvents:(NSArray *)events - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetTeamEventsResult` struct. -/// -@interface DBTEAMLOGGetTeamEventsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGetTeamEventsResult` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGetTeamEventsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGetTeamEventsResult *)instance; - -/// -/// Deserializes `DBTEAMLOGGetTeamEventsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGetTeamEventsResult` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGetTeamEventsResult` object. -/// -+ (DBTEAMLOGGetTeamEventsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoChangePolicyDetails.h deleted file mode 100644 index 54986c32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGoogleSsoChangePolicyDetails; -@class DBTEAMLOGGoogleSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GoogleSsoChangePolicyDetails` struct. -/// -/// Enabled/disabled Google single sign-on for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Google single sign-on policy. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoPolicy *dNewValue; - -/// Previous Google single sign-on policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGGoogleSsoPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Google single sign-on policy. -/// @param previousValue Previous Google single sign-on policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGGoogleSsoPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGGoogleSsoPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Google single sign-on policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGGoogleSsoPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GoogleSsoChangePolicyDetails` struct. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGoogleSsoChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGoogleSsoChangePolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGoogleSsoChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGoogleSsoChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGoogleSsoChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGGoogleSsoChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoChangePolicyType.h deleted file mode 100644 index f0a343e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGoogleSsoChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GoogleSsoChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GoogleSsoChangePolicyType` struct. -/// -@interface DBTEAMLOGGoogleSsoChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGoogleSsoChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGoogleSsoChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGoogleSsoChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGGoogleSsoChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGoogleSsoChangePolicyType` object. -/// -+ (DBTEAMLOGGoogleSsoChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoPolicy.h deleted file mode 100644 index df706d13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGoogleSsoPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGoogleSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GoogleSsoPolicy` union. -/// -/// Google SSO policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGoogleSsoPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGoogleSsoPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGGoogleSsoPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGoogleSsoPolicyTag) { - /// (no description). - DBTEAMLOGGoogleSsoPolicyDisabled, - - /// (no description). - DBTEAMLOGGoogleSsoPolicyEnabled, - - /// (no description). - DBTEAMLOGGoogleSsoPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGoogleSsoPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGoogleSsoPolicy` union. -/// -@interface DBTEAMLOGGoogleSsoPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGoogleSsoPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGoogleSsoPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGoogleSsoPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGGoogleSsoPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGoogleSsoPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGoogleSsoPolicy` object. -/// -+ (DBTEAMLOGGoogleSsoPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h deleted file mode 100644 index 57539b77..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedDetails.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFolderFailedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFolderFailedDetails` struct. -/// -/// Couldn't add a folder to a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Folder. -@property (nonatomic, readonly, copy) NSString *folder; - -/// Reason. -@property (nonatomic, readonly, copy, nullable) NSString *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param folder Folder. -/// @param policyType Policy type. -/// @param reason Reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - folder:(NSString *)folder - policyType:(nullable DBTEAMLOGPolicyType *)policyType - reason:(nullable NSString *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param folder Folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - folder:(NSString *)folder; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFolderFailedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFolderFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyAddFolderFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedType.h deleted file mode 100644 index ed28ac5f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFolderFailedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFolderFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFolderFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFolderFailedType` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFolderFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFolderFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFolderFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFolderFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyAddFolderFailedType` object. -/// -+ (DBTEAMLOGGovernancePolicyAddFolderFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFoldersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFoldersDetails.h deleted file mode 100644 index d251ddab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFoldersDetails.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFoldersDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFoldersDetails` struct. -/// -/// Added folders to policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Folders. -@property (nonatomic, readonly, nullable) NSArray *folders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// @param folders Folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType - folders:(nullable NSArray *)folders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFoldersDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFoldersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyAddFoldersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFoldersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFoldersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyAddFoldersDetails` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyAddFoldersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFoldersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFoldersType.h deleted file mode 100644 index 3f6be36e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyAddFoldersType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyAddFoldersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyAddFoldersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyAddFoldersType` struct. -/// -@interface DBTEAMLOGGovernancePolicyAddFoldersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyAddFoldersType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyAddFoldersType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyAddFoldersType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyAddFoldersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyAddFoldersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyAddFoldersType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyAddFoldersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyContentDisposedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyContentDisposedDetails.h deleted file mode 100644 index 2a930989..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyContentDisposedDetails.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDispositionActionType; -@class DBTEAMLOGGovernancePolicyContentDisposedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyContentDisposedDetails` struct. -/// -/// Content disposed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Disposition type. -@property (nonatomic, readonly) DBTEAMLOGDispositionActionType *dispositionType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param dispositionType Disposition type. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - dispositionType:(DBTEAMLOGDispositionActionType *)dispositionType - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param dispositionType Disposition type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - dispositionType:(DBTEAMLOGDispositionActionType *)dispositionType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyContentDisposedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyContentDisposedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyContentDisposedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyContentDisposedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyContentDisposedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyContentDisposedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyContentDisposedType.h deleted file mode 100644 index 40182bd7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyContentDisposedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyContentDisposedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyContentDisposedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyContentDisposedType` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyContentDisposedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyContentDisposedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyContentDisposedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyContentDisposedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyContentDisposedType` object. -/// -+ (DBTEAMLOGGovernancePolicyContentDisposedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyCreateDetails.h deleted file mode 100644 index 5a3be813..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyCreateDetails.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGGovernancePolicyCreateDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyCreateDetails` struct. -/// -/// Activated a new policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Duration in days. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *duration; - -/// Folders. -@property (nonatomic, readonly, nullable) NSArray *folders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param duration Duration in days. -/// @param policyType Policy type. -/// @param folders Folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - duration:(DBTEAMLOGDurationLogInfo *)duration - policyType:(nullable DBTEAMLOGPolicyType *)policyType - folders:(nullable NSArray *)folders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param duration Duration in days. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - duration:(DBTEAMLOGDurationLogInfo *)duration; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyCreateDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyCreateDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyCreateDetails` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyCreateType.h deleted file mode 100644 index 8f4a0ff6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyCreateType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyCreateType` struct. -/// -@interface DBTEAMLOGGovernancePolicyCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyCreateType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyDeleteDetails.h deleted file mode 100644 index 9f862f5b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyDeleteDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyDeleteDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyDeleteDetails` struct. -/// -/// Deleted a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyDeleteDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyDeleteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyDeleteDetails` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyDeleteType.h deleted file mode 100644 index f530db73..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyDeleteType` struct. -/// -@interface DBTEAMLOGGovernancePolicyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGovernancePolicyDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyDeleteType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDetailsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDetailsDetails.h deleted file mode 100644 index aec35512..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDetailsDetails.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyEditDetailsDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDetailsDetails` struct. -/// -/// Edited policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Attribute. -@property (nonatomic, readonly, copy) NSString *attribute; - -/// From. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// To. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param attribute Attribute. -/// @param previousValue From. -/// @param dNewValue To. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - attribute:(NSString *)attribute - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param attribute Attribute. -/// @param previousValue From. -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - attribute:(NSString *)attribute - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDetailsDetails` struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDetailsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDetailsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDetailsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyEditDetailsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDetailsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDetailsType.h deleted file mode 100644 index deceae50..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDetailsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyEditDetailsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDetailsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDetailsType` struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDetailsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDetailsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDetailsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDetailsType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDetailsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDetailsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyEditDetailsType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyEditDetailsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDurationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDurationDetails.h deleted file mode 100644 index 8c711e45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDurationDetails.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGGovernancePolicyEditDurationDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDurationDetails` struct. -/// -/// Changed policy duration. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *previousValue; - -/// To. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param previousValue From. -/// @param dNewValue To. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - previousValue:(DBTEAMLOGDurationLogInfo *)previousValue - dNewValue:(DBTEAMLOGDurationLogInfo *)dNewValue - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param previousValue From. -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - previousValue:(DBTEAMLOGDurationLogInfo *)previousValue - dNewValue:(DBTEAMLOGDurationLogInfo *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDurationDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDurationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDurationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDurationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyEditDurationDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyEditDurationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDurationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDurationType.h deleted file mode 100644 index 892d4e2c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyEditDurationType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyEditDurationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyEditDurationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyEditDurationType` struct. -/// -@interface DBTEAMLOGGovernancePolicyEditDurationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyEditDurationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyEditDurationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyEditDurationType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyEditDurationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyEditDurationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyEditDurationType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyEditDurationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportCreatedDetails.h deleted file mode 100644 index a4a078f4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportCreatedDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportCreatedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportCreatedDetails` struct. -/// -/// Created a policy download. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportCreatedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportCreatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyExportCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportCreatedType.h deleted file mode 100644 index 4e4df6b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportCreatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportCreatedType` struct. -/// -@interface DBTEAMLOGGovernancePolicyExportCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportCreatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportCreatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyExportCreatedType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyExportCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportRemovedDetails.h deleted file mode 100644 index dcdbac9d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportRemovedDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportRemovedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportRemovedDetails` struct. -/// -/// Removed a policy download. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportRemovedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportRemovedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyExportRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportRemovedType.h deleted file mode 100644 index afd3dcf0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyExportRemovedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyExportRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyExportRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyExportRemovedType` struct. -/// -@interface DBTEAMLOGGovernancePolicyExportRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyExportRemovedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyExportRemovedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyExportRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyExportRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyExportRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyExportRemovedType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyExportRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h deleted file mode 100644 index fe85b233..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersDetails.h +++ /dev/null @@ -1,112 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyRemoveFoldersDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyRemoveFoldersDetails` struct. -/// -/// Removed folders from policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Folders. -@property (nonatomic, readonly, nullable) NSArray *folders; - -/// Reason. -@property (nonatomic, readonly, copy, nullable) NSString *reason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// @param folders Folders. -/// @param reason Reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType - folders:(nullable NSArray *)folders - reason:(nullable NSString *)reason; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyRemoveFoldersDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyRemoveFoldersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyRemoveFoldersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersType.h deleted file mode 100644 index fbe2da8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyRemoveFoldersType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyRemoveFoldersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyRemoveFoldersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyRemoveFoldersType` struct. -/// -@interface DBTEAMLOGGovernancePolicyRemoveFoldersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyRemoveFoldersType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyRemoveFoldersType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyRemoveFoldersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyRemoveFoldersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyRemoveFoldersType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyRemoveFoldersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyReportCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyReportCreatedDetails.h deleted file mode 100644 index c4171f79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyReportCreatedDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyReportCreatedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyReportCreatedDetails` struct. -/// -/// Created a summary report for a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param policyType Policy type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - policyType:(nullable DBTEAMLOGPolicyType *)policyType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyReportCreatedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyReportCreatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyReportCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyReportCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyReportCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyReportCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyReportCreatedType.h deleted file mode 100644 index fd31df23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyReportCreatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyReportCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyReportCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyReportCreatedType` struct. -/// -@interface DBTEAMLOGGovernancePolicyReportCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyReportCreatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyReportCreatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyReportCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyReportCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyReportCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGovernancePolicyReportCreatedType` -/// object. -/// -+ (DBTEAMLOGGovernancePolicyReportCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h deleted file mode 100644 index 1a0b504e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedDetails.h +++ /dev/null @@ -1,115 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyZipPartDownloadedDetails; -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyZipPartDownloadedDetails` struct. -/// -/// Downloaded content from a policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedDetails : NSObject - -#pragma mark - Instance fields - -/// Policy ID. -@property (nonatomic, readonly, copy) NSString *governancePolicyId; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Policy type. -@property (nonatomic, readonly, nullable) DBTEAMLOGPolicyType *policyType; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -/// Part. -@property (nonatomic, readonly, copy, nullable) NSString *part; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// @param policyType Policy type. -/// @param part Part. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName - policyType:(nullable DBTEAMLOGPolicyType *)policyType - part:(nullable NSString *)part; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param governancePolicyId Policy ID. -/// @param name Policy name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGovernancePolicyId:(NSString *)governancePolicyId - name:(NSString *)name - exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyZipPartDownloadedDetails` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedDetails` object. -/// -+ (DBTEAMLOGGovernancePolicyZipPartDownloadedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedType.h deleted file mode 100644 index 7d6b0045..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGovernancePolicyZipPartDownloadedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGovernancePolicyZipPartDownloadedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GovernancePolicyZipPartDownloadedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GovernancePolicyZipPartDownloadedType` -/// struct. -/// -@interface DBTEAMLOGGovernancePolicyZipPartDownloadedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGovernancePolicyZipPartDownloadedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGovernancePolicyZipPartDownloadedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGovernancePolicyZipPartDownloadedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGovernancePolicyZipPartDownloadedType` object. -/// -+ (DBTEAMLOGGovernancePolicyZipPartDownloadedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddExternalIdDetails.h deleted file mode 100644 index 2e14f58b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddExternalIdDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddExternalIdDetails` struct. -/// -/// Added external ID for group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddExternalIdDetails` struct. -/// -@interface DBTEAMLOGGroupAddExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddExternalIdDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddExternalIdDetails` object. -/// -+ (DBTEAMLOGGroupAddExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddExternalIdType.h deleted file mode 100644 index 85fa1bc5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddExternalIdType` struct. -/// -@interface DBTEAMLOGGroupAddExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddExternalIdType` object. -/// -+ (DBTEAMLOGGroupAddExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddMemberDetails.h deleted file mode 100644 index 67337f2d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddMemberDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddMemberDetails` struct. -/// -/// Added team members to group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Is group owner. -@property (nonatomic, readonly) NSNumber *isGroupOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isGroupOwner Is group owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGroupOwner:(NSNumber *)isGroupOwner; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddMemberDetails` struct. -/// -@interface DBTEAMLOGGroupAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddMemberDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddMemberDetails` object. -/// -+ (DBTEAMLOGGroupAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddMemberType.h deleted file mode 100644 index 1ca0108c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupAddMemberType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupAddMemberType` struct. -/// -@interface DBTEAMLOGGroupAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupAddMemberType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupAddMemberType` object. -/// -+ (DBTEAMLOGGroupAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeExternalIdDetails.h deleted file mode 100644 index f07fcb95..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeExternalIdDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeExternalIdDetails` struct. -/// -/// Changed external ID for group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeExternalIdDetails` struct. -/// -@interface DBTEAMLOGGroupChangeExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGGroupChangeExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeExternalIdType.h deleted file mode 100644 index 2be08fb3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeExternalIdType` struct. -/// -@interface DBTEAMLOGGroupChangeExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeExternalIdType` object. -/// -+ (DBTEAMLOGGroupChangeExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeManagementTypeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeManagementTypeDetails.h deleted file mode 100644 index e6812274..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeManagementTypeDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMLOGGroupChangeManagementTypeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeManagementTypeDetails` struct. -/// -/// Changed group management type. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeManagementTypeDetails : NSObject - -#pragma mark - Instance fields - -/// New group management type. -@property (nonatomic, readonly) DBTEAMCOMMONGroupManagementType *dNewValue; - -/// Previous group management type. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMCOMMONGroupManagementType *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New group management type. -/// @param previousValue Previous group management type. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMCOMMONGroupManagementType *)dNewValue - previousValue:(nullable DBTEAMCOMMONGroupManagementType *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New group management type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMCOMMONGroupManagementType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeManagementTypeDetails` struct. -/// -@interface DBTEAMLOGGroupChangeManagementTypeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeManagementTypeDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGroupChangeManagementTypeDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeManagementTypeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeManagementTypeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeManagementTypeDetails` -/// object. -/// -+ (DBTEAMLOGGroupChangeManagementTypeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeManagementTypeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeManagementTypeType.h deleted file mode 100644 index db201d15..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeManagementTypeType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeManagementTypeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeManagementTypeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeManagementTypeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeManagementTypeType` struct. -/// -@interface DBTEAMLOGGroupChangeManagementTypeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeManagementTypeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeManagementTypeType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeManagementTypeType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeManagementTypeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeManagementTypeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeManagementTypeType` -/// object. -/// -+ (DBTEAMLOGGroupChangeManagementTypeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeMemberRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeMemberRoleDetails.h deleted file mode 100644 index f03770da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeMemberRoleDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeMemberRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeMemberRoleDetails` struct. -/// -/// Changed manager permissions of group member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeMemberRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Is group owner. -@property (nonatomic, readonly) NSNumber *isGroupOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isGroupOwner Is group owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGroupOwner:(NSNumber *)isGroupOwner; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeMemberRoleDetails` struct. -/// -@interface DBTEAMLOGGroupChangeMemberRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeMemberRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeMemberRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeMemberRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeMemberRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeMemberRoleDetails` -/// object. -/// -+ (DBTEAMLOGGroupChangeMemberRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeMemberRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeMemberRoleType.h deleted file mode 100644 index b863d224..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupChangeMemberRoleType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupChangeMemberRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupChangeMemberRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupChangeMemberRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupChangeMemberRoleType` struct. -/// -@interface DBTEAMLOGGroupChangeMemberRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupChangeMemberRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupChangeMemberRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupChangeMemberRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupChangeMemberRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupChangeMemberRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupChangeMemberRoleType` object. -/// -+ (DBTEAMLOGGroupChangeMemberRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupCreateDetails.h deleted file mode 100644 index 8cc43687..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupCreateDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupCreateDetails; -@class DBTEAMLOGGroupJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateDetails` struct. -/// -/// Created group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Is company managed group. -@property (nonatomic, readonly, nullable) NSNumber *isCompanyManaged; - -/// Group join policy. -@property (nonatomic, readonly, nullable) DBTEAMLOGGroupJoinPolicy *joinPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isCompanyManaged Is company managed group. -/// @param joinPolicy Group join policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsCompanyManaged:(nullable NSNumber *)isCompanyManaged - joinPolicy:(nullable DBTEAMLOGGroupJoinPolicy *)joinPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupCreateDetails` struct. -/// -@interface DBTEAMLOGGroupCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupCreateDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupCreateDetails` object. -/// -+ (DBTEAMLOGGroupCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupCreateType.h deleted file mode 100644 index 11714304..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupCreateType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupCreateType` struct. -/// -@interface DBTEAMLOGGroupCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupCreateType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupCreateType` object. -/// -+ (DBTEAMLOGGroupCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDeleteDetails.h deleted file mode 100644 index a836d269..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDeleteDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDeleteDetails` struct. -/// -/// Deleted group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Is company managed group. -@property (nonatomic, readonly, nullable) NSNumber *isCompanyManaged; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isCompanyManaged Is company managed group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsCompanyManaged:(nullable NSNumber *)isCompanyManaged; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDeleteDetails` struct. -/// -@interface DBTEAMLOGGroupDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDeleteDetails` object. -/// -+ (DBTEAMLOGGroupDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDeleteType.h deleted file mode 100644 index dc0dfe20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDeleteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDeleteType` struct. -/// -@interface DBTEAMLOGGroupDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDeleteType` object. -/// -+ (DBTEAMLOGGroupDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDescriptionUpdatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDescriptionUpdatedDetails.h deleted file mode 100644 index 6785a21a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDescriptionUpdatedDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDescriptionUpdatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDescriptionUpdatedDetails` struct. -/// -/// Updated group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDescriptionUpdatedDetails` struct. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDescriptionUpdatedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDescriptionUpdatedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDescriptionUpdatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDescriptionUpdatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDescriptionUpdatedDetails` -/// object. -/// -+ (DBTEAMLOGGroupDescriptionUpdatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDescriptionUpdatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDescriptionUpdatedType.h deleted file mode 100644 index 23ee2b55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupDescriptionUpdatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupDescriptionUpdatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupDescriptionUpdatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupDescriptionUpdatedType` struct. -/// -@interface DBTEAMLOGGroupDescriptionUpdatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupDescriptionUpdatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupDescriptionUpdatedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupDescriptionUpdatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupDescriptionUpdatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupDescriptionUpdatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupDescriptionUpdatedType` -/// object. -/// -+ (DBTEAMLOGGroupDescriptionUpdatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicy.h deleted file mode 100644 index 042e5508..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicy.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupJoinPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupJoinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGGroupJoinPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGGroupJoinPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGGroupJoinPolicyTag) { - /// (no description). - DBTEAMLOGGroupJoinPolicyOpen, - - /// (no description). - DBTEAMLOGGroupJoinPolicyRequestToJoin, - - /// (no description). - DBTEAMLOGGroupJoinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGGroupJoinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "open". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOpen; - -/// -/// Initializes union class with tag state of "request_to_join". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestToJoin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "open". -/// -/// @return Whether the union's current tag state has value "open". -/// -- (BOOL)isOpen; - -/// -/// Retrieves whether the union's current tag state has value "request_to_join". -/// -/// @return Whether the union's current tag state has value "request_to_join". -/// -- (BOOL)isRequestToJoin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGGroupJoinPolicy` union. -/// -@interface DBTEAMLOGGroupJoinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupJoinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupJoinPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupJoinPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupJoinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupJoinPolicy` object. -/// -+ (DBTEAMLOGGroupJoinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicyUpdatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicyUpdatedDetails.h deleted file mode 100644 index 1a1ed5dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicyUpdatedDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupJoinPolicy; -@class DBTEAMLOGGroupJoinPolicyUpdatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupJoinPolicyUpdatedDetails` struct. -/// -/// Updated group join policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedDetails : NSObject - -#pragma mark - Instance fields - -/// Is company managed group. -@property (nonatomic, readonly, nullable) NSNumber *isCompanyManaged; - -/// Group join policy. -@property (nonatomic, readonly, nullable) DBTEAMLOGGroupJoinPolicy *joinPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isCompanyManaged Is company managed group. -/// @param joinPolicy Group join policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsCompanyManaged:(nullable NSNumber *)isCompanyManaged - joinPolicy:(nullable DBTEAMLOGGroupJoinPolicy *)joinPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupJoinPolicyUpdatedDetails` struct. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupJoinPolicyUpdatedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupJoinPolicyUpdatedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupJoinPolicyUpdatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupJoinPolicyUpdatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupJoinPolicyUpdatedDetails` -/// object. -/// -+ (DBTEAMLOGGroupJoinPolicyUpdatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicyUpdatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicyUpdatedType.h deleted file mode 100644 index f36d9098..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupJoinPolicyUpdatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupJoinPolicyUpdatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupJoinPolicyUpdatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupJoinPolicyUpdatedType` struct. -/// -@interface DBTEAMLOGGroupJoinPolicyUpdatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupJoinPolicyUpdatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupJoinPolicyUpdatedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupJoinPolicyUpdatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupJoinPolicyUpdatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupJoinPolicyUpdatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupJoinPolicyUpdatedType` -/// object. -/// -+ (DBTEAMLOGGroupJoinPolicyUpdatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupLogInfo.h deleted file mode 100644 index 7380fcda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupLogInfo.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupLogInfo` struct. -/// -/// Group's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupLogInfo : NSObject - -#pragma mark - Instance fields - -/// The unique id of this group. -@property (nonatomic, readonly, copy, nullable) NSString *groupId; - -/// The name of this group. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// External group ID. -@property (nonatomic, readonly, copy, nullable) NSString *externalId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param displayName The name of this group. -/// @param groupId The unique id of this group. -/// @param externalId External group ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisplayName:(NSString *)displayName - groupId:(nullable NSString *)groupId - externalId:(nullable NSString *)externalId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param displayName The name of this group. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisplayName:(NSString *)displayName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupLogInfo` struct. -/// -@interface DBTEAMLOGGroupLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupLogInfo` object. -/// -+ (DBTEAMLOGGroupLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupMovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupMovedDetails.h deleted file mode 100644 index 2ea03738..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupMovedDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupMovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMovedDetails` struct. -/// -/// Moved group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupMovedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMovedDetails` struct. -/// -@interface DBTEAMLOGGroupMovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupMovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupMovedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupMovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupMovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupMovedDetails` object. -/// -+ (DBTEAMLOGGroupMovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupMovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupMovedType.h deleted file mode 100644 index c62d9d70..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupMovedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupMovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupMovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupMovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupMovedType` struct. -/// -@interface DBTEAMLOGGroupMovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupMovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupMovedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupMovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupMovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupMovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupMovedType` object. -/// -+ (DBTEAMLOGGroupMovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveExternalIdDetails.h deleted file mode 100644 index f588f038..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveExternalIdDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveExternalIdDetails` struct. -/// -/// Removed external ID for group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveExternalIdDetails` struct. -/// -@interface DBTEAMLOGGroupRemoveExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGGroupRemoveExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveExternalIdType.h deleted file mode 100644 index bc5214ed..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveExternalIdType` struct. -/// -@interface DBTEAMLOGGroupRemoveExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveExternalIdType` object. -/// -+ (DBTEAMLOGGroupRemoveExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveMemberDetails.h deleted file mode 100644 index b5430810..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveMemberDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveMemberDetails` struct. -/// -/// Removed team members from group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGGroupRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveMemberDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveMemberDetails` object. -/// -+ (DBTEAMLOGGroupRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveMemberType.h deleted file mode 100644 index c5431f5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRemoveMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRemoveMemberType` struct. -/// -@interface DBTEAMLOGGroupRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRemoveMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRemoveMemberType` object. -/// -+ (DBTEAMLOGGroupRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRenameDetails.h deleted file mode 100644 index 2965dc03..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRenameDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRenameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRenameDetails` struct. -/// -/// Renamed group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Previous display name. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New display name. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous display name. -/// @param dNewValue New display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRenameDetails` struct. -/// -@interface DBTEAMLOGGroupRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRenameDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRenameDetails` object. -/// -+ (DBTEAMLOGGroupRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRenameType.h deleted file mode 100644 index 1bef8ceb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupRenameType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupRenameType` struct. -/// -@interface DBTEAMLOGGroupRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGroupRenameType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGroupRenameType` object. -/// -+ (DBTEAMLOGGroupRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupUserManagementChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupUserManagementChangePolicyDetails.h deleted file mode 100644 index cf0578d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupUserManagementChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupUserManagementChangePolicyDetails; -@class DBTEAMPOLICIESGroupCreation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUserManagementChangePolicyDetails` struct. -/// -/// Changed who can create groups. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New group users management policy. -@property (nonatomic, readonly) DBTEAMPOLICIESGroupCreation *dNewValue; - -/// Previous group users management policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESGroupCreation *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New group users management policy. -/// @param previousValue Previous group users management policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESGroupCreation *)dNewValue - previousValue:(nullable DBTEAMPOLICIESGroupCreation *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New group users management policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESGroupCreation *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupUserManagementChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupUserManagementChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupUserManagementChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupUserManagementChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyDetails` object. -/// -+ (DBTEAMLOGGroupUserManagementChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupUserManagementChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupUserManagementChangePolicyType.h deleted file mode 100644 index 8f1e48d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGroupUserManagementChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupUserManagementChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupUserManagementChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GroupUserManagementChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGGroupUserManagementChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGroupUserManagementChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGroupUserManagementChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGGroupUserManagementChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGroupUserManagementChangePolicyType` object. -/// -+ (DBTEAMLOGGroupUserManagementChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminChangeStatusDetails.h deleted file mode 100644 index 0ae3550f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminChangeStatusDetails.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminChangeStatusDetails; -@class DBTEAMLOGTrustedTeamsRequestAction; -@class DBTEAMLOGTrustedTeamsRequestState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminChangeStatusDetails` struct. -/// -/// Changed guest team admin status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// True for guest, false for host. -@property (nonatomic, readonly) NSNumber *isGuest; - -/// The name of the guest team. -@property (nonatomic, readonly, copy, nullable) NSString *guestTeamName; - -/// The name of the host team. -@property (nonatomic, readonly, copy, nullable) NSString *hostTeamName; - -/// Previous request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *previousValue; - -/// New request state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestState *dNewValue; - -/// Action details. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestAction *actionDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isGuest True for guest, false for host. -/// @param previousValue Previous request state. -/// @param dNewValue New request state. -/// @param actionDetails Action details. -/// @param guestTeamName The name of the guest team. -/// @param hostTeamName The name of the host team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGuest:(NSNumber *)isGuest - previousValue:(DBTEAMLOGTrustedTeamsRequestState *)previousValue - dNewValue:(DBTEAMLOGTrustedTeamsRequestState *)dNewValue - actionDetails:(DBTEAMLOGTrustedTeamsRequestAction *)actionDetails - guestTeamName:(nullable NSString *)guestTeamName - hostTeamName:(nullable NSString *)hostTeamName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param isGuest True for guest, false for host. -/// @param previousValue Previous request state. -/// @param dNewValue New request state. -/// @param actionDetails Action details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsGuest:(NSNumber *)isGuest - previousValue:(DBTEAMLOGTrustedTeamsRequestState *)previousValue - dNewValue:(DBTEAMLOGTrustedTeamsRequestState *)dNewValue - actionDetails:(DBTEAMLOGTrustedTeamsRequestAction *)actionDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminChangeStatusDetails` struct. -/// -@interface DBTEAMLOGGuestAdminChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGuestAdminChangeStatusDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGuestAdminChangeStatusDetails` -/// object. -/// -+ (DBTEAMLOGGuestAdminChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminChangeStatusType.h deleted file mode 100644 index 180a2706..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminChangeStatusType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminChangeStatusType` struct. -/// -@interface DBTEAMLOGGuestAdminChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGGuestAdminChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGGuestAdminChangeStatusType` -/// object. -/// -+ (DBTEAMLOGGuestAdminChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h deleted file mode 100644 index 5cbeef0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedInViaTrustedTeamsDetails` struct. -/// -/// Started trusted team admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails : NSObject - -#pragma mark - Instance fields - -/// Host team name. -@property (nonatomic, readonly, copy, nullable) NSString *teamName; - -/// Trusted team name. -@property (nonatomic, readonly, copy, nullable) NSString *trustedTeamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName Host team name. -/// @param trustedTeamName Trusted team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(nullable NSString *)teamName trustedTeamName:(nullable NSString *)trustedTeamName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedInViaTrustedTeamsDetails` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails` object. -/// -+ (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h deleted file mode 100644 index fdb2ef80..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedInViaTrustedTeamsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedInViaTrustedTeamsType` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedInViaTrustedTeamsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType` object. -/// -+ (DBTEAMLOGGuestAdminSignedInViaTrustedTeamsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h deleted file mode 100644 index fa379ae1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedOutViaTrustedTeamsDetails` struct. -/// -/// Ended trusted team admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails : NSObject - -#pragma mark - Instance fields - -/// Host team name. -@property (nonatomic, readonly, copy, nullable) NSString *teamName; - -/// Trusted team name. -@property (nonatomic, readonly, copy, nullable) NSString *trustedTeamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName Host team name. -/// @param trustedTeamName Trusted team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(nullable NSString *)teamName trustedTeamName:(nullable NSString *)trustedTeamName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedOutViaTrustedTeamsDetails` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails` object. -/// -+ (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h deleted file mode 100644 index 8560a890..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GuestAdminSignedOutViaTrustedTeamsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GuestAdminSignedOutViaTrustedTeamsType` -/// struct. -/// -@interface DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *)instance; - -/// -/// Deserializes `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType` object. -/// -+ (DBTEAMLOGGuestAdminSignedOutViaTrustedTeamsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIdentifierType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIdentifierType.h deleted file mode 100644 index 14a73a6d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIdentifierType.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIdentifierType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IdentifierType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIdentifierType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGIdentifierTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGIdentifierType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGIdentifierTypeTag) { - /// (no description). - DBTEAMLOGIdentifierTypeEmail, - - /// (no description). - DBTEAMLOGIdentifierTypeFacebookProfileName, - - /// (no description). - DBTEAMLOGIdentifierTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGIdentifierTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "email". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail; - -/// -/// Initializes union class with tag state of "facebook_profile_name". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFacebookProfileName; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves whether the union's current tag state has value -/// "facebook_profile_name". -/// -/// @return Whether the union's current tag state has value -/// "facebook_profile_name". -/// -- (BOOL)isFacebookProfileName; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGIdentifierType` union. -/// -@interface DBTEAMLOGIdentifierTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIdentifierType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIdentifierType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIdentifierType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIdentifierType *)instance; - -/// -/// Deserializes `DBTEAMLOGIdentifierType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIdentifierType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIdentifierType` object. -/// -+ (DBTEAMLOGIdentifierType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationConnectedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationConnectedDetails.h deleted file mode 100644 index 980a307f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationConnectedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationConnectedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationConnectedDetails` struct. -/// -/// Connected integration for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationConnectedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the third-party integration. -@property (nonatomic, readonly, copy) NSString *integrationName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param integrationName Name of the third-party integration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationName:(NSString *)integrationName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationConnectedDetails` struct. -/// -@interface DBTEAMLOGIntegrationConnectedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationConnectedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationConnectedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationConnectedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationConnectedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationConnectedDetails` -/// object. -/// -+ (DBTEAMLOGIntegrationConnectedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationConnectedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationConnectedType.h deleted file mode 100644 index 185db920..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationConnectedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationConnectedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationConnectedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationConnectedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationConnectedType` struct. -/// -@interface DBTEAMLOGIntegrationConnectedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationConnectedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationConnectedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationConnectedType *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationConnectedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationConnectedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationConnectedType` object. -/// -+ (DBTEAMLOGIntegrationConnectedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationDisconnectedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationDisconnectedDetails.h deleted file mode 100644 index 214dd162..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationDisconnectedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationDisconnectedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationDisconnectedDetails` struct. -/// -/// Disconnected integration for member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationDisconnectedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the third-party integration. -@property (nonatomic, readonly, copy) NSString *integrationName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param integrationName Name of the third-party integration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationName:(NSString *)integrationName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationDisconnectedDetails` struct. -/// -@interface DBTEAMLOGIntegrationDisconnectedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationDisconnectedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationDisconnectedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationDisconnectedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationDisconnectedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationDisconnectedDetails` -/// object. -/// -+ (DBTEAMLOGIntegrationDisconnectedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationDisconnectedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationDisconnectedType.h deleted file mode 100644 index af7c99b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationDisconnectedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationDisconnectedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationDisconnectedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationDisconnectedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationDisconnectedType` struct. -/// -@interface DBTEAMLOGIntegrationDisconnectedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationDisconnectedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationDisconnectedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationDisconnectedType *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationDisconnectedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationDisconnectedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationDisconnectedType` -/// object. -/// -+ (DBTEAMLOGIntegrationDisconnectedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicy.h deleted file mode 100644 index 11c6a35c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationPolicy` union. -/// -/// Policy for controlling whether a service integration is enabled for the -/// team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGIntegrationPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGIntegrationPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGIntegrationPolicyTag) { - /// (no description). - DBTEAMLOGIntegrationPolicyDisabled, - - /// (no description). - DBTEAMLOGIntegrationPolicyEnabled, - - /// (no description). - DBTEAMLOGIntegrationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGIntegrationPolicy` union. -/// -@interface DBTEAMLOGIntegrationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationPolicy` object. -/// -+ (DBTEAMLOGIntegrationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicyChangedDetails.h deleted file mode 100644 index 1efc05d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicyChangedDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationPolicy; -@class DBTEAMLOGIntegrationPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationPolicyChangedDetails` struct. -/// -/// Changed integration policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Name of the third-party integration. -@property (nonatomic, readonly, copy) NSString *integrationName; - -/// New integration policy. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicy *dNewValue; - -/// Previous integration policy. -@property (nonatomic, readonly) DBTEAMLOGIntegrationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param integrationName Name of the third-party integration. -/// @param dNewValue New integration policy. -/// @param previousValue Previous integration policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIntegrationName:(NSString *)integrationName - dNewValue:(DBTEAMLOGIntegrationPolicy *)dNewValue - previousValue:(DBTEAMLOGIntegrationPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGIntegrationPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGIntegrationPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGIntegrationPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicyChangedType.h deleted file mode 100644 index 3a3c59e2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGIntegrationPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGIntegrationPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IntegrationPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGIntegrationPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IntegrationPolicyChangedType` struct. -/// -@interface DBTEAMLOGIntegrationPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGIntegrationPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGIntegrationPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGIntegrationPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGIntegrationPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGIntegrationPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGIntegrationPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGIntegrationPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicy.h deleted file mode 100644 index 066a8534..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteAcceptanceEmailPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteAcceptanceEmailPolicy` union. -/// -/// Policy for deciding whether team admins receive email when an invitation to -/// join the team is accepted -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGInviteAcceptanceEmailPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGInviteAcceptanceEmailPolicyTag) { - /// (no description). - DBTEAMLOGInviteAcceptanceEmailPolicyDisabled, - - /// (no description). - DBTEAMLOGInviteAcceptanceEmailPolicyEnabled, - - /// (no description). - DBTEAMLOGInviteAcceptanceEmailPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// union. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteAcceptanceEmailPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteAcceptanceEmailPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteAcceptanceEmailPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGInviteAcceptanceEmailPolicy` -/// object. -/// -+ (DBTEAMLOGInviteAcceptanceEmailPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h deleted file mode 100644 index cd32f814..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteAcceptanceEmailPolicy; -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteAcceptanceEmailPolicyChangedDetails` struct. -/// -/// Changed invite accept email policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly) DBTEAMLOGInviteAcceptanceEmailPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGInviteAcceptanceEmailPolicy *)dNewValue - previousValue:(DBTEAMLOGInviteAcceptanceEmailPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteAcceptanceEmailPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails` object. -/// -+ (DBTEAMLOGInviteAcceptanceEmailPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h deleted file mode 100644 index 1079fb57..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteAcceptanceEmailPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteAcceptanceEmailPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteAcceptanceEmailPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `InviteAcceptanceEmailPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGInviteAcceptanceEmailPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGInviteAcceptanceEmailPolicyChangedType` object. -/// -+ (DBTEAMLOGInviteAcceptanceEmailPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteMethod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteMethod.h deleted file mode 100644 index 46c20d81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGInviteMethod.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `InviteMethod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGInviteMethod : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGInviteMethodTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGInviteMethod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGInviteMethodTag) { - /// (no description). - DBTEAMLOGInviteMethodAutoApprove, - - /// (no description). - DBTEAMLOGInviteMethodInviteLink, - - /// (no description). - DBTEAMLOGInviteMethodMemberInvite, - - /// (no description). - DBTEAMLOGInviteMethodMovedFromAnotherTeam, - - /// (no description). - DBTEAMLOGInviteMethodOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGInviteMethodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "auto_approve". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutoApprove; - -/// -/// Initializes union class with tag state of "invite_link". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteLink; - -/// -/// Initializes union class with tag state of "member_invite". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInvite; - -/// -/// Initializes union class with tag state of "moved_from_another_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMovedFromAnotherTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "auto_approve". -/// -/// @return Whether the union's current tag state has value "auto_approve". -/// -- (BOOL)isAutoApprove; - -/// -/// Retrieves whether the union's current tag state has value "invite_link". -/// -/// @return Whether the union's current tag state has value "invite_link". -/// -- (BOOL)isInviteLink; - -/// -/// Retrieves whether the union's current tag state has value "member_invite". -/// -/// @return Whether the union's current tag state has value "member_invite". -/// -- (BOOL)isMemberInvite; - -/// -/// Retrieves whether the union's current tag state has value -/// "moved_from_another_team". -/// -/// @return Whether the union's current tag state has value -/// "moved_from_another_team". -/// -- (BOOL)isMovedFromAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGInviteMethod` union. -/// -@interface DBTEAMLOGInviteMethodSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGInviteMethod` instances. -/// -/// @param instance An instance of the `DBTEAMLOGInviteMethod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteMethod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGInviteMethod *)instance; - -/// -/// Deserializes `DBTEAMLOGInviteMethod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGInviteMethod` API object. -/// -/// @return An instantiation of the `DBTEAMLOGInviteMethod` object. -/// -+ (DBTEAMLOGInviteMethod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGJoinTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGJoinTeamDetails.h deleted file mode 100644 index 20713114..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGJoinTeamDetails.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFolderLogInfo; -@class DBTEAMLOGJoinTeamDetails; -@class DBTEAMLOGLinkedDeviceLogInfo; -@class DBTEAMLOGUserLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `JoinTeamDetails` struct. -/// -/// Additional information relevant when a new member joins the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGJoinTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Linked applications. (Deprecated) Please use has_linked_apps boolean field -/// instead. -@property (nonatomic, readonly) NSArray *linkedApps; - -/// Linked devices. (Deprecated) Please use has_linked_devices boolean field -/// instead. -@property (nonatomic, readonly) NSArray *linkedDevices; - -/// Linked shared folders. (Deprecated) Please use has_linked_shared_folders -/// boolean field instead. -@property (nonatomic, readonly) NSArray *linkedSharedFolders; - -/// (Deprecated) True if the linked_apps list was truncated to the maximum -/// supported length (50). -@property (nonatomic, readonly, nullable) NSNumber *wasLinkedAppsTruncated; - -/// (Deprecated) True if the linked_devices list was truncated to the maximum -/// supported length (50). -@property (nonatomic, readonly, nullable) NSNumber *wasLinkedDevicesTruncated; - -/// (Deprecated) True if the linked_shared_folders list was truncated to the -/// maximum supported length (50). -@property (nonatomic, readonly, nullable) NSNumber *wasLinkedSharedFoldersTruncated; - -/// True if the user had linked apps at event time. -@property (nonatomic, readonly, nullable) NSNumber *hasLinkedApps; - -/// True if the user had linked apps at event time. -@property (nonatomic, readonly, nullable) NSNumber *hasLinkedDevices; - -/// True if the user had linked shared folders at event time. -@property (nonatomic, readonly, nullable) NSNumber *hasLinkedSharedFolders; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkedApps Linked applications. (Deprecated) Please use -/// has_linked_apps boolean field instead. -/// @param linkedDevices Linked devices. (Deprecated) Please use -/// has_linked_devices boolean field instead. -/// @param linkedSharedFolders Linked shared folders. (Deprecated) Please use -/// has_linked_shared_folders boolean field instead. -/// @param wasLinkedAppsTruncated (Deprecated) True if the linked_apps list was -/// truncated to the maximum supported length (50). -/// @param wasLinkedDevicesTruncated (Deprecated) True if the linked_devices -/// list was truncated to the maximum supported length (50). -/// @param wasLinkedSharedFoldersTruncated (Deprecated) True if the -/// linked_shared_folders list was truncated to the maximum supported length -/// (50). -/// @param hasLinkedApps True if the user had linked apps at event time. -/// @param hasLinkedDevices True if the user had linked apps at event time. -/// @param hasLinkedSharedFolders True if the user had linked shared folders at -/// event time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkedApps:(NSArray *)linkedApps - linkedDevices:(NSArray *)linkedDevices - linkedSharedFolders:(NSArray *)linkedSharedFolders - wasLinkedAppsTruncated:(nullable NSNumber *)wasLinkedAppsTruncated - wasLinkedDevicesTruncated:(nullable NSNumber *)wasLinkedDevicesTruncated - wasLinkedSharedFoldersTruncated:(nullable NSNumber *)wasLinkedSharedFoldersTruncated - hasLinkedApps:(nullable NSNumber *)hasLinkedApps - hasLinkedDevices:(nullable NSNumber *)hasLinkedDevices - hasLinkedSharedFolders:(nullable NSNumber *)hasLinkedSharedFolders; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param linkedApps Linked applications. (Deprecated) Please use -/// has_linked_apps boolean field instead. -/// @param linkedDevices Linked devices. (Deprecated) Please use -/// has_linked_devices boolean field instead. -/// @param linkedSharedFolders Linked shared folders. (Deprecated) Please use -/// has_linked_shared_folders boolean field instead. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkedApps:(NSArray *)linkedApps - linkedDevices:(NSArray *)linkedDevices - linkedSharedFolders:(NSArray *)linkedSharedFolders; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `JoinTeamDetails` struct. -/// -@interface DBTEAMLOGJoinTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGJoinTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGJoinTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGJoinTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGJoinTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGJoinTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGJoinTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGJoinTeamDetails` object. -/// -+ (DBTEAMLOGJoinTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLabelType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLabelType.h deleted file mode 100644 index db75537f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLabelType.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LabelType` union. -/// -/// Label type -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLabelType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLabelTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGLabelType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLabelTypeTag) { - /// (no description). - DBTEAMLOGLabelTypePersonalInformation, - - /// (no description). - DBTEAMLOGLabelTypeTestOnly, - - /// (no description). - DBTEAMLOGLabelTypeUserDefinedTag, - - /// (no description). - DBTEAMLOGLabelTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLabelTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "personal_information". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersonalInformation; - -/// -/// Initializes union class with tag state of "test_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTestOnly; - -/// -/// Initializes union class with tag state of "user_defined_tag". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDefinedTag; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "personal_information". -/// -/// @return Whether the union's current tag state has value -/// "personal_information". -/// -- (BOOL)isPersonalInformation; - -/// -/// Retrieves whether the union's current tag state has value "test_only". -/// -/// @return Whether the union's current tag state has value "test_only". -/// -- (BOOL)isTestOnly; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_defined_tag". -/// -/// @return Whether the union's current tag state has value "user_defined_tag". -/// -- (BOOL)isUserDefinedTag; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLabelType` union. -/// -@interface DBTEAMLOGLabelTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLabelType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLabelType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLabelType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLabelType *)instance; - -/// -/// Deserializes `DBTEAMLOGLabelType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLabelType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLabelType` object. -/// -+ (DBTEAMLOGLabelType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegacyDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegacyDeviceSessionLogInfo.h deleted file mode 100644 index b2932482..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegacyDeviceSessionLogInfo.h +++ /dev/null @@ -1,146 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMLOGLegacyDeviceSessionLogInfo; -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegacyDeviceSessionLogInfo` struct. -/// -/// Information on sessions, in legacy format -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegacyDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGSessionLogInfo *sessionInfo; - -/// The device name. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// Is device managed by emm. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged; - -/// Information on the hosting platform. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *platform; - -/// The mac address of the last activity from this session. Might be missing due -/// to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *macAddress; - -/// The hosting OS version. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *osVersion; - -/// Information on the hosting device type. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, copy, nullable) NSString *deviceType; - -/// The Dropbox client version. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// Alternative unique device session id, instead of session id field. Might be -/// missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *legacyUniqId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Session unique id. -/// @param displayName The device name. Might be missing due to historical data -/// gap. -/// @param isEmmManaged Is device managed by emm. Might be missing due to -/// historical data gap. -/// @param platform Information on the hosting platform. Might be missing due to -/// historical data gap. -/// @param macAddress The mac address of the last activity from this session. -/// Might be missing due to historical data gap. -/// @param osVersion The hosting OS version. Might be missing due to historical -/// data gap. -/// @param deviceType Information on the hosting device type. Might be missing -/// due to historical data gap. -/// @param clientVersion The Dropbox client version. Might be missing due to -/// historical data gap. -/// @param legacyUniqId Alternative unique device session id, instead of session -/// id field. Might be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGSessionLogInfo *)sessionInfo - displayName:(nullable NSString *)displayName - isEmmManaged:(nullable NSNumber *)isEmmManaged - platform:(nullable NSString *)platform - macAddress:(nullable NSString *)macAddress - osVersion:(nullable NSString *)osVersion - deviceType:(nullable NSString *)deviceType - clientVersion:(nullable NSString *)clientVersion - legacyUniqId:(nullable NSString *)legacyUniqId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegacyDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGLegacyDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegacyDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegacyDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegacyDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegacyDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGLegacyDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegacyDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegacyDeviceSessionLogInfo` -/// object. -/// -+ (DBTEAMLOGLegacyDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsActivateAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsActivateAHoldDetails.h deleted file mode 100644 index 48652aab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsActivateAHoldDetails.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsActivateAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsActivateAHoldDetails` struct. -/// -/// Activated a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Hold start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Hold end date. -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param startDate Hold start date. -/// @param endDate Hold end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - startDate:(NSDate *)startDate - endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param startDate Hold start date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name startDate:(NSDate *)startDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsActivateAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsActivateAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsActivateAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsActivateAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsActivateAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsActivateAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsActivateAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsActivateAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsActivateAHoldType.h deleted file mode 100644 index f662fac8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsActivateAHoldType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsActivateAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsActivateAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsActivateAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsActivateAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsActivateAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsActivateAHoldType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsActivateAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsActivateAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsActivateAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsActivateAHoldType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsActivateAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsAddMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsAddMembersDetails.h deleted file mode 100644 index 862414c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsAddMembersDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsAddMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsAddMembersDetails` struct. -/// -/// Added members to a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsAddMembersDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsAddMembersDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsAddMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsAddMembersDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsAddMembersDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsAddMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsAddMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsAddMembersDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsAddMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsAddMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsAddMembersType.h deleted file mode 100644 index 60043106..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsAddMembersType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsAddMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsAddMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsAddMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsAddMembersType` struct. -/// -@interface DBTEAMLOGLegalHoldsAddMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsAddMembersType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsAddMembersType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsAddMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsAddMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsAddMembersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsAddMembersType` object. -/// -+ (DBTEAMLOGLegalHoldsAddMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h deleted file mode 100644 index 5b9338d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldDetailsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldDetailsDetails` struct. -/// -/// Edited details for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Previous details. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New details. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param previousValue Previous details. -/// @param dNewValue New details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldDetailsDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsDetails` object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldDetailsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsType.h deleted file mode 100644 index c2d7d4ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldDetailsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldDetailsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldDetailsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldDetailsType` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldDetailsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldDetailsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldDetailsType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldDetailsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldDetailsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsChangeHoldDetailsType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldDetailsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldNameDetails.h deleted file mode 100644 index 86142fd1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldNameDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldNameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldNameDetails` struct. -/// -/// Renamed a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Previous Name. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New Name. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param previousValue Previous Name. -/// @param dNewValue New Name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - previousValue:(NSString *)previousValue - dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldNameDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldNameDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsChangeHoldNameDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldNameType.h deleted file mode 100644 index f2748fa9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsChangeHoldNameType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsChangeHoldNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsChangeHoldNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsChangeHoldNameType` struct. -/// -@interface DBTEAMLOGLegalHoldsChangeHoldNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsChangeHoldNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsChangeHoldNameType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsChangeHoldNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsChangeHoldNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsChangeHoldNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsChangeHoldNameType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsChangeHoldNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportAHoldDetails.h deleted file mode 100644 index a46b13f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportAHoldDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportAHoldDetails` struct. -/// -/// Exported hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy, nullable) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - exportName:(nullable NSString *)exportName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportAHoldType.h deleted file mode 100644 index c427ccd6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportAHoldType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportAHoldType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportAHoldType` object. -/// -+ (DBTEAMLOGLegalHoldsExportAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportCancelledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportCancelledDetails.h deleted file mode 100644 index d7552fd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportCancelledDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportCancelledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportCancelledDetails` struct. -/// -/// Canceled export for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportCancelledDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportCancelledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsExportCancelledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportCancelledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportCancelledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportCancelledDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportCancelledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportCancelledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportCancelledType.h deleted file mode 100644 index 69207642..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportCancelledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportCancelledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportCancelledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportCancelledType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportCancelledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportCancelledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportCancelledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportCancelledType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportCancelledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportCancelledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportCancelledType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportCancelledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportDownloadedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportDownloadedDetails.h deleted file mode 100644 index 05bf8b02..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportDownloadedDetails.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportDownloadedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportDownloadedDetails` struct. -/// -/// Downloaded export for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -/// Part. -@property (nonatomic, readonly, copy, nullable) NSString *part; - -/// Filename. -@property (nonatomic, readonly, copy, nullable) NSString *fileName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// @param part Part. -/// @param fileName Filename. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId - name:(NSString *)name - exportName:(NSString *)exportName - part:(nullable NSString *)part - fileName:(nullable NSString *)fileName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportDownloadedDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportDownloadedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGLegalHoldsExportDownloadedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportDownloadedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportDownloadedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportDownloadedDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportDownloadedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportDownloadedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportDownloadedType.h deleted file mode 100644 index c9fbc323..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportDownloadedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportDownloadedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportDownloadedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportDownloadedType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportDownloadedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportDownloadedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportDownloadedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportDownloadedType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportDownloadedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportDownloadedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportDownloadedType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportDownloadedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportRemovedDetails.h deleted file mode 100644 index 6e255f31..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportRemovedDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportRemovedDetails` struct. -/// -/// Removed export for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Export name. -@property (nonatomic, readonly, copy) NSString *exportName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// @param exportName Export name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name exportName:(NSString *)exportName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportRemovedDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportRemovedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportRemovedDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportRemovedType.h deleted file mode 100644 index 15297b15..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsExportRemovedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsExportRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsExportRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsExportRemovedType` struct. -/// -@interface DBTEAMLOGLegalHoldsExportRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsExportRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsExportRemovedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsExportRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsExportRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsExportRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsExportRemovedType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsExportRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReleaseAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReleaseAHoldDetails.h deleted file mode 100644 index f2bf4b86..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReleaseAHoldDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReleaseAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReleaseAHoldDetails` struct. -/// -/// Released a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReleaseAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReleaseAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReleaseAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReleaseAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReleaseAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReleaseAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsReleaseAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReleaseAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReleaseAHoldType.h deleted file mode 100644 index fb236904..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReleaseAHoldType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReleaseAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReleaseAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReleaseAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsReleaseAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReleaseAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReleaseAHoldType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReleaseAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReleaseAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReleaseAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReleaseAHoldType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsReleaseAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsRemoveMembersDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsRemoveMembersDetails.h deleted file mode 100644 index 030c6073..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsRemoveMembersDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsRemoveMembersDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsRemoveMembersDetails` struct. -/// -/// Removed members from a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsRemoveMembersDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsRemoveMembersDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsRemoveMembersDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsRemoveMembersDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsRemoveMembersDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsRemoveMembersDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsRemoveMembersDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsRemoveMembersType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsRemoveMembersType.h deleted file mode 100644 index 1ce84084..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsRemoveMembersType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsRemoveMembersType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsRemoveMembersType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsRemoveMembersType` struct. -/// -@interface DBTEAMLOGLegalHoldsRemoveMembersTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsRemoveMembersType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsRemoveMembersType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsRemoveMembersType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsRemoveMembersType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsRemoveMembersType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsRemoveMembersType` -/// object. -/// -+ (DBTEAMLOGLegalHoldsRemoveMembersType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReportAHoldDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReportAHoldDetails.h deleted file mode 100644 index efb65246..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReportAHoldDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReportAHoldDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReportAHoldDetails` struct. -/// -/// Created a summary report for a hold. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldDetails : NSObject - -#pragma mark - Instance fields - -/// Hold ID. -@property (nonatomic, readonly, copy) NSString *legalHoldId; - -/// Hold name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param legalHoldId Hold ID. -/// @param name Hold name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldId:(NSString *)legalHoldId name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReportAHoldDetails` struct. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReportAHoldDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReportAHoldDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReportAHoldDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReportAHoldDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReportAHoldDetails` -/// object. -/// -+ (DBTEAMLOGLegalHoldsReportAHoldDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReportAHoldType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReportAHoldType.h deleted file mode 100644 index f88b4b16..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLegalHoldsReportAHoldType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLegalHoldsReportAHoldType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsReportAHoldType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsReportAHoldType` struct. -/// -@interface DBTEAMLOGLegalHoldsReportAHoldTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLegalHoldsReportAHoldType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLegalHoldsReportAHoldType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLegalHoldsReportAHoldType *)instance; - -/// -/// Deserializes `DBTEAMLOGLegalHoldsReportAHoldType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLegalHoldsReportAHoldType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLegalHoldsReportAHoldType` object. -/// -+ (DBTEAMLOGLegalHoldsReportAHoldType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLinkedDeviceLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLinkedDeviceLogInfo.h deleted file mode 100644 index fd024bf9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLinkedDeviceLogInfo.h +++ /dev/null @@ -1,234 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDesktopDeviceSessionLogInfo; -@class DBTEAMLOGLegacyDeviceSessionLogInfo; -@class DBTEAMLOGLinkedDeviceLogInfo; -@class DBTEAMLOGMobileDeviceSessionLogInfo; -@class DBTEAMLOGWebDeviceSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LinkedDeviceLogInfo` union. -/// -/// The device sessions that user is linked to. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLinkedDeviceLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLinkedDeviceLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGLinkedDeviceLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLinkedDeviceLogInfoTag) { - /// desktop device session's details. - DBTEAMLOGLinkedDeviceLogInfoDesktopDeviceSession, - - /// legacy device session's details. - DBTEAMLOGLinkedDeviceLogInfoLegacyDeviceSession, - - /// mobile device session's details. - DBTEAMLOGLinkedDeviceLogInfoMobileDeviceSession, - - /// web device session's details. - DBTEAMLOGLinkedDeviceLogInfoWebDeviceSession, - - /// (no description). - DBTEAMLOGLinkedDeviceLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLinkedDeviceLogInfoTag tag; - -/// desktop device session's details. @note Ensure the `isDesktopDeviceSession` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGDesktopDeviceSessionLogInfo *desktopDeviceSession; - -/// legacy device session's details. @note Ensure the `isLegacyDeviceSession` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGLegacyDeviceSessionLogInfo *legacyDeviceSession; - -/// mobile device session's details. @note Ensure the `isMobileDeviceSession` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) DBTEAMLOGMobileDeviceSessionLogInfo *mobileDeviceSession; - -/// web device session's details. @note Ensure the `isWebDeviceSession` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGWebDeviceSessionLogInfo *webDeviceSession; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "desktop_device_session". -/// -/// Description of the "desktop_device_session" tag state: desktop device -/// session's details. -/// -/// @param desktopDeviceSession desktop device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopDeviceSession:(DBTEAMLOGDesktopDeviceSessionLogInfo *)desktopDeviceSession; - -/// -/// Initializes union class with tag state of "legacy_device_session". -/// -/// Description of the "legacy_device_session" tag state: legacy device -/// session's details. -/// -/// @param legacyDeviceSession legacy device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegacyDeviceSession:(DBTEAMLOGLegacyDeviceSessionLogInfo *)legacyDeviceSession; - -/// -/// Initializes union class with tag state of "mobile_device_session". -/// -/// Description of the "mobile_device_session" tag state: mobile device -/// session's details. -/// -/// @param mobileDeviceSession mobile device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileDeviceSession:(DBTEAMLOGMobileDeviceSessionLogInfo *)mobileDeviceSession; - -/// -/// Initializes union class with tag state of "web_device_session". -/// -/// Description of the "web_device_session" tag state: web device session's -/// details. -/// -/// @param webDeviceSession web device session's details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebDeviceSession:(DBTEAMLOGWebDeviceSessionLogInfo *)webDeviceSession; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "desktop_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `desktopDeviceSession` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "desktop_device_session". -/// -- (BOOL)isDesktopDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "legacy_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `legacyDeviceSession` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "legacy_device_session". -/// -- (BOOL)isLegacyDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "mobile_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `mobileDeviceSession` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "mobile_device_session". -/// -- (BOOL)isMobileDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value -/// "web_device_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webDeviceSession` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "web_device_session". -/// -- (BOOL)isWebDeviceSession; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLinkedDeviceLogInfo` union. -/// -@interface DBTEAMLOGLinkedDeviceLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLinkedDeviceLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLinkedDeviceLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLinkedDeviceLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLinkedDeviceLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGLinkedDeviceLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLinkedDeviceLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLinkedDeviceLogInfo` object. -/// -+ (DBTEAMLOGLinkedDeviceLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLockStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLockStatus.h deleted file mode 100644 index 0ec0b2f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLockStatus.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLockStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LockStatus` union. -/// -/// File lock status -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLockStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLockStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGLockStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLockStatusTag) { - /// (no description). - DBTEAMLOGLockStatusLocked, - - /// (no description). - DBTEAMLOGLockStatusUnlocked, - - /// (no description). - DBTEAMLOGLockStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLockStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "locked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocked; - -/// -/// Initializes union class with tag state of "unlocked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlocked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "locked". -/// -/// @return Whether the union's current tag state has value "locked". -/// -- (BOOL)isLocked; - -/// -/// Retrieves whether the union's current tag state has value "unlocked". -/// -/// @return Whether the union's current tag state has value "unlocked". -/// -- (BOOL)isUnlocked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLockStatus` union. -/// -@interface DBTEAMLOGLockStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLockStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLockStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLockStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLockStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGLockStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLockStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLockStatus` object. -/// -+ (DBTEAMLOGLockStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginFailDetails.h deleted file mode 100644 index a67b2b62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginFailDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFailureDetailsLogInfo; -@class DBTEAMLOGLoginFailDetails; -@class DBTEAMLOGLoginMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginFailDetails` struct. -/// -/// Failed to sign in. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginFailDetails : NSObject - -#pragma mark - Instance fields - -/// Tells if the login device is EMM managed. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged; - -/// Login method. -@property (nonatomic, readonly) DBTEAMLOGLoginMethod *loginMethod; - -/// Error details. -@property (nonatomic, readonly) DBTEAMLOGFailureDetailsLogInfo *errorDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param loginMethod Login method. -/// @param errorDetails Error details. -/// @param isEmmManaged Tells if the login device is EMM managed. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod - errorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails - isEmmManaged:(nullable NSNumber *)isEmmManaged; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param loginMethod Login method. -/// @param errorDetails Error details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod - errorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginFailDetails` struct. -/// -@interface DBTEAMLOGLoginFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginFailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginFailDetails` object. -/// -+ (DBTEAMLOGLoginFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginFailType.h deleted file mode 100644 index 2f5ef3da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginFailType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginFailType` struct. -/// -@interface DBTEAMLOGLoginFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginFailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginFailType` object. -/// -+ (DBTEAMLOGLoginFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginMethod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginMethod.h deleted file mode 100644 index dafbb545..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginMethod.h +++ /dev/null @@ -1,254 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginMethod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginMethod : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGLoginMethodTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGLoginMethod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGLoginMethodTag) { - /// (no description). - DBTEAMLOGLoginMethodAppleOauth, - - /// (no description). - DBTEAMLOGLoginMethodFirstPartyTokenExchange, - - /// (no description). - DBTEAMLOGLoginMethodGoogleOauth, - - /// (no description). - DBTEAMLOGLoginMethodLenovoOauth, - - /// (no description). - DBTEAMLOGLoginMethodPassword, - - /// (no description). - DBTEAMLOGLoginMethodQrCode, - - /// (no description). - DBTEAMLOGLoginMethodSaml, - - /// (no description). - DBTEAMLOGLoginMethodTwoFactorAuthentication, - - /// (no description). - DBTEAMLOGLoginMethodWebSession, - - /// (no description). - DBTEAMLOGLoginMethodOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGLoginMethodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "apple_oauth". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppleOauth; - -/// -/// Initializes union class with tag state of "first_party_token_exchange". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFirstPartyTokenExchange; - -/// -/// Initializes union class with tag state of "google_oauth". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGoogleOauth; - -/// -/// Initializes union class with tag state of "lenovo_oauth". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLenovoOauth; - -/// -/// Initializes union class with tag state of "password". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "qr_code". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithQrCode; - -/// -/// Initializes union class with tag state of "saml". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSaml; - -/// -/// Initializes union class with tag state of "two_factor_authentication". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTwoFactorAuthentication; - -/// -/// Initializes union class with tag state of "web_session". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSession; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "apple_oauth". -/// -/// @return Whether the union's current tag state has value "apple_oauth". -/// -- (BOOL)isAppleOauth; - -/// -/// Retrieves whether the union's current tag state has value -/// "first_party_token_exchange". -/// -/// @return Whether the union's current tag state has value -/// "first_party_token_exchange". -/// -- (BOOL)isFirstPartyTokenExchange; - -/// -/// Retrieves whether the union's current tag state has value "google_oauth". -/// -/// @return Whether the union's current tag state has value "google_oauth". -/// -- (BOOL)isGoogleOauth; - -/// -/// Retrieves whether the union's current tag state has value "lenovo_oauth". -/// -/// @return Whether the union's current tag state has value "lenovo_oauth". -/// -- (BOOL)isLenovoOauth; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value "qr_code". -/// -/// @return Whether the union's current tag state has value "qr_code". -/// -- (BOOL)isQrCode; - -/// -/// Retrieves whether the union's current tag state has value "saml". -/// -/// @return Whether the union's current tag state has value "saml". -/// -- (BOOL)isSaml; - -/// -/// Retrieves whether the union's current tag state has value -/// "two_factor_authentication". -/// -/// @return Whether the union's current tag state has value -/// "two_factor_authentication". -/// -- (BOOL)isTwoFactorAuthentication; - -/// -/// Retrieves whether the union's current tag state has value "web_session". -/// -/// @return Whether the union's current tag state has value "web_session". -/// -- (BOOL)isWebSession; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGLoginMethod` union. -/// -@interface DBTEAMLOGLoginMethodSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginMethod` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginMethod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginMethod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginMethod *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginMethod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginMethod` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginMethod` object. -/// -+ (DBTEAMLOGLoginMethod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginSuccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginSuccessDetails.h deleted file mode 100644 index 4cc0b5df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginSuccessDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginMethod; -@class DBTEAMLOGLoginSuccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginSuccessDetails` struct. -/// -/// Signed in. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginSuccessDetails : NSObject - -#pragma mark - Instance fields - -/// Tells if the login device is EMM managed. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSNumber *isEmmManaged; - -/// Login method. -@property (nonatomic, readonly) DBTEAMLOGLoginMethod *loginMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param loginMethod Login method. -/// @param isEmmManaged Tells if the login device is EMM managed. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod isEmmManaged:(nullable NSNumber *)isEmmManaged; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param loginMethod Login method. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginMethod:(DBTEAMLOGLoginMethod *)loginMethod; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginSuccessDetails` struct. -/// -@interface DBTEAMLOGLoginSuccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginSuccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginSuccessDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginSuccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginSuccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginSuccessDetails` object. -/// -+ (DBTEAMLOGLoginSuccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginSuccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginSuccessType.h deleted file mode 100644 index ddda6bd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLoginSuccessType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLoginSuccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LoginSuccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLoginSuccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LoginSuccessType` struct. -/// -@interface DBTEAMLOGLoginSuccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLoginSuccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLoginSuccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLoginSuccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGLoginSuccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLoginSuccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLoginSuccessType` object. -/// -+ (DBTEAMLOGLoginSuccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLogoutDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLogoutDetails.h deleted file mode 100644 index 12ff2e1f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLogoutDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLogoutDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LogoutDetails` struct. -/// -/// Signed out. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLogoutDetails : NSObject - -#pragma mark - Instance fields - -/// Login session id. -@property (nonatomic, readonly, copy, nullable) NSString *loginId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param loginId Login session id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLoginId:(nullable NSString *)loginId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LogoutDetails` struct. -/// -@interface DBTEAMLOGLogoutDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLogoutDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLogoutDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLogoutDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGLogoutDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLogoutDetails` object. -/// -+ (DBTEAMLOGLogoutDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLogoutType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLogoutType.h deleted file mode 100644 index 3f8b11cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGLogoutType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLogoutType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LogoutType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGLogoutType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LogoutType` struct. -/// -@interface DBTEAMLOGLogoutTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGLogoutType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGLogoutType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGLogoutType *)instance; - -/// -/// Deserializes `DBTEAMLOGLogoutType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGLogoutType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGLogoutType` object. -/// -+ (DBTEAMLOGLogoutType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddExternalIdDetails.h deleted file mode 100644 index 59b20422..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddExternalIdDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddExternalIdDetails` struct. -/// -/// Added an external ID for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddExternalIdDetails` struct. -/// -@interface DBTEAMLOGMemberAddExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddExternalIdDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGMemberAddExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddExternalIdType.h deleted file mode 100644 index 22b0e1ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddExternalIdType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddExternalIdType` struct. -/// -@interface DBTEAMLOGMemberAddExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddExternalIdType` object. -/// -+ (DBTEAMLOGMemberAddExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddNameDetails.h deleted file mode 100644 index b55a04fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddNameDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddNameDetails; -@class DBTEAMLOGUserNameLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddNameDetails` struct. -/// -/// Added team member name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddNameDetails : NSObject - -#pragma mark - Instance fields - -/// New user's name. -@property (nonatomic, readonly) DBTEAMLOGUserNameLogInfo *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New user's name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGUserNameLogInfo *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddNameDetails` struct. -/// -@interface DBTEAMLOGMemberAddNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddNameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddNameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddNameDetails` object. -/// -+ (DBTEAMLOGMemberAddNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddNameType.h deleted file mode 100644 index 82fc7b72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberAddNameType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberAddNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberAddNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddNameType` struct. -/// -@interface DBTEAMLOGMemberAddNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberAddNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberAddNameType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberAddNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberAddNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberAddNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberAddNameType` object. -/// -+ (DBTEAMLOGMemberAddNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeAdminRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeAdminRoleDetails.h deleted file mode 100644 index abc04a88..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeAdminRoleDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAdminRole; -@class DBTEAMLOGMemberChangeAdminRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeAdminRoleDetails` struct. -/// -/// Changed team member admin role. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeAdminRoleDetails : NSObject - -#pragma mark - Instance fields - -/// New admin role. This field is relevant when the admin role is changed or -/// whenthe user role changes from no admin rights to with admin rights. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminRole *dNewValue; - -/// Previous admin role. This field is relevant when the admin role is changed -/// or when the admin role is removed. -@property (nonatomic, readonly, nullable) DBTEAMLOGAdminRole *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New admin role. This field is relevant when the admin role -/// is changed or whenthe user role changes from no admin rights to with admin -/// rights. -/// @param previousValue Previous admin role. This field is relevant when the -/// admin role is changed or when the admin role is removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGAdminRole *)dNewValue - previousValue:(nullable DBTEAMLOGAdminRole *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeAdminRoleDetails` struct. -/// -@interface DBTEAMLOGMemberChangeAdminRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeAdminRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeAdminRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeAdminRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeAdminRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeAdminRoleDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeAdminRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeAdminRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeAdminRoleType.h deleted file mode 100644 index d7679a4b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeAdminRoleType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeAdminRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeAdminRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeAdminRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeAdminRoleType` struct. -/// -@interface DBTEAMLOGMemberChangeAdminRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeAdminRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeAdminRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeAdminRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeAdminRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeAdminRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeAdminRoleType` object. -/// -+ (DBTEAMLOGMemberChangeAdminRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeEmailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeEmailDetails.h deleted file mode 100644 index 388a8ee0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeEmailDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeEmailDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeEmailDetails` struct. -/// -/// Changed team member email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeEmailDetails : NSObject - -#pragma mark - Instance fields - -/// New email. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Previous email. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New email. -/// @param previousValue Previous email. Might be missing due to historical data -/// gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(nullable NSString *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeEmailDetails` struct. -/// -@interface DBTEAMLOGMemberChangeEmailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeEmailDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeEmailDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeEmailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeEmailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeEmailDetails` object. -/// -+ (DBTEAMLOGMemberChangeEmailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeEmailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeEmailType.h deleted file mode 100644 index 300ff8c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeEmailType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeEmailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeEmailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeEmailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeEmailType` struct. -/// -@interface DBTEAMLOGMemberChangeEmailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeEmailType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeEmailType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeEmailType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeEmailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeEmailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeEmailType` object. -/// -+ (DBTEAMLOGMemberChangeEmailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeExternalIdDetails.h deleted file mode 100644 index 34e4d81f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeExternalIdDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeExternalIdDetails` struct. -/// -/// Changed the external ID for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Current external id. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue Current external id. -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeExternalIdDetails` struct. -/// -@interface DBTEAMLOGMemberChangeExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeExternalIdType.h deleted file mode 100644 index 65a91a13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeExternalIdType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeExternalIdType` struct. -/// -@interface DBTEAMLOGMemberChangeExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeExternalIdType` -/// object. -/// -+ (DBTEAMLOGMemberChangeExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeMembershipTypeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeMembershipTypeDetails.h deleted file mode 100644 index c50e0078..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeMembershipTypeDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeMembershipTypeDetails; -@class DBTEAMLOGTeamMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeMembershipTypeDetails` struct. -/// -/// Changed membership type (limited/full) of member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeDetails : NSObject - -#pragma mark - Instance fields - -/// Previous membership type. -@property (nonatomic, readonly) DBTEAMLOGTeamMembershipType *prevValue; - -/// New membership type. -@property (nonatomic, readonly) DBTEAMLOGTeamMembershipType *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param prevValue Previous membership type. -/// @param dNewValue New membership type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrevValue:(DBTEAMLOGTeamMembershipType *)prevValue - dNewValue:(DBTEAMLOGTeamMembershipType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeMembershipTypeDetails` struct. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeMembershipTypeDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberChangeMembershipTypeDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeMembershipTypeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeMembershipTypeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeMembershipTypeDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeMembershipTypeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeMembershipTypeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeMembershipTypeType.h deleted file mode 100644 index 89c38e55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeMembershipTypeType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeMembershipTypeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeMembershipTypeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeMembershipTypeType` struct. -/// -@interface DBTEAMLOGMemberChangeMembershipTypeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeMembershipTypeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeMembershipTypeType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeMembershipTypeType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeMembershipTypeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeMembershipTypeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeMembershipTypeType` -/// object. -/// -+ (DBTEAMLOGMemberChangeMembershipTypeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeNameDetails.h deleted file mode 100644 index ab4a1f14..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeNameDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeNameDetails; -@class DBTEAMLOGUserNameLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeNameDetails` struct. -/// -/// Changed team member name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeNameDetails : NSObject - -#pragma mark - Instance fields - -/// New user's name. -@property (nonatomic, readonly) DBTEAMLOGUserNameLogInfo *dNewValue; - -/// Previous user's name. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserNameLogInfo *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New user's name. -/// @param previousValue Previous user's name. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGUserNameLogInfo *)dNewValue - previousValue:(nullable DBTEAMLOGUserNameLogInfo *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New user's name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGUserNameLogInfo *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeNameDetails` struct. -/// -@interface DBTEAMLOGMemberChangeNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeNameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeNameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeNameDetails` object. -/// -+ (DBTEAMLOGMemberChangeNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeNameType.h deleted file mode 100644 index c20f441e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeNameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeNameType` struct. -/// -@interface DBTEAMLOGMemberChangeNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeNameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeNameType` object. -/// -+ (DBTEAMLOGMemberChangeNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeResellerRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeResellerRoleDetails.h deleted file mode 100644 index 94e46dd3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeResellerRoleDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeResellerRoleDetails; -@class DBTEAMLOGResellerRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeResellerRoleDetails` struct. -/// -/// Changed team member reseller role. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeResellerRoleDetails : NSObject - -#pragma mark - Instance fields - -/// New reseller role. This field is relevant when the reseller role is changed. -@property (nonatomic, readonly) DBTEAMLOGResellerRole *dNewValue; - -/// Previous reseller role. This field is relevant when the reseller role is -/// changed or when the reseller role is removed. -@property (nonatomic, readonly) DBTEAMLOGResellerRole *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New reseller role. This field is relevant when the reseller -/// role is changed. -/// @param previousValue Previous reseller role. This field is relevant when the -/// reseller role is changed or when the reseller role is removed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGResellerRole *)dNewValue - previousValue:(DBTEAMLOGResellerRole *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeResellerRoleDetails` struct. -/// -@interface DBTEAMLOGMemberChangeResellerRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeResellerRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberChangeResellerRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeResellerRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeResellerRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeResellerRoleDetails` -/// object. -/// -+ (DBTEAMLOGMemberChangeResellerRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeResellerRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeResellerRoleType.h deleted file mode 100644 index 16b8ec6e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeResellerRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeResellerRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeResellerRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeResellerRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeResellerRoleType` struct. -/// -@interface DBTEAMLOGMemberChangeResellerRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeResellerRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeResellerRoleType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeResellerRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeResellerRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeResellerRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeResellerRoleType` -/// object. -/// -+ (DBTEAMLOGMemberChangeResellerRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeStatusDetails.h deleted file mode 100644 index dd24e527..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeStatusDetails.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActionDetails; -@class DBTEAMLOGMemberChangeStatusDetails; -@class DBTEAMLOGMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeStatusDetails` struct. -/// -/// Changed member status (invited, joined, suspended, etc.). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// Previous member status. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMemberStatus *previousValue; - -/// New member status. -@property (nonatomic, readonly) DBTEAMLOGMemberStatus *dNewValue; - -/// Additional information indicating the action taken that caused status -/// change. -@property (nonatomic, readonly, nullable) DBTEAMLOGActionDetails *action; - -/// The user's new team name. This field is relevant when the user is -/// transferred off the team. -@property (nonatomic, readonly, copy, nullable) NSString *dNewTeam; - -/// The user's previous team name. This field is relevant when the user is -/// transferred onto the team. -@property (nonatomic, readonly, copy, nullable) NSString *previousTeam; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New member status. -/// @param previousValue Previous member status. Might be missing due to -/// historical data gap. -/// @param action Additional information indicating the action taken that caused -/// status change. -/// @param dNewTeam The user's new team name. This field is relevant when the -/// user is transferred off the team. -/// @param previousTeam The user's previous team name. This field is relevant -/// when the user is transferred onto the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberStatus *)dNewValue - previousValue:(nullable DBTEAMLOGMemberStatus *)previousValue - action:(nullable DBTEAMLOGActionDetails *)action - dNewTeam:(nullable NSString *)dNewTeam - previousTeam:(nullable NSString *)previousTeam; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New member status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeStatusDetails` struct. -/// -@interface DBTEAMLOGMemberChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeStatusDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeStatusDetails` object. -/// -+ (DBTEAMLOGMemberChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeStatusType.h deleted file mode 100644 index 7b315a6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberChangeStatusType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberChangeStatusType` struct. -/// -@interface DBTEAMLOGMemberChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberChangeStatusType` object. -/// -+ (DBTEAMLOGMemberChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteManualContactsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteManualContactsDetails.h deleted file mode 100644 index 2598fc0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteManualContactsDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteManualContactsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteManualContactsDetails` struct. -/// -/// Cleared manually added contacts. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteManualContactsDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteManualContactsDetails` struct. -/// -@interface DBTEAMLOGMemberDeleteManualContactsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteManualContactsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberDeleteManualContactsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteManualContactsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteManualContactsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteManualContactsDetails` -/// object. -/// -+ (DBTEAMLOGMemberDeleteManualContactsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteManualContactsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteManualContactsType.h deleted file mode 100644 index 7fde19a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteManualContactsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteManualContactsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteManualContactsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteManualContactsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteManualContactsType` struct. -/// -@interface DBTEAMLOGMemberDeleteManualContactsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteManualContactsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberDeleteManualContactsType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteManualContactsType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteManualContactsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteManualContactsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteManualContactsType` -/// object. -/// -+ (DBTEAMLOGMemberDeleteManualContactsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteProfilePhotoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteProfilePhotoDetails.h deleted file mode 100644 index c90fff6b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteProfilePhotoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteProfilePhotoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteProfilePhotoDetails` struct. -/// -/// Deleted team member profile photo. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteProfilePhotoDetails` struct. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteProfilePhotoDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberDeleteProfilePhotoDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteProfilePhotoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteProfilePhotoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteProfilePhotoDetails` -/// object. -/// -+ (DBTEAMLOGMemberDeleteProfilePhotoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteProfilePhotoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteProfilePhotoType.h deleted file mode 100644 index e455e064..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberDeleteProfilePhotoType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberDeleteProfilePhotoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDeleteProfilePhotoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDeleteProfilePhotoType` struct. -/// -@interface DBTEAMLOGMemberDeleteProfilePhotoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberDeleteProfilePhotoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberDeleteProfilePhotoType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberDeleteProfilePhotoType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberDeleteProfilePhotoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberDeleteProfilePhotoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberDeleteProfilePhotoType` -/// object. -/// -+ (DBTEAMLOGMemberDeleteProfilePhotoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h deleted file mode 100644 index e48defbc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPermanentlyDeleteAccountContentsDetails` struct. -/// -/// Permanently deleted contents of deleted team member account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `MemberPermanentlyDeleteAccountContentsDetails` struct. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails` object. -/// -+ (DBTEAMLOGMemberPermanentlyDeleteAccountContentsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h deleted file mode 100644 index 8e677512..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberPermanentlyDeleteAccountContentsType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberPermanentlyDeleteAccountContentsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberPermanentlyDeleteAccountContentsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberPermanentlyDeleteAccountContentsType` -/// struct. -/// -@interface DBTEAMLOGMemberPermanentlyDeleteAccountContentsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberPermanentlyDeleteAccountContentsType` object. -/// -+ (DBTEAMLOGMemberPermanentlyDeleteAccountContentsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveActionType.h deleted file mode 100644 index 7edd982a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveActionType.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRemoveActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRemoveActionType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRemoveActionType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberRemoveActionTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGMemberRemoveActionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberRemoveActionTypeTag) { - /// (no description). - DBTEAMLOGMemberRemoveActionTypeDelete_, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeLeave, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeOffboard, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeOffboardAndRetainTeamFolders, - - /// (no description). - DBTEAMLOGMemberRemoveActionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberRemoveActionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDelete_; - -/// -/// Initializes union class with tag state of "leave". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLeave; - -/// -/// Initializes union class with tag state of "offboard". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOffboard; - -/// -/// Initializes union class with tag state of -/// "offboard_and_retain_team_folders". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOffboardAndRetainTeamFolders; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "delete". -/// -/// @return Whether the union's current tag state has value "delete". -/// -- (BOOL)isDelete_; - -/// -/// Retrieves whether the union's current tag state has value "leave". -/// -/// @return Whether the union's current tag state has value "leave". -/// -- (BOOL)isLeave; - -/// -/// Retrieves whether the union's current tag state has value "offboard". -/// -/// @return Whether the union's current tag state has value "offboard". -/// -- (BOOL)isOffboard; - -/// -/// Retrieves whether the union's current tag state has value -/// "offboard_and_retain_team_folders". -/// -/// @return Whether the union's current tag state has value -/// "offboard_and_retain_team_folders". -/// -- (BOOL)isOffboardAndRetainTeamFolders; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberRemoveActionType` union. -/// -@interface DBTEAMLOGMemberRemoveActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRemoveActionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRemoveActionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRemoveActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRemoveActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveActionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRemoveActionType` object. -/// -+ (DBTEAMLOGMemberRemoveActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveExternalIdDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveExternalIdDetails.h deleted file mode 100644 index f7d78b7b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveExternalIdDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRemoveExternalIdDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRemoveExternalIdDetails` struct. -/// -/// Removed the external ID for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRemoveExternalIdDetails : NSObject - -#pragma mark - Instance fields - -/// Old external id. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Old external id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRemoveExternalIdDetails` struct. -/// -@interface DBTEAMLOGMemberRemoveExternalIdDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRemoveExternalIdDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRemoveExternalIdDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRemoveExternalIdDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRemoveExternalIdDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRemoveExternalIdDetails` -/// object. -/// -+ (DBTEAMLOGMemberRemoveExternalIdDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveExternalIdType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveExternalIdType.h deleted file mode 100644 index 6b48824a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRemoveExternalIdType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRemoveExternalIdType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRemoveExternalIdType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRemoveExternalIdType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRemoveExternalIdType` struct. -/// -@interface DBTEAMLOGMemberRemoveExternalIdTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRemoveExternalIdType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRemoveExternalIdType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRemoveExternalIdType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRemoveExternalIdType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRemoveExternalIdType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRemoveExternalIdType` -/// object. -/// -+ (DBTEAMLOGMemberRemoveExternalIdType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsChangePolicyDetails.h deleted file mode 100644 index d6ac8296..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRequestsChangePolicyDetails; -@class DBTEAMLOGMemberRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRequestsChangePolicyDetails` struct. -/// -/// Changed whether users can find team when not invited. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New member change requests policy. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsPolicy *dNewValue; - -/// Previous member change requests policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMemberRequestsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New member change requests policy. -/// @param previousValue Previous member change requests policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberRequestsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGMemberRequestsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New member change requests policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberRequestsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRequestsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRequestsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberRequestsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRequestsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRequestsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRequestsChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGMemberRequestsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsChangePolicyType.h deleted file mode 100644 index 7cfdfa47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRequestsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRequestsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberRequestsChangePolicyType` struct. -/// -@interface DBTEAMLOGMemberRequestsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRequestsChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRequestsChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRequestsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRequestsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRequestsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGMemberRequestsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsPolicy.h deleted file mode 100644 index 0f049a45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberRequestsPolicy.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberRequestsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberRequestsPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberRequestsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberRequestsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGMemberRequestsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberRequestsPolicyTag) { - /// (no description). - DBTEAMLOGMemberRequestsPolicyAutoAccept, - - /// (no description). - DBTEAMLOGMemberRequestsPolicyDisabled, - - /// (no description). - DBTEAMLOGMemberRequestsPolicyRequireApproval, - - /// (no description). - DBTEAMLOGMemberRequestsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberRequestsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "auto_accept". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAutoAccept; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "require_approval". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequireApproval; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "auto_accept". -/// -/// @return Whether the union's current tag state has value "auto_accept". -/// -- (BOOL)isAutoAccept; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "require_approval". -/// -/// @return Whether the union's current tag state has value "require_approval". -/// -- (BOOL)isRequireApproval; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberRequestsPolicy` union. -/// -@interface DBTEAMLOGMemberRequestsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberRequestsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberRequestsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberRequestsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberRequestsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberRequestsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberRequestsPolicy` object. -/// -+ (DBTEAMLOGMemberRequestsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicy.h deleted file mode 100644 index 5ab0fc58..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicy.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSendInvitePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSendInvitePolicy` union. -/// -/// Policy for controlling whether team members can send team invites -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSendInvitePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberSendInvitePolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGMemberSendInvitePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberSendInvitePolicyTag) { - /// (no description). - DBTEAMLOGMemberSendInvitePolicyDisabled, - - /// (no description). - DBTEAMLOGMemberSendInvitePolicyEveryone, - - /// (no description). - DBTEAMLOGMemberSendInvitePolicySpecificMembers, - - /// (no description). - DBTEAMLOGMemberSendInvitePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "everyone". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryone; - -/// -/// Initializes union class with tag state of "specific_members". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSpecificMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "everyone". -/// -/// @return Whether the union's current tag state has value "everyone". -/// -- (BOOL)isEveryone; - -/// -/// Retrieves whether the union's current tag state has value -/// "specific_members". -/// -/// @return Whether the union's current tag state has value "specific_members". -/// -- (BOOL)isSpecificMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberSendInvitePolicy` union. -/// -@interface DBTEAMLOGMemberSendInvitePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSendInvitePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSendInvitePolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSendInvitePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSendInvitePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSendInvitePolicy` object. -/// -+ (DBTEAMLOGMemberSendInvitePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicyChangedDetails.h deleted file mode 100644 index eff970f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSendInvitePolicy; -@class DBTEAMLOGMemberSendInvitePolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSendInvitePolicyChangedDetails` struct. -/// -/// Changed member send invite policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New team member send invite policy. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicy *dNewValue; - -/// Previous team member send invite policy. -@property (nonatomic, readonly) DBTEAMLOGMemberSendInvitePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team member send invite policy. -/// @param previousValue Previous team member send invite policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberSendInvitePolicy *)dNewValue - previousValue:(DBTEAMLOGMemberSendInvitePolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSendInvitePolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSendInvitePolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSendInvitePolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSendInvitePolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedDetails` object. -/// -+ (DBTEAMLOGMemberSendInvitePolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicyChangedType.h deleted file mode 100644 index 525a3a86..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSendInvitePolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSendInvitePolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSendInvitePolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSendInvitePolicyChangedType` struct. -/// -@interface DBTEAMLOGMemberSendInvitePolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSendInvitePolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSendInvitePolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSendInvitePolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSendInvitePolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSendInvitePolicyChangedType` -/// object. -/// -+ (DBTEAMLOGMemberSendInvitePolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSetProfilePhotoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSetProfilePhotoDetails.h deleted file mode 100644 index 6033db40..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSetProfilePhotoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSetProfilePhotoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSetProfilePhotoDetails` struct. -/// -/// Set team member profile photo. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSetProfilePhotoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSetProfilePhotoDetails` struct. -/// -@interface DBTEAMLOGMemberSetProfilePhotoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSetProfilePhotoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSetProfilePhotoDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSetProfilePhotoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSetProfilePhotoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSetProfilePhotoDetails` -/// object. -/// -+ (DBTEAMLOGMemberSetProfilePhotoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSetProfilePhotoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSetProfilePhotoType.h deleted file mode 100644 index 13ad4812..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSetProfilePhotoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSetProfilePhotoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSetProfilePhotoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSetProfilePhotoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSetProfilePhotoType` struct. -/// -@interface DBTEAMLOGMemberSetProfilePhotoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSetProfilePhotoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSetProfilePhotoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSetProfilePhotoType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSetProfilePhotoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSetProfilePhotoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSetProfilePhotoType` object. -/// -+ (DBTEAMLOGMemberSetProfilePhotoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h deleted file mode 100644 index 8da07bfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddCustomQuotaDetails` struct. -/// -/// Set custom member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails : NSObject - -#pragma mark - Instance fields - -/// New custom quota value in bytes. -@property (nonatomic, readonly) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New custom quota value in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSNumber *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddCustomQuotaDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h deleted file mode 100644 index 38c3e80d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddCustomQuotaType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddCustomQuotaType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddCustomQuotaTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddCustomQuotaType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h deleted file mode 100644 index 3ee051b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddExceptionDetails` struct. -/// -/// Added members to member space limit exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddExceptionDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionType.h deleted file mode 100644 index 89b7922a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsAddExceptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsAddExceptionType` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsAddExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSpaceLimitsAddExceptionType` -/// object. -/// -+ (DBTEAMLOGMemberSpaceLimitsAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h deleted file mode 100644 index 17d683c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails; -@class DBTEAMLOGSpaceCapsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCapsTypePolicyDetails` struct. -/// -/// Changed member space limit type for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous space limit type. -@property (nonatomic, readonly) DBTEAMLOGSpaceCapsType *previousValue; - -/// New space limit type. -@property (nonatomic, readonly) DBTEAMLOGSpaceCapsType *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous space limit type. -/// @param dNewValue New space limit type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSpaceCapsType *)previousValue - dNewValue:(DBTEAMLOGSpaceCapsType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `MemberSpaceLimitsChangeCapsTypePolicyDetails` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h deleted file mode 100644 index 5015577b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCapsTypePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeCapsTypePolicyType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCapsTypePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h deleted file mode 100644 index a05c02a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCustomQuotaDetails` struct. -/// -/// Changed custom member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails : NSObject - -#pragma mark - Instance fields - -/// Previous custom quota value in bytes. -@property (nonatomic, readonly) NSNumber *previousValue; - -/// New custom quota value in bytes. -@property (nonatomic, readonly) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous custom quota value in bytes. -/// @param dNewValue New custom quota value in bytes. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSNumber *)previousValue dNewValue:(NSNumber *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeCustomQuotaDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h deleted file mode 100644 index ce739600..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeCustomQuotaType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeCustomQuotaType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeCustomQuotaType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h deleted file mode 100644 index 4ca8d621..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangePolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangePolicyDetails` struct. -/// -/// Changed team default member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Previous team default limit value in bytes. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSNumber *previousValue; - -/// New team default limit value in bytes. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous team default limit value in bytes. Might be -/// missing due to historical data gap. -/// @param dNewValue New team default limit value in bytes. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSNumber *)previousValue dNewValue:(nullable NSNumber *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyType.h deleted file mode 100644 index 25cd297b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangePolicyType` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSpaceLimitsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h deleted file mode 100644 index 429746d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeStatusDetails; -@class DBTEAMLOGSpaceLimitsStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeStatusDetails` struct. -/// -/// Changed space limit status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// Previous storage quota status. -@property (nonatomic, readonly) DBTEAMLOGSpaceLimitsStatus *previousValue; - -/// New storage quota status. -@property (nonatomic, readonly) DBTEAMLOGSpaceLimitsStatus *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous storage quota status. -/// @param dNewValue New storage quota status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSpaceLimitsStatus *)previousValue - dNewValue:(DBTEAMLOGSpaceLimitsStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeStatusDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusType.h deleted file mode 100644 index fce60205..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsChangeStatusType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsChangeStatusType` struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsChangeStatusType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSpaceLimitsChangeStatusType` -/// object. -/// -+ (DBTEAMLOGMemberSpaceLimitsChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h deleted file mode 100644 index 0e1e91fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveCustomQuotaDetails` struct. -/// -/// Removed custom member space limit. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveCustomQuotaDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h deleted file mode 100644 index 0da71698..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveCustomQuotaType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveCustomQuotaType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveCustomQuotaType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h deleted file mode 100644 index eae2dc96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveExceptionDetails` struct. -/// -/// Removed members from member space limit exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveExceptionDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h deleted file mode 100644 index b8fe0eff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSpaceLimitsRemoveExceptionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSpaceLimitsRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSpaceLimitsRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSpaceLimitsRemoveExceptionType` -/// struct. -/// -@interface DBTEAMLOGMemberSpaceLimitsRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSpaceLimitsRemoveExceptionType` object. -/// -+ (DBTEAMLOGMemberSpaceLimitsRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberStatus.h deleted file mode 100644 index fd3e8a85..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberStatus.h +++ /dev/null @@ -1,201 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGMemberStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberStatusTag) { - /// (no description). - DBTEAMLOGMemberStatusActive, - - /// (no description). - DBTEAMLOGMemberStatusInvited, - - /// (no description). - DBTEAMLOGMemberStatusMovedToAnotherTeam, - - /// (no description). - DBTEAMLOGMemberStatusNotJoined, - - /// (no description). - DBTEAMLOGMemberStatusRemoved, - - /// (no description). - DBTEAMLOGMemberStatusSuspended, - - /// (no description). - DBTEAMLOGMemberStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "moved_to_another_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMovedToAnotherTeam; - -/// -/// Initializes union class with tag state of "not_joined". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotJoined; - -/// -/// Initializes union class with tag state of "removed". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoved; - -/// -/// Initializes union class with tag state of "suspended". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspended; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value -/// "moved_to_another_team". -/// -/// @return Whether the union's current tag state has value -/// "moved_to_another_team". -/// -- (BOOL)isMovedToAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value "not_joined". -/// -/// @return Whether the union's current tag state has value "not_joined". -/// -- (BOOL)isNotJoined; - -/// -/// Retrieves whether the union's current tag state has value "removed". -/// -/// @return Whether the union's current tag state has value "removed". -/// -- (BOOL)isRemoved; - -/// -/// Retrieves whether the union's current tag state has value "suspended". -/// -/// @return Whether the union's current tag state has value "suspended". -/// -- (BOOL)isSuspended; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberStatus` union. -/// -@interface DBTEAMLOGMemberStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberStatus` object. -/// -+ (DBTEAMLOGMemberStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestDetails.h deleted file mode 100644 index 2fff8103..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestDetails` struct. -/// -/// Suggested person to add to team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestDetails : NSObject - -#pragma mark - Instance fields - -/// suggested users emails. -@property (nonatomic, readonly) NSArray *suggestedMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param suggestedMembers suggested users emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuggestedMembers:(NSArray *)suggestedMembers; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestDetails` struct. -/// -@interface DBTEAMLOGMemberSuggestDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSuggestDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestDetails` object. -/// -+ (DBTEAMLOGMemberSuggestDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestType.h deleted file mode 100644 index 2c516c24..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestType` struct. -/// -@interface DBTEAMLOGMemberSuggestTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSuggestType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestType` object. -/// -+ (DBTEAMLOGMemberSuggestType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsChangePolicyDetails.h deleted file mode 100644 index f145e7a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestionsChangePolicyDetails; -@class DBTEAMLOGMemberSuggestionsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestionsChangePolicyDetails` struct. -/// -/// Enabled/disabled option for team members to suggest people to add to team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New team member suggestions policy. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsPolicy *dNewValue; - -/// Previous team member suggestions policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMemberSuggestionsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team member suggestions policy. -/// @param previousValue Previous team member suggestions policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberSuggestionsPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGMemberSuggestionsPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New team member suggestions policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMemberSuggestionsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestionsChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestionsChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestionsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestionsChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyDetails` object. -/// -+ (DBTEAMLOGMemberSuggestionsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsChangePolicyType.h deleted file mode 100644 index 309ff10d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestionsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestionsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberSuggestionsChangePolicyType` struct. -/// -@interface DBTEAMLOGMemberSuggestionsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestionsChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestionsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestionsChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestionsChangePolicyType` -/// object. -/// -+ (DBTEAMLOGMemberSuggestionsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsPolicy.h deleted file mode 100644 index 535cca41..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberSuggestionsPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberSuggestionsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSuggestionsPolicy` union. -/// -/// Member suggestions policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberSuggestionsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMemberSuggestionsPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGMemberSuggestionsPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMemberSuggestionsPolicyTag) { - /// (no description). - DBTEAMLOGMemberSuggestionsPolicyDisabled, - - /// (no description). - DBTEAMLOGMemberSuggestionsPolicyEnabled, - - /// (no description). - DBTEAMLOGMemberSuggestionsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMemberSuggestionsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMemberSuggestionsPolicy` union. -/// -@interface DBTEAMLOGMemberSuggestionsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberSuggestionsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMemberSuggestionsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberSuggestionsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberSuggestionsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberSuggestionsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberSuggestionsPolicy` object. -/// -+ (DBTEAMLOGMemberSuggestionsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferAccountContentsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferAccountContentsDetails.h deleted file mode 100644 index 6848f8de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferAccountContentsDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberTransferAccountContentsDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberTransferAccountContentsDetails` struct. -/// -/// Transferred contents of deleted member account to another member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberTransferAccountContentsDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberTransferAccountContentsDetails` -/// struct. -/// -@interface DBTEAMLOGMemberTransferAccountContentsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberTransferAccountContentsDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberTransferAccountContentsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberTransferAccountContentsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMemberTransferAccountContentsDetails` object. -/// -+ (DBTEAMLOGMemberTransferAccountContentsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferAccountContentsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferAccountContentsType.h deleted file mode 100644 index 05384b53..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferAccountContentsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberTransferAccountContentsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberTransferAccountContentsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberTransferAccountContentsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberTransferAccountContentsType` struct. -/// -@interface DBTEAMLOGMemberTransferAccountContentsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberTransferAccountContentsType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberTransferAccountContentsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberTransferAccountContentsType *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberTransferAccountContentsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferAccountContentsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberTransferAccountContentsType` -/// object. -/// -+ (DBTEAMLOGMemberTransferAccountContentsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferredInternalFields.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferredInternalFields.h deleted file mode 100644 index 898f5ce8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMemberTransferredInternalFields.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMemberTransferredInternalFields; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberTransferredInternalFields` struct. -/// -/// Internal only - fields for target team computations -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMemberTransferredInternalFields : NSObject - -#pragma mark - Instance fields - -/// Internal only - team user was moved from. -@property (nonatomic, readonly, copy) NSString *sourceTeamId; - -/// Internal only - team user was moved to. -@property (nonatomic, readonly, copy) NSString *targetTeamId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sourceTeamId Internal only - team user was moved from. -/// @param targetTeamId Internal only - team user was moved to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSourceTeamId:(NSString *)sourceTeamId targetTeamId:(NSString *)targetTeamId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberTransferredInternalFields` struct. -/// -@interface DBTEAMLOGMemberTransferredInternalFieldsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMemberTransferredInternalFields` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMemberTransferredInternalFields` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferredInternalFields` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMemberTransferredInternalFields *)instance; - -/// -/// Deserializes `DBTEAMLOGMemberTransferredInternalFields` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMemberTransferredInternalFields` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMemberTransferredInternalFields` -/// object. -/// -+ (DBTEAMLOGMemberTransferredInternalFields *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h deleted file mode 100644 index 941753a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails; -@class DBTEAMLOGMicrosoftOfficeAddinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MicrosoftOfficeAddinChangePolicyDetails` struct. -/// -/// Enabled/disabled Microsoft Office add-in. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Microsoft Office addin policy. -@property (nonatomic, readonly) DBTEAMLOGMicrosoftOfficeAddinPolicy *dNewValue; - -/// Previous Microsoft Office addin policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGMicrosoftOfficeAddinPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Microsoft Office addin policy. -/// @param previousValue Previous Microsoft Office addin policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMicrosoftOfficeAddinPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGMicrosoftOfficeAddinPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Microsoft Office addin policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGMicrosoftOfficeAddinPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MicrosoftOfficeAddinChangePolicyDetails` -/// struct. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails` object. -/// -+ (DBTEAMLOGMicrosoftOfficeAddinChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h deleted file mode 100644 index e397bb53..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinChangePolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMicrosoftOfficeAddinChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MicrosoftOfficeAddinChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MicrosoftOfficeAddinChangePolicyType` -/// struct. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGMicrosoftOfficeAddinChangePolicyType` object. -/// -+ (DBTEAMLOGMicrosoftOfficeAddinChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinPolicy.h deleted file mode 100644 index 2e221f9b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMicrosoftOfficeAddinPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMicrosoftOfficeAddinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MicrosoftOfficeAddinPolicy` union. -/// -/// Microsoft Office addin policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGMicrosoftOfficeAddinPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGMicrosoftOfficeAddinPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGMicrosoftOfficeAddinPolicyTag) { - /// (no description). - DBTEAMLOGMicrosoftOfficeAddinPolicyDisabled, - - /// (no description). - DBTEAMLOGMicrosoftOfficeAddinPolicyEnabled, - - /// (no description). - DBTEAMLOGMicrosoftOfficeAddinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGMicrosoftOfficeAddinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGMicrosoftOfficeAddinPolicy` union. -/// -@interface DBTEAMLOGMicrosoftOfficeAddinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMicrosoftOfficeAddinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMicrosoftOfficeAddinPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMicrosoftOfficeAddinPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGMicrosoftOfficeAddinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMicrosoftOfficeAddinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMicrosoftOfficeAddinPolicy` -/// object. -/// -+ (DBTEAMLOGMicrosoftOfficeAddinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMissingDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMissingDetails.h deleted file mode 100644 index 072c2164..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMissingDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGMissingDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MissingDetails` struct. -/// -/// An indication that an error occurred while retrieving the event. Some -/// attributes of the event may be omitted as a result. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMissingDetails : NSObject - -#pragma mark - Instance fields - -/// All the data that could be retrieved and converted from the source event. -@property (nonatomic, readonly, copy, nullable) NSString *sourceEventFields; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sourceEventFields All the data that could be retrieved and converted -/// from the source event. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSourceEventFields:(nullable NSString *)sourceEventFields; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MissingDetails` struct. -/// -@interface DBTEAMLOGMissingDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMissingDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMissingDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMissingDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMissingDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGMissingDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMissingDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMissingDetails` object. -/// -+ (DBTEAMLOGMissingDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMobileDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMobileDeviceSessionLogInfo.h deleted file mode 100644 index 1194b91d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMobileDeviceSessionLogInfo.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMLOGMobileDeviceSessionLogInfo; -@class DBTEAMLOGMobileSessionLogInfo; -@class DBTEAMMobileClientPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileDeviceSessionLogInfo` struct. -/// -/// Information about linked Dropbox mobile client sessions -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMobileDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Mobile session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGMobileSessionLogInfo *sessionInfo; - -/// The device name. -@property (nonatomic, readonly, copy) NSString *deviceName; - -/// The mobile application type. -@property (nonatomic, readonly) DBTEAMMobileClientPlatform *clientType; - -/// The Dropbox client version. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// The hosting OS version. -@property (nonatomic, readonly, copy, nullable) NSString *osVersion; - -/// last carrier used by the device. -@property (nonatomic, readonly, copy, nullable) NSString *lastCarrier; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Mobile session unique id. -/// @param clientVersion The Dropbox client version. -/// @param osVersion The hosting OS version. -/// @param lastCarrier last carrier used by the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceName:(NSString *)deviceName - clientType:(DBTEAMMobileClientPlatform *)clientType - ipAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGMobileSessionLogInfo *)sessionInfo - clientVersion:(nullable NSString *)clientVersion - osVersion:(nullable NSString *)osVersion - lastCarrier:(nullable NSString *)lastCarrier; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceName:(NSString *)deviceName clientType:(DBTEAMMobileClientPlatform *)clientType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MobileDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGMobileDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMobileDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMobileDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMobileDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGMobileDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMobileDeviceSessionLogInfo` -/// object. -/// -+ (DBTEAMLOGMobileDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMobileSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMobileSessionLogInfo.h deleted file mode 100644 index c11f61c5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGMobileSessionLogInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGSessionLogInfo.h" - -@class DBTEAMLOGMobileSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileSessionLogInfo` struct. -/// -/// Mobile session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGMobileSessionLogInfo : DBTEAMLOGSessionLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MobileSessionLogInfo` struct. -/// -@interface DBTEAMLOGMobileSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGMobileSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGMobileSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGMobileSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGMobileSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGMobileSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGMobileSessionLogInfo` object. -/// -+ (DBTEAMLOGMobileSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNamespaceRelativePathLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNamespaceRelativePathLogInfo.h deleted file mode 100644 index 4c560082..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNamespaceRelativePathLogInfo.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNamespaceRelativePathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NamespaceRelativePathLogInfo` struct. -/// -/// Namespace relative path details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNamespaceRelativePathLogInfo : NSObject - -#pragma mark - Instance fields - -/// Namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *nsId; - -/// A path relative to the specified namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *relativePath; - -/// True if the namespace is shared. -@property (nonatomic, readonly, nullable) NSNumber *isSharedNamespace; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param nsId Namespace ID. -/// @param relativePath A path relative to the specified namespace ID. -/// @param isSharedNamespace True if the namespace is shared. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNsId:(nullable NSString *)nsId - relativePath:(nullable NSString *)relativePath - isSharedNamespace:(nullable NSNumber *)isSharedNamespace; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NamespaceRelativePathLogInfo` struct. -/// -@interface DBTEAMLOGNamespaceRelativePathLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNamespaceRelativePathLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNamespaceRelativePathLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNamespaceRelativePathLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNamespaceRelativePathLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGNamespaceRelativePathLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNamespaceRelativePathLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNamespaceRelativePathLogInfo` -/// object. -/// -+ (DBTEAMLOGNamespaceRelativePathLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlChangePolicyDetails.h deleted file mode 100644 index f964bdb6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNetworkControlChangePolicyDetails; -@class DBTEAMLOGNetworkControlPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NetworkControlChangePolicyDetails` struct. -/// -/// Enabled/disabled network control. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNetworkControlChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New network control policy. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlPolicy *dNewValue; - -/// Previous network control policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGNetworkControlPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New network control policy. -/// @param previousValue Previous network control policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGNetworkControlPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGNetworkControlPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New network control policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGNetworkControlPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NetworkControlChangePolicyDetails` struct. -/// -@interface DBTEAMLOGNetworkControlChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNetworkControlChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNetworkControlChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNetworkControlChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNetworkControlChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNetworkControlChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGNetworkControlChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlChangePolicyType.h deleted file mode 100644 index 78eff52c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNetworkControlChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NetworkControlChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNetworkControlChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NetworkControlChangePolicyType` struct. -/// -@interface DBTEAMLOGNetworkControlChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNetworkControlChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNetworkControlChangePolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNetworkControlChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGNetworkControlChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNetworkControlChangePolicyType` -/// object. -/// -+ (DBTEAMLOGNetworkControlChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlPolicy.h deleted file mode 100644 index 3134d002..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNetworkControlPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNetworkControlPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NetworkControlPolicy` union. -/// -/// Network control policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNetworkControlPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGNetworkControlPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGNetworkControlPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGNetworkControlPolicyTag) { - /// (no description). - DBTEAMLOGNetworkControlPolicyDisabled, - - /// (no description). - DBTEAMLOGNetworkControlPolicyEnabled, - - /// (no description). - DBTEAMLOGNetworkControlPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGNetworkControlPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGNetworkControlPolicy` union. -/// -@interface DBTEAMLOGNetworkControlPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNetworkControlPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNetworkControlPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNetworkControlPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGNetworkControlPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNetworkControlPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNetworkControlPolicy` object. -/// -+ (DBTEAMLOGNetworkControlPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h deleted file mode 100644 index 2387ff0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenCreateReportDetails` struct. -/// -/// Report created: Links created with no expiration. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportDetails` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportType.h deleted file mode 100644 index c041a0bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenCreateReportType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenCreateReportType` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenCreateReportType` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h deleted file mode 100644 index d1a61ef0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenReportFailedDetails` struct. -/// -/// Couldn't create report: Links created with no expiration. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedDetails` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedType.h deleted file mode 100644 index 8b5f15cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoExpirationLinkGenReportFailedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoExpirationLinkGenReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoExpirationLinkGenReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoExpirationLinkGenReportFailedType` -/// struct. -/// -@interface DBTEAMLOGNoExpirationLinkGenReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoExpirationLinkGenReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoExpirationLinkGenReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoExpirationLinkGenReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoExpirationLinkGenReportFailedType` object. -/// -+ (DBTEAMLOGNoExpirationLinkGenReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h deleted file mode 100644 index b14b9d7e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenCreateReportDetails` struct. -/// -/// Report created: Links created without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkGenCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportType.h deleted file mode 100644 index aa02dfde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenCreateReportType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoPasswordLinkGenCreateReportType` -/// object. -/// -+ (DBTEAMLOGNoPasswordLinkGenCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h deleted file mode 100644 index e98c2a3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenReportFailedDetails` struct. -/// -/// Couldn't create report: Links created without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkGenReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedType.h deleted file mode 100644 index 66cb7581..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkGenReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkGenReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkGenReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkGenReportFailedType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkGenReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkGenReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkGenReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkGenReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkGenReportFailedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoPasswordLinkGenReportFailedType` -/// object. -/// -+ (DBTEAMLOGNoPasswordLinkGenReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h deleted file mode 100644 index 837957cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewCreateReportDetails` struct. -/// -/// Report created: Views of links without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportType.h deleted file mode 100644 index 2a5e2885..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewCreateReportType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewCreateReportType` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h deleted file mode 100644 index 5cd854a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewReportFailedDetails` struct. -/// -/// Couldn't create report: Views of links without passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedDetails` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedType.h deleted file mode 100644 index 93bfc85e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoPasswordLinkViewReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoPasswordLinkViewReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoPasswordLinkViewReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoPasswordLinkViewReportFailedType` struct. -/// -@interface DBTEAMLOGNoPasswordLinkViewReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoPasswordLinkViewReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoPasswordLinkViewReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoPasswordLinkViewReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGNoPasswordLinkViewReportFailedType` object. -/// -+ (DBTEAMLOGNoPasswordLinkViewReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNonTeamMemberLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNonTeamMemberLogInfo.h deleted file mode 100644 index 2363b88e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNonTeamMemberLogInfo.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGUserLogInfo.h" - -@class DBTEAMLOGNonTeamMemberLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NonTeamMemberLogInfo` struct. -/// -/// Non team member's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNonTeamMemberLogInfo : DBTEAMLOGUserLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NonTeamMemberLogInfo` struct. -/// -@interface DBTEAMLOGNonTeamMemberLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNonTeamMemberLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNonTeamMemberLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTeamMemberLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNonTeamMemberLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGNonTeamMemberLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTeamMemberLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNonTeamMemberLogInfo` object. -/// -+ (DBTEAMLOGNonTeamMemberLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNonTrustedTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNonTrustedTeamDetails.h deleted file mode 100644 index 58ec2bb0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNonTrustedTeamDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNonTrustedTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NonTrustedTeamDetails` struct. -/// -/// The email to which the request was sent -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNonTrustedTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email to which the request was sent. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The email to which the request was sent. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NonTrustedTeamDetails` struct. -/// -@interface DBTEAMLOGNonTrustedTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNonTrustedTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNonTrustedTeamDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTrustedTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNonTrustedTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNonTrustedTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNonTrustedTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNonTrustedTeamDetails` object. -/// -+ (DBTEAMLOGNonTrustedTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclInviteOnlyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclInviteOnlyDetails.h deleted file mode 100644 index f63f660c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclInviteOnlyDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclInviteOnlyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclInviteOnlyDetails` struct. -/// -/// Changed Paper doc to invite-only. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclInviteOnlyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclInviteOnlyDetails` struct. -/// -@interface DBTEAMLOGNoteAclInviteOnlyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclInviteOnlyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclInviteOnlyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclInviteOnlyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclInviteOnlyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclInviteOnlyDetails` object. -/// -+ (DBTEAMLOGNoteAclInviteOnlyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclInviteOnlyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclInviteOnlyType.h deleted file mode 100644 index 5fcd8f52..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclInviteOnlyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclInviteOnlyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclInviteOnlyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclInviteOnlyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclInviteOnlyType` struct. -/// -@interface DBTEAMLOGNoteAclInviteOnlyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclInviteOnlyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclInviteOnlyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclInviteOnlyType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclInviteOnlyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclInviteOnlyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclInviteOnlyType` object. -/// -+ (DBTEAMLOGNoteAclInviteOnlyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclLinkDetails.h deleted file mode 100644 index d9c4d1b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclLinkDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclLinkDetails` struct. -/// -/// Changed Paper doc to link-accessible. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclLinkDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclLinkDetails` struct. -/// -@interface DBTEAMLOGNoteAclLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclLinkDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclLinkDetails` object. -/// -+ (DBTEAMLOGNoteAclLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclLinkType.h deleted file mode 100644 index 018ea114..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclLinkType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclLinkType` struct. -/// -@interface DBTEAMLOGNoteAclLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclLinkType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclLinkType` object. -/// -+ (DBTEAMLOGNoteAclLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclTeamLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclTeamLinkDetails.h deleted file mode 100644 index fbc13a65..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclTeamLinkDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclTeamLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclTeamLinkDetails` struct. -/// -/// Changed Paper doc to link-accessible for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclTeamLinkDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclTeamLinkDetails` struct. -/// -@interface DBTEAMLOGNoteAclTeamLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclTeamLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclTeamLinkDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclTeamLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclTeamLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclTeamLinkDetails` object. -/// -+ (DBTEAMLOGNoteAclTeamLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclTeamLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclTeamLinkType.h deleted file mode 100644 index 8a9dd10a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteAclTeamLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteAclTeamLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteAclTeamLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteAclTeamLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteAclTeamLinkType` struct. -/// -@interface DBTEAMLOGNoteAclTeamLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteAclTeamLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteAclTeamLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteAclTeamLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteAclTeamLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteAclTeamLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteAclTeamLinkType` object. -/// -+ (DBTEAMLOGNoteAclTeamLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteShareReceiveDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteShareReceiveDetails.h deleted file mode 100644 index 293cab96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteShareReceiveDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteShareReceiveDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteShareReceiveDetails` struct. -/// -/// Shared received Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteShareReceiveDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteShareReceiveDetails` struct. -/// -@interface DBTEAMLOGNoteShareReceiveDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteShareReceiveDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteShareReceiveDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteShareReceiveDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteShareReceiveDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteShareReceiveDetails` object. -/// -+ (DBTEAMLOGNoteShareReceiveDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteShareReceiveType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteShareReceiveType.h deleted file mode 100644 index 6cefd5f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteShareReceiveType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteShareReceiveType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteShareReceiveType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteShareReceiveType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteShareReceiveType` struct. -/// -@interface DBTEAMLOGNoteShareReceiveTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteShareReceiveType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteShareReceiveType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteShareReceiveType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteShareReceiveType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteShareReceiveType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteShareReceiveType` object. -/// -+ (DBTEAMLOGNoteShareReceiveType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteSharedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteSharedDetails.h deleted file mode 100644 index ea05fafb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteSharedDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteSharedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteSharedDetails` struct. -/// -/// Shared Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteSharedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteSharedDetails` struct. -/// -@interface DBTEAMLOGNoteSharedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteSharedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteSharedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteSharedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteSharedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteSharedDetails` object. -/// -+ (DBTEAMLOGNoteSharedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteSharedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteSharedType.h deleted file mode 100644 index c5718524..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGNoteSharedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNoteSharedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NoteSharedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGNoteSharedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NoteSharedType` struct. -/// -@interface DBTEAMLOGNoteSharedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGNoteSharedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGNoteSharedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGNoteSharedType *)instance; - -/// -/// Deserializes `DBTEAMLOGNoteSharedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGNoteSharedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGNoteSharedType` object. -/// -+ (DBTEAMLOGNoteSharedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelAddedDetails.h deleted file mode 100644 index b963cb0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelAddedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; -@class DBTEAMLOGObjectLabelAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelAddedDetails` struct. -/// -/// Added a label. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelAddedDetails : NSObject - -#pragma mark - Instance fields - -/// Labels mark a file or folder. -@property (nonatomic, readonly) DBTEAMLOGLabelType *labelType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param labelType Labels mark a file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLabelType:(DBTEAMLOGLabelType *)labelType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelAddedDetails` struct. -/// -@interface DBTEAMLOGObjectLabelAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelAddedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelAddedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelAddedDetails` object. -/// -+ (DBTEAMLOGObjectLabelAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelAddedType.h deleted file mode 100644 index 17a52095..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelAddedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGObjectLabelAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelAddedType` struct. -/// -@interface DBTEAMLOGObjectLabelAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelAddedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelAddedType` object. -/// -+ (DBTEAMLOGObjectLabelAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelRemovedDetails.h deleted file mode 100644 index 82f7c474..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelRemovedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; -@class DBTEAMLOGObjectLabelRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelRemovedDetails` struct. -/// -/// Removed a label. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Labels mark a file or folder. -@property (nonatomic, readonly) DBTEAMLOGLabelType *labelType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param labelType Labels mark a file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLabelType:(DBTEAMLOGLabelType *)labelType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelRemovedDetails` struct. -/// -@interface DBTEAMLOGObjectLabelRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelRemovedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelRemovedDetails` object. -/// -+ (DBTEAMLOGObjectLabelRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelRemovedType.h deleted file mode 100644 index b5048737..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelRemovedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGObjectLabelRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelRemovedType` struct. -/// -@interface DBTEAMLOGObjectLabelRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelRemovedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelRemovedType` object. -/// -+ (DBTEAMLOGObjectLabelRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelUpdatedValueDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelUpdatedValueDetails.h deleted file mode 100644 index 933016e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelUpdatedValueDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGLabelType; -@class DBTEAMLOGObjectLabelUpdatedValueDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelUpdatedValueDetails` struct. -/// -/// Updated a label's value. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueDetails : NSObject - -#pragma mark - Instance fields - -/// Labels mark a file or folder. -@property (nonatomic, readonly) DBTEAMLOGLabelType *labelType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param labelType Labels mark a file or folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLabelType:(DBTEAMLOGLabelType *)labelType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelUpdatedValueDetails` struct. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelUpdatedValueDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelUpdatedValueDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelUpdatedValueDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelUpdatedValueDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelUpdatedValueDetails` -/// object. -/// -+ (DBTEAMLOGObjectLabelUpdatedValueDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelUpdatedValueType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelUpdatedValueType.h deleted file mode 100644 index 814bb2b1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGObjectLabelUpdatedValueType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGObjectLabelUpdatedValueType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ObjectLabelUpdatedValueType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ObjectLabelUpdatedValueType` struct. -/// -@interface DBTEAMLOGObjectLabelUpdatedValueTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGObjectLabelUpdatedValueType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGObjectLabelUpdatedValueType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGObjectLabelUpdatedValueType *)instance; - -/// -/// Deserializes `DBTEAMLOGObjectLabelUpdatedValueType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGObjectLabelUpdatedValueType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGObjectLabelUpdatedValueType` -/// object. -/// -+ (DBTEAMLOGObjectLabelUpdatedValueType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOpenNoteSharedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOpenNoteSharedDetails.h deleted file mode 100644 index 5c11c80b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOpenNoteSharedDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOpenNoteSharedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OpenNoteSharedDetails` struct. -/// -/// Opened shared Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOpenNoteSharedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OpenNoteSharedDetails` struct. -/// -@interface DBTEAMLOGOpenNoteSharedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOpenNoteSharedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOpenNoteSharedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOpenNoteSharedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOpenNoteSharedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOpenNoteSharedDetails` object. -/// -+ (DBTEAMLOGOpenNoteSharedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOpenNoteSharedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOpenNoteSharedType.h deleted file mode 100644 index 9e050442..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOpenNoteSharedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOpenNoteSharedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OpenNoteSharedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOpenNoteSharedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OpenNoteSharedType` struct. -/// -@interface DBTEAMLOGOpenNoteSharedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOpenNoteSharedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOpenNoteSharedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOpenNoteSharedType *)instance; - -/// -/// Deserializes `DBTEAMLOGOpenNoteSharedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOpenNoteSharedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOpenNoteSharedType` object. -/// -+ (DBTEAMLOGOpenNoteSharedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizationDetails.h deleted file mode 100644 index 7e82eed5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizationDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizationDetails` struct. -/// -/// More details about the organization. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizationDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the organization. -@property (nonatomic, readonly, copy) NSString *organization; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param organization The name of the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganization:(NSString *)organization; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizationDetails` struct. -/// -@interface DBTEAMLOGOrganizationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizationDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizationDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizationDetails` object. -/// -+ (DBTEAMLOGOrganizationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizationName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizationName.h deleted file mode 100644 index 224ca1a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizationName.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizationName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizationName` struct. -/// -/// The name of the organization -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizationName : NSObject - -#pragma mark - Instance fields - -/// The name of the organization. -@property (nonatomic, readonly, copy) NSString *organization; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param organization The name of the organization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOrganization:(NSString *)organization; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizationName` struct. -/// -@interface DBTEAMLOGOrganizationNameSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizationName` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizationName` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationName` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizationName *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizationName` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizationName` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizationName` object. -/// -+ (DBTEAMLOGOrganizationName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizeFolderWithTidyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizeFolderWithTidyDetails.h deleted file mode 100644 index 44a26163..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizeFolderWithTidyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizeFolderWithTidyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizeFolderWithTidyDetails` struct. -/// -/// Organized a folder with multi-file organize. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizeFolderWithTidyDetails` struct. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizeFolderWithTidyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizeFolderWithTidyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizeFolderWithTidyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizeFolderWithTidyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizeFolderWithTidyDetails` -/// object. -/// -+ (DBTEAMLOGOrganizeFolderWithTidyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizeFolderWithTidyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizeFolderWithTidyType.h deleted file mode 100644 index 22184388..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOrganizeFolderWithTidyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOrganizeFolderWithTidyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OrganizeFolderWithTidyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OrganizeFolderWithTidyType` struct. -/// -@interface DBTEAMLOGOrganizeFolderWithTidyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOrganizeFolderWithTidyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOrganizeFolderWithTidyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOrganizeFolderWithTidyType *)instance; - -/// -/// Deserializes `DBTEAMLOGOrganizeFolderWithTidyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOrganizeFolderWithTidyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOrganizeFolderWithTidyType` -/// object. -/// -+ (DBTEAMLOGOrganizeFolderWithTidyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOriginLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOriginLogInfo.h deleted file mode 100644 index 41430324..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOriginLogInfo.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAccessMethodLogInfo; -@class DBTEAMLOGGeoLocationLogInfo; -@class DBTEAMLOGOriginLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OriginLogInfo` struct. -/// -/// The origin from which the actor performed the action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOriginLogInfo : NSObject - -#pragma mark - Instance fields - -/// Geographic location details. -@property (nonatomic, readonly, nullable) DBTEAMLOGGeoLocationLogInfo *geoLocation; - -/// The method that was used to perform the action. -@property (nonatomic, readonly) DBTEAMLOGAccessMethodLogInfo *accessMethod; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessMethod The method that was used to perform the action. -/// @param geoLocation Geographic location details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessMethod:(DBTEAMLOGAccessMethodLogInfo *)accessMethod - geoLocation:(nullable DBTEAMLOGGeoLocationLogInfo *)geoLocation; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accessMethod The method that was used to perform the action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessMethod:(DBTEAMLOGAccessMethodLogInfo *)accessMethod; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OriginLogInfo` struct. -/// -@interface DBTEAMLOGOriginLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOriginLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGOriginLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOriginLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOriginLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGOriginLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOriginLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOriginLogInfo` object. -/// -+ (DBTEAMLOGOriginLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewCreateReportDetails.h deleted file mode 100644 index 697e42b3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewCreateReportDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewCreateReportDetails` struct. -/// -/// Report created: Views of old links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewCreateReportDetails` -/// struct. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportDetails` object. -/// -+ (DBTEAMLOGOutdatedLinkViewCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewCreateReportType.h deleted file mode 100644 index e89fe3ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewCreateReportType` struct. -/// -@interface DBTEAMLOGOutdatedLinkViewCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOutdatedLinkViewCreateReportType` -/// object. -/// -+ (DBTEAMLOGOutdatedLinkViewCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewReportFailedDetails.h deleted file mode 100644 index e436b810..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewReportFailedDetails` struct. -/// -/// Couldn't create report: Views of old links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedDetails` object. -/// -+ (DBTEAMLOGOutdatedLinkViewReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewReportFailedType.h deleted file mode 100644 index 66a538d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGOutdatedLinkViewReportFailedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGOutdatedLinkViewReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OutdatedLinkViewReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `OutdatedLinkViewReportFailedType` struct. -/// -@interface DBTEAMLOGOutdatedLinkViewReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGOutdatedLinkViewReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGOutdatedLinkViewReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGOutdatedLinkViewReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGOutdatedLinkViewReportFailedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGOutdatedLinkViewReportFailedType` -/// object. -/// -+ (DBTEAMLOGOutdatedLinkViewReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAccessType.h deleted file mode 100644 index aa99c753..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAccessType.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAccessType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperAccessType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperAccessTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperAccessType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperAccessTypeTag) { - /// (no description). - DBTEAMLOGPaperAccessTypeCommenter, - - /// (no description). - DBTEAMLOGPaperAccessTypeEditor, - - /// (no description). - DBTEAMLOGPaperAccessTypeViewer, - - /// (no description). - DBTEAMLOGPaperAccessTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperAccessTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "commenter". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCommenter; - -/// -/// Initializes union class with tag state of "editor". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEditor; - -/// -/// Initializes union class with tag state of "viewer". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithViewer; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "commenter". -/// -/// @return Whether the union's current tag state has value "commenter". -/// -- (BOOL)isCommenter; - -/// -/// Retrieves whether the union's current tag state has value "editor". -/// -/// @return Whether the union's current tag state has value "editor". -/// -- (BOOL)isEditor; - -/// -/// Retrieves whether the union's current tag state has value "viewer". -/// -/// @return Whether the union's current tag state has value "viewer". -/// -- (BOOL)isViewer; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperAccessType` union. -/// -@interface DBTEAMLOGPaperAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperAccessType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperAccessType` object. -/// -+ (DBTEAMLOGPaperAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAdminExportStartDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAdminExportStartDetails.h deleted file mode 100644 index 57ff42e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAdminExportStartDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAdminExportStartDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAdminExportStartDetails` struct. -/// -/// Exported all team Paper docs. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperAdminExportStartDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperAdminExportStartDetails` struct. -/// -@interface DBTEAMLOGPaperAdminExportStartDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperAdminExportStartDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperAdminExportStartDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperAdminExportStartDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperAdminExportStartDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperAdminExportStartDetails` -/// object. -/// -+ (DBTEAMLOGPaperAdminExportStartDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAdminExportStartType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAdminExportStartType.h deleted file mode 100644 index 3aec1677..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperAdminExportStartType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAdminExportStartType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAdminExportStartType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperAdminExportStartType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperAdminExportStartType` struct. -/// -@interface DBTEAMLOGPaperAdminExportStartTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperAdminExportStartType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperAdminExportStartType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperAdminExportStartType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperAdminExportStartType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperAdminExportStartType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperAdminExportStartType` object. -/// -+ (DBTEAMLOGPaperAdminExportStartType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeDeploymentPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeDeploymentPolicyDetails.h deleted file mode 100644 index d20d334f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeDeploymentPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeDeploymentPolicyDetails; -@class DBTEAMPOLICIESPaperDeploymentPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeDeploymentPolicyDetails` struct. -/// -/// Changed whether Dropbox Paper, when enabled, is deployed to all members or -/// to specific members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Paper deployment policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDeploymentPolicy *dNewValue; - -/// Previous Dropbox Paper deployment policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESPaperDeploymentPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Paper deployment policy. -/// @param previousValue Previous Dropbox Paper deployment policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperDeploymentPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESPaperDeploymentPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Dropbox Paper deployment policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperDeploymentPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeDeploymentPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeDeploymentPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeDeploymentPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeDeploymentPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyDetails` object. -/// -+ (DBTEAMLOGPaperChangeDeploymentPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeDeploymentPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeDeploymentPolicyType.h deleted file mode 100644 index 6f3422a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeDeploymentPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeDeploymentPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeDeploymentPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeDeploymentPolicyType` struct. -/// -@interface DBTEAMLOGPaperChangeDeploymentPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeDeploymentPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeDeploymentPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeDeploymentPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeDeploymentPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeDeploymentPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperChangeDeploymentPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h deleted file mode 100644 index d3f177a0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberLinkPolicyDetails; -@class DBTEAMLOGPaperMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberLinkPolicyDetails` struct. -/// -/// Changed whether non-members can view Paper docs with link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New paper external link accessibility policy. -@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New paper external link accessibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberLinkPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberLinkPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyDetails` object. -/// -+ (DBTEAMLOGPaperChangeMemberLinkPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyType.h deleted file mode 100644 index 14135013..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberLinkPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberLinkPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberLinkPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberLinkPolicyType` struct. -/// -@interface DBTEAMLOGPaperChangeMemberLinkPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberLinkPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberLinkPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberLinkPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberLinkPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeMemberLinkPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperChangeMemberLinkPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberPolicyDetails.h deleted file mode 100644 index 2de058e7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberPolicyDetails; -@class DBTEAMLOGPaperMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberPolicyDetails` struct. -/// -/// Changed whether members can share Paper docs outside team, and if docs are -/// accessible only by team members or anyone by default. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New paper external accessibility policy. -@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicy *dNewValue; - -/// Previous paper external accessibility policy. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGPaperMemberPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New paper external accessibility policy. -/// @param previousValue Previous paper external accessibility policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperMemberPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGPaperMemberPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New paper external accessibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberPolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangeMemberPolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeMemberPolicyDetails` -/// object. -/// -+ (DBTEAMLOGPaperChangeMemberPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberPolicyType.h deleted file mode 100644 index 1dd4b3ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangeMemberPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangeMemberPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangeMemberPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangeMemberPolicyType` struct. -/// -@interface DBTEAMLOGPaperChangeMemberPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangeMemberPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangeMemberPolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangeMemberPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangeMemberPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangeMemberPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangeMemberPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperChangeMemberPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangePolicyDetails.h deleted file mode 100644 index 46811c4e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangePolicyDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangePolicyDetails; -@class DBTEAMPOLICIESPaperEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangePolicyDetails` struct. -/// -/// Enabled/disabled Dropbox Paper for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Paper policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperEnabledPolicy *dNewValue; - -/// Previous Dropbox Paper policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESPaperEnabledPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Paper policy. -/// @param previousValue Previous Dropbox Paper policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperEnabledPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESPaperEnabledPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New Dropbox Paper policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESPaperEnabledPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangePolicyDetails` struct. -/// -@interface DBTEAMLOGPaperChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangePolicyDetails` object. -/// -+ (DBTEAMLOGPaperChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangePolicyType.h deleted file mode 100644 index 8d4334d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperChangePolicyType` struct. -/// -@interface DBTEAMLOGPaperChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperChangePolicyType` object. -/// -+ (DBTEAMLOGPaperChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddMemberDetails.h deleted file mode 100644 index 758d17bd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddMemberDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddMemberDetails` struct. -/// -/// Added users and/or groups to Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddMemberDetails` struct. -/// -@interface DBTEAMLOGPaperContentAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddMemberDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddMemberDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddMemberType.h deleted file mode 100644 index b7cbdf69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddMemberType` struct. -/// -@interface DBTEAMLOGPaperContentAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddMemberType` object. -/// -+ (DBTEAMLOGPaperContentAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddToFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddToFolderDetails.h deleted file mode 100644 index 0ae410d0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddToFolderDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddToFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddToFolderDetails` struct. -/// -/// Added Paper doc/folder to folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddToFolderDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Parent asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *parentAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param parentAssetIndex Parent asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - targetAssetIndex:(NSNumber *)targetAssetIndex - parentAssetIndex:(NSNumber *)parentAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddToFolderDetails` struct. -/// -@interface DBTEAMLOGPaperContentAddToFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddToFolderDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddToFolderDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddToFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddToFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddToFolderDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentAddToFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddToFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddToFolderType.h deleted file mode 100644 index b7bb580b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentAddToFolderType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentAddToFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentAddToFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentAddToFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentAddToFolderType` struct. -/// -@interface DBTEAMLOGPaperContentAddToFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentAddToFolderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentAddToFolderType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentAddToFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentAddToFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentAddToFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentAddToFolderType` -/// object. -/// -+ (DBTEAMLOGPaperContentAddToFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentArchiveDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentArchiveDetails.h deleted file mode 100644 index 249a588a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentArchiveDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentArchiveDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentArchiveDetails` struct. -/// -/// Archived Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentArchiveDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentArchiveDetails` struct. -/// -@interface DBTEAMLOGPaperContentArchiveDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentArchiveDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentArchiveDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentArchiveDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentArchiveDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentArchiveDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentArchiveDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentArchiveType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentArchiveType.h deleted file mode 100644 index 3d76c809..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentArchiveType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentArchiveType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentArchiveType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentArchiveType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentArchiveType` struct. -/// -@interface DBTEAMLOGPaperContentArchiveTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentArchiveType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentArchiveType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentArchiveType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentArchiveType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentArchiveType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentArchiveType` object. -/// -+ (DBTEAMLOGPaperContentArchiveType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentCreateDetails.h deleted file mode 100644 index 1df74225..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentCreateDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentCreateDetails` struct. -/// -/// Created Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentCreateDetails` struct. -/// -@interface DBTEAMLOGPaperContentCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentCreateDetails` object. -/// -+ (DBTEAMLOGPaperContentCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentCreateType.h deleted file mode 100644 index f5e8192e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentCreateType` struct. -/// -@interface DBTEAMLOGPaperContentCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentCreateType` object. -/// -+ (DBTEAMLOGPaperContentCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentPermanentlyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentPermanentlyDeleteDetails.h deleted file mode 100644 index 6d65348d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentPermanentlyDeleteDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentPermanentlyDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentPermanentlyDeleteDetails` struct. -/// -/// Permanently deleted Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentPermanentlyDeleteDetails` -/// struct. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentPermanentlyDeleteDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentPermanentlyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentPermanentlyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteDetails` object. -/// -+ (DBTEAMLOGPaperContentPermanentlyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentPermanentlyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentPermanentlyDeleteType.h deleted file mode 100644 index 0b815d68..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentPermanentlyDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentPermanentlyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentPermanentlyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentPermanentlyDeleteType` struct. -/// -@interface DBTEAMLOGPaperContentPermanentlyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentPermanentlyDeleteType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentPermanentlyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentPermanentlyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentPermanentlyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentPermanentlyDeleteType` -/// object. -/// -+ (DBTEAMLOGPaperContentPermanentlyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveFromFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveFromFolderDetails.h deleted file mode 100644 index a20e399e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveFromFolderDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveFromFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveFromFolderDetails` struct. -/// -/// Removed Paper doc/folder from folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Target asset position in the Assets list. -@property (nonatomic, readonly, nullable) NSNumber *targetAssetIndex; - -/// Parent asset position in the Assets list. -@property (nonatomic, readonly, nullable) NSNumber *parentAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param parentAssetIndex Parent asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - targetAssetIndex:(nullable NSNumber *)targetAssetIndex - parentAssetIndex:(nullable NSNumber *)parentAssetIndex; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveFromFolderDetails` -/// struct. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveFromFolderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveFromFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveFromFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderDetails` object. -/// -+ (DBTEAMLOGPaperContentRemoveFromFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveFromFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveFromFolderType.h deleted file mode 100644 index f2f50f66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveFromFolderType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveFromFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveFromFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveFromFolderType` struct. -/// -@interface DBTEAMLOGPaperContentRemoveFromFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveFromFolderType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentRemoveFromFolderType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveFromFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveFromFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveFromFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRemoveFromFolderType` -/// object. -/// -+ (DBTEAMLOGPaperContentRemoveFromFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveMemberDetails.h deleted file mode 100644 index 9539c349..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveMemberDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveMemberDetails` struct. -/// -/// Removed users and/or groups from Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGPaperContentRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveMemberDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperContentRemoveMemberDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRemoveMemberDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveMemberType.h deleted file mode 100644 index 7f9f5b10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRemoveMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRemoveMemberType` struct. -/// -@interface DBTEAMLOGPaperContentRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRemoveMemberType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRemoveMemberType` -/// object. -/// -+ (DBTEAMLOGPaperContentRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRenameDetails.h deleted file mode 100644 index a5b32f1d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRenameDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRenameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRenameDetails` struct. -/// -/// Renamed Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRenameDetails` struct. -/// -@interface DBTEAMLOGPaperContentRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRenameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRenameDetails` object. -/// -+ (DBTEAMLOGPaperContentRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRenameType.h deleted file mode 100644 index 03618ae8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRenameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRenameType` struct. -/// -@interface DBTEAMLOGPaperContentRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRenameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRenameType` object. -/// -+ (DBTEAMLOGPaperContentRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRestoreDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRestoreDetails.h deleted file mode 100644 index 242be778..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRestoreDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRestoreDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRestoreDetails` struct. -/// -/// Restored archived Paper doc/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRestoreDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRestoreDetails` struct. -/// -@interface DBTEAMLOGPaperContentRestoreDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRestoreDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRestoreDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRestoreDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRestoreDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRestoreDetails` -/// object. -/// -+ (DBTEAMLOGPaperContentRestoreDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRestoreType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRestoreType.h deleted file mode 100644 index d7898eb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperContentRestoreType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperContentRestoreType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperContentRestoreType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperContentRestoreType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperContentRestoreType` struct. -/// -@interface DBTEAMLOGPaperContentRestoreTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperContentRestoreType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperContentRestoreType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperContentRestoreType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperContentRestoreType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperContentRestoreType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperContentRestoreType` object. -/// -+ (DBTEAMLOGPaperContentRestoreType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicy.h deleted file mode 100644 index e3468456..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDefaultFolderPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicy` union. -/// -/// Policy to set default access for newly created Paper folders. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperDefaultFolderPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGPaperDefaultFolderPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperDefaultFolderPolicyTag) { - /// (no description). - DBTEAMLOGPaperDefaultFolderPolicyEveryoneInTeam, - - /// (no description). - DBTEAMLOGPaperDefaultFolderPolicyInviteOnly, - - /// (no description). - DBTEAMLOGPaperDefaultFolderPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "everyone_in_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryoneInTeam; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "everyone_in_team". -/// -/// @return Whether the union's current tag state has value "everyone_in_team". -/// -- (BOOL)isEveryoneInTeam; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperDefaultFolderPolicy` union. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDefaultFolderPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDefaultFolderPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDefaultFolderPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDefaultFolderPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDefaultFolderPolicy` object. -/// -+ (DBTEAMLOGPaperDefaultFolderPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h deleted file mode 100644 index e8e687a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDefaultFolderPolicy; -@class DBTEAMLOGPaperDefaultFolderPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicyChangedDetails` struct. -/// -/// Changed Paper Default Folder Policy setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Paper Default Folder Policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicy *dNewValue; - -/// Previous Paper Default Folder Policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDefaultFolderPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Paper Default Folder Policy. -/// @param previousValue Previous Paper Default Folder Policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperDefaultFolderPolicy *)dNewValue - previousValue:(DBTEAMLOGPaperDefaultFolderPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDefaultFolderPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedDetails` object. -/// -+ (DBTEAMLOGPaperDefaultFolderPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedType.h deleted file mode 100644 index 77706571..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDefaultFolderPolicyChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDefaultFolderPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDefaultFolderPolicyChangedType` -/// struct. -/// -@interface DBTEAMLOGPaperDefaultFolderPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDefaultFolderPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDefaultFolderPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDefaultFolderPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperDefaultFolderPolicyChangedType` object. -/// -+ (DBTEAMLOGPaperDefaultFolderPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicy.h deleted file mode 100644 index 59540595..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDesktopPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicy` union. -/// -/// Policy for controlling if team members can use Paper Desktop -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDesktopPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperDesktopPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperDesktopPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperDesktopPolicyTag) { - /// (no description). - DBTEAMLOGPaperDesktopPolicyDisabled, - - /// (no description). - DBTEAMLOGPaperDesktopPolicyEnabled, - - /// (no description). - DBTEAMLOGPaperDesktopPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperDesktopPolicy` union. -/// -@interface DBTEAMLOGPaperDesktopPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDesktopPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDesktopPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDesktopPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDesktopPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDesktopPolicy` object. -/// -+ (DBTEAMLOGPaperDesktopPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicyChangedDetails.h deleted file mode 100644 index e8448113..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDesktopPolicy; -@class DBTEAMLOGPaperDesktopPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicyChangedDetails` struct. -/// -/// Enabled/disabled Paper Desktop for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Paper Desktop policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicy *dNewValue; - -/// Previous Paper Desktop policy. -@property (nonatomic, readonly) DBTEAMLOGPaperDesktopPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Paper Desktop policy. -/// @param previousValue Previous Paper Desktop policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGPaperDesktopPolicy *)dNewValue - previousValue:(DBTEAMLOGPaperDesktopPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDesktopPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDesktopPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDesktopPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDesktopPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDesktopPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDesktopPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGPaperDesktopPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicyChangedType.h deleted file mode 100644 index 453bc55f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDesktopPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDesktopPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDesktopPolicyChangedType` struct. -/// -@interface DBTEAMLOGPaperDesktopPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDesktopPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDesktopPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDesktopPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDesktopPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDesktopPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDesktopPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGPaperDesktopPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocAddCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocAddCommentDetails.h deleted file mode 100644 index b96c0a79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocAddCommentDetails.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocAddCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocAddCommentDetails` struct. -/// -/// Added Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocAddCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocAddCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocAddCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocAddCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocAddCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocAddCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocAddCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocAddCommentDetails` object. -/// -+ (DBTEAMLOGPaperDocAddCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocAddCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocAddCommentType.h deleted file mode 100644 index 6079ea5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocAddCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocAddCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocAddCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocAddCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocAddCommentType` struct. -/// -@interface DBTEAMLOGPaperDocAddCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocAddCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocAddCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocAddCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocAddCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocAddCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocAddCommentType` object. -/// -+ (DBTEAMLOGPaperDocAddCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeMemberRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeMemberRoleDetails.h deleted file mode 100644 index 30742f92..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeMemberRoleDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperAccessType; -@class DBTEAMLOGPaperDocChangeMemberRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeMemberRoleDetails` struct. -/// -/// Changed member permissions for Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Paper doc access type. -@property (nonatomic, readonly) DBTEAMLOGPaperAccessType *accessType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param accessType Paper doc access type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid accessType:(DBTEAMLOGPaperAccessType *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeMemberRoleDetails` struct. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeMemberRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeMemberRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeMemberRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeMemberRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeMemberRoleDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeMemberRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeMemberRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeMemberRoleType.h deleted file mode 100644 index 847b5f7f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeMemberRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeMemberRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeMemberRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeMemberRoleType` struct. -/// -@interface DBTEAMLOGPaperDocChangeMemberRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeMemberRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocChangeMemberRoleType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeMemberRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeMemberRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeMemberRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeMemberRoleType` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeMemberRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSharingPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSharingPolicyDetails.h deleted file mode 100644 index 515109c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSharingPolicyDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSharingPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSharingPolicyDetails` struct. -/// -/// Changed sharing setting for Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Sharing policy with external users. -@property (nonatomic, readonly, copy, nullable) NSString *publicSharingPolicy; - -/// Sharing policy with team. -@property (nonatomic, readonly, copy, nullable) NSString *teamSharingPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param publicSharingPolicy Sharing policy with external users. -/// @param teamSharingPolicy Sharing policy with team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - publicSharingPolicy:(nullable NSString *)publicSharingPolicy - teamSharingPolicy:(nullable NSString *)teamSharingPolicy; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSharingPolicyDetails` struct. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSharingPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSharingPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSharingPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyDetails` object. -/// -+ (DBTEAMLOGPaperDocChangeSharingPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSharingPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSharingPolicyType.h deleted file mode 100644 index fe45d994..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSharingPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSharingPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSharingPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSharingPolicyType` struct. -/// -@interface DBTEAMLOGPaperDocChangeSharingPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSharingPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSharingPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSharingPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSharingPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeSharingPolicyType` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeSharingPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSubscriptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSubscriptionDetails.h deleted file mode 100644 index fb263727..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSubscriptionDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSubscriptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSubscriptionDetails` struct. -/// -/// Followed/unfollowed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// New doc subscription level. -@property (nonatomic, readonly, copy) NSString *dNewSubscriptionLevel; - -/// Previous doc subscription level. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousSubscriptionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New doc subscription level. -/// @param previousSubscriptionLevel Previous doc subscription level. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel - previousSubscriptionLevel:(nullable NSString *)previousSubscriptionLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New doc subscription level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSubscriptionDetails` struct. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSubscriptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocChangeSubscriptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSubscriptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSubscriptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeSubscriptionDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeSubscriptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSubscriptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSubscriptionType.h deleted file mode 100644 index 71063128..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocChangeSubscriptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocChangeSubscriptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocChangeSubscriptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocChangeSubscriptionType` struct. -/// -@interface DBTEAMLOGPaperDocChangeSubscriptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocChangeSubscriptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocChangeSubscriptionType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocChangeSubscriptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocChangeSubscriptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocChangeSubscriptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocChangeSubscriptionType` -/// object. -/// -+ (DBTEAMLOGPaperDocChangeSubscriptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeleteCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeleteCommentDetails.h deleted file mode 100644 index 98812935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeleteCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeleteCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeleteCommentDetails` struct. -/// -/// Deleted Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeleteCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeleteCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocDeleteCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeleteCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeleteCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeleteCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeleteCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeleteCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocDeleteCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeleteCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeleteCommentType.h deleted file mode 100644 index 46b227c6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeleteCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeleteCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeleteCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeleteCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeleteCommentType` struct. -/// -@interface DBTEAMLOGPaperDocDeleteCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeleteCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeleteCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeleteCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeleteCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeleteCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeleteCommentType` object. -/// -+ (DBTEAMLOGPaperDocDeleteCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeletedDetails.h deleted file mode 100644 index e92889df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeletedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeletedDetails` struct. -/// -/// Archived Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeletedDetails` struct. -/// -@interface DBTEAMLOGPaperDocDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeletedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeletedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeletedDetails` object. -/// -+ (DBTEAMLOGPaperDocDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeletedType.h deleted file mode 100644 index 696c1796..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDeletedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDeletedType` struct. -/// -@interface DBTEAMLOGPaperDocDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDeletedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDeletedType` object. -/// -+ (DBTEAMLOGPaperDocDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDownloadDetails.h deleted file mode 100644 index 6cca6a1c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDownloadDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDownloadDetails; -@class DBTEAMLOGPaperDownloadFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDownloadDetails` struct. -/// -/// Downloaded Paper doc in specific format. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Export file format. -@property (nonatomic, readonly) DBTEAMLOGPaperDownloadFormat *exportFileFormat; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param exportFileFormat Export file format. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - exportFileFormat:(DBTEAMLOGPaperDownloadFormat *)exportFileFormat; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDownloadDetails` struct. -/// -@interface DBTEAMLOGPaperDocDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDownloadDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDownloadDetails` object. -/// -+ (DBTEAMLOGPaperDocDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDownloadType.h deleted file mode 100644 index 8e692b99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocDownloadType` struct. -/// -@interface DBTEAMLOGPaperDocDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocDownloadType` object. -/// -+ (DBTEAMLOGPaperDocDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditCommentDetails.h deleted file mode 100644 index 8958c355..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditCommentDetails` struct. -/// -/// Edited Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocEditCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocEditCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditCommentType.h deleted file mode 100644 index 4f9dfc79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditCommentType` struct. -/// -@interface DBTEAMLOGPaperDocEditCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditCommentType` object. -/// -+ (DBTEAMLOGPaperDocEditCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditDetails.h deleted file mode 100644 index c34d34bf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditDetails` struct. -/// -/// Edited Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditDetails` struct. -/// -@interface DBTEAMLOGPaperDocEditDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditDetails` object. -/// -+ (DBTEAMLOGPaperDocEditDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditType.h deleted file mode 100644 index d3747dda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocEditType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocEditType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocEditType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocEditType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocEditType` struct. -/// -@interface DBTEAMLOGPaperDocEditTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocEditType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocEditType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocEditType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocEditType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocEditType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocEditType` object. -/// -+ (DBTEAMLOGPaperDocEditType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocFollowedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocFollowedDetails.h deleted file mode 100644 index c390d210..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocFollowedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocFollowedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocFollowedDetails` struct. -/// -/// Followed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocFollowedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocFollowedDetails` struct. -/// -@interface DBTEAMLOGPaperDocFollowedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocFollowedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocFollowedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocFollowedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocFollowedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocFollowedDetails` object. -/// -+ (DBTEAMLOGPaperDocFollowedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocFollowedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocFollowedType.h deleted file mode 100644 index a3edca2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocFollowedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocFollowedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocFollowedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocFollowedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocFollowedType` struct. -/// -@interface DBTEAMLOGPaperDocFollowedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocFollowedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocFollowedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocFollowedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocFollowedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocFollowedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocFollowedType` object. -/// -+ (DBTEAMLOGPaperDocFollowedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocMentionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocMentionDetails.h deleted file mode 100644 index 3bd32a94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocMentionDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocMentionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocMentionDetails` struct. -/// -/// Mentioned user in Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocMentionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocMentionDetails` struct. -/// -@interface DBTEAMLOGPaperDocMentionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocMentionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocMentionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocMentionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocMentionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocMentionDetails` object. -/// -+ (DBTEAMLOGPaperDocMentionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocMentionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocMentionType.h deleted file mode 100644 index 03bfa898..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocMentionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocMentionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocMentionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocMentionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocMentionType` struct. -/// -@interface DBTEAMLOGPaperDocMentionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocMentionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocMentionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocMentionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocMentionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocMentionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocMentionType` object. -/// -+ (DBTEAMLOGPaperDocMentionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocOwnershipChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocOwnershipChangedDetails.h deleted file mode 100644 index fcb82f0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocOwnershipChangedDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocOwnershipChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocOwnershipChangedDetails` struct. -/// -/// Transferred ownership of Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Previous owner. -@property (nonatomic, readonly, copy, nullable) NSString *oldOwnerUserId; - -/// New owner. -@property (nonatomic, readonly, copy) NSString *dNewOwnerUserId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewOwnerUserId New owner. -/// @param oldOwnerUserId Previous owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewOwnerUserId:(NSString *)dNewOwnerUserId - oldOwnerUserId:(nullable NSString *)oldOwnerUserId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewOwnerUserId New owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid dNewOwnerUserId:(NSString *)dNewOwnerUserId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocOwnershipChangedDetails` struct. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocOwnershipChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocOwnershipChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocOwnershipChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocOwnershipChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocOwnershipChangedDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocOwnershipChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocOwnershipChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocOwnershipChangedType.h deleted file mode 100644 index bb9a81c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocOwnershipChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocOwnershipChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocOwnershipChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocOwnershipChangedType` struct. -/// -@interface DBTEAMLOGPaperDocOwnershipChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocOwnershipChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocOwnershipChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocOwnershipChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocOwnershipChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocOwnershipChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocOwnershipChangedType` -/// object. -/// -+ (DBTEAMLOGPaperDocOwnershipChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRequestAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRequestAccessDetails.h deleted file mode 100644 index 361ad9df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRequestAccessDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRequestAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRequestAccessDetails` struct. -/// -/// Requested access to Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRequestAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRequestAccessDetails` struct. -/// -@interface DBTEAMLOGPaperDocRequestAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRequestAccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRequestAccessDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRequestAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRequestAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRequestAccessDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocRequestAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRequestAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRequestAccessType.h deleted file mode 100644 index a38d0328..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRequestAccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRequestAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRequestAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRequestAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRequestAccessType` struct. -/// -@interface DBTEAMLOGPaperDocRequestAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRequestAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRequestAccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRequestAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRequestAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRequestAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRequestAccessType` object. -/// -+ (DBTEAMLOGPaperDocRequestAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocResolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocResolveCommentDetails.h deleted file mode 100644 index 15a4d093..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocResolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocResolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocResolveCommentDetails` struct. -/// -/// Resolved Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocResolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocResolveCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocResolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocResolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocResolveCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocResolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocResolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocResolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocResolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocResolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocResolveCommentType.h deleted file mode 100644 index fe373cca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocResolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocResolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocResolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocResolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocResolveCommentType` struct. -/// -@interface DBTEAMLOGPaperDocResolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocResolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocResolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocResolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocResolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocResolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocResolveCommentType` -/// object. -/// -+ (DBTEAMLOGPaperDocResolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRevertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRevertDetails.h deleted file mode 100644 index 03cdb6ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRevertDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRevertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRevertDetails` struct. -/// -/// Restored Paper doc to previous version. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRevertDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRevertDetails` struct. -/// -@interface DBTEAMLOGPaperDocRevertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRevertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRevertDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRevertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRevertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRevertDetails` object. -/// -+ (DBTEAMLOGPaperDocRevertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRevertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRevertType.h deleted file mode 100644 index 6b4bdc32..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocRevertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocRevertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocRevertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocRevertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocRevertType` struct. -/// -@interface DBTEAMLOGPaperDocRevertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocRevertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocRevertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocRevertType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocRevertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocRevertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocRevertType` object. -/// -+ (DBTEAMLOGPaperDocRevertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocSlackShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocSlackShareDetails.h deleted file mode 100644 index e8d70ecd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocSlackShareDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocSlackShareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocSlackShareDetails` struct. -/// -/// Shared Paper doc via Slack. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocSlackShareDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocSlackShareDetails` struct. -/// -@interface DBTEAMLOGPaperDocSlackShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocSlackShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocSlackShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocSlackShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocSlackShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocSlackShareDetails` object. -/// -+ (DBTEAMLOGPaperDocSlackShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocSlackShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocSlackShareType.h deleted file mode 100644 index dd7150ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocSlackShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocSlackShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocSlackShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocSlackShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocSlackShareType` struct. -/// -@interface DBTEAMLOGPaperDocSlackShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocSlackShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocSlackShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocSlackShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocSlackShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocSlackShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocSlackShareType` object. -/// -+ (DBTEAMLOGPaperDocSlackShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTeamInviteDetails.h deleted file mode 100644 index a85489af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTeamInviteDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTeamInviteDetails` struct. -/// -/// Shared Paper doc with users and/or groups. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTeamInviteDetails` struct. -/// -@interface DBTEAMLOGPaperDocTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTeamInviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTeamInviteDetails` object. -/// -+ (DBTEAMLOGPaperDocTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTeamInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTeamInviteType.h deleted file mode 100644 index f3326863..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTeamInviteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTeamInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTeamInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTeamInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTeamInviteType` struct. -/// -@interface DBTEAMLOGPaperDocTeamInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTeamInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTeamInviteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTeamInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTeamInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTeamInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTeamInviteType` object. -/// -+ (DBTEAMLOGPaperDocTeamInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTrashedDetails.h deleted file mode 100644 index 3fd612cf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTrashedDetails` struct. -/// -/// Deleted Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTrashedDetails` struct. -/// -@interface DBTEAMLOGPaperDocTrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTrashedDetails` object. -/// -+ (DBTEAMLOGPaperDocTrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTrashedType.h deleted file mode 100644 index 9be85976..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocTrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocTrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocTrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocTrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocTrashedType` struct. -/// -@interface DBTEAMLOGPaperDocTrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocTrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocTrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocTrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocTrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocTrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocTrashedType` object. -/// -+ (DBTEAMLOGPaperDocTrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUnresolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUnresolveCommentDetails.h deleted file mode 100644 index 69af9ced..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUnresolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUnresolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUnresolveCommentDetails` struct. -/// -/// Unresolved Paper doc comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUnresolveCommentDetails` struct. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUnresolveCommentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperDocUnresolveCommentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUnresolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUnresolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUnresolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGPaperDocUnresolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUnresolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUnresolveCommentType.h deleted file mode 100644 index 33b0fe49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUnresolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUnresolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUnresolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUnresolveCommentType` struct. -/// -@interface DBTEAMLOGPaperDocUnresolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUnresolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocUnresolveCommentType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUnresolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUnresolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUnresolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUnresolveCommentType` -/// object. -/// -+ (DBTEAMLOGPaperDocUnresolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUntrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUntrashedDetails.h deleted file mode 100644 index 124f1ee1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUntrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUntrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUntrashedDetails` struct. -/// -/// Restored Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUntrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUntrashedDetails` struct. -/// -@interface DBTEAMLOGPaperDocUntrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUntrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocUntrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUntrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUntrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUntrashedDetails` object. -/// -+ (DBTEAMLOGPaperDocUntrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUntrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUntrashedType.h deleted file mode 100644 index 7654166b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocUntrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocUntrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocUntrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocUntrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocUntrashedType` struct. -/// -@interface DBTEAMLOGPaperDocUntrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocUntrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocUntrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocUntrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocUntrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocUntrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocUntrashedType` object. -/// -+ (DBTEAMLOGPaperDocUntrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocViewDetails.h deleted file mode 100644 index 07758db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocViewDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocViewDetails` struct. -/// -/// Viewed Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocViewDetails` struct. -/// -@interface DBTEAMLOGPaperDocViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocViewDetails` object. -/// -+ (DBTEAMLOGPaperDocViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocViewType.h deleted file mode 100644 index 49b1ae5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocViewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocViewType` struct. -/// -@interface DBTEAMLOGPaperDocViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocViewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocViewType` object. -/// -+ (DBTEAMLOGPaperDocViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocumentLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocumentLogInfo.h deleted file mode 100644 index 2b4c775b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDocumentLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDocumentLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDocumentLogInfo` struct. -/// -/// Paper document's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDocumentLogInfo : NSObject - -#pragma mark - Instance fields - -/// Papers document Id. -@property (nonatomic, readonly, copy) NSString *docId; - -/// Paper document title. -@property (nonatomic, readonly, copy) NSString *docTitle; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param docId Papers document Id. -/// @param docTitle Paper document title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocId:(NSString *)docId docTitle:(NSString *)docTitle; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperDocumentLogInfo` struct. -/// -@interface DBTEAMLOGPaperDocumentLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDocumentLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDocumentLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocumentLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDocumentLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDocumentLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDocumentLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDocumentLogInfo` object. -/// -+ (DBTEAMLOGPaperDocumentLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDownloadFormat.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDownloadFormat.h deleted file mode 100644 index 84d92d89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperDownloadFormat.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperDownloadFormat; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDownloadFormat` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperDownloadFormat : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperDownloadFormatTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperDownloadFormat` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperDownloadFormatTag) { - /// (no description). - DBTEAMLOGPaperDownloadFormatDocx, - - /// (no description). - DBTEAMLOGPaperDownloadFormatHtml, - - /// (no description). - DBTEAMLOGPaperDownloadFormatMarkdown, - - /// (no description). - DBTEAMLOGPaperDownloadFormatPdf, - - /// (no description). - DBTEAMLOGPaperDownloadFormatOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperDownloadFormatTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "docx". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDocx; - -/// -/// Initializes union class with tag state of "html". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHtml; - -/// -/// Initializes union class with tag state of "markdown". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMarkdown; - -/// -/// Initializes union class with tag state of "pdf". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPdf; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "docx". -/// -/// @return Whether the union's current tag state has value "docx". -/// -- (BOOL)isDocx; - -/// -/// Retrieves whether the union's current tag state has value "html". -/// -/// @return Whether the union's current tag state has value "html". -/// -- (BOOL)isHtml; - -/// -/// Retrieves whether the union's current tag state has value "markdown". -/// -/// @return Whether the union's current tag state has value "markdown". -/// -- (BOOL)isMarkdown; - -/// -/// Retrieves whether the union's current tag state has value "pdf". -/// -/// @return Whether the union's current tag state has value "pdf". -/// -- (BOOL)isPdf; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperDownloadFormat` union. -/// -@interface DBTEAMLOGPaperDownloadFormatSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperDownloadFormat` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperDownloadFormat` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDownloadFormat` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperDownloadFormat *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperDownloadFormat` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperDownloadFormat` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperDownloadFormat` object. -/// -+ (DBTEAMLOGPaperDownloadFormat *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h deleted file mode 100644 index 12172c59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupAdditionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupAdditionDetails` struct. -/// -/// Added users to Paper-enabled users list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupAdditionDetails` -/// struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionDetails` object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupAdditionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionType.h deleted file mode 100644 index 5e5c5428..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupAdditionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupAdditionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupAdditionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupAdditionType` struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupAdditionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupAdditionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupAdditionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupAdditionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperEnabledUsersGroupAdditionType` object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupAdditionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h deleted file mode 100644 index 32285a24..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupRemovalDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupRemovalDetails` struct. -/// -/// Removed users from Paper-enabled users list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupRemovalDetails` -/// struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalDetails` object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupRemovalDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalType.h deleted file mode 100644 index 2a5f4367..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperEnabledUsersGroupRemovalType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperEnabledUsersGroupRemovalType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledUsersGroupRemovalType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperEnabledUsersGroupRemovalType` struct. -/// -@interface DBTEAMLOGPaperEnabledUsersGroupRemovalTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperEnabledUsersGroupRemovalType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperEnabledUsersGroupRemovalType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperEnabledUsersGroupRemovalType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperEnabledUsersGroupRemovalType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperEnabledUsersGroupRemovalType` -/// object. -/// -+ (DBTEAMLOGPaperEnabledUsersGroupRemovalType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewAllowDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewAllowDetails.h deleted file mode 100644 index 7d98151c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewAllowDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewAllowDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewAllowDetails` struct. -/// -/// Changed Paper external sharing setting to anyone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewAllowDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewAllowDetails` struct. -/// -@interface DBTEAMLOGPaperExternalViewAllowDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewAllowDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewAllowDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewAllowDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewAllowDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewAllowDetails` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewAllowDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewAllowType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewAllowType.h deleted file mode 100644 index 88e9473f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewAllowType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewAllowType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewAllowType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewAllowType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewAllowType` struct. -/// -@interface DBTEAMLOGPaperExternalViewAllowTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewAllowType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewAllowType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewAllowType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewAllowType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewAllowType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewAllowType` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewAllowType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewDefaultTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewDefaultTeamDetails.h deleted file mode 100644 index 3fcf32ed..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewDefaultTeamDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewDefaultTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewDefaultTeamDetails` struct. -/// -/// Changed Paper external sharing setting to default team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewDefaultTeamDetails` -/// struct. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewDefaultTeamDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewDefaultTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewDefaultTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamDetails` object. -/// -+ (DBTEAMLOGPaperExternalViewDefaultTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewDefaultTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewDefaultTeamType.h deleted file mode 100644 index c98f612c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewDefaultTeamType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewDefaultTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewDefaultTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewDefaultTeamType` struct. -/// -@interface DBTEAMLOGPaperExternalViewDefaultTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewDefaultTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewDefaultTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewDefaultTeamType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewDefaultTeamType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewDefaultTeamType` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewDefaultTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewForbidDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewForbidDetails.h deleted file mode 100644 index 9f09bf35..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewForbidDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewForbidDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewForbidDetails` struct. -/// -/// Changed Paper external sharing setting to team-only. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewForbidDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewForbidDetails` struct. -/// -@interface DBTEAMLOGPaperExternalViewForbidDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewForbidDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewForbidDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewForbidDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewForbidDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewForbidDetails` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewForbidDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewForbidType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewForbidType.h deleted file mode 100644 index 3fca031b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperExternalViewForbidType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperExternalViewForbidType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperExternalViewForbidType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperExternalViewForbidType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperExternalViewForbidType` struct. -/// -@interface DBTEAMLOGPaperExternalViewForbidTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperExternalViewForbidType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperExternalViewForbidType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperExternalViewForbidType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperExternalViewForbidType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperExternalViewForbidType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperExternalViewForbidType` -/// object. -/// -+ (DBTEAMLOGPaperExternalViewForbidType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderChangeSubscriptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderChangeSubscriptionDetails.h deleted file mode 100644 index e1837d79..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderChangeSubscriptionDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderChangeSubscriptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderChangeSubscriptionDetails` struct. -/// -/// Followed/unfollowed Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// New folder subscription level. -@property (nonatomic, readonly, copy) NSString *dNewSubscriptionLevel; - -/// Previous folder subscription level. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousSubscriptionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New folder subscription level. -/// @param previousSubscriptionLevel Previous folder subscription level. Might -/// be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel - previousSubscriptionLevel:(nullable NSString *)previousSubscriptionLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewSubscriptionLevel New folder subscription level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid dNewSubscriptionLevel:(NSString *)dNewSubscriptionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderChangeSubscriptionDetails` -/// struct. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderChangeSubscriptionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderChangeSubscriptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderChangeSubscriptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionDetails` object. -/// -+ (DBTEAMLOGPaperFolderChangeSubscriptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderChangeSubscriptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderChangeSubscriptionType.h deleted file mode 100644 index 9b72febc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderChangeSubscriptionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderChangeSubscriptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderChangeSubscriptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderChangeSubscriptionType` struct. -/// -@interface DBTEAMLOGPaperFolderChangeSubscriptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderChangeSubscriptionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderChangeSubscriptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderChangeSubscriptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderChangeSubscriptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderChangeSubscriptionType` -/// object. -/// -+ (DBTEAMLOGPaperFolderChangeSubscriptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderDeletedDetails.h deleted file mode 100644 index 488d67ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderDeletedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderDeletedDetails` struct. -/// -/// Archived Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderDeletedDetails` struct. -/// -@interface DBTEAMLOGPaperFolderDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderDeletedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderDeletedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderDeletedDetails` object. -/// -+ (DBTEAMLOGPaperFolderDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderDeletedType.h deleted file mode 100644 index 3b43c37f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderDeletedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderDeletedType` struct. -/// -@interface DBTEAMLOGPaperFolderDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderDeletedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderDeletedType` object. -/// -+ (DBTEAMLOGPaperFolderDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderFollowedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderFollowedDetails.h deleted file mode 100644 index 7962ce04..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderFollowedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderFollowedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderFollowedDetails` struct. -/// -/// Followed Paper folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderFollowedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderFollowedDetails` struct. -/// -@interface DBTEAMLOGPaperFolderFollowedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderFollowedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderFollowedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderFollowedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderFollowedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderFollowedDetails` -/// object. -/// -+ (DBTEAMLOGPaperFolderFollowedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderFollowedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderFollowedType.h deleted file mode 100644 index 9993a7ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderFollowedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderFollowedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderFollowedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderFollowedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderFollowedType` struct. -/// -@interface DBTEAMLOGPaperFolderFollowedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderFollowedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderFollowedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderFollowedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderFollowedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderFollowedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderFollowedType` object. -/// -+ (DBTEAMLOGPaperFolderFollowedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderLogInfo.h deleted file mode 100644 index a9389bd1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderLogInfo.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderLogInfo` struct. -/// -/// Paper folder's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderLogInfo : NSObject - -#pragma mark - Instance fields - -/// Papers folder Id. -@property (nonatomic, readonly, copy) NSString *folderId; - -/// Paper folder name. -@property (nonatomic, readonly, copy) NSString *folderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param folderId Papers folder Id. -/// @param folderName Paper folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderId:(NSString *)folderId folderName:(NSString *)folderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderLogInfo` struct. -/// -@interface DBTEAMLOGPaperFolderLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderLogInfo` object. -/// -+ (DBTEAMLOGPaperFolderLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderTeamInviteDetails.h deleted file mode 100644 index 6d8dc9d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderTeamInviteDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderTeamInviteDetails` struct. -/// -/// Shared Paper folder with users and/or groups. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderTeamInviteDetails` struct. -/// -@interface DBTEAMLOGPaperFolderTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderTeamInviteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderTeamInviteDetails` -/// object. -/// -+ (DBTEAMLOGPaperFolderTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderTeamInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderTeamInviteType.h deleted file mode 100644 index 68d8c90f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperFolderTeamInviteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperFolderTeamInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperFolderTeamInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperFolderTeamInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperFolderTeamInviteType` struct. -/// -@interface DBTEAMLOGPaperFolderTeamInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperFolderTeamInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperFolderTeamInviteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperFolderTeamInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperFolderTeamInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperFolderTeamInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperFolderTeamInviteType` object. -/// -+ (DBTEAMLOGPaperFolderTeamInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperMemberPolicy.h deleted file mode 100644 index bc5571ba..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperMemberPolicy.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperMemberPolicy` union. -/// -/// Policy for controlling if team members can share Paper documents externally. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPaperMemberPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPaperMemberPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPaperMemberPolicyTag) { - /// (no description). - DBTEAMLOGPaperMemberPolicyAnyoneWithLink, - - /// (no description). - DBTEAMLOGPaperMemberPolicyOnlyTeam, - - /// (no description). - DBTEAMLOGPaperMemberPolicyTeamAndExplicitlyShared, - - /// (no description). - DBTEAMLOGPaperMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPaperMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "anyone_with_link". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyoneWithLink; - -/// -/// Initializes union class with tag state of "only_team". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyTeam; - -/// -/// Initializes union class with tag state of "team_and_explicitly_shared". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamAndExplicitlyShared; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "anyone_with_link". -/// -/// @return Whether the union's current tag state has value "anyone_with_link". -/// -- (BOOL)isAnyoneWithLink; - -/// -/// Retrieves whether the union's current tag state has value "only_team". -/// -/// @return Whether the union's current tag state has value "only_team". -/// -- (BOOL)isOnlyTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_and_explicitly_shared". -/// -/// @return Whether the union's current tag state has value -/// "team_and_explicitly_shared". -/// -- (BOOL)isTeamAndExplicitlyShared; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPaperMemberPolicy` union. -/// -@interface DBTEAMLOGPaperMemberPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperMemberPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperMemberPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperMemberPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperMemberPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperMemberPolicy` object. -/// -+ (DBTEAMLOGPaperMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h deleted file mode 100644 index 20493e04..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkChangePermissionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkChangePermissionDetails` struct. -/// -/// Changed permissions for published doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// New permission level. -@property (nonatomic, readonly, copy) NSString *dNewPermissionLevel; - -/// Previous permission level. -@property (nonatomic, readonly, copy) NSString *previousPermissionLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param dNewPermissionLevel New permission level. -/// @param previousPermissionLevel Previous permission level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid - dNewPermissionLevel:(NSString *)dNewPermissionLevel - previousPermissionLevel:(NSString *)previousPermissionLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkChangePermissionDetails` -/// struct. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkChangePermissionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionDetails` object. -/// -+ (DBTEAMLOGPaperPublishedLinkChangePermissionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionType.h deleted file mode 100644 index 042cf3ed..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkChangePermissionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkChangePermissionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkChangePermissionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkChangePermissionType` -/// struct. -/// -@interface DBTEAMLOGPaperPublishedLinkChangePermissionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkChangePermissionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkChangePermissionType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkChangePermissionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPaperPublishedLinkChangePermissionType` object. -/// -+ (DBTEAMLOGPaperPublishedLinkChangePermissionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkCreateDetails.h deleted file mode 100644 index c12cb066..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkCreateDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkCreateDetails` struct. -/// -/// Published doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkCreateDetails` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkCreateDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkCreateDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkCreateDetails` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkCreateType.h deleted file mode 100644 index b786cfde..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkCreateType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkCreateType` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkCreateType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkCreateType` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkDisabledDetails.h deleted file mode 100644 index 6737d78e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkDisabledDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkDisabledDetails` struct. -/// -/// Unpublished doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkDisabledDetails` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkDisabledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPaperPublishedLinkDisabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkDisabledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkDisabledDetails` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkDisabledType.h deleted file mode 100644 index 22ec8477..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkDisabledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkDisabledType` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkDisabledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkDisabledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkDisabledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkDisabledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkDisabledType` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkViewDetails.h deleted file mode 100644 index 9f2a7acc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkViewDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkViewDetails` struct. -/// -/// Viewed published doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkViewDetails` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkViewDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkViewDetails` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkViewType.h deleted file mode 100644 index 1bc30cca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPaperPublishedLinkViewType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPaperPublishedLinkViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperPublishedLinkViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPaperPublishedLinkViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PaperPublishedLinkViewType` struct. -/// -@interface DBTEAMLOGPaperPublishedLinkViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPaperPublishedLinkViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPaperPublishedLinkViewType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPaperPublishedLinkViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGPaperPublishedLinkViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPaperPublishedLinkViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPaperPublishedLinkViewType` -/// object. -/// -+ (DBTEAMLOGPaperPublishedLinkViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGParticipantLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGParticipantLogInfo.h deleted file mode 100644 index 79b76f9f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGParticipantLogInfo.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGGroupLogInfo; -@class DBTEAMLOGParticipantLogInfo; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ParticipantLogInfo` union. -/// -/// A user or group -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGParticipantLogInfo : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGParticipantLogInfoTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGParticipantLogInfo` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGParticipantLogInfoTag) { - /// Group details. - DBTEAMLOGParticipantLogInfoGroup, - - /// A user with a Dropbox account. - DBTEAMLOGParticipantLogInfoUser, - - /// (no description). - DBTEAMLOGParticipantLogInfoOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGParticipantLogInfoTag tag; - -/// Group details. @note Ensure the `isGroup` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGGroupLogInfo *group; - -/// A user with a Dropbox account. @note Ensure the `isUser` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGUserLogInfo *user; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "group". -/// -/// Description of the "group" tag state: Group details. -/// -/// @param group Group details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGroup:(DBTEAMLOGGroupLogInfo *)group; - -/// -/// Initializes union class with tag state of "user". -/// -/// Description of the "user" tag state: A user with a Dropbox account. -/// -/// @param user A user with a Dropbox account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMLOGUserLogInfo *)user; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "group". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `group` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "group". -/// -- (BOOL)isGroup; - -/// -/// Retrieves whether the union's current tag state has value "user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `user` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "user". -/// -- (BOOL)isUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGParticipantLogInfo` union. -/// -@interface DBTEAMLOGParticipantLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGParticipantLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGParticipantLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGParticipantLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGParticipantLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGParticipantLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGParticipantLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGParticipantLogInfo` object. -/// -+ (DBTEAMLOGParticipantLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPassPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPassPolicy.h deleted file mode 100644 index 3cf681b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPassPolicy.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPassPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PassPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPassPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPassPolicyTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGPassPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPassPolicyTag) { - /// (no description). - DBTEAMLOGPassPolicyAllow, - - /// (no description). - DBTEAMLOGPassPolicyDisabled, - - /// (no description). - DBTEAMLOGPassPolicyEnabled, - - /// (no description). - DBTEAMLOGPassPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPassPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPassPolicy` union. -/// -@interface DBTEAMLOGPassPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPassPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPassPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPassPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPassPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGPassPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPassPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPassPolicy` object. -/// -+ (DBTEAMLOGPassPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordChangeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordChangeDetails.h deleted file mode 100644 index 0728f0ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordChangeDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordChangeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordChangeDetails` struct. -/// -/// Changed password. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordChangeDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordChangeDetails` struct. -/// -@interface DBTEAMLOGPasswordChangeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordChangeDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordChangeDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordChangeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordChangeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordChangeDetails` object. -/// -+ (DBTEAMLOGPasswordChangeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordChangeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordChangeType.h deleted file mode 100644 index 16a21381..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordChangeType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordChangeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordChangeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordChangeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordChangeType` struct. -/// -@interface DBTEAMLOGPasswordChangeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordChangeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordChangeType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordChangeType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordChangeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordChangeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordChangeType` object. -/// -+ (DBTEAMLOGPasswordChangeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetAllDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetAllDetails.h deleted file mode 100644 index 269639db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetAllDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetAllDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetAllDetails` struct. -/// -/// Reset all team member passwords. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetAllDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetAllDetails` struct. -/// -@interface DBTEAMLOGPasswordResetAllDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetAllDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetAllDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetAllDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetAllDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetAllDetails` object. -/// -+ (DBTEAMLOGPasswordResetAllDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetAllType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetAllType.h deleted file mode 100644 index e7dd6268..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetAllType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetAllType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetAllType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetAllType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetAllType` struct. -/// -@interface DBTEAMLOGPasswordResetAllTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetAllType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetAllType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetAllType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetAllType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetAllType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetAllType` object. -/// -+ (DBTEAMLOGPasswordResetAllType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetDetails.h deleted file mode 100644 index 9207f23d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetDetails` struct. -/// -/// Reset password. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetDetails` struct. -/// -@interface DBTEAMLOGPasswordResetDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetDetails` object. -/// -+ (DBTEAMLOGPasswordResetDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetType.h deleted file mode 100644 index f63592cb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordResetType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordResetType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordResetType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordResetType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PasswordResetType` struct. -/// -@interface DBTEAMLOGPasswordResetTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordResetType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPasswordResetType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordResetType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordResetType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordResetType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPasswordResetType` object. -/// -+ (DBTEAMLOGPasswordResetType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h deleted file mode 100644 index 9fdac19f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails; -@class DBTEAMPOLICIESPasswordStrengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordStrengthRequirementsChangePolicyDetails` struct. -/// -/// Changed team password strength requirements. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// Old password strength policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicy *previousValue; - -/// New password strength policy. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Old password strength policy. -/// @param dNewValue New password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMPOLICIESPasswordStrengthPolicy *)previousValue - dNewValue:(DBTEAMPOLICIESPasswordStrengthPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `PasswordStrengthRequirementsChangePolicyDetails` struct. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails` object. -/// -+ (DBTEAMLOGPasswordStrengthRequirementsChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h deleted file mode 100644 index 411f5b46..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPasswordStrengthRequirementsChangePolicyType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPasswordStrengthRequirementsChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordStrengthRequirementsChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `PasswordStrengthRequirementsChangePolicyType` struct. -/// -@interface DBTEAMLOGPasswordStrengthRequirementsChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPasswordStrengthRequirementsChangePolicyType` object. -/// -+ (DBTEAMLOGPasswordStrengthRequirementsChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPathLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPathLogInfo.h deleted file mode 100644 index 2ddab619..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPathLogInfo.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGNamespaceRelativePathLogInfo; -@class DBTEAMLOGPathLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PathLogInfo` struct. -/// -/// Path's details. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPathLogInfo : NSObject - -#pragma mark - Instance fields - -/// Fully qualified path relative to event's context. -@property (nonatomic, readonly, copy, nullable) NSString *contextual; - -/// Path relative to the namespace containing the content. -@property (nonatomic, readonly) DBTEAMLOGNamespaceRelativePathLogInfo *namespaceRelative; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param namespaceRelative Path relative to the namespace containing the -/// content. -/// @param contextual Fully qualified path relative to event's context. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaceRelative:(DBTEAMLOGNamespaceRelativePathLogInfo *)namespaceRelative - contextual:(nullable NSString *)contextual; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param namespaceRelative Path relative to the namespace containing the -/// content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaceRelative:(DBTEAMLOGNamespaceRelativePathLogInfo *)namespaceRelative; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PathLogInfo` struct. -/// -@interface DBTEAMLOGPathLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPathLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPathLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPathLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPathLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGPathLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPathLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPathLogInfo` object. -/// -+ (DBTEAMLOGPathLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPendingSecondaryEmailAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPendingSecondaryEmailAddedDetails.h deleted file mode 100644 index 42e02fd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPendingSecondaryEmailAddedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPendingSecondaryEmailAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PendingSecondaryEmailAddedDetails` struct. -/// -/// Added pending secondary email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedDetails : NSObject - -#pragma mark - Instance fields - -/// New pending secondary email. -@property (nonatomic, readonly, copy) NSString *secondaryEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryEmail New pending secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmail:(NSString *)secondaryEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PendingSecondaryEmailAddedDetails` struct. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPendingSecondaryEmailAddedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPendingSecondaryEmailAddedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPendingSecondaryEmailAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPendingSecondaryEmailAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPendingSecondaryEmailAddedDetails` -/// object. -/// -+ (DBTEAMLOGPendingSecondaryEmailAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPendingSecondaryEmailAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPendingSecondaryEmailAddedType.h deleted file mode 100644 index ad7b1131..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPendingSecondaryEmailAddedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPendingSecondaryEmailAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PendingSecondaryEmailAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PendingSecondaryEmailAddedType` struct. -/// -@interface DBTEAMLOGPendingSecondaryEmailAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPendingSecondaryEmailAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPendingSecondaryEmailAddedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPendingSecondaryEmailAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGPendingSecondaryEmailAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPendingSecondaryEmailAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPendingSecondaryEmailAddedType` -/// object. -/// -+ (DBTEAMLOGPendingSecondaryEmailAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPermanentDeleteChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPermanentDeleteChangePolicyDetails.h deleted file mode 100644 index bcb6d070..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPermanentDeleteChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGContentPermanentDeletePolicy; -@class DBTEAMLOGPermanentDeleteChangePolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PermanentDeleteChangePolicyDetails` struct. -/// -/// Enabled/disabled ability of team members to permanently delete content. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New permanent delete content policy. -@property (nonatomic, readonly) DBTEAMLOGContentPermanentDeletePolicy *dNewValue; - -/// Previous permanent delete content policy. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGContentPermanentDeletePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New permanent delete content policy. -/// @param previousValue Previous permanent delete content policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGContentPermanentDeletePolicy *)dNewValue - previousValue:(nullable DBTEAMLOGContentPermanentDeletePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New permanent delete content policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGContentPermanentDeletePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PermanentDeleteChangePolicyDetails` struct. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPermanentDeleteChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPermanentDeleteChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPermanentDeleteChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyDetails` object. -/// -+ (DBTEAMLOGPermanentDeleteChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPermanentDeleteChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPermanentDeleteChangePolicyType.h deleted file mode 100644 index 2af1a0b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPermanentDeleteChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPermanentDeleteChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PermanentDeleteChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PermanentDeleteChangePolicyType` struct. -/// -@interface DBTEAMLOGPermanentDeleteChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPermanentDeleteChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPermanentDeleteChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPermanentDeleteChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPermanentDeleteChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPermanentDeleteChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPermanentDeleteChangePolicyType` -/// object. -/// -+ (DBTEAMLOGPermanentDeleteChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPlacementRestriction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPlacementRestriction.h deleted file mode 100644 index fb10465e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPlacementRestriction.h +++ /dev/null @@ -1,200 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPlacementRestriction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PlacementRestriction` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPlacementRestriction : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPlacementRestrictionTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGPlacementRestriction` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPlacementRestrictionTag) { - /// (no description). - DBTEAMLOGPlacementRestrictionAustraliaOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionEuropeOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionJapanOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionNone, - - /// (no description). - DBTEAMLOGPlacementRestrictionUkOnly, - - /// (no description). - DBTEAMLOGPlacementRestrictionUsS3Only, - - /// (no description). - DBTEAMLOGPlacementRestrictionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPlacementRestrictionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "australia_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAustraliaOnly; - -/// -/// Initializes union class with tag state of "europe_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEuropeOnly; - -/// -/// Initializes union class with tag state of "japan_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithJapanOnly; - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "uk_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUkOnly; - -/// -/// Initializes union class with tag state of "us_s3_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsS3Only; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "australia_only". -/// -/// @return Whether the union's current tag state has value "australia_only". -/// -- (BOOL)isAustraliaOnly; - -/// -/// Retrieves whether the union's current tag state has value "europe_only". -/// -/// @return Whether the union's current tag state has value "europe_only". -/// -- (BOOL)isEuropeOnly; - -/// -/// Retrieves whether the union's current tag state has value "japan_only". -/// -/// @return Whether the union's current tag state has value "japan_only". -/// -- (BOOL)isJapanOnly; - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "uk_only". -/// -/// @return Whether the union's current tag state has value "uk_only". -/// -- (BOOL)isUkOnly; - -/// -/// Retrieves whether the union's current tag state has value "us_s3_only". -/// -/// @return Whether the union's current tag state has value "us_s3_only". -/// -- (BOOL)isUsS3Only; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPlacementRestriction` union. -/// -@interface DBTEAMLOGPlacementRestrictionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPlacementRestriction` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPlacementRestriction` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPlacementRestriction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPlacementRestriction *)instance; - -/// -/// Deserializes `DBTEAMLOGPlacementRestriction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPlacementRestriction` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPlacementRestriction` object. -/// -+ (DBTEAMLOGPlacementRestriction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPolicyType.h deleted file mode 100644 index 6232b33c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPolicyType.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PolicyType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPolicyType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGPolicyTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGPolicyType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGPolicyTypeTag) { - /// (no description). - DBTEAMLOGPolicyTypeDisposition, - - /// (no description). - DBTEAMLOGPolicyTypeRetention, - - /// (no description). - DBTEAMLOGPolicyTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGPolicyTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disposition". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisposition; - -/// -/// Initializes union class with tag state of "retention". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRetention; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disposition". -/// -/// @return Whether the union's current tag state has value "disposition". -/// -- (BOOL)isDisposition; - -/// -/// Retrieves whether the union's current tag state has value "retention". -/// -/// @return Whether the union's current tag state has value "retention". -/// -- (BOOL)isRetention; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGPolicyType` union. -/// -@interface DBTEAMLOGPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPolicyType` object. -/// -+ (DBTEAMLOGPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h deleted file mode 100644 index 803829d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestAcceptedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestAcceptedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestAcceptedDetails` struct. -/// -/// Team merge request acceptance details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestAcceptedDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestAcceptedDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestAcceptedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestAcceptedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestAcceptedDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestAcceptedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestCanceledDetails.h deleted file mode 100644 index 99f6543e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestCanceledDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestCanceledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestCanceledDetails` struct. -/// -/// Team merge request cancellation details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestCanceledDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestCanceledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestCanceledDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestExpiredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestExpiredDetails.h deleted file mode 100644 index adde9775..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestExpiredDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestExpiredDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestExpiredDetails` struct. -/// -/// Team merge request expiration details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestExpiredDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestExpiredDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestExpiredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestExpiredDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestExpiredDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestExpiredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestExpiredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestExpiredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestExpiredDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestExpiredDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestExpiredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestReminderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestReminderDetails.h deleted file mode 100644 index 15d71e5c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGPrimaryTeamRequestReminderDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestReminderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PrimaryTeamRequestReminderDetails` struct. -/// -/// Team merge request reminder details shown to the primary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGPrimaryTeamRequestReminderDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentTo The name of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `PrimaryTeamRequestReminderDetails` struct. -/// -@interface DBTEAMLOGPrimaryTeamRequestReminderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGPrimaryTeamRequestReminderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGPrimaryTeamRequestReminderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestReminderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGPrimaryTeamRequestReminderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGPrimaryTeamRequestReminderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGPrimaryTeamRequestReminderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGPrimaryTeamRequestReminderDetails` -/// object. -/// -+ (DBTEAMLOGPrimaryTeamRequestReminderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGQuickActionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGQuickActionType.h deleted file mode 100644 index a5f1cbe0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGQuickActionType.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGQuickActionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `QuickActionType` union. -/// -/// Quick action type. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGQuickActionType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGQuickActionTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGQuickActionType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGQuickActionTypeTag) { - /// (no description). - DBTEAMLOGQuickActionTypeDeleteSharedLink, - - /// (no description). - DBTEAMLOGQuickActionTypeResetPassword, - - /// (no description). - DBTEAMLOGQuickActionTypeRestoreFileOrFolder, - - /// (no description). - DBTEAMLOGQuickActionTypeUnlinkApp, - - /// (no description). - DBTEAMLOGQuickActionTypeUnlinkDevice, - - /// (no description). - DBTEAMLOGQuickActionTypeUnlinkSession, - - /// (no description). - DBTEAMLOGQuickActionTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGQuickActionTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "delete_shared_link". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeleteSharedLink; - -/// -/// Initializes union class with tag state of "reset_password". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResetPassword; - -/// -/// Initializes union class with tag state of "restore_file_or_folder". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRestoreFileOrFolder; - -/// -/// Initializes union class with tag state of "unlink_app". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkApp; - -/// -/// Initializes union class with tag state of "unlink_device". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkDevice; - -/// -/// Initializes union class with tag state of "unlink_session". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkSession; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "delete_shared_link". -/// -/// @return Whether the union's current tag state has value -/// "delete_shared_link". -/// -- (BOOL)isDeleteSharedLink; - -/// -/// Retrieves whether the union's current tag state has value "reset_password". -/// -/// @return Whether the union's current tag state has value "reset_password". -/// -- (BOOL)isResetPassword; - -/// -/// Retrieves whether the union's current tag state has value -/// "restore_file_or_folder". -/// -/// @return Whether the union's current tag state has value -/// "restore_file_or_folder". -/// -- (BOOL)isRestoreFileOrFolder; - -/// -/// Retrieves whether the union's current tag state has value "unlink_app". -/// -/// @return Whether the union's current tag state has value "unlink_app". -/// -- (BOOL)isUnlinkApp; - -/// -/// Retrieves whether the union's current tag state has value "unlink_device". -/// -/// @return Whether the union's current tag state has value "unlink_device". -/// -- (BOOL)isUnlinkDevice; - -/// -/// Retrieves whether the union's current tag state has value "unlink_session". -/// -/// @return Whether the union's current tag state has value "unlink_session". -/// -- (BOOL)isUnlinkSession; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGQuickActionType` union. -/// -@interface DBTEAMLOGQuickActionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGQuickActionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGQuickActionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGQuickActionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGQuickActionType *)instance; - -/// -/// Deserializes `DBTEAMLOGQuickActionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGQuickActionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGQuickActionType` object. -/// -+ (DBTEAMLOGQuickActionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportDetails.h deleted file mode 100644 index ef193323..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportDetails` struct. -/// -/// Created ransomware report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportDetails` struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareAlertCreateReportDetails` object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h deleted file mode 100644 index a474bbf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportFailedDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportFailedDetails` struct. -/// -/// Couldn't generate ransomware report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportFailedDetails` -/// struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportFailedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedDetails` object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportFailedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedType.h deleted file mode 100644 index e65fadf7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportFailedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportFailedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportFailedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportFailedType` -/// struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportFailedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportFailedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportFailedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportFailedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareAlertCreateReportFailedType` object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportFailedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportType.h deleted file mode 100644 index df248930..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareAlertCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareAlertCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareAlertCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareAlertCreateReportType` struct. -/// -@interface DBTEAMLOGRansomwareAlertCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareAlertCreateReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareAlertCreateReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareAlertCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareAlertCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareAlertCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRansomwareAlertCreateReportType` -/// object. -/// -+ (DBTEAMLOGRansomwareAlertCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h deleted file mode 100644 index f38e2b81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessCompletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessCompletedDetails` struct. -/// -/// Completed ransomware restore process. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedDetails : NSObject - -#pragma mark - Instance fields - -/// The status of the restore process. -@property (nonatomic, readonly, copy) NSString *status; - -/// Restored files count. -@property (nonatomic, readonly) NSNumber *restoredFilesCount; - -/// Restored files failed count. -@property (nonatomic, readonly) NSNumber *restoredFilesFailedCount; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param status The status of the restore process. -/// @param restoredFilesCount Restored files count. -/// @param restoredFilesFailedCount Restored files failed count. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatus:(NSString *)status - restoredFilesCount:(NSNumber *)restoredFilesCount - restoredFilesFailedCount:(NSNumber *)restoredFilesFailedCount; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessCompletedDetails` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessCompletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedDetails` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessCompletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedType.h deleted file mode 100644 index 4405d5e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessCompletedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessCompletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessCompletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessCompletedType` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessCompletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessCompletedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessCompletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessCompletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessCompletedType` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessCompletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessStartedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessStartedDetails.h deleted file mode 100644 index d674f926..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessStartedDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessStartedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessStartedDetails` struct. -/// -/// Started ransomware restore process. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedDetails : NSObject - -#pragma mark - Instance fields - -/// Ransomware filename extension. -@property (nonatomic, readonly, copy) NSString *extension; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param extension Ransomware filename extension. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExtension:(NSString *)extension; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessStartedDetails` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessStartedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessStartedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessStartedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedDetails` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessStartedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessStartedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessStartedType.h deleted file mode 100644 index eff05bb9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRansomwareRestoreProcessStartedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRansomwareRestoreProcessStartedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RansomwareRestoreProcessStartedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RansomwareRestoreProcessStartedType` -/// struct. -/// -@interface DBTEAMLOGRansomwareRestoreProcessStartedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRansomwareRestoreProcessStartedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRansomwareRestoreProcessStartedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRansomwareRestoreProcessStartedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGRansomwareRestoreProcessStartedType` object. -/// -+ (DBTEAMLOGRansomwareRestoreProcessStartedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRecipientsConfiguration.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRecipientsConfiguration.h deleted file mode 100644 index fb6a7957..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRecipientsConfiguration.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGAlertRecipientsSettingType; -@class DBTEAMLOGRecipientsConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RecipientsConfiguration` struct. -/// -/// Recipients Configuration -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRecipientsConfiguration : NSObject - -#pragma mark - Instance fields - -/// Recipients setting type. -@property (nonatomic, readonly, nullable) DBTEAMLOGAlertRecipientsSettingType *recipientSettingType; - -/// A list of user emails to notify. -@property (nonatomic, readonly, nullable) NSArray *emails; - -/// A list of groups to notify. -@property (nonatomic, readonly, nullable) NSArray *groups; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param recipientSettingType Recipients setting type. -/// @param emails A list of user emails to notify. -/// @param groups A list of groups to notify. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientSettingType:(nullable DBTEAMLOGAlertRecipientsSettingType *)recipientSettingType - emails:(nullable NSArray *)emails - groups:(nullable NSArray *)groups; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RecipientsConfiguration` struct. -/// -@interface DBTEAMLOGRecipientsConfigurationSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRecipientsConfiguration` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRecipientsConfiguration` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRecipientsConfiguration` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRecipientsConfiguration *)instance; - -/// -/// Deserializes `DBTEAMLOGRecipientsConfiguration` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRecipientsConfiguration` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRecipientsConfiguration` object. -/// -+ (DBTEAMLOGRecipientsConfiguration *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRelocateAssetReferencesLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRelocateAssetReferencesLogInfo.h deleted file mode 100644 index 421946e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRelocateAssetReferencesLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRelocateAssetReferencesLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RelocateAssetReferencesLogInfo` struct. -/// -/// Provides the indices of the source asset and the destination asset for a -/// relocate action. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRelocateAssetReferencesLogInfo : NSObject - -#pragma mark - Instance fields - -/// Source asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *srcAssetIndex; - -/// Destination asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *destAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param srcAssetIndex Source asset position in the Assets list. -/// @param destAssetIndex Destination asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSrcAssetIndex:(NSNumber *)srcAssetIndex destAssetIndex:(NSNumber *)destAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RelocateAssetReferencesLogInfo` struct. -/// -@interface DBTEAMLOGRelocateAssetReferencesLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRelocateAssetReferencesLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRelocateAssetReferencesLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRelocateAssetReferencesLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRelocateAssetReferencesLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGRelocateAssetReferencesLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRelocateAssetReferencesLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRelocateAssetReferencesLogInfo` -/// object. -/// -+ (DBTEAMLOGRelocateAssetReferencesLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileDeleteDetails.h deleted file mode 100644 index 9e188d4f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileDeleteDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileDeleteDetails` struct. -/// -/// Deleted files in Replay. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileDeleteDetails` struct. -/// -@interface DBTEAMLOGReplayFileDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayFileDeleteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileDeleteDetails` object. -/// -+ (DBTEAMLOGReplayFileDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileDeleteType.h deleted file mode 100644 index 42230f96..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileDeleteType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileDeleteType` struct. -/// -@interface DBTEAMLOGReplayFileDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayFileDeleteType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileDeleteType` object. -/// -+ (DBTEAMLOGReplayFileDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkCreatedDetails.h deleted file mode 100644 index ae99be25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkCreatedDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkCreatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkCreatedDetails` struct. -/// -/// Created shared link in Replay. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkCreatedDetails` struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkCreatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedDetails` object. -/// -+ (DBTEAMLOGReplayFileSharedLinkCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkCreatedType.h deleted file mode 100644 index 39f4387b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkCreatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkCreatedType` struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkCreatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileSharedLinkCreatedType` -/// object. -/// -+ (DBTEAMLOGReplayFileSharedLinkCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkModifiedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkModifiedDetails.h deleted file mode 100644 index c24a4972..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkModifiedDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkModifiedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkModifiedDetails` struct. -/// -/// Modified shared link in Replay. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkModifiedDetails` -/// struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkModifiedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkModifiedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkModifiedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedDetails` object. -/// -+ (DBTEAMLOGReplayFileSharedLinkModifiedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkModifiedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkModifiedType.h deleted file mode 100644 index 5a51ef0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayFileSharedLinkModifiedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayFileSharedLinkModifiedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayFileSharedLinkModifiedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayFileSharedLinkModifiedType` struct. -/// -@interface DBTEAMLOGReplayFileSharedLinkModifiedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayFileSharedLinkModifiedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayFileSharedLinkModifiedType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayFileSharedLinkModifiedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayFileSharedLinkModifiedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayFileSharedLinkModifiedType` -/// object. -/// -+ (DBTEAMLOGReplayFileSharedLinkModifiedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamAddDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamAddDetails.h deleted file mode 100644 index 6d65eeb3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamAddDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamAddDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamAddDetails` struct. -/// -/// Added member to Replay Project. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamAddDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamAddDetails` struct. -/// -@interface DBTEAMLOGReplayProjectTeamAddDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamAddDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamAddDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamAddDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamAddDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamAddDetails` -/// object. -/// -+ (DBTEAMLOGReplayProjectTeamAddDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamAddType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamAddType.h deleted file mode 100644 index 4be6186b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamAddType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamAddType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamAddType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamAddType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamAddType` struct. -/// -@interface DBTEAMLOGReplayProjectTeamAddTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamAddType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamAddType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamAddType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamAddType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamAddType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamAddType` object. -/// -+ (DBTEAMLOGReplayProjectTeamAddType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamDeleteDetails.h deleted file mode 100644 index da8c03d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamDeleteDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamDeleteDetails` struct. -/// -/// Removed member from Replay Project. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamDeleteDetails` struct. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamDeleteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamDeleteDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamDeleteDetails` -/// object. -/// -+ (DBTEAMLOGReplayProjectTeamDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamDeleteType.h deleted file mode 100644 index 8467573d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGReplayProjectTeamDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGReplayProjectTeamDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ReplayProjectTeamDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ReplayProjectTeamDeleteType` struct. -/// -@interface DBTEAMLOGReplayProjectTeamDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGReplayProjectTeamDeleteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGReplayProjectTeamDeleteType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGReplayProjectTeamDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGReplayProjectTeamDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGReplayProjectTeamDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGReplayProjectTeamDeleteType` -/// object. -/// -+ (DBTEAMLOGReplayProjectTeamDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerLogInfo.h deleted file mode 100644 index ac9eb08d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerLogInfo.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerLogInfo` struct. -/// -/// Reseller information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerLogInfo : NSObject - -#pragma mark - Instance fields - -/// Reseller name. -@property (nonatomic, readonly, copy) NSString *resellerName; - -/// Reseller email. -@property (nonatomic, readonly, copy) NSString *resellerEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param resellerName Reseller name. -/// @param resellerEmail Reseller email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerName:(NSString *)resellerName resellerEmail:(NSString *)resellerEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerLogInfo` struct. -/// -@interface DBTEAMLOGResellerLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerLogInfo` object. -/// -+ (DBTEAMLOGResellerLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerRole.h deleted file mode 100644 index 936d1a8e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerRole.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerRole` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerRole : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGResellerRoleTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGResellerRole` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGResellerRoleTag) { - /// (no description). - DBTEAMLOGResellerRoleNotReseller, - - /// (no description). - DBTEAMLOGResellerRoleResellerAdmin, - - /// (no description). - DBTEAMLOGResellerRoleOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGResellerRoleTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "not_reseller". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotReseller; - -/// -/// Initializes union class with tag state of "reseller_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResellerAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "not_reseller". -/// -/// @return Whether the union's current tag state has value "not_reseller". -/// -- (BOOL)isNotReseller; - -/// -/// Retrieves whether the union's current tag state has value "reseller_admin". -/// -/// @return Whether the union's current tag state has value "reseller_admin". -/// -- (BOOL)isResellerAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGResellerRole` union. -/// -@interface DBTEAMLOGResellerRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerRole` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerRole *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerRole` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerRole` object. -/// -+ (DBTEAMLOGResellerRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportChangePolicyDetails.h deleted file mode 100644 index 1766c423..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportChangePolicyDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportChangePolicyDetails; -@class DBTEAMLOGResellerSupportPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportChangePolicyDetails` struct. -/// -/// Enabled/disabled reseller support. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Reseller support policy. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportPolicy *dNewValue; - -/// Previous Reseller support policy. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Reseller support policy. -/// @param previousValue Previous Reseller support policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGResellerSupportPolicy *)dNewValue - previousValue:(DBTEAMLOGResellerSupportPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportChangePolicyDetails` struct. -/// -@interface DBTEAMLOGResellerSupportChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportChangePolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGResellerSupportChangePolicyDetails` object. -/// -+ (DBTEAMLOGResellerSupportChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportChangePolicyType.h deleted file mode 100644 index 4435ad3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportChangePolicyType` struct. -/// -@interface DBTEAMLOGResellerSupportChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportChangePolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportChangePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportChangePolicyType` -/// object. -/// -+ (DBTEAMLOGResellerSupportChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportPolicy.h deleted file mode 100644 index 77091d9e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportPolicy` union. -/// -/// Policy for controlling if reseller can access the admin console as -/// administrator -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGResellerSupportPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGResellerSupportPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGResellerSupportPolicyTag) { - /// (no description). - DBTEAMLOGResellerSupportPolicyDisabled, - - /// (no description). - DBTEAMLOGResellerSupportPolicyEnabled, - - /// (no description). - DBTEAMLOGResellerSupportPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGResellerSupportPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGResellerSupportPolicy` union. -/// -@interface DBTEAMLOGResellerSupportPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerSupportPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportPolicy` object. -/// -+ (DBTEAMLOGResellerSupportPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionEndDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionEndDetails.h deleted file mode 100644 index 162c2f89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionEndDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionEndDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionEndDetails` struct. -/// -/// Ended reseller support session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionEndDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionEndDetails` struct. -/// -@interface DBTEAMLOGResellerSupportSessionEndDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionEndDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportSessionEndDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionEndDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionEndDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportSessionEndDetails` -/// object. -/// -+ (DBTEAMLOGResellerSupportSessionEndDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionEndType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionEndType.h deleted file mode 100644 index 4e2475da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionEndType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionEndType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionEndType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionEndType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionEndType` struct. -/// -@interface DBTEAMLOGResellerSupportSessionEndTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionEndType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGResellerSupportSessionEndType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionEndType *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionEndType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionEndType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportSessionEndType` -/// object. -/// -+ (DBTEAMLOGResellerSupportSessionEndType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionStartDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionStartDetails.h deleted file mode 100644 index 1e610635..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionStartDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionStartDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionStartDetails` struct. -/// -/// Started reseller support session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionStartDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionStartDetails` struct. -/// -@interface DBTEAMLOGResellerSupportSessionStartDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionStartDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionStartDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionStartDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGResellerSupportSessionStartDetails` object. -/// -+ (DBTEAMLOGResellerSupportSessionStartDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionStartType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionStartType.h deleted file mode 100644 index 5fa24fad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGResellerSupportSessionStartType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGResellerSupportSessionStartType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResellerSupportSessionStartType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGResellerSupportSessionStartType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResellerSupportSessionStartType` struct. -/// -@interface DBTEAMLOGResellerSupportSessionStartTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGResellerSupportSessionStartType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGResellerSupportSessionStartType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGResellerSupportSessionStartType *)instance; - -/// -/// Deserializes `DBTEAMLOGResellerSupportSessionStartType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGResellerSupportSessionStartType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGResellerSupportSessionStartType` -/// object. -/// -+ (DBTEAMLOGResellerSupportSessionStartType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindFolderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindFolderDetails.h deleted file mode 100644 index e04cebdc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindFolderDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindFolderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindFolderDetails` struct. -/// -/// Rewound a folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindFolderDetails : NSObject - -#pragma mark - Instance fields - -/// Folder was Rewound to this date. -@property (nonatomic, readonly) NSDate *rewindFolderTargetTsMs; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param rewindFolderTargetTsMs Folder was Rewound to this date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRewindFolderTargetTsMs:(NSDate *)rewindFolderTargetTsMs; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindFolderDetails` struct. -/// -@interface DBTEAMLOGRewindFolderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindFolderDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindFolderDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindFolderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindFolderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindFolderDetails` object. -/// -+ (DBTEAMLOGRewindFolderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindFolderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindFolderType.h deleted file mode 100644 index 7691e856..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindFolderType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindFolderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindFolderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindFolderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindFolderType` struct. -/// -@interface DBTEAMLOGRewindFolderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindFolderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindFolderType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindFolderType *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindFolderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindFolderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindFolderType` object. -/// -+ (DBTEAMLOGRewindFolderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicy.h deleted file mode 100644 index de5bb9b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindPolicy` union. -/// -/// Policy for controlling whether team members can rewind -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGRewindPolicyTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGRewindPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGRewindPolicyTag) { - /// (no description). - DBTEAMLOGRewindPolicyAdminsOnly, - - /// (no description). - DBTEAMLOGRewindPolicyEveryone, - - /// (no description). - DBTEAMLOGRewindPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admins_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminsOnly; - -/// -/// Initializes union class with tag state of "everyone". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "admins_only". -/// -/// @return Whether the union's current tag state has value "admins_only". -/// -- (BOOL)isAdminsOnly; - -/// -/// Retrieves whether the union's current tag state has value "everyone". -/// -/// @return Whether the union's current tag state has value "everyone". -/// -- (BOOL)isEveryone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGRewindPolicy` union. -/// -@interface DBTEAMLOGRewindPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindPolicy` object. -/// -+ (DBTEAMLOGRewindPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicyChangedDetails.h deleted file mode 100644 index 09956369..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindPolicy; -@class DBTEAMLOGRewindPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindPolicyChangedDetails` struct. -/// -/// Changed Rewind policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Rewind policy. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicy *dNewValue; - -/// Previous Dropbox Rewind policy. -@property (nonatomic, readonly) DBTEAMLOGRewindPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Rewind policy. -/// @param previousValue Previous Dropbox Rewind policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGRewindPolicy *)dNewValue - previousValue:(DBTEAMLOGRewindPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGRewindPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindPolicyChangedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindPolicyChangedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGRewindPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicyChangedType.h deleted file mode 100644 index 945ff59e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRewindPolicyChangedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGRewindPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RewindPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGRewindPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RewindPolicyChangedType` struct. -/// -@interface DBTEAMLOGRewindPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGRewindPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGRewindPolicyChangedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGRewindPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGRewindPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGRewindPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGRewindPolicyChangedType` object. -/// -+ (DBTEAMLOGRewindPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRouteObjects.h deleted file mode 100644 index c6809021..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGRouteObjects.h +++ /dev/null @@ -1,28 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the TeamLog namespace. Each route in the TeamLog -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBTEAMLOGRouteObjects : NSObject - -/// Accessor method for the getEvents route object. -+ (DBRoute *)DBTEAMLOGGetEvents; - -/// Accessor method for the getEventsContinue route object. -+ (DBRoute *)DBTEAMLOGGetEventsContinue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailDeletedDetails.h deleted file mode 100644 index de8b73d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailDeletedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailDeletedDetails` struct. -/// -/// Deleted secondary email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Deleted secondary email. -@property (nonatomic, readonly, copy) NSString *secondaryEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryEmail Deleted secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmail:(NSString *)secondaryEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailDeletedDetails` struct. -/// -@interface DBTEAMLOGSecondaryEmailDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailDeletedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailDeletedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailDeletedDetails` -/// object. -/// -+ (DBTEAMLOGSecondaryEmailDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailDeletedType.h deleted file mode 100644 index 668b2656..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailDeletedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailDeletedType` struct. -/// -@interface DBTEAMLOGSecondaryEmailDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailDeletedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailDeletedType` object. -/// -+ (DBTEAMLOGSecondaryEmailDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailVerifiedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailVerifiedDetails.h deleted file mode 100644 index 63c7102c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailVerifiedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailVerifiedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailVerifiedDetails` struct. -/// -/// Verified secondary email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedDetails : NSObject - -#pragma mark - Instance fields - -/// Verified secondary email. -@property (nonatomic, readonly, copy) NSString *secondaryEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryEmail Verified secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryEmail:(NSString *)secondaryEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailVerifiedDetails` struct. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailVerifiedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailVerifiedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailVerifiedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailVerifiedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailVerifiedDetails` -/// object. -/// -+ (DBTEAMLOGSecondaryEmailVerifiedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailVerifiedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailVerifiedType.h deleted file mode 100644 index b9c4104a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryEmailVerifiedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryEmailVerifiedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryEmailVerifiedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryEmailVerifiedType` struct. -/// -@interface DBTEAMLOGSecondaryEmailVerifiedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryEmailVerifiedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryEmailVerifiedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryEmailVerifiedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryEmailVerifiedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryEmailVerifiedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryEmailVerifiedType` -/// object. -/// -+ (DBTEAMLOGSecondaryEmailVerifiedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicy.h deleted file mode 100644 index 2e09594e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryMailsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryMailsPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryMailsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSecondaryMailsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSecondaryMailsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSecondaryMailsPolicyTag) { - /// (no description). - DBTEAMLOGSecondaryMailsPolicyDisabled, - - /// (no description). - DBTEAMLOGSecondaryMailsPolicyEnabled, - - /// (no description). - DBTEAMLOGSecondaryMailsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSecondaryMailsPolicy` union. -/// -@interface DBTEAMLOGSecondaryMailsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryMailsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSecondaryMailsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryMailsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryMailsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryMailsPolicy` object. -/// -+ (DBTEAMLOGSecondaryMailsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicyChangedDetails.h deleted file mode 100644 index 8b23cce8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryMailsPolicy; -@class DBTEAMLOGSecondaryMailsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryMailsPolicyChangedDetails` struct. -/// -/// Secondary mails policy changed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous secondary mails policy. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicy *previousValue; - -/// New secondary mails policy. -@property (nonatomic, readonly) DBTEAMLOGSecondaryMailsPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous secondary mails policy. -/// @param dNewValue New secondary mails policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSecondaryMailsPolicy *)previousValue - dNewValue:(DBTEAMLOGSecondaryMailsPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryMailsPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryMailsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryMailsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryMailsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedDetails` object. -/// -+ (DBTEAMLOGSecondaryMailsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicyChangedType.h deleted file mode 100644 index df7f4cfd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryMailsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryMailsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryMailsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryMailsPolicyChangedType` struct. -/// -@interface DBTEAMLOGSecondaryMailsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryMailsPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryMailsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryMailsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryMailsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSecondaryMailsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGSecondaryMailsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h deleted file mode 100644 index c8fed636..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestAcceptedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestAcceptedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestAcceptedDetails` struct. -/// -/// Team merge request acceptance details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestAcceptedDetails : NSObject - -#pragma mark - Instance fields - -/// The primary team name. -@property (nonatomic, readonly, copy) NSString *primaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param primaryTeam The primary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(NSString *)primaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestAcceptedDetails` -/// struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestAcceptedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestAcceptedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestAcceptedDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestAcceptedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestCanceledDetails.h deleted file mode 100644 index 0d849efb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestCanceledDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestCanceledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestCanceledDetails` struct. -/// -/// Team merge request cancellation details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin that the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin that the request was sent -/// to. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestCanceledDetails` -/// struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestCanceledDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestExpiredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestExpiredDetails.h deleted file mode 100644 index d7a439ce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestExpiredDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestExpiredDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestExpiredDetails` struct. -/// -/// Team merge request expiration details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestExpiredDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestExpiredDetails` struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestExpiredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestExpiredDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestExpiredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestExpiredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestExpiredDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestExpiredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestReminderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestReminderDetails.h deleted file mode 100644 index 797917d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSecondaryTeamRequestReminderDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSecondaryTeamRequestReminderDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SecondaryTeamRequestReminderDetails` struct. -/// -/// Team merge request reminder details shown to the secondary team -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSecondaryTeamRequestReminderDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SecondaryTeamRequestReminderDetails` -/// struct. -/// -@interface DBTEAMLOGSecondaryTeamRequestReminderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSecondaryTeamRequestReminderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSecondaryTeamRequestReminderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSecondaryTeamRequestReminderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSecondaryTeamRequestReminderDetails` object. -/// -+ (DBTEAMLOGSecondaryTeamRequestReminderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicy.h deleted file mode 100644 index 8e76ee4c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSendForSignaturePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SendForSignaturePolicy` union. -/// -/// Policy for controlling team access to send for signature feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSendForSignaturePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSendForSignaturePolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSendForSignaturePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSendForSignaturePolicyTag) { - /// (no description). - DBTEAMLOGSendForSignaturePolicyDisabled, - - /// (no description). - DBTEAMLOGSendForSignaturePolicyEnabled, - - /// (no description). - DBTEAMLOGSendForSignaturePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSendForSignaturePolicy` union. -/// -@interface DBTEAMLOGSendForSignaturePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSendForSignaturePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSendForSignaturePolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSendForSignaturePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSendForSignaturePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSendForSignaturePolicy` object. -/// -+ (DBTEAMLOGSendForSignaturePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicyChangedDetails.h deleted file mode 100644 index 6ce5a1a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSendForSignaturePolicy; -@class DBTEAMLOGSendForSignaturePolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SendForSignaturePolicyChangedDetails` struct. -/// -/// Changed send for signature policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New send for signature policy. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicy *dNewValue; - -/// Previous send for signature policy. -@property (nonatomic, readonly) DBTEAMLOGSendForSignaturePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New send for signature policy. -/// @param previousValue Previous send for signature policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSendForSignaturePolicy *)dNewValue - previousValue:(DBTEAMLOGSendForSignaturePolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SendForSignaturePolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSendForSignaturePolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSendForSignaturePolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSendForSignaturePolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedDetails` object. -/// -+ (DBTEAMLOGSendForSignaturePolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicyChangedType.h deleted file mode 100644 index 5b42331f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSendForSignaturePolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSendForSignaturePolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SendForSignaturePolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SendForSignaturePolicyChangedType` struct. -/// -@interface DBTEAMLOGSendForSignaturePolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSendForSignaturePolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSendForSignaturePolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSendForSignaturePolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSendForSignaturePolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSendForSignaturePolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSendForSignaturePolicyChangedType` -/// object. -/// -+ (DBTEAMLOGSendForSignaturePolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSessionLogInfo.h deleted file mode 100644 index 86c621f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSessionLogInfo.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SessionLogInfo` struct. -/// -/// Session's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSessionLogInfo : NSObject - -#pragma mark - Instance fields - -/// Session ID. -@property (nonatomic, readonly, copy, nullable) NSString *sessionId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SessionLogInfo` struct. -/// -@interface DBTEAMLOGSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSessionLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSessionLogInfo` object. -/// -+ (DBTEAMLOGSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAddGroupDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAddGroupDetails.h deleted file mode 100644 index d5325466..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAddGroupDetails.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAddGroupDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAddGroupDetails` struct. -/// -/// Added team to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAddGroupDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -/// Team name. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param teamName Team name. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - teamName:(NSString *)teamName - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param teamName Team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - teamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAddGroupDetails` struct. -/// -@interface DBTEAMLOGSfAddGroupDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAddGroupDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfAddGroupDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAddGroupDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAddGroupDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfAddGroupDetails` object. -/// -+ (DBTEAMLOGSfAddGroupDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAddGroupType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAddGroupType.h deleted file mode 100644 index 40cc52a4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAddGroupType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAddGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAddGroupType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAddGroupType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAddGroupType` struct. -/// -@interface DBTEAMLOGSfAddGroupTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAddGroupType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfAddGroupType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAddGroupType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAddGroupType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAddGroupType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfAddGroupType` object. -/// -+ (DBTEAMLOGSfAddGroupType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h deleted file mode 100644 index b5b748f6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAllowNonMembersToViewSharedLinksDetails` struct. -/// -/// Allowed non-collaborators to view links to files in shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Shared folder type. -@property (nonatomic, readonly, copy, nullable) NSString *sharedFolderType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param sharedFolderType Shared folder type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - sharedFolderType:(nullable NSString *)sharedFolderType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAllowNonMembersToViewSharedLinksDetails` -/// struct. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails` object. -/// -+ (DBTEAMLOGSfAllowNonMembersToViewSharedLinksDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h deleted file mode 100644 index d2156aa2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfAllowNonMembersToViewSharedLinksType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfAllowNonMembersToViewSharedLinksType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfAllowNonMembersToViewSharedLinksType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfAllowNonMembersToViewSharedLinksType` -/// struct. -/// -@interface DBTEAMLOGSfAllowNonMembersToViewSharedLinksTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSfAllowNonMembersToViewSharedLinksType` object. -/// -+ (DBTEAMLOGSfAllowNonMembersToViewSharedLinksType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfExternalInviteWarnDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfExternalInviteWarnDetails.h deleted file mode 100644 index 30bc9606..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfExternalInviteWarnDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfExternalInviteWarnDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfExternalInviteWarnDetails` struct. -/// -/// Set team members to see warning before sharing folders outside team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfExternalInviteWarnDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// New sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSharingPermission; - -/// Previous sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *previousSharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param dNewSharingPermission New sharing permission. -/// @param previousSharingPermission Previous sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - dNewSharingPermission:(nullable NSString *)dNewSharingPermission - previousSharingPermission:(nullable NSString *)previousSharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfExternalInviteWarnDetails` struct. -/// -@interface DBTEAMLOGSfExternalInviteWarnDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfExternalInviteWarnDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfExternalInviteWarnDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfExternalInviteWarnDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfExternalInviteWarnDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfExternalInviteWarnDetails` -/// object. -/// -+ (DBTEAMLOGSfExternalInviteWarnDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfExternalInviteWarnType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfExternalInviteWarnType.h deleted file mode 100644 index 2d655fa8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfExternalInviteWarnType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfExternalInviteWarnType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfExternalInviteWarnType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfExternalInviteWarnType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfExternalInviteWarnType` struct. -/// -@interface DBTEAMLOGSfExternalInviteWarnTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfExternalInviteWarnType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfExternalInviteWarnType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfExternalInviteWarnType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfExternalInviteWarnType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfExternalInviteWarnType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfExternalInviteWarnType` object. -/// -+ (DBTEAMLOGSfExternalInviteWarnType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteChangeRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteChangeRoleDetails.h deleted file mode 100644 index b77912f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteChangeRoleDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteChangeRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteChangeRoleDetails` struct. -/// -/// Changed Facebook user's role in shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Previous sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *previousSharingPermission; - -/// New sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param previousSharingPermission Previous sharing permission. -/// @param dNewSharingPermission New sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - previousSharingPermission:(nullable NSString *)previousSharingPermission - dNewSharingPermission:(nullable NSString *)dNewSharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteChangeRoleDetails` struct. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteChangeRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteChangeRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteChangeRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteChangeRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteChangeRoleDetails` -/// object. -/// -+ (DBTEAMLOGSfFbInviteChangeRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteChangeRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteChangeRoleType.h deleted file mode 100644 index d1f73b3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteChangeRoleType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteChangeRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteChangeRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteChangeRoleType` struct. -/// -@interface DBTEAMLOGSfFbInviteChangeRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteChangeRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteChangeRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteChangeRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteChangeRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteChangeRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteChangeRoleType` object. -/// -+ (DBTEAMLOGSfFbInviteChangeRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteDetails.h deleted file mode 100644 index 02f2b073..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteDetails` struct. -/// -/// Invited Facebook users to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteDetails` struct. -/// -@interface DBTEAMLOGSfFbInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteDetails` object. -/// -+ (DBTEAMLOGSfFbInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteType.h deleted file mode 100644 index afd8ac69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbInviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbInviteType` struct. -/// -@interface DBTEAMLOGSfFbInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbInviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbInviteType` object. -/// -+ (DBTEAMLOGSfFbInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbUninviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbUninviteDetails.h deleted file mode 100644 index 30394998..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbUninviteDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbUninviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbUninviteDetails` struct. -/// -/// Uninvited Facebook user from shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbUninviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbUninviteDetails` struct. -/// -@interface DBTEAMLOGSfFbUninviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbUninviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbUninviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbUninviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbUninviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbUninviteDetails` object. -/// -+ (DBTEAMLOGSfFbUninviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbUninviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbUninviteType.h deleted file mode 100644 index cd719b47..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfFbUninviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfFbUninviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfFbUninviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfFbUninviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfFbUninviteType` struct. -/// -@interface DBTEAMLOGSfFbUninviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfFbUninviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfFbUninviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfFbUninviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfFbUninviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfFbUninviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfFbUninviteType` object. -/// -+ (DBTEAMLOGSfFbUninviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfInviteGroupDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfInviteGroupDetails.h deleted file mode 100644 index 411d44ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfInviteGroupDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfInviteGroupDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfInviteGroupDetails` struct. -/// -/// Invited group to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfInviteGroupDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfInviteGroupDetails` struct. -/// -@interface DBTEAMLOGSfInviteGroupDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfInviteGroupDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfInviteGroupDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfInviteGroupDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfInviteGroupDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfInviteGroupDetails` object. -/// -+ (DBTEAMLOGSfInviteGroupDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfInviteGroupType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfInviteGroupType.h deleted file mode 100644 index 94db19a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfInviteGroupType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfInviteGroupType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfInviteGroupType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfInviteGroupType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfInviteGroupType` struct. -/// -@interface DBTEAMLOGSfInviteGroupTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfInviteGroupType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfInviteGroupType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfInviteGroupType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfInviteGroupType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfInviteGroupType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfInviteGroupType` object. -/// -+ (DBTEAMLOGSfInviteGroupType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamGrantAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamGrantAccessDetails.h deleted file mode 100644 index 68e69cea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamGrantAccessDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamGrantAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamGrantAccessDetails` struct. -/// -/// Granted access to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamGrantAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamGrantAccessDetails` struct. -/// -@interface DBTEAMLOGSfTeamGrantAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamGrantAccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamGrantAccessDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamGrantAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamGrantAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamGrantAccessDetails` object. -/// -+ (DBTEAMLOGSfTeamGrantAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamGrantAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamGrantAccessType.h deleted file mode 100644 index 4c640979..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamGrantAccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamGrantAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamGrantAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamGrantAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamGrantAccessType` struct. -/// -@interface DBTEAMLOGSfTeamGrantAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamGrantAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamGrantAccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamGrantAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamGrantAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamGrantAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamGrantAccessType` object. -/// -+ (DBTEAMLOGSfTeamGrantAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteChangeRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteChangeRoleDetails.h deleted file mode 100644 index 425de14f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteChangeRoleDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteChangeRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteChangeRoleDetails` struct. -/// -/// Changed team member's role in shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// New sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSharingPermission; - -/// Previous sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *previousSharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param dNewSharingPermission New sharing permission. -/// @param previousSharingPermission Previous sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - dNewSharingPermission:(nullable NSString *)dNewSharingPermission - previousSharingPermission:(nullable NSString *)previousSharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteChangeRoleDetails` struct. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteChangeRoleDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteChangeRoleDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteChangeRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteChangeRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteChangeRoleDetails` -/// object. -/// -+ (DBTEAMLOGSfTeamInviteChangeRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteChangeRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteChangeRoleType.h deleted file mode 100644 index b2955203..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteChangeRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteChangeRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteChangeRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteChangeRoleType` struct. -/// -@interface DBTEAMLOGSfTeamInviteChangeRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteChangeRoleType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteChangeRoleType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteChangeRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteChangeRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteChangeRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteChangeRoleType` -/// object. -/// -+ (DBTEAMLOGSfTeamInviteChangeRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteDetails.h deleted file mode 100644 index 2de3649d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteDetails` struct. -/// -/// Invited team members to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteDetails` struct. -/// -@interface DBTEAMLOGSfTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteDetails` object. -/// -+ (DBTEAMLOGSfTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteType.h deleted file mode 100644 index 70d0f097..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamInviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamInviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamInviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamInviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamInviteType` struct. -/// -@interface DBTEAMLOGSfTeamInviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamInviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamInviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamInviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamInviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamInviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamInviteType` object. -/// -+ (DBTEAMLOGSfTeamInviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinDetails.h deleted file mode 100644 index 2d6a8e27..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinDetails` struct. -/// -/// Joined team member's shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinDetails` struct. -/// -@interface DBTEAMLOGSfTeamJoinDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinDetails` object. -/// -+ (DBTEAMLOGSfTeamJoinDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinFromOobLinkDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinFromOobLinkDetails.h deleted file mode 100644 index 799b33ac..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinFromOobLinkDetails.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinFromOobLinkDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinFromOobLinkDetails` struct. -/// -/// Joined team member's shared folder from link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -/// Shared link token key. -@property (nonatomic, readonly, copy, nullable) NSString *tokenKey; - -/// Sharing permission. -@property (nonatomic, readonly, copy, nullable) NSString *sharingPermission; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// @param tokenKey Shared link token key. -/// @param sharingPermission Sharing permission. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex - originalFolderName:(NSString *)originalFolderName - tokenKey:(nullable NSString *)tokenKey - sharingPermission:(nullable NSString *)sharingPermission; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinFromOobLinkDetails` struct. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinFromOobLinkDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinFromOobLinkDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinFromOobLinkDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinFromOobLinkDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinFromOobLinkDetails` -/// object. -/// -+ (DBTEAMLOGSfTeamJoinFromOobLinkDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinFromOobLinkType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinFromOobLinkType.h deleted file mode 100644 index 6e0abf09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinFromOobLinkType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinFromOobLinkType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinFromOobLinkType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinFromOobLinkType` struct. -/// -@interface DBTEAMLOGSfTeamJoinFromOobLinkTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinFromOobLinkType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinFromOobLinkType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinFromOobLinkType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinFromOobLinkType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinFromOobLinkType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinFromOobLinkType` object. -/// -+ (DBTEAMLOGSfTeamJoinFromOobLinkType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinType.h deleted file mode 100644 index 0f51b9b5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamJoinType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamJoinType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamJoinType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamJoinType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamJoinType` struct. -/// -@interface DBTEAMLOGSfTeamJoinTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamJoinType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamJoinType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamJoinType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamJoinType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamJoinType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamJoinType` object. -/// -+ (DBTEAMLOGSfTeamJoinType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamUninviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamUninviteDetails.h deleted file mode 100644 index 44e66c81..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamUninviteDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamUninviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamUninviteDetails` struct. -/// -/// Unshared folder with team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamUninviteDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -/// Original shared folder name. -@property (nonatomic, readonly, copy) NSString *originalFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// @param originalFolderName Original shared folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex originalFolderName:(NSString *)originalFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamUninviteDetails` struct. -/// -@interface DBTEAMLOGSfTeamUninviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamUninviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamUninviteDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamUninviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamUninviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamUninviteDetails` object. -/// -+ (DBTEAMLOGSfTeamUninviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamUninviteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamUninviteType.h deleted file mode 100644 index 929c9866..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSfTeamUninviteType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSfTeamUninviteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SfTeamUninviteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSfTeamUninviteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SfTeamUninviteType` struct. -/// -@interface DBTEAMLOGSfTeamUninviteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSfTeamUninviteType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSfTeamUninviteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSfTeamUninviteType *)instance; - -/// -/// Deserializes `DBTEAMLOGSfTeamUninviteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSfTeamUninviteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSfTeamUninviteType` object. -/// -+ (DBTEAMLOGSfTeamUninviteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddInviteesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddInviteesDetails.h deleted file mode 100644 index dd48ad69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddInviteesDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentAddInviteesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddInviteesDetails` struct. -/// -/// Invited user to Dropbox and added them to shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddInviteesDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// A list of invitees. -@property (nonatomic, readonly) NSArray *invitees; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param invitees A list of invitees. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddInviteesDetails` struct. -/// -@interface DBTEAMLOGSharedContentAddInviteesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddInviteesDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddInviteesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddInviteesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddInviteesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddInviteesDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentAddInviteesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddInviteesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddInviteesType.h deleted file mode 100644 index b90e60ea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddInviteesType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddInviteesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddInviteesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddInviteesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddInviteesType` struct. -/// -@interface DBTEAMLOGSharedContentAddInviteesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddInviteesType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddInviteesType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddInviteesType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddInviteesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddInviteesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddInviteesType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddInviteesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkExpiryDetails.h deleted file mode 100644 index 65e3c5fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkExpiryDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkExpiryDetails` struct. -/// -/// Added expiration date to link for shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSDate *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkExpiryDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddLinkExpiryDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddLinkExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentAddLinkExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkExpiryType.h deleted file mode 100644 index ec54ed0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkExpiryType` struct. -/// -@interface DBTEAMLOGSharedContentAddLinkExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddLinkExpiryType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddLinkExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddLinkExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkPasswordDetails.h deleted file mode 100644 index 89adca23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkPasswordDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkPasswordDetails` struct. -/// -/// Added password to link for shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordDetails` object. -/// -+ (DBTEAMLOGSharedContentAddLinkPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkPasswordType.h deleted file mode 100644 index e561fde0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddLinkPasswordType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddLinkPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddLinkPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddLinkPasswordType` struct. -/// -@interface DBTEAMLOGSharedContentAddLinkPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddLinkPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentAddLinkPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddLinkPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddLinkPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddLinkPasswordType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddLinkPasswordType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddLinkPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddMemberDetails.h deleted file mode 100644 index 86037bc5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddMemberDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddMemberDetails` struct. -/// -/// Added users and/or groups to shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddMemberDetails` struct. -/// -@interface DBTEAMLOGSharedContentAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddMemberDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddMemberDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddMemberType.h deleted file mode 100644 index 4163e50c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentAddMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentAddMemberType` struct. -/// -@interface DBTEAMLOGSharedContentAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentAddMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentAddMemberType` -/// object. -/// -+ (DBTEAMLOGSharedContentAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h deleted file mode 100644 index d1221521..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDownloadPolicyType; -@class DBTEAMLOGSharedContentChangeDownloadsPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeDownloadsPolicyDetails` struct. -/// -/// Changed whether members can download shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New downloads policy. -@property (nonatomic, readonly) DBTEAMLOGDownloadPolicyType *dNewValue; - -/// Previous downloads policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGDownloadPolicyType *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New downloads policy. -/// @param previousValue Previous downloads policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDownloadPolicyType *)dNewValue - previousValue:(nullable DBTEAMLOGDownloadPolicyType *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New downloads policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDownloadPolicyType *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeDownloadsPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeDownloadsPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyType.h deleted file mode 100644 index 8611ef89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeDownloadsPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeDownloadsPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeDownloadsPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeDownloadsPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeDownloadsPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeDownloadsPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeDownloadsPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeDownloadsPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeDownloadsPolicyType` object. -/// -+ (DBTEAMLOGSharedContentChangeDownloadsPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeInviteeRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeInviteeRoleDetails.h deleted file mode 100644 index cb37493e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeInviteeRoleDetails.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentChangeInviteeRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeInviteeRoleDetails` struct. -/// -/// Changed access type of invitee to shared file/folder before invite was -/// accepted. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Previous access level. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *previousAccessLevel; - -/// New access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *dNewAccessLevel; - -/// The invitee whose role was changed. -@property (nonatomic, readonly, copy) NSString *invitee; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewAccessLevel New access level. -/// @param invitee The invitee whose role was changed. -/// @param previousAccessLevel Previous access level. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel - invitee:(NSString *)invitee - previousAccessLevel:(nullable DBSHARINGAccessLevel *)previousAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewAccessLevel New access level. -/// @param invitee The invitee whose role was changed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel invitee:(NSString *)invitee; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeInviteeRoleDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeInviteeRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeInviteeRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeInviteeRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeInviteeRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeInviteeRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeInviteeRoleType.h deleted file mode 100644 index b25110a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeInviteeRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeInviteeRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeInviteeRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeInviteeRoleType` struct. -/// -@interface DBTEAMLOGSharedContentChangeInviteeRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeInviteeRoleType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeInviteeRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeInviteeRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeInviteeRoleType` object. -/// -+ (DBTEAMLOGSharedContentChangeInviteeRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkAudienceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkAudienceDetails.h deleted file mode 100644 index 32e59510..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkAudienceDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGLinkAudience; -@class DBTEAMLOGSharedContentChangeLinkAudienceDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkAudienceDetails` struct. -/// -/// Changed link audience of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceDetails : NSObject - -#pragma mark - Instance fields - -/// New link audience value. -@property (nonatomic, readonly) DBSHARINGLinkAudience *dNewValue; - -/// Previous link audience value. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New link audience value. -/// @param previousValue Previous link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGLinkAudience *)dNewValue - previousValue:(nullable DBSHARINGLinkAudience *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGLinkAudience *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkAudienceDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkAudienceDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkAudienceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkAudienceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkAudienceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkAudienceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkAudienceType.h deleted file mode 100644 index 2470e68e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkAudienceType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkAudienceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkAudienceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkAudienceType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkAudienceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkAudienceType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkAudienceType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkAudienceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkAudienceType` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkAudienceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkExpiryDetails.h deleted file mode 100644 index 37597c1e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkExpiryDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkExpiryDetails` struct. -/// -/// Changed link expiration of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -/// Previous shared content link expiration date. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// @param previousValue Previous shared content link expiration date. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSDate *)dNewValue previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkExpiryDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkExpiryDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkExpiryType.h deleted file mode 100644 index b5c20927..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkExpiryType` struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkExpiryType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentChangeLinkExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedContentChangeLinkExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkPasswordDetails.h deleted file mode 100644 index 165df20e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkPasswordDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkPasswordDetails` struct. -/// -/// Changed link password of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkPasswordType.h deleted file mode 100644 index 8a98ab07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeLinkPasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeLinkPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeLinkPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeLinkPasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeLinkPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeLinkPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeLinkPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeLinkPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeLinkPasswordType` object. -/// -+ (DBTEAMLOGSharedContentChangeLinkPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeMemberRoleDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeMemberRoleDetails.h deleted file mode 100644 index b07510b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeMemberRoleDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentChangeMemberRoleDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeMemberRoleDetails` struct. -/// -/// Changed access type of shared file/folder member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleDetails : NSObject - -#pragma mark - Instance fields - -/// Previous access level. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *previousAccessLevel; - -/// New access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *dNewAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewAccessLevel New access level. -/// @param previousAccessLevel Previous access level. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel - previousAccessLevel:(nullable DBSHARINGAccessLevel *)previousAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewAccessLevel New access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewAccessLevel:(DBSHARINGAccessLevel *)dNewAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeMemberRoleDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeMemberRoleDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeMemberRoleDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeMemberRoleDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeMemberRoleDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeMemberRoleType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeMemberRoleType.h deleted file mode 100644 index 7f612a0a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeMemberRoleType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeMemberRoleType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeMemberRoleType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeMemberRoleType` struct. -/// -@interface DBTEAMLOGSharedContentChangeMemberRoleTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeMemberRoleType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeMemberRoleType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeMemberRoleType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeMemberRoleType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeMemberRoleType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentChangeMemberRoleType` -/// object. -/// -+ (DBTEAMLOGSharedContentChangeMemberRoleType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h deleted file mode 100644 index 0b36adf2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGViewerInfoPolicy; -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeViewerInfoPolicyDetails` struct. -/// -/// Changed whether members can see who viewed shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New viewer info policy. -@property (nonatomic, readonly) DBSHARINGViewerInfoPolicy *dNewValue; - -/// Previous view info policy. -@property (nonatomic, readonly, nullable) DBSHARINGViewerInfoPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New viewer info policy. -/// @param previousValue Previous view info policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGViewerInfoPolicy *)dNewValue - previousValue:(nullable DBSHARINGViewerInfoPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New viewer info policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGViewerInfoPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeViewerInfoPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails` object. -/// -+ (DBTEAMLOGSharedContentChangeViewerInfoPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h deleted file mode 100644 index e3161c8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentChangeViewerInfoPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentChangeViewerInfoPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentChangeViewerInfoPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentChangeViewerInfoPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharedContentChangeViewerInfoPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentChangeViewerInfoPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentChangeViewerInfoPolicyType` object. -/// -+ (DBTEAMLOGSharedContentChangeViewerInfoPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentClaimInvitationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentClaimInvitationDetails.h deleted file mode 100644 index f6c88128..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentClaimInvitationDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentClaimInvitationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentClaimInvitationDetails` struct. -/// -/// Acquired membership of shared file/folder by accepting invite. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentClaimInvitationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentClaimInvitationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentClaimInvitationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentClaimInvitationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentClaimInvitationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentClaimInvitationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentClaimInvitationDetails` object. -/// -+ (DBTEAMLOGSharedContentClaimInvitationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentClaimInvitationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentClaimInvitationType.h deleted file mode 100644 index 0c4ef9e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentClaimInvitationType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentClaimInvitationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentClaimInvitationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentClaimInvitationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentClaimInvitationType` struct. -/// -@interface DBTEAMLOGSharedContentClaimInvitationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentClaimInvitationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentClaimInvitationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentClaimInvitationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentClaimInvitationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentClaimInvitationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentClaimInvitationType` -/// object. -/// -+ (DBTEAMLOGSharedContentClaimInvitationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentCopyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentCopyDetails.h deleted file mode 100644 index c9c6cbfa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentCopyDetails.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentCopyDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentCopyDetails` struct. -/// -/// Copied shared file/folder to own Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentCopyDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy) NSString *sharedContentLink; - -/// The shared content owner. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner; - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// The path where the member saved the content. -@property (nonatomic, readonly, copy) NSString *destinationPath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param destinationPath The path where the member saved the content. -/// @param sharedContentOwner The shared content owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - destinationPath:(NSString *)destinationPath - sharedContentOwner:(nullable DBTEAMLOGUserLogInfo *)sharedContentOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param destinationPath The path where the member saved the content. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - destinationPath:(NSString *)destinationPath; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentCopyDetails` struct. -/// -@interface DBTEAMLOGSharedContentCopyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentCopyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentCopyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentCopyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentCopyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentCopyDetails` object. -/// -+ (DBTEAMLOGSharedContentCopyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentCopyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentCopyType.h deleted file mode 100644 index 84183ecc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentCopyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentCopyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentCopyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentCopyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentCopyType` struct. -/// -@interface DBTEAMLOGSharedContentCopyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentCopyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentCopyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentCopyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentCopyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentCopyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentCopyType` object. -/// -+ (DBTEAMLOGSharedContentCopyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentDownloadDetails.h deleted file mode 100644 index 4d56379d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentDownloadDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentDownloadDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentDownloadDetails` struct. -/// -/// Downloaded shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy) NSString *sharedContentLink; - -/// The shared content owner. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner; - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentOwner The shared content owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentOwner:(nullable DBTEAMLOGUserLogInfo *)sharedContentOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentDownloadDetails` struct. -/// -@interface DBTEAMLOGSharedContentDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentDownloadDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentDownloadDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentDownloadType.h deleted file mode 100644 index 3e39ed7f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentDownloadType` struct. -/// -@interface DBTEAMLOGSharedContentDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentDownloadType` object. -/// -+ (DBTEAMLOGSharedContentDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRelinquishMembershipDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRelinquishMembershipDetails.h deleted file mode 100644 index 551b6c62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRelinquishMembershipDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRelinquishMembershipDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRelinquishMembershipDetails` struct. -/// -/// Left shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRelinquishMembershipDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRelinquishMembershipDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRelinquishMembershipDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRelinquishMembershipDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipDetails` object. -/// -+ (DBTEAMLOGSharedContentRelinquishMembershipDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRelinquishMembershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRelinquishMembershipType.h deleted file mode 100644 index ce25adaf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRelinquishMembershipType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRelinquishMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRelinquishMembershipType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRelinquishMembershipType` -/// struct. -/// -@interface DBTEAMLOGSharedContentRelinquishMembershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRelinquishMembershipType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRelinquishMembershipType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRelinquishMembershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRelinquishMembershipType` object. -/// -+ (DBTEAMLOGSharedContentRelinquishMembershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveInviteesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveInviteesDetails.h deleted file mode 100644 index 6af5fcfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveInviteesDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveInviteesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveInviteesDetails` struct. -/// -/// Removed invitee from shared file/folder before invite was accepted. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesDetails : NSObject - -#pragma mark - Instance fields - -/// A list of invitees. -@property (nonatomic, readonly) NSArray *invitees; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param invitees A list of invitees. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveInviteesDetails` struct. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveInviteesDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveInviteesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveInviteesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveInviteesDetails` object. -/// -+ (DBTEAMLOGSharedContentRemoveInviteesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveInviteesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveInviteesType.h deleted file mode 100644 index 05346870..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveInviteesType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveInviteesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveInviteesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveInviteesType` struct. -/// -@interface DBTEAMLOGSharedContentRemoveInviteesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveInviteesType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveInviteesType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveInviteesType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveInviteesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveInviteesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveInviteesType` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveInviteesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h deleted file mode 100644 index f57bfb21..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryDetails.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkExpiryDetails` struct. -/// -/// Removed link expiration date of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// Previous shared content link expiration date. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous shared content link expiration date. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkExpiryDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryDetails` object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryType.h deleted file mode 100644 index be9ee755..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkExpiryType` struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkExpiryType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveLinkExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h deleted file mode 100644 index 902d95b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkPasswordDetails` struct. -/// -/// Removed link password of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordDetails` object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordType.h deleted file mode 100644 index f2da580f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveLinkPasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveLinkPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveLinkPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveLinkPasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedContentRemoveLinkPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveLinkPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveLinkPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveLinkPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRemoveLinkPasswordType` object. -/// -+ (DBTEAMLOGSharedContentRemoveLinkPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveMemberDetails.h deleted file mode 100644 index dabdd73c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveMemberDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveMemberDetails` struct. -/// -/// Removed user/group from shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly, nullable) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(nullable DBSHARINGAccessLevel *)sharedContentAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGSharedContentRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveMemberDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRemoveMemberDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveMemberDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveMemberType.h deleted file mode 100644 index 1a15f093..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRemoveMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRemoveMemberType` struct. -/// -@interface DBTEAMLOGSharedContentRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentRemoveMemberType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRemoveMemberType` -/// object. -/// -+ (DBTEAMLOGSharedContentRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRequestAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRequestAccessDetails.h deleted file mode 100644 index f082e283..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRequestAccessDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRequestAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRequestAccessDetails` struct. -/// -/// Requested access to shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRequestAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRequestAccessDetails` struct. -/// -@interface DBTEAMLOGSharedContentRequestAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRequestAccessDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRequestAccessDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRequestAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRequestAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRequestAccessDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentRequestAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRequestAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRequestAccessType.h deleted file mode 100644 index c18c1290..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRequestAccessType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRequestAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRequestAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRequestAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRequestAccessType` struct. -/// -@interface DBTEAMLOGSharedContentRequestAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRequestAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentRequestAccessType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRequestAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRequestAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRequestAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRequestAccessType` -/// object. -/// -+ (DBTEAMLOGSharedContentRequestAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreInviteesDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreInviteesDetails.h deleted file mode 100644 index 1be6cb4f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreInviteesDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentRestoreInviteesDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreInviteesDetails` struct. -/// -/// Restored shared file/folder invitees. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// A list of invitees. -@property (nonatomic, readonly) NSArray *invitees; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param invitees A list of invitees. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - invitees:(NSArray *)invitees; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreInviteesDetails` -/// struct. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreInviteesDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreInviteesDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreInviteesDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedContentRestoreInviteesDetails` object. -/// -+ (DBTEAMLOGSharedContentRestoreInviteesDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreInviteesType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreInviteesType.h deleted file mode 100644 index bdcb75fa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreInviteesType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRestoreInviteesType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreInviteesType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreInviteesType` struct. -/// -@interface DBTEAMLOGSharedContentRestoreInviteesTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreInviteesType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRestoreInviteesType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreInviteesType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreInviteesType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreInviteesType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRestoreInviteesType` -/// object. -/// -+ (DBTEAMLOGSharedContentRestoreInviteesType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreMemberDetails.h deleted file mode 100644 index d50dd417..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreMemberDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentRestoreMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreMemberDetails` struct. -/// -/// Restored users and/or groups to membership of shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreMemberDetails` struct. -/// -@interface DBTEAMLOGSharedContentRestoreMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreMemberDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedContentRestoreMemberDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRestoreMemberDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentRestoreMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreMemberType.h deleted file mode 100644 index 142a253f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentRestoreMemberType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentRestoreMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentRestoreMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentRestoreMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentRestoreMemberType` struct. -/// -@interface DBTEAMLOGSharedContentRestoreMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentRestoreMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentRestoreMemberType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentRestoreMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentRestoreMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentRestoreMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentRestoreMemberType` -/// object. -/// -+ (DBTEAMLOGSharedContentRestoreMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentUnshareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentUnshareDetails.h deleted file mode 100644 index 2a94c537..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentUnshareDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentUnshareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentUnshareDetails` struct. -/// -/// Unshared file/folder by clearing membership. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentUnshareDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentUnshareDetails` struct. -/// -@interface DBTEAMLOGSharedContentUnshareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentUnshareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentUnshareDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentUnshareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentUnshareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentUnshareDetails` -/// object. -/// -+ (DBTEAMLOGSharedContentUnshareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentUnshareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentUnshareType.h deleted file mode 100644 index d06c079b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentUnshareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentUnshareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentUnshareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentUnshareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentUnshareType` struct. -/// -@interface DBTEAMLOGSharedContentUnshareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentUnshareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentUnshareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentUnshareType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentUnshareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentUnshareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentUnshareType` object. -/// -+ (DBTEAMLOGSharedContentUnshareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentViewDetails.h deleted file mode 100644 index ed39b951..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentViewDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedContentViewDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentViewDetails` struct. -/// -/// Previewed shared file/folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentViewDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content link. -@property (nonatomic, readonly, copy) NSString *sharedContentLink; - -/// The shared content owner. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedContentOwner; - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentOwner The shared content owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentOwner:(nullable DBTEAMLOGUserLogInfo *)sharedContentOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentLink Shared content link. -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentLink:(NSString *)sharedContentLink - sharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentViewDetails` struct. -/// -@interface DBTEAMLOGSharedContentViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentViewDetails` object. -/// -+ (DBTEAMLOGSharedContentViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentViewType.h deleted file mode 100644 index c40cfbfc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedContentViewType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedContentViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedContentViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedContentViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedContentViewType` struct. -/// -@interface DBTEAMLOGSharedContentViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedContentViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedContentViewType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedContentViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedContentViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedContentViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedContentViewType` object. -/// -+ (DBTEAMLOGSharedContentViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h deleted file mode 100644 index 1f398760..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGSharedLinkPolicy; -@class DBTEAMLOGSharedFolderChangeLinkPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeLinkPolicyDetails` struct. -/// -/// Changed who can access shared folder via link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New shared folder link policy. -@property (nonatomic, readonly) DBSHARINGSharedLinkPolicy *dNewValue; - -/// Previous shared folder link policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBSHARINGSharedLinkPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared folder link policy. -/// @param previousValue Previous shared folder link policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGSharedLinkPolicy *)dNewValue - previousValue:(nullable DBSHARINGSharedLinkPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New shared folder link policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGSharedLinkPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeLinkPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeLinkPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeLinkPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyType.h deleted file mode 100644 index c127d71d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeLinkPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeLinkPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeLinkPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeLinkPolicyType` struct. -/// -@interface DBTEAMLOGSharedFolderChangeLinkPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeLinkPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeLinkPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeLinkPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeLinkPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderChangeLinkPolicyType` -/// object. -/// -+ (DBTEAMLOGSharedFolderChangeLinkPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h deleted file mode 100644 index a3c83e6a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails; -@class DBTEAMLOGSharedFolderMembersInheritancePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersInheritancePolicyDetails` struct. -/// -/// Changed whether shared folder inherits members from parent folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New member inheritance policy. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMembersInheritancePolicy *dNewValue; - -/// Previous member inheritance policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharedFolderMembersInheritancePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New member inheritance policy. -/// @param previousValue Previous member inheritance policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedFolderMembersInheritancePolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharedFolderMembersInheritancePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New member inheritance policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedFolderMembersInheritancePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersInheritancePolicyDetails` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h deleted file mode 100644 index 7878f084..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersInheritancePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersInheritancePolicyType` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersInheritancePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersInheritancePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h deleted file mode 100644 index 95d8f9f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAclUpdatePolicy; -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersManagementPolicyDetails` struct. -/// -/// Changed who can add/remove members of shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New members management policy. -@property (nonatomic, readonly) DBSHARINGAclUpdatePolicy *dNewValue; - -/// Previous members management policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBSHARINGAclUpdatePolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New members management policy. -/// @param previousValue Previous members management policy. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGAclUpdatePolicy *)dNewValue - previousValue:(nullable DBSHARINGAclUpdatePolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New members management policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGAclUpdatePolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersManagementPolicyDetails` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersManagementPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h deleted file mode 100644 index 9f0997f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersManagementPolicyType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersManagementPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersManagementPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedFolderChangeMembersManagementPolicyType` struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersManagementPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersManagementPolicyType` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersManagementPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h deleted file mode 100644 index 029725eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGMemberPolicy; -@class DBTEAMLOGSharedFolderChangeMembersPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersPolicyDetails` struct. -/// -/// Changed who can become member of shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external invite policy. -@property (nonatomic, readonly) DBSHARINGMemberPolicy *dNewValue; - -/// Previous external invite policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBSHARINGMemberPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external invite policy. -/// @param previousValue Previous external invite policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGMemberPolicy *)dNewValue - previousValue:(nullable DBSHARINGMemberPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external invite policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBSHARINGMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeMembersPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeMembersPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyDetails` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyType.h deleted file mode 100644 index e9172eb3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderChangeMembersPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderChangeMembersPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderChangeMembersPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderChangeMembersPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharedFolderChangeMembersPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderChangeMembersPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderChangeMembersPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderChangeMembersPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderChangeMembersPolicyType` object. -/// -+ (DBTEAMLOGSharedFolderChangeMembersPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderCreateDetails.h deleted file mode 100644 index 75e6577e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderCreateDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderCreateDetails` struct. -/// -/// Created shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Target namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *targetNsId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetNsId Target namespace ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetNsId:(nullable NSString *)targetNsId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderCreateDetails` struct. -/// -@interface DBTEAMLOGSharedFolderCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderCreateDetails` object. -/// -+ (DBTEAMLOGSharedFolderCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderCreateType.h deleted file mode 100644 index 7e4074ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderCreateType` struct. -/// -@interface DBTEAMLOGSharedFolderCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderCreateType` object. -/// -+ (DBTEAMLOGSharedFolderCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderDeclineInvitationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderDeclineInvitationDetails.h deleted file mode 100644 index de3cb1c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderDeclineInvitationDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderDeclineInvitationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderDeclineInvitationDetails` struct. -/// -/// Declined team member's invite to shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderDeclineInvitationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderDeclineInvitationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderDeclineInvitationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderDeclineInvitationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationDetails` object. -/// -+ (DBTEAMLOGSharedFolderDeclineInvitationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderDeclineInvitationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderDeclineInvitationType.h deleted file mode 100644 index b63c7b49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderDeclineInvitationType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderDeclineInvitationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderDeclineInvitationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderDeclineInvitationType` struct. -/// -@interface DBTEAMLOGSharedFolderDeclineInvitationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderDeclineInvitationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderDeclineInvitationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderDeclineInvitationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderDeclineInvitationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderDeclineInvitationType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderDeclineInvitationType` -/// object. -/// -+ (DBTEAMLOGSharedFolderDeclineInvitationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMembersInheritancePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMembersInheritancePolicy.h deleted file mode 100644 index a4b945b2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMembersInheritancePolicy.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderMembersInheritancePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMembersInheritancePolicy` union. -/// -/// Specifies if a shared folder inherits its members from the parent folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderMembersInheritancePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharedFolderMembersInheritancePolicyTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharedFolderMembersInheritancePolicyTag) { - /// (no description). - DBTEAMLOGSharedFolderMembersInheritancePolicyDontInheritMembers, - - /// (no description). - DBTEAMLOGSharedFolderMembersInheritancePolicyInheritMembers, - - /// (no description). - DBTEAMLOGSharedFolderMembersInheritancePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharedFolderMembersInheritancePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "dont_inherit_members". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDontInheritMembers; - -/// -/// Initializes union class with tag state of "inherit_members". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInheritMembers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "dont_inherit_members". -/// -/// @return Whether the union's current tag state has value -/// "dont_inherit_members". -/// -- (BOOL)isDontInheritMembers; - -/// -/// Retrieves whether the union's current tag state has value "inherit_members". -/// -/// @return Whether the union's current tag state has value "inherit_members". -/// -- (BOOL)isInheritMembers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` union. -/// -@interface DBTEAMLOGSharedFolderMembersInheritancePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderMembersInheritancePolicy` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderMembersInheritancePolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderMembersInheritancePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderMembersInheritancePolicy` object. -/// -+ (DBTEAMLOGSharedFolderMembersInheritancePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMountDetails.h deleted file mode 100644 index c84871a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMountDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderMountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMountDetails` struct. -/// -/// Added shared folder to own Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderMountDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMountDetails` struct. -/// -@interface DBTEAMLOGSharedFolderMountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderMountDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderMountDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderMountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderMountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderMountDetails` object. -/// -+ (DBTEAMLOGSharedFolderMountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMountType.h deleted file mode 100644 index c75ec88e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderMountType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderMountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderMountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderMountType` struct. -/// -@interface DBTEAMLOGSharedFolderMountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderMountType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderMountType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderMountType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderMountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderMountType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderMountType` object. -/// -+ (DBTEAMLOGSharedFolderMountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderNestDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderNestDetails.h deleted file mode 100644 index 391fd03e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderNestDetails.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderNestDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderNestDetails` struct. -/// -/// Changed parent of shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderNestDetails : NSObject - -#pragma mark - Instance fields - -/// Previous parent namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *previousParentNsId; - -/// New parent namespace ID. -@property (nonatomic, readonly, copy, nullable) NSString *dNewParentNsId; - -/// Previous namespace path. -@property (nonatomic, readonly, copy, nullable) NSString *previousNsPath; - -/// New namespace path. -@property (nonatomic, readonly, copy, nullable) NSString *dNewNsPath; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousParentNsId Previous parent namespace ID. -/// @param dNewParentNsId New parent namespace ID. -/// @param previousNsPath Previous namespace path. -/// @param dNewNsPath New namespace path. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousParentNsId:(nullable NSString *)previousParentNsId - dNewParentNsId:(nullable NSString *)dNewParentNsId - previousNsPath:(nullable NSString *)previousNsPath - dNewNsPath:(nullable NSString *)dNewNsPath; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderNestDetails` struct. -/// -@interface DBTEAMLOGSharedFolderNestDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderNestDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderNestDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderNestDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderNestDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderNestDetails` object. -/// -+ (DBTEAMLOGSharedFolderNestDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderNestType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderNestType.h deleted file mode 100644 index cf007a59..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderNestType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderNestType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderNestType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderNestType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderNestType` struct. -/// -@interface DBTEAMLOGSharedFolderNestTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderNestType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderNestType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderNestType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderNestType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderNestType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderNestType` object. -/// -+ (DBTEAMLOGSharedFolderNestType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderTransferOwnershipDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderTransferOwnershipDetails.h deleted file mode 100644 index 4725f1b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderTransferOwnershipDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderTransferOwnershipDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderTransferOwnershipDetails` struct. -/// -/// Transferred ownership of shared folder to another member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipDetails : NSObject - -#pragma mark - Instance fields - -/// The email address of the previous shared folder owner. -@property (nonatomic, readonly, copy, nullable) NSString *previousOwnerEmail; - -/// The email address of the new shared folder owner. -@property (nonatomic, readonly, copy) NSString *dNewOwnerEmail; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewOwnerEmail The email address of the new shared folder owner. -/// @param previousOwnerEmail The email address of the previous shared folder -/// owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerEmail:(NSString *)dNewOwnerEmail - previousOwnerEmail:(nullable NSString *)previousOwnerEmail; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewOwnerEmail The email address of the new shared folder owner. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewOwnerEmail:(NSString *)dNewOwnerEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderTransferOwnershipDetails` -/// struct. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderTransferOwnershipDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderTransferOwnershipDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderTransferOwnershipDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipDetails` object. -/// -+ (DBTEAMLOGSharedFolderTransferOwnershipDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderTransferOwnershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderTransferOwnershipType.h deleted file mode 100644 index e47dce4e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderTransferOwnershipType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderTransferOwnershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderTransferOwnershipType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderTransferOwnershipType` struct. -/// -@interface DBTEAMLOGSharedFolderTransferOwnershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderTransferOwnershipType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedFolderTransferOwnershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderTransferOwnershipType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderTransferOwnershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderTransferOwnershipType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderTransferOwnershipType` -/// object. -/// -+ (DBTEAMLOGSharedFolderTransferOwnershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderUnmountDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderUnmountDetails.h deleted file mode 100644 index bfd8e7f3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderUnmountDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderUnmountDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderUnmountDetails` struct. -/// -/// Deleted shared folder from Dropbox. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderUnmountDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderUnmountDetails` struct. -/// -@interface DBTEAMLOGSharedFolderUnmountDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderUnmountDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderUnmountDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderUnmountDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderUnmountDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderUnmountDetails` -/// object. -/// -+ (DBTEAMLOGSharedFolderUnmountDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderUnmountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderUnmountType.h deleted file mode 100644 index af3a9647..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedFolderUnmountType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedFolderUnmountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderUnmountType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedFolderUnmountType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedFolderUnmountType` struct. -/// -@interface DBTEAMLOGSharedFolderUnmountTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedFolderUnmountType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedFolderUnmountType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedFolderUnmountType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedFolderUnmountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedFolderUnmountType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedFolderUnmountType` object. -/// -+ (DBTEAMLOGSharedFolderUnmountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAccessLevel.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAccessLevel.h deleted file mode 100644 index 694de5ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAccessLevel.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAccessLevel; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAccessLevel` union. -/// -/// Shared link access level. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkAccessLevel : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharedLinkAccessLevelTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSharedLinkAccessLevel` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharedLinkAccessLevelTag) { - /// (no description). - DBTEAMLOGSharedLinkAccessLevelNone, - - /// (no description). - DBTEAMLOGSharedLinkAccessLevelReader, - - /// (no description). - DBTEAMLOGSharedLinkAccessLevelWriter, - - /// (no description). - DBTEAMLOGSharedLinkAccessLevelOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkAccessLevelTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "none". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNone; - -/// -/// Initializes union class with tag state of "reader". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReader; - -/// -/// Initializes union class with tag state of "writer". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWriter; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "none". -/// -/// @return Whether the union's current tag state has value "none". -/// -- (BOOL)isNone; - -/// -/// Retrieves whether the union's current tag state has value "reader". -/// -/// @return Whether the union's current tag state has value "reader". -/// -- (BOOL)isReader; - -/// -/// Retrieves whether the union's current tag state has value "writer". -/// -/// @return Whether the union's current tag state has value "writer". -/// -- (BOOL)isWriter; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharedLinkAccessLevel` union. -/// -@interface DBTEAMLOGSharedLinkAccessLevelSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkAccessLevel` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkAccessLevel` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAccessLevel` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkAccessLevel *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkAccessLevel` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAccessLevel` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkAccessLevel` object. -/// -+ (DBTEAMLOGSharedLinkAccessLevel *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAddExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAddExpiryDetails.h deleted file mode 100644 index d07c4032..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAddExpiryDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAddExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAddExpiryDetails` struct. -/// -/// Added shared link expiration date. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkAddExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared link expiration date. -@property (nonatomic, readonly) NSDate *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared link expiration date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSDate *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkAddExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedLinkAddExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkAddExpiryDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkAddExpiryDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkAddExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkAddExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkAddExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkAddExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAddExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAddExpiryType.h deleted file mode 100644 index fc155388..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkAddExpiryType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAddExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkAddExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkAddExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkAddExpiryType` struct. -/// -@interface DBTEAMLOGSharedLinkAddExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkAddExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkAddExpiryType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkAddExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkAddExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkAddExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkAddExpiryType` object. -/// -+ (DBTEAMLOGSharedLinkAddExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeExpiryDetails.h deleted file mode 100644 index ae2654dd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeExpiryDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeExpiryDetails` struct. -/// -/// Changed shared link expiration date. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// New shared link expiration date. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -/// Previous shared link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared link expiration date. Might be missing due to -/// historical data gap. -/// @param previousValue Previous shared link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSDate *)dNewValue previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeExpiryDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkChangeExpiryDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeExpiryType.h deleted file mode 100644 index bbc9c603..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeExpiryType` struct. -/// -@interface DBTEAMLOGSharedLinkChangeExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkChangeExpiryType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeVisibilityDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeVisibilityDetails.h deleted file mode 100644 index f265670b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeVisibilityDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeVisibilityDetails; -@class DBTEAMLOGSharedLinkVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeVisibilityDetails` struct. -/// -/// Changed visibility of shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityDetails : NSObject - -#pragma mark - Instance fields - -/// New shared link visibility. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkVisibility *dNewValue; - -/// Previous shared link visibility. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharedLinkVisibility *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New shared link visibility. -/// @param previousValue Previous shared link visibility. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedLinkVisibility *)dNewValue - previousValue:(nullable DBTEAMLOGSharedLinkVisibility *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New shared link visibility. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharedLinkVisibility *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeVisibilityDetails` struct. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeVisibilityDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkChangeVisibilityDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeVisibilityDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeVisibilityDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeVisibilityDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeVisibilityDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeVisibilityType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeVisibilityType.h deleted file mode 100644 index 58a30b2f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkChangeVisibilityType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkChangeVisibilityType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkChangeVisibilityType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkChangeVisibilityType` struct. -/// -@interface DBTEAMLOGSharedLinkChangeVisibilityTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkChangeVisibilityType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkChangeVisibilityType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkChangeVisibilityType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkChangeVisibilityType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkChangeVisibilityType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkChangeVisibilityType` -/// object. -/// -+ (DBTEAMLOGSharedLinkChangeVisibilityType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCopyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCopyDetails.h deleted file mode 100644 index 708bedca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCopyDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkCopyDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCopyDetails` struct. -/// -/// Added file/folder to Dropbox from shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCopyDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCopyDetails` struct. -/// -@interface DBTEAMLOGSharedLinkCopyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCopyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCopyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCopyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCopyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCopyDetails` object. -/// -+ (DBTEAMLOGSharedLinkCopyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCopyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCopyType.h deleted file mode 100644 index a7ba5513..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCopyType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkCopyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCopyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCopyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCopyType` struct. -/// -@interface DBTEAMLOGSharedLinkCopyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCopyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCopyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCopyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCopyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCopyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCopyType` object. -/// -+ (DBTEAMLOGSharedLinkCopyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCreateDetails.h deleted file mode 100644 index cb53e0f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCreateDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkAccessLevel; -@class DBTEAMLOGSharedLinkCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCreateDetails` struct. -/// -/// Created shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCreateDetails : NSObject - -#pragma mark - Instance fields - -/// Defines who can access the shared link. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharedLinkAccessLevel *sharedLinkAccessLevel; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkAccessLevel Defines who can access the shared link. Might -/// be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkAccessLevel:(nullable DBTEAMLOGSharedLinkAccessLevel *)sharedLinkAccessLevel; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCreateDetails` struct. -/// -@interface DBTEAMLOGSharedLinkCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCreateDetails` object. -/// -+ (DBTEAMLOGSharedLinkCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCreateType.h deleted file mode 100644 index 2bc98217..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkCreateType` struct. -/// -@interface DBTEAMLOGSharedLinkCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkCreateType` object. -/// -+ (DBTEAMLOGSharedLinkCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDisableDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDisableDetails.h deleted file mode 100644 index 8ea76da9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDisableDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDisableDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDisableDetails` struct. -/// -/// Removed shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDisableDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDisableDetails` struct. -/// -@interface DBTEAMLOGSharedLinkDisableDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDisableDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDisableDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDisableDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDisableDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDisableDetails` object. -/// -+ (DBTEAMLOGSharedLinkDisableDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDisableType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDisableType.h deleted file mode 100644 index 1174a5ff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDisableType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDisableType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDisableType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDisableType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDisableType` struct. -/// -@interface DBTEAMLOGSharedLinkDisableTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDisableType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDisableType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDisableType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDisableType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDisableType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDisableType` object. -/// -+ (DBTEAMLOGSharedLinkDisableType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDownloadDetails.h deleted file mode 100644 index 070ef2eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDownloadDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDownloadDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDownloadDetails` struct. -/// -/// Downloaded file/folder from shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDownloadDetails` struct. -/// -@interface DBTEAMLOGSharedLinkDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDownloadDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDownloadDetails` object. -/// -+ (DBTEAMLOGSharedLinkDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDownloadType.h deleted file mode 100644 index d4d0d6e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkDownloadType` struct. -/// -@interface DBTEAMLOGSharedLinkDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkDownloadType` object. -/// -+ (DBTEAMLOGSharedLinkDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkRemoveExpiryDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkRemoveExpiryDetails.h deleted file mode 100644 index 6acdf44b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkRemoveExpiryDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkRemoveExpiryDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkRemoveExpiryDetails` struct. -/// -/// Removed shared link expiration date. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryDetails : NSObject - -#pragma mark - Instance fields - -/// Previous shared link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous shared link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkRemoveExpiryDetails` struct. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkRemoveExpiryDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkRemoveExpiryDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkRemoveExpiryDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkRemoveExpiryDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkRemoveExpiryDetails` -/// object. -/// -+ (DBTEAMLOGSharedLinkRemoveExpiryDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkRemoveExpiryType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkRemoveExpiryType.h deleted file mode 100644 index 3944210e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkRemoveExpiryType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkRemoveExpiryType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkRemoveExpiryType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkRemoveExpiryType` struct. -/// -@interface DBTEAMLOGSharedLinkRemoveExpiryTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkRemoveExpiryType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkRemoveExpiryType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkRemoveExpiryType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkRemoveExpiryType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkRemoveExpiryType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkRemoveExpiryType` -/// object. -/// -+ (DBTEAMLOGSharedLinkRemoveExpiryType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h deleted file mode 100644 index d0d274f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAddExpirationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddExpirationDetails` struct. -/// -/// Added an expiration date to the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink - dNewValue:(nullable NSDate *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddExpirationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddExpirationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddExpirationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationType.h deleted file mode 100644 index de288f2b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddExpirationType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAddExpirationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddExpirationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddExpirationType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddExpirationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddExpirationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddExpirationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddExpirationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAddExpirationType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddExpirationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h deleted file mode 100644 index e9ff6ac1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAddPasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddPasswordDetails` struct. -/// -/// Added a password to the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddPasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddPasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddPasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordType.h deleted file mode 100644 index f47664c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAddPasswordType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAddPasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAddPasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAddPasswordType` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAddPasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAddPasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAddPasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAddPasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAddPasswordType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkSettingsAddPasswordType` -/// object. -/// -+ (DBTEAMLOGSharedLinkSettingsAddPasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h deleted file mode 100644 index fee2aa88..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadDisabledDetails` struct. -/// -/// Disabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedLinkSettingsAllowDownloadDisabledDetails` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h deleted file mode 100644 index b4d68dab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadDisabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedLinkSettingsAllowDownloadDisabledType` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadDisabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h deleted file mode 100644 index 010c4e09..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadEnabledDetails` struct. -/// -/// Enabled downloads. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharedLinkSettingsAllowDownloadEnabledDetails` struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h deleted file mode 100644 index 42d579d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsAllowDownloadEnabledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsAllowDownloadEnabledType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsAllowDownloadEnabledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h deleted file mode 100644 index 1829dacc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceDetails.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBSHARINGLinkAudience; -@class DBTEAMLOGSharedLinkSettingsChangeAudienceDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeAudienceDetails` struct. -/// -/// Changed the audience of the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// New link audience value. -@property (nonatomic, readonly) DBSHARINGLinkAudience *dNewValue; - -/// Previous link audience value. -@property (nonatomic, readonly, nullable) DBSHARINGLinkAudience *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param dNewValue New link audience value. -/// @param sharedContentLink Shared content link. -/// @param previousValue Previous link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - dNewValue:(DBSHARINGLinkAudience *)dNewValue - sharedContentLink:(nullable NSString *)sharedContentLink - previousValue:(nullable DBSHARINGLinkAudience *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param dNewValue New link audience value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - dNewValue:(DBSHARINGLinkAudience *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeAudienceDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeAudienceDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceType.h deleted file mode 100644 index 4b8ac34c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeAudienceType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsChangeAudienceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeAudienceType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeAudienceType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeAudienceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeAudienceType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeAudienceType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeAudienceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeAudienceType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeAudienceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h deleted file mode 100644 index 2a6d439b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationDetails.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsChangeExpirationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeExpirationDetails` struct. -/// -/// Changed the expiration date of the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// New shared content link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *dNewValue; - -/// Previous shared content link expiration date. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// @param dNewValue New shared content link expiration date. Might be missing -/// due to historical data gap. -/// @param previousValue Previous shared content link expiration date. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink - dNewValue:(nullable NSDate *)dNewValue - previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeExpirationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeExpirationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationType.h deleted file mode 100644 index ffde5138..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangeExpirationType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsChangeExpirationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangeExpirationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangeExpirationType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangeExpirationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangeExpirationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangeExpirationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangeExpirationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangeExpirationType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangeExpirationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h deleted file mode 100644 index 06085c98..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsChangePasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangePasswordDetails` struct. -/// -/// Changed the password of the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangePasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangePasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangePasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordType.h deleted file mode 100644 index 68cb61af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsChangePasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsChangePasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsChangePasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsChangePasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsChangePasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsChangePasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsChangePasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsChangePasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsChangePasswordType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsChangePasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h deleted file mode 100644 index 65b1673e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemoveExpirationDetails` struct. -/// -/// Removed the expiration date from the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -/// Previous shared link expiration date. Might be missing due to historical -/// data gap. -@property (nonatomic, readonly, nullable) NSDate *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// @param previousValue Previous shared link expiration date. Might be missing -/// due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink - previousValue:(nullable NSDate *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemoveExpirationDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemoveExpirationDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h deleted file mode 100644 index 4b76de07..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemoveExpirationType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsRemoveExpirationType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemoveExpirationType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemoveExpirationType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemoveExpirationTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemoveExpirationType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemoveExpirationType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemoveExpirationType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h deleted file mode 100644 index 5119380c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSHARINGAccessLevel; -@class DBTEAMLOGSharedLinkSettingsRemovePasswordDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemovePasswordDetails` struct. -/// -/// Removed the password from the shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordDetails : NSObject - -#pragma mark - Instance fields - -/// Shared content access level. -@property (nonatomic, readonly) DBSHARINGAccessLevel *sharedContentAccessLevel; - -/// Shared content link. -@property (nonatomic, readonly, copy, nullable) NSString *sharedContentLink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// @param sharedContentLink Shared content link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel - sharedContentLink:(nullable NSString *)sharedContentLink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sharedContentAccessLevel Shared content access level. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedContentAccessLevel:(DBSHARINGAccessLevel *)sharedContentAccessLevel; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemovePasswordDetails` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordDetails` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemovePasswordDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordType.h deleted file mode 100644 index 09f8cdfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkSettingsRemovePasswordType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkSettingsRemovePasswordType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkSettingsRemovePasswordType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkSettingsRemovePasswordType` -/// struct. -/// -@interface DBTEAMLOGSharedLinkSettingsRemovePasswordTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkSettingsRemovePasswordType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkSettingsRemovePasswordType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkSettingsRemovePasswordType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharedLinkSettingsRemovePasswordType` object. -/// -+ (DBTEAMLOGSharedLinkSettingsRemovePasswordType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkShareDetails.h deleted file mode 100644 index e35b5f30..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkShareDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGExternalUserLogInfo; -@class DBTEAMLOGSharedLinkShareDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkShareDetails` struct. -/// -/// Added members as audience of shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkShareDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -/// Users without a Dropbox account that were added as shared link audience. -@property (nonatomic, readonly, nullable) NSArray *externalUsers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// @param externalUsers Users without a Dropbox account that were added as -/// shared link audience. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner - externalUsers:(nullable NSArray *)externalUsers; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkShareDetails` struct. -/// -@interface DBTEAMLOGSharedLinkShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkShareDetails` object. -/// -+ (DBTEAMLOGSharedLinkShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkShareType.h deleted file mode 100644 index 1ceb0efc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkShareType` struct. -/// -@interface DBTEAMLOGSharedLinkShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkShareType` object. -/// -+ (DBTEAMLOGSharedLinkShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkViewDetails.h deleted file mode 100644 index 4d7142d9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkViewDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkViewDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkViewDetails` struct. -/// -/// Opened shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkViewDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkViewDetails` struct. -/// -@interface DBTEAMLOGSharedLinkViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkViewDetails` object. -/// -+ (DBTEAMLOGSharedLinkViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkViewType.h deleted file mode 100644 index 9b9a3346..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkViewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedLinkViewType` struct. -/// -@interface DBTEAMLOGSharedLinkViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkViewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkViewType` object. -/// -+ (DBTEAMLOGSharedLinkViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkVisibility.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkVisibility.h deleted file mode 100644 index dd0ce34a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedLinkVisibility.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedLinkVisibility; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkVisibility` union. -/// -/// Defines who has access to a shared link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedLinkVisibility : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharedLinkVisibilityTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSharedLinkVisibility` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharedLinkVisibilityTag) { - /// (no description). - DBTEAMLOGSharedLinkVisibilityNoOne, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityPassword, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityPublic, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityTeamOnly, - - /// (no description). - DBTEAMLOGSharedLinkVisibilityOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharedLinkVisibilityTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_one". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoOne; - -/// -/// Initializes union class with tag state of "password". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPassword; - -/// -/// Initializes union class with tag state of "public". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPublic; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_one". -/// -/// @return Whether the union's current tag state has value "no_one". -/// -- (BOOL)isNoOne; - -/// -/// Retrieves whether the union's current tag state has value "password". -/// -/// @return Whether the union's current tag state has value "password". -/// -- (BOOL)isPassword; - -/// -/// Retrieves whether the union's current tag state has value "public". -/// -/// @return Whether the union's current tag state has value "public". -/// -- (BOOL)isPublic; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharedLinkVisibility` union. -/// -@interface DBTEAMLOGSharedLinkVisibilitySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedLinkVisibility` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedLinkVisibility` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkVisibility` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedLinkVisibility *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedLinkVisibility` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedLinkVisibility` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedLinkVisibility` object. -/// -+ (DBTEAMLOGSharedLinkVisibility *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedNoteOpenedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedNoteOpenedDetails.h deleted file mode 100644 index 5342004a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedNoteOpenedDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedNoteOpenedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedNoteOpenedDetails` struct. -/// -/// Opened shared Paper doc. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedNoteOpenedDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedNoteOpenedDetails` struct. -/// -@interface DBTEAMLOGSharedNoteOpenedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedNoteOpenedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedNoteOpenedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedNoteOpenedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedNoteOpenedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedNoteOpenedDetails` object. -/// -+ (DBTEAMLOGSharedNoteOpenedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedNoteOpenedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedNoteOpenedType.h deleted file mode 100644 index d01bebf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharedNoteOpenedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharedNoteOpenedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedNoteOpenedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharedNoteOpenedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharedNoteOpenedType` struct. -/// -@interface DBTEAMLOGSharedNoteOpenedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharedNoteOpenedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharedNoteOpenedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharedNoteOpenedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharedNoteOpenedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharedNoteOpenedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharedNoteOpenedType` object. -/// -+ (DBTEAMLOGSharedNoteOpenedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h deleted file mode 100644 index de3759c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeFolderJoinPolicyDetails; -@class DBTEAMLOGSharingFolderJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeFolderJoinPolicyDetails` struct. -/// -/// Changed whether team members can join shared folders owned outside team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external join policy. -@property (nonatomic, readonly) DBTEAMLOGSharingFolderJoinPolicy *dNewValue; - -/// Previous external join policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharingFolderJoinPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external join policy. -/// @param previousValue Previous external join policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingFolderJoinPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharingFolderJoinPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external join policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingFolderJoinPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeFolderJoinPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeFolderJoinPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeFolderJoinPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyType.h deleted file mode 100644 index c21a67b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeFolderJoinPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeFolderJoinPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeFolderJoinPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeFolderJoinPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeFolderJoinPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeFolderJoinPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeFolderJoinPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeFolderJoinPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeFolderJoinPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeFolderJoinPolicyType` -/// object. -/// -+ (DBTEAMLOGSharingChangeFolderJoinPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h deleted file mode 100644 index 35bd63c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGEnforceLinkPasswordPolicy; -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkAllowChangeExpirationPolicyDetails` struct. -/// -/// Changed the allow remove or change expiration policy for the links shared -/// outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGEnforceLinkPasswordPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly, nullable) DBTEAMLOGEnforceLinkPasswordPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGEnforceLinkPasswordPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGEnforceLinkPasswordPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGEnforceLinkPasswordPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkAllowChangeExpirationPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h deleted file mode 100644 index 43176ba9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkAllowChangeExpirationPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkAllowChangeExpirationPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType` object. -/// -+ (DBTEAMLOGSharingChangeLinkAllowChangeExpirationPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h deleted file mode 100644 index 5261c015..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDefaultLinkExpirationDaysPolicy; -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkDefaultExpirationPolicyDetails` struct. -/// -/// Changed the default expiration for the links shared outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGDefaultLinkExpirationDaysPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly, nullable) DBTEAMLOGDefaultLinkExpirationDaysPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDefaultLinkExpirationDaysPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGDefaultLinkExpirationDaysPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGDefaultLinkExpirationDaysPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkDefaultExpirationPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h deleted file mode 100644 index 783c8de8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkDefaultExpirationPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkDefaultExpirationPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType` object. -/// -+ (DBTEAMLOGSharingChangeLinkDefaultExpirationPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h deleted file mode 100644 index 82a74d72..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGChangeLinkExpirationPolicy; -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkEnforcePasswordPolicyDetails` struct. -/// -/// Changed the password requirement for the links shared outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// To. -@property (nonatomic, readonly) DBTEAMLOGChangeLinkExpirationPolicy *dNewValue; - -/// From. -@property (nonatomic, readonly, nullable) DBTEAMLOGChangeLinkExpirationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue To. -/// @param previousValue From. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGChangeLinkExpirationPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGChangeLinkExpirationPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue To. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGChangeLinkExpirationPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `SharingChangeLinkEnforcePasswordPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails` object. -/// -+ (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h deleted file mode 100644 index 410a362f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkEnforcePasswordPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeLinkEnforcePasswordPolicyType` -/// struct. -/// -@interface DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType` object. -/// -+ (DBTEAMLOGSharingChangeLinkEnforcePasswordPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkPolicyDetails.h deleted file mode 100644 index 9004aa08..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkPolicyDetails.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkPolicyDetails; -@class DBTEAMLOGSharingLinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkPolicyDetails` struct. -/// -/// Changed whether members can share links outside team, and if links are -/// accessible only by team members or anyone by default. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external link accessibility policy. -@property (nonatomic, readonly) DBTEAMLOGSharingLinkPolicy *dNewValue; - -/// Previous external link accessibility policy. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharingLinkPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external link accessibility policy. -/// @param previousValue Previous external link accessibility policy. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingLinkPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharingLinkPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external link accessibility policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingLinkPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeLinkPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkPolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingChangeLinkPolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeLinkPolicyDetails` -/// object. -/// -+ (DBTEAMLOGSharingChangeLinkPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkPolicyType.h deleted file mode 100644 index e4a68ae5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeLinkPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeLinkPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeLinkPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeLinkPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeLinkPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeLinkPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingChangeLinkPolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeLinkPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeLinkPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeLinkPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeLinkPolicyType` -/// object. -/// -+ (DBTEAMLOGSharingChangeLinkPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeMemberPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeMemberPolicyDetails.h deleted file mode 100644 index 165290e0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeMemberPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeMemberPolicyDetails; -@class DBTEAMLOGSharingMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeMemberPolicyDetails` struct. -/// -/// Changed whether members can share files/folders outside team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New external invite policy. -@property (nonatomic, readonly) DBTEAMLOGSharingMemberPolicy *dNewValue; - -/// Previous external invite policy. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGSharingMemberPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New external invite policy. -/// @param previousValue Previous external invite policy. Might be missing due -/// to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingMemberPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGSharingMemberPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New external invite policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGSharingMemberPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeMemberPolicyDetails` struct. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeMemberPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSharingChangeMemberPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeMemberPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeMemberPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeMemberPolicyDetails` -/// object. -/// -+ (DBTEAMLOGSharingChangeMemberPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeMemberPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeMemberPolicyType.h deleted file mode 100644 index baa6343b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingChangeMemberPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingChangeMemberPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingChangeMemberPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingChangeMemberPolicyType` struct. -/// -@interface DBTEAMLOGSharingChangeMemberPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingChangeMemberPolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingChangeMemberPolicyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingChangeMemberPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingChangeMemberPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingChangeMemberPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingChangeMemberPolicyType` -/// object. -/// -+ (DBTEAMLOGSharingChangeMemberPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingFolderJoinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingFolderJoinPolicy.h deleted file mode 100644 index 1b03ebfd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingFolderJoinPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingFolderJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingFolderJoinPolicy` union. -/// -/// Policy for controlling if team members can join shared folders owned by non -/// team members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingFolderJoinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharingFolderJoinPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSharingFolderJoinPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharingFolderJoinPolicyTag) { - /// (no description). - DBTEAMLOGSharingFolderJoinPolicyFromAnyone, - - /// (no description). - DBTEAMLOGSharingFolderJoinPolicyFromTeamOnly, - - /// (no description). - DBTEAMLOGSharingFolderJoinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharingFolderJoinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_anyone". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromAnyone; - -/// -/// Initializes union class with tag state of "from_team_only". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromTeamOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_anyone". -/// -/// @return Whether the union's current tag state has value "from_anyone". -/// -- (BOOL)isFromAnyone; - -/// -/// Retrieves whether the union's current tag state has value "from_team_only". -/// -/// @return Whether the union's current tag state has value "from_team_only". -/// -- (BOOL)isFromTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharingFolderJoinPolicy` union. -/// -@interface DBTEAMLOGSharingFolderJoinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingFolderJoinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingFolderJoinPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingFolderJoinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingFolderJoinPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingFolderJoinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingFolderJoinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingFolderJoinPolicy` object. -/// -+ (DBTEAMLOGSharingFolderJoinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingLinkPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingLinkPolicy.h deleted file mode 100644 index 961a857c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingLinkPolicy.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingLinkPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingLinkPolicy` union. -/// -/// Policy for controlling if team members can share links externally -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingLinkPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharingLinkPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSharingLinkPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharingLinkPolicyTag) { - /// (no description). - DBTEAMLOGSharingLinkPolicyDefaultNoOne, - - /// (no description). - DBTEAMLOGSharingLinkPolicyDefaultPrivate, - - /// (no description). - DBTEAMLOGSharingLinkPolicyDefaultPublic, - - /// (no description). - DBTEAMLOGSharingLinkPolicyOnlyPrivate, - - /// (no description). - DBTEAMLOGSharingLinkPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharingLinkPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default_no_one". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultNoOne; - -/// -/// Initializes union class with tag state of "default_private". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultPrivate; - -/// -/// Initializes union class with tag state of "default_public". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultPublic; - -/// -/// Initializes union class with tag state of "only_private". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnlyPrivate; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default_no_one". -/// -/// @return Whether the union's current tag state has value "default_no_one". -/// -- (BOOL)isDefaultNoOne; - -/// -/// Retrieves whether the union's current tag state has value "default_private". -/// -/// @return Whether the union's current tag state has value "default_private". -/// -- (BOOL)isDefaultPrivate; - -/// -/// Retrieves whether the union's current tag state has value "default_public". -/// -/// @return Whether the union's current tag state has value "default_public". -/// -- (BOOL)isDefaultPublic; - -/// -/// Retrieves whether the union's current tag state has value "only_private". -/// -/// @return Whether the union's current tag state has value "only_private". -/// -- (BOOL)isOnlyPrivate; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharingLinkPolicy` union. -/// -@interface DBTEAMLOGSharingLinkPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingLinkPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingLinkPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingLinkPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingLinkPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingLinkPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingLinkPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingLinkPolicy` object. -/// -+ (DBTEAMLOGSharingLinkPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingMemberPolicy.h deleted file mode 100644 index a3b7a418..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSharingMemberPolicy.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSharingMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingMemberPolicy` union. -/// -/// External sharing policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSharingMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSharingMemberPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSharingMemberPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSharingMemberPolicyTag) { - /// (no description). - DBTEAMLOGSharingMemberPolicyAllow, - - /// (no description). - DBTEAMLOGSharingMemberPolicyForbid, - - /// (no description). - DBTEAMLOGSharingMemberPolicyForbidWithExclusions, - - /// (no description). - DBTEAMLOGSharingMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSharingMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "allow". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllow; - -/// -/// Initializes union class with tag state of "forbid". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithForbid; - -/// -/// Initializes union class with tag state of "forbid_with_exclusions". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithForbidWithExclusions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "allow". -/// -/// @return Whether the union's current tag state has value "allow". -/// -- (BOOL)isAllow; - -/// -/// Retrieves whether the union's current tag state has value "forbid". -/// -/// @return Whether the union's current tag state has value "forbid". -/// -- (BOOL)isForbid; - -/// -/// Retrieves whether the union's current tag state has value -/// "forbid_with_exclusions". -/// -/// @return Whether the union's current tag state has value -/// "forbid_with_exclusions". -/// -- (BOOL)isForbidWithExclusions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSharingMemberPolicy` union. -/// -@interface DBTEAMLOGSharingMemberPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSharingMemberPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSharingMemberPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSharingMemberPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSharingMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSharingMemberPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSharingMemberPolicy` object. -/// -+ (DBTEAMLOGSharingMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelDisableDownloadsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelDisableDownloadsDetails.h deleted file mode 100644 index 167f379d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelDisableDownloadsDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelDisableDownloadsDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelDisableDownloadsDetails` struct. -/// -/// Disabled downloads for link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelDisableDownloadsDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelDisableDownloadsDetails` struct. -/// -@interface DBTEAMLOGShmodelDisableDownloadsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelDisableDownloadsDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelDisableDownloadsDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelDisableDownloadsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelDisableDownloadsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelDisableDownloadsDetails` -/// object. -/// -+ (DBTEAMLOGShmodelDisableDownloadsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelDisableDownloadsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelDisableDownloadsType.h deleted file mode 100644 index c3c50608..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelDisableDownloadsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelDisableDownloadsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelDisableDownloadsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelDisableDownloadsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelDisableDownloadsType` struct. -/// -@interface DBTEAMLOGShmodelDisableDownloadsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelDisableDownloadsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelDisableDownloadsType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelDisableDownloadsType *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelDisableDownloadsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelDisableDownloadsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelDisableDownloadsType` -/// object. -/// -+ (DBTEAMLOGShmodelDisableDownloadsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelEnableDownloadsDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelEnableDownloadsDetails.h deleted file mode 100644 index 6be6bc02..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelEnableDownloadsDetails.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelEnableDownloadsDetails; -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelEnableDownloadsDetails` struct. -/// -/// Enabled downloads for link. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelEnableDownloadsDetails : NSObject - -#pragma mark - Instance fields - -/// Shared link owner details. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGUserLogInfo *sharedLinkOwner; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedLinkOwner Shared link owner details. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedLinkOwner:(nullable DBTEAMLOGUserLogInfo *)sharedLinkOwner; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelEnableDownloadsDetails` struct. -/// -@interface DBTEAMLOGShmodelEnableDownloadsDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelEnableDownloadsDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelEnableDownloadsDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelEnableDownloadsDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelEnableDownloadsDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelEnableDownloadsDetails` -/// object. -/// -+ (DBTEAMLOGShmodelEnableDownloadsDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelEnableDownloadsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelEnableDownloadsType.h deleted file mode 100644 index 0c4c941b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelEnableDownloadsType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelEnableDownloadsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelEnableDownloadsType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelEnableDownloadsType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelEnableDownloadsType` struct. -/// -@interface DBTEAMLOGShmodelEnableDownloadsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelEnableDownloadsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelEnableDownloadsType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelEnableDownloadsType *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelEnableDownloadsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelEnableDownloadsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelEnableDownloadsType` -/// object. -/// -+ (DBTEAMLOGShmodelEnableDownloadsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelGroupShareDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelGroupShareDetails.h deleted file mode 100644 index ce81ab25..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelGroupShareDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelGroupShareDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelGroupShareDetails` struct. -/// -/// Shared link with group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelGroupShareDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelGroupShareDetails` struct. -/// -@interface DBTEAMLOGShmodelGroupShareDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelGroupShareDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelGroupShareDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelGroupShareDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelGroupShareDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelGroupShareDetails` object. -/// -+ (DBTEAMLOGShmodelGroupShareDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelGroupShareType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelGroupShareType.h deleted file mode 100644 index 1015b619..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShmodelGroupShareType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShmodelGroupShareType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShmodelGroupShareType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShmodelGroupShareType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShmodelGroupShareType` struct. -/// -@interface DBTEAMLOGShmodelGroupShareTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShmodelGroupShareType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShmodelGroupShareType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShmodelGroupShareType *)instance; - -/// -/// Deserializes `DBTEAMLOGShmodelGroupShareType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShmodelGroupShareType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShmodelGroupShareType` object. -/// -+ (DBTEAMLOGShmodelGroupShareType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAccessGrantedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAccessGrantedDetails.h deleted file mode 100644 index 25de3089..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAccessGrantedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAccessGrantedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAccessGrantedDetails` struct. -/// -/// Granted access to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAccessGrantedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAccessGrantedDetails` struct. -/// -@interface DBTEAMLOGShowcaseAccessGrantedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAccessGrantedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAccessGrantedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAccessGrantedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAccessGrantedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAccessGrantedDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseAccessGrantedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAccessGrantedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAccessGrantedType.h deleted file mode 100644 index 79c13cf4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAccessGrantedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAccessGrantedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAccessGrantedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAccessGrantedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAccessGrantedType` struct. -/// -@interface DBTEAMLOGShowcaseAccessGrantedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAccessGrantedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAccessGrantedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAccessGrantedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAccessGrantedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAccessGrantedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAccessGrantedType` object. -/// -+ (DBTEAMLOGShowcaseAccessGrantedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAddMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAddMemberDetails.h deleted file mode 100644 index 9564312a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAddMemberDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAddMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAddMemberDetails` struct. -/// -/// Added member to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAddMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAddMemberDetails` struct. -/// -@interface DBTEAMLOGShowcaseAddMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAddMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAddMemberDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAddMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAddMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAddMemberDetails` object. -/// -+ (DBTEAMLOGShowcaseAddMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAddMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAddMemberType.h deleted file mode 100644 index 40314cd3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseAddMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseAddMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseAddMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseAddMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseAddMemberType` struct. -/// -@interface DBTEAMLOGShowcaseAddMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseAddMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseAddMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseAddMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseAddMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseAddMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseAddMemberType` object. -/// -+ (DBTEAMLOGShowcaseAddMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseArchivedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseArchivedDetails.h deleted file mode 100644 index 5c4683c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseArchivedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseArchivedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseArchivedDetails` struct. -/// -/// Archived showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseArchivedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseArchivedDetails` struct. -/// -@interface DBTEAMLOGShowcaseArchivedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseArchivedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseArchivedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseArchivedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseArchivedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseArchivedDetails` object. -/// -+ (DBTEAMLOGShowcaseArchivedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseArchivedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseArchivedType.h deleted file mode 100644 index f9de9b84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseArchivedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseArchivedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseArchivedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseArchivedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseArchivedType` struct. -/// -@interface DBTEAMLOGShowcaseArchivedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseArchivedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseArchivedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseArchivedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseArchivedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseArchivedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseArchivedType` object. -/// -+ (DBTEAMLOGShowcaseArchivedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h deleted file mode 100644 index 41b4cdeb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeDownloadPolicyDetails; -@class DBTEAMLOGShowcaseDownloadPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeDownloadPolicyDetails` struct. -/// -/// Enabled/disabled downloading files from Dropbox Showcase for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Showcase download policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDownloadPolicy *dNewValue; - -/// Previous Dropbox Showcase download policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDownloadPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Showcase download policy. -/// @param previousValue Previous Dropbox Showcase download policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGShowcaseDownloadPolicy *)dNewValue - previousValue:(DBTEAMLOGShowcaseDownloadPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeDownloadPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeDownloadPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyDetails` object. -/// -+ (DBTEAMLOGShowcaseChangeDownloadPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyType.h deleted file mode 100644 index a771d878..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeDownloadPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeDownloadPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeDownloadPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeDownloadPolicyType` struct. -/// -@interface DBTEAMLOGShowcaseChangeDownloadPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeDownloadPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeDownloadPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeDownloadPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeDownloadPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseChangeDownloadPolicyType` -/// object. -/// -+ (DBTEAMLOGShowcaseChangeDownloadPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h deleted file mode 100644 index 4194d7d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeEnabledPolicyDetails; -@class DBTEAMLOGShowcaseEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeEnabledPolicyDetails` struct. -/// -/// Enabled/disabled Dropbox Showcase for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Showcase policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEnabledPolicy *dNewValue; - -/// Previous Dropbox Showcase policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEnabledPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Showcase policy. -/// @param previousValue Previous Dropbox Showcase policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGShowcaseEnabledPolicy *)dNewValue - previousValue:(DBTEAMLOGShowcaseEnabledPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeEnabledPolicyDetails` struct. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeEnabledPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyDetails` object. -/// -+ (DBTEAMLOGShowcaseChangeEnabledPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyType.h deleted file mode 100644 index b0b3a41d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeEnabledPolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeEnabledPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeEnabledPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeEnabledPolicyType` struct. -/// -@interface DBTEAMLOGShowcaseChangeEnabledPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeEnabledPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeEnabledPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeEnabledPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeEnabledPolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseChangeEnabledPolicyType` -/// object. -/// -+ (DBTEAMLOGShowcaseChangeEnabledPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h deleted file mode 100644 index 009e1b06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails; -@class DBTEAMLOGShowcaseExternalSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeExternalSharingPolicyDetails` struct. -/// -/// Enabled/disabled sharing Dropbox Showcase externally for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New Dropbox Showcase external sharing policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseExternalSharingPolicy *dNewValue; - -/// Previous Dropbox Showcase external sharing policy. -@property (nonatomic, readonly) DBTEAMLOGShowcaseExternalSharingPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Dropbox Showcase external sharing policy. -/// @param previousValue Previous Dropbox Showcase external sharing policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGShowcaseExternalSharingPolicy *)dNewValue - previousValue:(DBTEAMLOGShowcaseExternalSharingPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeExternalSharingPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails` object. -/// -+ (DBTEAMLOGShowcaseChangeExternalSharingPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h deleted file mode 100644 index ae3c8c9d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseChangeExternalSharingPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseChangeExternalSharingPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseChangeExternalSharingPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseChangeExternalSharingPolicyType` -/// struct. -/// -@interface DBTEAMLOGShowcaseChangeExternalSharingPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseChangeExternalSharingPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseChangeExternalSharingPolicyType` object. -/// -+ (DBTEAMLOGShowcaseChangeExternalSharingPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseCreatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseCreatedDetails.h deleted file mode 100644 index a77ad026..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseCreatedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseCreatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseCreatedDetails` struct. -/// -/// Created showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseCreatedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseCreatedDetails` struct. -/// -@interface DBTEAMLOGShowcaseCreatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseCreatedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseCreatedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseCreatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseCreatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseCreatedDetails` object. -/// -+ (DBTEAMLOGShowcaseCreatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseCreatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseCreatedType.h deleted file mode 100644 index c56303ec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseCreatedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseCreatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseCreatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseCreatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseCreatedType` struct. -/// -@interface DBTEAMLOGShowcaseCreatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseCreatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseCreatedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseCreatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseCreatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseCreatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseCreatedType` object. -/// -+ (DBTEAMLOGShowcaseCreatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDeleteCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDeleteCommentDetails.h deleted file mode 100644 index 7b82cfc7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDeleteCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDeleteCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDeleteCommentDetails` struct. -/// -/// Deleted showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDeleteCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseDeleteCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseDeleteCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDeleteCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDeleteCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDeleteCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDeleteCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDeleteCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseDeleteCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDeleteCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDeleteCommentType.h deleted file mode 100644 index f99396a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDeleteCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDeleteCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDeleteCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDeleteCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseDeleteCommentType` struct. -/// -@interface DBTEAMLOGShowcaseDeleteCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDeleteCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDeleteCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDeleteCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDeleteCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDeleteCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDeleteCommentType` object. -/// -+ (DBTEAMLOGShowcaseDeleteCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDocumentLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDocumentLogInfo.h deleted file mode 100644 index e93176d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDocumentLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDocumentLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDocumentLogInfo` struct. -/// -/// Showcase document's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDocumentLogInfo : NSObject - -#pragma mark - Instance fields - -/// Showcase document Id. -@property (nonatomic, readonly, copy) NSString *showcaseId; - -/// Showcase document title. -@property (nonatomic, readonly, copy) NSString *showcaseTitle; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param showcaseId Showcase document Id. -/// @param showcaseTitle Showcase document title. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithShowcaseId:(NSString *)showcaseId showcaseTitle:(NSString *)showcaseTitle; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseDocumentLogInfo` struct. -/// -@interface DBTEAMLOGShowcaseDocumentLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDocumentLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDocumentLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDocumentLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDocumentLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDocumentLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDocumentLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDocumentLogInfo` object. -/// -+ (DBTEAMLOGShowcaseDocumentLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDownloadPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDownloadPolicy.h deleted file mode 100644 index f967e662..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseDownloadPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseDownloadPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDownloadPolicy` union. -/// -/// Policy for controlling if files can be downloaded from Showcases by team -/// members -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseDownloadPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGShowcaseDownloadPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGShowcaseDownloadPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGShowcaseDownloadPolicyTag) { - /// (no description). - DBTEAMLOGShowcaseDownloadPolicyDisabled, - - /// (no description). - DBTEAMLOGShowcaseDownloadPolicyEnabled, - - /// (no description). - DBTEAMLOGShowcaseDownloadPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGShowcaseDownloadPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGShowcaseDownloadPolicy` union. -/// -@interface DBTEAMLOGShowcaseDownloadPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseDownloadPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseDownloadPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDownloadPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseDownloadPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseDownloadPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseDownloadPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseDownloadPolicy` object. -/// -+ (DBTEAMLOGShowcaseDownloadPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditCommentDetails.h deleted file mode 100644 index 33e077d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditCommentDetails` struct. -/// -/// Edited showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseEditCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseEditCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditCommentType.h deleted file mode 100644 index 18f81f13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditCommentType` struct. -/// -@interface DBTEAMLOGShowcaseEditCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditCommentType` object. -/// -+ (DBTEAMLOGShowcaseEditCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditedDetails.h deleted file mode 100644 index df7d628c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditedDetails` struct. -/// -/// Edited showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditedDetails` struct. -/// -@interface DBTEAMLOGShowcaseEditedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditedDetails` object. -/// -+ (DBTEAMLOGShowcaseEditedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditedType.h deleted file mode 100644 index 5bbe3eda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEditedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEditedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEditedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEditedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseEditedType` struct. -/// -@interface DBTEAMLOGShowcaseEditedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEditedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEditedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEditedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEditedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEditedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEditedType` object. -/// -+ (DBTEAMLOGShowcaseEditedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEnabledPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEnabledPolicy.h deleted file mode 100644 index 769d62a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseEnabledPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEnabledPolicy` union. -/// -/// Policy for controlling whether Showcase is enabled. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseEnabledPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGShowcaseEnabledPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGShowcaseEnabledPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGShowcaseEnabledPolicyTag) { - /// (no description). - DBTEAMLOGShowcaseEnabledPolicyDisabled, - - /// (no description). - DBTEAMLOGShowcaseEnabledPolicyEnabled, - - /// (no description). - DBTEAMLOGShowcaseEnabledPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGShowcaseEnabledPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGShowcaseEnabledPolicy` union. -/// -@interface DBTEAMLOGShowcaseEnabledPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseEnabledPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseEnabledPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEnabledPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseEnabledPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseEnabledPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseEnabledPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseEnabledPolicy` object. -/// -+ (DBTEAMLOGShowcaseEnabledPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseExternalSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseExternalSharingPolicy.h deleted file mode 100644 index 44649fe0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseExternalSharingPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseExternalSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseExternalSharingPolicy` union. -/// -/// Policy for controlling if team members can share Showcases externally. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseExternalSharingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGShowcaseExternalSharingPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGShowcaseExternalSharingPolicyTag) { - /// (no description). - DBTEAMLOGShowcaseExternalSharingPolicyDisabled, - - /// (no description). - DBTEAMLOGShowcaseExternalSharingPolicyEnabled, - - /// (no description). - DBTEAMLOGShowcaseExternalSharingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGShowcaseExternalSharingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// union. -/// -@interface DBTEAMLOGShowcaseExternalSharingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseExternalSharingPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseExternalSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseExternalSharingPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseExternalSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseExternalSharingPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseExternalSharingPolicy` -/// object. -/// -+ (DBTEAMLOGShowcaseExternalSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileAddedDetails.h deleted file mode 100644 index 6b90f346..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileAddedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileAddedDetails` struct. -/// -/// Added file to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileAddedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileAddedDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileAddedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileAddedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileAddedDetails` object. -/// -+ (DBTEAMLOGShowcaseFileAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileAddedType.h deleted file mode 100644 index e7a24923..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileAddedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileAddedType` struct. -/// -@interface DBTEAMLOGShowcaseFileAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileAddedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileAddedType` object. -/// -+ (DBTEAMLOGShowcaseFileAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileDownloadDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileDownloadDetails.h deleted file mode 100644 index 934ae6fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileDownloadDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileDownloadDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileDownloadDetails` struct. -/// -/// Downloaded file from showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileDownloadDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Showcase download type. -@property (nonatomic, readonly, copy) NSString *downloadType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param downloadType Showcase download type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid downloadType:(NSString *)downloadType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileDownloadDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileDownloadDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileDownloadDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileDownloadDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileDownloadDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileDownloadDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileDownloadDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseFileDownloadDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileDownloadType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileDownloadType.h deleted file mode 100644 index 8998dae5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileDownloadType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileDownloadType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileDownloadType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileDownloadType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileDownloadType` struct. -/// -@interface DBTEAMLOGShowcaseFileDownloadTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileDownloadType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileDownloadType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileDownloadType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileDownloadType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileDownloadType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileDownloadType` object. -/// -+ (DBTEAMLOGShowcaseFileDownloadType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileRemovedDetails.h deleted file mode 100644 index 6cc50fb4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileRemovedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileRemovedDetails` struct. -/// -/// Removed file from showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileRemovedDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileRemovedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileRemovedDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseFileRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileRemovedType.h deleted file mode 100644 index 7442817a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileRemovedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileRemovedType` struct. -/// -@interface DBTEAMLOGShowcaseFileRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileRemovedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileRemovedType` object. -/// -+ (DBTEAMLOGShowcaseFileRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileViewDetails.h deleted file mode 100644 index 1ea3ca93..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileViewDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileViewDetails` struct. -/// -/// Viewed file in showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileViewDetails` struct. -/// -@interface DBTEAMLOGShowcaseFileViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileViewDetails` object. -/// -+ (DBTEAMLOGShowcaseFileViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileViewType.h deleted file mode 100644 index e4f1caf7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseFileViewType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseFileViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseFileViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseFileViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseFileViewType` struct. -/// -@interface DBTEAMLOGShowcaseFileViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseFileViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseFileViewType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseFileViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseFileViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseFileViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseFileViewType` object. -/// -+ (DBTEAMLOGShowcaseFileViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePermanentlyDeletedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePermanentlyDeletedDetails.h deleted file mode 100644 index e7057bb4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePermanentlyDeletedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePermanentlyDeletedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePermanentlyDeletedDetails` struct. -/// -/// Permanently deleted showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePermanentlyDeletedDetails` struct. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePermanentlyDeletedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcasePermanentlyDeletedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePermanentlyDeletedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePermanentlyDeletedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePermanentlyDeletedDetails` -/// object. -/// -+ (DBTEAMLOGShowcasePermanentlyDeletedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePermanentlyDeletedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePermanentlyDeletedType.h deleted file mode 100644 index cee22602..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePermanentlyDeletedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePermanentlyDeletedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePermanentlyDeletedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePermanentlyDeletedType` struct. -/// -@interface DBTEAMLOGShowcasePermanentlyDeletedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePermanentlyDeletedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcasePermanentlyDeletedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePermanentlyDeletedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePermanentlyDeletedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePermanentlyDeletedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePermanentlyDeletedType` -/// object. -/// -+ (DBTEAMLOGShowcasePermanentlyDeletedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePostCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePostCommentDetails.h deleted file mode 100644 index 97a7675a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePostCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePostCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePostCommentDetails` struct. -/// -/// Added showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePostCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePostCommentDetails` struct. -/// -@interface DBTEAMLOGShowcasePostCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePostCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcasePostCommentDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePostCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePostCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePostCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcasePostCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePostCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePostCommentType.h deleted file mode 100644 index a9e20be5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcasePostCommentType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcasePostCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcasePostCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcasePostCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcasePostCommentType` struct. -/// -@interface DBTEAMLOGShowcasePostCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcasePostCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcasePostCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcasePostCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcasePostCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcasePostCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcasePostCommentType` object. -/// -+ (DBTEAMLOGShowcasePostCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRemoveMemberDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRemoveMemberDetails.h deleted file mode 100644 index 3b14eeea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRemoveMemberDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRemoveMemberDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRemoveMemberDetails` struct. -/// -/// Removed member from showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRemoveMemberDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRemoveMemberDetails` struct. -/// -@interface DBTEAMLOGShowcaseRemoveMemberDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRemoveMemberDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRemoveMemberDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRemoveMemberDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRemoveMemberDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRemoveMemberDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseRemoveMemberDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRemoveMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRemoveMemberType.h deleted file mode 100644 index a79d55c9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRemoveMemberType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRemoveMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRemoveMemberType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRemoveMemberType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRemoveMemberType` struct. -/// -@interface DBTEAMLOGShowcaseRemoveMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRemoveMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRemoveMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRemoveMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRemoveMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRemoveMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRemoveMemberType` object. -/// -+ (DBTEAMLOGShowcaseRemoveMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRenamedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRenamedDetails.h deleted file mode 100644 index d63e3d0e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRenamedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRenamedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRenamedDetails` struct. -/// -/// Renamed showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRenamedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRenamedDetails` struct. -/// -@interface DBTEAMLOGShowcaseRenamedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRenamedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRenamedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRenamedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRenamedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRenamedDetails` object. -/// -+ (DBTEAMLOGShowcaseRenamedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRenamedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRenamedType.h deleted file mode 100644 index 1c4bce91..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRenamedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRenamedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRenamedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRenamedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRenamedType` struct. -/// -@interface DBTEAMLOGShowcaseRenamedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRenamedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRenamedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRenamedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRenamedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRenamedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRenamedType` object. -/// -+ (DBTEAMLOGShowcaseRenamedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRequestAccessDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRequestAccessDetails.h deleted file mode 100644 index 1ffb8c94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRequestAccessDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRequestAccessDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRequestAccessDetails` struct. -/// -/// Requested access to showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRequestAccessDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRequestAccessDetails` struct. -/// -@interface DBTEAMLOGShowcaseRequestAccessDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRequestAccessDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRequestAccessDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRequestAccessDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRequestAccessDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRequestAccessDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseRequestAccessDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRequestAccessType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRequestAccessType.h deleted file mode 100644 index 38b26d94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRequestAccessType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRequestAccessType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRequestAccessType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRequestAccessType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRequestAccessType` struct. -/// -@interface DBTEAMLOGShowcaseRequestAccessTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRequestAccessType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRequestAccessType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRequestAccessType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRequestAccessType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRequestAccessType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRequestAccessType` object. -/// -+ (DBTEAMLOGShowcaseRequestAccessType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseResolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseResolveCommentDetails.h deleted file mode 100644 index 7fce124f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseResolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseResolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseResolveCommentDetails` struct. -/// -/// Resolved showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseResolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseResolveCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseResolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseResolveCommentDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseResolveCommentDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseResolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseResolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseResolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseResolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseResolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseResolveCommentType.h deleted file mode 100644 index 8cc4caaf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseResolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseResolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseResolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseResolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseResolveCommentType` struct. -/// -@interface DBTEAMLOGShowcaseResolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseResolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseResolveCommentType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseResolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseResolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseResolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseResolveCommentType` -/// object. -/// -+ (DBTEAMLOGShowcaseResolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRestoredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRestoredDetails.h deleted file mode 100644 index d0e3653b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRestoredDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRestoredDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRestoredDetails` struct. -/// -/// Unarchived showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRestoredDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRestoredDetails` struct. -/// -@interface DBTEAMLOGShowcaseRestoredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRestoredDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRestoredDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRestoredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRestoredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRestoredDetails` object. -/// -+ (DBTEAMLOGShowcaseRestoredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRestoredType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRestoredType.h deleted file mode 100644 index 7ec20c65..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseRestoredType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseRestoredType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseRestoredType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseRestoredType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseRestoredType` struct. -/// -@interface DBTEAMLOGShowcaseRestoredTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseRestoredType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseRestoredType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseRestoredType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseRestoredType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseRestoredType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseRestoredType` object. -/// -+ (DBTEAMLOGShowcaseRestoredType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDeprecatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDeprecatedDetails.h deleted file mode 100644 index 912b7b93..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDeprecatedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedDeprecatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedDeprecatedDetails` struct. -/// -/// Deleted showcase (old version). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedDeprecatedDetails` struct. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedDeprecatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedDeprecatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedDeprecatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedDeprecatedDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseTrashedDeprecatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDeprecatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDeprecatedType.h deleted file mode 100644 index e1802da8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDeprecatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedDeprecatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedDeprecatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedDeprecatedType` struct. -/// -@interface DBTEAMLOGShowcaseTrashedDeprecatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedDeprecatedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseTrashedDeprecatedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedDeprecatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedDeprecatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDeprecatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedDeprecatedType` -/// object. -/// -+ (DBTEAMLOGShowcaseTrashedDeprecatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDetails.h deleted file mode 100644 index e3f91eff..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedDetails` struct. -/// -/// Deleted showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedDetails` struct. -/// -@interface DBTEAMLOGShowcaseTrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseTrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedDetails` object. -/// -+ (DBTEAMLOGShowcaseTrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedType.h deleted file mode 100644 index 07d6b263..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseTrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseTrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseTrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseTrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseTrashedType` struct. -/// -@interface DBTEAMLOGShowcaseTrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseTrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseTrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseTrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseTrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseTrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseTrashedType` object. -/// -+ (DBTEAMLOGShowcaseTrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUnresolveCommentDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUnresolveCommentDetails.h deleted file mode 100644 index 7356f5f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUnresolveCommentDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUnresolveCommentDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUnresolveCommentDetails` struct. -/// -/// Unresolved showcase comment. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -/// Comment text. -@property (nonatomic, readonly, copy, nullable) NSString *commentText; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// @param commentText Comment text. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid commentText:(nullable NSString *)commentText; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUnresolveCommentDetails` struct. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUnresolveCommentDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseUnresolveCommentDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUnresolveCommentDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUnresolveCommentDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUnresolveCommentDetails` -/// object. -/// -+ (DBTEAMLOGShowcaseUnresolveCommentDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUnresolveCommentType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUnresolveCommentType.h deleted file mode 100644 index 0dfeae50..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUnresolveCommentType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUnresolveCommentType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUnresolveCommentType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUnresolveCommentType` struct. -/// -@interface DBTEAMLOGShowcaseUnresolveCommentTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUnresolveCommentType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseUnresolveCommentType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUnresolveCommentType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUnresolveCommentType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUnresolveCommentType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUnresolveCommentType` -/// object. -/// -+ (DBTEAMLOGShowcaseUnresolveCommentType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h deleted file mode 100644 index 3101ec55..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedDeprecatedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedDeprecatedDetails` struct. -/// -/// Restored showcase (old version). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedDeprecatedDetails` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedDeprecatedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedDetails` object. -/// -+ (DBTEAMLOGShowcaseUntrashedDeprecatedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedType.h deleted file mode 100644 index d442ab23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDeprecatedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedDeprecatedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedDeprecatedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedDeprecatedType` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedDeprecatedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedDeprecatedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedDeprecatedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedDeprecatedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDeprecatedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUntrashedDeprecatedType` -/// object. -/// -+ (DBTEAMLOGShowcaseUntrashedDeprecatedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDetails.h deleted file mode 100644 index 848cca3f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedDetails` struct. -/// -/// Restored showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedDetails` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseUntrashedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUntrashedDetails` object. -/// -+ (DBTEAMLOGShowcaseUntrashedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedType.h deleted file mode 100644 index e1883694..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseUntrashedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseUntrashedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseUntrashedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseUntrashedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseUntrashedType` struct. -/// -@interface DBTEAMLOGShowcaseUntrashedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseUntrashedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseUntrashedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseUntrashedType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseUntrashedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseUntrashedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseUntrashedType` object. -/// -+ (DBTEAMLOGShowcaseUntrashedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseViewDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseViewDetails.h deleted file mode 100644 index e52d3ece..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseViewDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseViewDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseViewDetails` struct. -/// -/// Viewed showcase. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseViewDetails : NSObject - -#pragma mark - Instance fields - -/// Event unique identifier. -@property (nonatomic, readonly, copy) NSString *eventUuid; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param eventUuid Event unique identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEventUuid:(NSString *)eventUuid; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseViewDetails` struct. -/// -@interface DBTEAMLOGShowcaseViewDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseViewDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseViewDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseViewDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseViewDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseViewDetails` object. -/// -+ (DBTEAMLOGShowcaseViewDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseViewType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseViewType.h deleted file mode 100644 index 6790faf8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGShowcaseViewType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGShowcaseViewType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseViewType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGShowcaseViewType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ShowcaseViewType` struct. -/// -@interface DBTEAMLOGShowcaseViewTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGShowcaseViewType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGShowcaseViewType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGShowcaseViewType *)instance; - -/// -/// Deserializes `DBTEAMLOGShowcaseViewType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGShowcaseViewType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGShowcaseViewType` object. -/// -+ (DBTEAMLOGShowcaseViewType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionEndDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionEndDetails.h deleted file mode 100644 index 0460a5c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionEndDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionEndDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionEndDetails` struct. -/// -/// Ended admin sign-in-as session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionEndDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionEndDetails` struct. -/// -@interface DBTEAMLOGSignInAsSessionEndDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionEndDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionEndDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionEndDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionEndDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionEndDetails` object. -/// -+ (DBTEAMLOGSignInAsSessionEndDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionEndType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionEndType.h deleted file mode 100644 index d630e539..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionEndType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionEndType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionEndType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionEndType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionEndType` struct. -/// -@interface DBTEAMLOGSignInAsSessionEndTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionEndType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionEndType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionEndType *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionEndType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionEndType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionEndType` object. -/// -+ (DBTEAMLOGSignInAsSessionEndType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionStartDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionStartDetails.h deleted file mode 100644 index 449bf946..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionStartDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionStartDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionStartDetails` struct. -/// -/// Started admin sign-in-as session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionStartDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionStartDetails` struct. -/// -@interface DBTEAMLOGSignInAsSessionStartDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionStartDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionStartDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionStartDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionStartDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionStartDetails` -/// object. -/// -+ (DBTEAMLOGSignInAsSessionStartDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionStartType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionStartType.h deleted file mode 100644 index 28674a3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSignInAsSessionStartType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSignInAsSessionStartType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SignInAsSessionStartType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSignInAsSessionStartType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SignInAsSessionStartType` struct. -/// -@interface DBTEAMLOGSignInAsSessionStartTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSignInAsSessionStartType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSignInAsSessionStartType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSignInAsSessionStartType *)instance; - -/// -/// Deserializes `DBTEAMLOGSignInAsSessionStartType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSignInAsSessionStartType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSignInAsSessionStartType` object. -/// -+ (DBTEAMLOGSignInAsSessionStartType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncChangePolicyDetails.h deleted file mode 100644 index 8f64b02b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncChangePolicyDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncChangePolicyDetails; -@class DBTEAMPOLICIESSmartSyncPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncChangePolicyDetails` struct. -/// -/// Changed default Smart Sync setting for team members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New smart sync policy. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESSmartSyncPolicy *dNewValue; - -/// Previous smart sync policy. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESSmartSyncPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New smart sync policy. -/// @param previousValue Previous smart sync policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMPOLICIESSmartSyncPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESSmartSyncPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncChangePolicyDetails` struct. -/// -@interface DBTEAMLOGSmartSyncChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncChangePolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGSmartSyncChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncChangePolicyType.h deleted file mode 100644 index 986716dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncChangePolicyType` struct. -/// -@interface DBTEAMLOGSmartSyncChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncChangePolicyType` object. -/// -+ (DBTEAMLOGSmartSyncChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h deleted file mode 100644 index ab14ec43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncCreateAdminPrivilegeReportDetails` struct. -/// -/// Created Smart Sync non-admin devices report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncCreateAdminPrivilegeReportDetails` -/// struct. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails` object. -/// -+ (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h deleted file mode 100644 index cb44c221..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncCreateAdminPrivilegeReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncCreateAdminPrivilegeReportType` -/// struct. -/// -@interface DBTEAMLOGSmartSyncCreateAdminPrivilegeReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType` object. -/// -+ (DBTEAMLOGSmartSyncCreateAdminPrivilegeReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncNotOptOutDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncNotOptOutDetails.h deleted file mode 100644 index 28519a69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncNotOptOutDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncNotOptOutDetails; -@class DBTEAMLOGSmartSyncOptOutPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncNotOptOutDetails` struct. -/// -/// Opted team into Smart Sync. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncNotOptOutDetails : NSObject - -#pragma mark - Instance fields - -/// Previous Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *previousValue; - -/// New Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous Smart Sync opt out policy. -/// @param dNewValue New Smart Sync opt out policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSmartSyncOptOutPolicy *)previousValue - dNewValue:(DBTEAMLOGSmartSyncOptOutPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncNotOptOutDetails` struct. -/// -@interface DBTEAMLOGSmartSyncNotOptOutDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncNotOptOutDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncNotOptOutDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncNotOptOutDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncNotOptOutDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncNotOptOutDetails` object. -/// -+ (DBTEAMLOGSmartSyncNotOptOutDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncNotOptOutType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncNotOptOutType.h deleted file mode 100644 index ca2d47e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncNotOptOutType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncNotOptOutType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncNotOptOutType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncNotOptOutType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncNotOptOutType` struct. -/// -@interface DBTEAMLOGSmartSyncNotOptOutTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncNotOptOutType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncNotOptOutType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncNotOptOutType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncNotOptOutType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncNotOptOutType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncNotOptOutType` object. -/// -+ (DBTEAMLOGSmartSyncNotOptOutType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutDetails.h deleted file mode 100644 index caf0c935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncOptOutDetails; -@class DBTEAMLOGSmartSyncOptOutPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncOptOutDetails` struct. -/// -/// Opted team out of Smart Sync. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncOptOutDetails : NSObject - -#pragma mark - Instance fields - -/// Previous Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *previousValue; - -/// New Smart Sync opt out policy. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous Smart Sync opt out policy. -/// @param dNewValue New Smart Sync opt out policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGSmartSyncOptOutPolicy *)previousValue - dNewValue:(DBTEAMLOGSmartSyncOptOutPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncOptOutDetails` struct. -/// -@interface DBTEAMLOGSmartSyncOptOutDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncOptOutDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncOptOutDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncOptOutDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncOptOutDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncOptOutDetails` object. -/// -+ (DBTEAMLOGSmartSyncOptOutDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutPolicy.h deleted file mode 100644 index 1b35bab0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncOptOutPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncOptOutPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncOptOutPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSmartSyncOptOutPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGSmartSyncOptOutPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSmartSyncOptOutPolicyTag) { - /// (no description). - DBTEAMLOGSmartSyncOptOutPolicyDefault_, - - /// (no description). - DBTEAMLOGSmartSyncOptOutPolicyOptedOut, - - /// (no description). - DBTEAMLOGSmartSyncOptOutPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSmartSyncOptOutPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "opted_out". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptedOut; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "opted_out". -/// -/// @return Whether the union's current tag state has value "opted_out". -/// -- (BOOL)isOptedOut; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSmartSyncOptOutPolicy` union. -/// -@interface DBTEAMLOGSmartSyncOptOutPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncOptOutPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncOptOutPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncOptOutPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncOptOutPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncOptOutPolicy` object. -/// -+ (DBTEAMLOGSmartSyncOptOutPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutType.h deleted file mode 100644 index 5198093f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmartSyncOptOutType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmartSyncOptOutType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncOptOutType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmartSyncOptOutType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmartSyncOptOutType` struct. -/// -@interface DBTEAMLOGSmartSyncOptOutTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmartSyncOptOutType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSmartSyncOptOutType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmartSyncOptOutType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmartSyncOptOutType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmartSyncOptOutType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmartSyncOptOutType` object. -/// -+ (DBTEAMLOGSmartSyncOptOutType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h deleted file mode 100644 index f3b31b54..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmarterSmartSyncPolicyChangedDetails; -@class DBTEAMPOLICIESSmarterSmartSyncPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmarterSmartSyncPolicyChangedDetails` struct. -/// -/// Changed automatic Smart Sync setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous automatic Smart Sync setting. -@property (nonatomic, readonly) DBTEAMPOLICIESSmarterSmartSyncPolicyState *previousValue; - -/// New automatic Smart Sync setting. -@property (nonatomic, readonly) DBTEAMPOLICIESSmarterSmartSyncPolicyState *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous automatic Smart Sync setting. -/// @param dNewValue New automatic Smart Sync setting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMPOLICIESSmarterSmartSyncPolicyState *)previousValue - dNewValue:(DBTEAMPOLICIESSmarterSmartSyncPolicyState *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmarterSmartSyncPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedDetails` object. -/// -+ (DBTEAMLOGSmarterSmartSyncPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedType.h deleted file mode 100644 index e58bc0cd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSmarterSmartSyncPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSmarterSmartSyncPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmarterSmartSyncPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SmarterSmartSyncPolicyChangedType` struct. -/// -@interface DBTEAMLOGSmarterSmartSyncPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSmarterSmartSyncPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSmarterSmartSyncPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGSmarterSmartSyncPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSmarterSmartSyncPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSmarterSmartSyncPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGSmarterSmartSyncPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSpaceCapsType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSpaceCapsType.h deleted file mode 100644 index 22931438..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSpaceCapsType.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSpaceCapsType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceCapsType` union. -/// -/// Space limit alert policy -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSpaceCapsType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSpaceCapsTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMLOGSpaceCapsType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSpaceCapsTypeTag) { - /// (no description). - DBTEAMLOGSpaceCapsTypeHard, - - /// (no description). - DBTEAMLOGSpaceCapsTypeOff, - - /// (no description). - DBTEAMLOGSpaceCapsTypeSoft, - - /// (no description). - DBTEAMLOGSpaceCapsTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSpaceCapsTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "hard". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHard; - -/// -/// Initializes union class with tag state of "off". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOff; - -/// -/// Initializes union class with tag state of "soft". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSoft; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "hard". -/// -/// @return Whether the union's current tag state has value "hard". -/// -- (BOOL)isHard; - -/// -/// Retrieves whether the union's current tag state has value "off". -/// -/// @return Whether the union's current tag state has value "off". -/// -- (BOOL)isOff; - -/// -/// Retrieves whether the union's current tag state has value "soft". -/// -/// @return Whether the union's current tag state has value "soft". -/// -- (BOOL)isSoft; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSpaceCapsType` union. -/// -@interface DBTEAMLOGSpaceCapsTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSpaceCapsType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSpaceCapsType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceCapsType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSpaceCapsType *)instance; - -/// -/// Deserializes `DBTEAMLOGSpaceCapsType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceCapsType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSpaceCapsType` object. -/// -+ (DBTEAMLOGSpaceCapsType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSpaceLimitsStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSpaceLimitsStatus.h deleted file mode 100644 index caf55dc1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSpaceLimitsStatus.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSpaceLimitsStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceLimitsStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSpaceLimitsStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGSpaceLimitsStatusTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGSpaceLimitsStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGSpaceLimitsStatusTag) { - /// (no description). - DBTEAMLOGSpaceLimitsStatusNearQuota, - - /// (no description). - DBTEAMLOGSpaceLimitsStatusOverQuota, - - /// (no description). - DBTEAMLOGSpaceLimitsStatusWithinQuota, - - /// (no description). - DBTEAMLOGSpaceLimitsStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGSpaceLimitsStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "near_quota". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNearQuota; - -/// -/// Initializes union class with tag state of "over_quota". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOverQuota; - -/// -/// Initializes union class with tag state of "within_quota". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWithinQuota; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "near_quota". -/// -/// @return Whether the union's current tag state has value "near_quota". -/// -- (BOOL)isNearQuota; - -/// -/// Retrieves whether the union's current tag state has value "over_quota". -/// -/// @return Whether the union's current tag state has value "over_quota". -/// -- (BOOL)isOverQuota; - -/// -/// Retrieves whether the union's current tag state has value "within_quota". -/// -/// @return Whether the union's current tag state has value "within_quota". -/// -- (BOOL)isWithinQuota; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGSpaceLimitsStatus` union. -/// -@interface DBTEAMLOGSpaceLimitsStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSpaceLimitsStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSpaceLimitsStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceLimitsStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSpaceLimitsStatus *)instance; - -/// -/// Deserializes `DBTEAMLOGSpaceLimitsStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSpaceLimitsStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSpaceLimitsStatus` object. -/// -+ (DBTEAMLOGSpaceLimitsStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddCertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddCertDetails.h deleted file mode 100644 index 3abdbde5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddCertDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCertificate; -@class DBTEAMLOGSsoAddCertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddCertDetails` struct. -/// -/// Added X.509 certificate for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddCertDetails : NSObject - -#pragma mark - Instance fields - -/// SSO certificate details. -@property (nonatomic, readonly) DBTEAMLOGCertificate *certificateDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param certificateDetails SSO certificate details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCertificateDetails:(DBTEAMLOGCertificate *)certificateDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddCertDetails` struct. -/// -@interface DBTEAMLOGSsoAddCertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddCertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddCertDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddCertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddCertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddCertDetails` object. -/// -+ (DBTEAMLOGSsoAddCertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddCertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddCertType.h deleted file mode 100644 index c7a9508b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddCertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddCertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddCertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddCertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddCertType` struct. -/// -@interface DBTEAMLOGSsoAddCertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddCertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddCertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddCertType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddCertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddCertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddCertType` object. -/// -+ (DBTEAMLOGSsoAddCertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLoginUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLoginUrlDetails.h deleted file mode 100644 index ee96743a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLoginUrlDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLoginUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLoginUrlDetails` struct. -/// -/// Added sign-in URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLoginUrlDetails : NSObject - -#pragma mark - Instance fields - -/// New single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New single sign-on login URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLoginUrlDetails` struct. -/// -@interface DBTEAMLOGSsoAddLoginUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLoginUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLoginUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLoginUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLoginUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLoginUrlDetails` object. -/// -+ (DBTEAMLOGSsoAddLoginUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLoginUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLoginUrlType.h deleted file mode 100644 index 29834043..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLoginUrlType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLoginUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLoginUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLoginUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLoginUrlType` struct. -/// -@interface DBTEAMLOGSsoAddLoginUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLoginUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLoginUrlType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLoginUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLoginUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLoginUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLoginUrlType` object. -/// -+ (DBTEAMLOGSsoAddLoginUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLogoutUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLogoutUrlDetails.h deleted file mode 100644 index 9e9ce912..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLogoutUrlDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLogoutUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLogoutUrlDetails` struct. -/// -/// Added sign-out URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLogoutUrlDetails : NSObject - -#pragma mark - Instance fields - -/// New single sign-on logout URL. -@property (nonatomic, readonly, copy, nullable) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New single sign-on logout URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable NSString *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLogoutUrlDetails` struct. -/// -@interface DBTEAMLOGSsoAddLogoutUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLogoutUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLogoutUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLogoutUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLogoutUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLogoutUrlDetails` object. -/// -+ (DBTEAMLOGSsoAddLogoutUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLogoutUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLogoutUrlType.h deleted file mode 100644 index 5f0cca93..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoAddLogoutUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoAddLogoutUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoAddLogoutUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoAddLogoutUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoAddLogoutUrlType` struct. -/// -@interface DBTEAMLOGSsoAddLogoutUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoAddLogoutUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoAddLogoutUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoAddLogoutUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoAddLogoutUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoAddLogoutUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoAddLogoutUrlType` object. -/// -+ (DBTEAMLOGSsoAddLogoutUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeCertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeCertDetails.h deleted file mode 100644 index 1b7399ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeCertDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGCertificate; -@class DBTEAMLOGSsoChangeCertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeCertDetails` struct. -/// -/// Changed X.509 certificate for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeCertDetails : NSObject - -#pragma mark - Instance fields - -/// Previous SSO certificate details. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGCertificate *previousCertificateDetails; - -/// New SSO certificate details. -@property (nonatomic, readonly) DBTEAMLOGCertificate *dNewCertificateDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewCertificateDetails New SSO certificate details. -/// @param previousCertificateDetails Previous SSO certificate details. Might be -/// missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewCertificateDetails:(DBTEAMLOGCertificate *)dNewCertificateDetails - previousCertificateDetails:(nullable DBTEAMLOGCertificate *)previousCertificateDetails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewCertificateDetails New SSO certificate details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewCertificateDetails:(DBTEAMLOGCertificate *)dNewCertificateDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeCertDetails` struct. -/// -@interface DBTEAMLOGSsoChangeCertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeCertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeCertDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeCertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeCertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeCertDetails` object. -/// -+ (DBTEAMLOGSsoChangeCertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeCertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeCertType.h deleted file mode 100644 index e8734ca5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeCertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeCertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeCertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeCertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeCertType` struct. -/// -@interface DBTEAMLOGSsoChangeCertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeCertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeCertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeCertType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeCertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeCertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeCertType` object. -/// -+ (DBTEAMLOGSsoChangeCertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLoginUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLoginUrlDetails.h deleted file mode 100644 index c211e1e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLoginUrlDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLoginUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLoginUrlDetails` struct. -/// -/// Changed sign-in URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLoginUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on login URL. -/// @param dNewValue New single sign-on login URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLoginUrlDetails` struct. -/// -@interface DBTEAMLOGSsoChangeLoginUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLoginUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLoginUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLoginUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLoginUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLoginUrlDetails` object. -/// -+ (DBTEAMLOGSsoChangeLoginUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLoginUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLoginUrlType.h deleted file mode 100644 index 52210da5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLoginUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLoginUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLoginUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLoginUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLoginUrlType` struct. -/// -@interface DBTEAMLOGSsoChangeLoginUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLoginUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLoginUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLoginUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLoginUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLoginUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLoginUrlType` object. -/// -+ (DBTEAMLOGSsoChangeLoginUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLogoutUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLogoutUrlDetails.h deleted file mode 100644 index 083498ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLogoutUrlDetails.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLogoutUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLogoutUrlDetails` struct. -/// -/// Changed sign-out URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on logout URL. Might be missing due to historical data -/// gap. -@property (nonatomic, readonly, copy, nullable) NSString *previousValue; - -/// New single sign-on logout URL. -@property (nonatomic, readonly, copy, nullable) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on logout URL. Might be missing -/// due to historical data gap. -/// @param dNewValue New single sign-on logout URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(nullable NSString *)previousValue dNewValue:(nullable NSString *)dNewValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLogoutUrlDetails` struct. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLogoutUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLogoutUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLogoutUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLogoutUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLogoutUrlDetails` object. -/// -+ (DBTEAMLOGSsoChangeLogoutUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLogoutUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLogoutUrlType.h deleted file mode 100644 index 7af825ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeLogoutUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeLogoutUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeLogoutUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeLogoutUrlType` struct. -/// -@interface DBTEAMLOGSsoChangeLogoutUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeLogoutUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeLogoutUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeLogoutUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeLogoutUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeLogoutUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeLogoutUrlType` object. -/// -+ (DBTEAMLOGSsoChangeLogoutUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangePolicyDetails.h deleted file mode 100644 index c5c427d4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangePolicyDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangePolicyDetails; -@class DBTEAMPOLICIESSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangePolicyDetails` struct. -/// -/// Changed single sign-on setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New single sign-on policy. -@property (nonatomic, readonly) DBTEAMPOLICIESSsoPolicy *dNewValue; - -/// Previous single sign-on policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESSsoPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New single sign-on policy. -/// @param previousValue Previous single sign-on policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESSsoPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESSsoPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New single sign-on policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESSsoPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangePolicyDetails` struct. -/// -@interface DBTEAMLOGSsoChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangePolicyDetails` object. -/// -+ (DBTEAMLOGSsoChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangePolicyType.h deleted file mode 100644 index 51940275..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangePolicyType` struct. -/// -@interface DBTEAMLOGSsoChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangePolicyType` object. -/// -+ (DBTEAMLOGSsoChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeSamlIdentityModeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeSamlIdentityModeDetails.h deleted file mode 100644 index c1316648..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeSamlIdentityModeDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeSamlIdentityModeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeSamlIdentityModeDetails` struct. -/// -/// Changed SAML identity mode for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on identity mode. -@property (nonatomic, readonly) NSNumber *previousValue; - -/// New single sign-on identity mode. -@property (nonatomic, readonly) NSNumber *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on identity mode. -/// @param dNewValue New single sign-on identity mode. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSNumber *)previousValue dNewValue:(NSNumber *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeSamlIdentityModeDetails` struct. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeSamlIdentityModeDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeSamlIdentityModeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeSamlIdentityModeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeSamlIdentityModeDetails` -/// object. -/// -+ (DBTEAMLOGSsoChangeSamlIdentityModeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeSamlIdentityModeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeSamlIdentityModeType.h deleted file mode 100644 index 5112d891..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoChangeSamlIdentityModeType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoChangeSamlIdentityModeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoChangeSamlIdentityModeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoChangeSamlIdentityModeType` struct. -/// -@interface DBTEAMLOGSsoChangeSamlIdentityModeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoChangeSamlIdentityModeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoChangeSamlIdentityModeType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoChangeSamlIdentityModeType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoChangeSamlIdentityModeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoChangeSamlIdentityModeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoChangeSamlIdentityModeType` -/// object. -/// -+ (DBTEAMLOGSsoChangeSamlIdentityModeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoErrorDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoErrorDetails.h deleted file mode 100644 index 68d0c9b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoErrorDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFailureDetailsLogInfo; -@class DBTEAMLOGSsoErrorDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoErrorDetails` struct. -/// -/// Failed to sign in via SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoErrorDetails : NSObject - -#pragma mark - Instance fields - -/// Error details. -@property (nonatomic, readonly) DBTEAMLOGFailureDetailsLogInfo *errorDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param errorDetails Error details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithErrorDetails:(DBTEAMLOGFailureDetailsLogInfo *)errorDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoErrorDetails` struct. -/// -@interface DBTEAMLOGSsoErrorDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoErrorDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoErrorDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoErrorDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoErrorDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoErrorDetails` object. -/// -+ (DBTEAMLOGSsoErrorDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoErrorType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoErrorType.h deleted file mode 100644 index 1c98894b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoErrorType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoErrorType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoErrorType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoErrorType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoErrorType` struct. -/// -@interface DBTEAMLOGSsoErrorTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoErrorType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoErrorType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoErrorType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoErrorType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoErrorType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoErrorType` object. -/// -+ (DBTEAMLOGSsoErrorType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveCertDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveCertDetails.h deleted file mode 100644 index 19ac7b78..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveCertDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveCertDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveCertDetails` struct. -/// -/// Removed X.509 certificate for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveCertDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveCertDetails` struct. -/// -@interface DBTEAMLOGSsoRemoveCertDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveCertDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveCertDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveCertDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveCertDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveCertDetails` object. -/// -+ (DBTEAMLOGSsoRemoveCertDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveCertType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveCertType.h deleted file mode 100644 index 0b8dc6d3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveCertType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveCertType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveCertType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveCertType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveCertType` struct. -/// -@interface DBTEAMLOGSsoRemoveCertTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveCertType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveCertType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveCertType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveCertType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveCertType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveCertType` object. -/// -+ (DBTEAMLOGSsoRemoveCertType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLoginUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLoginUrlDetails.h deleted file mode 100644 index 68f10862..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLoginUrlDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLoginUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLoginUrlDetails` struct. -/// -/// Removed sign-in URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on login URL. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on login URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLoginUrlDetails` struct. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLoginUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLoginUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLoginUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLoginUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLoginUrlDetails` object. -/// -+ (DBTEAMLOGSsoRemoveLoginUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLoginUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLoginUrlType.h deleted file mode 100644 index e3d218e6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLoginUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLoginUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLoginUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLoginUrlType` struct. -/// -@interface DBTEAMLOGSsoRemoveLoginUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLoginUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLoginUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLoginUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLoginUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLoginUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLoginUrlType` object. -/// -+ (DBTEAMLOGSsoRemoveLoginUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLogoutUrlDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLogoutUrlDetails.h deleted file mode 100644 index c016f4dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLogoutUrlDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLogoutUrlDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLogoutUrlDetails` struct. -/// -/// Removed sign-out URL for SSO. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlDetails : NSObject - -#pragma mark - Instance fields - -/// Previous single sign-on logout URL. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous single sign-on logout URL. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLogoutUrlDetails` struct. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLogoutUrlDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLogoutUrlDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLogoutUrlDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLogoutUrlDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLogoutUrlDetails` object. -/// -+ (DBTEAMLOGSsoRemoveLogoutUrlDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLogoutUrlType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLogoutUrlType.h deleted file mode 100644 index ab4817e1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGSsoRemoveLogoutUrlType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGSsoRemoveLogoutUrlType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoRemoveLogoutUrlType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SsoRemoveLogoutUrlType` struct. -/// -@interface DBTEAMLOGSsoRemoveLogoutUrlTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGSsoRemoveLogoutUrlType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGSsoRemoveLogoutUrlType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGSsoRemoveLogoutUrlType *)instance; - -/// -/// Deserializes `DBTEAMLOGSsoRemoveLogoutUrlType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGSsoRemoveLogoutUrlType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGSsoRemoveLogoutUrlType` object. -/// -+ (DBTEAMLOGSsoRemoveLogoutUrlType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGStartedEnterpriseAdminSessionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGStartedEnterpriseAdminSessionDetails.h deleted file mode 100644 index 30ec2fbd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGStartedEnterpriseAdminSessionDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGFedExtraDetails; -@class DBTEAMLOGStartedEnterpriseAdminSessionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `StartedEnterpriseAdminSessionDetails` struct. -/// -/// Started enterprise admin session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionDetails : NSObject - -#pragma mark - Instance fields - -/// More information about the organization or team. -@property (nonatomic, readonly) DBTEAMLOGFedExtraDetails *federationExtraDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param federationExtraDetails More information about the organization or -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFederationExtraDetails:(DBTEAMLOGFedExtraDetails *)federationExtraDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `StartedEnterpriseAdminSessionDetails` -/// struct. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGStartedEnterpriseAdminSessionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGStartedEnterpriseAdminSessionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGStartedEnterpriseAdminSessionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionDetails` object. -/// -+ (DBTEAMLOGStartedEnterpriseAdminSessionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGStartedEnterpriseAdminSessionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGStartedEnterpriseAdminSessionType.h deleted file mode 100644 index b2ebddda..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGStartedEnterpriseAdminSessionType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGStartedEnterpriseAdminSessionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `StartedEnterpriseAdminSessionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `StartedEnterpriseAdminSessionType` struct. -/// -@interface DBTEAMLOGStartedEnterpriseAdminSessionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGStartedEnterpriseAdminSessionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGStartedEnterpriseAdminSessionType *)instance; - -/// -/// Deserializes `DBTEAMLOGStartedEnterpriseAdminSessionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGStartedEnterpriseAdminSessionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGStartedEnterpriseAdminSessionType` -/// object. -/// -+ (DBTEAMLOGStartedEnterpriseAdminSessionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportDetails.h deleted file mode 100644 index e10494e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportDetails` struct. -/// -/// Created team activity report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportDetails : NSObject - -#pragma mark - Instance fields - -/// Report start date. -@property (nonatomic, readonly) NSDate *startDate; - -/// Report end date. -@property (nonatomic, readonly) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param startDate Report start date. -/// @param endDate Report end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDate:(NSDate *)startDate endDate:(NSDate *)endDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportDetails` struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamActivityCreateReportDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamActivityCreateReportDetails` -/// object. -/// -+ (DBTEAMLOGTeamActivityCreateReportDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportFailDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportFailDetails.h deleted file mode 100644 index 13af9952..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportFailDetails.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportFailDetails; -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportFailDetails` struct. -/// -/// Couldn't generate team activity report. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailDetails : NSObject - -#pragma mark - Instance fields - -/// Failure reason. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReason *failureReason; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param failureReason Failure reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailureReason:(DBTEAMTeamReportFailureReason *)failureReason; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportFailDetails` -/// struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportFailDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportFailDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportFailDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamActivityCreateReportFailDetails` object. -/// -+ (DBTEAMLOGTeamActivityCreateReportFailDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportFailType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportFailType.h deleted file mode 100644 index a68855a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportFailType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportFailType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportFailType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportFailType` struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportFailTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportFailType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamActivityCreateReportFailType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportFailType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportFailType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportFailType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamActivityCreateReportFailType` -/// object. -/// -+ (DBTEAMLOGTeamActivityCreateReportFailType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportType.h deleted file mode 100644 index 2ad7f31b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamActivityCreateReportType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamActivityCreateReportType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamActivityCreateReportType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamActivityCreateReportType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamActivityCreateReportType` struct. -/// -@interface DBTEAMLOGTeamActivityCreateReportTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamActivityCreateReportType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamActivityCreateReportType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamActivityCreateReportType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamActivityCreateReportType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamActivityCreateReportType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamActivityCreateReportType` -/// object. -/// -+ (DBTEAMLOGTeamActivityCreateReportType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamAuthRoutes.h deleted file mode 100644 index 73153e48..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamAuthRoutes.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBNilObject; -@class DBTEAMCOMMONTimeRange; -@class DBTEAMLOGEventCategory; -@class DBTEAMLOGEventTypeArg; -@class DBTEAMLOGGetTeamEventsContinueError; -@class DBTEAMLOGGetTeamEventsError; -@class DBTEAMLOGGetTeamEventsResult; -@class DBTEAMLOGTeamEvent; - -@protocol DBTransportClient; - -/// -/// Routes for the `TeamLog` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBTEAMLOGTeamAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBTEAMLOGTeamAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Retrieves team events. If the result's `hasMore` in `DBTEAMLOGGetTeamEventsResult` field is true, call -/// `getEventsContinue` with the returned cursor to retrieve more entries. If end_time is not specified in your request, -/// you may use the returned cursor to poll `getEventsContinue` for new events. Many attributes note 'may be missing due -/// to historical data gap'. Note that the file_operations category and & analogous paper events are not available on -/// all Dropbox Business plans /business/plans-comparison. Use features/get_values -/// /developers/documentation/http/teams#team-features-get_values to check for this feature. Permission : Team Auditing. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLOGGetTeamEventsResult` object on success or -/// a `DBTEAMLOGGetTeamEventsError` object on failure. -/// -- (DBRpcTask *)getEvents; - -/// -/// Retrieves team events. If the result's `hasMore` in `DBTEAMLOGGetTeamEventsResult` field is true, call -/// `getEventsContinue` with the returned cursor to retrieve more entries. If end_time is not specified in your request, -/// you may use the returned cursor to poll `getEventsContinue` for new events. Many attributes note 'may be missing due -/// to historical data gap'. Note that the file_operations category and & analogous paper events are not available on -/// all Dropbox Business plans /business/plans-comparison. Use features/get_values -/// /developers/documentation/http/teams#team-features-get_values to check for this feature. Permission : Team Auditing. -/// -/// @param limit The maximal number of results to return per call. Note that some calls may not return limit number of -/// events, and may even return no events, even with `has_more` set to true. In this case, callers should fetch again -/// using `getEventsContinue`. -/// @param accountId Filter the events by account ID. Return only events with this account_id as either Actor, Context, -/// or Participants. -/// @param time Filter by time range. -/// @param category Filter the returned events to a single category. Note that category shouldn't be provided together -/// with event_type. -/// @param eventType Filter the returned events to a single event type. Note that event_type shouldn't be provided -/// together with category. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLOGGetTeamEventsResult` object on success or -/// a `DBTEAMLOGGetTeamEventsError` object on failure. -/// -- (DBRpcTask *) - getEvents:(nullable NSNumber *)limit - accountId:(nullable NSString *)accountId - time:(nullable DBTEAMCOMMONTimeRange *)time - category:(nullable DBTEAMLOGEventCategory *)category - eventType:(nullable DBTEAMLOGEventTypeArg *)eventType; - -/// -/// Once a cursor has been retrieved from `getEvents`, use this to paginate through all events. Permission : Team -/// Auditing. -/// -/// @param cursor Indicates from what point to get the next set of events. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLOGGetTeamEventsResult` object on success or -/// a `DBTEAMLOGGetTeamEventsContinueError` object on failure. -/// -- (DBRpcTask *)getEventsContinue: - (NSString *)cursor; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicy.h deleted file mode 100644 index 968874af..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamBrandingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamBrandingPolicy` union. -/// -/// Policy for controlling team access to setting up branding feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamBrandingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamBrandingPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTeamBrandingPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamBrandingPolicyTag) { - /// (no description). - DBTEAMLOGTeamBrandingPolicyDisabled, - - /// (no description). - DBTEAMLOGTeamBrandingPolicyEnabled, - - /// (no description). - DBTEAMLOGTeamBrandingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamBrandingPolicy` union. -/// -@interface DBTEAMLOGTeamBrandingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamBrandingPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamBrandingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamBrandingPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamBrandingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamBrandingPolicy` object. -/// -+ (DBTEAMLOGTeamBrandingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicyChangedDetails.h deleted file mode 100644 index d99d8a88..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamBrandingPolicy; -@class DBTEAMLOGTeamBrandingPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamBrandingPolicyChangedDetails` struct. -/// -/// Changed team branding policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New team branding policy. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicy *dNewValue; - -/// Previous team branding policy. -@property (nonatomic, readonly) DBTEAMLOGTeamBrandingPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team branding policy. -/// @param previousValue Previous team branding policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamBrandingPolicy *)dNewValue - previousValue:(DBTEAMLOGTeamBrandingPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamBrandingPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamBrandingPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamBrandingPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamBrandingPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamBrandingPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamBrandingPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGTeamBrandingPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicyChangedType.h deleted file mode 100644 index cd241650..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamBrandingPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamBrandingPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamBrandingPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamBrandingPolicyChangedType` struct. -/// -@interface DBTEAMLOGTeamBrandingPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamBrandingPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamBrandingPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamBrandingPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamBrandingPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamBrandingPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamBrandingPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGTeamBrandingPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamDetails.h deleted file mode 100644 index 5ffd028f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamDetails` struct. -/// -/// More details about the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamDetails` struct. -/// -@interface DBTEAMLOGTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamDetails` object. -/// -+ (DBTEAMLOGTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h deleted file mode 100644 index 431a4c16..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCancelKeyDeletionDetails` struct. -/// -/// Canceled team encryption key deletion. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCancelKeyDeletionDetails` -/// struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h deleted file mode 100644 index a3780e3c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCancelKeyDeletionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCancelKeyDeletionType` -/// struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCancelKeyDeletionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h deleted file mode 100644 index 41826902..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCreateKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCreateKeyDetails` struct. -/// -/// Created team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCreateKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyCreateKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCreateKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyType.h deleted file mode 100644 index fe1eabec..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyCreateKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyCreateKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyCreateKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyCreateKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyCreateKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyCreateKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyCreateKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyCreateKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyCreateKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyCreateKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyCreateKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyCreateKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h deleted file mode 100644 index 1a2b1f94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDeleteKeyDetails` struct. -/// -/// Deleted team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDeleteKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDeleteKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h deleted file mode 100644 index e3162b0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDeleteKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDeleteKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDeleteKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDeleteKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDeleteKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDeleteKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyDeleteKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDeleteKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h deleted file mode 100644 index 86d46679..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDisableKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDisableKeyDetails` struct. -/// -/// Disabled team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDisableKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyDetails` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDisableKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyType.h deleted file mode 100644 index bb49c9de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyDisableKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyDisableKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyDisableKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyDisableKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyDisableKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyDisableKeyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyDisableKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyDisableKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyDisableKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyDisableKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyDisableKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h deleted file mode 100644 index 4c130bf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyEnableKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyEnableKeyDetails` struct. -/// -/// Enabled team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyEnableKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyEnableKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyEnableKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyType.h deleted file mode 100644 index a35686b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyEnableKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyEnableKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyEnableKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyEnableKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyEnableKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyEnableKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyEnableKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyEnableKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyEnableKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyEnableKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyEnableKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyEnableKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h deleted file mode 100644 index 806f418b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyRotateKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyRotateKeyDetails` struct. -/// -/// Rotated team encryption key. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyRotateKeyDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyRotateKeyDetails` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyRotateKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyType.h deleted file mode 100644 index db6b9f10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyRotateKeyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyRotateKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyRotateKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyRotateKeyType` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyRotateKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyRotateKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEncryptionKeyRotateKeyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyRotateKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyRotateKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyRotateKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEncryptionKeyRotateKeyType` -/// object. -/// -+ (DBTEAMLOGTeamEncryptionKeyRotateKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h deleted file mode 100644 index 0ef36def..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyScheduleKeyDeletionDetails` struct. -/// -/// Scheduled encryption key deletion. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamEncryptionKeyScheduleKeyDeletionDetails` struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h deleted file mode 100644 index 4afa3010..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEncryptionKeyScheduleKeyDeletionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEncryptionKeyScheduleKeyDeletionType` -/// struct. -/// -@interface DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType` object. -/// -+ (DBTEAMLOGTeamEncryptionKeyScheduleKeyDeletionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEvent.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEvent.h deleted file mode 100644 index b124a7a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamEvent.h +++ /dev/null @@ -1,170 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGActorLogInfo; -@class DBTEAMLOGAssetLogInfo; -@class DBTEAMLOGContextLogInfo; -@class DBTEAMLOGEventCategory; -@class DBTEAMLOGEventDetails; -@class DBTEAMLOGEventType; -@class DBTEAMLOGOriginLogInfo; -@class DBTEAMLOGParticipantLogInfo; -@class DBTEAMLOGTeamEvent; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamEvent` struct. -/// -/// An audit log event. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamEvent : NSObject - -#pragma mark - Instance fields - -/// The Dropbox timestamp representing when the action was taken. -@property (nonatomic, readonly) NSDate *timestamp; - -/// The category that this type of action belongs to. -@property (nonatomic, readonly) DBTEAMLOGEventCategory *eventCategory; - -/// The entity who actually performed the action. Might be missing due to -/// historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGActorLogInfo *actor; - -/// The origin from which the actor performed the action including information -/// about host, ip address, location, session, etc. If the action was performed -/// programmatically via the API the origin represents the API client. -@property (nonatomic, readonly, nullable) DBTEAMLOGOriginLogInfo *origin; - -/// True if the action involved a non team member either as the actor or as one -/// of the affected users. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) NSNumber *involveNonTeamMember; - -/// The user or team on whose behalf the actor performed the action. Might be -/// missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGContextLogInfo *context; - -/// Zero or more users and/or groups that are affected by the action. Note that -/// this list doesn't include any actors or users in context. -@property (nonatomic, readonly, nullable) NSArray *participants; - -/// Zero or more content assets involved in the action. Currently these include -/// Dropbox files and folders but in the future we might add other asset types -/// such as Paper documents, folders, projects, etc. -@property (nonatomic, readonly, nullable) NSArray *assets; - -/// The particular type of action taken. -@property (nonatomic, readonly) DBTEAMLOGEventType *eventType; - -/// The variable event schema applicable to this type of action, instantiated -/// with respect to this particular action. -@property (nonatomic, readonly) DBTEAMLOGEventDetails *details; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param timestamp The Dropbox timestamp representing when the action was -/// taken. -/// @param eventCategory The category that this type of action belongs to. -/// @param eventType The particular type of action taken. -/// @param details The variable event schema applicable to this type of action, -/// instantiated with respect to this particular action. -/// @param actor The entity who actually performed the action. Might be missing -/// due to historical data gap. -/// @param origin The origin from which the actor performed the action including -/// information about host, ip address, location, session, etc. If the action -/// was performed programmatically via the API the origin represents the API -/// client. -/// @param involveNonTeamMember True if the action involved a non team member -/// either as the actor or as one of the affected users. Might be missing due to -/// historical data gap. -/// @param context The user or team on whose behalf the actor performed the -/// action. Might be missing due to historical data gap. -/// @param participants Zero or more users and/or groups that are affected by -/// the action. Note that this list doesn't include any actors or users in -/// context. -/// @param assets Zero or more content assets involved in the action. Currently -/// these include Dropbox files and folders but in the future we might add other -/// asset types such as Paper documents, folders, projects, etc. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTimestamp:(NSDate *)timestamp - eventCategory:(DBTEAMLOGEventCategory *)eventCategory - eventType:(DBTEAMLOGEventType *)eventType - details:(DBTEAMLOGEventDetails *)details - actor:(nullable DBTEAMLOGActorLogInfo *)actor - origin:(nullable DBTEAMLOGOriginLogInfo *)origin - involveNonTeamMember:(nullable NSNumber *)involveNonTeamMember - context:(nullable DBTEAMLOGContextLogInfo *)context - participants:(nullable NSArray *)participants - assets:(nullable NSArray *)assets; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param timestamp The Dropbox timestamp representing when the action was -/// taken. -/// @param eventCategory The category that this type of action belongs to. -/// @param eventType The particular type of action taken. -/// @param details The variable event schema applicable to this type of action, -/// instantiated with respect to this particular action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTimestamp:(NSDate *)timestamp - eventCategory:(DBTEAMLOGEventCategory *)eventCategory - eventType:(DBTEAMLOGEventType *)eventType - details:(DBTEAMLOGEventDetails *)details; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamEvent` struct. -/// -@interface DBTEAMLOGTeamEventSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamEvent` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamEvent` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEvent` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamEvent *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamEvent` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamEvent` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamEvent` object. -/// -+ (DBTEAMLOGTeamEvent *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicy.h deleted file mode 100644 index 8ffe66d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicy.h +++ /dev/null @@ -1,134 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamExtensionsPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamExtensionsPolicy` union. -/// -/// Policy for controlling whether App Integrations are enabled for the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamExtensionsPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamExtensionsPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTeamExtensionsPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamExtensionsPolicyTag) { - /// (no description). - DBTEAMLOGTeamExtensionsPolicyDisabled, - - /// (no description). - DBTEAMLOGTeamExtensionsPolicyEnabled, - - /// (no description). - DBTEAMLOGTeamExtensionsPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamExtensionsPolicy` union. -/// -@interface DBTEAMLOGTeamExtensionsPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamExtensionsPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamExtensionsPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamExtensionsPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamExtensionsPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamExtensionsPolicy` object. -/// -+ (DBTEAMLOGTeamExtensionsPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicyChangedDetails.h deleted file mode 100644 index 643d6ce6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamExtensionsPolicy; -@class DBTEAMLOGTeamExtensionsPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamExtensionsPolicyChangedDetails` struct. -/// -/// Changed App Integrations setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Extensions policy. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicy *dNewValue; - -/// Previous Extensions policy. -@property (nonatomic, readonly) DBTEAMLOGTeamExtensionsPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Extensions policy. -/// @param previousValue Previous Extensions policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamExtensionsPolicy *)dNewValue - previousValue:(DBTEAMLOGTeamExtensionsPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamExtensionsPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamExtensionsPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamExtensionsPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamExtensionsPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedDetails` object. -/// -+ (DBTEAMLOGTeamExtensionsPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicyChangedType.h deleted file mode 100644 index 48b841df..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamExtensionsPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamExtensionsPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamExtensionsPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamExtensionsPolicyChangedType` struct. -/// -@interface DBTEAMLOGTeamExtensionsPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamExtensionsPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamExtensionsPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamExtensionsPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamExtensionsPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamExtensionsPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGTeamExtensionsPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderChangeStatusDetails.h deleted file mode 100644 index e6347d62..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderChangeStatusDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderChangeStatusDetails; -@class DBTEAMTeamFolderStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderChangeStatusDetails` struct. -/// -/// Changed archival status of team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// New team folder status. -@property (nonatomic, readonly) DBTEAMTeamFolderStatus *dNewValue; - -/// Previous team folder status. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMTeamFolderStatus *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team folder status. -/// @param previousValue Previous team folder status. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMTeamFolderStatus *)dNewValue - previousValue:(nullable DBTEAMTeamFolderStatus *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New team folder status. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMTeamFolderStatus *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderChangeStatusDetails` struct. -/// -@interface DBTEAMLOGTeamFolderChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderChangeStatusDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderChangeStatusDetails` -/// object. -/// -+ (DBTEAMLOGTeamFolderChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderChangeStatusType.h deleted file mode 100644 index c0de777f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderChangeStatusType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderChangeStatusType` struct. -/// -@interface DBTEAMLOGTeamFolderChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderChangeStatusType` -/// object. -/// -+ (DBTEAMLOGTeamFolderChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderCreateDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderCreateDetails.h deleted file mode 100644 index 2611be2a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderCreateDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderCreateDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateDetails` struct. -/// -/// Created team folder in active status. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderCreateDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderCreateDetails` struct. -/// -@interface DBTEAMLOGTeamFolderCreateDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderCreateDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderCreateDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderCreateDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderCreateDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderCreateDetails` object. -/// -+ (DBTEAMLOGTeamFolderCreateDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderCreateType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderCreateType.h deleted file mode 100644 index 757035ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderCreateType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderCreateType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderCreateType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderCreateType` struct. -/// -@interface DBTEAMLOGTeamFolderCreateTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderCreateType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderCreateType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderCreateType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderCreateType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderCreateType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderCreateType` object. -/// -+ (DBTEAMLOGTeamFolderCreateType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderDowngradeDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderDowngradeDetails.h deleted file mode 100644 index 9f987ccc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderDowngradeDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderDowngradeDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderDowngradeDetails` struct. -/// -/// Downgraded team folder to regular shared folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderDowngradeDetails : NSObject - -#pragma mark - Instance fields - -/// Target asset position in the Assets list. -@property (nonatomic, readonly) NSNumber *targetAssetIndex; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param targetAssetIndex Target asset position in the Assets list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTargetAssetIndex:(NSNumber *)targetAssetIndex; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderDowngradeDetails` struct. -/// -@interface DBTEAMLOGTeamFolderDowngradeDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderDowngradeDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderDowngradeDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderDowngradeDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderDowngradeDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderDowngradeDetails` -/// object. -/// -+ (DBTEAMLOGTeamFolderDowngradeDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderDowngradeType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderDowngradeType.h deleted file mode 100644 index 9ecce802..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderDowngradeType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderDowngradeType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderDowngradeType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderDowngradeType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderDowngradeType` struct. -/// -@interface DBTEAMLOGTeamFolderDowngradeTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderDowngradeType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderDowngradeType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderDowngradeType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderDowngradeType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderDowngradeType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderDowngradeType` object. -/// -+ (DBTEAMLOGTeamFolderDowngradeType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h deleted file mode 100644 index e6ffcbac..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderPermanentlyDeleteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderPermanentlyDeleteDetails` struct. -/// -/// Permanently deleted archived team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderPermanentlyDeleteDetails` struct. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderPermanentlyDeleteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteDetails` object. -/// -+ (DBTEAMLOGTeamFolderPermanentlyDeleteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteType.h deleted file mode 100644 index b2ab9712..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderPermanentlyDeleteType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderPermanentlyDeleteType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderPermanentlyDeleteType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderPermanentlyDeleteType` struct. -/// -@interface DBTEAMLOGTeamFolderPermanentlyDeleteTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderPermanentlyDeleteType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderPermanentlyDeleteType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderPermanentlyDeleteType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderPermanentlyDeleteType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderPermanentlyDeleteType` -/// object. -/// -+ (DBTEAMLOGTeamFolderPermanentlyDeleteType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderRenameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderRenameDetails.h deleted file mode 100644 index 9e035ce2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderRenameDetails.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderRenameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameDetails` struct. -/// -/// Renamed active/archived team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderRenameDetails : NSObject - -#pragma mark - Instance fields - -/// Previous folder name. -@property (nonatomic, readonly, copy) NSString *previousFolderName; - -/// New folder name. -@property (nonatomic, readonly, copy) NSString *dNewFolderName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousFolderName Previous folder name. -/// @param dNewFolderName New folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousFolderName:(NSString *)previousFolderName dNewFolderName:(NSString *)dNewFolderName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderRenameDetails` struct. -/// -@interface DBTEAMLOGTeamFolderRenameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderRenameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderRenameDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderRenameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderRenameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderRenameDetails` object. -/// -+ (DBTEAMLOGTeamFolderRenameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderRenameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderRenameType.h deleted file mode 100644 index 0a05e384..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamFolderRenameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamFolderRenameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamFolderRenameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderRenameType` struct. -/// -@interface DBTEAMLOGTeamFolderRenameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamFolderRenameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamFolderRenameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamFolderRenameType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamFolderRenameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamFolderRenameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamFolderRenameType` object. -/// -+ (DBTEAMLOGTeamFolderRenameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamInviteDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamInviteDetails.h deleted file mode 100644 index 4a2c74d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamInviteDetails.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGInviteMethod; -@class DBTEAMLOGTeamInviteDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamInviteDetails` struct. -/// -/// Details about team invites -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamInviteDetails : NSObject - -#pragma mark - Instance fields - -/// How the user was invited to the team. -@property (nonatomic, readonly) DBTEAMLOGInviteMethod *inviteMethod; - -/// True if the invitation incurred an additional license purchase. -@property (nonatomic, readonly, nullable) NSNumber *additionalLicensePurchase; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param inviteMethod How the user was invited to the team. -/// @param additionalLicensePurchase True if the invitation incurred an -/// additional license purchase. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteMethod:(DBTEAMLOGInviteMethod *)inviteMethod - additionalLicensePurchase:(nullable NSNumber *)additionalLicensePurchase; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param inviteMethod How the user was invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteMethod:(DBTEAMLOGInviteMethod *)inviteMethod; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamInviteDetails` struct. -/// -@interface DBTEAMLOGTeamInviteDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamInviteDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamInviteDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamInviteDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamInviteDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamInviteDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamInviteDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamInviteDetails` object. -/// -+ (DBTEAMLOGTeamInviteDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamLinkedAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamLinkedAppLogInfo.h deleted file mode 100644 index af238933..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamLinkedAppLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGAppLogInfo.h" - -@class DBTEAMLOGTeamLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamLinkedAppLogInfo` struct. -/// -/// Team linked app -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamLinkedAppLogInfo : DBTEAMLOGAppLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamLinkedAppLogInfo` struct. -/// -@interface DBTEAMLOGTeamLinkedAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamLinkedAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamLinkedAppLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLinkedAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamLinkedAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamLinkedAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLinkedAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamLinkedAppLogInfo` object. -/// -+ (DBTEAMLOGTeamLinkedAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamLogInfo.h deleted file mode 100644 index adc94c21..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamLogInfo.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamLogInfo` struct. -/// -/// Team's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamLogInfo : NSObject - -#pragma mark - Instance fields - -/// Team display name. -@property (nonatomic, readonly, copy) NSString *displayName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param displayName Team display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisplayName:(NSString *)displayName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamLogInfo` struct. -/// -@interface DBTEAMLOGTeamLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamLogInfo` object. -/// -+ (DBTEAMLOGTeamLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMemberLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMemberLogInfo.h deleted file mode 100644 index 69a36c91..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMemberLogInfo.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGUserLogInfo.h" - -@class DBTEAMLOGTeamLogInfo; -@class DBTEAMLOGTeamMemberLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberLogInfo` struct. -/// -/// Team member's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMemberLogInfo : DBTEAMLOGUserLogInfo - -#pragma mark - Instance fields - -/// Team member ID. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -/// Team member external ID. -@property (nonatomic, readonly, copy, nullable) NSString *memberExternalId; - -/// Details about this user’s team for enterprise event. -@property (nonatomic, readonly, nullable) DBTEAMLOGTeamLogInfo *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// @param teamMemberId Team member ID. -/// @param memberExternalId Team member external ID. -/// @param team Details about this user’s team for enterprise event. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email - teamMemberId:(nullable NSString *)teamMemberId - memberExternalId:(nullable NSString *)memberExternalId - team:(nullable DBTEAMLOGTeamLogInfo *)team; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberLogInfo` struct. -/// -@interface DBTEAMLOGTeamMemberLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMemberLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMemberLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMemberLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMemberLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMemberLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMemberLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMemberLogInfo` object. -/// -+ (DBTEAMLOGTeamMemberLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMembershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMembershipType.h deleted file mode 100644 index 4cea11c0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMembershipType.h +++ /dev/null @@ -1,148 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMembershipType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMembershipType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMembershipTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTeamMembershipType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMembershipTypeTag) { - /// (no description). - DBTEAMLOGTeamMembershipTypeFree, - - /// (no description). - DBTEAMLOGTeamMembershipTypeFull, - - /// (no description). - DBTEAMLOGTeamMembershipTypeGuest, - - /// (no description). - DBTEAMLOGTeamMembershipTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMembershipTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "free". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFree; - -/// -/// Initializes union class with tag state of "full". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFull; - -/// -/// Initializes union class with tag state of "guest". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGuest; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "free". -/// -/// @return Whether the union's current tag state has value "free". -/// -- (BOOL)isFree; - -/// -/// Retrieves whether the union's current tag state has value "full". -/// -/// @return Whether the union's current tag state has value "full". -/// -- (BOOL)isFull; - -/// -/// Retrieves whether the union's current tag state has value "guest". -/// -/// @return Whether the union's current tag state has value "guest". -/// -- (BOOL)isGuest; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamMembershipType` union. -/// -@interface DBTEAMLOGTeamMembershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMembershipType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMembershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMembershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMembershipType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMembershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMembershipType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMembershipType` object. -/// -+ (DBTEAMLOGTeamMembershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeFromDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeFromDetails.h deleted file mode 100644 index 47bc99ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeFromDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeFromDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeFromDetails` struct. -/// -/// Merged another team into this team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeFromDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the team that was merged into this team. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName The name of the team that was merged into this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeFromDetails` struct. -/// -@interface DBTEAMLOGTeamMergeFromDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeFromDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeFromDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeFromDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeFromDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeFromDetails` object. -/// -+ (DBTEAMLOGTeamMergeFromDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeFromType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeFromType.h deleted file mode 100644 index f98f4cc1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeFromType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeFromType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeFromType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeFromType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeFromType` struct. -/// -@interface DBTEAMLOGTeamMergeFromTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeFromType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeFromType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeFromType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeFromType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeFromType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeFromType` object. -/// -+ (DBTEAMLOGTeamMergeFromType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedDetails.h deleted file mode 100644 index 9e031b8a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedDetails` struct. -/// -/// Accepted a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request acceptance details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *requestAcceptedDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestAcceptedDetails Team merge request acceptance details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestAcceptedDetails:(DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *)requestAcceptedDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAcceptedDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAcceptedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestAcceptedDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h deleted file mode 100644 index ba26857f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestAcceptedDetails; -@class DBTEAMLOGSecondaryTeamRequestAcceptedDetails; -@class DBTEAMLOGTeamMergeRequestAcceptedExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedExtraDetails` union. -/// -/// Team merge request acceptance details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsTag) { - /// Team merge request accepted details shown to the primary team. - DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsPrimaryTeam, - - /// Team merge request accepted details shown to the secondary team. - DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsTag tag; - -/// Team merge request accepted details shown to the primary team. @note Ensure -/// the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestAcceptedDetails *primaryTeam; - -/// Team merge request accepted details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestAcceptedDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request accepted -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request accepted details shown to the primary -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestAcceptedDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request accepted -/// details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request accepted details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestAcceptedDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h deleted file mode 100644 index 6236e3d1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToPrimaryTeamDetails` struct. -/// -/// Accepted a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h deleted file mode 100644 index 1f1228c1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h deleted file mode 100644 index fecd7b6f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToSecondaryTeamDetails` struct. -/// -/// Accepted a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The primary team name. -@property (nonatomic, readonly, copy) NSString *primaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param primaryTeam The primary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(NSString *)primaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h deleted file mode 100644 index 78045af7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestAcceptedShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedType.h deleted file mode 100644 index 9915f3f1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAcceptedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAcceptedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAcceptedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAcceptedType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAcceptedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAcceptedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestAcceptedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAcceptedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAcceptedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAcceptedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestAcceptedType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestAcceptedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h deleted file mode 100644 index 03b4adea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAutoCanceledDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAutoCanceledDetails` struct. -/// -/// Automatically canceled team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// The cancellation reason. -@property (nonatomic, readonly, copy, nullable) NSString *details; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param details The cancellation reason. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDetails:(nullable NSString *)details; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAutoCanceledDetails` -/// struct. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAutoCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestAutoCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledType.h deleted file mode 100644 index 4abb4e8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestAutoCanceledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestAutoCanceledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestAutoCanceledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestAutoCanceledType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestAutoCanceledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestAutoCanceledType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestAutoCanceledType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestAutoCanceledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestAutoCanceledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestAutoCanceledType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestAutoCanceledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledDetails.h deleted file mode 100644 index f6980d37..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledDetails` struct. -/// -/// Canceled a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request cancellation details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledExtraDetails *requestCanceledDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestCanceledDetails Team merge request cancellation details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestCanceledDetails:(DBTEAMLOGTeamMergeRequestCanceledExtraDetails *)requestCanceledDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestCanceledDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestCanceledDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestCanceledDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h deleted file mode 100644 index b7b3c6c8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestCanceledDetails; -@class DBTEAMLOGSecondaryTeamRequestCanceledDetails; -@class DBTEAMLOGTeamMergeRequestCanceledExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledExtraDetails` union. -/// -/// Team merge request cancellation details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestCanceledExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestCanceledExtraDetailsTag) { - /// Team merge request cancellation details shown to the primary team. - DBTEAMLOGTeamMergeRequestCanceledExtraDetailsPrimaryTeam, - - /// Team merge request cancellation details shown to the secondary team. - DBTEAMLOGTeamMergeRequestCanceledExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestCanceledExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestCanceledExtraDetailsTag tag; - -/// Team merge request cancellation details shown to the primary team. @note -/// Ensure the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestCanceledDetails *primaryTeam; - -/// Team merge request cancellation details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestCanceledDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request cancellation -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request cancellation details shown to the -/// primary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestCanceledDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request -/// cancellation details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request cancellation details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestCanceledDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestCanceledExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h deleted file mode 100644 index 03810af2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToPrimaryTeamDetails` struct. -/// -/// Canceled a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h deleted file mode 100644 index 10e85268..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h deleted file mode 100644 index c223f489..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToSecondaryTeamDetails` struct. -/// -/// Canceled a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin that the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin that the request was sent -/// to. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h deleted file mode 100644 index 3bd1c190..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestCanceledShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledType.h deleted file mode 100644 index fee84388..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestCanceledType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestCanceledType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestCanceledType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestCanceledType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestCanceledTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestCanceledType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestCanceledType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestCanceledType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestCanceledType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestCanceledType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestCanceledType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestCanceledType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredDetails.h deleted file mode 100644 index dbed542e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredDetails; -@class DBTEAMLOGTeamMergeRequestExpiredExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredDetails` struct. -/// -/// Team merge request expired. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request expiration details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredExtraDetails *requestExpiredDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestExpiredDetails Team merge request expiration details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestExpiredDetails:(DBTEAMLOGTeamMergeRequestExpiredExtraDetails *)requestExpiredDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestExpiredDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestExpiredDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestExpiredDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h deleted file mode 100644 index ee742168..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestExpiredDetails; -@class DBTEAMLOGSecondaryTeamRequestExpiredDetails; -@class DBTEAMLOGTeamMergeRequestExpiredExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredExtraDetails` union. -/// -/// Team merge request expiration details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestExpiredExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestExpiredExtraDetailsTag) { - /// Team merge request canceled details shown to the primary team. - DBTEAMLOGTeamMergeRequestExpiredExtraDetailsPrimaryTeam, - - /// Team merge request canceled details shown to the secondary team. - DBTEAMLOGTeamMergeRequestExpiredExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestExpiredExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestExpiredExtraDetailsTag tag; - -/// Team merge request canceled details shown to the primary team. @note Ensure -/// the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestExpiredDetails *primaryTeam; - -/// Team merge request canceled details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestExpiredDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request canceled -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request canceled details shown to the primary -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestExpiredDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request canceled -/// details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request canceled details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestExpiredDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h deleted file mode 100644 index 40310db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToPrimaryTeamDetails` struct. -/// -/// Team merge request expired. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h deleted file mode 100644 index c6ba32f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h deleted file mode 100644 index 58febf1e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToSecondaryTeamDetails` struct. -/// -/// Team merge request expired. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h deleted file mode 100644 index f0009b03..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestExpiredShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredType.h deleted file mode 100644 index 7c2ed3a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestExpiredType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestExpiredType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestExpiredType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestExpiredType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestExpiredTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestExpiredType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestExpiredType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestExpiredType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestExpiredType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestExpiredType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestExpiredType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestExpiredType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h deleted file mode 100644 index 8754bcf5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToPrimaryTeamDetails` struct. -/// -/// Rejected a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h deleted file mode 100644 index 9499ae2c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h deleted file mode 100644 index a4a04820..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToSecondaryTeamDetails` struct. -/// -/// Rejected a team merge request. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the secondary team admin who sent the request originally. -@property (nonatomic, readonly, copy) NSString *sentBy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentBy The name of the secondary team admin who sent the request -/// originally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentBy:(NSString *)sentBy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h deleted file mode 100644 index d6e6702a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRejectedShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestRejectedShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestRejectedShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderDetails.h deleted file mode 100644 index 3a534ff5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderDetails.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderDetails; -@class DBTEAMLOGTeamMergeRequestReminderExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderDetails` struct. -/// -/// Sent a team merge request reminder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderDetails : NSObject - -#pragma mark - Instance fields - -/// Team merge request reminder details. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderExtraDetails *requestReminderDetails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param requestReminderDetails Team merge request reminder details. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequestReminderDetails:(DBTEAMLOGTeamMergeRequestReminderExtraDetails *)requestReminderDetails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestReminderDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestReminderDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestReminderDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderExtraDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderExtraDetails.h deleted file mode 100644 index 1d045db0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderExtraDetails.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPrimaryTeamRequestReminderDetails; -@class DBTEAMLOGSecondaryTeamRequestReminderDetails; -@class DBTEAMLOGTeamMergeRequestReminderExtraDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderExtraDetails` union. -/// -/// Team merge request reminder details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderExtraDetails : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamMergeRequestReminderExtraDetailsTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamMergeRequestReminderExtraDetailsTag) { - /// Team merge request reminder details shown to the primary team. - DBTEAMLOGTeamMergeRequestReminderExtraDetailsPrimaryTeam, - - /// Team merge request reminder details shown to the secondary team. - DBTEAMLOGTeamMergeRequestReminderExtraDetailsSecondaryTeam, - - /// (no description). - DBTEAMLOGTeamMergeRequestReminderExtraDetailsOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamMergeRequestReminderExtraDetailsTag tag; - -/// Team merge request reminder details shown to the primary team. @note Ensure -/// the `isPrimaryTeam` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGPrimaryTeamRequestReminderDetails *primaryTeam; - -/// Team merge request reminder details shown to the secondary team. @note -/// Ensure the `isSecondaryTeam` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGSecondaryTeamRequestReminderDetails *secondaryTeam; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "primary_team". -/// -/// Description of the "primary_team" tag state: Team merge request reminder -/// details shown to the primary team. -/// -/// @param primaryTeam Team merge request reminder details shown to the primary -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPrimaryTeam:(DBTEAMLOGPrimaryTeamRequestReminderDetails *)primaryTeam; - -/// -/// Initializes union class with tag state of "secondary_team". -/// -/// Description of the "secondary_team" tag state: Team merge request reminder -/// details shown to the secondary team. -/// -/// @param secondaryTeam Team merge request reminder details shown to the -/// secondary team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(DBTEAMLOGSecondaryTeamRequestReminderDetails *)secondaryTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "primary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `primaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "primary_team". -/// -- (BOOL)isPrimaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "secondary_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `secondaryTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "secondary_team". -/// -- (BOOL)isSecondaryTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` union. -/// -@interface DBTEAMLOGTeamMergeRequestReminderExtraDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderExtraDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestReminderExtraDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderExtraDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderExtraDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderExtraDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h deleted file mode 100644 index f8d354d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToPrimaryTeamDetails` struct. -/// -/// Sent a team merge request reminder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentTo The name of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h deleted file mode 100644 index 40950d80..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToPrimaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h deleted file mode 100644 index 54f449d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToSecondaryTeamDetails` struct. -/// -/// Sent a team merge request reminder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h deleted file mode 100644 index 23f8d63f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestReminderShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderType.h deleted file mode 100644 index 6b5b9972..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestReminderType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestReminderType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestReminderType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestReminderType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestReminderType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestReminderTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestReminderType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestReminderType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestReminderType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestReminderType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestReminderType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestReminderType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestReminderType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRevokedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRevokedDetails.h deleted file mode 100644 index 49f18e4e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRevokedDetails.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRevokedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRevokedDetails` struct. -/// -/// Canceled the team merge. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the other team. -@property (nonatomic, readonly, copy) NSString *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param team The name of the other team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(NSString *)team; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestRevokedDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRevokedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestRevokedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestRevokedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRevokedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestRevokedDetails` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestRevokedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRevokedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRevokedType.h deleted file mode 100644 index 4a030107..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestRevokedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestRevokedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestRevokedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestRevokedType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestRevokedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestRevokedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeRequestRevokedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestRevokedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestRevokedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestRevokedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeRequestRevokedType` -/// object. -/// -+ (DBTEAMLOGTeamMergeRequestRevokedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h deleted file mode 100644 index d96b8562..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToPrimaryTeamDetails` struct. -/// -/// Requested to merge their Dropbox team into yours. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The secondary team name. -@property (nonatomic, readonly, copy) NSString *secondaryTeam; - -/// The name of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param secondaryTeam The secondary team name. -/// @param sentTo The name of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSecondaryTeam:(NSString *)secondaryTeam sentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestSentShownToPrimaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h deleted file mode 100644 index aedc56a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToPrimaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeRequestSentShownToPrimaryTeamType` -/// struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToPrimaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h deleted file mode 100644 index 8bd35535..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToSecondaryTeamDetails` struct. -/// -/// Requested to merge your team into another Dropbox team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails : NSObject - -#pragma mark - Instance fields - -/// The email of the primary team admin the request was sent to. -@property (nonatomic, readonly, copy) NSString *sentTo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sentTo The email of the primary team admin the request was sent to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSentTo:(NSString *)sentTo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestSentShownToSecondaryTeamDetails` struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` API object. -/// -+ (nullable NSDictionary *)serialize: - (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h deleted file mode 100644 index 729eb1f6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeRequestSentShownToSecondaryTeamType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `TeamMergeRequestSentShownToSecondaryTeamType` struct. -/// -@interface DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType` object. -/// -+ (DBTEAMLOGTeamMergeRequestSentShownToSecondaryTeamType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeToDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeToDetails.h deleted file mode 100644 index 3a288e64..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeToDetails.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeToDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeToDetails` struct. -/// -/// Merged this team into another team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeToDetails : NSObject - -#pragma mark - Instance fields - -/// The name of the team that this team was merged into. -@property (nonatomic, readonly, copy) NSString *teamName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamName The name of the team that this team was merged into. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamName:(NSString *)teamName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeToDetails` struct. -/// -@interface DBTEAMLOGTeamMergeToDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeToDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeToDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeToDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeToDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeToDetails` object. -/// -+ (DBTEAMLOGTeamMergeToDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeToType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeToType.h deleted file mode 100644 index 602c4341..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamMergeToType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamMergeToType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMergeToType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamMergeToType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMergeToType` struct. -/// -@interface DBTEAMLOGTeamMergeToTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamMergeToType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamMergeToType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamMergeToType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamMergeToType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamMergeToType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamMergeToType` object. -/// -+ (DBTEAMLOGTeamMergeToType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamName.h deleted file mode 100644 index 2bc90ca9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamName.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamName` struct. -/// -/// Team name details -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamName : NSObject - -#pragma mark - Instance fields - -/// Team's display name. -@property (nonatomic, readonly, copy) NSString *teamDisplayName; - -/// Team's legal name. -@property (nonatomic, readonly, copy) NSString *teamLegalName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamDisplayName Team's display name. -/// @param teamLegalName Team's legal name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamDisplayName:(NSString *)teamDisplayName teamLegalName:(NSString *)teamLegalName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamName` struct. -/// -@interface DBTEAMLOGTeamNameSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamName` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamName` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamName` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamName *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamName` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamName` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamName` object. -/// -+ (DBTEAMLOGTeamName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddBackgroundDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddBackgroundDetails.h deleted file mode 100644 index bcd42dd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddBackgroundDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddBackgroundDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddBackgroundDetails` struct. -/// -/// Added team background to display on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddBackgroundDetails` struct. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddBackgroundDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileAddBackgroundDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddBackgroundDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddBackgroundDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddBackgroundDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileAddBackgroundDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddBackgroundType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddBackgroundType.h deleted file mode 100644 index b979f948..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddBackgroundType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddBackgroundType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddBackgroundType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddBackgroundType` struct. -/// -@interface DBTEAMLOGTeamProfileAddBackgroundTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddBackgroundType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileAddBackgroundType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddBackgroundType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddBackgroundType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddBackgroundType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddBackgroundType` -/// object. -/// -+ (DBTEAMLOGTeamProfileAddBackgroundType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddLogoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddLogoDetails.h deleted file mode 100644 index ab7e250a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddLogoDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddLogoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddLogoDetails` struct. -/// -/// Added team logo to display on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddLogoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddLogoDetails` struct. -/// -@interface DBTEAMLOGTeamProfileAddLogoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddLogoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileAddLogoDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddLogoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddLogoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddLogoDetails` object. -/// -+ (DBTEAMLOGTeamProfileAddLogoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddLogoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddLogoType.h deleted file mode 100644 index 8e4667fe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileAddLogoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileAddLogoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileAddLogoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileAddLogoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileAddLogoType` struct. -/// -@interface DBTEAMLOGTeamProfileAddLogoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileAddLogoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileAddLogoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileAddLogoType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileAddLogoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileAddLogoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileAddLogoType` object. -/// -+ (DBTEAMLOGTeamProfileAddLogoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeBackgroundDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeBackgroundDetails.h deleted file mode 100644 index b47ab310..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeBackgroundDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeBackgroundDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeBackgroundDetails` struct. -/// -/// Changed team background displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeBackgroundDetails` struct. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeBackgroundDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeBackgroundDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeBackgroundDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundDetails` object. -/// -+ (DBTEAMLOGTeamProfileChangeBackgroundDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeBackgroundType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeBackgroundType.h deleted file mode 100644 index 6fa16195..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeBackgroundType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeBackgroundType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeBackgroundType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeBackgroundType` struct. -/// -@interface DBTEAMLOGTeamProfileChangeBackgroundTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeBackgroundType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeBackgroundType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeBackgroundType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeBackgroundType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeBackgroundType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeBackgroundType` -/// object. -/// -+ (DBTEAMLOGTeamProfileChangeBackgroundType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h deleted file mode 100644 index 7b2ff7db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeDefaultLanguageDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeDefaultLanguageDetails` struct. -/// -/// Changed default language for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageDetails : NSObject - -#pragma mark - Instance fields - -/// New team's default language. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -/// Previous team's default language. -@property (nonatomic, readonly, copy) NSString *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team's default language. -/// @param previousValue Previous team's default language. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(NSString *)dNewValue previousValue:(NSString *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeDefaultLanguageDetails` -/// struct. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageDetails` object. -/// -+ (DBTEAMLOGTeamProfileChangeDefaultLanguageDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageType.h deleted file mode 100644 index 407baf19..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeDefaultLanguageType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeDefaultLanguageType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeDefaultLanguageType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeDefaultLanguageType` -/// struct. -/// -@interface DBTEAMLOGTeamProfileChangeDefaultLanguageTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeDefaultLanguageType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeDefaultLanguageType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeDefaultLanguageType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileChangeDefaultLanguageType` object. -/// -+ (DBTEAMLOGTeamProfileChangeDefaultLanguageType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeLogoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeLogoDetails.h deleted file mode 100644 index c8f336d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeLogoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeLogoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeLogoDetails` struct. -/// -/// Changed team logo displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeLogoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeLogoDetails` struct. -/// -@interface DBTEAMLOGTeamProfileChangeLogoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeLogoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeLogoDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeLogoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeLogoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeLogoDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileChangeLogoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeLogoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeLogoType.h deleted file mode 100644 index 8bcfcbd9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeLogoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeLogoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeLogoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeLogoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeLogoType` struct. -/// -@interface DBTEAMLOGTeamProfileChangeLogoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeLogoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeLogoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeLogoType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeLogoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeLogoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeLogoType` object. -/// -+ (DBTEAMLOGTeamProfileChangeLogoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeNameDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeNameDetails.h deleted file mode 100644 index 83911dfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeNameDetails.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamName; -@class DBTEAMLOGTeamProfileChangeNameDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeNameDetails` struct. -/// -/// Changed team name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeNameDetails : NSObject - -#pragma mark - Instance fields - -/// Previous teams name. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGTeamName *previousValue; - -/// New team name. -@property (nonatomic, readonly) DBTEAMLOGTeamName *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New team name. -/// @param previousValue Previous teams name. Might be missing due to historical -/// data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamName *)dNewValue - previousValue:(nullable DBTEAMLOGTeamName *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New team name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamName *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeNameDetails` struct. -/// -@interface DBTEAMLOGTeamProfileChangeNameDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeNameDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeNameDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeNameDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeNameDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeNameDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileChangeNameDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeNameType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeNameType.h deleted file mode 100644 index 84f299a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileChangeNameType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileChangeNameType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileChangeNameType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileChangeNameType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileChangeNameType` struct. -/// -@interface DBTEAMLOGTeamProfileChangeNameTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileChangeNameType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileChangeNameType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileChangeNameType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileChangeNameType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileChangeNameType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileChangeNameType` object. -/// -+ (DBTEAMLOGTeamProfileChangeNameType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveBackgroundDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveBackgroundDetails.h deleted file mode 100644 index ee892ad1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveBackgroundDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveBackgroundDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveBackgroundDetails` struct. -/// -/// Removed team background displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveBackgroundDetails` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveBackgroundDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveBackgroundDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveBackgroundDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundDetails` object. -/// -+ (DBTEAMLOGTeamProfileRemoveBackgroundDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveBackgroundType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveBackgroundType.h deleted file mode 100644 index 98186af7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveBackgroundType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveBackgroundType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveBackgroundType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveBackgroundType` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveBackgroundTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveBackgroundType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveBackgroundType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveBackgroundType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveBackgroundType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileRemoveBackgroundType` -/// object. -/// -+ (DBTEAMLOGTeamProfileRemoveBackgroundType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveLogoDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveLogoDetails.h deleted file mode 100644 index 0f3f50ef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveLogoDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveLogoDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveLogoDetails` struct. -/// -/// Removed team logo displayed on shared link headers. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveLogoDetails` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveLogoDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileRemoveLogoDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveLogoDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveLogoDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileRemoveLogoDetails` -/// object. -/// -+ (DBTEAMLOGTeamProfileRemoveLogoDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveLogoType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveLogoType.h deleted file mode 100644 index 97afc111..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamProfileRemoveLogoType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamProfileRemoveLogoType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamProfileRemoveLogoType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamProfileRemoveLogoType` struct. -/// -@interface DBTEAMLOGTeamProfileRemoveLogoTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamProfileRemoveLogoType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamProfileRemoveLogoType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamProfileRemoveLogoType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamProfileRemoveLogoType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamProfileRemoveLogoType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamProfileRemoveLogoType` object. -/// -+ (DBTEAMLOGTeamProfileRemoveLogoType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicy.h deleted file mode 100644 index 5c1181b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicy.h +++ /dev/null @@ -1,135 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncPolicy` union. -/// -/// Policy for controlling whether team selective sync is enabled for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTeamSelectiveSyncPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGTeamSelectiveSyncPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTeamSelectiveSyncPolicyTag) { - /// (no description). - DBTEAMLOGTeamSelectiveSyncPolicyDisabled, - - /// (no description). - DBTEAMLOGTeamSelectiveSyncPolicyEnabled, - - /// (no description). - DBTEAMLOGTeamSelectiveSyncPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTeamSelectiveSyncPolicy` union. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTeamSelectiveSyncPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTeamSelectiveSyncPolicy` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h deleted file mode 100644 index 8be5cc0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncPolicy; -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncPolicyChangedDetails` struct. -/// -/// Enabled/disabled Team Selective Sync for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New Team Selective Sync policy. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicy *dNewValue; - -/// Previous Team Selective Sync policy. -@property (nonatomic, readonly) DBTEAMLOGTeamSelectiveSyncPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New Team Selective Sync policy. -/// @param previousValue Previous Team Selective Sync policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTeamSelectiveSyncPolicy *)dNewValue - previousValue:(DBTEAMLOGTeamSelectiveSyncPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncPolicyChangedDetails` -/// struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h deleted file mode 100644 index dd7b24bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncPolicyChangedType` struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncPolicyChangedType` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h deleted file mode 100644 index 7ec7b9f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSetting; -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncSettingsChangedDetails` struct. -/// -/// Changed sync default. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous value. -@property (nonatomic, readonly) DBFILESSyncSetting *previousValue; - -/// New value. -@property (nonatomic, readonly) DBFILESSyncSetting *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous value. -/// @param dNewValue New value. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBFILESSyncSetting *)previousValue dNewValue:(DBFILESSyncSetting *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncSettingsChangedDetails` -/// struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncSettingsChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h deleted file mode 100644 index 33c7f90d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSelectiveSyncSettingsChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSelectiveSyncSettingsChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSelectiveSyncSettingsChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSelectiveSyncSettingsChangedType` -/// struct. -/// -@interface DBTEAMLOGTeamSelectiveSyncSettingsChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSelectiveSyncSettingsChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSelectiveSyncSettingsChangedType` object. -/// -+ (DBTEAMLOGTeamSelectiveSyncSettingsChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h deleted file mode 100644 index 3606a310..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSharingWhitelistSubjectsChangedDetails` struct. -/// -/// Edited the approved list for sharing externally. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Domains or emails added to the approved list for sharing externally. -@property (nonatomic, readonly) NSArray *addedWhitelistSubjects; - -/// Domains or emails removed from the approved list for sharing externally. -@property (nonatomic, readonly) NSArray *removedWhitelistSubjects; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param addedWhitelistSubjects Domains or emails added to the approved list -/// for sharing externally. -/// @param removedWhitelistSubjects Domains or emails removed from the approved -/// list for sharing externally. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAddedWhitelistSubjects:(NSArray *)addedWhitelistSubjects - removedWhitelistSubjects:(NSArray *)removedWhitelistSubjects; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSharingWhitelistSubjectsChangedDetails` -/// struct. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails` object. -/// -+ (DBTEAMLOGTeamSharingWhitelistSubjectsChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h deleted file mode 100644 index 3a3e1c13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTeamSharingWhitelistSubjectsChangedType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTeamSharingWhitelistSubjectsChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSharingWhitelistSubjectsChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSharingWhitelistSubjectsChangedType` -/// struct. -/// -@interface DBTEAMLOGTeamSharingWhitelistSubjectsChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGTeamSharingWhitelistSubjectsChangedType` object. -/// -+ (DBTEAMLOGTeamSharingWhitelistSubjectsChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddBackupPhoneDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddBackupPhoneDetails.h deleted file mode 100644 index 716c79f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddBackupPhoneDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddBackupPhoneDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddBackupPhoneDetails` struct. -/// -/// Added backup phone for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddBackupPhoneDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddBackupPhoneDetails` struct. -/// -@interface DBTEAMLOGTfaAddBackupPhoneDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddBackupPhoneDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddBackupPhoneDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddBackupPhoneDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddBackupPhoneDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddBackupPhoneDetails` object. -/// -+ (DBTEAMLOGTfaAddBackupPhoneDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddBackupPhoneType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddBackupPhoneType.h deleted file mode 100644 index a05a8c85..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddBackupPhoneType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddBackupPhoneType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddBackupPhoneType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddBackupPhoneType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddBackupPhoneType` struct. -/// -@interface DBTEAMLOGTfaAddBackupPhoneTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddBackupPhoneType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddBackupPhoneType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddBackupPhoneType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddBackupPhoneType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddBackupPhoneType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddBackupPhoneType` object. -/// -+ (DBTEAMLOGTfaAddBackupPhoneType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddExceptionDetails.h deleted file mode 100644 index ca9330aa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddExceptionDetails` struct. -/// -/// Added members to two factor authentication exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddExceptionDetails` struct. -/// -@interface DBTEAMLOGTfaAddExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddExceptionDetails` object. -/// -+ (DBTEAMLOGTfaAddExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddExceptionType.h deleted file mode 100644 index 90713afb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddExceptionType` struct. -/// -@interface DBTEAMLOGTfaAddExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddExceptionType` object. -/// -+ (DBTEAMLOGTfaAddExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddSecurityKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddSecurityKeyDetails.h deleted file mode 100644 index 55961615..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddSecurityKeyDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddSecurityKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddSecurityKeyDetails` struct. -/// -/// Added security key for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddSecurityKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddSecurityKeyDetails` struct. -/// -@interface DBTEAMLOGTfaAddSecurityKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddSecurityKeyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddSecurityKeyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddSecurityKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddSecurityKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddSecurityKeyDetails` object. -/// -+ (DBTEAMLOGTfaAddSecurityKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddSecurityKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddSecurityKeyType.h deleted file mode 100644 index f8655b84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaAddSecurityKeyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaAddSecurityKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaAddSecurityKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaAddSecurityKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaAddSecurityKeyType` struct. -/// -@interface DBTEAMLOGTfaAddSecurityKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaAddSecurityKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaAddSecurityKeyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaAddSecurityKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaAddSecurityKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaAddSecurityKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaAddSecurityKeyType` object. -/// -+ (DBTEAMLOGTfaAddSecurityKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeBackupPhoneDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeBackupPhoneDetails.h deleted file mode 100644 index bbb1f38b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeBackupPhoneDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeBackupPhoneDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeBackupPhoneDetails` struct. -/// -/// Changed backup phone for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeBackupPhoneDetails` struct. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeBackupPhoneDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeBackupPhoneDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeBackupPhoneDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeBackupPhoneDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeBackupPhoneDetails` -/// object. -/// -+ (DBTEAMLOGTfaChangeBackupPhoneDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeBackupPhoneType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeBackupPhoneType.h deleted file mode 100644 index 64c7f560..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeBackupPhoneType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeBackupPhoneType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeBackupPhoneType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeBackupPhoneType` struct. -/// -@interface DBTEAMLOGTfaChangeBackupPhoneTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeBackupPhoneType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeBackupPhoneType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeBackupPhoneType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeBackupPhoneType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeBackupPhoneType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeBackupPhoneType` object. -/// -+ (DBTEAMLOGTfaChangeBackupPhoneType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangePolicyDetails.h deleted file mode 100644 index 3feb075d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangePolicyDetails.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangePolicyDetails; -@class DBTEAMPOLICIESTwoStepVerificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangePolicyDetails` struct. -/// -/// Changed two-step verification setting for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New change policy. -@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationPolicy *dNewValue; - -/// Previous change policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMPOLICIESTwoStepVerificationPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New change policy. -/// @param previousValue Previous change policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESTwoStepVerificationPolicy *)dNewValue - previousValue:(nullable DBTEAMPOLICIESTwoStepVerificationPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New change policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMPOLICIESTwoStepVerificationPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangePolicyDetails` struct. -/// -@interface DBTEAMLOGTfaChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangePolicyDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangePolicyDetails` object. -/// -+ (DBTEAMLOGTfaChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangePolicyType.h deleted file mode 100644 index e6e48205..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangePolicyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangePolicyType` struct. -/// -@interface DBTEAMLOGTfaChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangePolicyType` object. -/// -+ (DBTEAMLOGTfaChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeStatusDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeStatusDetails.h deleted file mode 100644 index b2ee8658..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeStatusDetails.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeStatusDetails; -@class DBTEAMLOGTfaConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeStatusDetails` struct. -/// -/// Enabled/disabled/changed two-step verification setting. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeStatusDetails : NSObject - -#pragma mark - Instance fields - -/// The new two factor authentication configuration. -@property (nonatomic, readonly) DBTEAMLOGTfaConfiguration *dNewValue; - -/// The previous two factor authentication configuration. Might be missing due -/// to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGTfaConfiguration *previousValue; - -/// Used two factor authentication rescue code. This flag is relevant when the -/// two factor authentication configuration is disabled. -@property (nonatomic, readonly, nullable) NSNumber *usedRescueCode; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue The new two factor authentication configuration. -/// @param previousValue The previous two factor authentication configuration. -/// Might be missing due to historical data gap. -/// @param usedRescueCode Used two factor authentication rescue code. This flag -/// is relevant when the two factor authentication configuration is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTfaConfiguration *)dNewValue - previousValue:(nullable DBTEAMLOGTfaConfiguration *)previousValue - usedRescueCode:(nullable NSNumber *)usedRescueCode; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue The new two factor authentication configuration. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTfaConfiguration *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeStatusDetails` struct. -/// -@interface DBTEAMLOGTfaChangeStatusDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeStatusDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeStatusDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeStatusDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeStatusDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeStatusDetails` object. -/// -+ (DBTEAMLOGTfaChangeStatusDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeStatusType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeStatusType.h deleted file mode 100644 index c840047a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaChangeStatusType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaChangeStatusType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaChangeStatusType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaChangeStatusType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaChangeStatusType` struct. -/// -@interface DBTEAMLOGTfaChangeStatusTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaChangeStatusType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaChangeStatusType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaChangeStatusType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaChangeStatusType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaChangeStatusType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaChangeStatusType` object. -/// -+ (DBTEAMLOGTfaChangeStatusType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaConfiguration.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaConfiguration.h deleted file mode 100644 index 961e22ca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaConfiguration.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaConfiguration; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaConfiguration` union. -/// -/// Two factor authentication configuration. Note: the enabled option is -/// deprecated. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaConfiguration : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTfaConfigurationTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTfaConfiguration` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTfaConfigurationTag) { - /// (no description). - DBTEAMLOGTfaConfigurationAuthenticator, - - /// (no description). - DBTEAMLOGTfaConfigurationDisabled, - - /// (no description). - DBTEAMLOGTfaConfigurationEnabled, - - /// (no description). - DBTEAMLOGTfaConfigurationSms, - - /// (no description). - DBTEAMLOGTfaConfigurationOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTfaConfigurationTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "authenticator". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAuthenticator; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "sms". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSms; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "authenticator". -/// -/// @return Whether the union's current tag state has value "authenticator". -/// -- (BOOL)isAuthenticator; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "sms". -/// -/// @return Whether the union's current tag state has value "sms". -/// -- (BOOL)isSms; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTfaConfiguration` union. -/// -@interface DBTEAMLOGTfaConfigurationSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaConfiguration` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaConfiguration` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaConfiguration` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaConfiguration *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaConfiguration` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaConfiguration` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaConfiguration` object. -/// -+ (DBTEAMLOGTfaConfiguration *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveBackupPhoneDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveBackupPhoneDetails.h deleted file mode 100644 index 261ad155..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveBackupPhoneDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveBackupPhoneDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveBackupPhoneDetails` struct. -/// -/// Removed backup phone for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveBackupPhoneDetails` struct. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveBackupPhoneDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveBackupPhoneDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveBackupPhoneDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveBackupPhoneDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveBackupPhoneDetails` -/// object. -/// -+ (DBTEAMLOGTfaRemoveBackupPhoneDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveBackupPhoneType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveBackupPhoneType.h deleted file mode 100644 index fdb75125..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveBackupPhoneType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveBackupPhoneType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveBackupPhoneType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveBackupPhoneType` struct. -/// -@interface DBTEAMLOGTfaRemoveBackupPhoneTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveBackupPhoneType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveBackupPhoneType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveBackupPhoneType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveBackupPhoneType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveBackupPhoneType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveBackupPhoneType` object. -/// -+ (DBTEAMLOGTfaRemoveBackupPhoneType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveExceptionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveExceptionDetails.h deleted file mode 100644 index bb29c298..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveExceptionDetails.h +++ /dev/null @@ -1,73 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveExceptionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveExceptionDetails` struct. -/// -/// Removed members from two factor authentication exception list. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveExceptionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveExceptionDetails` struct. -/// -@interface DBTEAMLOGTfaRemoveExceptionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveExceptionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveExceptionDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveExceptionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveExceptionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveExceptionDetails` object. -/// -+ (DBTEAMLOGTfaRemoveExceptionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveExceptionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveExceptionType.h deleted file mode 100644 index 56eba6da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveExceptionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveExceptionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveExceptionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveExceptionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveExceptionType` struct. -/// -@interface DBTEAMLOGTfaRemoveExceptionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveExceptionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveExceptionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveExceptionType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveExceptionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveExceptionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveExceptionType` object. -/// -+ (DBTEAMLOGTfaRemoveExceptionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveSecurityKeyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveSecurityKeyDetails.h deleted file mode 100644 index 97d07354..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveSecurityKeyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveSecurityKeyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveSecurityKeyDetails` struct. -/// -/// Removed security key for two-step verification. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveSecurityKeyDetails` struct. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveSecurityKeyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveSecurityKeyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveSecurityKeyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveSecurityKeyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveSecurityKeyDetails` -/// object. -/// -+ (DBTEAMLOGTfaRemoveSecurityKeyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveSecurityKeyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveSecurityKeyType.h deleted file mode 100644 index 848fa70f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaRemoveSecurityKeyType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaRemoveSecurityKeyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaRemoveSecurityKeyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaRemoveSecurityKeyType` struct. -/// -@interface DBTEAMLOGTfaRemoveSecurityKeyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaRemoveSecurityKeyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaRemoveSecurityKeyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaRemoveSecurityKeyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaRemoveSecurityKeyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaRemoveSecurityKeyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaRemoveSecurityKeyType` object. -/// -+ (DBTEAMLOGTfaRemoveSecurityKeyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaResetDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaResetDetails.h deleted file mode 100644 index ad51290c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaResetDetails.h +++ /dev/null @@ -1,72 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaResetDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaResetDetails` struct. -/// -/// Reset two-step verification for team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaResetDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaResetDetails` struct. -/// -@interface DBTEAMLOGTfaResetDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaResetDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaResetDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaResetDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaResetDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaResetDetails` object. -/// -+ (DBTEAMLOGTfaResetDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaResetType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaResetType.h deleted file mode 100644 index 6b5681f0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTfaResetType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTfaResetType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TfaResetType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTfaResetType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TfaResetType` struct. -/// -@interface DBTEAMLOGTfaResetTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTfaResetType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTfaResetType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTfaResetType *)instance; - -/// -/// Deserializes `DBTEAMLOGTfaResetType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTfaResetType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTfaResetType` object. -/// -+ (DBTEAMLOGTfaResetType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTimeUnit.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTimeUnit.h deleted file mode 100644 index c2168354..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTimeUnit.h +++ /dev/null @@ -1,233 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTimeUnit; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TimeUnit` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTimeUnit : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTimeUnitTag` enum type represents the possible tag states with -/// which the `DBTEAMLOGTimeUnit` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTimeUnitTag) { - /// (no description). - DBTEAMLOGTimeUnitDays, - - /// (no description). - DBTEAMLOGTimeUnitHours, - - /// (no description). - DBTEAMLOGTimeUnitMilliseconds, - - /// (no description). - DBTEAMLOGTimeUnitMinutes, - - /// (no description). - DBTEAMLOGTimeUnitMonths, - - /// (no description). - DBTEAMLOGTimeUnitSeconds, - - /// (no description). - DBTEAMLOGTimeUnitWeeks, - - /// (no description). - DBTEAMLOGTimeUnitYears, - - /// (no description). - DBTEAMLOGTimeUnitOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTimeUnitTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "days". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDays; - -/// -/// Initializes union class with tag state of "hours". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithHours; - -/// -/// Initializes union class with tag state of "milliseconds". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMilliseconds; - -/// -/// Initializes union class with tag state of "minutes". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMinutes; - -/// -/// Initializes union class with tag state of "months". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMonths; - -/// -/// Initializes union class with tag state of "seconds". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSeconds; - -/// -/// Initializes union class with tag state of "weeks". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWeeks; - -/// -/// Initializes union class with tag state of "years". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithYears; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "days". -/// -/// @return Whether the union's current tag state has value "days". -/// -- (BOOL)isDays; - -/// -/// Retrieves whether the union's current tag state has value "hours". -/// -/// @return Whether the union's current tag state has value "hours". -/// -- (BOOL)isHours; - -/// -/// Retrieves whether the union's current tag state has value "milliseconds". -/// -/// @return Whether the union's current tag state has value "milliseconds". -/// -- (BOOL)isMilliseconds; - -/// -/// Retrieves whether the union's current tag state has value "minutes". -/// -/// @return Whether the union's current tag state has value "minutes". -/// -- (BOOL)isMinutes; - -/// -/// Retrieves whether the union's current tag state has value "months". -/// -/// @return Whether the union's current tag state has value "months". -/// -- (BOOL)isMonths; - -/// -/// Retrieves whether the union's current tag state has value "seconds". -/// -/// @return Whether the union's current tag state has value "seconds". -/// -- (BOOL)isSeconds; - -/// -/// Retrieves whether the union's current tag state has value "weeks". -/// -/// @return Whether the union's current tag state has value "weeks". -/// -- (BOOL)isWeeks; - -/// -/// Retrieves whether the union's current tag state has value "years". -/// -/// @return Whether the union's current tag state has value "years". -/// -- (BOOL)isYears; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTimeUnit` union. -/// -@interface DBTEAMLOGTimeUnitSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTimeUnit` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTimeUnit` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTimeUnit` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTimeUnit *)instance; - -/// -/// Deserializes `DBTEAMLOGTimeUnit` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTimeUnit` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTimeUnit` object. -/// -+ (DBTEAMLOGTimeUnit *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedNonTeamMemberLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedNonTeamMemberLogInfo.h deleted file mode 100644 index 59060112..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedNonTeamMemberLogInfo.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGUserLogInfo.h" - -@class DBTEAMLOGTeamLogInfo; -@class DBTEAMLOGTrustedNonTeamMemberLogInfo; -@class DBTEAMLOGTrustedNonTeamMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedNonTeamMemberLogInfo` struct. -/// -/// User that is not a member of the team but considered trusted. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedNonTeamMemberLogInfo : DBTEAMLOGUserLogInfo - -#pragma mark - Instance fields - -/// Indicates the type of the member of a trusted team. -@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberType *trustedNonTeamMemberType; - -/// Details about this user's trusted team. -@property (nonatomic, readonly, nullable) DBTEAMLOGTeamLogInfo *team; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param trustedNonTeamMemberType Indicates the type of the member of a -/// trusted team. -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// @param team Details about this user's trusted team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedNonTeamMemberType:(DBTEAMLOGTrustedNonTeamMemberType *)trustedNonTeamMemberType - accountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email - team:(nullable DBTEAMLOGTeamLogInfo *)team; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param trustedNonTeamMemberType Indicates the type of the member of a -/// trusted team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTrustedNonTeamMemberType:(DBTEAMLOGTrustedNonTeamMemberType *)trustedNonTeamMemberType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TrustedNonTeamMemberLogInfo` struct. -/// -@interface DBTEAMLOGTrustedNonTeamMemberLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedNonTeamMemberLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedNonTeamMemberLogInfo` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedNonTeamMemberLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedNonTeamMemberLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedNonTeamMemberLogInfo` -/// object. -/// -+ (DBTEAMLOGTrustedNonTeamMemberLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedNonTeamMemberType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedNonTeamMemberType.h deleted file mode 100644 index 6e8ce374..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedNonTeamMemberType.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTrustedNonTeamMemberType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedNonTeamMemberType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedNonTeamMemberType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTrustedNonTeamMemberTypeTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGTrustedNonTeamMemberType` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTrustedNonTeamMemberTypeTag) { - /// (no description). - DBTEAMLOGTrustedNonTeamMemberTypeEnterpriseAdmin, - - /// (no description). - DBTEAMLOGTrustedNonTeamMemberTypeMultiInstanceAdmin, - - /// (no description). - DBTEAMLOGTrustedNonTeamMemberTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTrustedNonTeamMemberTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enterprise_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnterpriseAdmin; - -/// -/// Initializes union class with tag state of "multi_instance_admin". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMultiInstanceAdmin; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "enterprise_admin". -/// -/// @return Whether the union's current tag state has value "enterprise_admin". -/// -- (BOOL)isEnterpriseAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "multi_instance_admin". -/// -/// @return Whether the union's current tag state has value -/// "multi_instance_admin". -/// -- (BOOL)isMultiInstanceAdmin; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTrustedNonTeamMemberType` union. -/// -@interface DBTEAMLOGTrustedNonTeamMemberTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedNonTeamMemberType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedNonTeamMemberType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedNonTeamMemberType *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedNonTeamMemberType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedNonTeamMemberType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedNonTeamMemberType` object. -/// -+ (DBTEAMLOGTrustedNonTeamMemberType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedTeamsRequestAction.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedTeamsRequestAction.h deleted file mode 100644 index 6ead8760..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedTeamsRequestAction.h +++ /dev/null @@ -1,184 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTrustedTeamsRequestAction; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedTeamsRequestAction` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedTeamsRequestAction : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTrustedTeamsRequestActionTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGTrustedTeamsRequestAction` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTrustedTeamsRequestActionTag) { - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionAccepted, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionDeclined, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionExpired, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionInvited, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionRevoked, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestActionOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestActionTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "accepted". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccepted; - -/// -/// Initializes union class with tag state of "declined". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeclined; - -/// -/// Initializes union class with tag state of "expired". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExpired; - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "revoked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevoked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "accepted". -/// -/// @return Whether the union's current tag state has value "accepted". -/// -- (BOOL)isAccepted; - -/// -/// Retrieves whether the union's current tag state has value "declined". -/// -/// @return Whether the union's current tag state has value "declined". -/// -- (BOOL)isDeclined; - -/// -/// Retrieves whether the union's current tag state has value "expired". -/// -/// @return Whether the union's current tag state has value "expired". -/// -- (BOOL)isExpired; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "revoked". -/// -/// @return Whether the union's current tag state has value "revoked". -/// -- (BOOL)isRevoked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTrustedTeamsRequestAction` union. -/// -@interface DBTEAMLOGTrustedTeamsRequestActionSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedTeamsRequestAction` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedTeamsRequestAction` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestAction` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedTeamsRequestAction *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedTeamsRequestAction` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestAction` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedTeamsRequestAction` object. -/// -+ (DBTEAMLOGTrustedTeamsRequestAction *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedTeamsRequestState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedTeamsRequestState.h deleted file mode 100644 index 97330fb9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTrustedTeamsRequestState.h +++ /dev/null @@ -1,150 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTrustedTeamsRequestState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TrustedTeamsRequestState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTrustedTeamsRequestState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTrustedTeamsRequestStateTag` enum type represents the possible -/// tag states with which the `DBTEAMLOGTrustedTeamsRequestState` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTrustedTeamsRequestStateTag) { - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateInvited, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateLinked, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateUnlinked, - - /// (no description). - DBTEAMLOGTrustedTeamsRequestStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTrustedTeamsRequestStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invited". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "linked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinked; - -/// -/// Initializes union class with tag state of "unlinked". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinked; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "linked". -/// -/// @return Whether the union's current tag state has value "linked". -/// -- (BOOL)isLinked; - -/// -/// Retrieves whether the union's current tag state has value "unlinked". -/// -/// @return Whether the union's current tag state has value "unlinked". -/// -- (BOOL)isUnlinked; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTrustedTeamsRequestState` union. -/// -@interface DBTEAMLOGTrustedTeamsRequestStateSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTrustedTeamsRequestState` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTrustedTeamsRequestState` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTrustedTeamsRequestState *)instance; - -/// -/// Deserializes `DBTEAMLOGTrustedTeamsRequestState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTrustedTeamsRequestState` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTrustedTeamsRequestState` object. -/// -+ (DBTEAMLOGTrustedTeamsRequestState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountChangePolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountChangePolicyDetails.h deleted file mode 100644 index 4e368dae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountChangePolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTwoAccountChangePolicyDetails; -@class DBTEAMLOGTwoAccountPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoAccountChangePolicyDetails` struct. -/// -/// Enabled/disabled option for members to link personal Dropbox account and -/// team account to same computer. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTwoAccountChangePolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New two account policy. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountPolicy *dNewValue; - -/// Previous two account policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGTwoAccountPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New two account policy. -/// @param previousValue Previous two account policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTwoAccountPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGTwoAccountPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewValue New two account policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGTwoAccountPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TwoAccountChangePolicyDetails` struct. -/// -@interface DBTEAMLOGTwoAccountChangePolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTwoAccountChangePolicyDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTwoAccountChangePolicyDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTwoAccountChangePolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGTwoAccountChangePolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTwoAccountChangePolicyDetails` -/// object. -/// -+ (DBTEAMLOGTwoAccountChangePolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountChangePolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountChangePolicyType.h deleted file mode 100644 index 3b2115c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountChangePolicyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTwoAccountChangePolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoAccountChangePolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTwoAccountChangePolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TwoAccountChangePolicyType` struct. -/// -@interface DBTEAMLOGTwoAccountChangePolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTwoAccountChangePolicyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTwoAccountChangePolicyType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTwoAccountChangePolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGTwoAccountChangePolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountChangePolicyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTwoAccountChangePolicyType` -/// object. -/// -+ (DBTEAMLOGTwoAccountChangePolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountPolicy.h deleted file mode 100644 index df3982db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGTwoAccountPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGTwoAccountPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoAccountPolicy` union. -/// -/// Policy for pairing personal account to work account -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGTwoAccountPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGTwoAccountPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGTwoAccountPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGTwoAccountPolicyTag) { - /// (no description). - DBTEAMLOGTwoAccountPolicyDisabled, - - /// (no description). - DBTEAMLOGTwoAccountPolicyEnabled, - - /// (no description). - DBTEAMLOGTwoAccountPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGTwoAccountPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGTwoAccountPolicy` union. -/// -@interface DBTEAMLOGTwoAccountPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGTwoAccountPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGTwoAccountPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGTwoAccountPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGTwoAccountPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGTwoAccountPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGTwoAccountPolicy` object. -/// -+ (DBTEAMLOGTwoAccountPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoNamingConventionDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoNamingConventionDetails.h deleted file mode 100644 index 28d802ee..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoNamingConventionDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoNamingConventionDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoNamingConventionDetails` struct. -/// -/// Reverted naming convention. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoNamingConventionDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoNamingConventionDetails` struct. -/// -@interface DBTEAMLOGUndoNamingConventionDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoNamingConventionDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUndoNamingConventionDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoNamingConventionDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoNamingConventionDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoNamingConventionDetails` -/// object. -/// -+ (DBTEAMLOGUndoNamingConventionDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoNamingConventionType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoNamingConventionType.h deleted file mode 100644 index 822af2a2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoNamingConventionType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoNamingConventionType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoNamingConventionType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoNamingConventionType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoNamingConventionType` struct. -/// -@interface DBTEAMLOGUndoNamingConventionTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoNamingConventionType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUndoNamingConventionType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoNamingConventionType *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoNamingConventionType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoNamingConventionType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoNamingConventionType` object. -/// -+ (DBTEAMLOGUndoNamingConventionType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h deleted file mode 100644 index 1b40d89f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyDetails.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoOrganizeFolderWithTidyDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoOrganizeFolderWithTidyDetails` struct. -/// -/// Removed multi-file organize. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyDetails : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoOrganizeFolderWithTidyDetails` struct. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoOrganizeFolderWithTidyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoOrganizeFolderWithTidyDetails` -/// object. -/// -+ (DBTEAMLOGUndoOrganizeFolderWithTidyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyType.h deleted file mode 100644 index 346a0749..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUndoOrganizeFolderWithTidyType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUndoOrganizeFolderWithTidyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UndoOrganizeFolderWithTidyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UndoOrganizeFolderWithTidyType` struct. -/// -@interface DBTEAMLOGUndoOrganizeFolderWithTidyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUndoOrganizeFolderWithTidyType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUndoOrganizeFolderWithTidyType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUndoOrganizeFolderWithTidyType *)instance; - -/// -/// Deserializes `DBTEAMLOGUndoOrganizeFolderWithTidyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUndoOrganizeFolderWithTidyType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUndoOrganizeFolderWithTidyType` -/// object. -/// -+ (DBTEAMLOGUndoOrganizeFolderWithTidyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserLinkedAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserLinkedAppLogInfo.h deleted file mode 100644 index f3f0b9c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserLinkedAppLogInfo.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGAppLogInfo.h" - -@class DBTEAMLOGUserLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserLinkedAppLogInfo` struct. -/// -/// User linked app -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserLinkedAppLogInfo : DBTEAMLOGAppLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserLinkedAppLogInfo` struct. -/// -@interface DBTEAMLOGUserLinkedAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserLinkedAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserLinkedAppLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLinkedAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserLinkedAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserLinkedAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLinkedAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserLinkedAppLogInfo` object. -/// -+ (DBTEAMLOGUserLinkedAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserLogInfo.h deleted file mode 100644 index cbe96424..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserLogInfo.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserLogInfo` struct. -/// -/// User's logged information. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserLogInfo : NSObject - -#pragma mark - Instance fields - -/// User unique ID. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -/// User display name. -@property (nonatomic, readonly, copy, nullable) NSString *displayName; - -/// User email address. -@property (nonatomic, readonly, copy, nullable) NSString *email; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId User unique ID. -/// @param displayName User display name. -/// @param email User email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(nullable NSString *)accountId - displayName:(nullable NSString *)displayName - email:(nullable NSString *)email; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserLogInfo` struct. -/// -@interface DBTEAMLOGUserLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserLogInfo` object. -/// -+ (DBTEAMLOGUserLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserNameLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserNameLogInfo.h deleted file mode 100644 index 2439cdea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserNameLogInfo.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserNameLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserNameLogInfo` struct. -/// -/// User's name logged information -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserNameLogInfo : NSObject - -#pragma mark - Instance fields - -/// Given name. -@property (nonatomic, readonly, copy) NSString *givenName; - -/// Surname. -@property (nonatomic, readonly, copy) NSString *surname; - -/// Locale. Might be missing due to historical data gap. -@property (nonatomic, readonly, copy, nullable) NSString *locale; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param givenName Given name. -/// @param surname Surname. -/// @param locale Locale. Might be missing due to historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGivenName:(NSString *)givenName surname:(NSString *)surname locale:(nullable NSString *)locale; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param givenName Given name. -/// @param surname Surname. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGivenName:(NSString *)givenName surname:(NSString *)surname; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserNameLogInfo` struct. -/// -@interface DBTEAMLOGUserNameLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserNameLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserNameLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserNameLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserNameLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserNameLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserNameLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserNameLogInfo` object. -/// -+ (DBTEAMLOGUserNameLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserOrTeamLinkedAppLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserOrTeamLinkedAppLogInfo.h deleted file mode 100644 index 8e3ea2f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserOrTeamLinkedAppLogInfo.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGAppLogInfo.h" - -@class DBTEAMLOGUserOrTeamLinkedAppLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserOrTeamLinkedAppLogInfo` struct. -/// -/// User or team linked app. Used when linked type is missing due to historical -/// data gap. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserOrTeamLinkedAppLogInfo : DBTEAMLOGAppLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId App unique ID. -/// @param displayName App display name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(nullable NSString *)appId displayName:(nullable NSString *)displayName; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserOrTeamLinkedAppLogInfo` struct. -/// -@interface DBTEAMLOGUserOrTeamLinkedAppLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserOrTeamLinkedAppLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserOrTeamLinkedAppLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserOrTeamLinkedAppLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserOrTeamLinkedAppLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGUserOrTeamLinkedAppLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserOrTeamLinkedAppLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserOrTeamLinkedAppLogInfo` -/// object. -/// -+ (DBTEAMLOGUserOrTeamLinkedAppLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsAddedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsAddedDetails.h deleted file mode 100644 index a096cfe2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsAddedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsAddedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsAddedDetails` struct. -/// -/// Tagged a file. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsAddedDetails : NSObject - -#pragma mark - Instance fields - -/// values. -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values values. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsAddedDetails` struct. -/// -@interface DBTEAMLOGUserTagsAddedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsAddedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsAddedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsAddedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsAddedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsAddedDetails` object. -/// -+ (DBTEAMLOGUserTagsAddedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsAddedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsAddedType.h deleted file mode 100644 index 131f79a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsAddedType.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsAddedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsAddedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsAddedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsAddedType` struct. -/// -@interface DBTEAMLOGUserTagsAddedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsAddedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsAddedType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsAddedType *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsAddedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsAddedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsAddedType` object. -/// -+ (DBTEAMLOGUserTagsAddedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsRemovedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsRemovedDetails.h deleted file mode 100644 index 747650f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsRemovedDetails.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsRemovedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsRemovedDetails` struct. -/// -/// Removed tags. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsRemovedDetails : NSObject - -#pragma mark - Instance fields - -/// values. -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values values. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsRemovedDetails` struct. -/// -@interface DBTEAMLOGUserTagsRemovedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsRemovedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsRemovedDetails` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsRemovedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsRemovedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsRemovedDetails` object. -/// -+ (DBTEAMLOGUserTagsRemovedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsRemovedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsRemovedType.h deleted file mode 100644 index 2460a219..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGUserTagsRemovedType.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGUserTagsRemovedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserTagsRemovedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGUserTagsRemovedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserTagsRemovedType` struct. -/// -@interface DBTEAMLOGUserTagsRemovedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGUserTagsRemovedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGUserTagsRemovedType` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGUserTagsRemovedType *)instance; - -/// -/// Deserializes `DBTEAMLOGUserTagsRemovedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGUserTagsRemovedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGUserTagsRemovedType` object. -/// -+ (DBTEAMLOGUserTagsRemovedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGViewerInfoPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGViewerInfoPolicyChangedDetails.h deleted file mode 100644 index 25c432b0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGViewerInfoPolicyChangedDetails.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGPassPolicy; -@class DBTEAMLOGViewerInfoPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ViewerInfoPolicyChangedDetails` struct. -/// -/// Changed team policy for viewer info. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// Previous Viewer Info policy. -@property (nonatomic, readonly) DBTEAMLOGPassPolicy *previousValue; - -/// New Viewer Info policy. -@property (nonatomic, readonly) DBTEAMLOGPassPolicy *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous Viewer Info policy. -/// @param dNewValue New Viewer Info policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(DBTEAMLOGPassPolicy *)previousValue dNewValue:(DBTEAMLOGPassPolicy *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ViewerInfoPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGViewerInfoPolicyChangedDetails` instances. -/// -/// @param instance An instance of the `DBTEAMLOGViewerInfoPolicyChangedDetails` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGViewerInfoPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGViewerInfoPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGViewerInfoPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGViewerInfoPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGViewerInfoPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGViewerInfoPolicyChangedType.h deleted file mode 100644 index 64a1534e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGViewerInfoPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGViewerInfoPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ViewerInfoPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ViewerInfoPolicyChangedType` struct. -/// -@interface DBTEAMLOGViewerInfoPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGViewerInfoPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGViewerInfoPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGViewerInfoPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGViewerInfoPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGViewerInfoPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGViewerInfoPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGViewerInfoPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicy.h deleted file mode 100644 index cf992b45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicy.h +++ /dev/null @@ -1,133 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWatermarkingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WatermarkingPolicy` union. -/// -/// Policy for controlling team access to watermarking feature -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWatermarkingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGWatermarkingPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMLOGWatermarkingPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGWatermarkingPolicyTag) { - /// (no description). - DBTEAMLOGWatermarkingPolicyDisabled, - - /// (no description). - DBTEAMLOGWatermarkingPolicyEnabled, - - /// (no description). - DBTEAMLOGWatermarkingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGWatermarkingPolicy` union. -/// -@interface DBTEAMLOGWatermarkingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWatermarkingPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWatermarkingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWatermarkingPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGWatermarkingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWatermarkingPolicy` object. -/// -+ (DBTEAMLOGWatermarkingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicyChangedDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicyChangedDetails.h deleted file mode 100644 index 5a245862..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicyChangedDetails.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWatermarkingPolicy; -@class DBTEAMLOGWatermarkingPolicyChangedDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WatermarkingPolicyChangedDetails` struct. -/// -/// Changed watermarking policy for team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedDetails : NSObject - -#pragma mark - Instance fields - -/// New watermarking policy. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicy *dNewValue; - -/// Previous watermarking policy. -@property (nonatomic, readonly) DBTEAMLOGWatermarkingPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New watermarking policy. -/// @param previousValue Previous watermarking policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(DBTEAMLOGWatermarkingPolicy *)dNewValue - previousValue:(DBTEAMLOGWatermarkingPolicy *)previousValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WatermarkingPolicyChangedDetails` struct. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWatermarkingPolicyChangedDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWatermarkingPolicyChangedDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWatermarkingPolicyChangedDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWatermarkingPolicyChangedDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedDetails` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWatermarkingPolicyChangedDetails` -/// object. -/// -+ (DBTEAMLOGWatermarkingPolicyChangedDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicyChangedType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicyChangedType.h deleted file mode 100644 index fbe4fb75..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWatermarkingPolicyChangedType.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWatermarkingPolicyChangedType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WatermarkingPolicyChangedType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WatermarkingPolicyChangedType` struct. -/// -@interface DBTEAMLOGWatermarkingPolicyChangedTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWatermarkingPolicyChangedType` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWatermarkingPolicyChangedType` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWatermarkingPolicyChangedType *)instance; - -/// -/// Deserializes `DBTEAMLOGWatermarkingPolicyChangedType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWatermarkingPolicyChangedType` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWatermarkingPolicyChangedType` -/// object. -/// -+ (DBTEAMLOGWatermarkingPolicyChangedType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebDeviceSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebDeviceSessionLogInfo.h deleted file mode 100644 index 01e2b536..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebDeviceSessionLogInfo.h +++ /dev/null @@ -1,111 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGDeviceSessionLogInfo.h" - -@class DBTEAMLOGWebDeviceSessionLogInfo; -@class DBTEAMLOGWebSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebDeviceSessionLogInfo` struct. -/// -/// Information on active web sessions -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebDeviceSessionLogInfo : DBTEAMLOGDeviceSessionLogInfo - -#pragma mark - Instance fields - -/// Web session unique id. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionLogInfo *sessionInfo; - -/// Information on the hosting device. -@property (nonatomic, readonly, copy) NSString *userAgent; - -/// Information on the hosting operating system. -@property (nonatomic, readonly, copy) NSString *os; - -/// Information on the browser used for this web session. -@property (nonatomic, readonly, copy) NSString *browser; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// @param ipAddress The IP address of the last activity from this session. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param sessionInfo Web session unique id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAgent:(NSString *)userAgent - os:(NSString *)os - browser:(NSString *)browser - ipAddress:(nullable NSString *)ipAddress - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - sessionInfo:(nullable DBTEAMLOGWebSessionLogInfo *)sessionInfo; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param userAgent Information on the hosting device. -/// @param os Information on the hosting operating system. -/// @param browser Information on the browser used for this web session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAgent:(NSString *)userAgent os:(NSString *)os browser:(NSString *)browser; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebDeviceSessionLogInfo` struct. -/// -@interface DBTEAMLOGWebDeviceSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebDeviceSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebDeviceSessionLogInfo` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebDeviceSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebDeviceSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGWebDeviceSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebDeviceSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebDeviceSessionLogInfo` object. -/// -+ (DBTEAMLOGWebDeviceSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionLogInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionLogInfo.h deleted file mode 100644 index d68938c3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionLogInfo.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMLOGSessionLogInfo.h" - -@class DBTEAMLOGWebSessionLogInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionLogInfo` struct. -/// -/// Web session. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionLogInfo : DBTEAMLOGSessionLogInfo - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId Session ID. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(nullable NSString *)sessionId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionLogInfo` struct. -/// -@interface DBTEAMLOGWebSessionLogInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionLogInfo` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebSessionLogInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionLogInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionLogInfo *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionLogInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionLogInfo` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebSessionLogInfo` object. -/// -+ (DBTEAMLOGWebSessionLogInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h deleted file mode 100644 index 4619926f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails.h +++ /dev/null @@ -1,86 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeActiveSessionLimitDetails` struct. -/// -/// Changed limit on active sessions per member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails : NSObject - -#pragma mark - Instance fields - -/// Previous max number of concurrent active sessions policy. -@property (nonatomic, readonly, copy) NSString *previousValue; - -/// New max number of concurrent active sessions policy. -@property (nonatomic, readonly, copy) NSString *dNewValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param previousValue Previous max number of concurrent active sessions -/// policy. -/// @param dNewValue New max number of concurrent active sessions policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPreviousValue:(NSString *)previousValue dNewValue:(NSString *)dNewValue; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeActiveSessionLimitDetails` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails` object. -/// -+ (DBTEAMLOGWebSessionsChangeActiveSessionLimitDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h deleted file mode 100644 index f805c8b7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeActiveSessionLimitType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeActiveSessionLimitType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeActiveSessionLimitType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeActiveSessionLimitType` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeActiveSessionLimitTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeActiveSessionLimitType *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeActiveSessionLimitType` object. -/// -+ (DBTEAMLOGWebSessionsChangeActiveSessionLimitType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h deleted file mode 100644 index da4a1090..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails; -@class DBTEAMLOGWebSessionsFixedLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeFixedLengthPolicyDetails` struct. -/// -/// Changed how long members can stay signed in to Dropbox.com. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New session length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsFixedLengthPolicy *dNewValue; - -/// Previous session length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsFixedLengthPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New session length policy. Might be missing due to -/// historical data gap. -/// @param previousValue Previous session length policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGWebSessionsFixedLengthPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGWebSessionsFixedLengthPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeFixedLengthPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails` object. -/// -+ (DBTEAMLOGWebSessionsChangeFixedLengthPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h deleted file mode 100644 index 4dcaf3cc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeFixedLengthPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeFixedLengthPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeFixedLengthPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeFixedLengthPolicyType` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeFixedLengthPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeFixedLengthPolicyType` object. -/// -+ (DBTEAMLOGWebSessionsChangeFixedLengthPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h deleted file mode 100644 index 3d1c5943..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails; -@class DBTEAMLOGWebSessionsIdleLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeIdleLengthPolicyDetails` struct. -/// -/// Changed how long team members can be idle while signed in to Dropbox.com. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails : NSObject - -#pragma mark - Instance fields - -/// New idle length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsIdleLengthPolicy *dNewValue; - -/// Previous idle length policy. Might be missing due to historical data gap. -@property (nonatomic, readonly, nullable) DBTEAMLOGWebSessionsIdleLengthPolicy *previousValue; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewValue New idle length policy. Might be missing due to historical -/// data gap. -/// @param previousValue Previous idle length policy. Might be missing due to -/// historical data gap. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewValue:(nullable DBTEAMLOGWebSessionsIdleLengthPolicy *)dNewValue - previousValue:(nullable DBTEAMLOGWebSessionsIdleLengthPolicy *)previousValue; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeIdleLengthPolicyDetails` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetailsSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails` object. -/// -+ (DBTEAMLOGWebSessionsChangeIdleLengthPolicyDetails *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h deleted file mode 100644 index c5cf47ab..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsChangeIdleLengthPolicyType.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGWebSessionsChangeIdleLengthPolicyType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsChangeIdleLengthPolicyType` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyType : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param description_ (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDescription_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `WebSessionsChangeIdleLengthPolicyType` -/// struct. -/// -@interface DBTEAMLOGWebSessionsChangeIdleLengthPolicyTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLOGWebSessionsChangeIdleLengthPolicyType` object. -/// -+ (DBTEAMLOGWebSessionsChangeIdleLengthPolicyType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsFixedLengthPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsFixedLengthPolicy.h deleted file mode 100644 index ea3b65d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsFixedLengthPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGWebSessionsFixedLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsFixedLengthPolicy` union. -/// -/// Web sessions fixed length policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsFixedLengthPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGWebSessionsFixedLengthPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGWebSessionsFixedLengthPolicyTag) { - /// Defined fixed session length. - DBTEAMLOGWebSessionsFixedLengthPolicyDefined, - - /// Undefined fixed session length. - DBTEAMLOGWebSessionsFixedLengthPolicyUndefined, - - /// (no description). - DBTEAMLOGWebSessionsFixedLengthPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsFixedLengthPolicyTag tag; - -/// Defined fixed session length. @note Ensure the `isDefined` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *defined; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "defined". -/// -/// Description of the "defined" tag state: Defined fixed session length. -/// -/// @param defined Defined fixed session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefined:(DBTEAMLOGDurationLogInfo *)defined; - -/// -/// Initializes union class with tag state of "undefined". -/// -/// Description of the "undefined" tag state: Undefined fixed session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndefined; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "defined". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `defined` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "defined". -/// -- (BOOL)isDefined; - -/// -/// Retrieves whether the union's current tag state has value "undefined". -/// -/// @return Whether the union's current tag state has value "undefined". -/// -- (BOOL)isUndefined; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// union. -/// -@interface DBTEAMLOGWebSessionsFixedLengthPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsFixedLengthPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsFixedLengthPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsFixedLengthPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsFixedLengthPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsFixedLengthPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebSessionsFixedLengthPolicy` -/// object. -/// -+ (DBTEAMLOGWebSessionsFixedLengthPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsIdleLengthPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsIdleLengthPolicy.h deleted file mode 100644 index 1905d9f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLOGWebSessionsIdleLengthPolicy.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLOGDurationLogInfo; -@class DBTEAMLOGWebSessionsIdleLengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `WebSessionsIdleLengthPolicy` union. -/// -/// Web sessions idle length policy. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLOGWebSessionsIdleLengthPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLOGWebSessionsIdleLengthPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLOGWebSessionsIdleLengthPolicyTag) { - /// Defined idle session length. - DBTEAMLOGWebSessionsIdleLengthPolicyDefined, - - /// Undefined idle session length. - DBTEAMLOGWebSessionsIdleLengthPolicyUndefined, - - /// (no description). - DBTEAMLOGWebSessionsIdleLengthPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLOGWebSessionsIdleLengthPolicyTag tag; - -/// Defined idle session length. @note Ensure the `isDefined` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMLOGDurationLogInfo *defined; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "defined". -/// -/// Description of the "defined" tag state: Defined idle session length. -/// -/// @param defined Defined idle session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefined:(DBTEAMLOGDurationLogInfo *)defined; - -/// -/// Initializes union class with tag state of "undefined". -/// -/// Description of the "undefined" tag state: Undefined idle session length. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUndefined; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "defined". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `defined` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "defined". -/// -- (BOOL)isDefined; - -/// -/// Retrieves whether the union's current tag state has value "undefined". -/// -/// @return Whether the union's current tag state has value "undefined". -/// -- (BOOL)isUndefined; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// union. -/// -@interface DBTEAMLOGWebSessionsIdleLengthPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLOGWebSessionsIdleLengthPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsIdleLengthPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLOGWebSessionsIdleLengthPolicy *)instance; - -/// -/// Deserializes `DBTEAMLOGWebSessionsIdleLengthPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLOGWebSessionsIdleLengthPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLOGWebSessionsIdleLengthPolicy` -/// object. -/// -+ (DBTEAMLOGWebSessionsIdleLengthPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldHeldRevisionMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldHeldRevisionMetadata.h deleted file mode 100644 index 920030a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldHeldRevisionMetadata.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldHeldRevisionMetadata; -@class DBTEAMTeamMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldHeldRevisionMetadata` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldHeldRevisionMetadata : NSObject - -#pragma mark - Instance fields - -/// The held revision filename. -@property (nonatomic, readonly, copy) NSString *dNewFilename; - -/// The id of the held revision. -@property (nonatomic, readonly, copy) NSString *originalRevisionId; - -/// The original path of the held revision. -@property (nonatomic, readonly, copy) NSString *originalFilePath; - -/// The last time the file was modified on Dropbox. -@property (nonatomic, readonly) NSDate *serverModified; - -/// The member id of the revision's author. -@property (nonatomic, readonly, copy) NSString *authorMemberId; - -/// The member status of the revision's author. -@property (nonatomic, readonly) DBTEAMTeamMemberStatus *authorMemberStatus; - -/// The email address of the held revision author. -@property (nonatomic, readonly, copy) NSString *authorEmail; - -/// The type of the held revision's file. -@property (nonatomic, readonly, copy) NSString *fileType; - -/// The file size in bytes. -@property (nonatomic, readonly) NSNumber *size; - -/// A hash of the file content. This field can be used to verify data integrity. -/// For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -@property (nonatomic, readonly, copy) NSString *contentHash; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewFilename The held revision filename. -/// @param originalRevisionId The id of the held revision. -/// @param originalFilePath The original path of the held revision. -/// @param serverModified The last time the file was modified on Dropbox. -/// @param authorMemberId The member id of the revision's author. -/// @param authorMemberStatus The member status of the revision's author. -/// @param authorEmail The email address of the held revision author. -/// @param fileType The type of the held revision's file. -/// @param size The file size in bytes. -/// @param contentHash A hash of the file content. This field can be used to -/// verify data integrity. For more information see our Content hash -/// https://www.dropbox.com/developers/reference/content-hash page. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewFilename:(NSString *)dNewFilename - originalRevisionId:(NSString *)originalRevisionId - originalFilePath:(NSString *)originalFilePath - serverModified:(NSDate *)serverModified - authorMemberId:(NSString *)authorMemberId - authorMemberStatus:(DBTEAMTeamMemberStatus *)authorMemberStatus - authorEmail:(NSString *)authorEmail - fileType:(NSString *)fileType - size:(NSNumber *)size - contentHash:(NSString *)contentHash; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldHeldRevisionMetadata` struct. -/// -@interface DBTEAMLegalHoldHeldRevisionMetadataSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldHeldRevisionMetadata` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldHeldRevisionMetadata` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldHeldRevisionMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldHeldRevisionMetadata *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldHeldRevisionMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldHeldRevisionMetadata` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldHeldRevisionMetadata` -/// object. -/// -+ (DBTEAMLegalHoldHeldRevisionMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldPolicy.h deleted file mode 100644 index 5c8cf4b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldPolicy.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldPolicy; -@class DBTEAMLegalHoldStatus; -@class DBTEAMMembersInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldPolicy` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldPolicy : NSObject - -#pragma mark - Instance fields - -/// The legal hold id. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// A description of the legal hold policy. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// The time at which the legal hold was activated. -@property (nonatomic, readonly, nullable) NSDate *activationTime; - -/// Team members IDs and number of permanently deleted members under hold. -@property (nonatomic, readonly) DBTEAMMembersInfo *members; - -/// The current state of the hold. -@property (nonatomic, readonly) DBTEAMLegalHoldStatus *status; - -/// Start date of the legal hold policy. -@property (nonatomic, readonly) NSDate *startDate; - -/// End date of the legal hold policy. -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold id. -/// @param name Policy name. -/// @param members Team members IDs and number of permanently deleted members -/// under hold. -/// @param status The current state of the hold. -/// @param startDate Start date of the legal hold policy. -/// @param description_ A description of the legal hold policy. -/// @param activationTime The time at which the legal hold was activated. -/// @param endDate End date of the legal hold policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - members:(DBTEAMMembersInfo *)members - status:(DBTEAMLegalHoldStatus *)status - startDate:(NSDate *)startDate - description_:(nullable NSString *)description_ - activationTime:(nullable NSDate *)activationTime - endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The legal hold id. -/// @param name Policy name. -/// @param members Team members IDs and number of permanently deleted members -/// under hold. -/// @param status The current state of the hold. -/// @param startDate Start date of the legal hold policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - members:(DBTEAMMembersInfo *)members - status:(DBTEAMLegalHoldStatus *)status - startDate:(NSDate *)startDate; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldPolicy` struct. -/// -@interface DBTEAMLegalHoldPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldPolicy *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldPolicy` object. -/// -+ (DBTEAMLegalHoldPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldStatus.h deleted file mode 100644 index 003b5e06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldStatus.h +++ /dev/null @@ -1,214 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMLegalHoldStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldStatusTag) { - /// The legal hold policy is active. - DBTEAMLegalHoldStatusActive, - - /// The legal hold policy was released. - DBTEAMLegalHoldStatusReleased, - - /// The legal hold policy is activating. - DBTEAMLegalHoldStatusActivating, - - /// The legal hold policy is updating. - DBTEAMLegalHoldStatusUpdating, - - /// The legal hold policy is exporting. - DBTEAMLegalHoldStatusExporting, - - /// The legal hold policy is releasing. - DBTEAMLegalHoldStatusReleasing, - - /// (no description). - DBTEAMLegalHoldStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: The legal hold policy is active. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "released". -/// -/// Description of the "released" tag state: The legal hold policy was released. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReleased; - -/// -/// Initializes union class with tag state of "activating". -/// -/// Description of the "activating" tag state: The legal hold policy is -/// activating. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActivating; - -/// -/// Initializes union class with tag state of "updating". -/// -/// Description of the "updating" tag state: The legal hold policy is updating. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUpdating; - -/// -/// Initializes union class with tag state of "exporting". -/// -/// Description of the "exporting" tag state: The legal hold policy is -/// exporting. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExporting; - -/// -/// Initializes union class with tag state of "releasing". -/// -/// Description of the "releasing" tag state: The legal hold policy is -/// releasing. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReleasing; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "released". -/// -/// @return Whether the union's current tag state has value "released". -/// -- (BOOL)isReleased; - -/// -/// Retrieves whether the union's current tag state has value "activating". -/// -/// @return Whether the union's current tag state has value "activating". -/// -- (BOOL)isActivating; - -/// -/// Retrieves whether the union's current tag state has value "updating". -/// -/// @return Whether the union's current tag state has value "updating". -/// -- (BOOL)isUpdating; - -/// -/// Retrieves whether the union's current tag state has value "exporting". -/// -/// @return Whether the union's current tag state has value "exporting". -/// -- (BOOL)isExporting; - -/// -/// Retrieves whether the union's current tag state has value "releasing". -/// -/// @return Whether the union's current tag state has value "releasing". -/// -- (BOOL)isReleasing; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldStatus` union. -/// -@interface DBTEAMLegalHoldStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldStatus` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldStatus *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldStatus` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldStatus` object. -/// -+ (DBTEAMLegalHoldStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsError.h deleted file mode 100644 index d84a71eb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsError.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMLegalHoldsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsError` union. -/// -@interface DBTEAMLegalHoldsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsError` object. -/// -+ (DBTEAMLegalHoldsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsGetPolicyArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsGetPolicyArg.h deleted file mode 100644 index 6d979154..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsGetPolicyArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsGetPolicyArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsGetPolicyArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsGetPolicyArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsGetPolicyArg` struct. -/// -@interface DBTEAMLegalHoldsGetPolicyArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsGetPolicyArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsGetPolicyArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsGetPolicyArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsGetPolicyArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsGetPolicyArg` object. -/// -+ (DBTEAMLegalHoldsGetPolicyArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsGetPolicyError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsGetPolicyError.h deleted file mode 100644 index 1819af0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsGetPolicyError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsGetPolicyError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsGetPolicyError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsGetPolicyError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsGetPolicyErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsGetPolicyError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsGetPolicyErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsGetPolicyErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsGetPolicyErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsGetPolicyErrorOther, - - /// Legal hold policy does not exist for `id_` in - /// `DBTEAMLegalHoldsGetPolicyArg`. - DBTEAMLegalHoldsGetPolicyErrorLegalHoldPolicyNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsGetPolicyErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "legal_hold_policy_not_found". -/// -/// Description of the "legal_hold_policy_not_found" tag state: Legal hold -/// policy does not exist for `id_` in `DBTEAMLegalHoldsGetPolicyArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPolicyNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -- (BOOL)isLegalHoldPolicyNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsGetPolicyError` union. -/// -@interface DBTEAMLegalHoldsGetPolicyErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsGetPolicyError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsGetPolicyError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsGetPolicyError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsGetPolicyError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsGetPolicyError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsGetPolicyError` object. -/// -+ (DBTEAMLegalHoldsGetPolicyError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionResult.h deleted file mode 100644 index 5a294055..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionResult.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldHeldRevisionMetadata; -@class DBTEAMLegalHoldsListHeldRevisionResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionResult : NSObject - -#pragma mark - Instance fields - -/// List of file entries that under the hold. -@property (nonatomic, readonly) NSArray *entries; - -/// The cursor idicates where to continue reading file metadata entries for the -/// next API call. When there are no more entries, the cursor will return none. -/// Pass the cursor into /2/team/legal_holds/list_held_revisions/continue. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// True if there are more file entries that haven't been returned. You can -/// retrieve them with a call to /legal_holds/list_held_revisions_continue. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param entries List of file entries that under the hold. -/// @param hasMore True if there are more file entries that haven't been -/// returned. You can retrieve them with a call to -/// /legal_holds/list_held_revisions_continue. -/// @param cursor The cursor idicates where to continue reading file metadata -/// entries for the next API call. When there are no more entries, the cursor -/// will return none. Pass the cursor into -/// /2/team/legal_holds/list_held_revisions/continue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param entries List of file entries that under the hold. -/// @param hasMore True if there are more file entries that haven't been -/// returned. You can retrieve them with a call to -/// /legal_holds/list_held_revisions_continue. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntries:(NSArray *)entries hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListHeldRevisionResult` struct. -/// -@interface DBTEAMLegalHoldsListHeldRevisionResultSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionResult` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListHeldRevisionResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionResult *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionResult` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListHeldRevisionResult` -/// object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsArg.h deleted file mode 100644 index 0143fece..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListHeldRevisionsArg` struct. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListHeldRevisionsArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListHeldRevisionsArg` -/// object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueArg.h deleted file mode 100644 index 5e91f526..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueArg.h +++ /dev/null @@ -1,95 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The cursor idicates where to continue reading file metadata entries for the -/// next API call. When there are no more entries, the cursor will return none. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// @param cursor The cursor idicates where to continue reading file metadata -/// entries for the next API call. When there are no more entries, the cursor -/// will return none. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListHeldRevisionsContinueArg` -/// struct. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsContinueArg` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsContinueArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueArg` object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueError.h deleted file mode 100644 index e214e260..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsContinueError.h +++ /dev/null @@ -1,166 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsListHeldRevisionsContinueErrorTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsListHeldRevisionsContinueErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsListHeldRevisionsContinueErrorUnknownLegalHoldError, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsListHeldRevisionsContinueErrorTransientError, - - /// Indicates that the cursor has been invalidated. Call - /// `legalHoldsListHeldRevisionsContinue` again with an empty cursor to - /// obtain a new cursor. - DBTEAMLegalHoldsListHeldRevisionsContinueErrorReset, - - /// (no description). - DBTEAMLegalHoldsListHeldRevisionsContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsListHeldRevisionsContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `legalHoldsListHeldRevisionsContinue` again with an empty -/// cursor to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` union. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsContinueError` instances. -/// -/// @param instance An instance of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsContinueError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` API object. -/// -/// @return An instantiation of the -/// `DBTEAMLegalHoldsListHeldRevisionsContinueError` object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsError.h deleted file mode 100644 index b7974150..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListHeldRevisionsError.h +++ /dev/null @@ -1,209 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListHeldRevisionsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListHeldRevisionsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsListHeldRevisionsErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMLegalHoldsListHeldRevisionsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsListHeldRevisionsErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsListHeldRevisionsErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsListHeldRevisionsErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsListHeldRevisionsErrorOther, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsListHeldRevisionsErrorTransientError, - - /// The legal hold is not holding any revisions yet. - DBTEAMLegalHoldsListHeldRevisionsErrorLegalHoldStillEmpty, - - /// Trying to list revisions for an inactive legal hold. - DBTEAMLegalHoldsListHeldRevisionsErrorInactiveLegalHold, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsListHeldRevisionsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "legal_hold_still_empty". -/// -/// Description of the "legal_hold_still_empty" tag state: The legal hold is not -/// holding any revisions yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldStillEmpty; - -/// -/// Initializes union class with tag state of "inactive_legal_hold". -/// -/// Description of the "inactive_legal_hold" tag state: Trying to list revisions -/// for an inactive legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInactiveLegalHold; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_still_empty". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_still_empty". -/// -- (BOOL)isLegalHoldStillEmpty; - -/// -/// Retrieves whether the union's current tag state has value -/// "inactive_legal_hold". -/// -/// @return Whether the union's current tag state has value -/// "inactive_legal_hold". -/// -- (BOOL)isInactiveLegalHold; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsListHeldRevisionsError` -/// union. -/// -@interface DBTEAMLegalHoldsListHeldRevisionsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListHeldRevisionsError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListHeldRevisionsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListHeldRevisionsError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListHeldRevisionsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListHeldRevisionsError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListHeldRevisionsError` -/// object. -/// -+ (DBTEAMLegalHoldsListHeldRevisionsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesArg.h deleted file mode 100644 index 38865795..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListPoliciesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListPoliciesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListPoliciesArg : NSObject - -#pragma mark - Instance fields - -/// Whether to return holds that were released. -@property (nonatomic, readonly) NSNumber *includeReleased; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param includeReleased Whether to return holds that were released. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIncludeReleased:(nullable NSNumber *)includeReleased; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListPoliciesArg` struct. -/// -@interface DBTEAMLegalHoldsListPoliciesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListPoliciesArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListPoliciesArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListPoliciesArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListPoliciesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListPoliciesArg` object. -/// -+ (DBTEAMLegalHoldsListPoliciesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesError.h deleted file mode 100644 index d5fcce56..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesError.h +++ /dev/null @@ -1,163 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsListPoliciesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListPoliciesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListPoliciesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsListPoliciesErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsListPoliciesError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsListPoliciesErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsListPoliciesErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsListPoliciesErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsListPoliciesErrorOther, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsListPoliciesErrorTransientError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsListPoliciesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsListPoliciesError` union. -/// -@interface DBTEAMLegalHoldsListPoliciesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListPoliciesError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListPoliciesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListPoliciesError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListPoliciesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListPoliciesError` object. -/// -+ (DBTEAMLegalHoldsListPoliciesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesResult.h deleted file mode 100644 index fc54ba74..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsListPoliciesResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldPolicy; -@class DBTEAMLegalHoldsListPoliciesResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsListPoliciesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsListPoliciesResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *policies; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param policies (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPolicies:(NSArray *)policies; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsListPoliciesResult` struct. -/// -@interface DBTEAMLegalHoldsListPoliciesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsListPoliciesResult` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsListPoliciesResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsListPoliciesResult *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsListPoliciesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsListPoliciesResult` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsListPoliciesResult` object. -/// -+ (DBTEAMLegalHoldsListPoliciesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyCreateArg.h deleted file mode 100644 index e10367d8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyCreateArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyCreateArg : NSObject - -#pragma mark - Instance fields - -/// Policy name. -@property (nonatomic, readonly, copy) NSString *name; - -/// A description of the legal hold policy. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// List of team member IDs added to the hold. -@property (nonatomic, readonly) NSArray *members; - -/// start date of the legal hold policy. -@property (nonatomic, readonly, nullable) NSDate *startDate; - -/// end date of the legal hold policy. -@property (nonatomic, readonly, nullable) NSDate *endDate; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Policy name. -/// @param members List of team member IDs added to the hold. -/// @param description_ A description of the legal hold policy. -/// @param startDate start date of the legal hold policy. -/// @param endDate end date of the legal hold policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - members:(NSArray *)members - description_:(nullable NSString *)description_ - startDate:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name Policy name. -/// @param members List of team member IDs added to the hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name members:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsPolicyCreateArg` struct. -/// -@interface DBTEAMLegalHoldsPolicyCreateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyCreateArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyCreateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyCreateArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyCreateArg` object. -/// -+ (DBTEAMLegalHoldsPolicyCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyCreateError.h deleted file mode 100644 index 3ac3db0d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyCreateError.h +++ /dev/null @@ -1,315 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsPolicyCreateErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsPolicyCreateError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsPolicyCreateErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsPolicyCreateErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsPolicyCreateErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsPolicyCreateErrorOther, - - /// Start date must be earlier than end date. - DBTEAMLegalHoldsPolicyCreateErrorStartDateIsLaterThanEndDate, - - /// The users list must have at least one user. - DBTEAMLegalHoldsPolicyCreateErrorEmptyMembersList, - - /// Some members in the members list are not valid to be placed under legal - /// hold. - DBTEAMLegalHoldsPolicyCreateErrorInvalidMembers, - - /// You cannot add more than 5 users in a legal hold. - DBTEAMLegalHoldsPolicyCreateErrorNumberOfUsersOnHoldIsGreaterThanHoldLimitation, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsPolicyCreateErrorTransientError, - - /// The name provided is already in use by another legal hold. - DBTEAMLegalHoldsPolicyCreateErrorNameMustBeUnique, - - /// Team exceeded legal hold quota. - DBTEAMLegalHoldsPolicyCreateErrorTeamExceededLegalHoldQuota, - - /// The provided date is invalid. - DBTEAMLegalHoldsPolicyCreateErrorInvalidDate, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsPolicyCreateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "start_date_is_later_than_end_date". -/// -/// Description of the "start_date_is_later_than_end_date" tag state: Start date -/// must be earlier than end date. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStartDateIsLaterThanEndDate; - -/// -/// Initializes union class with tag state of "empty_members_list". -/// -/// Description of the "empty_members_list" tag state: The users list must have -/// at least one user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyMembersList; - -/// -/// Initializes union class with tag state of "invalid_members". -/// -/// Description of the "invalid_members" tag state: Some members in the members -/// list are not valid to be placed under legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMembers; - -/// -/// Initializes union class with tag state of -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// Description of the "number_of_users_on_hold_is_greater_than_hold_limitation" -/// tag state: You cannot add more than 5 users in a legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "name_must_be_unique". -/// -/// Description of the "name_must_be_unique" tag state: The name provided is -/// already in use by another legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNameMustBeUnique; - -/// -/// Initializes union class with tag state of "team_exceeded_legal_hold_quota". -/// -/// Description of the "team_exceeded_legal_hold_quota" tag state: Team exceeded -/// legal hold quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamExceededLegalHoldQuota; - -/// -/// Initializes union class with tag state of "invalid_date". -/// -/// Description of the "invalid_date" tag state: The provided date is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidDate; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "start_date_is_later_than_end_date". -/// -/// @return Whether the union's current tag state has value -/// "start_date_is_later_than_end_date". -/// -- (BOOL)isStartDateIsLaterThanEndDate; - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_members_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_members_list". -/// -- (BOOL)isEmptyMembersList; - -/// -/// Retrieves whether the union's current tag state has value "invalid_members". -/// -/// @return Whether the union's current tag state has value "invalid_members". -/// -- (BOOL)isInvalidMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// @return Whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -- (BOOL)isNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "name_must_be_unique". -/// -/// @return Whether the union's current tag state has value -/// "name_must_be_unique". -/// -- (BOOL)isNameMustBeUnique; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_exceeded_legal_hold_quota". -/// -/// @return Whether the union's current tag state has value -/// "team_exceeded_legal_hold_quota". -/// -- (BOOL)isTeamExceededLegalHoldQuota; - -/// -/// Retrieves whether the union's current tag state has value "invalid_date". -/// -/// @return Whether the union's current tag state has value "invalid_date". -/// -- (BOOL)isInvalidDate; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsPolicyCreateError` union. -/// -@interface DBTEAMLegalHoldsPolicyCreateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyCreateError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyCreateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyCreateError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyCreateError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyCreateError` object. -/// -+ (DBTEAMLegalHoldsPolicyCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyReleaseArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyReleaseArg.h deleted file mode 100644 index 5432636d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyReleaseArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyReleaseArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyReleaseArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyReleaseArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsPolicyReleaseArg` struct. -/// -@interface DBTEAMLegalHoldsPolicyReleaseArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyReleaseArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyReleaseArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyReleaseArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyReleaseArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyReleaseArg` object. -/// -+ (DBTEAMLegalHoldsPolicyReleaseArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyReleaseError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyReleaseError.h deleted file mode 100644 index 9dad71fd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyReleaseError.h +++ /dev/null @@ -1,211 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyReleaseError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyReleaseError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyReleaseError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsPolicyReleaseErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMLegalHoldsPolicyReleaseError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsPolicyReleaseErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsPolicyReleaseErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsPolicyReleaseErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsPolicyReleaseErrorOther, - - /// Legal hold is currently performing another operation. - DBTEAMLegalHoldsPolicyReleaseErrorLegalHoldPerformingAnotherOperation, - - /// Legal hold is currently performing a release or is already released. - DBTEAMLegalHoldsPolicyReleaseErrorLegalHoldAlreadyReleasing, - - /// Legal hold policy does not exist for `id_` in - /// `DBTEAMLegalHoldsPolicyReleaseArg`. - DBTEAMLegalHoldsPolicyReleaseErrorLegalHoldPolicyNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsPolicyReleaseErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "legal_hold_performing_another_operation". -/// -/// Description of the "legal_hold_performing_another_operation" tag state: -/// Legal hold is currently performing another operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPerformingAnotherOperation; - -/// -/// Initializes union class with tag state of "legal_hold_already_releasing". -/// -/// Description of the "legal_hold_already_releasing" tag state: Legal hold is -/// currently performing a release or is already released. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldAlreadyReleasing; - -/// -/// Initializes union class with tag state of "legal_hold_policy_not_found". -/// -/// Description of the "legal_hold_policy_not_found" tag state: Legal hold -/// policy does not exist for `id_` in `DBTEAMLegalHoldsPolicyReleaseArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPolicyNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -- (BOOL)isLegalHoldPerformingAnotherOperation; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_already_releasing". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_already_releasing". -/// -- (BOOL)isLegalHoldAlreadyReleasing; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -- (BOOL)isLegalHoldPolicyNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsPolicyReleaseError` union. -/// -@interface DBTEAMLegalHoldsPolicyReleaseErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyReleaseError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyReleaseError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyReleaseError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyReleaseError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyReleaseError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyReleaseError` object. -/// -+ (DBTEAMLegalHoldsPolicyReleaseError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyUpdateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyUpdateArg.h deleted file mode 100644 index 5f0bff01..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyUpdateArg.h +++ /dev/null @@ -1,101 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyUpdateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyUpdateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyUpdateArg : NSObject - -#pragma mark - Instance fields - -/// The legal hold Id. -@property (nonatomic, readonly, copy) NSString *id_; - -/// Policy new name. -@property (nonatomic, readonly, copy, nullable) NSString *name; - -/// Policy new description. -@property (nonatomic, readonly, copy, nullable) NSString *description_; - -/// List of team member IDs to apply the policy on. -@property (nonatomic, readonly, nullable) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The legal hold Id. -/// @param name Policy new name. -/// @param description_ Policy new description. -/// @param members List of team member IDs to apply the policy on. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - members:(nullable NSArray *)members; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param id_ The legal hold Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `LegalHoldsPolicyUpdateArg` struct. -/// -@interface DBTEAMLegalHoldsPolicyUpdateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyUpdateArg` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyUpdateArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyUpdateArg *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyUpdateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateArg` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyUpdateArg` object. -/// -+ (DBTEAMLegalHoldsPolicyUpdateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyUpdateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyUpdateError.h deleted file mode 100644 index 1a8bf55e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMLegalHoldsPolicyUpdateError.h +++ /dev/null @@ -1,319 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMLegalHoldsPolicyUpdateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `LegalHoldsPolicyUpdateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMLegalHoldsPolicyUpdateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMLegalHoldsPolicyUpdateErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMLegalHoldsPolicyUpdateError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMLegalHoldsPolicyUpdateErrorTag) { - /// There has been an unknown legal hold error. - DBTEAMLegalHoldsPolicyUpdateErrorUnknownLegalHoldError, - - /// You don't have permissions to perform this action. - DBTEAMLegalHoldsPolicyUpdateErrorInsufficientPermissions, - - /// (no description). - DBTEAMLegalHoldsPolicyUpdateErrorOther, - - /// Temporary infrastructure failure, please retry. - DBTEAMLegalHoldsPolicyUpdateErrorTransientError, - - /// Trying to release an inactive legal hold. - DBTEAMLegalHoldsPolicyUpdateErrorInactiveLegalHold, - - /// Legal hold is currently performing another operation. - DBTEAMLegalHoldsPolicyUpdateErrorLegalHoldPerformingAnotherOperation, - - /// Some members in the members list are not valid to be placed under legal - /// hold. - DBTEAMLegalHoldsPolicyUpdateErrorInvalidMembers, - - /// You cannot add more than 5 users in a legal hold. - DBTEAMLegalHoldsPolicyUpdateErrorNumberOfUsersOnHoldIsGreaterThanHoldLimitation, - - /// The users list must have at least one user. - DBTEAMLegalHoldsPolicyUpdateErrorEmptyMembersList, - - /// The name provided is already in use by another legal hold. - DBTEAMLegalHoldsPolicyUpdateErrorNameMustBeUnique, - - /// Legal hold policy does not exist for `id_` in - /// `DBTEAMLegalHoldsPolicyUpdateArg`. - DBTEAMLegalHoldsPolicyUpdateErrorLegalHoldPolicyNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMLegalHoldsPolicyUpdateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unknown_legal_hold_error". -/// -/// Description of the "unknown_legal_hold_error" tag state: There has been an -/// unknown legal hold error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownLegalHoldError; - -/// -/// Initializes union class with tag state of "insufficient_permissions". -/// -/// Description of the "insufficient_permissions" tag state: You don't have -/// permissions to perform this action. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInsufficientPermissions; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "transient_error". -/// -/// Description of the "transient_error" tag state: Temporary infrastructure -/// failure, please retry. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransientError; - -/// -/// Initializes union class with tag state of "inactive_legal_hold". -/// -/// Description of the "inactive_legal_hold" tag state: Trying to release an -/// inactive legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInactiveLegalHold; - -/// -/// Initializes union class with tag state of -/// "legal_hold_performing_another_operation". -/// -/// Description of the "legal_hold_performing_another_operation" tag state: -/// Legal hold is currently performing another operation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPerformingAnotherOperation; - -/// -/// Initializes union class with tag state of "invalid_members". -/// -/// Description of the "invalid_members" tag state: Some members in the members -/// list are not valid to be placed under legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidMembers; - -/// -/// Initializes union class with tag state of -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// Description of the "number_of_users_on_hold_is_greater_than_hold_limitation" -/// tag state: You cannot add more than 5 users in a legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Initializes union class with tag state of "empty_members_list". -/// -/// Description of the "empty_members_list" tag state: The users list must have -/// at least one user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyMembersList; - -/// -/// Initializes union class with tag state of "name_must_be_unique". -/// -/// Description of the "name_must_be_unique" tag state: The name provided is -/// already in use by another legal hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNameMustBeUnique; - -/// -/// Initializes union class with tag state of "legal_hold_policy_not_found". -/// -/// Description of the "legal_hold_policy_not_found" tag state: Legal hold -/// policy does not exist for `id_` in `DBTEAMLegalHoldsPolicyUpdateArg`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLegalHoldPolicyNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -/// @return Whether the union's current tag state has value -/// "unknown_legal_hold_error". -/// -- (BOOL)isUnknownLegalHoldError; - -/// -/// Retrieves whether the union's current tag state has value -/// "insufficient_permissions". -/// -/// @return Whether the union's current tag state has value -/// "insufficient_permissions". -/// -- (BOOL)isInsufficientPermissions; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "transient_error". -/// -/// @return Whether the union's current tag state has value "transient_error". -/// -- (BOOL)isTransientError; - -/// -/// Retrieves whether the union's current tag state has value -/// "inactive_legal_hold". -/// -/// @return Whether the union's current tag state has value -/// "inactive_legal_hold". -/// -- (BOOL)isInactiveLegalHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_performing_another_operation". -/// -- (BOOL)isLegalHoldPerformingAnotherOperation; - -/// -/// Retrieves whether the union's current tag state has value "invalid_members". -/// -/// @return Whether the union's current tag state has value "invalid_members". -/// -- (BOOL)isInvalidMembers; - -/// -/// Retrieves whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -/// @return Whether the union's current tag state has value -/// "number_of_users_on_hold_is_greater_than_hold_limitation". -/// -- (BOOL)isNumberOfUsersOnHoldIsGreaterThanHoldLimitation; - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_members_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_members_list". -/// -- (BOOL)isEmptyMembersList; - -/// -/// Retrieves whether the union's current tag state has value -/// "name_must_be_unique". -/// -/// @return Whether the union's current tag state has value -/// "name_must_be_unique". -/// -- (BOOL)isNameMustBeUnique; - -/// -/// Retrieves whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -/// @return Whether the union's current tag state has value -/// "legal_hold_policy_not_found". -/// -- (BOOL)isLegalHoldPolicyNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMLegalHoldsPolicyUpdateError` union. -/// -@interface DBTEAMLegalHoldsPolicyUpdateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMLegalHoldsPolicyUpdateError` instances. -/// -/// @param instance An instance of the `DBTEAMLegalHoldsPolicyUpdateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMLegalHoldsPolicyUpdateError *)instance; - -/// -/// Deserializes `DBTEAMLegalHoldsPolicyUpdateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMLegalHoldsPolicyUpdateError` API object. -/// -/// @return An instantiation of the `DBTEAMLegalHoldsPolicyUpdateError` object. -/// -+ (DBTEAMLegalHoldsPolicyUpdateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsArg.h deleted file mode 100644 index d4da0816..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberAppsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberAppsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberAppsArg : NSObject - -#pragma mark - Instance fields - -/// The team member id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The team member id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberAppsArg` struct. -/// -@interface DBTEAMListMemberAppsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberAppsArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberAppsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberAppsArg *)instance; - -/// -/// Deserializes `DBTEAMListMemberAppsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberAppsArg` object. -/// -+ (DBTEAMListMemberAppsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsError.h deleted file mode 100644 index 2a3730e9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsError.h +++ /dev/null @@ -1,119 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberAppsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberAppsError` union. -/// -/// Error returned by `linkedAppsListMemberLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberAppsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMemberAppsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMemberAppsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMemberAppsErrorTag) { - /// Member not found. - DBTEAMListMemberAppsErrorMemberNotFound, - - /// (no description). - DBTEAMListMemberAppsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMemberAppsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMemberAppsError` union. -/// -@interface DBTEAMListMemberAppsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberAppsError` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberAppsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberAppsError *)instance; - -/// -/// Deserializes `DBTEAMListMemberAppsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsError` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberAppsError` object. -/// -+ (DBTEAMListMemberAppsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsResult.h deleted file mode 100644 index 75421a51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberAppsResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMApiApp; -@class DBTEAMListMemberAppsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberAppsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberAppsResult : NSObject - -#pragma mark - Instance fields - -/// List of third party applications linked by this team member. -@property (nonatomic, readonly) NSArray *linkedApiApps; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param linkedApiApps List of third party applications linked by this team -/// member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLinkedApiApps:(NSArray *)linkedApiApps; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberAppsResult` struct. -/// -@interface DBTEAMListMemberAppsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberAppsResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberAppsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberAppsResult *)instance; - -/// -/// Deserializes `DBTEAMListMemberAppsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberAppsResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberAppsResult` object. -/// -+ (DBTEAMListMemberAppsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesArg.h deleted file mode 100644 index 43da33d2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesArg.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberDevicesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberDevicesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberDevicesArg : NSObject - -#pragma mark - Instance fields - -/// The team's member id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// Whether to list web sessions of the team's member. -@property (nonatomic, readonly) NSNumber *includeWebSessions; - -/// Whether to list linked desktop devices of the team's member. -@property (nonatomic, readonly) NSNumber *includeDesktopClients; - -/// Whether to list linked mobile devices of the team's member. -@property (nonatomic, readonly) NSNumber *includeMobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The team's member id. -/// @param includeWebSessions Whether to list web sessions of the team's member. -/// @param includeDesktopClients Whether to list linked desktop devices of the -/// team's member. -/// @param includeMobileClients Whether to list linked mobile devices of the -/// team's member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId The team's member id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberDevicesArg` struct. -/// -@interface DBTEAMListMemberDevicesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberDevicesArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberDevicesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberDevicesArg *)instance; - -/// -/// Deserializes `DBTEAMListMemberDevicesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberDevicesArg` object. -/// -+ (DBTEAMListMemberDevicesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesError.h deleted file mode 100644 index ac9fea06..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMemberDevicesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberDevicesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberDevicesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMemberDevicesErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMemberDevicesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMemberDevicesErrorTag) { - /// Member not found. - DBTEAMListMemberDevicesErrorMemberNotFound, - - /// (no description). - DBTEAMListMemberDevicesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMemberDevicesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMemberDevicesError` union. -/// -@interface DBTEAMListMemberDevicesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberDevicesError` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberDevicesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberDevicesError *)instance; - -/// -/// Deserializes `DBTEAMListMemberDevicesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesError` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberDevicesError` object. -/// -+ (DBTEAMListMemberDevicesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesResult.h deleted file mode 100644 index e7f617b6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMemberDevicesResult.h +++ /dev/null @@ -1,99 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMActiveWebSession; -@class DBTEAMDesktopClientSession; -@class DBTEAMListMemberDevicesResult; -@class DBTEAMMobileClientSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMemberDevicesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMemberDevicesResult : NSObject - -#pragma mark - Instance fields - -/// List of web sessions made by this team member. -@property (nonatomic, readonly, nullable) NSArray *activeWebSessions; - -/// List of desktop clients used by this team member. -@property (nonatomic, readonly, nullable) NSArray *desktopClientSessions; - -/// List of mobile client used by this team member. -@property (nonatomic, readonly, nullable) NSArray *mobileClientSessions; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param activeWebSessions List of web sessions made by this team member. -/// @param desktopClientSessions List of desktop clients used by this team -/// member. -/// @param mobileClientSessions List of mobile client used by this team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActiveWebSessions:(nullable NSArray *)activeWebSessions - desktopClientSessions:(nullable NSArray *)desktopClientSessions - mobileClientSessions:(nullable NSArray *)mobileClientSessions; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMemberDevicesResult` struct. -/// -@interface DBTEAMListMemberDevicesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMemberDevicesResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMemberDevicesResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMemberDevicesResult *)instance; - -/// -/// Deserializes `DBTEAMListMemberDevicesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMemberDevicesResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMemberDevicesResult` object. -/// -+ (DBTEAMListMemberDevicesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsArg.h deleted file mode 100644 index 3a31c000..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersAppsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersAppsArg` struct. -/// -/// Arguments for `linkedAppsListMembersLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersAppsArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `linkedAppsListMembersLinkedApps` the cursor -/// shouldn't be passed. Then, if the result of the call includes a cursor, the -/// following requests should include the received cursors in order to receive -/// the next sub list of the team applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `linkedAppsListMembersLinkedApps` the -/// cursor shouldn't be passed. Then, if the result of the call includes a -/// cursor, the following requests should include the received cursors in order -/// to receive the next sub list of the team applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersAppsArg` struct. -/// -@interface DBTEAMListMembersAppsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersAppsArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersAppsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersAppsArg *)instance; - -/// -/// Deserializes `DBTEAMListMembersAppsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersAppsArg` object. -/// -+ (DBTEAMListMembersAppsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsError.h deleted file mode 100644 index 9798c3c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersAppsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersAppsError` union. -/// -/// Error returned by `linkedAppsListMembersLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersAppsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMembersAppsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMembersAppsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMembersAppsErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `linkedAppsListMembersLinkedApps` again with an empty cursor to obtain a - /// new cursor. - DBTEAMListMembersAppsErrorReset, - - /// (no description). - DBTEAMListMembersAppsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMembersAppsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `linkedAppsListMembersLinkedApps` again with an empty -/// cursor to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMembersAppsError` union. -/// -@interface DBTEAMListMembersAppsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersAppsError` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersAppsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersAppsError *)instance; - -/// -/// Deserializes `DBTEAMListMembersAppsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsError` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersAppsError` object. -/// -+ (DBTEAMListMembersAppsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsResult.h deleted file mode 100644 index c427945a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersAppsResult.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersAppsResult; -@class DBTEAMMemberLinkedApps; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersAppsResult` struct. -/// -/// Information returned by `linkedAppsListMembersLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersAppsResult : NSObject - -#pragma mark - Instance fields - -/// The linked applications of each member of the team. -@property (nonatomic, readonly) NSArray *apps; - -/// If true, then there are more apps available. Pass the cursor to -/// `linkedAppsListMembersLinkedApps` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `linkedAppsListMembersLinkedApps` to receive the next -/// sub list of team's applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListMembersLinkedApps` to retrieve the rest. -/// @param cursor Pass the cursor into `linkedAppsListMembersLinkedApps` to -/// receive the next sub list of team's applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListMembersLinkedApps` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersAppsResult` struct. -/// -@interface DBTEAMListMembersAppsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersAppsResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersAppsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersAppsResult *)instance; - -/// -/// Deserializes `DBTEAMListMembersAppsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersAppsResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersAppsResult` object. -/// -+ (DBTEAMListMembersAppsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesArg.h deleted file mode 100644 index e9f9f40f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersDevicesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersDevicesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersDevicesArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `devicesListMembersDevices` the cursor shouldn't be -/// passed. Then, if the result of the call includes a cursor, the following -/// requests should include the received cursors in order to receive the next -/// sub list of team devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// Whether to list web sessions of the team members. -@property (nonatomic, readonly) NSNumber *includeWebSessions; - -/// Whether to list desktop clients of the team members. -@property (nonatomic, readonly) NSNumber *includeDesktopClients; - -/// Whether to list mobile clients of the team members. -@property (nonatomic, readonly) NSNumber *includeMobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `devicesListMembersDevices` the -/// cursor shouldn't be passed. Then, if the result of the call includes a -/// cursor, the following requests should include the received cursors in order -/// to receive the next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team -/// members. -/// @param includeMobileClients Whether to list mobile clients of the team -/// members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersDevicesArg` struct. -/// -@interface DBTEAMListMembersDevicesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersDevicesArg` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersDevicesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersDevicesArg *)instance; - -/// -/// Deserializes `DBTEAMListMembersDevicesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesArg` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersDevicesArg` object. -/// -+ (DBTEAMListMembersDevicesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesError.h deleted file mode 100644 index a79e0903..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesError.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersDevicesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersDevicesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersDevicesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListMembersDevicesErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListMembersDevicesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListMembersDevicesErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `devicesListMembersDevices` again with an empty cursor to obtain a new - /// cursor. - DBTEAMListMembersDevicesErrorReset, - - /// (no description). - DBTEAMListMembersDevicesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListMembersDevicesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `devicesListMembersDevices` again with an empty cursor to -/// obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListMembersDevicesError` union. -/// -@interface DBTEAMListMembersDevicesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersDevicesError` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersDevicesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersDevicesError *)instance; - -/// -/// Deserializes `DBTEAMListMembersDevicesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesError` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersDevicesError` object. -/// -+ (DBTEAMListMembersDevicesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesResult.h deleted file mode 100644 index 5977b407..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListMembersDevicesResult.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListMembersDevicesResult; -@class DBTEAMMemberDevices; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListMembersDevicesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListMembersDevicesResult : NSObject - -#pragma mark - Instance fields - -/// The devices of each member of the team. -@property (nonatomic, readonly) NSArray *devices; - -/// If true, then there are more devices available. Pass the cursor to -/// `devicesListMembersDevices` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `devicesListMembersDevices` to receive the next sub -/// list of team's devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListMembersDevices` to retrieve the rest. -/// @param cursor Pass the cursor into `devicesListMembersDevices` to receive -/// the next sub list of team's devices. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListMembersDevices` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListMembersDevicesResult` struct. -/// -@interface DBTEAMListMembersDevicesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListMembersDevicesResult` instances. -/// -/// @param instance An instance of the `DBTEAMListMembersDevicesResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListMembersDevicesResult *)instance; - -/// -/// Deserializes `DBTEAMListMembersDevicesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListMembersDevicesResult` API object. -/// -/// @return An instantiation of the `DBTEAMListMembersDevicesResult` object. -/// -+ (DBTEAMListMembersDevicesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsArg.h deleted file mode 100644 index 93182273..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamAppsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamAppsArg` struct. -/// -/// Arguments for `linkedAppsListTeamLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamAppsArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `linkedAppsListTeamLinkedApps` the cursor shouldn't -/// be passed. Then, if the result of the call includes a cursor, the following -/// requests should include the received cursors in order to receive the next -/// sub list of the team applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `linkedAppsListTeamLinkedApps` the -/// cursor shouldn't be passed. Then, if the result of the call includes a -/// cursor, the following requests should include the received cursors in order -/// to receive the next sub list of the team applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamAppsArg` struct. -/// -@interface DBTEAMListTeamAppsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamAppsArg` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamAppsArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamAppsArg *)instance; - -/// -/// Deserializes `DBTEAMListTeamAppsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsArg` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamAppsArg` object. -/// -+ (DBTEAMListTeamAppsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsError.h deleted file mode 100644 index a61592f8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamAppsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamAppsError` union. -/// -/// Error returned by `linkedAppsListTeamLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamAppsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListTeamAppsErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListTeamAppsError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListTeamAppsErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `linkedAppsListTeamLinkedApps` again with an empty cursor to obtain a - /// new cursor. - DBTEAMListTeamAppsErrorReset, - - /// (no description). - DBTEAMListTeamAppsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListTeamAppsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `linkedAppsListTeamLinkedApps` again with an empty cursor -/// to obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListTeamAppsError` union. -/// -@interface DBTEAMListTeamAppsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamAppsError` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamAppsError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamAppsError *)instance; - -/// -/// Deserializes `DBTEAMListTeamAppsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsError` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamAppsError` object. -/// -+ (DBTEAMListTeamAppsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsResult.h deleted file mode 100644 index 1da84780..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamAppsResult.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamAppsResult; -@class DBTEAMMemberLinkedApps; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamAppsResult` struct. -/// -/// Information returned by `linkedAppsListTeamLinkedApps`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamAppsResult : NSObject - -#pragma mark - Instance fields - -/// The linked applications of each member of the team. -@property (nonatomic, readonly) NSArray *apps; - -/// If true, then there are more apps available. Pass the cursor to -/// `linkedAppsListTeamLinkedApps` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `linkedAppsListTeamLinkedApps` to receive the next sub -/// list of team's applications. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListTeamLinkedApps` to retrieve the rest. -/// @param cursor Pass the cursor into `linkedAppsListTeamLinkedApps` to receive -/// the next sub list of team's applications. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param apps The linked applications of each member of the team. -/// @param hasMore If true, then there are more apps available. Pass the cursor -/// to `linkedAppsListTeamLinkedApps` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithApps:(NSArray *)apps hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamAppsResult` struct. -/// -@interface DBTEAMListTeamAppsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamAppsResult` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamAppsResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamAppsResult *)instance; - -/// -/// Deserializes `DBTEAMListTeamAppsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamAppsResult` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamAppsResult` object. -/// -+ (DBTEAMListTeamAppsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesArg.h deleted file mode 100644 index 6bc5643e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesArg.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamDevicesArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamDevicesArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamDevicesArg : NSObject - -#pragma mark - Instance fields - -/// At the first call to the `devicesListTeamDevices` the cursor shouldn't be -/// passed. Then, if the result of the call includes a cursor, the following -/// requests should include the received cursors in order to receive the next -/// sub list of team devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -/// Whether to list web sessions of the team members. -@property (nonatomic, readonly) NSNumber *includeWebSessions; - -/// Whether to list desktop clients of the team members. -@property (nonatomic, readonly) NSNumber *includeDesktopClients; - -/// Whether to list mobile clients of the team members. -@property (nonatomic, readonly) NSNumber *includeMobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor At the first call to the `devicesListTeamDevices` the cursor -/// shouldn't be passed. Then, if the result of the call includes a cursor, the -/// following requests should include the received cursors in order to receive -/// the next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team -/// members. -/// @param includeMobileClients Whether to list mobile clients of the team -/// members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamDevicesArg` struct. -/// -@interface DBTEAMListTeamDevicesArgSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamDevicesArg` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamDevicesArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamDevicesArg *)instance; - -/// -/// Deserializes `DBTEAMListTeamDevicesArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesArg` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamDevicesArg` object. -/// -+ (DBTEAMListTeamDevicesArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesError.h deleted file mode 100644 index 3d721a51..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesError.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamDevicesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamDevicesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamDevicesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMListTeamDevicesErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMListTeamDevicesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMListTeamDevicesErrorTag) { - /// Indicates that the cursor has been invalidated. Call - /// `devicesListTeamDevices` again with an empty cursor to obtain a new - /// cursor. - DBTEAMListTeamDevicesErrorReset, - - /// (no description). - DBTEAMListTeamDevicesErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMListTeamDevicesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "reset". -/// -/// Description of the "reset" tag state: Indicates that the cursor has been -/// invalidated. Call `devicesListTeamDevices` again with an empty cursor to -/// obtain a new cursor. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithReset; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "reset". -/// -/// @return Whether the union's current tag state has value "reset". -/// -- (BOOL)isReset; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMListTeamDevicesError` union. -/// -@interface DBTEAMListTeamDevicesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamDevicesError` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamDevicesError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamDevicesError *)instance; - -/// -/// Deserializes `DBTEAMListTeamDevicesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesError` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamDevicesError` object. -/// -+ (DBTEAMListTeamDevicesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesResult.h deleted file mode 100644 index 6a2abd73..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMListTeamDevicesResult.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMListTeamDevicesResult; -@class DBTEAMMemberDevices; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ListTeamDevicesResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMListTeamDevicesResult : NSObject - -#pragma mark - Instance fields - -/// The devices of each member of the team. -@property (nonatomic, readonly) NSArray *devices; - -/// If true, then there are more devices available. Pass the cursor to -/// `devicesListTeamDevices` to retrieve the rest. -@property (nonatomic, readonly) NSNumber *hasMore; - -/// Pass the cursor into `devicesListTeamDevices` to receive the next sub list -/// of team's devices. -@property (nonatomic, readonly, copy, nullable) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListTeamDevices` to retrieve the rest. -/// @param cursor Pass the cursor into `devicesListTeamDevices` to receive the -/// next sub list of team's devices. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices - hasMore:(NSNumber *)hasMore - cursor:(nullable NSString *)cursor; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param devices The devices of each member of the team. -/// @param hasMore If true, then there are more devices available. Pass the -/// cursor to `devicesListTeamDevices` to retrieve the rest. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDevices:(NSArray *)devices hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ListTeamDevicesResult` struct. -/// -@interface DBTEAMListTeamDevicesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMListTeamDevicesResult` instances. -/// -/// @param instance An instance of the `DBTEAMListTeamDevicesResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMListTeamDevicesResult *)instance; - -/// -/// Deserializes `DBTEAMListTeamDevicesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMListTeamDevicesResult` API object. -/// -/// @return An instantiation of the `DBTEAMListTeamDevicesResult` object. -/// -+ (DBTEAMListTeamDevicesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAccess.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAccess.h deleted file mode 100644 index 89a337bf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAccess.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMGroupAccessType; -@class DBTEAMMemberAccess; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAccess` struct. -/// -/// Specify access type a member should have when joined to a group. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAccess : NSObject - -#pragma mark - Instance fields - -/// Identity of a user. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// Access type. -@property (nonatomic, readonly) DBTEAMGroupAccessType *accessType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of a user. -/// @param accessType Access type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user accessType:(DBTEAMGroupAccessType *)accessType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAccess` struct. -/// -@interface DBTEAMMemberAccessSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAccess` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAccess` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAccess` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAccess *)instance; - -/// -/// Deserializes `DBTEAMMemberAccess` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAccess` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAccess` object. -/// -+ (DBTEAMMemberAccess *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddArg.h deleted file mode 100644 index 1f9c5395..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddArg.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMemberAddArgBase.h" - -@class DBTEAMAdminTier; -@class DBTEAMMemberAddArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddArg : DBTEAMMemberAddArgBase - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMAdminTier *role; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberEmail (no description). -/// @param memberGivenName Member's first name. -/// @param memberSurname Member's last name. -/// @param memberExternalId External ID for member. -/// @param memberPersistentId Persistent ID for member. This field is only -/// available to teams using persistent ID SAML configuration. -/// @param sendWelcomeEmail Whether to send a welcome email to the member. If -/// send_welcome_email is false, no email invitation will be sent to the user. -/// This may be useful for apps using single sign-on (SSO) flows for onboarding -/// that want to handle announcements themselves. -/// @param isDirectoryRestricted Whether a user is directory restricted. -/// @param role (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail - memberGivenName:(nullable NSString *)memberGivenName - memberSurname:(nullable NSString *)memberSurname - memberExternalId:(nullable NSString *)memberExternalId - memberPersistentId:(nullable NSString *)memberPersistentId - sendWelcomeEmail:(nullable NSNumber *)sendWelcomeEmail - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - role:(nullable DBTEAMAdminTier *)role; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param memberEmail (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddArg` struct. -/// -@interface DBTEAMMemberAddArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddArg` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddArg *)instance; - -/// -/// Deserializes `DBTEAMMemberAddArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArg` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddArg` object. -/// -+ (DBTEAMMemberAddArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddArgBase.h deleted file mode 100644 index 05f65c27..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddArgBase.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddArgBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddArgBase : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, copy) NSString *memberEmail; - -/// Member's first name. -@property (nonatomic, readonly, copy, nullable) NSString *memberGivenName; - -/// Member's last name. -@property (nonatomic, readonly, copy, nullable) NSString *memberSurname; - -/// External ID for member. -@property (nonatomic, readonly, copy, nullable) NSString *memberExternalId; - -/// Persistent ID for member. This field is only available to teams using -/// persistent ID SAML configuration. -@property (nonatomic, readonly, copy, nullable) NSString *memberPersistentId; - -/// Whether to send a welcome email to the member. If send_welcome_email is -/// false, no email invitation will be sent to the user. This may be useful for -/// apps using single sign-on (SSO) flows for onboarding that want to handle -/// announcements themselves. -@property (nonatomic, readonly) NSNumber *sendWelcomeEmail; - -/// Whether a user is directory restricted. -@property (nonatomic, readonly, nullable) NSNumber *isDirectoryRestricted; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberEmail (no description). -/// @param memberGivenName Member's first name. -/// @param memberSurname Member's last name. -/// @param memberExternalId External ID for member. -/// @param memberPersistentId Persistent ID for member. This field is only -/// available to teams using persistent ID SAML configuration. -/// @param sendWelcomeEmail Whether to send a welcome email to the member. If -/// send_welcome_email is false, no email invitation will be sent to the user. -/// This may be useful for apps using single sign-on (SSO) flows for onboarding -/// that want to handle announcements themselves. -/// @param isDirectoryRestricted Whether a user is directory restricted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail - memberGivenName:(nullable NSString *)memberGivenName - memberSurname:(nullable NSString *)memberSurname - memberExternalId:(nullable NSString *)memberExternalId - memberPersistentId:(nullable NSString *)memberPersistentId - sendWelcomeEmail:(nullable NSNumber *)sendWelcomeEmail - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param memberEmail (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddArgBase` struct. -/// -@interface DBTEAMMemberAddArgBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddArgBase` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddArgBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddArgBase *)instance; - -/// -/// Deserializes `DBTEAMMemberAddArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddArgBase` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddArgBase` object. -/// -+ (DBTEAMMemberAddArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddResult.h deleted file mode 100644 index c3ece36c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddResult.h +++ /dev/null @@ -1,463 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResult; -@class DBTEAMTeamMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddResult` union. -/// -/// Describes the result of attempting to add a single user to the team. -/// 'success' is the only value indicating that a user was indeed added to the -/// team - the other values explain the type of failure that occurred, and -/// include the email of the user for which the operation has failed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberAddResultTag` enum type represents the possible tag states -/// with which the `DBTEAMMemberAddResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberAddResultTag) { - /// Team is already full. The organization has no available licenses. - DBTEAMMemberAddResultTeamLicenseLimit, - - /// Team is already full. The free team member limit has been reached. - DBTEAMMemberAddResultFreeTeamMemberLimitReached, - - /// User is already on this team. The provided email address is associated - /// with a user who is already a member of (including in recoverable state) - /// or invited to the team. - DBTEAMMemberAddResultUserAlreadyOnTeam, - - /// User is already on another team. The provided email address is - /// associated with a user that is already a member or invited to another - /// team. - DBTEAMMemberAddResultUserOnAnotherTeam, - - /// User is already paired. - DBTEAMMemberAddResultUserAlreadyPaired, - - /// User migration has failed. - DBTEAMMemberAddResultUserMigrationFailed, - - /// A user with the given external member ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultDuplicateExternalMemberId, - - /// A user with the given persistent ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultDuplicateMemberPersistentId, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMemberAddResultPersistentIdDisabled, - - /// User creation has failed. - DBTEAMMemberAddResultUserCreationFailed, - - /// Describes a user that was successfully added to the team. - DBTEAMMemberAddResultSuccess, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberAddResultTag tag; - -/// Team is already full. The organization has no available licenses. @note -/// Ensure the `isTeamLicenseLimit` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamLicenseLimit; - -/// Team is already full. The free team member limit has been reached. @note -/// Ensure the `isFreeTeamMemberLimitReached` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *freeTeamMemberLimitReached; - -/// User is already on this team. The provided email address is associated with -/// a user who is already a member of (including in recoverable state) or -/// invited to the team. @note Ensure the `isUserAlreadyOnTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyOnTeam; - -/// User is already on another team. The provided email address is associated -/// with a user that is already a member or invited to another team. @note -/// Ensure the `isUserOnAnotherTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userOnAnotherTeam; - -/// User is already paired. @note Ensure the `isUserAlreadyPaired` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyPaired; - -/// User migration has failed. @note Ensure the `isUserMigrationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userMigrationFailed; - -/// A user with the given external member ID already exists on the team -/// (including in recoverable state). @note Ensure the -/// `isDuplicateExternalMemberId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateExternalMemberId; - -/// A user with the given persistent ID already exists on the team (including in -/// recoverable state). @note Ensure the `isDuplicateMemberPersistentId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateMemberPersistentId; - -/// Persistent ID is only available to teams with persistent ID SAML -/// configuration. Please contact Dropbox for more information. @note Ensure the -/// `isPersistentIdDisabled` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *persistentIdDisabled; - -/// User creation has failed. @note Ensure the `isUserCreationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userCreationFailed; - -/// Describes a user that was successfully added to the team. @note Ensure the -/// `isSuccess` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfo *success; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is already full. The -/// organization has no available licenses. -/// -/// @param teamLicenseLimit Team is already full. The organization has no -/// available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit:(NSString *)teamLicenseLimit; - -/// -/// Initializes union class with tag state of "free_team_member_limit_reached". -/// -/// Description of the "free_team_member_limit_reached" tag state: Team is -/// already full. The free team member limit has been reached. -/// -/// @param freeTeamMemberLimitReached Team is already full. The free team member -/// limit has been reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFreeTeamMemberLimitReached:(NSString *)freeTeamMemberLimitReached; - -/// -/// Initializes union class with tag state of "user_already_on_team". -/// -/// Description of the "user_already_on_team" tag state: User is already on this -/// team. The provided email address is associated with a user who is already a -/// member of (including in recoverable state) or invited to the team. -/// -/// @param userAlreadyOnTeam User is already on this team. The provided email -/// address is associated with a user who is already a member of (including in -/// recoverable state) or invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyOnTeam:(NSString *)userAlreadyOnTeam; - -/// -/// Initializes union class with tag state of "user_on_another_team". -/// -/// Description of the "user_on_another_team" tag state: User is already on -/// another team. The provided email address is associated with a user that is -/// already a member or invited to another team. -/// -/// @param userOnAnotherTeam User is already on another team. The provided email -/// address is associated with a user that is already a member or invited to -/// another team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserOnAnotherTeam:(NSString *)userOnAnotherTeam; - -/// -/// Initializes union class with tag state of "user_already_paired". -/// -/// Description of the "user_already_paired" tag state: User is already paired. -/// -/// @param userAlreadyPaired User is already paired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyPaired:(NSString *)userAlreadyPaired; - -/// -/// Initializes union class with tag state of "user_migration_failed". -/// -/// Description of the "user_migration_failed" tag state: User migration has -/// failed. -/// -/// @param userMigrationFailed User migration has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMigrationFailed:(NSString *)userMigrationFailed; - -/// -/// Initializes union class with tag state of "duplicate_external_member_id". -/// -/// Description of the "duplicate_external_member_id" tag state: A user with the -/// given external member ID already exists on the team (including in -/// recoverable state). -/// -/// @param duplicateExternalMemberId A user with the given external member ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateExternalMemberId:(NSString *)duplicateExternalMemberId; - -/// -/// Initializes union class with tag state of "duplicate_member_persistent_id". -/// -/// Description of the "duplicate_member_persistent_id" tag state: A user with -/// the given persistent ID already exists on the team (including in recoverable -/// state). -/// -/// @param duplicateMemberPersistentId A user with the given persistent ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateMemberPersistentId:(NSString *)duplicateMemberPersistentId; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @param persistentIdDisabled Persistent ID is only available to teams with -/// persistent ID SAML configuration. Please contact Dropbox for more -/// information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled:(NSString *)persistentIdDisabled; - -/// -/// Initializes union class with tag state of "user_creation_failed". -/// -/// Description of the "user_creation_failed" tag state: User creation has -/// failed. -/// -/// @param userCreationFailed User creation has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCreationFailed:(NSString *)userCreationFailed; - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user that was -/// successfully added to the team. -/// -/// @param success Describes a user that was successfully added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMTeamMemberInfo *)success; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamLicenseLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `freeTeamMemberLimitReached` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -- (BOOL)isFreeTeamMemberLimitReached; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_on_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyOnTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_on_team". -/// -- (BOOL)isUserAlreadyOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_on_another_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userOnAnotherTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_on_another_team". -/// -- (BOOL)isUserOnAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_paired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyPaired` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_paired". -/// -- (BOOL)isUserAlreadyPaired; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_migration_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userMigrationFailed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_migration_failed". -/// -- (BOOL)isUserMigrationFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateExternalMemberId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -- (BOOL)isDuplicateExternalMemberId; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateMemberPersistentId` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -- (BOOL)isDuplicateMemberPersistentId; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `persistentIdDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_creation_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCreationFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_creation_failed". -/// -- (BOOL)isUserCreationFailed; - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberAddResult` union. -/// -@interface DBTEAMMemberAddResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddResult` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddResult *)instance; - -/// -/// Deserializes `DBTEAMMemberAddResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResult` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddResult` object. -/// -+ (DBTEAMMemberAddResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddResultBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddResultBase.h deleted file mode 100644 index f06ae214..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddResultBase.h +++ /dev/null @@ -1,427 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResultBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddResultBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddResultBase : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberAddResultBaseTag` enum type represents the possible tag -/// states with which the `DBTEAMMemberAddResultBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberAddResultBaseTag) { - /// Team is already full. The organization has no available licenses. - DBTEAMMemberAddResultBaseTeamLicenseLimit, - - /// Team is already full. The free team member limit has been reached. - DBTEAMMemberAddResultBaseFreeTeamMemberLimitReached, - - /// User is already on this team. The provided email address is associated - /// with a user who is already a member of (including in recoverable state) - /// or invited to the team. - DBTEAMMemberAddResultBaseUserAlreadyOnTeam, - - /// User is already on another team. The provided email address is - /// associated with a user that is already a member or invited to another - /// team. - DBTEAMMemberAddResultBaseUserOnAnotherTeam, - - /// User is already paired. - DBTEAMMemberAddResultBaseUserAlreadyPaired, - - /// User migration has failed. - DBTEAMMemberAddResultBaseUserMigrationFailed, - - /// A user with the given external member ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultBaseDuplicateExternalMemberId, - - /// A user with the given persistent ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddResultBaseDuplicateMemberPersistentId, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMemberAddResultBasePersistentIdDisabled, - - /// User creation has failed. - DBTEAMMemberAddResultBaseUserCreationFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberAddResultBaseTag tag; - -/// Team is already full. The organization has no available licenses. @note -/// Ensure the `isTeamLicenseLimit` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamLicenseLimit; - -/// Team is already full. The free team member limit has been reached. @note -/// Ensure the `isFreeTeamMemberLimitReached` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *freeTeamMemberLimitReached; - -/// User is already on this team. The provided email address is associated with -/// a user who is already a member of (including in recoverable state) or -/// invited to the team. @note Ensure the `isUserAlreadyOnTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyOnTeam; - -/// User is already on another team. The provided email address is associated -/// with a user that is already a member or invited to another team. @note -/// Ensure the `isUserOnAnotherTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userOnAnotherTeam; - -/// User is already paired. @note Ensure the `isUserAlreadyPaired` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyPaired; - -/// User migration has failed. @note Ensure the `isUserMigrationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userMigrationFailed; - -/// A user with the given external member ID already exists on the team -/// (including in recoverable state). @note Ensure the -/// `isDuplicateExternalMemberId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateExternalMemberId; - -/// A user with the given persistent ID already exists on the team (including in -/// recoverable state). @note Ensure the `isDuplicateMemberPersistentId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateMemberPersistentId; - -/// Persistent ID is only available to teams with persistent ID SAML -/// configuration. Please contact Dropbox for more information. @note Ensure the -/// `isPersistentIdDisabled` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *persistentIdDisabled; - -/// User creation has failed. @note Ensure the `isUserCreationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userCreationFailed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is already full. The -/// organization has no available licenses. -/// -/// @param teamLicenseLimit Team is already full. The organization has no -/// available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit:(NSString *)teamLicenseLimit; - -/// -/// Initializes union class with tag state of "free_team_member_limit_reached". -/// -/// Description of the "free_team_member_limit_reached" tag state: Team is -/// already full. The free team member limit has been reached. -/// -/// @param freeTeamMemberLimitReached Team is already full. The free team member -/// limit has been reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFreeTeamMemberLimitReached:(NSString *)freeTeamMemberLimitReached; - -/// -/// Initializes union class with tag state of "user_already_on_team". -/// -/// Description of the "user_already_on_team" tag state: User is already on this -/// team. The provided email address is associated with a user who is already a -/// member of (including in recoverable state) or invited to the team. -/// -/// @param userAlreadyOnTeam User is already on this team. The provided email -/// address is associated with a user who is already a member of (including in -/// recoverable state) or invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyOnTeam:(NSString *)userAlreadyOnTeam; - -/// -/// Initializes union class with tag state of "user_on_another_team". -/// -/// Description of the "user_on_another_team" tag state: User is already on -/// another team. The provided email address is associated with a user that is -/// already a member or invited to another team. -/// -/// @param userOnAnotherTeam User is already on another team. The provided email -/// address is associated with a user that is already a member or invited to -/// another team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserOnAnotherTeam:(NSString *)userOnAnotherTeam; - -/// -/// Initializes union class with tag state of "user_already_paired". -/// -/// Description of the "user_already_paired" tag state: User is already paired. -/// -/// @param userAlreadyPaired User is already paired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyPaired:(NSString *)userAlreadyPaired; - -/// -/// Initializes union class with tag state of "user_migration_failed". -/// -/// Description of the "user_migration_failed" tag state: User migration has -/// failed. -/// -/// @param userMigrationFailed User migration has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMigrationFailed:(NSString *)userMigrationFailed; - -/// -/// Initializes union class with tag state of "duplicate_external_member_id". -/// -/// Description of the "duplicate_external_member_id" tag state: A user with the -/// given external member ID already exists on the team (including in -/// recoverable state). -/// -/// @param duplicateExternalMemberId A user with the given external member ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateExternalMemberId:(NSString *)duplicateExternalMemberId; - -/// -/// Initializes union class with tag state of "duplicate_member_persistent_id". -/// -/// Description of the "duplicate_member_persistent_id" tag state: A user with -/// the given persistent ID already exists on the team (including in recoverable -/// state). -/// -/// @param duplicateMemberPersistentId A user with the given persistent ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateMemberPersistentId:(NSString *)duplicateMemberPersistentId; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @param persistentIdDisabled Persistent ID is only available to teams with -/// persistent ID SAML configuration. Please contact Dropbox for more -/// information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled:(NSString *)persistentIdDisabled; - -/// -/// Initializes union class with tag state of "user_creation_failed". -/// -/// Description of the "user_creation_failed" tag state: User creation has -/// failed. -/// -/// @param userCreationFailed User creation has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCreationFailed:(NSString *)userCreationFailed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamLicenseLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `freeTeamMemberLimitReached` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -- (BOOL)isFreeTeamMemberLimitReached; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_on_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyOnTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_on_team". -/// -- (BOOL)isUserAlreadyOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_on_another_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userOnAnotherTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_on_another_team". -/// -- (BOOL)isUserOnAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_paired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyPaired` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_paired". -/// -- (BOOL)isUserAlreadyPaired; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_migration_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userMigrationFailed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_migration_failed". -/// -- (BOOL)isUserMigrationFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateExternalMemberId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -- (BOOL)isDuplicateExternalMemberId; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateMemberPersistentId` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -- (BOOL)isDuplicateMemberPersistentId; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `persistentIdDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_creation_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCreationFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_creation_failed". -/// -- (BOOL)isUserCreationFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberAddResultBase` union. -/// -@interface DBTEAMMemberAddResultBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddResultBase` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddResultBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResultBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddResultBase *)instance; - -/// -/// Deserializes `DBTEAMMemberAddResultBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddResultBase` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddResultBase` object. -/// -+ (DBTEAMMemberAddResultBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddV2Arg.h deleted file mode 100644 index 69e32f17..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddV2Arg.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMemberAddArgBase.h" - -@class DBTEAMMemberAddV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddV2Arg : DBTEAMMemberAddArgBase - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly, nullable) NSArray *roleIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberEmail (no description). -/// @param memberGivenName Member's first name. -/// @param memberSurname Member's last name. -/// @param memberExternalId External ID for member. -/// @param memberPersistentId Persistent ID for member. This field is only -/// available to teams using persistent ID SAML configuration. -/// @param sendWelcomeEmail Whether to send a welcome email to the member. If -/// send_welcome_email is false, no email invitation will be sent to the user. -/// This may be useful for apps using single sign-on (SSO) flows for onboarding -/// that want to handle announcements themselves. -/// @param isDirectoryRestricted Whether a user is directory restricted. -/// @param roleIds (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail - memberGivenName:(nullable NSString *)memberGivenName - memberSurname:(nullable NSString *)memberSurname - memberExternalId:(nullable NSString *)memberExternalId - memberPersistentId:(nullable NSString *)memberPersistentId - sendWelcomeEmail:(nullable NSNumber *)sendWelcomeEmail - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - roleIds:(nullable NSArray *)roleIds; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param memberEmail (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberEmail:(NSString *)memberEmail; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberAddV2Arg` struct. -/// -@interface DBTEAMMemberAddV2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddV2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddV2Arg *)instance; - -/// -/// Deserializes `DBTEAMMemberAddV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddV2Arg` object. -/// -+ (DBTEAMMemberAddV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddV2Result.h deleted file mode 100644 index 3ea51ba2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberAddV2Result.h +++ /dev/null @@ -1,480 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddV2Result; -@class DBTEAMTeamMemberInfoV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberAddV2Result` union. -/// -/// Describes the result of attempting to add a single user to the team. -/// 'success' is the only value indicating that a user was indeed added to the -/// team - the other values explain the type of failure that occurred, and -/// include the email of the user for which the operation has failed. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberAddV2Result : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberAddV2ResultTag` enum type represents the possible tag -/// states with which the `DBTEAMMemberAddV2Result` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberAddV2ResultTag) { - /// Team is already full. The organization has no available licenses. - DBTEAMMemberAddV2ResultTeamLicenseLimit, - - /// Team is already full. The free team member limit has been reached. - DBTEAMMemberAddV2ResultFreeTeamMemberLimitReached, - - /// User is already on this team. The provided email address is associated - /// with a user who is already a member of (including in recoverable state) - /// or invited to the team. - DBTEAMMemberAddV2ResultUserAlreadyOnTeam, - - /// User is already on another team. The provided email address is - /// associated with a user that is already a member or invited to another - /// team. - DBTEAMMemberAddV2ResultUserOnAnotherTeam, - - /// User is already paired. - DBTEAMMemberAddV2ResultUserAlreadyPaired, - - /// User migration has failed. - DBTEAMMemberAddV2ResultUserMigrationFailed, - - /// A user with the given external member ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddV2ResultDuplicateExternalMemberId, - - /// A user with the given persistent ID already exists on the team - /// (including in recoverable state). - DBTEAMMemberAddV2ResultDuplicateMemberPersistentId, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMemberAddV2ResultPersistentIdDisabled, - - /// User creation has failed. - DBTEAMMemberAddV2ResultUserCreationFailed, - - /// Describes a user that was successfully added to the team. - DBTEAMMemberAddV2ResultSuccess, - - /// (no description). - DBTEAMMemberAddV2ResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberAddV2ResultTag tag; - -/// Team is already full. The organization has no available licenses. @note -/// Ensure the `isTeamLicenseLimit` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamLicenseLimit; - -/// Team is already full. The free team member limit has been reached. @note -/// Ensure the `isFreeTeamMemberLimitReached` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *freeTeamMemberLimitReached; - -/// User is already on this team. The provided email address is associated with -/// a user who is already a member of (including in recoverable state) or -/// invited to the team. @note Ensure the `isUserAlreadyOnTeam` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyOnTeam; - -/// User is already on another team. The provided email address is associated -/// with a user that is already a member or invited to another team. @note -/// Ensure the `isUserOnAnotherTeam` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userOnAnotherTeam; - -/// User is already paired. @note Ensure the `isUserAlreadyPaired` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userAlreadyPaired; - -/// User migration has failed. @note Ensure the `isUserMigrationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userMigrationFailed; - -/// A user with the given external member ID already exists on the team -/// (including in recoverable state). @note Ensure the -/// `isDuplicateExternalMemberId` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateExternalMemberId; - -/// A user with the given persistent ID already exists on the team (including in -/// recoverable state). @note Ensure the `isDuplicateMemberPersistentId` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *duplicateMemberPersistentId; - -/// Persistent ID is only available to teams with persistent ID SAML -/// configuration. Please contact Dropbox for more information. @note Ensure the -/// `isPersistentIdDisabled` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *persistentIdDisabled; - -/// User creation has failed. @note Ensure the `isUserCreationFailed` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *userCreationFailed; - -/// Describes a user that was successfully added to the team. @note Ensure the -/// `isSuccess` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfoV2 *success; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is already full. The -/// organization has no available licenses. -/// -/// @param teamLicenseLimit Team is already full. The organization has no -/// available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit:(NSString *)teamLicenseLimit; - -/// -/// Initializes union class with tag state of "free_team_member_limit_reached". -/// -/// Description of the "free_team_member_limit_reached" tag state: Team is -/// already full. The free team member limit has been reached. -/// -/// @param freeTeamMemberLimitReached Team is already full. The free team member -/// limit has been reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFreeTeamMemberLimitReached:(NSString *)freeTeamMemberLimitReached; - -/// -/// Initializes union class with tag state of "user_already_on_team". -/// -/// Description of the "user_already_on_team" tag state: User is already on this -/// team. The provided email address is associated with a user who is already a -/// member of (including in recoverable state) or invited to the team. -/// -/// @param userAlreadyOnTeam User is already on this team. The provided email -/// address is associated with a user who is already a member of (including in -/// recoverable state) or invited to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyOnTeam:(NSString *)userAlreadyOnTeam; - -/// -/// Initializes union class with tag state of "user_on_another_team". -/// -/// Description of the "user_on_another_team" tag state: User is already on -/// another team. The provided email address is associated with a user that is -/// already a member or invited to another team. -/// -/// @param userOnAnotherTeam User is already on another team. The provided email -/// address is associated with a user that is already a member or invited to -/// another team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserOnAnotherTeam:(NSString *)userOnAnotherTeam; - -/// -/// Initializes union class with tag state of "user_already_paired". -/// -/// Description of the "user_already_paired" tag state: User is already paired. -/// -/// @param userAlreadyPaired User is already paired. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserAlreadyPaired:(NSString *)userAlreadyPaired; - -/// -/// Initializes union class with tag state of "user_migration_failed". -/// -/// Description of the "user_migration_failed" tag state: User migration has -/// failed. -/// -/// @param userMigrationFailed User migration has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserMigrationFailed:(NSString *)userMigrationFailed; - -/// -/// Initializes union class with tag state of "duplicate_external_member_id". -/// -/// Description of the "duplicate_external_member_id" tag state: A user with the -/// given external member ID already exists on the team (including in -/// recoverable state). -/// -/// @param duplicateExternalMemberId A user with the given external member ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateExternalMemberId:(NSString *)duplicateExternalMemberId; - -/// -/// Initializes union class with tag state of "duplicate_member_persistent_id". -/// -/// Description of the "duplicate_member_persistent_id" tag state: A user with -/// the given persistent ID already exists on the team (including in recoverable -/// state). -/// -/// @param duplicateMemberPersistentId A user with the given persistent ID -/// already exists on the team (including in recoverable state). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDuplicateMemberPersistentId:(NSString *)duplicateMemberPersistentId; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @param persistentIdDisabled Persistent ID is only available to teams with -/// persistent ID SAML configuration. Please contact Dropbox for more -/// information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled:(NSString *)persistentIdDisabled; - -/// -/// Initializes union class with tag state of "user_creation_failed". -/// -/// Description of the "user_creation_failed" tag state: User creation has -/// failed. -/// -/// @param userCreationFailed User creation has failed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserCreationFailed:(NSString *)userCreationFailed; - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user that was -/// successfully added to the team. -/// -/// @param success Describes a user that was successfully added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMTeamMemberInfoV2 *)success; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamLicenseLimit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `freeTeamMemberLimitReached` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "free_team_member_limit_reached". -/// -- (BOOL)isFreeTeamMemberLimitReached; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_on_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyOnTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_on_team". -/// -- (BOOL)isUserAlreadyOnTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_on_another_team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userOnAnotherTeam` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_on_another_team". -/// -- (BOOL)isUserOnAnotherTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_already_paired". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userAlreadyPaired` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_already_paired". -/// -- (BOOL)isUserAlreadyPaired; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_migration_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userMigrationFailed` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_migration_failed". -/// -- (BOOL)isUserMigrationFailed; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateExternalMemberId` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_external_member_id". -/// -- (BOOL)isDuplicateExternalMemberId; - -/// -/// Retrieves whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `duplicateMemberPersistentId` property, otherwise a runtime exception will -/// be thrown. -/// -/// @return Whether the union's current tag state has value -/// "duplicate_member_persistent_id". -/// -- (BOOL)isDuplicateMemberPersistentId; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `persistentIdDisabled` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_creation_failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `userCreationFailed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "user_creation_failed". -/// -- (BOOL)isUserCreationFailed; - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberAddV2Result` union. -/// -@interface DBTEAMMemberAddV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberAddV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMemberAddV2Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberAddV2Result *)instance; - -/// -/// Deserializes `DBTEAMMemberAddV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberAddV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMemberAddV2Result` object. -/// -+ (DBTEAMMemberAddV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberDevices.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberDevices.h deleted file mode 100644 index e4a01fbd..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberDevices.h +++ /dev/null @@ -1,105 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMActiveWebSession; -@class DBTEAMDesktopClientSession; -@class DBTEAMMemberDevices; -@class DBTEAMMobileClientSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberDevices` struct. -/// -/// Information on devices of a team's member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberDevices : NSObject - -#pragma mark - Instance fields - -/// The member unique Id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// List of web sessions made by this team member. -@property (nonatomic, readonly, nullable) NSArray *webSessions; - -/// List of desktop clients by this team member. -@property (nonatomic, readonly, nullable) NSArray *desktopClients; - -/// List of mobile clients by this team member. -@property (nonatomic, readonly, nullable) NSArray *mobileClients; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member unique Id. -/// @param webSessions List of web sessions made by this team member. -/// @param desktopClients List of desktop clients by this team member. -/// @param mobileClients List of mobile clients by this team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - webSessions:(nullable NSArray *)webSessions - desktopClients:(nullable NSArray *)desktopClients - mobileClients:(nullable NSArray *)mobileClients; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId The member unique Id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberDevices` struct. -/// -@interface DBTEAMMemberDevicesSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberDevices` instances. -/// -/// @param instance An instance of the `DBTEAMMemberDevices` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberDevices` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberDevices *)instance; - -/// -/// Deserializes `DBTEAMMemberDevices` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberDevices` API object. -/// -/// @return An instantiation of the `DBTEAMMemberDevices` object. -/// -+ (DBTEAMMemberDevices *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberLinkedApps.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberLinkedApps.h deleted file mode 100644 index 96438931..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberLinkedApps.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMApiApp; -@class DBTEAMMemberLinkedApps; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberLinkedApps` struct. -/// -/// Information on linked applications of a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberLinkedApps : NSObject - -#pragma mark - Instance fields - -/// The member unique Id. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// List of third party applications linked by this team member. -@property (nonatomic, readonly) NSArray *linkedApiApps; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member unique Id. -/// @param linkedApiApps List of third party applications linked by this team -/// member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId linkedApiApps:(NSArray *)linkedApiApps; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberLinkedApps` struct. -/// -@interface DBTEAMMemberLinkedAppsSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberLinkedApps` instances. -/// -/// @param instance An instance of the `DBTEAMMemberLinkedApps` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberLinkedApps` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberLinkedApps *)instance; - -/// -/// Deserializes `DBTEAMMemberLinkedApps` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberLinkedApps` API object. -/// -/// @return An instantiation of the `DBTEAMMemberLinkedApps` object. -/// -+ (DBTEAMMemberLinkedApps *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberProfile.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberProfile.h deleted file mode 100644 index f034ef4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberProfile.h +++ /dev/null @@ -1,191 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBSECONDARYEMAILSSecondaryEmail; -@class DBTEAMMemberProfile; -@class DBTEAMTeamMemberStatus; -@class DBTEAMTeamMembershipType; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberProfile` struct. -/// -/// Basic member profile. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberProfile : NSObject - -#pragma mark - Instance fields - -/// ID of user as a member of a team. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// External ID that a team can attach to the user. An application using the API -/// may find it easier to use their own IDs instead of Dropbox IDs like -/// account_id or team_member_id. -@property (nonatomic, readonly, copy, nullable) NSString *externalId; - -/// A user's account identifier. -@property (nonatomic, readonly, copy, nullable) NSString *accountId; - -/// Email address of user. -@property (nonatomic, readonly, copy) NSString *email; - -/// Is true if the user's email is verified to be owned by the user. -@property (nonatomic, readonly) NSNumber *emailVerified; - -/// Secondary emails of a user. -@property (nonatomic, readonly, nullable) NSArray *secondaryEmails; - -/// The user's status as a member of a specific team. -@property (nonatomic, readonly) DBTEAMTeamMemberStatus *status; - -/// Representations for a person's name. -@property (nonatomic, readonly) DBUSERSName *name; - -/// The user's membership type: full (normal team member) vs limited (does not -/// use a license; no access to the team's shared quota). -@property (nonatomic, readonly) DBTEAMTeamMembershipType *membershipType; - -/// The date and time the user was invited to the team (contains value only when -/// the member's status matches `invited` in `DBTEAMTeamMemberStatus`). -@property (nonatomic, readonly, nullable) NSDate *invitedOn; - -/// The date and time the user joined as a member of a specific team. -@property (nonatomic, readonly, nullable) NSDate *joinedOn; - -/// The date and time the user was suspended from the team (contains value only -/// when the member's status matches `suspended` in `DBTEAMTeamMemberStatus`). -@property (nonatomic, readonly, nullable) NSDate *suspendedOn; - -/// Persistent ID that a team can attach to the user. The persistent ID is -/// unique ID to be used for SAML authentication. -@property (nonatomic, readonly, copy, nullable) NSString *persistentId; - -/// Whether the user is a directory restricted user. -@property (nonatomic, readonly, nullable) NSNumber *isDirectoryRestricted; - -/// URL for the photo representing the user, if one is set. -@property (nonatomic, readonly, copy, nullable) NSString *profilePhotoUrl; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// @param externalId External ID that a team can attach to the user. An -/// application using the API may find it easier to use their own IDs instead of -/// Dropbox IDs like account_id or team_member_id. -/// @param accountId A user's account identifier. -/// @param secondaryEmails Secondary emails of a user. -/// @param invitedOn The date and time the user was invited to the team -/// (contains value only when the member's status matches `invited` in -/// `DBTEAMTeamMemberStatus`). -/// @param joinedOn The date and time the user joined as a member of a specific -/// team. -/// @param suspendedOn The date and time the user was suspended from the team -/// (contains value only when the member's status matches `suspended` in -/// `DBTEAMTeamMemberStatus`). -/// @param persistentId Persistent ID that a team can attach to the user. The -/// persistent ID is unique ID to be used for SAML authentication. -/// @param isDirectoryRestricted Whether the user is a directory restricted -/// user. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType - externalId:(nullable NSString *)externalId - accountId:(nullable NSString *)accountId - secondaryEmails:(nullable NSArray *)secondaryEmails - invitedOn:(nullable NSDate *)invitedOn - joinedOn:(nullable NSDate *)joinedOn - suspendedOn:(nullable NSDate *)suspendedOn - persistentId:(nullable NSString *)persistentId - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - profilePhotoUrl:(nullable NSString *)profilePhotoUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MemberProfile` struct. -/// -@interface DBTEAMMemberProfileSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberProfile` instances. -/// -/// @param instance An instance of the `DBTEAMMemberProfile` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberProfile` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberProfile *)instance; - -/// -/// Deserializes `DBTEAMMemberProfile` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberProfile` API object. -/// -/// @return An instantiation of the `DBTEAMMemberProfile` object. -/// -+ (DBTEAMMemberProfile *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberSelectorError.h deleted file mode 100644 index bc31588e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMemberSelectorError.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MemberSelectorError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMemberSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMemberSelectorErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMemberSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMemberSelectorErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMemberSelectorErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMemberSelectorErrorUserNotInTeam, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMemberSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMemberSelectorError` union. -/// -@interface DBTEAMMemberSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMemberSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMMemberSelectorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMemberSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMemberSelectorError *)instance; - -/// -/// Deserializes `DBTEAMMemberSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMemberSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMMemberSelectorError` object. -/// -+ (DBTEAMMemberSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddArg.h deleted file mode 100644 index 1916a3f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddArg.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersAddArgBase.h" - -@class DBTEAMMemberAddArg; -@class DBTEAMMembersAddArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddArg : DBTEAMMembersAddArgBase - -#pragma mark - Instance fields - -/// Details of new members to be added to the team. -@property (nonatomic, readonly) NSArray *dNewMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// @param forceAsync Whether to force the add to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersAddArg` struct. -/// -@interface DBTEAMMembersAddArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddArg *)instance; - -/// -/// Deserializes `DBTEAMMembersAddArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddArg` object. -/// -+ (DBTEAMMembersAddArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddArgBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddArgBase.h deleted file mode 100644 index 76e7fe0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddArgBase.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersAddArgBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddArgBase` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddArgBase : NSObject - -#pragma mark - Instance fields - -/// Whether to force the add to happen asynchronously. -@property (nonatomic, readonly) NSNumber *forceAsync; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param forceAsync Whether to force the add to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithForceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersAddArgBase` struct. -/// -@interface DBTEAMMembersAddArgBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddArgBase` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddArgBase` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArgBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddArgBase *)instance; - -/// -/// Deserializes `DBTEAMMembersAddArgBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddArgBase` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddArgBase` object. -/// -+ (DBTEAMMembersAddArgBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddJobStatus.h deleted file mode 100644 index a612b87c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddJobStatus.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResult; -@class DBTEAMMembersAddJobStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddJobStatusTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersAddJobStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddJobStatusTag) { - /// The asynchronous job is still in progress. - DBTEAMMembersAddJobStatusInProgress, - - /// The asynchronous job has finished. For each member that was specified in - /// the parameter MembersAddArg that was provided to `membersAdd`, a - /// corresponding item is returned in this list. - DBTEAMMembersAddJobStatusComplete, - - /// The asynchronous job returned an error. The string contains an error - /// message. - DBTEAMMembersAddJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddJobStatusTag tag; - -/// The asynchronous job has finished. For each member that was specified in the -/// parameter MembersAddArg that was provided to `membersAdd`, a corresponding -/// item is returned in this list. @note Ensure the `isComplete` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -/// The asynchronous job returned an error. The string contains an error -/// message. @note Ensure the `isFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has finished. -/// For each member that was specified in the parameter MembersAddArg that was -/// provided to `membersAdd`, a corresponding item is returned in this list. -/// -/// @param complete The asynchronous job has finished. For each member that was -/// specified in the parameter MembersAddArg that was provided to `membersAdd`, -/// a corresponding item is returned in this list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The asynchronous job returned an -/// error. The string contains an error message. -/// -/// @param failed The asynchronous job returned an error. The string contains an -/// error message. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(NSString *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddJobStatus` union. -/// -@interface DBTEAMMembersAddJobStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddJobStatus` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddJobStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddJobStatus *)instance; - -/// -/// Deserializes `DBTEAMMembersAddJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatus` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddJobStatus` object. -/// -+ (DBTEAMMembersAddJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddJobStatusV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddJobStatusV2Result.h deleted file mode 100644 index ffecfb84..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddJobStatusV2Result.h +++ /dev/null @@ -1,188 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddV2Result; -@class DBTEAMMembersAddJobStatusV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddJobStatusV2Result` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddJobStatusV2Result : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddJobStatusV2ResultTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersAddJobStatusV2Result` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddJobStatusV2ResultTag) { - /// The asynchronous job is still in progress. - DBTEAMMembersAddJobStatusV2ResultInProgress, - - /// The asynchronous job has finished. For each member that was specified in - /// the parameter MembersAddArg that was provided to `membersAdd`, a - /// corresponding item is returned in this list. - DBTEAMMembersAddJobStatusV2ResultComplete, - - /// The asynchronous job returned an error. The string contains an error - /// message. - DBTEAMMembersAddJobStatusV2ResultFailed, - - /// (no description). - DBTEAMMembersAddJobStatusV2ResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddJobStatusV2ResultTag tag; - -/// The asynchronous job has finished. For each member that was specified in the -/// parameter MembersAddArg that was provided to `membersAdd`, a corresponding -/// item is returned in this list. @note Ensure the `isComplete` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -/// The asynchronous job returned an error. The string contains an error -/// message. @note Ensure the `isFailed` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The asynchronous job has finished. -/// For each member that was specified in the parameter MembersAddArg that was -/// provided to `membersAdd`, a corresponding item is returned in this list. -/// -/// @param complete The asynchronous job has finished. For each member that was -/// specified in the parameter MembersAddArg that was provided to `membersAdd`, -/// a corresponding item is returned in this list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: The asynchronous job returned an -/// error. The string contains an error message. -/// -/// @param failed The asynchronous job returned an error. The string contains an -/// error message. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(NSString *)failed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddJobStatusV2Result` union. -/// -@interface DBTEAMMembersAddJobStatusV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddJobStatusV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddJobStatusV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatusV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddJobStatusV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersAddJobStatusV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddJobStatusV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddJobStatusV2Result` object. -/// -+ (DBTEAMMembersAddJobStatusV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddLaunch.h deleted file mode 100644 index 18548341..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddLaunch.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddResult; -@class DBTEAMMembersAddLaunch; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddLaunch` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddLaunchTag` enum type represents the possible tag states -/// with which the `DBTEAMMembersAddLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBTEAMMembersAddLaunchAsyncJobId, - - /// (no description). - DBTEAMMembersAddLaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddLaunch` union. -/// -@interface DBTEAMMembersAddLaunchSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddLaunch` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddLaunch` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddLaunch *)instance; - -/// -/// Deserializes `DBTEAMMembersAddLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunch` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddLaunch` object. -/// -+ (DBTEAMMembersAddLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddLaunchV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddLaunchV2Result.h deleted file mode 100644 index f45bef0f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddLaunchV2Result.h +++ /dev/null @@ -1,160 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMemberAddV2Result; -@class DBTEAMMembersAddLaunchV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddLaunchV2Result` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddLaunchV2Result : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersAddLaunchV2ResultTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersAddLaunchV2Result` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersAddLaunchV2ResultTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBTEAMMembersAddLaunchV2ResultAsyncJobId, - - /// (no description). - DBTEAMMembersAddLaunchV2ResultComplete, - - /// (no description). - DBTEAMMembersAddLaunchV2ResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersAddLaunchV2ResultTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(NSArray *)complete; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersAddLaunchV2Result` union. -/// -@interface DBTEAMMembersAddLaunchV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddLaunchV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddLaunchV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunchV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddLaunchV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersAddLaunchV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddLaunchV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddLaunchV2Result` object. -/// -+ (DBTEAMMembersAddLaunchV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddV2Arg.h deleted file mode 100644 index 02925d23..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersAddV2Arg.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersAddArgBase.h" - -@class DBTEAMMemberAddV2Arg; -@class DBTEAMMembersAddV2Arg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersAddV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersAddV2Arg : DBTEAMMembersAddArgBase - -#pragma mark - Instance fields - -/// Details of new members to be added to the team. -@property (nonatomic, readonly) NSArray *dNewMembers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// @param forceAsync Whether to force the add to happen asynchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDNewMembers:(NSArray *)dNewMembers; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersAddV2Arg` struct. -/// -@interface DBTEAMMembersAddV2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersAddV2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersAddV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersAddV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersAddV2Arg *)instance; - -/// -/// Deserializes `DBTEAMMembersAddV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersAddV2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersAddV2Arg` object. -/// -+ (DBTEAMMembersAddV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDataTransferArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDataTransferArg.h deleted file mode 100644 index e2a6c8e5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDataTransferArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersDeactivateBaseArg.h" - -@class DBTEAMMembersDataTransferArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDataTransferArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDataTransferArg : DBTEAMMembersDeactivateBaseArg - -#pragma mark - Instance fields - -/// Files from the deleted member account will be transferred to this user. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *transferDestId; - -/// Errors during the transfer process will be sent via email to this user. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *transferAdminId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// @param transferDestId Files from the deleted member account will be -/// transferred to this user. -/// @param transferAdminId Errors during the transfer process will be sent via -/// email to this user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - transferDestId:(DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(DBTEAMUserSelectorArg *)transferAdminId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDataTransferArg` struct. -/// -@interface DBTEAMMembersDataTransferArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDataTransferArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDataTransferArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDataTransferArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDataTransferArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDataTransferArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDataTransferArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDataTransferArg` object. -/// -+ (DBTEAMMembersDataTransferArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateArg.h deleted file mode 100644 index 5230241b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersDeactivateBaseArg.h" - -@class DBTEAMMembersDeactivateArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeactivateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeactivateArg : DBTEAMMembersDeactivateBaseArg - -#pragma mark - Instance fields - -/// If provided, controls if the user's data will be deleted on their linked -/// devices. -@property (nonatomic, readonly) NSNumber *wipeData; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// @param wipeData If provided, controls if the user's data will be deleted on -/// their linked devices. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user wipeData:(nullable NSNumber *)wipeData; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDeactivateArg` struct. -/// -@interface DBTEAMMembersDeactivateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeactivateArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeactivateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeactivateArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDeactivateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeactivateArg` object. -/// -+ (DBTEAMMembersDeactivateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateBaseArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateBaseArg.h deleted file mode 100644 index 7b77762d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateBaseArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeactivateBaseArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeactivateBaseArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeactivateBaseArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user to remove/suspend/have their files moved. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDeactivateBaseArg` struct. -/// -@interface DBTEAMMembersDeactivateBaseArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeactivateBaseArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeactivateBaseArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateBaseArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeactivateBaseArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDeactivateBaseArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateBaseArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeactivateBaseArg` object. -/// -+ (DBTEAMMembersDeactivateBaseArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateError.h deleted file mode 100644 index 9b11b2da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeactivateError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeactivateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeactivateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeactivateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersDeactivateErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersDeactivateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersDeactivateErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersDeactivateErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersDeactivateErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersDeactivateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersDeactivateErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersDeactivateError` union. -/// -@interface DBTEAMMembersDeactivateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeactivateError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeactivateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeactivateError *)instance; - -/// -/// Deserializes `DBTEAMMembersDeactivateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeactivateError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeactivateError` object. -/// -+ (DBTEAMMembersDeactivateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeleteProfilePhotoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeleteProfilePhotoArg.h deleted file mode 100644 index 7e507b17..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeleteProfilePhotoArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeleteProfilePhotoArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeleteProfilePhotoArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeleteProfilePhotoArg : NSObject - -#pragma mark - Instance fields - -/// Identity of the user whose profile photo will be deleted. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of the user whose profile photo will be deleted. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersDeleteProfilePhotoArg` struct. -/// -@interface DBTEAMMembersDeleteProfilePhotoArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeleteProfilePhotoArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeleteProfilePhotoArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeleteProfilePhotoArg *)instance; - -/// -/// Deserializes `DBTEAMMembersDeleteProfilePhotoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeleteProfilePhotoArg` object. -/// -+ (DBTEAMMembersDeleteProfilePhotoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeleteProfilePhotoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeleteProfilePhotoError.h deleted file mode 100644 index 3e7ae1cf..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersDeleteProfilePhotoError.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersDeleteProfilePhotoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersDeleteProfilePhotoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersDeleteProfilePhotoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersDeleteProfilePhotoErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMMembersDeleteProfilePhotoError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersDeleteProfilePhotoErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersDeleteProfilePhotoErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersDeleteProfilePhotoErrorUserNotInTeam, - - /// Modifying deleted users is not allowed. - DBTEAMMembersDeleteProfilePhotoErrorSetProfileDisallowed, - - /// (no description). - DBTEAMMembersDeleteProfilePhotoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersDeleteProfilePhotoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "set_profile_disallowed". -/// -/// Description of the "set_profile_disallowed" tag state: Modifying deleted -/// users is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetProfileDisallowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_profile_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "set_profile_disallowed". -/// -- (BOOL)isSetProfileDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersDeleteProfilePhotoError` -/// union. -/// -@interface DBTEAMMembersDeleteProfilePhotoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersDeleteProfilePhotoError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersDeleteProfilePhotoError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersDeleteProfilePhotoError *)instance; - -/// -/// Deserializes `DBTEAMMembersDeleteProfilePhotoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersDeleteProfilePhotoError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersDeleteProfilePhotoError` -/// object. -/// -+ (DBTEAMMembersDeleteProfilePhotoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetAvailableTeamMemberRolesResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetAvailableTeamMemberRolesResult.h deleted file mode 100644 index 7754aeb6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetAvailableTeamMemberRolesResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetAvailableTeamMemberRolesResult; -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetAvailableTeamMemberRolesResult` struct. -/// -/// Available TeamMemberRole for the connected team. To be used with -/// `membersSetAdminPermissions`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetAvailableTeamMemberRolesResult : NSObject - -#pragma mark - Instance fields - -/// Available roles. -@property (nonatomic, readonly) NSArray *roles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param roles Available roles. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoles:(NSArray *)roles; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetAvailableTeamMemberRolesResult` -/// struct. -/// -@interface DBTEAMMembersGetAvailableTeamMemberRolesResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetAvailableTeamMemberRolesResult` instances. -/// -/// @param instance An instance of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetAvailableTeamMemberRolesResult *)instance; - -/// -/// Deserializes `DBTEAMMembersGetAvailableTeamMemberRolesResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` API object. -/// -/// @return An instantiation of the -/// `DBTEAMMembersGetAvailableTeamMemberRolesResult` object. -/// -+ (DBTEAMMembersGetAvailableTeamMemberRolesResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoArgs.h deleted file mode 100644 index b72a30c7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoArgs.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoArgs; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoArgs : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetInfoArgs` struct. -/// -@interface DBTEAMMembersGetInfoArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoArgs` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoArgs` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoArgs *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoArgs` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoArgs` object. -/// -+ (DBTEAMMembersGetInfoArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoError.h deleted file mode 100644 index 600696f7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoError.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoErrorTag) { - /// (no description). - DBTEAMMembersGetInfoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoError` union. -/// -@interface DBTEAMMembersGetInfoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoError *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoError` object. -/// -+ (DBTEAMMembersGetInfoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItem.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItem.h deleted file mode 100644 index 7da9b1fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItem.h +++ /dev/null @@ -1,152 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItem; -@class DBTEAMTeamMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoItem` union. -/// -/// Describes a result obtained for a single user whose id was specified in the -/// parameter of `membersGetInfo`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoItem : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoItemTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoItem` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoItemTag) { - /// An ID that was provided as a parameter to `membersGetInfo` or - /// `membersGetInfo`, and did not match a corresponding user. This might be - /// a team_member_id, an email, or an external ID, depending on how the - /// method was called. - DBTEAMMembersGetInfoItemIdNotFound, - - /// Info about a team member. - DBTEAMMembersGetInfoItemMemberInfo, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoItemTag tag; - -/// An ID that was provided as a parameter to `membersGetInfo` or -/// `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. @note Ensure the `isIdNotFound` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Info about a team member. @note Ensure the `isMemberInfo` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfo *memberInfo; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `membersGetInfo` or `membersGetInfo`, and did not match a -/// corresponding user. This might be a team_member_id, an email, or an external -/// ID, depending on how the method was called. -/// -/// @param idNotFound An ID that was provided as a parameter to `membersGetInfo` -/// or `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "member_info". -/// -/// Description of the "member_info" tag state: Info about a team member. -/// -/// @param memberInfo Info about a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInfo:(DBTEAMTeamMemberInfo *)memberInfo; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value "member_info". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberInfo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_info". -/// -- (BOOL)isMemberInfo; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoItem` union. -/// -@interface DBTEAMMembersGetInfoItemSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoItem` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoItem` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItem` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoItem *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoItem` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItem` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoItem` object. -/// -+ (DBTEAMMembersGetInfoItem *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItemBase.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItemBase.h deleted file mode 100644 index 603a6c1a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItemBase.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItemBase; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoItemBase` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoItemBase : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoItemBaseTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoItemBase` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoItemBaseTag) { - /// An ID that was provided as a parameter to `membersGetInfo` or - /// `membersGetInfo`, and did not match a corresponding user. This might be - /// a team_member_id, an email, or an external ID, depending on how the - /// method was called. - DBTEAMMembersGetInfoItemBaseIdNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoItemBaseTag tag; - -/// An ID that was provided as a parameter to `membersGetInfo` or -/// `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. @note Ensure the `isIdNotFound` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `membersGetInfo` or `membersGetInfo`, and did not match a -/// corresponding user. This might be a team_member_id, an email, or an external -/// ID, depending on how the method was called. -/// -/// @param idNotFound An ID that was provided as a parameter to `membersGetInfo` -/// or `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoItemBase` union. -/// -@interface DBTEAMMembersGetInfoItemBaseSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoItemBase` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoItemBase` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemBase` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoItemBase *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoItemBase` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemBase` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoItemBase` object. -/// -+ (DBTEAMMembersGetInfoItemBase *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItemV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItemV2.h deleted file mode 100644 index 9128bf15..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoItemV2.h +++ /dev/null @@ -1,169 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItemV2; -@class DBTEAMTeamMemberInfoV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoItemV2` union. -/// -/// Describes a result obtained for a single user whose id was specified in the -/// parameter of `membersGetInfo`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoItemV2 : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersGetInfoItemV2Tag` enum type represents the possible tag -/// states with which the `DBTEAMMembersGetInfoItemV2` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersGetInfoItemV2Tag) { - /// An ID that was provided as a parameter to `membersGetInfo` or - /// `membersGetInfo`, and did not match a corresponding user. This might be - /// a team_member_id, an email, or an external ID, depending on how the - /// method was called. - DBTEAMMembersGetInfoItemV2IdNotFound, - - /// Info about a team member. - DBTEAMMembersGetInfoItemV2MemberInfo, - - /// (no description). - DBTEAMMembersGetInfoItemV2Other, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersGetInfoItemV2Tag tag; - -/// An ID that was provided as a parameter to `membersGetInfo` or -/// `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. @note Ensure the `isIdNotFound` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Info about a team member. @note Ensure the `isMemberInfo` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamMemberInfoV2 *memberInfo; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `membersGetInfo` or `membersGetInfo`, and did not match a -/// corresponding user. This might be a team_member_id, an email, or an external -/// ID, depending on how the method was called. -/// -/// @param idNotFound An ID that was provided as a parameter to `membersGetInfo` -/// or `membersGetInfo`, and did not match a corresponding user. This might be a -/// team_member_id, an email, or an external ID, depending on how the method was -/// called. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "member_info". -/// -/// Description of the "member_info" tag state: Info about a team member. -/// -/// @param memberInfo Info about a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInfo:(DBTEAMTeamMemberInfoV2 *)memberInfo; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value "member_info". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `memberInfo` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "member_info". -/// -- (BOOL)isMemberInfo; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersGetInfoItemV2` union. -/// -@interface DBTEAMMembersGetInfoItemV2Serializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoItemV2` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoItemV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoItemV2 *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoItemV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoItemV2` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoItemV2` object. -/// -+ (DBTEAMMembersGetInfoItemV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoV2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoV2Arg.h deleted file mode 100644 index e9b8f8a7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoV2Arg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoV2Arg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoV2Arg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoV2Arg : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetInfoV2Arg` struct. -/// -@interface DBTEAMMembersGetInfoV2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoV2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoV2Arg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoV2Arg *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoV2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoV2Arg` object. -/// -+ (DBTEAMMembersGetInfoV2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoV2Result.h deleted file mode 100644 index b1856249..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersGetInfoV2Result.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersGetInfoItemV2; -@class DBTEAMMembersGetInfoV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersGetInfoV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersGetInfoV2Result : NSObject - -#pragma mark - Instance fields - -/// List of team members info. -@property (nonatomic, readonly) NSArray *membersInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param membersInfo List of team members info. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembersInfo:(NSArray *)membersInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersGetInfoV2Result` struct. -/// -@interface DBTEAMMembersGetInfoV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersGetInfoV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersGetInfoV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersGetInfoV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersGetInfoV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersGetInfoV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersGetInfoV2Result` object. -/// -+ (DBTEAMMembersGetInfoV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersInfo.h deleted file mode 100644 index 897a6c7c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersInfo.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersInfo` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersInfo : NSObject - -#pragma mark - Instance fields - -/// Team member IDs of the users under this hold. -@property (nonatomic, readonly) NSArray *teamMemberIds; - -/// The number of permanently deleted users that were under this hold. -@property (nonatomic, readonly) NSNumber *permanentlyDeletedUsers; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberIds Team member IDs of the users under this hold. -/// @param permanentlyDeletedUsers The number of permanently deleted users that -/// were under this hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberIds:(NSArray *)teamMemberIds - permanentlyDeletedUsers:(NSNumber *)permanentlyDeletedUsers; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersInfo` struct. -/// -@interface DBTEAMMembersInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersInfo` instances. -/// -/// @param instance An instance of the `DBTEAMMembersInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersInfo *)instance; - -/// -/// Deserializes `DBTEAMMembersInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersInfo` API object. -/// -/// @return An instantiation of the `DBTEAMMembersInfo` object. -/// -+ (DBTEAMMembersInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListArg.h deleted file mode 100644 index e36da943..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListArg.h +++ /dev/null @@ -1,88 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListArg : NSObject - -#pragma mark - Instance fields - -/// Number of results to return per call. -@property (nonatomic, readonly) NSNumber *limit; - -/// Whether to return removed members. -@property (nonatomic, readonly) NSNumber *includeRemoved; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Number of results to return per call. -/// @param includeRemoved Whether to return removed members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit includeRemoved:(nullable NSNumber *)includeRemoved; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListArg` struct. -/// -@interface DBTEAMMembersListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListArg *)instance; - -/// -/// Deserializes `DBTEAMMembersListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListArg` object. -/// -+ (DBTEAMMembersListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListContinueArg.h deleted file mode 100644 index 8da14a43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of members. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListContinueArg` struct. -/// -@interface DBTEAMMembersListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMMembersListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListContinueArg` object. -/// -+ (DBTEAMMembersListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListContinueError.h deleted file mode 100644 index 1d73f272..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListContinueError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersListContinueErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersListContinueError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMMembersListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMMembersListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersListContinueError` union. -/// -@interface DBTEAMMembersListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListContinueError *)instance; - -/// -/// Deserializes `DBTEAMMembersListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListContinueError` object. -/// -+ (DBTEAMMembersListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListError.h deleted file mode 100644 index 186af635..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListError.h +++ /dev/null @@ -1,97 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersListErrorTag` enum type represents the possible tag states -/// with which the `DBTEAMMembersListError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersListErrorTag) { - /// (no description). - DBTEAMMembersListErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersListErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersListError` union. -/// -@interface DBTEAMMembersListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListError *)instance; - -/// -/// Deserializes `DBTEAMMembersListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListError` object. -/// -+ (DBTEAMMembersListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListResult.h deleted file mode 100644 index 8a8a7a0c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListResult.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListResult; -@class DBTEAMTeamMemberInfo; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListResult : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -/// Pass the cursor into `membersListContinue` to obtain the additional members. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional team members that have not been returned -/// yet. An additional call to `membersListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// @param cursor Pass the cursor into `membersListContinue` to obtain the -/// additional members. -/// @param hasMore Is true if there are additional team members that have not -/// been returned yet. An additional call to `membersListContinue` can retrieve -/// them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListResult` struct. -/// -@interface DBTEAMMembersListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListResult` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListResult *)instance; - -/// -/// Deserializes `DBTEAMMembersListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListResult` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListResult` object. -/// -+ (DBTEAMMembersListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListV2Result.h deleted file mode 100644 index f5813a90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersListV2Result.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersListV2Result; -@class DBTEAMTeamMemberInfoV2; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersListV2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersListV2Result : NSObject - -#pragma mark - Instance fields - -/// List of team members. -@property (nonatomic, readonly) NSArray *members; - -/// Pass the cursor into `membersListContinue` to obtain the additional members. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional team members that have not been returned -/// yet. An additional call to `membersListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param members List of team members. -/// @param cursor Pass the cursor into `membersListContinue` to obtain the -/// additional members. -/// @param hasMore Is true if there are additional team members that have not -/// been returned yet. An additional call to `membersListContinue` can retrieve -/// them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers:(NSArray *)members - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersListV2Result` struct. -/// -@interface DBTEAMMembersListV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersListV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersListV2Result` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersListV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersListV2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersListV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersListV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersListV2Result` object. -/// -+ (DBTEAMMembersListV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRecoverArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRecoverArg.h deleted file mode 100644 index 97f59554..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRecoverArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersRecoverArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRecoverArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRecoverArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user to recover. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to recover. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersRecoverArg` struct. -/// -@interface DBTEAMMembersRecoverArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRecoverArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRecoverArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRecoverArg *)instance; - -/// -/// Deserializes `DBTEAMMembersRecoverArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRecoverArg` object. -/// -+ (DBTEAMMembersRecoverArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRecoverError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRecoverError.h deleted file mode 100644 index 28846765..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRecoverError.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersRecoverError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRecoverError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRecoverError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersRecoverErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersRecoverError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersRecoverErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersRecoverErrorUserNotFound, - - /// The user is not recoverable. - DBTEAMMembersRecoverErrorUserUnrecoverable, - - /// The user is not a member of the team. - DBTEAMMembersRecoverErrorUserNotInTeam, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersRecoverErrorTeamLicenseLimit, - - /// (no description). - DBTEAMMembersRecoverErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersRecoverErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_unrecoverable". -/// -/// Description of the "user_unrecoverable" tag state: The user is not -/// recoverable. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserUnrecoverable; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_unrecoverable". -/// -/// @return Whether the union's current tag state has value -/// "user_unrecoverable". -/// -- (BOOL)isUserUnrecoverable; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersRecoverError` union. -/// -@interface DBTEAMMembersRecoverErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRecoverError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRecoverError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRecoverError *)instance; - -/// -/// Deserializes `DBTEAMMembersRecoverError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRecoverError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRecoverError` object. -/// -+ (DBTEAMMembersRecoverError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRemoveArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRemoveArg.h deleted file mode 100644 index ec2a46fc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRemoveArg.h +++ /dev/null @@ -1,127 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMembersDeactivateArg.h" - -@class DBTEAMMembersRemoveArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRemoveArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRemoveArg : DBTEAMMembersDeactivateArg - -#pragma mark - Instance fields - -/// If provided, files from the deleted member account will be transferred to -/// this user. -@property (nonatomic, readonly, nullable) DBTEAMUserSelectorArg *transferDestId; - -/// If provided, errors during the transfer process will be sent via email to -/// this user. If the transfer_dest_id argument was provided, then this argument -/// must be provided as well. -@property (nonatomic, readonly, nullable) DBTEAMUserSelectorArg *transferAdminId; - -/// Downgrade the member to a Basic account. The user will retain the email -/// address associated with their Dropbox account and data in their account -/// that is not restricted to team members. In order to keep the account the -/// argument wipeData should be set to false. -@property (nonatomic, readonly) NSNumber *keepAccount; - -/// If provided, allows removed users to keep access to Dropbox folders (not -/// Dropbox Paper folders) already explicitly shared with them (not via a group) -/// when they are downgraded to a Basic account. Users will not retain access to -/// folders that do not allow external sharing. In order to keep the sharing -/// relationships, the arguments wipeData should be set to false and keepAccount -/// should be set to true. -@property (nonatomic, readonly) NSNumber *retainTeamShares; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// @param wipeData If provided, controls if the user's data will be deleted on -/// their linked devices. -/// @param transferDestId If provided, files from the deleted member account -/// will be transferred to this user. -/// @param transferAdminId If provided, errors during the transfer process will -/// be sent via email to this user. If the transfer_dest_id argument was -/// provided, then this argument must be provided as well. -/// @param keepAccount Downgrade the member to a Basic account. The user will -/// retain the email address associated with their Dropbox account and data in -/// their account that is not restricted to team members. In order to keep the -/// account the argument wipeData should be set to false. -/// @param retainTeamShares If provided, allows removed users to keep access to -/// Dropbox folders (not Dropbox Paper folders) already explicitly shared with -/// them (not via a group) when they are downgraded to a Basic account. Users -/// will not retain access to folders that do not allow external sharing. In -/// order to keep the sharing relationships, the arguments wipeData should be -/// set to false and keepAccount should be set to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - wipeData:(nullable NSNumber *)wipeData - transferDestId:(nullable DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(nullable DBTEAMUserSelectorArg *)transferAdminId - keepAccount:(nullable NSNumber *)keepAccount - retainTeamShares:(nullable NSNumber *)retainTeamShares; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user to remove/suspend/have their files moved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersRemoveArg` struct. -/// -@interface DBTEAMMembersRemoveArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRemoveArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRemoveArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRemoveArg *)instance; - -/// -/// Deserializes `DBTEAMMembersRemoveArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRemoveArg` object. -/// -+ (DBTEAMMembersRemoveArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRemoveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRemoveError.h deleted file mode 100644 index ada60a34..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersRemoveError.h +++ /dev/null @@ -1,604 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersRemoveError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersRemoveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersRemoveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersRemoveErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersRemoveError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersRemoveErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersRemoveErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersRemoveErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersRemoveErrorOther, - - /// Expected removed user and transfer_dest user to be different. - DBTEAMMembersRemoveErrorRemovedAndTransferDestShouldDiffer, - - /// Expected removed user and transfer_admin user to be different. - DBTEAMMembersRemoveErrorRemovedAndTransferAdminShouldDiffer, - - /// No matching user found for the argument transfer_dest_id. - DBTEAMMembersRemoveErrorTransferDestUserNotFound, - - /// The provided transfer_dest_id does not exist on this team. - DBTEAMMembersRemoveErrorTransferDestUserNotInTeam, - - /// The provided transfer_admin_id does not exist on this team. - DBTEAMMembersRemoveErrorTransferAdminUserNotInTeam, - - /// No matching user found for the argument transfer_admin_id. - DBTEAMMembersRemoveErrorTransferAdminUserNotFound, - - /// The transfer_admin_id argument must be provided when file transfer is - /// requested. - DBTEAMMembersRemoveErrorUnspecifiedTransferAdminId, - - /// Specified transfer_admin user is not a team admin. - DBTEAMMembersRemoveErrorTransferAdminIsNotAdmin, - - /// The recipient user's email is not verified. - DBTEAMMembersRemoveErrorRecipientNotVerified, - - /// The user is the last admin of the team, so it cannot be removed from it. - DBTEAMMembersRemoveErrorRemoveLastAdmin, - - /// Cannot keep account and transfer the data to another user at the same - /// time. - DBTEAMMembersRemoveErrorCannotKeepAccountAndTransfer, - - /// Cannot keep account and delete the data at the same time. To keep the - /// account the argument wipe_data should be set to false. - DBTEAMMembersRemoveErrorCannotKeepAccountAndDeleteData, - - /// The email address of the user is too long to be disabled. - DBTEAMMembersRemoveErrorEmailAddressTooLongToBeDisabled, - - /// Cannot keep account of an invited user. - DBTEAMMembersRemoveErrorCannotKeepInvitedUserAccount, - - /// Cannot retain team shares when the user's data is marked for deletion on - /// their linked devices. The argument wipe_data should be set to false. - DBTEAMMembersRemoveErrorCannotRetainSharesWhenDataWiped, - - /// The user's account must be kept in order to retain team shares. The - /// argument keep_account should be set to true. - DBTEAMMembersRemoveErrorCannotRetainSharesWhenNoAccountKept, - - /// Externally sharing files, folders, and links must be enabled in team - /// settings in order to retain team shares for the user. - DBTEAMMembersRemoveErrorCannotRetainSharesWhenTeamExternalSharingOff, - - /// Only a team admin, can convert this account to a Basic account. - DBTEAMMembersRemoveErrorCannotKeepAccount, - - /// This user content is currently being held. To convert this member's - /// account to a Basic account, you'll first need to remove them from the - /// hold. - DBTEAMMembersRemoveErrorCannotKeepAccountUnderLegalHold, - - /// To convert this member to a Basic account, they'll first need to sign in - /// to Dropbox and agree to the terms of service. - DBTEAMMembersRemoveErrorCannotKeepAccountRequiredToSignTos, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersRemoveErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_dest_should_differ". -/// -/// Description of the "removed_and_transfer_dest_should_differ" tag state: -/// Expected removed user and transfer_dest user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferDestShouldDiffer; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_admin_should_differ". -/// -/// Description of the "removed_and_transfer_admin_should_differ" tag state: -/// Expected removed user and transfer_admin user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferAdminShouldDiffer; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_found". -/// -/// Description of the "transfer_dest_user_not_found" tag state: No matching -/// user found for the argument transfer_dest_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotFound; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_in_team". -/// -/// Description of the "transfer_dest_user_not_in_team" tag state: The provided -/// transfer_dest_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_in_team". -/// -/// Description of the "transfer_admin_user_not_in_team" tag state: The provided -/// transfer_admin_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_found". -/// -/// Description of the "transfer_admin_user_not_found" tag state: No matching -/// user found for the argument transfer_admin_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotFound; - -/// -/// Initializes union class with tag state of "unspecified_transfer_admin_id". -/// -/// Description of the "unspecified_transfer_admin_id" tag state: The -/// transfer_admin_id argument must be provided when file transfer is requested. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecifiedTransferAdminId; - -/// -/// Initializes union class with tag state of "transfer_admin_is_not_admin". -/// -/// Description of the "transfer_admin_is_not_admin" tag state: Specified -/// transfer_admin user is not a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminIsNotAdmin; - -/// -/// Initializes union class with tag state of "recipient_not_verified". -/// -/// Description of the "recipient_not_verified" tag state: The recipient user's -/// email is not verified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientNotVerified; - -/// -/// Initializes union class with tag state of "remove_last_admin". -/// -/// Description of the "remove_last_admin" tag state: The user is the last admin -/// of the team, so it cannot be removed from it. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoveLastAdmin; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_and_transfer". -/// -/// Description of the "cannot_keep_account_and_transfer" tag state: Cannot keep -/// account and transfer the data to another user at the same time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountAndTransfer; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_and_delete_data". -/// -/// Description of the "cannot_keep_account_and_delete_data" tag state: Cannot -/// keep account and delete the data at the same time. To keep the account the -/// argument wipe_data should be set to false. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountAndDeleteData; - -/// -/// Initializes union class with tag state of -/// "email_address_too_long_to_be_disabled". -/// -/// Description of the "email_address_too_long_to_be_disabled" tag state: The -/// email address of the user is too long to be disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailAddressTooLongToBeDisabled; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_invited_user_account". -/// -/// Description of the "cannot_keep_invited_user_account" tag state: Cannot keep -/// account of an invited user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepInvitedUserAccount; - -/// -/// Initializes union class with tag state of -/// "cannot_retain_shares_when_data_wiped". -/// -/// Description of the "cannot_retain_shares_when_data_wiped" tag state: Cannot -/// retain team shares when the user's data is marked for deletion on their -/// linked devices. The argument wipe_data should be set to false. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRetainSharesWhenDataWiped; - -/// -/// Initializes union class with tag state of -/// "cannot_retain_shares_when_no_account_kept". -/// -/// Description of the "cannot_retain_shares_when_no_account_kept" tag state: -/// The user's account must be kept in order to retain team shares. The argument -/// keep_account should be set to true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRetainSharesWhenNoAccountKept; - -/// -/// Initializes union class with tag state of -/// "cannot_retain_shares_when_team_external_sharing_off". -/// -/// Description of the "cannot_retain_shares_when_team_external_sharing_off" tag -/// state: Externally sharing files, folders, and links must be enabled in team -/// settings in order to retain team shares for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotRetainSharesWhenTeamExternalSharingOff; - -/// -/// Initializes union class with tag state of "cannot_keep_account". -/// -/// Description of the "cannot_keep_account" tag state: Only a team admin, can -/// convert this account to a Basic account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccount; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_under_legal_hold". -/// -/// Description of the "cannot_keep_account_under_legal_hold" tag state: This -/// user content is currently being held. To convert this member's account to a -/// Basic account, you'll first need to remove them from the hold. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountUnderLegalHold; - -/// -/// Initializes union class with tag state of -/// "cannot_keep_account_required_to_sign_tos". -/// -/// Description of the "cannot_keep_account_required_to_sign_tos" tag state: To -/// convert this member to a Basic account, they'll first need to sign in to -/// Dropbox and agree to the terms of service. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotKeepAccountRequiredToSignTos; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -- (BOOL)isRemovedAndTransferDestShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -- (BOOL)isRemovedAndTransferAdminShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -- (BOOL)isTransferDestUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -- (BOOL)isTransferDestUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -- (BOOL)isTransferAdminUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -- (BOOL)isTransferAdminUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -/// @return Whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -- (BOOL)isUnspecifiedTransferAdminId; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -- (BOOL)isTransferAdminIsNotAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "recipient_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "recipient_not_verified". -/// -- (BOOL)isRecipientNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "remove_last_admin". -/// -/// @return Whether the union's current tag state has value "remove_last_admin". -/// -- (BOOL)isRemoveLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_and_transfer". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_and_transfer". -/// -- (BOOL)isCannotKeepAccountAndTransfer; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_and_delete_data". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_and_delete_data". -/// -- (BOOL)isCannotKeepAccountAndDeleteData; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_address_too_long_to_be_disabled". -/// -/// @return Whether the union's current tag state has value -/// "email_address_too_long_to_be_disabled". -/// -- (BOOL)isEmailAddressTooLongToBeDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_invited_user_account". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_invited_user_account". -/// -- (BOOL)isCannotKeepInvitedUserAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_retain_shares_when_data_wiped". -/// -/// @return Whether the union's current tag state has value -/// "cannot_retain_shares_when_data_wiped". -/// -- (BOOL)isCannotRetainSharesWhenDataWiped; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_retain_shares_when_no_account_kept". -/// -/// @return Whether the union's current tag state has value -/// "cannot_retain_shares_when_no_account_kept". -/// -- (BOOL)isCannotRetainSharesWhenNoAccountKept; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_retain_shares_when_team_external_sharing_off". -/// -/// @return Whether the union's current tag state has value -/// "cannot_retain_shares_when_team_external_sharing_off". -/// -- (BOOL)isCannotRetainSharesWhenTeamExternalSharingOff; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account". -/// -- (BOOL)isCannotKeepAccount; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_under_legal_hold". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_under_legal_hold". -/// -- (BOOL)isCannotKeepAccountUnderLegalHold; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_keep_account_required_to_sign_tos". -/// -/// @return Whether the union's current tag state has value -/// "cannot_keep_account_required_to_sign_tos". -/// -- (BOOL)isCannotKeepAccountRequiredToSignTos; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersRemoveError` union. -/// -@interface DBTEAMMembersRemoveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersRemoveError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersRemoveError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersRemoveError *)instance; - -/// -/// Deserializes `DBTEAMMembersRemoveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersRemoveError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersRemoveError` object. -/// -+ (DBTEAMMembersRemoveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSendWelcomeError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSendWelcomeError.h deleted file mode 100644 index e1c38f3e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSendWelcomeError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSendWelcomeError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSendWelcomeError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSendWelcomeError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSendWelcomeErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersSendWelcomeError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSendWelcomeErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSendWelcomeErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSendWelcomeErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersSendWelcomeErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSendWelcomeErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSendWelcomeError` union. -/// -@interface DBTEAMMembersSendWelcomeErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSendWelcomeError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSendWelcomeError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSendWelcomeError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSendWelcomeError *)instance; - -/// -/// Deserializes `DBTEAMMembersSendWelcomeError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSendWelcomeError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSendWelcomeError` object. -/// -+ (DBTEAMMembersSendWelcomeError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Arg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Arg.h deleted file mode 100644 index 4b6f97b3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Arg.h +++ /dev/null @@ -1,96 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissions2Arg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissions2Arg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissions2Arg : NSObject - -#pragma mark - Instance fields - -/// Identity of user whose role will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// The new roles for the member. Send empty list to make user member only. For -/// now, only up to one role is allowed. -@property (nonatomic, readonly, nullable) NSArray *dNewRoles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRoles The new roles for the member. Send empty list to make user -/// member only. For now, only up to one role is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user dNewRoles:(nullable NSArray *)dNewRoles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user whose role will be set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissions2Arg` struct. -/// -@interface DBTEAMMembersSetPermissions2ArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissions2Arg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissions2Arg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Arg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissions2Arg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissions2Arg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Arg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissions2Arg` object. -/// -+ (DBTEAMMembersSetPermissions2Arg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Error.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Error.h deleted file mode 100644 index 96d00d5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Error.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissions2Error; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissions2Error` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissions2Error : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetPermissions2ErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersSetPermissions2Error` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetPermissions2ErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetPermissions2ErrorUserNotFound, - - /// Cannot remove the admin setting of the last admin. - DBTEAMMembersSetPermissions2ErrorLastAdmin, - - /// The user is not a member of the team. - DBTEAMMembersSetPermissions2ErrorUserNotInTeam, - - /// Cannot remove/grant permissions. This can happen if the team member is - /// suspended. - DBTEAMMembersSetPermissions2ErrorCannotSetPermissions, - - /// No matching role found. At least one of the provided new_roles does not - /// exist on this team. - DBTEAMMembersSetPermissions2ErrorRoleNotFound, - - /// (no description). - DBTEAMMembersSetPermissions2ErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetPermissions2ErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "last_admin". -/// -/// Description of the "last_admin" tag state: Cannot remove the admin setting -/// of the last admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLastAdmin; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "cannot_set_permissions". -/// -/// Description of the "cannot_set_permissions" tag state: Cannot remove/grant -/// permissions. This can happen if the team member is suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotSetPermissions; - -/// -/// Initializes union class with tag state of "role_not_found". -/// -/// Description of the "role_not_found" tag state: No matching role found. At -/// least one of the provided new_roles does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoleNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value "last_admin". -/// -/// @return Whether the union's current tag state has value "last_admin". -/// -- (BOOL)isLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_set_permissions". -/// -/// @return Whether the union's current tag state has value -/// "cannot_set_permissions". -/// -- (BOOL)isCannotSetPermissions; - -/// -/// Retrieves whether the union's current tag state has value "role_not_found". -/// -/// @return Whether the union's current tag state has value "role_not_found". -/// -- (BOOL)isRoleNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetPermissions2Error` union. -/// -@interface DBTEAMMembersSetPermissions2ErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissions2Error` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissions2Error` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Error` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissions2Error *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissions2Error` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Error` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissions2Error` object. -/// -+ (DBTEAMMembersSetPermissions2Error *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Result.h deleted file mode 100644 index 3c309675..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissions2Result.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissions2Result; -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissions2Result` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissions2Result : NSObject - -#pragma mark - Instance fields - -/// The member ID of the user to which the change was applied. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// The roles after the change. Empty in case the user become a non-admin. -@property (nonatomic, readonly, nullable) NSArray *roles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member ID of the user to which the change was -/// applied. -/// @param roles The roles after the change. Empty in case the user become a -/// non-admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId roles:(nullable NSArray *)roles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId The member ID of the user to which the change was -/// applied. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissions2Result` struct. -/// -@interface DBTEAMMembersSetPermissions2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissions2Result` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissions2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissions2Result *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissions2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissions2Result` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissions2Result` object. -/// -+ (DBTEAMMembersSetPermissions2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsArg.h deleted file mode 100644 index 704ff915..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; -@class DBTEAMMembersSetPermissionsArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissionsArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissionsArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user whose role will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// The new role of the member. -@property (nonatomic, readonly) DBTEAMAdminTier *dNewRole; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRole The new role of the member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user dNewRole:(DBTEAMAdminTier *)dNewRole; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissionsArg` struct. -/// -@interface DBTEAMMembersSetPermissionsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissionsArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissionsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissionsArg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissionsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissionsArg` object. -/// -+ (DBTEAMMembersSetPermissionsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsError.h deleted file mode 100644 index 01a64aea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsError.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetPermissionsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissionsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissionsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetPermissionsErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersSetPermissionsError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetPermissionsErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetPermissionsErrorUserNotFound, - - /// Cannot remove the admin setting of the last admin. - DBTEAMMembersSetPermissionsErrorLastAdmin, - - /// The user is not a member of the team. - DBTEAMMembersSetPermissionsErrorUserNotInTeam, - - /// Cannot remove/grant permissions. - DBTEAMMembersSetPermissionsErrorCannotSetPermissions, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersSetPermissionsErrorTeamLicenseLimit, - - /// (no description). - DBTEAMMembersSetPermissionsErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetPermissionsErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "last_admin". -/// -/// Description of the "last_admin" tag state: Cannot remove the admin setting -/// of the last admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLastAdmin; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "cannot_set_permissions". -/// -/// Description of the "cannot_set_permissions" tag state: Cannot remove/grant -/// permissions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCannotSetPermissions; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value "last_admin". -/// -/// @return Whether the union's current tag state has value "last_admin". -/// -- (BOOL)isLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "cannot_set_permissions". -/// -/// @return Whether the union's current tag state has value -/// "cannot_set_permissions". -/// -- (BOOL)isCannotSetPermissions; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetPermissionsError` union. -/// -@interface DBTEAMMembersSetPermissionsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissionsError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissionsError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissionsError *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissionsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissionsError` object. -/// -+ (DBTEAMMembersSetPermissionsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsResult.h deleted file mode 100644 index ebbba37b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetPermissionsResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; -@class DBTEAMMembersSetPermissionsResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetPermissionsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetPermissionsResult : NSObject - -#pragma mark - Instance fields - -/// The member ID of the user to which the change was applied. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// The role after the change. -@property (nonatomic, readonly) DBTEAMAdminTier *role; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId The member ID of the user to which the change was -/// applied. -/// @param role The role after the change. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId role:(DBTEAMAdminTier *)role; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetPermissionsResult` struct. -/// -@interface DBTEAMMembersSetPermissionsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetPermissionsResult` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetPermissionsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetPermissionsResult *)instance; - -/// -/// Deserializes `DBTEAMMembersSetPermissionsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetPermissionsResult` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetPermissionsResult` object. -/// -+ (DBTEAMMembersSetPermissionsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfileArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfileArg.h deleted file mode 100644 index 584934bb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfileArg.h +++ /dev/null @@ -1,123 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetProfileArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfileArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. At least one of new_email, new_external_id, -/// new_given_name, and/or new_surname must be provided. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfileArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user whose profile will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// New email for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewEmail; - -/// New external ID for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewExternalId; - -/// New given name for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewGivenName; - -/// New surname for member. -@property (nonatomic, readonly, copy, nullable) NSString *dNewSurname; - -/// New persistent ID. This field only available to teams using persistent ID -/// SAML configuration. -@property (nonatomic, readonly, copy, nullable) NSString *dNewPersistentId; - -/// New value for whether the user is a directory restricted user. -@property (nonatomic, readonly, nullable) NSNumber *dNewIsDirectoryRestricted; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user whose profile will be set. -/// @param dNewEmail New email for member. -/// @param dNewExternalId New external ID for member. -/// @param dNewGivenName New given name for member. -/// @param dNewSurname New surname for member. -/// @param dNewPersistentId New persistent ID. This field only available to -/// teams using persistent ID SAML configuration. -/// @param dNewIsDirectoryRestricted New value for whether the user is a -/// directory restricted user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - dNewEmail:(nullable NSString *)dNewEmail - dNewExternalId:(nullable NSString *)dNewExternalId - dNewGivenName:(nullable NSString *)dNewGivenName - dNewSurname:(nullable NSString *)dNewSurname - dNewPersistentId:(nullable NSString *)dNewPersistentId - dNewIsDirectoryRestricted:(nullable NSNumber *)dNewIsDirectoryRestricted; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user Identity of user whose profile will be set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetProfileArg` struct. -/// -@interface DBTEAMMembersSetProfileArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfileArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfileArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfileArg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfileArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfileArg` object. -/// -+ (DBTEAMMembersSetProfileArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfileError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfileError.h deleted file mode 100644 index cc0733e4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfileError.h +++ /dev/null @@ -1,343 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSetProfileError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfileError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfileError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetProfileErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersSetProfileError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetProfileErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetProfileErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSetProfileErrorUserNotInTeam, - - /// It is unsafe to use both external_id and new_external_id. - DBTEAMMembersSetProfileErrorExternalIdAndNewExternalIdUnsafe, - - /// None of new_email, new_given_name, new_surname, or new_external_id are - /// specified. - DBTEAMMembersSetProfileErrorNoNewDataSpecified, - - /// Email is already reserved for another user. - DBTEAMMembersSetProfileErrorEmailReservedForOtherUser, - - /// The external ID is already in use by another team member. - DBTEAMMembersSetProfileErrorExternalIdUsedByOtherUser, - - /// Modifying deleted users is not allowed. - DBTEAMMembersSetProfileErrorSetProfileDisallowed, - - /// Parameter new_email cannot be empty. - DBTEAMMembersSetProfileErrorParamCannotBeEmpty, - - /// Persistent ID is only available to teams with persistent ID SAML - /// configuration. Please contact Dropbox for more information. - DBTEAMMembersSetProfileErrorPersistentIdDisabled, - - /// The persistent ID is already in use by another team member. - DBTEAMMembersSetProfileErrorPersistentIdUsedByOtherUser, - - /// Directory Restrictions option is not available. - DBTEAMMembersSetProfileErrorDirectoryRestrictedOff, - - /// (no description). - DBTEAMMembersSetProfileErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetProfileErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of -/// "external_id_and_new_external_id_unsafe". -/// -/// Description of the "external_id_and_new_external_id_unsafe" tag state: It is -/// unsafe to use both external_id and new_external_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdAndNewExternalIdUnsafe; - -/// -/// Initializes union class with tag state of "no_new_data_specified". -/// -/// Description of the "no_new_data_specified" tag state: None of new_email, -/// new_given_name, new_surname, or new_external_id are specified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoNewDataSpecified; - -/// -/// Initializes union class with tag state of "email_reserved_for_other_user". -/// -/// Description of the "email_reserved_for_other_user" tag state: Email is -/// already reserved for another user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailReservedForOtherUser; - -/// -/// Initializes union class with tag state of "external_id_used_by_other_user". -/// -/// Description of the "external_id_used_by_other_user" tag state: The external -/// ID is already in use by another team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIdUsedByOtherUser; - -/// -/// Initializes union class with tag state of "set_profile_disallowed". -/// -/// Description of the "set_profile_disallowed" tag state: Modifying deleted -/// users is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetProfileDisallowed; - -/// -/// Initializes union class with tag state of "param_cannot_be_empty". -/// -/// Description of the "param_cannot_be_empty" tag state: Parameter new_email -/// cannot be empty. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithParamCannotBeEmpty; - -/// -/// Initializes union class with tag state of "persistent_id_disabled". -/// -/// Description of the "persistent_id_disabled" tag state: Persistent ID is only -/// available to teams with persistent ID SAML configuration. Please contact -/// Dropbox for more information. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdDisabled; - -/// -/// Initializes union class with tag state of -/// "persistent_id_used_by_other_user". -/// -/// Description of the "persistent_id_used_by_other_user" tag state: The -/// persistent ID is already in use by another team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPersistentIdUsedByOtherUser; - -/// -/// Initializes union class with tag state of "directory_restricted_off". -/// -/// Description of the "directory_restricted_off" tag state: Directory -/// Restrictions option is not available. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDirectoryRestrictedOff; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_and_new_external_id_unsafe". -/// -/// @return Whether the union's current tag state has value -/// "external_id_and_new_external_id_unsafe". -/// -- (BOOL)isExternalIdAndNewExternalIdUnsafe; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_new_data_specified". -/// -/// @return Whether the union's current tag state has value -/// "no_new_data_specified". -/// -- (BOOL)isNoNewDataSpecified; - -/// -/// Retrieves whether the union's current tag state has value -/// "email_reserved_for_other_user". -/// -/// @return Whether the union's current tag state has value -/// "email_reserved_for_other_user". -/// -- (BOOL)isEmailReservedForOtherUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "external_id_used_by_other_user". -/// -/// @return Whether the union's current tag state has value -/// "external_id_used_by_other_user". -/// -- (BOOL)isExternalIdUsedByOtherUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_profile_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "set_profile_disallowed". -/// -- (BOOL)isSetProfileDisallowed; - -/// -/// Retrieves whether the union's current tag state has value -/// "param_cannot_be_empty". -/// -/// @return Whether the union's current tag state has value -/// "param_cannot_be_empty". -/// -- (BOOL)isParamCannotBeEmpty; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_disabled". -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_disabled". -/// -- (BOOL)isPersistentIdDisabled; - -/// -/// Retrieves whether the union's current tag state has value -/// "persistent_id_used_by_other_user". -/// -/// @return Whether the union's current tag state has value -/// "persistent_id_used_by_other_user". -/// -- (BOOL)isPersistentIdUsedByOtherUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "directory_restricted_off". -/// -/// @return Whether the union's current tag state has value -/// "directory_restricted_off". -/// -- (BOOL)isDirectoryRestrictedOff; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetProfileError` union. -/// -@interface DBTEAMMembersSetProfileErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfileError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfileError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfileError *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfileError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfileError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfileError` object. -/// -+ (DBTEAMMembersSetProfileError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfilePhotoArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfilePhotoArg.h deleted file mode 100644 index 32ce652c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfilePhotoArg.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBTEAMMembersSetProfilePhotoArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfilePhotoArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfilePhotoArg : NSObject - -#pragma mark - Instance fields - -/// Identity of the user whose profile photo will be set. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// Image to set as the member's new profile photo. -@property (nonatomic, readonly) DBACCOUNTPhotoSourceArg *photo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of the user whose profile photo will be set. -/// @param photo Image to set as the member's new profile photo. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user photo:(DBACCOUNTPhotoSourceArg *)photo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersSetProfilePhotoArg` struct. -/// -@interface DBTEAMMembersSetProfilePhotoArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfilePhotoArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfilePhotoArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfilePhotoArg *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfilePhotoArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfilePhotoArg` object. -/// -+ (DBTEAMMembersSetProfilePhotoArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfilePhotoError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfilePhotoError.h deleted file mode 100644 index 29684a36..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSetProfilePhotoError.h +++ /dev/null @@ -1,190 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBACCOUNTSetProfilePhotoError; -@class DBTEAMMembersSetProfilePhotoError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSetProfilePhotoError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSetProfilePhotoError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSetProfilePhotoErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersSetProfilePhotoError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSetProfilePhotoErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSetProfilePhotoErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSetProfilePhotoErrorUserNotInTeam, - - /// Modifying deleted users is not allowed. - DBTEAMMembersSetProfilePhotoErrorSetProfileDisallowed, - - /// (no description). - DBTEAMMembersSetProfilePhotoErrorPhotoError, - - /// (no description). - DBTEAMMembersSetProfilePhotoErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSetProfilePhotoErrorTag tag; - -/// (no description). @note Ensure the `isPhotoError` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBACCOUNTSetProfilePhotoError *photoError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "set_profile_disallowed". -/// -/// Description of the "set_profile_disallowed" tag state: Modifying deleted -/// users is not allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSetProfileDisallowed; - -/// -/// Initializes union class with tag state of "photo_error". -/// -/// @param photoError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPhotoError:(DBACCOUNTSetProfilePhotoError *)photoError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "set_profile_disallowed". -/// -/// @return Whether the union's current tag state has value -/// "set_profile_disallowed". -/// -- (BOOL)isSetProfileDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "photo_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `photoError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "photo_error". -/// -- (BOOL)isPhotoError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSetProfilePhotoError` union. -/// -@interface DBTEAMMembersSetProfilePhotoErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSetProfilePhotoError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSetProfilePhotoError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSetProfilePhotoError *)instance; - -/// -/// Deserializes `DBTEAMMembersSetProfilePhotoError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSetProfilePhotoError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSetProfilePhotoError` object. -/// -+ (DBTEAMMembersSetProfilePhotoError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSuspendError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSuspendError.h deleted file mode 100644 index 4f836a3a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersSuspendError.h +++ /dev/null @@ -1,205 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersSuspendError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersSuspendError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersSuspendError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersSuspendErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersSuspendError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersSuspendErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersSuspendErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersSuspendErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersSuspendErrorOther, - - /// The user is not active, so it cannot be suspended. - DBTEAMMembersSuspendErrorSuspendInactiveUser, - - /// The user is the last admin of the team, so it cannot be suspended. - DBTEAMMembersSuspendErrorSuspendLastAdmin, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersSuspendErrorTeamLicenseLimit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersSuspendErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "suspend_inactive_user". -/// -/// Description of the "suspend_inactive_user" tag state: The user is not -/// active, so it cannot be suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspendInactiveUser; - -/// -/// Initializes union class with tag state of "suspend_last_admin". -/// -/// Description of the "suspend_last_admin" tag state: The user is the last -/// admin of the team, so it cannot be suspended. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspendLastAdmin; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "suspend_inactive_user". -/// -/// @return Whether the union's current tag state has value -/// "suspend_inactive_user". -/// -- (BOOL)isSuspendInactiveUser; - -/// -/// Retrieves whether the union's current tag state has value -/// "suspend_last_admin". -/// -/// @return Whether the union's current tag state has value -/// "suspend_last_admin". -/// -- (BOOL)isSuspendLastAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersSuspendError` union. -/// -@interface DBTEAMMembersSuspendErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersSuspendError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersSuspendError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersSuspendError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersSuspendError *)instance; - -/// -/// Deserializes `DBTEAMMembersSuspendError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersSuspendError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersSuspendError` object. -/// -+ (DBTEAMMembersSuspendError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersTransferFilesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersTransferFilesError.h deleted file mode 100644 index 1c1fa32d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersTransferFilesError.h +++ /dev/null @@ -1,341 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersTransferFilesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersTransferFilesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersTransferFilesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersTransferFilesErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMMembersTransferFilesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersTransferFilesErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersTransferFilesErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersTransferFilesErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersTransferFilesErrorOther, - - /// Expected removed user and transfer_dest user to be different. - DBTEAMMembersTransferFilesErrorRemovedAndTransferDestShouldDiffer, - - /// Expected removed user and transfer_admin user to be different. - DBTEAMMembersTransferFilesErrorRemovedAndTransferAdminShouldDiffer, - - /// No matching user found for the argument transfer_dest_id. - DBTEAMMembersTransferFilesErrorTransferDestUserNotFound, - - /// The provided transfer_dest_id does not exist on this team. - DBTEAMMembersTransferFilesErrorTransferDestUserNotInTeam, - - /// The provided transfer_admin_id does not exist on this team. - DBTEAMMembersTransferFilesErrorTransferAdminUserNotInTeam, - - /// No matching user found for the argument transfer_admin_id. - DBTEAMMembersTransferFilesErrorTransferAdminUserNotFound, - - /// The transfer_admin_id argument must be provided when file transfer is - /// requested. - DBTEAMMembersTransferFilesErrorUnspecifiedTransferAdminId, - - /// Specified transfer_admin user is not a team admin. - DBTEAMMembersTransferFilesErrorTransferAdminIsNotAdmin, - - /// The recipient user's email is not verified. - DBTEAMMembersTransferFilesErrorRecipientNotVerified, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersTransferFilesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_dest_should_differ". -/// -/// Description of the "removed_and_transfer_dest_should_differ" tag state: -/// Expected removed user and transfer_dest user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferDestShouldDiffer; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_admin_should_differ". -/// -/// Description of the "removed_and_transfer_admin_should_differ" tag state: -/// Expected removed user and transfer_admin user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferAdminShouldDiffer; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_found". -/// -/// Description of the "transfer_dest_user_not_found" tag state: No matching -/// user found for the argument transfer_dest_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotFound; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_in_team". -/// -/// Description of the "transfer_dest_user_not_in_team" tag state: The provided -/// transfer_dest_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_in_team". -/// -/// Description of the "transfer_admin_user_not_in_team" tag state: The provided -/// transfer_admin_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_found". -/// -/// Description of the "transfer_admin_user_not_found" tag state: No matching -/// user found for the argument transfer_admin_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotFound; - -/// -/// Initializes union class with tag state of "unspecified_transfer_admin_id". -/// -/// Description of the "unspecified_transfer_admin_id" tag state: The -/// transfer_admin_id argument must be provided when file transfer is requested. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecifiedTransferAdminId; - -/// -/// Initializes union class with tag state of "transfer_admin_is_not_admin". -/// -/// Description of the "transfer_admin_is_not_admin" tag state: Specified -/// transfer_admin user is not a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminIsNotAdmin; - -/// -/// Initializes union class with tag state of "recipient_not_verified". -/// -/// Description of the "recipient_not_verified" tag state: The recipient user's -/// email is not verified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientNotVerified; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -- (BOOL)isRemovedAndTransferDestShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -- (BOOL)isRemovedAndTransferAdminShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -- (BOOL)isTransferDestUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -- (BOOL)isTransferDestUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -- (BOOL)isTransferAdminUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -- (BOOL)isTransferAdminUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -/// @return Whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -- (BOOL)isUnspecifiedTransferAdminId; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -- (BOOL)isTransferAdminIsNotAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "recipient_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "recipient_not_verified". -/// -- (BOOL)isRecipientNotVerified; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersTransferFilesError` union. -/// -@interface DBTEAMMembersTransferFilesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersTransferFilesError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersTransferFilesError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFilesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersTransferFilesError *)instance; - -/// -/// Deserializes `DBTEAMMembersTransferFilesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFilesError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersTransferFilesError` object. -/// -+ (DBTEAMMembersTransferFilesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersTransferFormerMembersFilesError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersTransferFormerMembersFilesError.h deleted file mode 100644 index bf45c339..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersTransferFormerMembersFilesError.h +++ /dev/null @@ -1,432 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersTransferFormerMembersFilesError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersTransferFormerMembersFilesError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersTransferFormerMembersFilesError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersTransferFormerMembersFilesErrorTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMMembersTransferFormerMembersFilesError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersTransferFormerMembersFilesErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersTransferFormerMembersFilesErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersTransferFormerMembersFilesErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersTransferFormerMembersFilesErrorOther, - - /// Expected removed user and transfer_dest user to be different. - DBTEAMMembersTransferFormerMembersFilesErrorRemovedAndTransferDestShouldDiffer, - - /// Expected removed user and transfer_admin user to be different. - DBTEAMMembersTransferFormerMembersFilesErrorRemovedAndTransferAdminShouldDiffer, - - /// No matching user found for the argument transfer_dest_id. - DBTEAMMembersTransferFormerMembersFilesErrorTransferDestUserNotFound, - - /// The provided transfer_dest_id does not exist on this team. - DBTEAMMembersTransferFormerMembersFilesErrorTransferDestUserNotInTeam, - - /// The provided transfer_admin_id does not exist on this team. - DBTEAMMembersTransferFormerMembersFilesErrorTransferAdminUserNotInTeam, - - /// No matching user found for the argument transfer_admin_id. - DBTEAMMembersTransferFormerMembersFilesErrorTransferAdminUserNotFound, - - /// The transfer_admin_id argument must be provided when file transfer is - /// requested. - DBTEAMMembersTransferFormerMembersFilesErrorUnspecifiedTransferAdminId, - - /// Specified transfer_admin user is not a team admin. - DBTEAMMembersTransferFormerMembersFilesErrorTransferAdminIsNotAdmin, - - /// The recipient user's email is not verified. - DBTEAMMembersTransferFormerMembersFilesErrorRecipientNotVerified, - - /// The user's data is being transferred. Please wait some time before - /// retrying. - DBTEAMMembersTransferFormerMembersFilesErrorUserDataIsBeingTransferred, - - /// No matching removed user found for the argument user. - DBTEAMMembersTransferFormerMembersFilesErrorUserNotRemoved, - - /// User files aren't transferable anymore. - DBTEAMMembersTransferFormerMembersFilesErrorUserDataCannotBeTransferred, - - /// User's data has already been transferred to another user. - DBTEAMMembersTransferFormerMembersFilesErrorUserDataAlreadyTransferred, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersTransferFormerMembersFilesErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_dest_should_differ". -/// -/// Description of the "removed_and_transfer_dest_should_differ" tag state: -/// Expected removed user and transfer_dest user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferDestShouldDiffer; - -/// -/// Initializes union class with tag state of -/// "removed_and_transfer_admin_should_differ". -/// -/// Description of the "removed_and_transfer_admin_should_differ" tag state: -/// Expected removed user and transfer_admin user to be different. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemovedAndTransferAdminShouldDiffer; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_found". -/// -/// Description of the "transfer_dest_user_not_found" tag state: No matching -/// user found for the argument transfer_dest_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotFound; - -/// -/// Initializes union class with tag state of "transfer_dest_user_not_in_team". -/// -/// Description of the "transfer_dest_user_not_in_team" tag state: The provided -/// transfer_dest_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferDestUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_in_team". -/// -/// Description of the "transfer_admin_user_not_in_team" tag state: The provided -/// transfer_admin_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotInTeam; - -/// -/// Initializes union class with tag state of "transfer_admin_user_not_found". -/// -/// Description of the "transfer_admin_user_not_found" tag state: No matching -/// user found for the argument transfer_admin_id. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminUserNotFound; - -/// -/// Initializes union class with tag state of "unspecified_transfer_admin_id". -/// -/// Description of the "unspecified_transfer_admin_id" tag state: The -/// transfer_admin_id argument must be provided when file transfer is requested. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecifiedTransferAdminId; - -/// -/// Initializes union class with tag state of "transfer_admin_is_not_admin". -/// -/// Description of the "transfer_admin_is_not_admin" tag state: Specified -/// transfer_admin user is not a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransferAdminIsNotAdmin; - -/// -/// Initializes union class with tag state of "recipient_not_verified". -/// -/// Description of the "recipient_not_verified" tag state: The recipient user's -/// email is not verified. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRecipientNotVerified; - -/// -/// Initializes union class with tag state of "user_data_is_being_transferred". -/// -/// Description of the "user_data_is_being_transferred" tag state: The user's -/// data is being transferred. Please wait some time before retrying. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDataIsBeingTransferred; - -/// -/// Initializes union class with tag state of "user_not_removed". -/// -/// Description of the "user_not_removed" tag state: No matching removed user -/// found for the argument user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotRemoved; - -/// -/// Initializes union class with tag state of "user_data_cannot_be_transferred". -/// -/// Description of the "user_data_cannot_be_transferred" tag state: User files -/// aren't transferable anymore. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDataCannotBeTransferred; - -/// -/// Initializes union class with tag state of "user_data_already_transferred". -/// -/// Description of the "user_data_already_transferred" tag state: User's data -/// has already been transferred to another user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserDataAlreadyTransferred; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_dest_should_differ". -/// -- (BOOL)isRemovedAndTransferDestShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -/// @return Whether the union's current tag state has value -/// "removed_and_transfer_admin_should_differ". -/// -- (BOOL)isRemovedAndTransferAdminShouldDiffer; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_found". -/// -- (BOOL)isTransferDestUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_dest_user_not_in_team". -/// -- (BOOL)isTransferDestUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_in_team". -/// -- (BOOL)isTransferAdminUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_user_not_found". -/// -- (BOOL)isTransferAdminUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -/// @return Whether the union's current tag state has value -/// "unspecified_transfer_admin_id". -/// -- (BOOL)isUnspecifiedTransferAdminId; - -/// -/// Retrieves whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -/// @return Whether the union's current tag state has value -/// "transfer_admin_is_not_admin". -/// -- (BOOL)isTransferAdminIsNotAdmin; - -/// -/// Retrieves whether the union's current tag state has value -/// "recipient_not_verified". -/// -/// @return Whether the union's current tag state has value -/// "recipient_not_verified". -/// -- (BOOL)isRecipientNotVerified; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_data_is_being_transferred". -/// -/// @return Whether the union's current tag state has value -/// "user_data_is_being_transferred". -/// -- (BOOL)isUserDataIsBeingTransferred; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_removed". -/// -/// @return Whether the union's current tag state has value "user_not_removed". -/// -- (BOOL)isUserNotRemoved; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_data_cannot_be_transferred". -/// -/// @return Whether the union's current tag state has value -/// "user_data_cannot_be_transferred". -/// -- (BOOL)isUserDataCannotBeTransferred; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_data_already_transferred". -/// -/// @return Whether the union's current tag state has value -/// "user_data_already_transferred". -/// -- (BOOL)isUserDataAlreadyTransferred; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMMembersTransferFormerMembersFilesError` union. -/// -@interface DBTEAMMembersTransferFormerMembersFilesErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersTransferFormerMembersFilesError` instances. -/// -/// @param instance An instance of the -/// `DBTEAMMembersTransferFormerMembersFilesError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFormerMembersFilesError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersTransferFormerMembersFilesError *)instance; - -/// -/// Deserializes `DBTEAMMembersTransferFormerMembersFilesError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersTransferFormerMembersFilesError` API object. -/// -/// @return An instantiation of the -/// `DBTEAMMembersTransferFormerMembersFilesError` object. -/// -+ (DBTEAMMembersTransferFormerMembersFilesError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersUnsuspendArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersUnsuspendArg.h deleted file mode 100644 index 9dab5b8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersUnsuspendArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersUnsuspendArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersUnsuspendArg` struct. -/// -/// Exactly one of team_member_id, email, or external_id must be provided to -/// identify the user account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersUnsuspendArg : NSObject - -#pragma mark - Instance fields - -/// Identity of user to unsuspend. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user Identity of user to unsuspend. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MembersUnsuspendArg` struct. -/// -@interface DBTEAMMembersUnsuspendArgSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersUnsuspendArg` instances. -/// -/// @param instance An instance of the `DBTEAMMembersUnsuspendArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersUnsuspendArg *)instance; - -/// -/// Deserializes `DBTEAMMembersUnsuspendArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendArg` API object. -/// -/// @return An instantiation of the `DBTEAMMembersUnsuspendArg` object. -/// -+ (DBTEAMMembersUnsuspendArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersUnsuspendError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersUnsuspendError.h deleted file mode 100644 index d5dc5a20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMembersUnsuspendError.h +++ /dev/null @@ -1,183 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMembersUnsuspendError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MembersUnsuspendError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMembersUnsuspendError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMembersUnsuspendErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMMembersUnsuspendError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMembersUnsuspendErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMMembersUnsuspendErrorUserNotFound, - - /// The user is not a member of the team. - DBTEAMMembersUnsuspendErrorUserNotInTeam, - - /// (no description). - DBTEAMMembersUnsuspendErrorOther, - - /// The user is unsuspended, so it cannot be unsuspended again. - DBTEAMMembersUnsuspendErrorUnsuspendNonSuspendedMember, - - /// Team is full. The organization has no available licenses. - DBTEAMMembersUnsuspendErrorTeamLicenseLimit, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMembersUnsuspendErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -/// -/// Initializes union class with tag state of "user_not_in_team". -/// -/// Description of the "user_not_in_team" tag state: The user is not a member of -/// the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotInTeam; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "unsuspend_non_suspended_member". -/// -/// Description of the "unsuspend_non_suspended_member" tag state: The user is -/// unsuspended, so it cannot be unsuspended again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnsuspendNonSuspendedMember; - -/// -/// Initializes union class with tag state of "team_license_limit". -/// -/// Description of the "team_license_limit" tag state: Team is full. The -/// organization has no available licenses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLicenseLimit; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "user_not_in_team". -/// -/// @return Whether the union's current tag state has value "user_not_in_team". -/// -- (BOOL)isUserNotInTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "unsuspend_non_suspended_member". -/// -/// @return Whether the union's current tag state has value -/// "unsuspend_non_suspended_member". -/// -- (BOOL)isUnsuspendNonSuspendedMember; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_license_limit". -/// -/// @return Whether the union's current tag state has value -/// "team_license_limit". -/// -- (BOOL)isTeamLicenseLimit; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMembersUnsuspendError` union. -/// -@interface DBTEAMMembersUnsuspendErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMMembersUnsuspendError` instances. -/// -/// @param instance An instance of the `DBTEAMMembersUnsuspendError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMembersUnsuspendError *)instance; - -/// -/// Deserializes `DBTEAMMembersUnsuspendError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMembersUnsuspendError` API object. -/// -/// @return An instantiation of the `DBTEAMMembersUnsuspendError` object. -/// -+ (DBTEAMMembersUnsuspendError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMobileClientPlatform.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMobileClientPlatform.h deleted file mode 100644 index e6af1eef..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMobileClientPlatform.h +++ /dev/null @@ -1,194 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMMobileClientPlatform; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileClientPlatform` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMobileClientPlatform : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMMobileClientPlatformTag` enum type represents the possible tag -/// states with which the `DBTEAMMobileClientPlatform` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMMobileClientPlatformTag) { - /// Official Dropbox iPhone client. - DBTEAMMobileClientPlatformIphone, - - /// Official Dropbox iPad client. - DBTEAMMobileClientPlatformIpad, - - /// Official Dropbox Android client. - DBTEAMMobileClientPlatformAndroid, - - /// Official Dropbox Windows phone client. - DBTEAMMobileClientPlatformWindowsPhone, - - /// Official Dropbox Blackberry client. - DBTEAMMobileClientPlatformBlackberry, - - /// (no description). - DBTEAMMobileClientPlatformOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMMobileClientPlatformTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "iphone". -/// -/// Description of the "iphone" tag state: Official Dropbox iPhone client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIphone; - -/// -/// Initializes union class with tag state of "ipad". -/// -/// Description of the "ipad" tag state: Official Dropbox iPad client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIpad; - -/// -/// Initializes union class with tag state of "android". -/// -/// Description of the "android" tag state: Official Dropbox Android client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAndroid; - -/// -/// Initializes union class with tag state of "windows_phone". -/// -/// Description of the "windows_phone" tag state: Official Dropbox Windows phone -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWindowsPhone; - -/// -/// Initializes union class with tag state of "blackberry". -/// -/// Description of the "blackberry" tag state: Official Dropbox Blackberry -/// client. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBlackberry; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "iphone". -/// -/// @return Whether the union's current tag state has value "iphone". -/// -- (BOOL)isIphone; - -/// -/// Retrieves whether the union's current tag state has value "ipad". -/// -/// @return Whether the union's current tag state has value "ipad". -/// -- (BOOL)isIpad; - -/// -/// Retrieves whether the union's current tag state has value "android". -/// -/// @return Whether the union's current tag state has value "android". -/// -- (BOOL)isAndroid; - -/// -/// Retrieves whether the union's current tag state has value "windows_phone". -/// -/// @return Whether the union's current tag state has value "windows_phone". -/// -- (BOOL)isWindowsPhone; - -/// -/// Retrieves whether the union's current tag state has value "blackberry". -/// -/// @return Whether the union's current tag state has value "blackberry". -/// -- (BOOL)isBlackberry; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMMobileClientPlatform` union. -/// -@interface DBTEAMMobileClientPlatformSerializer : NSObject - -/// -/// Serializes `DBTEAMMobileClientPlatform` instances. -/// -/// @param instance An instance of the `DBTEAMMobileClientPlatform` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMobileClientPlatform` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMobileClientPlatform *)instance; - -/// -/// Deserializes `DBTEAMMobileClientPlatform` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMobileClientPlatform` API object. -/// -/// @return An instantiation of the `DBTEAMMobileClientPlatform` object. -/// -+ (DBTEAMMobileClientPlatform *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMobileClientSession.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMobileClientSession.h deleted file mode 100644 index 3be36045..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMMobileClientSession.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSession.h" - -@class DBTEAMMobileClientPlatform; -@class DBTEAMMobileClientSession; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `MobileClientSession` struct. -/// -/// Information about linked Dropbox mobile client sessions. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMMobileClientSession : DBTEAMDeviceSession - -#pragma mark - Instance fields - -/// The device name. -@property (nonatomic, readonly, copy) NSString *deviceName; - -/// The mobile application type. -@property (nonatomic, readonly) DBTEAMMobileClientPlatform *clientType; - -/// The dropbox client version. -@property (nonatomic, readonly, copy, nullable) NSString *clientVersion; - -/// The hosting OS version. -@property (nonatomic, readonly, copy, nullable) NSString *osVersion; - -/// last carrier used by the device. -@property (nonatomic, readonly, copy, nullable) NSString *lastCarrier; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// @param ipAddress The IP address of the last activity from this session. -/// @param country The country from which the last activity from this session -/// was made. -/// @param created The time this session was created. -/// @param updated The time of the last activity from this session. -/// @param clientVersion The dropbox client version. -/// @param osVersion The hosting OS version. -/// @param lastCarrier last carrier used by the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - deviceName:(NSString *)deviceName - clientType:(DBTEAMMobileClientPlatform *)clientType - ipAddress:(nullable NSString *)ipAddress - country:(nullable NSString *)country - created:(nullable NSDate *)created - updated:(nullable NSDate *)updated - clientVersion:(nullable NSString *)clientVersion - osVersion:(nullable NSString *)osVersion - lastCarrier:(nullable NSString *)lastCarrier; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param deviceName The device name. -/// @param clientType The mobile application type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - deviceName:(NSString *)deviceName - clientType:(DBTEAMMobileClientPlatform *)clientType; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `MobileClientSession` struct. -/// -@interface DBTEAMMobileClientSessionSerializer : NSObject - -/// -/// Serializes `DBTEAMMobileClientSession` instances. -/// -/// @param instance An instance of the `DBTEAMMobileClientSession` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMMobileClientSession` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMMobileClientSession *)instance; - -/// -/// Deserializes `DBTEAMMobileClientSession` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMMobileClientSession` API object. -/// -/// @return An instantiation of the `DBTEAMMobileClientSession` object. -/// -+ (DBTEAMMobileClientSession *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMNamespaceMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMNamespaceMetadata.h deleted file mode 100644 index 57656bc8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMNamespaceMetadata.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMNamespaceMetadata; -@class DBTEAMNamespaceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NamespaceMetadata` struct. -/// -/// Properties of a namespace. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMNamespaceMetadata : NSObject - -#pragma mark - Instance fields - -/// The name of this namespace. -@property (nonatomic, readonly, copy) NSString *name; - -/// The ID of this namespace. -@property (nonatomic, readonly, copy) NSString *namespaceId; - -/// The type of this namespace. -@property (nonatomic, readonly) DBTEAMNamespaceType *namespaceType; - -/// If this is a team member or app folder, the ID of the owning team member. -/// Otherwise, this field is not present. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of this namespace. -/// @param namespaceId The ID of this namespace. -/// @param namespaceType The type of this namespace. -/// @param teamMemberId If this is a team member or app folder, the ID of the -/// owning team member. Otherwise, this field is not present. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - namespaceId:(NSString *)namespaceId - namespaceType:(DBTEAMNamespaceType *)namespaceType - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The name of this namespace. -/// @param namespaceId The ID of this namespace. -/// @param namespaceType The type of this namespace. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - namespaceId:(NSString *)namespaceId - namespaceType:(DBTEAMNamespaceType *)namespaceType; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `NamespaceMetadata` struct. -/// -@interface DBTEAMNamespaceMetadataSerializer : NSObject - -/// -/// Serializes `DBTEAMNamespaceMetadata` instances. -/// -/// @param instance An instance of the `DBTEAMNamespaceMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMNamespaceMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMNamespaceMetadata *)instance; - -/// -/// Deserializes `DBTEAMNamespaceMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMNamespaceMetadata` API object. -/// -/// @return An instantiation of the `DBTEAMNamespaceMetadata` object. -/// -+ (DBTEAMNamespaceMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMNamespaceType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMNamespaceType.h deleted file mode 100644 index 0eb9da89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMNamespaceType.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMNamespaceType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `NamespaceType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMNamespaceType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMNamespaceTypeTag` enum type represents the possible tag states -/// with which the `DBTEAMNamespaceType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMNamespaceTypeTag) { - /// App sandbox folder. - DBTEAMNamespaceTypeAppFolder, - - /// Shared folder. - DBTEAMNamespaceTypeSharedFolder, - - /// Top-level team-owned folder. - DBTEAMNamespaceTypeTeamFolder, - - /// Team member's home folder. - DBTEAMNamespaceTypeTeamMemberFolder, - - /// (no description). - DBTEAMNamespaceTypeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMNamespaceTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "app_folder". -/// -/// Description of the "app_folder" tag state: App sandbox folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppFolder; - -/// -/// Initializes union class with tag state of "shared_folder". -/// -/// Description of the "shared_folder" tag state: Shared folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolder; - -/// -/// Initializes union class with tag state of "team_folder". -/// -/// Description of the "team_folder" tag state: Top-level team-owned folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolder; - -/// -/// Initializes union class with tag state of "team_member_folder". -/// -/// Description of the "team_member_folder" tag state: Team member's home -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberFolder; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "app_folder". -/// -/// @return Whether the union's current tag state has value "app_folder". -/// -- (BOOL)isAppFolder; - -/// -/// Retrieves whether the union's current tag state has value "shared_folder". -/// -/// @return Whether the union's current tag state has value "shared_folder". -/// -- (BOOL)isSharedFolder; - -/// -/// Retrieves whether the union's current tag state has value "team_folder". -/// -/// @return Whether the union's current tag state has value "team_folder". -/// -- (BOOL)isTeamFolder; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_member_folder". -/// -/// @return Whether the union's current tag state has value -/// "team_member_folder". -/// -- (BOOL)isTeamMemberFolder; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMNamespaceType` union. -/// -@interface DBTEAMNamespaceTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMNamespaceType` instances. -/// -/// @param instance An instance of the `DBTEAMNamespaceType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMNamespaceType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMNamespaceType *)instance; - -/// -/// Deserializes `DBTEAMNamespaceType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMNamespaceType` API object. -/// -/// @return An instantiation of the `DBTEAMNamespaceType` object. -/// -+ (DBTEAMNamespaceType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESCameraUploadsPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESCameraUploadsPolicyState.h deleted file mode 100644 index 45d79b94..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESCameraUploadsPolicyState.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESCameraUploadsPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `CameraUploadsPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESCameraUploadsPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESCameraUploadsPolicyStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESCameraUploadsPolicyStateTag) { - /// Background camera uploads are disabled. - DBTEAMPOLICIESCameraUploadsPolicyStateDisabled, - - /// Background camera uploads are allowed. - DBTEAMPOLICIESCameraUploadsPolicyStateEnabled, - - /// (no description). - DBTEAMPOLICIESCameraUploadsPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESCameraUploadsPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Background camera uploads are -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Background camera uploads are -/// allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESCameraUploadsPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESCameraUploadsPolicyState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESCameraUploadsPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESCameraUploadsPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESCameraUploadsPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESCameraUploadsPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESCameraUploadsPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESCameraUploadsPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESComputerBackupPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESComputerBackupPolicyState.h deleted file mode 100644 index cb04e785..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESComputerBackupPolicyState.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESComputerBackupPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ComputerBackupPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESComputerBackupPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESComputerBackupPolicyStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESComputerBackupPolicyState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESComputerBackupPolicyStateTag) { - /// Computer Backup feature is disabled. - DBTEAMPOLICIESComputerBackupPolicyStateDisabled, - - /// Computer Backup feature is enabled. - DBTEAMPOLICIESComputerBackupPolicyStateEnabled, - - /// Computer Backup defaults to ON for SSB teams, and OFF for Enterprise - /// teams. - DBTEAMPOLICIESComputerBackupPolicyStateDefault_, - - /// (no description). - DBTEAMPOLICIESComputerBackupPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESComputerBackupPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Computer Backup feature is -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Computer Backup feature is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: Computer Backup defaults to ON for -/// SSB teams, and OFF for Enterprise teams. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESComputerBackupPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESComputerBackupPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESComputerBackupPolicyState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESComputerBackupPolicyState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESComputerBackupPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESComputerBackupPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESComputerBackupPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESComputerBackupPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESComputerBackupPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESComputerBackupPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESEmmState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESEmmState.h deleted file mode 100644 index 098a7db4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESEmmState.h +++ /dev/null @@ -1,154 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESEmmState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `EmmState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESEmmState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESEmmStateTag` enum type represents the possible tag states -/// with which the `DBTEAMPOLICIESEmmState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESEmmStateTag) { - /// Emm token is disabled. - DBTEAMPOLICIESEmmStateDisabled, - - /// Emm token is optional. - DBTEAMPOLICIESEmmStateOptional, - - /// Emm token is required. - DBTEAMPOLICIESEmmStateRequired, - - /// (no description). - DBTEAMPOLICIESEmmStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESEmmStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Emm token is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "optional". -/// -/// Description of the "optional" tag state: Emm token is optional. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "required". -/// -/// Description of the "required" tag state: Emm token is required. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESEmmState` union. -/// -@interface DBTEAMPOLICIESEmmStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESEmmState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESEmmState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESEmmState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESEmmState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESEmmState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESEmmState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESEmmState` object. -/// -+ (DBTEAMPOLICIESEmmState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESExternalDriveBackupPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESExternalDriveBackupPolicyState.h deleted file mode 100644 index 2fc980da..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESExternalDriveBackupPolicyState.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESExternalDriveBackupPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ExternalDriveBackupPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESExternalDriveBackupPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESExternalDriveBackupPolicyStateTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESExternalDriveBackupPolicyStateTag) { - /// External Drive Backup feature is disabled. - DBTEAMPOLICIESExternalDriveBackupPolicyStateDisabled, - - /// External Drive Backup feature is enabled. - DBTEAMPOLICIESExternalDriveBackupPolicyStateEnabled, - - /// External Drive Backup default value based on team tier. - DBTEAMPOLICIESExternalDriveBackupPolicyStateDefault_, - - /// (no description). - DBTEAMPOLICIESExternalDriveBackupPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESExternalDriveBackupPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: External Drive Backup feature is -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: External Drive Backup feature is -/// enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: External Drive Backup default value -/// based on team tier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` union. -/// -@interface DBTEAMPOLICIESExternalDriveBackupPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESExternalDriveBackupPolicyState` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESExternalDriveBackupPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESExternalDriveBackupPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESExternalDriveBackupPolicyState` object. -/// -+ (DBTEAMPOLICIESExternalDriveBackupPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESFileLockingPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESFileLockingPolicyState.h deleted file mode 100644 index e80ca9b8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESFileLockingPolicyState.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESFileLockingPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESFileLockingPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESFileLockingPolicyStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESFileLockingPolicyState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESFileLockingPolicyStateTag) { - /// File locking feature is disabled. - DBTEAMPOLICIESFileLockingPolicyStateDisabled, - - /// File locking feature is allowed. - DBTEAMPOLICIESFileLockingPolicyStateEnabled, - - /// (no description). - DBTEAMPOLICIESFileLockingPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESFileLockingPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: File locking feature is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: File locking feature is allowed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESFileLockingPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESFileLockingPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESFileLockingPolicyState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESFileLockingPolicyState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileLockingPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESFileLockingPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESFileLockingPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileLockingPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESFileLockingPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESFileLockingPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESFileProviderMigrationPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESFileProviderMigrationPolicyState.h deleted file mode 100644 index 8342c8e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESFileProviderMigrationPolicyState.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESFileProviderMigrationPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileProviderMigrationPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESFileProviderMigrationPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESFileProviderMigrationPolicyStateTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESFileProviderMigrationPolicyStateTag) { - /// Team admin has opted out of File Provider Migration for team members. - DBTEAMPOLICIESFileProviderMigrationPolicyStateDisabled, - - /// Team admin has not opted out of File Provider Migration for team - /// members. - DBTEAMPOLICIESFileProviderMigrationPolicyStateEnabled, - - /// Team admin has default value based on team tier. - DBTEAMPOLICIESFileProviderMigrationPolicyStateDefault_, - - /// (no description). - DBTEAMPOLICIESFileProviderMigrationPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESFileProviderMigrationPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Team admin has opted out of File -/// Provider Migration for team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Team admin has not opted out of File -/// Provider Migration for team members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "default". -/// -/// Description of the "default" tag state: Team admin has default value based -/// on team tier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefault_; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "default". -/// -/// @return Whether the union's current tag state has value "default". -/// -- (BOOL)isDefault_; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` union. -/// -@interface DBTEAMPOLICIESFileProviderMigrationPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESFileProviderMigrationPolicyState` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESFileProviderMigrationPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESFileProviderMigrationPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESFileProviderMigrationPolicyState` object. -/// -+ (DBTEAMPOLICIESFileProviderMigrationPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESGroupCreation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESGroupCreation.h deleted file mode 100644 index 08841070..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESGroupCreation.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESGroupCreation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GroupCreation` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESGroupCreation : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESGroupCreationTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESGroupCreation` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESGroupCreationTag) { - /// Team admins and members can create groups. - DBTEAMPOLICIESGroupCreationAdminsAndMembers, - - /// Only team admins can create groups. - DBTEAMPOLICIESGroupCreationAdminsOnly, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESGroupCreationTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "admins_and_members". -/// -/// Description of the "admins_and_members" tag state: Team admins and members -/// can create groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminsAndMembers; - -/// -/// Initializes union class with tag state of "admins_only". -/// -/// Description of the "admins_only" tag state: Only team admins can create -/// groups. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminsOnly; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "admins_and_members". -/// -/// @return Whether the union's current tag state has value -/// "admins_and_members". -/// -- (BOOL)isAdminsAndMembers; - -/// -/// Retrieves whether the union's current tag state has value "admins_only". -/// -/// @return Whether the union's current tag state has value "admins_only". -/// -- (BOOL)isAdminsOnly; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESGroupCreation` union. -/// -@interface DBTEAMPOLICIESGroupCreationSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESGroupCreation` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESGroupCreation` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESGroupCreation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESGroupCreation *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESGroupCreation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESGroupCreation` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESGroupCreation` object. -/// -+ (DBTEAMPOLICIESGroupCreation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESOfficeAddInPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESOfficeAddInPolicy.h deleted file mode 100644 index 06cae64b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESOfficeAddInPolicy.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESOfficeAddInPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `OfficeAddInPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESOfficeAddInPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESOfficeAddInPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESOfficeAddInPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESOfficeAddInPolicyTag) { - /// Office Add-In is disabled. - DBTEAMPOLICIESOfficeAddInPolicyDisabled, - - /// Office Add-In is enabled. - DBTEAMPOLICIESOfficeAddInPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESOfficeAddInPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESOfficeAddInPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Office Add-In is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Office Add-In is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESOfficeAddInPolicy` union. -/// -@interface DBTEAMPOLICIESOfficeAddInPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESOfficeAddInPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESOfficeAddInPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESOfficeAddInPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESOfficeAddInPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESOfficeAddInPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESOfficeAddInPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESOfficeAddInPolicy` object. -/// -+ (DBTEAMPOLICIESOfficeAddInPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDefaultFolderPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDefaultFolderPolicy.h deleted file mode 100644 index f6407089..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDefaultFolderPolicy.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperDefaultFolderPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDefaultFolderPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperDefaultFolderPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperDefaultFolderPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperDefaultFolderPolicyTag) { - /// Everyone in team will be the default option when creating a folder in - /// Paper. - DBTEAMPOLICIESPaperDefaultFolderPolicyEveryoneInTeam, - - /// Invite only will be the default option when creating a folder in Paper. - DBTEAMPOLICIESPaperDefaultFolderPolicyInviteOnly, - - /// (no description). - DBTEAMPOLICIESPaperDefaultFolderPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDefaultFolderPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "everyone_in_team". -/// -/// Description of the "everyone_in_team" tag state: Everyone in team will be -/// the default option when creating a folder in Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEveryoneInTeam; - -/// -/// Initializes union class with tag state of "invite_only". -/// -/// Description of the "invite_only" tag state: Invite only will be the default -/// option when creating a folder in Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInviteOnly; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "everyone_in_team". -/// -/// @return Whether the union's current tag state has value "everyone_in_team". -/// -- (BOOL)isEveryoneInTeam; - -/// -/// Retrieves whether the union's current tag state has value "invite_only". -/// -/// @return Whether the union's current tag state has value "invite_only". -/// -- (BOOL)isInviteOnly; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// union. -/// -@interface DBTEAMPOLICIESPaperDefaultFolderPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperDefaultFolderPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDefaultFolderPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperDefaultFolderPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperDefaultFolderPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDefaultFolderPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperDefaultFolderPolicy` -/// object. -/// -+ (DBTEAMPOLICIESPaperDefaultFolderPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDeploymentPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDeploymentPolicy.h deleted file mode 100644 index e4bf8a8d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDeploymentPolicy.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperDeploymentPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDeploymentPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperDeploymentPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperDeploymentPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESPaperDeploymentPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperDeploymentPolicyTag) { - /// All team members have access to Paper. - DBTEAMPOLICIESPaperDeploymentPolicyFull, - - /// Only whitelisted team members can access Paper. To see which user is - /// whitelisted, check 'is_paper_whitelisted' on 'account/info'. - DBTEAMPOLICIESPaperDeploymentPolicyPartial, - - /// (no description). - DBTEAMPOLICIESPaperDeploymentPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDeploymentPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "full". -/// -/// Description of the "full" tag state: All team members have access to Paper. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFull; - -/// -/// Initializes union class with tag state of "partial". -/// -/// Description of the "partial" tag state: Only whitelisted team members can -/// access Paper. To see which user is whitelisted, check 'is_paper_whitelisted' -/// on 'account/info'. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPartial; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "full". -/// -/// @return Whether the union's current tag state has value "full". -/// -- (BOOL)isFull; - -/// -/// Retrieves whether the union's current tag state has value "partial". -/// -/// @return Whether the union's current tag state has value "partial". -/// -- (BOOL)isPartial; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperDeploymentPolicy` union. -/// -@interface DBTEAMPOLICIESPaperDeploymentPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperDeploymentPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperDeploymentPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDeploymentPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperDeploymentPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperDeploymentPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDeploymentPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperDeploymentPolicy` -/// object. -/// -+ (DBTEAMPOLICIESPaperDeploymentPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDesktopPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDesktopPolicy.h deleted file mode 100644 index aa08bd43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperDesktopPolicy.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperDesktopPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperDesktopPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperDesktopPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperDesktopPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESPaperDesktopPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperDesktopPolicyTag) { - /// Do not allow team members to use Paper Desktop. - DBTEAMPOLICIESPaperDesktopPolicyDisabled, - - /// Allow team members to use Paper Desktop. - DBTEAMPOLICIESPaperDesktopPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESPaperDesktopPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperDesktopPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Do not allow team members to use -/// Paper Desktop. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Allow team members to use Paper -/// Desktop. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperDesktopPolicy` union. -/// -@interface DBTEAMPOLICIESPaperDesktopPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperDesktopPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperDesktopPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDesktopPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperDesktopPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperDesktopPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperDesktopPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperDesktopPolicy` object. -/// -+ (DBTEAMPOLICIESPaperDesktopPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperEnabledPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperEnabledPolicy.h deleted file mode 100644 index c3612cfa..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPaperEnabledPolicy.h +++ /dev/null @@ -1,156 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPaperEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperEnabledPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPaperEnabledPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPaperEnabledPolicyTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESPaperEnabledPolicy` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPaperEnabledPolicyTag) { - /// Paper is disabled. - DBTEAMPOLICIESPaperEnabledPolicyDisabled, - - /// Paper is enabled. - DBTEAMPOLICIESPaperEnabledPolicyEnabled, - - /// Unspecified policy. - DBTEAMPOLICIESPaperEnabledPolicyUnspecified, - - /// (no description). - DBTEAMPOLICIESPaperEnabledPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPaperEnabledPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Paper is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Paper is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "unspecified". -/// -/// Description of the "unspecified" tag state: Unspecified policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnspecified; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "unspecified". -/// -/// @return Whether the union's current tag state has value "unspecified". -/// -- (BOOL)isUnspecified; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPaperEnabledPolicy` union. -/// -@interface DBTEAMPOLICIESPaperEnabledPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPaperEnabledPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPaperEnabledPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperEnabledPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPaperEnabledPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPaperEnabledPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPaperEnabledPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPaperEnabledPolicy` object. -/// -+ (DBTEAMPOLICIESPaperEnabledPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPasswordControlMode.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPasswordControlMode.h deleted file mode 100644 index 656bbf4b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPasswordControlMode.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPasswordControlMode; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordControlMode` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPasswordControlMode : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPasswordControlModeTag` enum type represents the possible -/// tag states with which the `DBTEAMPOLICIESPasswordControlMode` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPasswordControlModeTag) { - /// Password is disabled. - DBTEAMPOLICIESPasswordControlModeDisabled, - - /// Password is enabled. - DBTEAMPOLICIESPasswordControlModeEnabled, - - /// (no description). - DBTEAMPOLICIESPasswordControlModeOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordControlModeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Password is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Password is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPasswordControlMode` union. -/// -@interface DBTEAMPOLICIESPasswordControlModeSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPasswordControlMode` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPasswordControlMode` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordControlMode` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPasswordControlMode *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPasswordControlMode` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordControlMode` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPasswordControlMode` object. -/// -+ (DBTEAMPOLICIESPasswordControlMode *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPasswordStrengthPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPasswordStrengthPolicy.h deleted file mode 100644 index 75fbe7e8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESPasswordStrengthPolicy.h +++ /dev/null @@ -1,164 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESPasswordStrengthPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PasswordStrengthPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESPasswordStrengthPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESPasswordStrengthPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESPasswordStrengthPolicyTag) { - /// User passwords will adhere to the minimal password strength policy. - DBTEAMPOLICIESPasswordStrengthPolicyMinimalRequirements, - - /// User passwords will adhere to the moderate password strength policy. - DBTEAMPOLICIESPasswordStrengthPolicyModeratePassword, - - /// User passwords will adhere to the very strong password strength policy. - DBTEAMPOLICIESPasswordStrengthPolicyStrongPassword, - - /// (no description). - DBTEAMPOLICIESPasswordStrengthPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESPasswordStrengthPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "minimal_requirements". -/// -/// Description of the "minimal_requirements" tag state: User passwords will -/// adhere to the minimal password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMinimalRequirements; - -/// -/// Initializes union class with tag state of "moderate_password". -/// -/// Description of the "moderate_password" tag state: User passwords will adhere -/// to the moderate password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithModeratePassword; - -/// -/// Initializes union class with tag state of "strong_password". -/// -/// Description of the "strong_password" tag state: User passwords will adhere -/// to the very strong password strength policy. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStrongPassword; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "minimal_requirements". -/// -/// @return Whether the union's current tag state has value -/// "minimal_requirements". -/// -- (BOOL)isMinimalRequirements; - -/// -/// Retrieves whether the union's current tag state has value -/// "moderate_password". -/// -/// @return Whether the union's current tag state has value "moderate_password". -/// -- (BOOL)isModeratePassword; - -/// -/// Retrieves whether the union's current tag state has value "strong_password". -/// -/// @return Whether the union's current tag state has value "strong_password". -/// -- (BOOL)isStrongPassword; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// union. -/// -@interface DBTEAMPOLICIESPasswordStrengthPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESPasswordStrengthPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordStrengthPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESPasswordStrengthPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESPasswordStrengthPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESPasswordStrengthPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESPasswordStrengthPolicy` -/// object. -/// -+ (DBTEAMPOLICIESPasswordStrengthPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESRolloutMethod.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESRolloutMethod.h deleted file mode 100644 index 33936193..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESRolloutMethod.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESRolloutMethod; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RolloutMethod` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESRolloutMethod : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESRolloutMethodTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESRolloutMethod` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESRolloutMethodTag) { - /// Unlink all. - DBTEAMPOLICIESRolloutMethodUnlinkAll, - - /// Unlink devices with the most inactivity. - DBTEAMPOLICIESRolloutMethodUnlinkMostInactive, - - /// Add member to Exceptions. - DBTEAMPOLICIESRolloutMethodAddMemberToExceptions, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESRolloutMethodTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unlink_all". -/// -/// Description of the "unlink_all" tag state: Unlink all. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkAll; - -/// -/// Initializes union class with tag state of "unlink_most_inactive". -/// -/// Description of the "unlink_most_inactive" tag state: Unlink devices with the -/// most inactivity. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlinkMostInactive; - -/// -/// Initializes union class with tag state of "add_member_to_exceptions". -/// -/// Description of the "add_member_to_exceptions" tag state: Add member to -/// Exceptions. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAddMemberToExceptions; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "unlink_all". -/// -/// @return Whether the union's current tag state has value "unlink_all". -/// -- (BOOL)isUnlinkAll; - -/// -/// Retrieves whether the union's current tag state has value -/// "unlink_most_inactive". -/// -/// @return Whether the union's current tag state has value -/// "unlink_most_inactive". -/// -- (BOOL)isUnlinkMostInactive; - -/// -/// Retrieves whether the union's current tag state has value -/// "add_member_to_exceptions". -/// -/// @return Whether the union's current tag state has value -/// "add_member_to_exceptions". -/// -- (BOOL)isAddMemberToExceptions; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESRolloutMethod` union. -/// -@interface DBTEAMPOLICIESRolloutMethodSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESRolloutMethod` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESRolloutMethod` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESRolloutMethod` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESRolloutMethod *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESRolloutMethod` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESRolloutMethod` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESRolloutMethod` object. -/// -+ (DBTEAMPOLICIESRolloutMethod *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h deleted file mode 100644 index af39c26d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy.h +++ /dev/null @@ -1,147 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderBlanketLinkRestrictionPolicy` union. -/// -/// Policy governing whether shared folder membership is required to access -/// shared links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyTag` enum type -/// represents the possible tag states with which the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyTag) { - /// Only members of shared folders can access folder content via shared - /// link. - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyMembers, - - /// Anyone can access folder content via shared link. - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyAnyone, - - /// (no description). - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "members". -/// -/// Description of the "members" tag state: Only members of shared folders can -/// access folder content via shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMembers; - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Anyone can access folder content via -/// shared link. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "members". -/// -/// @return Whether the union's current tag state has value "members". -/// -- (BOOL)isMembers; - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` union. -/// -@interface DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` -/// instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` -/// instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy` object. -/// -+ (DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderJoinPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderJoinPolicy.h deleted file mode 100644 index 7c2a2b3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderJoinPolicy.h +++ /dev/null @@ -1,144 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedFolderJoinPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderJoinPolicy` union. -/// -/// Policy governing which shared folders a team member can join. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedFolderJoinPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedFolderJoinPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedFolderJoinPolicyTag) { - /// Team members can only join folders shared by teammates. - DBTEAMPOLICIESSharedFolderJoinPolicyFromTeamOnly, - - /// Team members can join any shared folder, including those shared by users - /// outside the team. - DBTEAMPOLICIESSharedFolderJoinPolicyFromAnyone, - - /// (no description). - DBTEAMPOLICIESSharedFolderJoinPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderJoinPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "from_team_only". -/// -/// Description of the "from_team_only" tag state: Team members can only join -/// folders shared by teammates. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromTeamOnly; - -/// -/// Initializes union class with tag state of "from_anyone". -/// -/// Description of the "from_anyone" tag state: Team members can join any shared -/// folder, including those shared by users outside the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFromAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "from_team_only". -/// -/// @return Whether the union's current tag state has value "from_team_only". -/// -- (BOOL)isFromTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "from_anyone". -/// -/// @return Whether the union's current tag state has value "from_anyone". -/// -- (BOOL)isFromAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// union. -/// -@interface DBTEAMPOLICIESSharedFolderJoinPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedFolderJoinPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderJoinPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedFolderJoinPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedFolderJoinPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderJoinPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSharedFolderJoinPolicy` -/// object. -/// -+ (DBTEAMPOLICIESSharedFolderJoinPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderMemberPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderMemberPolicy.h deleted file mode 100644 index 05be419b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedFolderMemberPolicy.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedFolderMemberPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedFolderMemberPolicy` union. -/// -/// Policy governing who can be a member of a folder shared by a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedFolderMemberPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedFolderMemberPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedFolderMemberPolicyTag) { - /// Only a teammate can be a member of a folder shared by a team member. - DBTEAMPOLICIESSharedFolderMemberPolicyTeam, - - /// Anyone can be a member of a folder shared by a team member. - DBTEAMPOLICIESSharedFolderMemberPolicyAnyone, - - /// (no description). - DBTEAMPOLICIESSharedFolderMemberPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderMemberPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: Only a teammate can be a member of a -/// folder shared by a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam; - -/// -/// Initializes union class with tag state of "anyone". -/// -/// Description of the "anyone" tag state: Anyone can be a member of a folder -/// shared by a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAnyone; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "anyone". -/// -/// @return Whether the union's current tag state has value "anyone". -/// -- (BOOL)isAnyone; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// union. -/// -@interface DBTEAMPOLICIESSharedFolderMemberPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedFolderMemberPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderMemberPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedFolderMemberPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedFolderMemberPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedFolderMemberPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSharedFolderMemberPolicy` -/// object. -/// -+ (DBTEAMPOLICIESSharedFolderMemberPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedLinkCreatePolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedLinkCreatePolicy.h deleted file mode 100644 index 8c376e67..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSharedLinkCreatePolicy.h +++ /dev/null @@ -1,193 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSharedLinkCreatePolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharedLinkCreatePolicy` union. -/// -/// Policy governing the visibility of shared links. This policy can apply to -/// newly created shared links, or all shared links. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSharedLinkCreatePolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSharedLinkCreatePolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSharedLinkCreatePolicyTag) { - /// By default, anyone can access newly created shared links. No login will - /// be required to access the shared links unless overridden. - DBTEAMPOLICIESSharedLinkCreatePolicyDefaultPublic, - - /// By default, only members of the same team can access newly created - /// shared links. Login will be required to access the shared links unless - /// overridden. - DBTEAMPOLICIESSharedLinkCreatePolicyDefaultTeamOnly, - - /// Only members of the same team can access all shared links. Login will be - /// required to access all shared links. - DBTEAMPOLICIESSharedLinkCreatePolicyTeamOnly, - - /// Only people invited can access newly created links. Login will be - /// required to access the shared links unless overridden. - DBTEAMPOLICIESSharedLinkCreatePolicyDefaultNoOne, - - /// (no description). - DBTEAMPOLICIESSharedLinkCreatePolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedLinkCreatePolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "default_public". -/// -/// Description of the "default_public" tag state: By default, anyone can access -/// newly created shared links. No login will be required to access the shared -/// links unless overridden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultPublic; - -/// -/// Initializes union class with tag state of "default_team_only". -/// -/// Description of the "default_team_only" tag state: By default, only members -/// of the same team can access newly created shared links. Login will be -/// required to access the shared links unless overridden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultTeamOnly; - -/// -/// Initializes union class with tag state of "team_only". -/// -/// Description of the "team_only" tag state: Only members of the same team can -/// access all shared links. Login will be required to access all shared links. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamOnly; - -/// -/// Initializes union class with tag state of "default_no_one". -/// -/// Description of the "default_no_one" tag state: Only people invited can -/// access newly created links. Login will be required to access the shared -/// links unless overridden. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDefaultNoOne; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "default_public". -/// -/// @return Whether the union's current tag state has value "default_public". -/// -- (BOOL)isDefaultPublic; - -/// -/// Retrieves whether the union's current tag state has value -/// "default_team_only". -/// -/// @return Whether the union's current tag state has value "default_team_only". -/// -- (BOOL)isDefaultTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "team_only". -/// -/// @return Whether the union's current tag state has value "team_only". -/// -- (BOOL)isTeamOnly; - -/// -/// Retrieves whether the union's current tag state has value "default_no_one". -/// -/// @return Whether the union's current tag state has value "default_no_one". -/// -- (BOOL)isDefaultNoOne; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// union. -/// -@interface DBTEAMPOLICIESSharedLinkCreatePolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSharedLinkCreatePolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedLinkCreatePolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSharedLinkCreatePolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSharedLinkCreatePolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSharedLinkCreatePolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSharedLinkCreatePolicy` -/// object. -/// -+ (DBTEAMPOLICIESSharedLinkCreatePolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseDownloadPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseDownloadPolicy.h deleted file mode 100644 index aa8b9cfe..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseDownloadPolicy.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESShowcaseDownloadPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseDownloadPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESShowcaseDownloadPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESShowcaseDownloadPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESShowcaseDownloadPolicyTag) { - /// Do not allow files to be downloaded from Showcases. - DBTEAMPOLICIESShowcaseDownloadPolicyDisabled, - - /// Allow files to be downloaded from Showcases. - DBTEAMPOLICIESShowcaseDownloadPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESShowcaseDownloadPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESShowcaseDownloadPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Do not allow files to be downloaded -/// from Showcases. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Allow files to be downloaded from -/// Showcases. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// union. -/// -@interface DBTEAMPOLICIESShowcaseDownloadPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESShowcaseDownloadPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseDownloadPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESShowcaseDownloadPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESShowcaseDownloadPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseDownloadPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESShowcaseDownloadPolicy` -/// object. -/// -+ (DBTEAMPOLICIESShowcaseDownloadPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseEnabledPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseEnabledPolicy.h deleted file mode 100644 index c81e4a61..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseEnabledPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESShowcaseEnabledPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseEnabledPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESShowcaseEnabledPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESShowcaseEnabledPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESShowcaseEnabledPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESShowcaseEnabledPolicyTag) { - /// Showcase is disabled. - DBTEAMPOLICIESShowcaseEnabledPolicyDisabled, - - /// Showcase is enabled. - DBTEAMPOLICIESShowcaseEnabledPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESShowcaseEnabledPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESShowcaseEnabledPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Showcase is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Showcase is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESShowcaseEnabledPolicy` union. -/// -@interface DBTEAMPOLICIESShowcaseEnabledPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESShowcaseEnabledPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESShowcaseEnabledPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseEnabledPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESShowcaseEnabledPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESShowcaseEnabledPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseEnabledPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESShowcaseEnabledPolicy` -/// object. -/// -+ (DBTEAMPOLICIESShowcaseEnabledPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseExternalSharingPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseExternalSharingPolicy.h deleted file mode 100644 index 57b16c20..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESShowcaseExternalSharingPolicy.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESShowcaseExternalSharingPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ShowcaseExternalSharingPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESShowcaseExternalSharingPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESShowcaseExternalSharingPolicyTag` enum type represents -/// the possible tag states with which the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESShowcaseExternalSharingPolicyTag) { - /// Do not allow showcases to be shared with people not on the team. - DBTEAMPOLICIESShowcaseExternalSharingPolicyDisabled, - - /// Allow showcases to be shared with people not on the team. - DBTEAMPOLICIESShowcaseExternalSharingPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESShowcaseExternalSharingPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESShowcaseExternalSharingPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Do not allow showcases to be shared -/// with people not on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Allow showcases to be shared with -/// people not on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` union. -/// -@interface DBTEAMPOLICIESShowcaseExternalSharingPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESShowcaseExternalSharingPolicy` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESShowcaseExternalSharingPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESShowcaseExternalSharingPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` API object. -/// -/// @return An instantiation of the -/// `DBTEAMPOLICIESShowcaseExternalSharingPolicy` object. -/// -+ (DBTEAMPOLICIESShowcaseExternalSharingPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSmartSyncPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSmartSyncPolicy.h deleted file mode 100644 index e0752d10..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSmartSyncPolicy.h +++ /dev/null @@ -1,138 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSmartSyncPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmartSyncPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSmartSyncPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSmartSyncPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESSmartSyncPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSmartSyncPolicyTag) { - /// The specified content will be synced as local files by default. - DBTEAMPOLICIESSmartSyncPolicyLocal, - - /// The specified content will be synced as on-demand files by default. - DBTEAMPOLICIESSmartSyncPolicyOnDemand, - - /// (no description). - DBTEAMPOLICIESSmartSyncPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSmartSyncPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "local". -/// -/// Description of the "local" tag state: The specified content will be synced -/// as local files by default. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLocal; - -/// -/// Initializes union class with tag state of "on_demand". -/// -/// Description of the "on_demand" tag state: The specified content will be -/// synced as on-demand files by default. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOnDemand; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "local". -/// -/// @return Whether the union's current tag state has value "local". -/// -- (BOOL)isLocal; - -/// -/// Retrieves whether the union's current tag state has value "on_demand". -/// -/// @return Whether the union's current tag state has value "on_demand". -/// -- (BOOL)isOnDemand; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSmartSyncPolicy` union. -/// -@interface DBTEAMPOLICIESSmartSyncPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSmartSyncPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSmartSyncPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmartSyncPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSmartSyncPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSmartSyncPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmartSyncPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSmartSyncPolicy` object. -/// -+ (DBTEAMPOLICIESSmartSyncPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSmarterSmartSyncPolicyState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSmarterSmartSyncPolicyState.h deleted file mode 100644 index 431c7aa6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSmarterSmartSyncPolicyState.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSmarterSmartSyncPolicyState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SmarterSmartSyncPolicyState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSmarterSmartSyncPolicyState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSmarterSmartSyncPolicyStateTag` enum type represents the -/// possible tag states with which the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSmarterSmartSyncPolicyStateTag) { - /// Smarter Smart Sync feature is disabled. - DBTEAMPOLICIESSmarterSmartSyncPolicyStateDisabled, - - /// Smarter Smart Sync feature is enabled. - DBTEAMPOLICIESSmarterSmartSyncPolicyStateEnabled, - - /// (no description). - DBTEAMPOLICIESSmarterSmartSyncPolicyStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSmarterSmartSyncPolicyStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Smarter Smart Sync feature is -/// disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Smarter Smart Sync feature is -/// enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSmarterSmartSyncPolicyState` -/// union. -/// -@interface DBTEAMPOLICIESSmarterSmartSyncPolicyStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSmarterSmartSyncPolicyState` instances. -/// -/// @param instance An instance of the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSmarterSmartSyncPolicyState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSmarterSmartSyncPolicyState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSmarterSmartSyncPolicyState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSmarterSmartSyncPolicyState` -/// object. -/// -+ (DBTEAMPOLICIESSmarterSmartSyncPolicyState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSsoPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSsoPolicy.h deleted file mode 100644 index f0a483de..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSsoPolicy.h +++ /dev/null @@ -1,158 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSsoPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SsoPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSsoPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSsoPolicyTag` enum type represents the possible tag -/// states with which the `DBTEAMPOLICIESSsoPolicy` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSsoPolicyTag) { - /// Users will be able to sign in with their Dropbox credentials. - DBTEAMPOLICIESSsoPolicyDisabled, - - /// Users will be able to sign in with either their Dropbox or single - /// sign-on credentials. - DBTEAMPOLICIESSsoPolicyOptional, - - /// Users will be required to sign in with their single sign-on credentials. - DBTEAMPOLICIESSsoPolicyRequired, - - /// (no description). - DBTEAMPOLICIESSsoPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSsoPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Users will be able to sign in with -/// their Dropbox credentials. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "optional". -/// -/// Description of the "optional" tag state: Users will be able to sign in with -/// either their Dropbox or single sign-on credentials. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "required". -/// -/// Description of the "required" tag state: Users will be required to sign in -/// with their single sign-on credentials. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSsoPolicy` union. -/// -@interface DBTEAMPOLICIESSsoPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSsoPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSsoPolicy` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSsoPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSsoPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSsoPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSsoPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSsoPolicy` object. -/// -+ (DBTEAMPOLICIESSsoPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSuggestMembersPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSuggestMembersPolicy.h deleted file mode 100644 index 21e0b17b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESSuggestMembersPolicy.h +++ /dev/null @@ -1,137 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESSuggestMembersPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SuggestMembersPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESSuggestMembersPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESSuggestMembersPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESSuggestMembersPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESSuggestMembersPolicyTag) { - /// Suggest members is disabled. - DBTEAMPOLICIESSuggestMembersPolicyDisabled, - - /// Suggest members is enabled. - DBTEAMPOLICIESSuggestMembersPolicyEnabled, - - /// (no description). - DBTEAMPOLICIESSuggestMembersPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESSuggestMembersPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Suggest members is disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: Suggest members is enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESSuggestMembersPolicy` union. -/// -@interface DBTEAMPOLICIESSuggestMembersPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESSuggestMembersPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESSuggestMembersPolicy` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSuggestMembersPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESSuggestMembersPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESSuggestMembersPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESSuggestMembersPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESSuggestMembersPolicy` object. -/// -+ (DBTEAMPOLICIESSuggestMembersPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTeamMemberPolicies.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTeamMemberPolicies.h deleted file mode 100644 index 9d2a7047..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTeamMemberPolicies.h +++ /dev/null @@ -1,109 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESEmmState; -@class DBTEAMPOLICIESOfficeAddInPolicy; -@class DBTEAMPOLICIESSuggestMembersPolicy; -@class DBTEAMPOLICIESTeamMemberPolicies; -@class DBTEAMPOLICIESTeamSharingPolicies; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberPolicies` struct. -/// -/// Policies governing team members. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTeamMemberPolicies : NSObject - -#pragma mark - Instance fields - -/// Policies governing sharing. -@property (nonatomic, readonly) DBTEAMPOLICIESTeamSharingPolicies *sharing; - -/// This describes the Enterprise Mobility Management (EMM) state for this team. -/// This information can be used to understand if an organization is integrating -/// with a third-party EMM vendor to further manage and apply restrictions upon -/// the team's Dropbox usage on mobile devices. This is a new feature and in the -/// future we'll be adding more new fields and additional documentation. -@property (nonatomic, readonly) DBTEAMPOLICIESEmmState *emmState; - -/// The admin policy around the Dropbox Office Add-In for this team. -@property (nonatomic, readonly) DBTEAMPOLICIESOfficeAddInPolicy *officeAddin; - -/// The team policy on if teammembers are allowed to suggest users for admins to -/// invite to the team. -@property (nonatomic, readonly) DBTEAMPOLICIESSuggestMembersPolicy *suggestMembersPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharing Policies governing sharing. -/// @param emmState This describes the Enterprise Mobility Management (EMM) -/// state for this team. This information can be used to understand if an -/// organization is integrating with a third-party EMM vendor to further manage -/// and apply restrictions upon the team's Dropbox usage on mobile devices. This -/// is a new feature and in the future we'll be adding more new fields and -/// additional documentation. -/// @param officeAddin The admin policy around the Dropbox Office Add-In for -/// this team. -/// @param suggestMembersPolicy The team policy on if teammembers are allowed to -/// suggest users for admins to invite to the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharing:(DBTEAMPOLICIESTeamSharingPolicies *)sharing - emmState:(DBTEAMPOLICIESEmmState *)emmState - officeAddin:(DBTEAMPOLICIESOfficeAddInPolicy *)officeAddin - suggestMembersPolicy:(DBTEAMPOLICIESSuggestMembersPolicy *)suggestMembersPolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberPolicies` struct. -/// -@interface DBTEAMPOLICIESTeamMemberPoliciesSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTeamMemberPolicies` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTeamMemberPolicies` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamMemberPolicies` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTeamMemberPolicies *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTeamMemberPolicies` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamMemberPolicies` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTeamMemberPolicies` object. -/// -+ (DBTEAMPOLICIESTeamMemberPolicies *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTeamSharingPolicies.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTeamSharingPolicies.h deleted file mode 100644 index 0e7aa3ad..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTeamSharingPolicies.h +++ /dev/null @@ -1,107 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESGroupCreation; -@class DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy; -@class DBTEAMPOLICIESSharedFolderJoinPolicy; -@class DBTEAMPOLICIESSharedFolderMemberPolicy; -@class DBTEAMPOLICIESSharedLinkCreatePolicy; -@class DBTEAMPOLICIESTeamSharingPolicies; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSharingPolicies` struct. -/// -/// Policies governing sharing within and outside of the team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTeamSharingPolicies : NSObject - -#pragma mark - Instance fields - -/// Who can join folders shared by team members. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderMemberPolicy *sharedFolderMemberPolicy; - -/// Which shared folders team members can join. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedFolderJoinPolicy *sharedFolderJoinPolicy; - -/// Who can view shared links owned by team members. -@property (nonatomic, readonly) DBTEAMPOLICIESSharedLinkCreatePolicy *sharedLinkCreatePolicy; - -/// Who can create groups. -@property (nonatomic, readonly) DBTEAMPOLICIESGroupCreation *groupCreationPolicy; - -/// Who can view links to content in shared folders. -@property (nonatomic, readonly) - DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *sharedFolderLinkRestrictionPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sharedFolderMemberPolicy Who can join folders shared by team members. -/// @param sharedFolderJoinPolicy Which shared folders team members can join. -/// @param sharedLinkCreatePolicy Who can view shared links owned by team -/// members. -/// @param groupCreationPolicy Who can create groups. -/// @param sharedFolderLinkRestrictionPolicy Who can view links to content in -/// shared folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSharedFolderMemberPolicy:(DBTEAMPOLICIESSharedFolderMemberPolicy *)sharedFolderMemberPolicy - sharedFolderJoinPolicy:(DBTEAMPOLICIESSharedFolderJoinPolicy *)sharedFolderJoinPolicy - sharedLinkCreatePolicy:(DBTEAMPOLICIESSharedLinkCreatePolicy *)sharedLinkCreatePolicy - groupCreationPolicy:(DBTEAMPOLICIESGroupCreation *)groupCreationPolicy - sharedFolderLinkRestrictionPolicy: - (DBTEAMPOLICIESSharedFolderBlanketLinkRestrictionPolicy *)sharedFolderLinkRestrictionPolicy; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSharingPolicies` struct. -/// -@interface DBTEAMPOLICIESTeamSharingPoliciesSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTeamSharingPolicies` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTeamSharingPolicies` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamSharingPolicies` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTeamSharingPolicies *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTeamSharingPolicies` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTeamSharingPolicies` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTeamSharingPolicies` object. -/// -+ (DBTEAMPOLICIESTeamSharingPolicies *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTwoStepVerificationPolicy.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTwoStepVerificationPolicy.h deleted file mode 100644 index c445cb30..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTwoStepVerificationPolicy.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESTwoStepVerificationPolicy; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoStepVerificationPolicy` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTwoStepVerificationPolicy : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESTwoStepVerificationPolicyTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESTwoStepVerificationPolicyTag) { - /// Enabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationPolicyRequireTfaEnable, - - /// Disabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationPolicyRequireTfaDisable, - - /// (no description). - DBTEAMPOLICIESTwoStepVerificationPolicyOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationPolicyTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "require_tfa_enable". -/// -/// Description of the "require_tfa_enable" tag state: Enabled require two -/// factor authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequireTfaEnable; - -/// -/// Initializes union class with tag state of "require_tfa_disable". -/// -/// Description of the "require_tfa_disable" tag state: Disabled require two -/// factor authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequireTfaDisable; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "require_tfa_enable". -/// -/// @return Whether the union's current tag state has value -/// "require_tfa_enable". -/// -- (BOOL)isRequireTfaEnable; - -/// -/// Retrieves whether the union's current tag state has value -/// "require_tfa_disable". -/// -/// @return Whether the union's current tag state has value -/// "require_tfa_disable". -/// -- (BOOL)isRequireTfaDisable; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// union. -/// -@interface DBTEAMPOLICIESTwoStepVerificationPolicySerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTwoStepVerificationPolicy` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationPolicy` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTwoStepVerificationPolicy *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTwoStepVerificationPolicy` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationPolicy` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTwoStepVerificationPolicy` -/// object. -/// -+ (DBTEAMPOLICIESTwoStepVerificationPolicy *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTwoStepVerificationState.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTwoStepVerificationState.h deleted file mode 100644 index 4030d14d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMPOLICIESTwoStepVerificationState.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESTwoStepVerificationState; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TwoStepVerificationState` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMPOLICIESTwoStepVerificationState : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMPOLICIESTwoStepVerificationStateTag` enum type represents the -/// possible tag states with which the `DBTEAMPOLICIESTwoStepVerificationState` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMPOLICIESTwoStepVerificationStateTag) { - /// Enabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationStateRequired, - - /// Optional require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationStateOptional, - - /// Disabled require two factor authorization. - DBTEAMPOLICIESTwoStepVerificationStateDisabled, - - /// (no description). - DBTEAMPOLICIESTwoStepVerificationStateOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMPOLICIESTwoStepVerificationStateTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "required". -/// -/// Description of the "required" tag state: Enabled require two factor -/// authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRequired; - -/// -/// Initializes union class with tag state of "optional". -/// -/// Description of the "optional" tag state: Optional require two factor -/// authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOptional; - -/// -/// Initializes union class with tag state of "disabled". -/// -/// Description of the "disabled" tag state: Disabled require two factor -/// authorization. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "required". -/// -/// @return Whether the union's current tag state has value "required". -/// -- (BOOL)isRequired; - -/// -/// Retrieves whether the union's current tag state has value "optional". -/// -/// @return Whether the union's current tag state has value "optional". -/// -- (BOOL)isOptional; - -/// -/// Retrieves whether the union's current tag state has value "disabled". -/// -/// @return Whether the union's current tag state has value "disabled". -/// -- (BOOL)isDisabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMPOLICIESTwoStepVerificationState` -/// union. -/// -@interface DBTEAMPOLICIESTwoStepVerificationStateSerializer : NSObject - -/// -/// Serializes `DBTEAMPOLICIESTwoStepVerificationState` instances. -/// -/// @param instance An instance of the `DBTEAMPOLICIESTwoStepVerificationState` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationState` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMPOLICIESTwoStepVerificationState *)instance; - -/// -/// Deserializes `DBTEAMPOLICIESTwoStepVerificationState` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMPOLICIESTwoStepVerificationState` API object. -/// -/// @return An instantiation of the `DBTEAMPOLICIESTwoStepVerificationState` -/// object. -/// -+ (DBTEAMPOLICIESTwoStepVerificationState *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRemoveCustomQuotaResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRemoveCustomQuotaResult.h deleted file mode 100644 index 93a9c1d7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRemoveCustomQuotaResult.h +++ /dev/null @@ -1,157 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRemoveCustomQuotaResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemoveCustomQuotaResult` union. -/// -/// User result for setting member custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRemoveCustomQuotaResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRemoveCustomQuotaResultTag` enum type represents the possible tag -/// states with which the `DBTEAMRemoveCustomQuotaResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRemoveCustomQuotaResultTag) { - /// Successfully removed user. - DBTEAMRemoveCustomQuotaResultSuccess, - - /// Invalid user (not in team). - DBTEAMRemoveCustomQuotaResultInvalidUser, - - /// (no description). - DBTEAMRemoveCustomQuotaResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRemoveCustomQuotaResultTag tag; - -/// Successfully removed user. @note Ensure the `isSuccess` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *success; - -/// Invalid user (not in team). @note Ensure the `isInvalidUser` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Successfully removed user. -/// -/// @param success Successfully removed user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserSelectorArg *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Invalid user (not in team). -/// -/// @param invalidUser Invalid user (not in team). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRemoveCustomQuotaResult` union. -/// -@interface DBTEAMRemoveCustomQuotaResultSerializer : NSObject - -/// -/// Serializes `DBTEAMRemoveCustomQuotaResult` instances. -/// -/// @param instance An instance of the `DBTEAMRemoveCustomQuotaResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRemoveCustomQuotaResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRemoveCustomQuotaResult *)instance; - -/// -/// Deserializes `DBTEAMRemoveCustomQuotaResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRemoveCustomQuotaResult` API object. -/// -/// @return An instantiation of the `DBTEAMRemoveCustomQuotaResult` object. -/// -+ (DBTEAMRemoveCustomQuotaResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRemovedStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRemovedStatus.h deleted file mode 100644 index 964e6321..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRemovedStatus.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRemovedStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RemovedStatus` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRemovedStatus : NSObject - -#pragma mark - Instance fields - -/// True if the removed team member is recoverable. -@property (nonatomic, readonly) NSNumber *isRecoverable; - -/// True if the team member's account was converted to individual account. -@property (nonatomic, readonly) NSNumber *isDisconnected; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param isRecoverable True if the removed team member is recoverable. -/// @param isDisconnected True if the team member's account was converted to -/// individual account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIsRecoverable:(NSNumber *)isRecoverable isDisconnected:(NSNumber *)isDisconnected; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RemovedStatus` struct. -/// -@interface DBTEAMRemovedStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMRemovedStatus` instances. -/// -/// @param instance An instance of the `DBTEAMRemovedStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRemovedStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRemovedStatus *)instance; - -/// -/// Deserializes `DBTEAMRemovedStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRemovedStatus` API object. -/// -/// @return An instantiation of the `DBTEAMRemovedStatus` object. -/// -+ (DBTEAMRemovedStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendSecondaryEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendSecondaryEmailResult.h deleted file mode 100644 index f2d215db..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendSecondaryEmailResult.h +++ /dev/null @@ -1,198 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendSecondaryEmailResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResendSecondaryEmailResult` union. -/// -/// Result of trying to resend verification email to a secondary email address. -/// 'success' is the only value indicating that a verification email was -/// successfully sent. The other values explain the type of error that occurred, -/// and include the email for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMResendSecondaryEmailResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMResendSecondaryEmailResultTag` enum type represents the possible -/// tag states with which the `DBTEAMResendSecondaryEmailResult` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMResendSecondaryEmailResultTag) { - /// A verification email was successfully sent to the secondary email - /// address. - DBTEAMResendSecondaryEmailResultSuccess, - - /// This secondary email address is not pending for the user. - DBTEAMResendSecondaryEmailResultNotPending, - - /// Too many emails are being sent to this email address. Please try again - /// later. - DBTEAMResendSecondaryEmailResultRateLimited, - - /// (no description). - DBTEAMResendSecondaryEmailResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMResendSecondaryEmailResultTag tag; - -/// A verification email was successfully sent to the secondary email address. -/// @note Ensure the `isSuccess` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *success; - -/// This secondary email address is not pending for the user. @note Ensure the -/// `isNotPending` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *notPending; - -/// Too many emails are being sent to this email address. Please try again -/// later. @note Ensure the `isRateLimited` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *rateLimited; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: A verification email was -/// successfully sent to the secondary email address. -/// -/// @param success A verification email was successfully sent to the secondary -/// email address. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSString *)success; - -/// -/// Initializes union class with tag state of "not_pending". -/// -/// Description of the "not_pending" tag state: This secondary email address is -/// not pending for the user. -/// -/// @param notPending This secondary email address is not pending for the user. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNotPending:(NSString *)notPending; - -/// -/// Initializes union class with tag state of "rate_limited". -/// -/// Description of the "rate_limited" tag state: Too many emails are being sent -/// to this email address. Please try again later. -/// -/// @param rateLimited Too many emails are being sent to this email address. -/// Please try again later. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRateLimited:(NSString *)rateLimited; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "not_pending". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `notPending` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "not_pending". -/// -- (BOOL)isNotPending; - -/// -/// Retrieves whether the union's current tag state has value "rate_limited". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `rateLimited` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "rate_limited". -/// -- (BOOL)isRateLimited; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMResendSecondaryEmailResult` union. -/// -@interface DBTEAMResendSecondaryEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMResendSecondaryEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMResendSecondaryEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMResendSecondaryEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMResendSecondaryEmailResult *)instance; - -/// -/// Deserializes `DBTEAMResendSecondaryEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMResendSecondaryEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMResendSecondaryEmailResult` object. -/// -+ (DBTEAMResendSecondaryEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendVerificationEmailArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendVerificationEmailArg.h deleted file mode 100644 index b7cb6c38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendVerificationEmailArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendVerificationEmailArg; -@class DBTEAMUserSecondaryEmailsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResendVerificationEmailArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMResendVerificationEmailArg : NSObject - -#pragma mark - Instance fields - -/// List of users and secondary emails to resend verification emails to. -@property (nonatomic, readonly) NSArray *emailsToResend; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param emailsToResend List of users and secondary emails to resend -/// verification emails to. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmailsToResend:(NSArray *)emailsToResend; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResendVerificationEmailArg` struct. -/// -@interface DBTEAMResendVerificationEmailArgSerializer : NSObject - -/// -/// Serializes `DBTEAMResendVerificationEmailArg` instances. -/// -/// @param instance An instance of the `DBTEAMResendVerificationEmailArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMResendVerificationEmailArg *)instance; - -/// -/// Deserializes `DBTEAMResendVerificationEmailArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailArg` API object. -/// -/// @return An instantiation of the `DBTEAMResendVerificationEmailArg` object. -/// -+ (DBTEAMResendVerificationEmailArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendVerificationEmailResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendVerificationEmailResult.h deleted file mode 100644 index 05431f03..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMResendVerificationEmailResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendVerificationEmailResult; -@class DBTEAMUserResendResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `ResendVerificationEmailResult` struct. -/// -/// List of users and resend results. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMResendVerificationEmailResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithResults:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `ResendVerificationEmailResult` struct. -/// -@interface DBTEAMResendVerificationEmailResultSerializer : NSObject - -/// -/// Serializes `DBTEAMResendVerificationEmailResult` instances. -/// -/// @param instance An instance of the `DBTEAMResendVerificationEmailResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMResendVerificationEmailResult *)instance; - -/// -/// Deserializes `DBTEAMResendVerificationEmailResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMResendVerificationEmailResult` API object. -/// -/// @return An instantiation of the `DBTEAMResendVerificationEmailResult` -/// object. -/// -+ (DBTEAMResendVerificationEmailResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDesktopClientArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDesktopClientArg.h deleted file mode 100644 index 9fc3a9dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDesktopClientArg.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMDeviceSessionArg.h" - -@class DBTEAMRevokeDesktopClientArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDesktopClientArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDesktopClientArg : DBTEAMDeviceSessionArg - -#pragma mark - Instance fields - -/// Whether to delete all files of the account (this is possible only if -/// supported by the desktop client and will be made the next time the client -/// access the account). -@property (nonatomic, readonly) NSNumber *deleteOnUnlink; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param sessionId The session id. -/// @param teamMemberId The unique id of the member owning the device. -/// @param deleteOnUnlink Whether to delete all files of the account (this is -/// possible only if supported by the desktop client and will be made the next -/// time the client access the account). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId - teamMemberId:(NSString *)teamMemberId - deleteOnUnlink:(nullable NSNumber *)deleteOnUnlink; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param sessionId The session id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSessionId:(NSString *)sessionId teamMemberId:(NSString *)teamMemberId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDesktopClientArg` struct. -/// -@interface DBTEAMRevokeDesktopClientArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDesktopClientArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDesktopClientArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDesktopClientArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDesktopClientArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeDesktopClientArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDesktopClientArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDesktopClientArg` object. -/// -+ (DBTEAMRevokeDesktopClientArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionArg.h deleted file mode 100644 index de2ebcfc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionArg.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeviceSessionArg; -@class DBTEAMRevokeDesktopClientArg; -@class DBTEAMRevokeDeviceSessionArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionArg` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeDeviceSessionArgTag` enum type represents the possible tag -/// states with which the `DBTEAMRevokeDeviceSessionArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeDeviceSessionArgTag) { - /// End an active session. - DBTEAMRevokeDeviceSessionArgWebSession, - - /// Unlink a linked desktop device. - DBTEAMRevokeDeviceSessionArgDesktopClient, - - /// Unlink a linked mobile device. - DBTEAMRevokeDeviceSessionArgMobileClient, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeDeviceSessionArgTag tag; - -/// End an active session. @note Ensure the `isWebSession` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMDeviceSessionArg *webSession; - -/// Unlink a linked desktop device. @note Ensure the `isDesktopClient` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMRevokeDesktopClientArg *desktopClient; - -/// Unlink a linked mobile device. @note Ensure the `isMobileClient` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMDeviceSessionArg *mobileClient; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "web_session". -/// -/// Description of the "web_session" tag state: End an active session. -/// -/// @param webSession End an active session. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithWebSession:(DBTEAMDeviceSessionArg *)webSession; - -/// -/// Initializes union class with tag state of "desktop_client". -/// -/// Description of the "desktop_client" tag state: Unlink a linked desktop -/// device. -/// -/// @param desktopClient Unlink a linked desktop device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDesktopClient:(DBTEAMRevokeDesktopClientArg *)desktopClient; - -/// -/// Initializes union class with tag state of "mobile_client". -/// -/// Description of the "mobile_client" tag state: Unlink a linked mobile device. -/// -/// @param mobileClient Unlink a linked mobile device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMobileClient:(DBTEAMDeviceSessionArg *)mobileClient; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "web_session". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `webSession` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "web_session". -/// -- (BOOL)isWebSession; - -/// -/// Retrieves whether the union's current tag state has value "desktop_client". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `desktopClient` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "desktop_client". -/// -- (BOOL)isDesktopClient; - -/// -/// Retrieves whether the union's current tag state has value "mobile_client". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `mobileClient` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "mobile_client". -/// -- (BOOL)isMobileClient; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeDeviceSessionArg` union. -/// -@interface DBTEAMRevokeDeviceSessionArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionArg` object. -/// -+ (DBTEAMRevokeDeviceSessionArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchArg.h deleted file mode 100644 index d07713d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionArg; -@class DBTEAMRevokeDeviceSessionBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionBatchArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeDevices; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeDevices (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeDevices:(NSArray *)revokeDevices; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDeviceSessionBatchArg` struct. -/// -@interface DBTEAMRevokeDeviceSessionBatchArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionBatchArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionBatchArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionBatchArg` object. -/// -+ (DBTEAMRevokeDeviceSessionBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchError.h deleted file mode 100644 index 1c00e80f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchError.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeDeviceSessionBatchErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMRevokeDeviceSessionBatchError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeDeviceSessionBatchErrorTag) { - /// (no description). - DBTEAMRevokeDeviceSessionBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeDeviceSessionBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeDeviceSessionBatchError` union. -/// -@interface DBTEAMRevokeDeviceSessionBatchErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionBatchError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionBatchError *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionBatchError` -/// object. -/// -+ (DBTEAMRevokeDeviceSessionBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchResult.h deleted file mode 100644 index c00aa68d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionBatchResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionBatchResult; -@class DBTEAMRevokeDeviceSessionStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeDevicesStatus; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeDevicesStatus (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeDevicesStatus:(NSArray *)revokeDevicesStatus; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDeviceSessionBatchResult` struct. -/// -@interface DBTEAMRevokeDeviceSessionBatchResultSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionBatchResult` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionBatchResult *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionBatchResult` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionBatchResult` -/// object. -/// -+ (DBTEAMRevokeDeviceSessionBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionError.h deleted file mode 100644 index 5f4e8cf3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeDeviceSessionErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMRevokeDeviceSessionError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeDeviceSessionErrorTag) { - /// Device session not found. - DBTEAMRevokeDeviceSessionErrorDeviceSessionNotFound, - - /// Member not found. - DBTEAMRevokeDeviceSessionErrorMemberNotFound, - - /// (no description). - DBTEAMRevokeDeviceSessionErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeDeviceSessionErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "device_session_not_found". -/// -/// Description of the "device_session_not_found" tag state: Device session not -/// found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDeviceSessionNotFound; - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "device_session_not_found". -/// -/// @return Whether the union's current tag state has value -/// "device_session_not_found". -/// -- (BOOL)isDeviceSessionNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeDeviceSessionError` union. -/// -@interface DBTEAMRevokeDeviceSessionErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionError *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionError` object. -/// -+ (DBTEAMRevokeDeviceSessionError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionStatus.h deleted file mode 100644 index 9a8362ca..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeDeviceSessionStatus.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeDeviceSessionError; -@class DBTEAMRevokeDeviceSessionStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeDeviceSessionStatus` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeDeviceSessionStatus : NSObject - -#pragma mark - Instance fields - -/// Result of the revoking request. -@property (nonatomic, readonly) NSNumber *success; - -/// The error cause in case of a failure. -@property (nonatomic, readonly, nullable) DBTEAMRevokeDeviceSessionError *errorType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param success Result of the revoking request. -/// @param errorType The error cause in case of a failure. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success errorType:(nullable DBTEAMRevokeDeviceSessionError *)errorType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param success Result of the revoking request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeDeviceSessionStatus` struct. -/// -@interface DBTEAMRevokeDeviceSessionStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeDeviceSessionStatus` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeDeviceSessionStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeDeviceSessionStatus *)instance; - -/// -/// Deserializes `DBTEAMRevokeDeviceSessionStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeDeviceSessionStatus` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeDeviceSessionStatus` object. -/// -+ (DBTEAMRevokeDeviceSessionStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedApiAppArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedApiAppArg.h deleted file mode 100644 index ee941d5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedApiAppArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedApiAppArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedApiAppArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedApiAppArg : NSObject - -#pragma mark - Instance fields - -/// The application's unique id. -@property (nonatomic, readonly, copy) NSString *appId; - -/// The unique id of the member owning the device. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// This flag is not longer supported, the application dedicated folder (in case -/// the application uses one) will be kept. -@property (nonatomic, readonly) NSNumber *keepAppFolder; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// @param keepAppFolder This flag is not longer supported, the application -/// dedicated folder (in case the application uses one) will be kept. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId - teamMemberId:(NSString *)teamMemberId - keepAppFolder:(nullable NSNumber *)keepAppFolder; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppId:(NSString *)appId teamMemberId:(NSString *)teamMemberId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedApiAppArg` struct. -/// -@interface DBTEAMRevokeLinkedApiAppArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedApiAppArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedApiAppArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedApiAppArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedApiAppArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedApiAppArg` object. -/// -+ (DBTEAMRevokeLinkedApiAppArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedApiAppBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedApiAppBatchArg.h deleted file mode 100644 index d3ffbd56..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedApiAppBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedApiAppArg; -@class DBTEAMRevokeLinkedApiAppBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedApiAppBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedApiAppBatchArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeLinkedApp; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeLinkedApp (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeLinkedApp:(NSArray *)revokeLinkedApp; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedApiAppBatchArg` struct. -/// -@interface DBTEAMRevokeLinkedApiAppBatchArgSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedApiAppBatchArg` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedApiAppBatchArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedApiAppBatchArg *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedApiAppBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedApiAppBatchArg` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedApiAppBatchArg` object. -/// -+ (DBTEAMRevokeLinkedApiAppBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppBatchError.h deleted file mode 100644 index 3802743d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppBatchError.h +++ /dev/null @@ -1,100 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppBatchError` union. -/// -/// Error returned by `linkedAppsRevokeLinkedAppBatch`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeLinkedAppBatchErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMRevokeLinkedAppBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeLinkedAppBatchErrorTag) { - /// (no description). - DBTEAMRevokeLinkedAppBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeLinkedAppBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeLinkedAppBatchError` union. -/// -@interface DBTEAMRevokeLinkedAppBatchErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppBatchError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppBatchError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppBatchError *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppBatchError` object. -/// -+ (DBTEAMRevokeLinkedAppBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppBatchResult.h deleted file mode 100644 index 7da14697..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppBatchResult.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppBatchResult; -@class DBTEAMRevokeLinkedAppStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *revokeLinkedAppStatus; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param revokeLinkedAppStatus (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRevokeLinkedAppStatus:(NSArray *)revokeLinkedAppStatus; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedAppBatchResult` struct. -/// -@interface DBTEAMRevokeLinkedAppBatchResultSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppBatchResult` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppBatchResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppBatchResult *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppBatchResult` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppBatchResult` object. -/// -+ (DBTEAMRevokeLinkedAppBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppError.h deleted file mode 100644 index 1db1dfe2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppError` union. -/// -/// Error returned by `linkedAppsRevokeLinkedApp`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMRevokeLinkedAppErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMRevokeLinkedAppError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMRevokeLinkedAppErrorTag) { - /// Application not found. - DBTEAMRevokeLinkedAppErrorAppNotFound, - - /// Member not found. - DBTEAMRevokeLinkedAppErrorMemberNotFound, - - /// App folder removal is not supported. - DBTEAMRevokeLinkedAppErrorAppFolderRemovalNotSupported, - - /// (no description). - DBTEAMRevokeLinkedAppErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMRevokeLinkedAppErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "app_not_found". -/// -/// Description of the "app_not_found" tag state: Application not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppNotFound; - -/// -/// Initializes union class with tag state of "member_not_found". -/// -/// Description of the "member_not_found" tag state: Member not found. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberNotFound; - -/// -/// Initializes union class with tag state of -/// "app_folder_removal_not_supported". -/// -/// Description of the "app_folder_removal_not_supported" tag state: App folder -/// removal is not supported. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppFolderRemovalNotSupported; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "app_not_found". -/// -/// @return Whether the union's current tag state has value "app_not_found". -/// -- (BOOL)isAppNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "member_not_found". -/// -/// @return Whether the union's current tag state has value "member_not_found". -/// -- (BOOL)isMemberNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "app_folder_removal_not_supported". -/// -/// @return Whether the union's current tag state has value -/// "app_folder_removal_not_supported". -/// -- (BOOL)isAppFolderRemovalNotSupported; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMRevokeLinkedAppError` union. -/// -@interface DBTEAMRevokeLinkedAppErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppError` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppError *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppError` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppError` object. -/// -+ (DBTEAMRevokeLinkedAppError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppStatus.h deleted file mode 100644 index 4f68ca1d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRevokeLinkedAppStatus.h +++ /dev/null @@ -1,90 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRevokeLinkedAppError; -@class DBTEAMRevokeLinkedAppStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `RevokeLinkedAppStatus` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMRevokeLinkedAppStatus : NSObject - -#pragma mark - Instance fields - -/// Result of the revoking request. -@property (nonatomic, readonly) NSNumber *success; - -/// The error cause in case of a failure. -@property (nonatomic, readonly, nullable) DBTEAMRevokeLinkedAppError *errorType; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param success Result of the revoking request. -/// @param errorType The error cause in case of a failure. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success errorType:(nullable DBTEAMRevokeLinkedAppError *)errorType; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param success Result of the revoking request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(NSNumber *)success; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `RevokeLinkedAppStatus` struct. -/// -@interface DBTEAMRevokeLinkedAppStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMRevokeLinkedAppStatus` instances. -/// -/// @param instance An instance of the `DBTEAMRevokeLinkedAppStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMRevokeLinkedAppStatus *)instance; - -/// -/// Deserializes `DBTEAMRevokeLinkedAppStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMRevokeLinkedAppStatus` API object. -/// -/// @return An instantiation of the `DBTEAMRevokeLinkedAppStatus` object. -/// -+ (DBTEAMRevokeLinkedAppStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRouteObjects.h deleted file mode 100644 index b4bb7180..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMRouteObjects.h +++ /dev/null @@ -1,303 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Team namespace. Each route in the Team namespace -/// has its own static object, which contains information about the route. -/// -@interface DBTEAMRouteObjects : NSObject - -/// Accessor method for the devicesListMemberDevices route object. -+ (DBRoute *)DBTEAMDevicesListMemberDevices; - -/// Accessor method for the devicesListMembersDevices route object. -+ (DBRoute *)DBTEAMDevicesListMembersDevices; - -/// Accessor method for the devicesListTeamDevices route object. -+ (DBRoute *)DBTEAMDevicesListTeamDevices; - -/// Accessor method for the devicesRevokeDeviceSession route object. -+ (DBRoute *)DBTEAMDevicesRevokeDeviceSession; - -/// Accessor method for the devicesRevokeDeviceSessionBatch route object. -+ (DBRoute *)DBTEAMDevicesRevokeDeviceSessionBatch; - -/// Accessor method for the featuresGetValues route object. -+ (DBRoute *)DBTEAMFeaturesGetValues; - -/// Accessor method for the getInfo route object. -+ (DBRoute *)DBTEAMGetInfo; - -/// Accessor method for the groupsCreate route object. -+ (DBRoute *)DBTEAMGroupsCreate; - -/// Accessor method for the groupsDelete route object. -+ (DBRoute *)DBTEAMGroupsDelete; - -/// Accessor method for the groupsGetInfo route object. -+ (DBRoute *)DBTEAMGroupsGetInfo; - -/// Accessor method for the groupsJobStatusGet route object. -+ (DBRoute *)DBTEAMGroupsJobStatusGet; - -/// Accessor method for the groupsList route object. -+ (DBRoute *)DBTEAMGroupsList; - -/// Accessor method for the groupsListContinue route object. -+ (DBRoute *)DBTEAMGroupsListContinue; - -/// Accessor method for the groupsMembersAdd route object. -+ (DBRoute *)DBTEAMGroupsMembersAdd; - -/// Accessor method for the groupsMembersList route object. -+ (DBRoute *)DBTEAMGroupsMembersList; - -/// Accessor method for the groupsMembersListContinue route object. -+ (DBRoute *)DBTEAMGroupsMembersListContinue; - -/// Accessor method for the groupsMembersRemove route object. -+ (DBRoute *)DBTEAMGroupsMembersRemove; - -/// Accessor method for the groupsMembersSetAccessType route object. -+ (DBRoute *)DBTEAMGroupsMembersSetAccessType; - -/// Accessor method for the groupsUpdate route object. -+ (DBRoute *)DBTEAMGroupsUpdate; - -/// Accessor method for the legalHoldsCreatePolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsCreatePolicy; - -/// Accessor method for the legalHoldsGetPolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsGetPolicy; - -/// Accessor method for the legalHoldsListHeldRevisions route object. -+ (DBRoute *)DBTEAMLegalHoldsListHeldRevisions; - -/// Accessor method for the legalHoldsListHeldRevisionsContinue route object. -+ (DBRoute *)DBTEAMLegalHoldsListHeldRevisionsContinue; - -/// Accessor method for the legalHoldsListPolicies route object. -+ (DBRoute *)DBTEAMLegalHoldsListPolicies; - -/// Accessor method for the legalHoldsReleasePolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsReleasePolicy; - -/// Accessor method for the legalHoldsUpdatePolicy route object. -+ (DBRoute *)DBTEAMLegalHoldsUpdatePolicy; - -/// Accessor method for the linkedAppsListMemberLinkedApps route object. -+ (DBRoute *)DBTEAMLinkedAppsListMemberLinkedApps; - -/// Accessor method for the linkedAppsListMembersLinkedApps route object. -+ (DBRoute *)DBTEAMLinkedAppsListMembersLinkedApps; - -/// Accessor method for the linkedAppsListTeamLinkedApps route object. -+ (DBRoute *)DBTEAMLinkedAppsListTeamLinkedApps; - -/// Accessor method for the linkedAppsRevokeLinkedApp route object. -+ (DBRoute *)DBTEAMLinkedAppsRevokeLinkedApp; - -/// Accessor method for the linkedAppsRevokeLinkedAppBatch route object. -+ (DBRoute *)DBTEAMLinkedAppsRevokeLinkedAppBatch; - -/// Accessor method for the memberSpaceLimitsExcludedUsersAdd route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersAdd; - -/// Accessor method for the memberSpaceLimitsExcludedUsersList route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersList; - -/// Accessor method for the memberSpaceLimitsExcludedUsersListContinue route -/// object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersListContinue; - -/// Accessor method for the memberSpaceLimitsExcludedUsersRemove route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsExcludedUsersRemove; - -/// Accessor method for the memberSpaceLimitsGetCustomQuota route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsGetCustomQuota; - -/// Accessor method for the memberSpaceLimitsRemoveCustomQuota route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsRemoveCustomQuota; - -/// Accessor method for the memberSpaceLimitsSetCustomQuota route object. -+ (DBRoute *)DBTEAMMemberSpaceLimitsSetCustomQuota; - -/// Accessor method for the membersAdd route object. -+ (DBRoute *)DBTEAMMembersAdd; - -/// Accessor method for the membersAddV2 route object. -+ (DBRoute *)DBTEAMMembersAddV2; - -/// Accessor method for the membersAddJobStatusGet route object. -+ (DBRoute *)DBTEAMMembersAddJobStatusGet; - -/// Accessor method for the membersAddJobStatusGetV2 route object. -+ (DBRoute *)DBTEAMMembersAddJobStatusGetV2; - -/// Accessor method for the membersDeleteProfilePhoto route object. -+ (DBRoute *)DBTEAMMembersDeleteProfilePhoto; - -/// Accessor method for the membersDeleteProfilePhotoV2 route object. -+ (DBRoute *)DBTEAMMembersDeleteProfilePhotoV2; - -/// Accessor method for the membersGetAvailableTeamMemberRoles route object. -+ (DBRoute *)DBTEAMMembersGetAvailableTeamMemberRoles; - -/// Accessor method for the membersGetInfo route object. -+ (DBRoute *)DBTEAMMembersGetInfo; - -/// Accessor method for the membersGetInfoV2 route object. -+ (DBRoute *)DBTEAMMembersGetInfoV2; - -/// Accessor method for the membersList route object. -+ (DBRoute *)DBTEAMMembersList; - -/// Accessor method for the membersListV2 route object. -+ (DBRoute *)DBTEAMMembersListV2; - -/// Accessor method for the membersListContinue route object. -+ (DBRoute *)DBTEAMMembersListContinue; - -/// Accessor method for the membersListContinueV2 route object. -+ (DBRoute *)DBTEAMMembersListContinueV2; - -/// Accessor method for the membersMoveFormerMemberFiles route object. -+ (DBRoute *)DBTEAMMembersMoveFormerMemberFiles; - -/// Accessor method for the membersMoveFormerMemberFilesJobStatusCheck route -/// object. -+ (DBRoute *)DBTEAMMembersMoveFormerMemberFilesJobStatusCheck; - -/// Accessor method for the membersRecover route object. -+ (DBRoute *)DBTEAMMembersRecover; - -/// Accessor method for the membersRemove route object. -+ (DBRoute *)DBTEAMMembersRemove; - -/// Accessor method for the membersRemoveJobStatusGet route object. -+ (DBRoute *)DBTEAMMembersRemoveJobStatusGet; - -/// Accessor method for the membersSecondaryEmailsAdd route object. -+ (DBRoute *)DBTEAMMembersSecondaryEmailsAdd; - -/// Accessor method for the membersSecondaryEmailsDelete route object. -+ (DBRoute *)DBTEAMMembersSecondaryEmailsDelete; - -/// Accessor method for the membersSecondaryEmailsResendVerificationEmails route -/// object. -+ (DBRoute *)DBTEAMMembersSecondaryEmailsResendVerificationEmails; - -/// Accessor method for the membersSendWelcomeEmail route object. -+ (DBRoute *)DBTEAMMembersSendWelcomeEmail; - -/// Accessor method for the membersSetAdminPermissions route object. -+ (DBRoute *)DBTEAMMembersSetAdminPermissions; - -/// Accessor method for the membersSetAdminPermissionsV2 route object. -+ (DBRoute *)DBTEAMMembersSetAdminPermissionsV2; - -/// Accessor method for the membersSetProfile route object. -+ (DBRoute *)DBTEAMMembersSetProfile; - -/// Accessor method for the membersSetProfileV2 route object. -+ (DBRoute *)DBTEAMMembersSetProfileV2; - -/// Accessor method for the membersSetProfilePhoto route object. -+ (DBRoute *)DBTEAMMembersSetProfilePhoto; - -/// Accessor method for the membersSetProfilePhotoV2 route object. -+ (DBRoute *)DBTEAMMembersSetProfilePhotoV2; - -/// Accessor method for the membersSuspend route object. -+ (DBRoute *)DBTEAMMembersSuspend; - -/// Accessor method for the membersUnsuspend route object. -+ (DBRoute *)DBTEAMMembersUnsuspend; - -/// Accessor method for the namespacesList route object. -+ (DBRoute *)DBTEAMNamespacesList; - -/// Accessor method for the namespacesListContinue route object. -+ (DBRoute *)DBTEAMNamespacesListContinue; - -/// Accessor method for the propertiesTemplateAdd route object. -+ (DBRoute *)DBTEAMPropertiesTemplateAdd; - -/// Accessor method for the propertiesTemplateGet route object. -+ (DBRoute *)DBTEAMPropertiesTemplateGet; - -/// Accessor method for the propertiesTemplateList route object. -+ (DBRoute *)DBTEAMPropertiesTemplateList; - -/// Accessor method for the propertiesTemplateUpdate route object. -+ (DBRoute *)DBTEAMPropertiesTemplateUpdate; - -/// Accessor method for the reportsGetActivity route object. -+ (DBRoute *)DBTEAMReportsGetActivity; - -/// Accessor method for the reportsGetDevices route object. -+ (DBRoute *)DBTEAMReportsGetDevices; - -/// Accessor method for the reportsGetMembership route object. -+ (DBRoute *)DBTEAMReportsGetMembership; - -/// Accessor method for the reportsGetStorage route object. -+ (DBRoute *)DBTEAMReportsGetStorage; - -/// Accessor method for the sharingAllowlistAdd route object. -+ (DBRoute *)DBTEAMSharingAllowlistAdd; - -/// Accessor method for the sharingAllowlistList route object. -+ (DBRoute *)DBTEAMSharingAllowlistList; - -/// Accessor method for the sharingAllowlistListContinue route object. -+ (DBRoute *)DBTEAMSharingAllowlistListContinue; - -/// Accessor method for the sharingAllowlistRemove route object. -+ (DBRoute *)DBTEAMSharingAllowlistRemove; - -/// Accessor method for the teamFolderActivate route object. -+ (DBRoute *)DBTEAMTeamFolderActivate; - -/// Accessor method for the teamFolderArchive route object. -+ (DBRoute *)DBTEAMTeamFolderArchive; - -/// Accessor method for the teamFolderArchiveCheck route object. -+ (DBRoute *)DBTEAMTeamFolderArchiveCheck; - -/// Accessor method for the teamFolderCreate route object. -+ (DBRoute *)DBTEAMTeamFolderCreate; - -/// Accessor method for the teamFolderGetInfo route object. -+ (DBRoute *)DBTEAMTeamFolderGetInfo; - -/// Accessor method for the teamFolderList route object. -+ (DBRoute *)DBTEAMTeamFolderList; - -/// Accessor method for the teamFolderListContinue route object. -+ (DBRoute *)DBTEAMTeamFolderListContinue; - -/// Accessor method for the teamFolderPermanentlyDelete route object. -+ (DBRoute *)DBTEAMTeamFolderPermanentlyDelete; - -/// Accessor method for the teamFolderRename route object. -+ (DBRoute *)DBTEAMTeamFolderRename; - -/// Accessor method for the teamFolderUpdateSyncSettings route object. -+ (DBRoute *)DBTEAMTeamFolderUpdateSyncSettings; - -/// Accessor method for the tokenGetAuthenticatedAdmin route object. -+ (DBRoute *)DBTEAMTokenGetAuthenticatedAdmin; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSetCustomQuotaArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSetCustomQuotaArg.h deleted file mode 100644 index f9a68f45..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSetCustomQuotaArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSetCustomQuotaArg; -@class DBTEAMUserCustomQuotaArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetCustomQuotaArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSetCustomQuotaArg : NSObject - -#pragma mark - Instance fields - -/// List of users and their custom quotas. -@property (nonatomic, readonly) NSArray *usersAndQuotas; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param usersAndQuotas List of users and their custom quotas. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsersAndQuotas:(NSArray *)usersAndQuotas; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SetCustomQuotaArg` struct. -/// -@interface DBTEAMSetCustomQuotaArgSerializer : NSObject - -/// -/// Serializes `DBTEAMSetCustomQuotaArg` instances. -/// -/// @param instance An instance of the `DBTEAMSetCustomQuotaArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSetCustomQuotaArg *)instance; - -/// -/// Deserializes `DBTEAMSetCustomQuotaArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaArg` API object. -/// -/// @return An instantiation of the `DBTEAMSetCustomQuotaArg` object. -/// -+ (DBTEAMSetCustomQuotaArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSetCustomQuotaError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSetCustomQuotaError.h deleted file mode 100644 index b29058a6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSetCustomQuotaError.h +++ /dev/null @@ -1,142 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSetCustomQuotaError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SetCustomQuotaError` union. -/// -/// Error returned when setting member custom quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSetCustomQuotaError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSetCustomQuotaErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMSetCustomQuotaError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSetCustomQuotaErrorTag) { - /// A maximum of 1000 users can be set for a single call. - DBTEAMSetCustomQuotaErrorTooManyUsers, - - /// (no description). - DBTEAMSetCustomQuotaErrorOther, - - /// Some of the users are on the excluded users list and can't have custom - /// quota set. - DBTEAMSetCustomQuotaErrorSomeUsersAreExcluded, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSetCustomQuotaErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "too_many_users". -/// -/// Description of the "too_many_users" tag state: A maximum of 1000 users can -/// be set for a single call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyUsers; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "some_users_are_excluded". -/// -/// Description of the "some_users_are_excluded" tag state: Some of the users -/// are on the excluded users list and can't have custom quota set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSomeUsersAreExcluded; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "too_many_users". -/// -/// @return Whether the union's current tag state has value "too_many_users". -/// -- (BOOL)isTooManyUsers; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "some_users_are_excluded". -/// -/// @return Whether the union's current tag state has value -/// "some_users_are_excluded". -/// -- (BOOL)isSomeUsersAreExcluded; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSetCustomQuotaError` union. -/// -@interface DBTEAMSetCustomQuotaErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSetCustomQuotaError` instances. -/// -/// @param instance An instance of the `DBTEAMSetCustomQuotaError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSetCustomQuotaError *)instance; - -/// -/// Deserializes `DBTEAMSetCustomQuotaError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSetCustomQuotaError` API object. -/// -/// @return An instantiation of the `DBTEAMSetCustomQuotaError` object. -/// -+ (DBTEAMSetCustomQuotaError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddArgs.h deleted file mode 100644 index ab15424b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddArgs.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistAddArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistAddArgs` struct. -/// -/// Structure representing Approve List entries. Domain and emails are -/// supported. At least one entry of any supported type is required. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistAddArgs : NSObject - -#pragma mark - Instance fields - -/// List of domains represented by valid string representation (RFC-1034/5). -@property (nonatomic, readonly, nullable) NSArray *domains; - -/// List of emails represented by valid string representation (RFC-5322/822). -@property (nonatomic, readonly, nullable) NSArray *emails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(nullable NSArray *)domains emails:(nullable NSArray *)emails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistAddArgs` struct. -/// -@interface DBTEAMSharingAllowlistAddArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistAddArgs` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistAddArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistAddArgs *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistAddArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddArgs` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistAddArgs` object. -/// -+ (DBTEAMSharingAllowlistAddArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddError.h deleted file mode 100644 index 3eec8476..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddError.h +++ /dev/null @@ -1,245 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistAddError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistAddError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistAddError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSharingAllowlistAddErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMSharingAllowlistAddError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSharingAllowlistAddErrorTag) { - /// One of provided values is not valid. - DBTEAMSharingAllowlistAddErrorMalformedEntry, - - /// Neither single domain nor email provided. - DBTEAMSharingAllowlistAddErrorNoEntriesProvided, - - /// Too many entries provided within one call. - DBTEAMSharingAllowlistAddErrorTooManyEntriesProvided, - - /// Team entries limit reached. - DBTEAMSharingAllowlistAddErrorTeamLimitReached, - - /// Unknown error. - DBTEAMSharingAllowlistAddErrorUnknownError, - - /// Entries already exists. - DBTEAMSharingAllowlistAddErrorEntriesAlreadyExist, - - /// (no description). - DBTEAMSharingAllowlistAddErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSharingAllowlistAddErrorTag tag; - -/// One of provided values is not valid. @note Ensure the `isMalformedEntry` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *malformedEntry; - -/// Entries already exists. @note Ensure the `isEntriesAlreadyExist` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *entriesAlreadyExist; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_entry". -/// -/// Description of the "malformed_entry" tag state: One of provided values is -/// not valid. -/// -/// @param malformedEntry One of provided values is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedEntry:(NSString *)malformedEntry; - -/// -/// Initializes union class with tag state of "no_entries_provided". -/// -/// Description of the "no_entries_provided" tag state: Neither single domain -/// nor email provided. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoEntriesProvided; - -/// -/// Initializes union class with tag state of "too_many_entries_provided". -/// -/// Description of the "too_many_entries_provided" tag state: Too many entries -/// provided within one call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyEntriesProvided; - -/// -/// Initializes union class with tag state of "team_limit_reached". -/// -/// Description of the "team_limit_reached" tag state: Team entries limit -/// reached. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamLimitReached; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: Unknown error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError; - -/// -/// Initializes union class with tag state of "entries_already_exist". -/// -/// Description of the "entries_already_exist" tag state: Entries already -/// exists. -/// -/// @param entriesAlreadyExist Entries already exists. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntriesAlreadyExist:(NSString *)entriesAlreadyExist; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_entry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedEntry` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_entry". -/// -- (BOOL)isMalformedEntry; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "no_entries_provided". -/// -- (BOOL)isNoEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "too_many_entries_provided". -/// -- (BOOL)isTooManyEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_limit_reached". -/// -/// @return Whether the union's current tag state has value -/// "team_limit_reached". -/// -- (BOOL)isTeamLimitReached; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value -/// "entries_already_exist". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `entriesAlreadyExist` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "entries_already_exist". -/// -- (BOOL)isEntriesAlreadyExist; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSharingAllowlistAddError` union. -/// -@interface DBTEAMSharingAllowlistAddErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistAddError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistAddError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistAddError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistAddError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistAddError` object. -/// -+ (DBTEAMSharingAllowlistAddError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddResponse.h deleted file mode 100644 index 12582655..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistAddResponse.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistAddResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistAddResponse` struct. -/// -/// This struct is empty. The comment here is intentionally emitted to avoid -/// indentation issues with Stone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistAddResponse : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistAddResponse` struct. -/// -@interface DBTEAMSharingAllowlistAddResponseSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistAddResponse` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistAddResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistAddResponse *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistAddResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistAddResponse` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistAddResponse` object. -/// -+ (DBTEAMSharingAllowlistAddResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListArg.h deleted file mode 100644 index 57dc74f9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListArg : NSObject - -#pragma mark - Instance fields - -/// The number of entries to fetch at one time. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The number of entries to fetch at one time. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListArg` struct. -/// -@interface DBTEAMSharingAllowlistListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListArg` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListArg *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListArg` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListArg` object. -/// -+ (DBTEAMSharingAllowlistListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListContinueArg.h deleted file mode 100644 index 9ac5ba90..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListContinueArg.h +++ /dev/null @@ -1,79 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListContinueArg : NSObject - -#pragma mark - Instance fields - -/// The cursor returned from a previous call to `sharingAllowlistList` or -/// `sharingAllowlistListContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor The cursor returned from a previous call to -/// `sharingAllowlistList` or `sharingAllowlistListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListContinueArg` struct. -/// -@interface DBTEAMSharingAllowlistListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListContinueArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListContinueArg` -/// object. -/// -+ (DBTEAMSharingAllowlistListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListContinueError.h deleted file mode 100644 index 4bd0a190..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListContinueError.h +++ /dev/null @@ -1,120 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSharingAllowlistListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMSharingAllowlistListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSharingAllowlistListContinueErrorTag) { - /// Provided cursor is not valid. - DBTEAMSharingAllowlistListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMSharingAllowlistListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSharingAllowlistListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: Provided cursor is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSharingAllowlistListContinueError` -/// union. -/// -@interface DBTEAMSharingAllowlistListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListContinueError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListContinueError` -/// object. -/// -+ (DBTEAMSharingAllowlistListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListError.h deleted file mode 100644 index 81dc647f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListError.h +++ /dev/null @@ -1,74 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListError` struct. -/// -/// This struct is empty. The comment here is intentionally emitted to avoid -/// indentation issues with Stone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListError : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListError` struct. -/// -@interface DBTEAMSharingAllowlistListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListError` object. -/// -+ (DBTEAMSharingAllowlistListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListResponse.h deleted file mode 100644 index 4438da18..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistListResponse.h +++ /dev/null @@ -1,110 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistListResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistListResponse` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistListResponse : NSObject - -#pragma mark - Instance fields - -/// List of domains represented by valid string representation (RFC-1034/5). -@property (nonatomic, readonly) NSArray *domains; - -/// List of emails represented by valid string representation (RFC-5322/822). -@property (nonatomic, readonly) NSArray *emails; - -/// If this is nonempty, there are more entries that can be fetched with -/// `sharingAllowlistListContinue`. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// if true indicates that more entries can be fetched with -/// `sharingAllowlistListContinue`. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// @param cursor If this is nonempty, there are more entries that can be -/// fetched with `sharingAllowlistListContinue`. -/// @param hasMore if true indicates that more entries can be fetched with -/// `sharingAllowlistListContinue`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(NSArray *)domains - emails:(NSArray *)emails - cursor:(nullable NSString *)cursor - hasMore:(nullable NSNumber *)hasMore; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(NSArray *)domains emails:(NSArray *)emails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistListResponse` struct. -/// -@interface DBTEAMSharingAllowlistListResponseSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistListResponse` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistListResponse` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistListResponse *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistListResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistListResponse` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistListResponse` object. -/// -+ (DBTEAMSharingAllowlistListResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveArgs.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveArgs.h deleted file mode 100644 index 0c189adb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveArgs.h +++ /dev/null @@ -1,91 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistRemoveArgs; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistRemoveArgs` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistRemoveArgs : NSObject - -#pragma mark - Instance fields - -/// List of domains represented by valid string representation (RFC-1034/5). -@property (nonatomic, readonly, nullable) NSArray *domains; - -/// List of emails represented by valid string representation (RFC-5322/822). -@property (nonatomic, readonly, nullable) NSArray *emails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param domains List of domains represented by valid string representation -/// (RFC-1034/5). -/// @param emails List of emails represented by valid string representation -/// (RFC-5322/822). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDomains:(nullable NSArray *)domains emails:(nullable NSArray *)emails; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistRemoveArgs` struct. -/// -@interface DBTEAMSharingAllowlistRemoveArgsSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistRemoveArgs` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistRemoveArgs` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveArgs` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistRemoveArgs *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistRemoveArgs` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveArgs` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistRemoveArgs` object. -/// -+ (DBTEAMSharingAllowlistRemoveArgs *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveError.h deleted file mode 100644 index 96345001..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveError.h +++ /dev/null @@ -1,224 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistRemoveError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistRemoveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistRemoveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMSharingAllowlistRemoveErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMSharingAllowlistRemoveError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMSharingAllowlistRemoveErrorTag) { - /// One of provided values is not valid. - DBTEAMSharingAllowlistRemoveErrorMalformedEntry, - - /// One or more provided values do not exist. - DBTEAMSharingAllowlistRemoveErrorEntriesDoNotExist, - - /// Neither single domain nor email provided. - DBTEAMSharingAllowlistRemoveErrorNoEntriesProvided, - - /// Too many entries provided within one call. - DBTEAMSharingAllowlistRemoveErrorTooManyEntriesProvided, - - /// Unknown error. - DBTEAMSharingAllowlistRemoveErrorUnknownError, - - /// (no description). - DBTEAMSharingAllowlistRemoveErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMSharingAllowlistRemoveErrorTag tag; - -/// One of provided values is not valid. @note Ensure the `isMalformedEntry` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly, copy) NSString *malformedEntry; - -/// One or more provided values do not exist. @note Ensure the -/// `isEntriesDoNotExist` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *entriesDoNotExist; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "malformed_entry". -/// -/// Description of the "malformed_entry" tag state: One of provided values is -/// not valid. -/// -/// @param malformedEntry One of provided values is not valid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMalformedEntry:(NSString *)malformedEntry; - -/// -/// Initializes union class with tag state of "entries_do_not_exist". -/// -/// Description of the "entries_do_not_exist" tag state: One or more provided -/// values do not exist. -/// -/// @param entriesDoNotExist One or more provided values do not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEntriesDoNotExist:(NSString *)entriesDoNotExist; - -/// -/// Initializes union class with tag state of "no_entries_provided". -/// -/// Description of the "no_entries_provided" tag state: Neither single domain -/// nor email provided. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoEntriesProvided; - -/// -/// Initializes union class with tag state of "too_many_entries_provided". -/// -/// Description of the "too_many_entries_provided" tag state: Too many entries -/// provided within one call. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooManyEntriesProvided; - -/// -/// Initializes union class with tag state of "unknown_error". -/// -/// Description of the "unknown_error" tag state: Unknown error. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnknownError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "malformed_entry". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `malformedEntry` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "malformed_entry". -/// -- (BOOL)isMalformedEntry; - -/// -/// Retrieves whether the union's current tag state has value -/// "entries_do_not_exist". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `entriesDoNotExist` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "entries_do_not_exist". -/// -- (BOOL)isEntriesDoNotExist; - -/// -/// Retrieves whether the union's current tag state has value -/// "no_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "no_entries_provided". -/// -- (BOOL)isNoEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value -/// "too_many_entries_provided". -/// -/// @return Whether the union's current tag state has value -/// "too_many_entries_provided". -/// -- (BOOL)isTooManyEntriesProvided; - -/// -/// Retrieves whether the union's current tag state has value "unknown_error". -/// -/// @return Whether the union's current tag state has value "unknown_error". -/// -- (BOOL)isUnknownError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMSharingAllowlistRemoveError` union. -/// -@interface DBTEAMSharingAllowlistRemoveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistRemoveError` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistRemoveError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistRemoveError *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistRemoveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveError` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistRemoveError` object. -/// -+ (DBTEAMSharingAllowlistRemoveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveResponse.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveResponse.h deleted file mode 100644 index e2fb89b1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMSharingAllowlistRemoveResponse.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMSharingAllowlistRemoveResponse; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SharingAllowlistRemoveResponse` struct. -/// -/// This struct is empty. The comment here is intentionally emitted to avoid -/// indentation issues with Stone. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMSharingAllowlistRemoveResponse : NSObject - -#pragma mark - Instance fields - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SharingAllowlistRemoveResponse` struct. -/// -@interface DBTEAMSharingAllowlistRemoveResponseSerializer : NSObject - -/// -/// Serializes `DBTEAMSharingAllowlistRemoveResponse` instances. -/// -/// @param instance An instance of the `DBTEAMSharingAllowlistRemoveResponse` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveResponse` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMSharingAllowlistRemoveResponse *)instance; - -/// -/// Deserializes `DBTEAMSharingAllowlistRemoveResponse` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMSharingAllowlistRemoveResponse` API object. -/// -/// @return An instantiation of the `DBTEAMSharingAllowlistRemoveResponse` -/// object. -/// -+ (DBTEAMSharingAllowlistRemoveResponse *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMStorageBucket.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMStorageBucket.h deleted file mode 100644 index aa8cad89..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMStorageBucket.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMStorageBucket; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `StorageBucket` struct. -/// -/// Describes the number of users in a specific storage bucket. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMStorageBucket : NSObject - -#pragma mark - Instance fields - -/// The name of the storage bucket. For example, '1G' is a bucket of users with -/// storage size up to 1 Giga. -@property (nonatomic, readonly, copy) NSString *bucket; - -/// The number of people whose storage is in the range of this storage bucket. -@property (nonatomic, readonly) NSNumber *users; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param bucket The name of the storage bucket. For example, '1G' is a bucket -/// of users with storage size up to 1 Giga. -/// @param users The number of people whose storage is in the range of this -/// storage bucket. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBucket:(NSString *)bucket users:(NSNumber *)users; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `StorageBucket` struct. -/// -@interface DBTEAMStorageBucketSerializer : NSObject - -/// -/// Serializes `DBTEAMStorageBucket` instances. -/// -/// @param instance An instance of the `DBTEAMStorageBucket` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMStorageBucket` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMStorageBucket *)instance; - -/// -/// Deserializes `DBTEAMStorageBucket` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMStorageBucket` API object. -/// -/// @return An instantiation of the `DBTEAMStorageBucket` object. -/// -+ (DBTEAMStorageBucket *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamAuthRoutes.h deleted file mode 100644 index e9cef457..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamAuthRoutes.h +++ /dev/null @@ -1,1937 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBACCOUNTPhotoSourceArg; -@class DBACCOUNTSetProfilePhotoError; -@class DBASYNCLaunchEmptyResult; -@class DBASYNCPollEmptyResult; -@class DBASYNCPollError; -@class DBFILEPROPERTIESAddTemplateResult; -@class DBFILEPROPERTIESGetTemplateResult; -@class DBFILEPROPERTIESListTemplateResult; -@class DBFILEPROPERTIESModifyTemplateError; -@class DBFILEPROPERTIESPropertyFieldTemplate; -@class DBFILEPROPERTIESPropertyType; -@class DBFILEPROPERTIESTemplateError; -@class DBFILEPROPERTIESUpdateTemplateResult; -@class DBFILESContentSyncSetting; -@class DBFILESContentSyncSettingArg; -@class DBFILESSyncSetting; -@class DBFILESSyncSettingArg; -@class DBFILESSyncSettingsError; -@class DBNilObject; -@class DBTEAMActiveWebSession; -@class DBTEAMAddSecondaryEmailsError; -@class DBTEAMAddSecondaryEmailsResult; -@class DBTEAMAdminTier; -@class DBTEAMApiApp; -@class DBTEAMCOMMONGroupManagementType; -@class DBTEAMCOMMONGroupSummary; -@class DBTEAMCustomQuotaError; -@class DBTEAMCustomQuotaResult; -@class DBTEAMDateRangeError; -@class DBTEAMDeleteSecondaryEmailsResult; -@class DBTEAMDesktopClientSession; -@class DBTEAMDeviceSessionArg; -@class DBTEAMDevicesActive; -@class DBTEAMExcludedUsersListContinueError; -@class DBTEAMExcludedUsersListError; -@class DBTEAMExcludedUsersListResult; -@class DBTEAMExcludedUsersUpdateError; -@class DBTEAMExcludedUsersUpdateResult; -@class DBTEAMExcludedUsersUpdateStatus; -@class DBTEAMFeature; -@class DBTEAMFeatureValue; -@class DBTEAMFeaturesGetValuesBatchError; -@class DBTEAMFeaturesGetValuesBatchResult; -@class DBTEAMGetActivityReport; -@class DBTEAMGetDevicesReport; -@class DBTEAMGetMembershipReport; -@class DBTEAMGetStorageReport; -@class DBTEAMGroupAccessType; -@class DBTEAMGroupCreateError; -@class DBTEAMGroupDeleteError; -@class DBTEAMGroupFullInfo; -@class DBTEAMGroupMemberInfo; -@class DBTEAMGroupMemberSetAccessTypeError; -@class DBTEAMGroupMembersAddError; -@class DBTEAMGroupMembersChangeResult; -@class DBTEAMGroupMembersRemoveError; -@class DBTEAMGroupSelector; -@class DBTEAMGroupSelectorError; -@class DBTEAMGroupUpdateError; -@class DBTEAMGroupsGetInfoError; -@class DBTEAMGroupsGetInfoItem; -@class DBTEAMGroupsListContinueError; -@class DBTEAMGroupsListResult; -@class DBTEAMGroupsMembersListContinueError; -@class DBTEAMGroupsMembersListResult; -@class DBTEAMGroupsPollError; -@class DBTEAMGroupsSelector; -@class DBTEAMLegalHoldHeldRevisionMetadata; -@class DBTEAMLegalHoldPolicy; -@class DBTEAMLegalHoldStatus; -@class DBTEAMLegalHoldsGetPolicyError; -@class DBTEAMLegalHoldsListHeldRevisionResult; -@class DBTEAMLegalHoldsListHeldRevisionsError; -@class DBTEAMLegalHoldsListPoliciesError; -@class DBTEAMLegalHoldsListPoliciesResult; -@class DBTEAMLegalHoldsPolicyCreateError; -@class DBTEAMLegalHoldsPolicyReleaseError; -@class DBTEAMLegalHoldsPolicyUpdateError; -@class DBTEAMListMemberAppsError; -@class DBTEAMListMemberAppsResult; -@class DBTEAMListMemberDevicesError; -@class DBTEAMListMemberDevicesResult; -@class DBTEAMListMembersAppsError; -@class DBTEAMListMembersAppsResult; -@class DBTEAMListMembersDevicesError; -@class DBTEAMListMembersDevicesResult; -@class DBTEAMListTeamAppsError; -@class DBTEAMListTeamAppsResult; -@class DBTEAMListTeamDevicesError; -@class DBTEAMListTeamDevicesResult; -@class DBTEAMMemberAccess; -@class DBTEAMMemberAddArg; -@class DBTEAMMemberAddResult; -@class DBTEAMMemberAddV2Arg; -@class DBTEAMMemberAddV2Result; -@class DBTEAMMemberDevices; -@class DBTEAMMemberLinkedApps; -@class DBTEAMMemberProfile; -@class DBTEAMMembersAddJobStatus; -@class DBTEAMMembersAddJobStatusV2Result; -@class DBTEAMMembersAddLaunch; -@class DBTEAMMembersAddLaunchV2Result; -@class DBTEAMMembersDeleteProfilePhotoError; -@class DBTEAMMembersGetAvailableTeamMemberRolesResult; -@class DBTEAMMembersGetInfoError; -@class DBTEAMMembersGetInfoItem; -@class DBTEAMMembersGetInfoItemV2; -@class DBTEAMMembersGetInfoV2Result; -@class DBTEAMMembersInfo; -@class DBTEAMMembersListContinueError; -@class DBTEAMMembersListError; -@class DBTEAMMembersListResult; -@class DBTEAMMembersListV2Result; -@class DBTEAMMembersRecoverError; -@class DBTEAMMembersRemoveError; -@class DBTEAMMembersSendWelcomeError; -@class DBTEAMMembersSetPermissions2Error; -@class DBTEAMMembersSetPermissions2Result; -@class DBTEAMMembersSetPermissionsError; -@class DBTEAMMembersSetPermissionsResult; -@class DBTEAMMembersSetProfileError; -@class DBTEAMMembersSetProfilePhotoError; -@class DBTEAMMembersSuspendError; -@class DBTEAMMembersTransferFormerMembersFilesError; -@class DBTEAMMembersUnsuspendError; -@class DBTEAMMobileClientSession; -@class DBTEAMNamespaceMetadata; -@class DBTEAMPOLICIESTeamMemberPolicies; -@class DBTEAMRemoveCustomQuotaResult; -@class DBTEAMResendVerificationEmailResult; -@class DBTEAMRevokeDesktopClientArg; -@class DBTEAMRevokeDeviceSessionArg; -@class DBTEAMRevokeDeviceSessionBatchError; -@class DBTEAMRevokeDeviceSessionBatchResult; -@class DBTEAMRevokeDeviceSessionError; -@class DBTEAMRevokeDeviceSessionStatus; -@class DBTEAMRevokeLinkedApiAppArg; -@class DBTEAMRevokeLinkedAppBatchError; -@class DBTEAMRevokeLinkedAppBatchResult; -@class DBTEAMRevokeLinkedAppError; -@class DBTEAMRevokeLinkedAppStatus; -@class DBTEAMSetCustomQuotaError; -@class DBTEAMSharingAllowlistAddError; -@class DBTEAMSharingAllowlistAddResponse; -@class DBTEAMSharingAllowlistListContinueError; -@class DBTEAMSharingAllowlistListError; -@class DBTEAMSharingAllowlistListResponse; -@class DBTEAMSharingAllowlistRemoveError; -@class DBTEAMSharingAllowlistRemoveResponse; -@class DBTEAMStorageBucket; -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderActivateError; -@class DBTEAMTeamFolderArchiveError; -@class DBTEAMTeamFolderArchiveJobStatus; -@class DBTEAMTeamFolderArchiveLaunch; -@class DBTEAMTeamFolderCreateError; -@class DBTEAMTeamFolderGetInfoItem; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderListContinueError; -@class DBTEAMTeamFolderListError; -@class DBTEAMTeamFolderListResult; -@class DBTEAMTeamFolderMetadata; -@class DBTEAMTeamFolderPermanentlyDeleteError; -@class DBTEAMTeamFolderRenameError; -@class DBTEAMTeamFolderStatus; -@class DBTEAMTeamFolderTeamSharedDropboxError; -@class DBTEAMTeamFolderUpdateSyncSettingsError; -@class DBTEAMTeamGetInfoResult; -@class DBTEAMTeamMemberInfo; -@class DBTEAMTeamMemberInfoV2; -@class DBTEAMTeamMemberInfoV2Result; -@class DBTEAMTeamMemberProfile; -@class DBTEAMTeamMemberRole; -@class DBTEAMTeamNamespacesListContinueError; -@class DBTEAMTeamNamespacesListError; -@class DBTEAMTeamNamespacesListResult; -@class DBTEAMTokenGetAuthenticatedAdminError; -@class DBTEAMTokenGetAuthenticatedAdminResult; -@class DBTEAMUserAddResult; -@class DBTEAMUserCustomQuotaArg; -@class DBTEAMUserCustomQuotaResult; -@class DBTEAMUserDeleteResult; -@class DBTEAMUserResendResult; -@class DBTEAMUserSecondaryEmailsArg; -@class DBTEAMUserSelectorArg; - -@protocol DBTransportClient; - -/// -/// Routes for the `Team` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBTEAMTeamAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBTEAMTeamAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// List all device sessions of a team's member. -/// -/// @param teamMemberId The team's member id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMemberDevicesResult` object on success -/// or a `DBTEAMListMemberDevicesError` object on failure. -/// -- (DBRpcTask *)devicesListMemberDevices: - (NSString *)teamMemberId; - -/// -/// List all device sessions of a team's member. -/// -/// @param teamMemberId The team's member id. -/// @param includeWebSessions Whether to list web sessions of the team's member. -/// @param includeDesktopClients Whether to list linked desktop devices of the team's member. -/// @param includeMobileClients Whether to list linked mobile devices of the team's member. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMemberDevicesResult` object on success -/// or a `DBTEAMListMemberDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListMemberDevices:(NSString *)teamMemberId - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// List all device sessions of a team. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersDevicesResult` object on success -/// or a `DBTEAMListMembersDevicesError` object on failure. -/// -- (DBRpcTask *)devicesListMembersDevices; - -/// -/// List all device sessions of a team. Permission : Team member file access. -/// -/// @param cursor At the first call to the `devicesListMembersDevices` the cursor shouldn't be passed. Then, if the -/// result of the call includes a cursor, the following requests should include the received cursors in order to receive -/// the next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team members. -/// @param includeMobileClients Whether to list mobile clients of the team members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersDevicesResult` object on success -/// or a `DBTEAMListMembersDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListMembersDevices:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients; - -/// -/// DEPRECATED: List all device sessions of a team. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamDevicesResult` object on success or -/// a `DBTEAMListTeamDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListTeamDevices __deprecated_msg("devicesListTeamDevices is deprecated. Use devicesListMembersDevices."); - -/// -/// DEPRECATED: List all device sessions of a team. Permission : Team member file access. -/// -/// @param cursor At the first call to the `devicesListTeamDevices` the cursor shouldn't be passed. Then, if the result -/// of the call includes a cursor, the following requests should include the received cursors in order to receive the -/// next sub list of team devices. -/// @param includeWebSessions Whether to list web sessions of the team members. -/// @param includeDesktopClients Whether to list desktop clients of the team members. -/// @param includeMobileClients Whether to list mobile clients of the team members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamDevicesResult` object on success or -/// a `DBTEAMListTeamDevicesError` object on failure. -/// -- (DBRpcTask *) - devicesListTeamDevices:(nullable NSString *)cursor - includeWebSessions:(nullable NSNumber *)includeWebSessions - includeDesktopClients:(nullable NSNumber *)includeDesktopClients - includeMobileClients:(nullable NSNumber *)includeMobileClients - __deprecated_msg("devicesListTeamDevices is deprecated. Use devicesListMembersDevices."); - -/// -/// Revoke a device session of a team's member. -/// -/// @param revokeDeviceSessionArg The RevokeDeviceSessionArg union -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMRevokeDeviceSessionError` object on failure. -/// -- (DBRpcTask *)devicesRevokeDeviceSession: - (DBTEAMRevokeDeviceSessionArg *)revokeDeviceSessionArg; - -/// -/// Revoke a list of device sessions of team members. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMRevokeDeviceSessionBatchResult` object on -/// success or a `DBTEAMRevokeDeviceSessionBatchError` object on failure. -/// -- (DBRpcTask *) - devicesRevokeDeviceSessionBatch:(NSArray *)revokeDevices; - -/// -/// Get the values for one or more featues. This route allows you to check your account's capability for what feature -/// you can access or what value you have for certain features. Permission : Team information. -/// -/// @param features A list of features in Feature. If the list is empty, this route will return -/// FeaturesGetValuesBatchError. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMFeaturesGetValuesBatchResult` object on -/// success or a `DBTEAMFeaturesGetValuesBatchError` object on failure. -/// -- (DBRpcTask *)featuresGetValues: - (NSArray *)features; - -/// -/// Retrieves information about a team. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamGetInfoResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)getInfo; - -/// -/// Creates a new, empty group, with a requested name. Permission : Team member management. -/// -/// @param groupName Group name. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupCreateError` object on failure. -/// -- (DBRpcTask *)groupsCreate:(NSString *)groupName; - -/// -/// Creates a new, empty group, with a requested name. Permission : Team member management. -/// -/// @param groupName Group name. -/// @param addCreatorAsOwner Automatically add the creator of the group. -/// @param groupExternalId The creator of a team can associate an arbitrary external ID to the group. -/// @param groupManagementType Whether the team can be managed by selected users, or only by team admins. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupCreateError` object on failure. -/// -- (DBRpcTask *) - groupsCreate:(NSString *)groupName - addCreatorAsOwner:(nullable NSNumber *)addCreatorAsOwner - groupExternalId:(nullable NSString *)groupExternalId - groupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)groupManagementType; - -/// -/// Deletes a group. The group is deleted immediately. However the revoking of group-owned resources may take additional -/// time. Use the `groupsJobStatusGet` to determine whether this process has completed. Permission : Team member -/// management. -/// -/// @param groupSelector Argument for selecting a single group, either by group_id or by external group ID. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMGroupDeleteError` object on failure. -/// -- (DBRpcTask *)groupsDelete:(DBTEAMGroupSelector *)groupSelector; - -/// -/// Retrieves information about one or more groups. Note that the optional field `members` in `DBTEAMGroupFullInfo` is -/// not returned for system-managed groups. Permission : Team Information. -/// -/// @param groupsSelector Argument for selecting a list of groups, either by group_ids, or external group IDs. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMGroupsGetInfoError` object on failure. -/// -- (DBRpcTask *, DBTEAMGroupsGetInfoError *> *)groupsGetInfo: - (DBTEAMGroupsSelector *)groupsSelector; - -/// -/// Once an async_job_id is returned from `groupsDelete`, `groupsMembersAdd` , or `groupsMembersRemove` use this method -/// to poll the status of granting/revoking group members' access to group-owned resources. Permission : Team member -/// management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCPollEmptyResult` object on success or a -/// `DBTEAMGroupsPollError` object on failure. -/// -- (DBRpcTask *)groupsJobStatusGet:(NSString *)asyncJobId; - -/// -/// Lists groups on a team. Permission : Team Information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsListResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)groupsList; - -/// -/// Lists groups on a team. Permission : Team Information. -/// -/// @param limit Number of results to return per call. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsListResult` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)groupsList:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `groupsList`, use this to paginate through all groups. Permission : Team -/// Information. -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsListResult` object on success or a -/// `DBTEAMGroupsListContinueError` object on failure. -/// -- (DBRpcTask *)groupsListContinue:(NSString *)cursor; - -/// -/// Adds members to a group. The members are added immediately. However the granting of group-owned resources may take -/// additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. Permission : Team -/// member management. -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersAddError` object on failure. -/// -- (DBRpcTask *) - groupsMembersAdd:(DBTEAMGroupSelector *)group - members:(NSArray *)members; - -/// -/// Adds members to a group. The members are added immediately. However the granting of group-owned resources may take -/// additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. Permission : Team -/// member management. -/// -/// @param group Group to which users will be added. -/// @param members List of users to be added to the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersAddError` object on failure. -/// -- (DBRpcTask *) - groupsMembersAdd:(DBTEAMGroupSelector *)group - members:(NSArray *)members - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Lists members of a group. Permission : Team Information. -/// -/// @param group The group whose members are to be listed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsMembersListResult` object on success -/// or a `DBTEAMGroupSelectorError` object on failure. -/// -- (DBRpcTask *)groupsMembersList: - (DBTEAMGroupSelector *)group; - -/// -/// Lists members of a group. Permission : Team Information. -/// -/// @param group The group whose members are to be listed. -/// @param limit Number of results to return per call. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsMembersListResult` object on success -/// or a `DBTEAMGroupSelectorError` object on failure. -/// -- (DBRpcTask *) - groupsMembersList:(DBTEAMGroupSelector *)group - limit:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `groupsMembersList`, use this to paginate through all members of the group. -/// Permission : Team information. -/// -/// @param cursor Indicates from what point to get the next set of groups. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupsMembersListResult` object on success -/// or a `DBTEAMGroupsMembersListContinueError` object on failure. -/// -- (DBRpcTask *)groupsMembersListContinue: - (NSString *)cursor; - -/// -/// Removes members from a group. The members are removed immediately. However the revoking of group-owned resources may -/// take additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. This method -/// permits removing the only owner of a group, even in cases where this is not possible via the web client. Permission -/// : Team member management. -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersRemoveError` object on failure. -/// -- (DBRpcTask *) - groupsMembersRemove:(DBTEAMGroupSelector *)group - users:(NSArray *)users; - -/// -/// Removes members from a group. The members are removed immediately. However the revoking of group-owned resources may -/// take additional time. Use the `groupsJobStatusGet` to determine whether this process has completed. This method -/// permits removing the only owner of a group, even in cases where this is not possible via the web client. Permission -/// : Team member management. -/// -/// @param group Group from which users will be removed. -/// @param users List of users to be removed from the group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupMembersChangeResult` object on success -/// or a `DBTEAMGroupMembersRemoveError` object on failure. -/// -- (DBRpcTask *) - groupsMembersRemove:(DBTEAMGroupSelector *)group - users:(NSArray *)users - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Sets a member's access type in a group. Permission : Team member management. -/// -/// @param accessType New group access type the user will have. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMGroupMemberSetAccessTypeError` object on failure. -/// -- (DBRpcTask *, DBTEAMGroupMemberSetAccessTypeError *> *) - groupsMembersSetAccessType:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType; - -/// -/// Sets a member's access type in a group. Permission : Team member management. -/// -/// @param accessType New group access type the user will have. -/// @param returnMembers Whether to return the list of members in the group. Note that the default value will cause all -/// the group members to be returned in the response. This may take a long time for large groups. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMGroupMemberSetAccessTypeError` object on failure. -/// -- (DBRpcTask *, DBTEAMGroupMemberSetAccessTypeError *> *) - groupsMembersSetAccessType:(DBTEAMGroupSelector *)group - user:(DBTEAMUserSelectorArg *)user - accessType:(DBTEAMGroupAccessType *)accessType - returnMembers:(nullable NSNumber *)returnMembers; - -/// -/// Updates a group's name and/or external ID. Permission : Team member management. -/// -/// @param group Specify a group. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupUpdateError` object on failure. -/// -- (DBRpcTask *)groupsUpdate:(DBTEAMGroupSelector *)group; - -/// -/// Updates a group's name and/or external ID. Permission : Team member management. -/// -/// @param group Specify a group. -/// @param dNewGroupName Optional argument. Set group name to this if provided. -/// @param dNewGroupExternalId Optional argument. New group external ID. If the argument is None, the group's -/// external_id won't be updated. If the argument is empty string, the group's external id will be cleared. -/// @param dNewGroupManagementType Set new group management type, if provided. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGroupFullInfo` object on success or a -/// `DBTEAMGroupUpdateError` object on failure. -/// -- (DBRpcTask *) - groupsUpdate:(DBTEAMGroupSelector *)group - returnMembers:(nullable NSNumber *)returnMembers - dNewGroupName:(nullable NSString *)dNewGroupName - dNewGroupExternalId:(nullable NSString *)dNewGroupExternalId - dNewGroupManagementType:(nullable DBTEAMCOMMONGroupManagementType *)dNewGroupManagementType; - -/// -/// Creates new legal hold policy. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param name Policy name. -/// @param members List of team member IDs added to the hold. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyCreateError` object on failure. -/// -- (DBRpcTask *) - legalHoldsCreatePolicy:(NSString *)name - members:(NSArray *)members; - -/// -/// Creates new legal hold policy. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param name Policy name. -/// @param description_ A description of the legal hold policy. -/// @param members List of team member IDs added to the hold. -/// @param startDate start date of the legal hold policy. -/// @param endDate end date of the legal hold policy. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyCreateError` object on failure. -/// -- (DBRpcTask *) - legalHoldsCreatePolicy:(NSString *)name - members:(NSArray *)members - description_:(nullable NSString *)description_ - startDate:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate; - -/// -/// Gets a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsGetPolicyError` object on failure. -/// -- (DBRpcTask *)legalHoldsGetPolicy:(NSString *)id_; - -/// -/// List the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. -/// Permission : Team member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListHeldRevisionResult` object on -/// success or a `DBTEAMLegalHoldsListHeldRevisionsError` object on failure. -/// -- (DBRpcTask *) - legalHoldsListHeldRevisions:(NSString *)id_; - -/// -/// Continue listing the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the -/// feature. Permission : Team member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListHeldRevisionResult` object on -/// success or a `DBTEAMLegalHoldsListHeldRevisionsError` object on failure. -/// -- (DBRpcTask *) - legalHoldsListHeldRevisionsContinue:(NSString *)id_; - -/// -/// Continue listing the file metadata that's under the hold. Note: Legal Holds is a paid add-on. Not all teams have the -/// feature. Permission : Team member file access. -/// -/// @param id_ The legal hold Id. -/// @param cursor The cursor idicates where to continue reading file metadata entries for the next API call. When there -/// are no more entries, the cursor will return none. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListHeldRevisionResult` object on -/// success or a `DBTEAMLegalHoldsListHeldRevisionsError` object on failure. -/// -- (DBRpcTask *) - legalHoldsListHeldRevisionsContinue:(NSString *)id_ - cursor:(nullable NSString *)cursor; - -/// -/// Lists legal holds on a team. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListPoliciesResult` object on -/// success or a `DBTEAMLegalHoldsListPoliciesError` object on failure. -/// -- (DBRpcTask *)legalHoldsListPolicies; - -/// -/// Lists legal holds on a team. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param includeReleased Whether to return holds that were released. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldsListPoliciesResult` object on -/// success or a `DBTEAMLegalHoldsListPoliciesError` object on failure. -/// -- (DBRpcTask *)legalHoldsListPolicies: - (nullable NSNumber *)includeReleased; - -/// -/// Releases a legal hold by Id. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team -/// member file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMLegalHoldsPolicyReleaseError` object on failure. -/// -- (DBRpcTask *)legalHoldsReleasePolicy:(NSString *)id_; - -/// -/// Updates a legal hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member -/// file access. -/// -/// @param id_ The legal hold Id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyUpdateError` object on failure. -/// -- (DBRpcTask *)legalHoldsUpdatePolicy:(NSString *)id_; - -/// -/// Updates a legal hold. Note: Legal Holds is a paid add-on. Not all teams have the feature. Permission : Team member -/// file access. -/// -/// @param id_ The legal hold Id. -/// @param name Policy new name. -/// @param description_ Policy new description. -/// @param members List of team member IDs to apply the policy on. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMLegalHoldPolicy` object on success or a -/// `DBTEAMLegalHoldsPolicyUpdateError` object on failure. -/// -- (DBRpcTask *) - legalHoldsUpdatePolicy:(NSString *)id_ - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - members:(nullable NSArray *)members; - -/// -/// List all linked applications of the team member. Note, this endpoint does not list any team-linked applications. -/// -/// @param teamMemberId The team member id. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMemberAppsResult` object on success or a -/// `DBTEAMListMemberAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListMemberLinkedApps: - (NSString *)teamMemberId; - -/// -/// List all applications linked to the team members' accounts. Note, this endpoint does not list any team-linked -/// applications. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersAppsResult` object on success or -/// a `DBTEAMListMembersAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListMembersLinkedApps; - -/// -/// List all applications linked to the team members' accounts. Note, this endpoint does not list any team-linked -/// applications. -/// -/// @param cursor At the first call to the `linkedAppsListMembersLinkedApps` the cursor shouldn't be passed. Then, if -/// the result of the call includes a cursor, the following requests should include the received cursors in order to -/// receive the next sub list of the team applications. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListMembersAppsResult` object on success or -/// a `DBTEAMListMembersAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListMembersLinkedApps: - (nullable NSString *)cursor; - -/// -/// DEPRECATED: List all applications linked to the team members' accounts. Note, this endpoint doesn't list any -/// team-linked applications. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamAppsResult` object on success or a -/// `DBTEAMListTeamAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListTeamLinkedApps __deprecated_msg( - "linkedAppsListTeamLinkedApps is deprecated. Use linkedAppsListMembersLinkedApps."); - -/// -/// DEPRECATED: List all applications linked to the team members' accounts. Note, this endpoint doesn't list any -/// team-linked applications. -/// -/// @param cursor At the first call to the `linkedAppsListTeamLinkedApps` the cursor shouldn't be passed. Then, if the -/// result of the call includes a cursor, the following requests should include the received cursors in order to receive -/// the next sub list of the team applications. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMListTeamAppsResult` object on success or a -/// `DBTEAMListTeamAppsError` object on failure. -/// -- (DBRpcTask *)linkedAppsListTeamLinkedApps: - (nullable NSString *)cursor - __deprecated_msg("linkedAppsListTeamLinkedApps is deprecated. Use linkedAppsListMembersLinkedApps."); - -/// -/// Revoke a linked application of the team member. -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMRevokeLinkedAppError` object on failure. -/// -- (DBRpcTask *)linkedAppsRevokeLinkedApp:(NSString *)appId - teamMemberId:(NSString *)teamMemberId; - -/// -/// Revoke a linked application of the team member. -/// -/// @param appId The application's unique id. -/// @param teamMemberId The unique id of the member owning the device. -/// @param keepAppFolder This flag is not longer supported, the application dedicated folder (in case the application -/// uses one) will be kept. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMRevokeLinkedAppError` object on failure. -/// -- (DBRpcTask *)linkedAppsRevokeLinkedApp:(NSString *)appId - teamMemberId:(NSString *)teamMemberId - keepAppFolder: - (nullable NSNumber *)keepAppFolder; - -/// -/// Revoke a list of linked applications of the team members. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMRevokeLinkedAppBatchResult` object on -/// success or a `DBTEAMRevokeLinkedAppBatchError` object on failure. -/// -- (DBRpcTask *)linkedAppsRevokeLinkedAppBatch: - (NSArray *)revokeLinkedApp; - -/// -/// Add users to member space limits excluded users list. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersAdd; - -/// -/// Add users to member space limits excluded users list. -/// -/// @param users List of users to be added/removed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersAdd: - (nullable NSArray *)users; - -/// -/// List member space limits excluded users. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersListResult` object on success -/// or a `DBTEAMExcludedUsersListError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersList; - -/// -/// List member space limits excluded users. -/// -/// @param limit Number of results to return per call. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersListResult` object on success -/// or a `DBTEAMExcludedUsersListError` object on failure. -/// -- (DBRpcTask *)memberSpaceLimitsExcludedUsersList: - (nullable NSNumber *)limit; - -/// -/// Continue listing member space limits excluded users. -/// -/// @param cursor Indicates from what point to get the next set of users. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersListResult` object on success -/// or a `DBTEAMExcludedUsersListContinueError` object on failure. -/// -- (DBRpcTask *) - memberSpaceLimitsExcludedUsersListContinue:(NSString *)cursor; - -/// -/// Remove users from member space limits excluded users list. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *) - memberSpaceLimitsExcludedUsersRemove; - -/// -/// Remove users from member space limits excluded users list. -/// -/// @param users List of users to be added/removed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMExcludedUsersUpdateResult` object on success -/// or a `DBTEAMExcludedUsersUpdateError` object on failure. -/// -- (DBRpcTask *) - memberSpaceLimitsExcludedUsersRemove:(nullable NSArray *)users; - -/// -/// Get users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom space -/// limit, a team admin needs to set a member space limit for the team first. (the team admin can check the settings -/// here: https://www.dropbox.com/team/admin/settings/space). -/// -/// @param users List of users. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMCustomQuotaError` object on failure. -/// -- (DBRpcTask *, DBTEAMCustomQuotaError *> *)memberSpaceLimitsGetCustomQuota: - (NSArray *)users; - -/// -/// Remove users custom quota. A maximum of 1000 members can be specified in a single call. Note: to apply a custom -/// space limit, a team admin needs to set a member space limit for the team first. (the team admin can check the -/// settings here: https://www.dropbox.com/team/admin/settings/space). -/// -/// @param users List of users. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object -/// on success or a `DBTEAMCustomQuotaError` object on failure. -/// -- (DBRpcTask *, DBTEAMCustomQuotaError *> *)memberSpaceLimitsRemoveCustomQuota: - (NSArray *)users; - -/// -/// Set users custom quota. Custom quota has to be at least 15GB. A maximum of 1000 members can be specified in a single -/// call. Note: to apply a custom space limit, a team admin needs to set a member space limit for the team first. (the -/// team admin can check the settings here: https://www.dropbox.com/team/admin/settings/space). -/// -/// @param usersAndQuotas List of users and their custom quotas. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMSetCustomQuotaError` object on failure. -/// -- (DBRpcTask *, DBTEAMSetCustomQuotaError *> *)memberSpaceLimitsSetCustomQuota: - (NSArray *)usersAndQuotas; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunch` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)membersAdd:(NSArray *)dNewMembers; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunch` object on success or a -/// `void` object on failure. -/// -- (DBRpcTask *)membersAdd:(NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunchV2Result` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)membersAddV2: - (NSArray *)dNewMembers; - -/// -/// Adds members to a team. Permission : Team member management A maximum of 20 members can be specified in a single -/// call. If no Dropbox account exists with the email address specified, a new Dropbox account will be created with the -/// given email address, and that account will be invited to the team. If a personal Dropbox account exists with the -/// email address specified in the call, this call will create a placeholder Dropbox account for the user on the team -/// and send an email inviting the user to migrate their existing personal account onto the team. Team member management -/// apps are required to set an initial given_name and surname for a user to use in the team invitation and for 'Perform -/// as team member' actions taken on the user before they become 'active'. -/// -/// @param dNewMembers Details of new members to be added to the team. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddLaunchV2Result` object on success -/// or a `void` object on failure. -/// -- (DBRpcTask *)membersAddV2: - (NSArray *)dNewMembers - forceAsync:(nullable NSNumber *)forceAsync; - -/// -/// Once an async_job_id is returned from `membersAdd` , use this to poll the status of the asynchronous request. -/// Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddJobStatus` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersAddJobStatusGet:(NSString *)asyncJobId; - -/// -/// Once an async_job_id is returned from `membersAdd` , use this to poll the status of the asynchronous request. -/// Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersAddJobStatusV2Result` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersAddJobStatusGetV2:(NSString *)asyncJobId; - -/// -/// Deletes a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be deleted. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersDeleteProfilePhotoError` object on failure. -/// -- (DBRpcTask *)membersDeleteProfilePhoto: - (DBTEAMUserSelectorArg *)user; - -/// -/// Deletes a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be deleted. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersDeleteProfilePhotoError` object on failure. -/// -- (DBRpcTask *)membersDeleteProfilePhotoV2: - (DBTEAMUserSelectorArg *)user; - -/// -/// Get available TeamMemberRoles for the connected team. To be used with `membersSetAdminPermissions`. Permission : -/// Team member management. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersGetAvailableTeamMemberRolesResult` -/// object on success or a `void` object on failure. -/// -- (DBRpcTask *)membersGetAvailableTeamMemberRoles; - -/// -/// Returns information about multiple team members. Permission : Team information This endpoint will return -/// `idNotFound` in `DBTEAMMembersGetInfoItem`, for IDs (or emails) that cannot be matched to a valid team member. -/// -/// @param members List of team members. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `DBTEAMMembersGetInfoError` object on failure. -/// -- (DBRpcTask *, DBTEAMMembersGetInfoError *> *)membersGetInfo: - (NSArray *)members; - -/// -/// Returns information about multiple team members. Permission : Team information This endpoint will return -/// `idNotFound` in `DBTEAMMembersGetInfoItem`, for IDs (or emails) that cannot be matched to a valid team member. -/// -/// @param members List of team members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersGetInfoV2Result` object on success or -/// a `DBTEAMMembersGetInfoError` object on failure. -/// -- (DBRpcTask *)membersGetInfoV2: - (NSArray *)members; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListResult` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersList; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// @param limit Number of results to return per call. -/// @param includeRemoved Whether to return removed members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListResult` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersList:(nullable NSNumber *)limit - includeRemoved:(nullable NSNumber *)includeRemoved; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListV2Result` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersListV2; - -/// -/// Lists members of a team. Permission : Team information. -/// -/// @param limit Number of results to return per call. -/// @param includeRemoved Whether to return removed members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListV2Result` object on success or a -/// `DBTEAMMembersListError` object on failure. -/// -- (DBRpcTask *)membersListV2:(nullable NSNumber *)limit - includeRemoved:(nullable NSNumber *)includeRemoved; - -/// -/// Once a cursor has been retrieved from `membersList`, use this to paginate through all team members. Permission : -/// Team information. -/// -/// @param cursor Indicates from what point to get the next set of members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListResult` object on success or a -/// `DBTEAMMembersListContinueError` object on failure. -/// -- (DBRpcTask *)membersListContinue:(NSString *)cursor; - -/// -/// Once a cursor has been retrieved from `membersList`, use this to paginate through all team members. Permission : -/// Team information. -/// -/// @param cursor Indicates from what point to get the next set of members. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersListV2Result` object on success or a -/// `DBTEAMMembersListContinueError` object on failure. -/// -- (DBRpcTask *)membersListContinueV2:(NSString *)cursor; - -/// -/// Moves removed member's files to a different member. This endpoint initiates an asynchronous job. To obtain the final -/// result of the job, the client should periodically poll `membersMoveFormerMemberFilesJobStatusCheck`. Permission : -/// Team member management. -/// -/// @param transferDestId Files from the deleted member account will be transferred to this user. -/// @param transferAdminId Errors during the transfer process will be sent via email to this user. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMMembersTransferFormerMembersFilesError` object on failure. -/// -- (DBRpcTask *) - membersMoveFormerMemberFiles:(DBTEAMUserSelectorArg *)user - transferDestId:(DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(DBTEAMUserSelectorArg *)transferAdminId; - -/// -/// Once an async_job_id is returned from `membersMoveFormerMemberFiles` , use this to poll the status of the -/// asynchronous request. Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCPollEmptyResult` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersMoveFormerMemberFilesJobStatusCheck: - (NSString *)asyncJobId; - -/// -/// Recover a deleted member. Permission : Team member management Exactly one of team_member_id, email, or external_id -/// must be provided to identify the user account. -/// -/// @param user Identity of user to recover. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersRecoverError` object on failure. -/// -- (DBRpcTask *)membersRecover:(DBTEAMUserSelectorArg *)user; - -/// -/// Removes a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. Accounts can be recovered via `membersRecover` for a 7 -/// day period or until the account has been permanently deleted or transferred to another account (whichever comes -/// first). Calling `membersAdd` while a user is still recoverable on your team will return with `userAlreadyOnTeam` in -/// `DBTEAMMemberAddResult`. Accounts can have their files transferred via the admin console for a limited time, based -/// on the version history length associated with the team (180 days for most teams). This endpoint may initiate an -/// asynchronous job. To obtain the final result of the job, the client should periodically poll -/// `membersRemoveJobStatusGet`. -/// -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMMembersRemoveError` object on failure. -/// -- (DBRpcTask *)membersRemove:(DBTEAMUserSelectorArg *)user; - -/// -/// Removes a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. Accounts can be recovered via `membersRecover` for a 7 -/// day period or until the account has been permanently deleted or transferred to another account (whichever comes -/// first). Calling `membersAdd` while a user is still recoverable on your team will return with `userAlreadyOnTeam` in -/// `DBTEAMMemberAddResult`. Accounts can have their files transferred via the admin console for a limited time, based -/// on the version history length associated with the team (180 days for most teams). This endpoint may initiate an -/// asynchronous job. To obtain the final result of the job, the client should periodically poll -/// `membersRemoveJobStatusGet`. -/// -/// @param transferDestId If provided, files from the deleted member account will be transferred to this user. -/// @param transferAdminId If provided, errors during the transfer process will be sent via email to this user. If the -/// transfer_dest_id argument was provided, then this argument must be provided as well. -/// @param keepAccount Downgrade the member to a Basic account. The user will retain the email address associated with -/// their Dropbox account and data in their account that is not restricted to team members. In order to keep the -/// account the argument wipeData should be set to false. -/// @param retainTeamShares If provided, allows removed users to keep access to Dropbox folders (not Dropbox Paper -/// folders) already explicitly shared with them (not via a group) when they are downgraded to a Basic account. Users -/// will not retain access to folders that do not allow external sharing. In order to keep the sharing relationships, -/// the arguments wipeData should be set to false and keepAccount should be set to true. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCLaunchEmptyResult` object on success or a -/// `DBTEAMMembersRemoveError` object on failure. -/// -- (DBRpcTask *) - membersRemove:(DBTEAMUserSelectorArg *)user - wipeData:(nullable NSNumber *)wipeData - transferDestId:(nullable DBTEAMUserSelectorArg *)transferDestId - transferAdminId:(nullable DBTEAMUserSelectorArg *)transferAdminId - keepAccount:(nullable NSNumber *)keepAccount - retainTeamShares:(nullable NSNumber *)retainTeamShares; - -/// -/// Once an async_job_id is returned from `membersRemove` , use this to poll the status of the asynchronous request. -/// Permission : Team member management. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBASYNCPollEmptyResult` object on success or a -/// `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)membersRemoveJobStatusGet:(NSString *)asyncJobId; - -/// -/// Add secondary emails to users. Permission : Team member management. Emails that are on verified domains will be -/// verified automatically. For each email address not on a verified domain a verification email will be sent. -/// -/// @param dNewSecondaryEmails List of users and secondary emails to add. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMAddSecondaryEmailsResult` object on success -/// or a `DBTEAMAddSecondaryEmailsError` object on failure. -/// -- (DBRpcTask *)membersSecondaryEmailsAdd: - (NSArray *)dNewSecondaryEmails; - -/// -/// Delete secondary emails from users Permission : Team member management. Users will be notified of deletions of -/// verified secondary emails at both the secondary email and their primary email. -/// -/// @param emailsToDelete List of users and their secondary emails to delete. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMDeleteSecondaryEmailsResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)membersSecondaryEmailsDelete: - (NSArray *)emailsToDelete; - -/// -/// Resend secondary email verification emails. Permission : Team member management. -/// -/// @param emailsToResend List of users and secondary emails to resend verification emails to. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMResendVerificationEmailResult` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *)membersSecondaryEmailsResendVerificationEmails: - (NSArray *)emailsToResend; - -/// -/// Sends welcome email to pending team member. Permission : Team member management Exactly one of team_member_id, -/// email, or external_id must be provided to identify the user account. No-op if team member is not pending. -/// -/// @param userSelectorArg Argument for selecting a single user, either by team_member_id, external_id or email. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersSendWelcomeError` object on failure. -/// -- (DBRpcTask *)membersSendWelcomeEmail: - (DBTEAMUserSelectorArg *)userSelectorArg; - -/// -/// Updates a team member's permissions. Permission : Team member management. -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRole The new role of the member. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersSetPermissionsResult` object on -/// success or a `DBTEAMMembersSetPermissionsError` object on failure. -/// -- (DBRpcTask *) - membersSetAdminPermissions:(DBTEAMUserSelectorArg *)user - dNewRole:(DBTEAMAdminTier *)dNewRole; - -/// -/// Updates a team member's permissions. Permission : Team member management. -/// -/// @param user Identity of user whose role will be set. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersSetPermissions2Result` object on -/// success or a `DBTEAMMembersSetPermissions2Error` object on failure. -/// -- (DBRpcTask *)membersSetAdminPermissionsV2: - (DBTEAMUserSelectorArg *)user; - -/// -/// Updates a team member's permissions. Permission : Team member management. -/// -/// @param user Identity of user whose role will be set. -/// @param dNewRoles The new roles for the member. Send empty list to make user member only. For now, only up to one -/// role is allowed. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMMembersSetPermissions2Result` object on -/// success or a `DBTEAMMembersSetPermissions2Error` object on failure. -/// -- (DBRpcTask *) - membersSetAdminPermissionsV2:(DBTEAMUserSelectorArg *)user - dNewRoles:(nullable NSArray *)dNewRoles; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *)membersSetProfile:(DBTEAMUserSelectorArg *)user; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// @param dNewEmail New email for member. -/// @param dNewExternalId New external ID for member. -/// @param dNewGivenName New given name for member. -/// @param dNewSurname New surname for member. -/// @param dNewPersistentId New persistent ID. This field only available to teams using persistent ID SAML -/// configuration. -/// @param dNewIsDirectoryRestricted New value for whether the user is a directory restricted user. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *) - membersSetProfile:(DBTEAMUserSelectorArg *)user - dNewEmail:(nullable NSString *)dNewEmail - dNewExternalId:(nullable NSString *)dNewExternalId - dNewGivenName:(nullable NSString *)dNewGivenName - dNewSurname:(nullable NSString *)dNewSurname - dNewPersistentId:(nullable NSString *)dNewPersistentId - dNewIsDirectoryRestricted:(nullable NSNumber *)dNewIsDirectoryRestricted; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *)membersSetProfileV2: - (DBTEAMUserSelectorArg *)user; - -/// -/// Updates a team member's profile. Permission : Team member management. -/// -/// @param user Identity of user whose profile will be set. -/// @param dNewEmail New email for member. -/// @param dNewExternalId New external ID for member. -/// @param dNewGivenName New given name for member. -/// @param dNewSurname New surname for member. -/// @param dNewPersistentId New persistent ID. This field only available to teams using persistent ID SAML -/// configuration. -/// @param dNewIsDirectoryRestricted New value for whether the user is a directory restricted user. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersSetProfileError` object on failure. -/// -- (DBRpcTask *) - membersSetProfileV2:(DBTEAMUserSelectorArg *)user - dNewEmail:(nullable NSString *)dNewEmail - dNewExternalId:(nullable NSString *)dNewExternalId - dNewGivenName:(nullable NSString *)dNewGivenName - dNewSurname:(nullable NSString *)dNewSurname - dNewPersistentId:(nullable NSString *)dNewPersistentId - dNewIsDirectoryRestricted:(nullable NSNumber *)dNewIsDirectoryRestricted; - -/// -/// Updates a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be set. -/// @param photo Image to set as the member's new profile photo. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfo` object on success or a -/// `DBTEAMMembersSetProfilePhotoError` object on failure. -/// -- (DBRpcTask *) - membersSetProfilePhoto:(DBTEAMUserSelectorArg *)user - photo:(DBACCOUNTPhotoSourceArg *)photo; - -/// -/// Updates a team member's profile photo. Permission : Team member management. -/// -/// @param user Identity of the user whose profile photo will be set. -/// @param photo Image to set as the member's new profile photo. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamMemberInfoV2Result` object on success or -/// a `DBTEAMMembersSetProfilePhotoError` object on failure. -/// -- (DBRpcTask *) - membersSetProfilePhotoV2:(DBTEAMUserSelectorArg *)user - photo:(DBACCOUNTPhotoSourceArg *)photo; - -/// -/// Suspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. -/// -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersSuspendError` object on failure. -/// -- (DBRpcTask *)membersSuspend:(DBTEAMUserSelectorArg *)user; - -/// -/// Suspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. -/// -/// @param wipeData If provided, controls if the user's data will be deleted on their linked devices. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersSuspendError` object on failure. -/// -- (DBRpcTask *)membersSuspend:(DBTEAMUserSelectorArg *)user - wipeData:(nullable NSNumber *)wipeData; - -/// -/// Unsuspend a member from a team. Permission : Team member management Exactly one of team_member_id, email, or -/// external_id must be provided to identify the user account. -/// -/// @param user Identity of user to unsuspend. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMMembersUnsuspendError` object on failure. -/// -- (DBRpcTask *)membersUnsuspend:(DBTEAMUserSelectorArg *)user; - -/// -/// Returns a list of all team-accessible namespaces. This list includes team folders, shared folders containing team -/// members, team members' home namespaces, and team members' app folders. Home namespaces and app folders are always -/// owned by this team or members of the team, but shared folders may be owned by other users or other teams. Duplicates -/// may occur in the list. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamNamespacesListResult` object on success -/// or a `DBTEAMTeamNamespacesListError` object on failure. -/// -- (DBRpcTask *)namespacesList; - -/// -/// Returns a list of all team-accessible namespaces. This list includes team folders, shared folders containing team -/// members, team members' home namespaces, and team members' app folders. Home namespaces and app folders are always -/// owned by this team or members of the team, but shared folders may be owned by other users or other teams. Duplicates -/// may occur in the list. -/// -/// @param limit Specifying a value here has no effect. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamNamespacesListResult` object on success -/// or a `DBTEAMTeamNamespacesListError` object on failure. -/// -- (DBRpcTask *)namespacesList: - (nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `namespacesList`, use this to paginate through all team-accessible namespaces. -/// Duplicates may occur in the list. -/// -/// @param cursor Indicates from what point to get the next set of team-accessible namespaces. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamNamespacesListResult` object on success -/// or a `DBTEAMTeamNamespacesListContinueError` object on failure. -/// -- (DBRpcTask *)namespacesListContinue: - (NSString *)cursor; - -/// -/// DEPRECATED: Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESAddTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateAdd:(NSString *)name - description_:(NSString *)description_ - fields:(NSArray *)fields - __deprecated_msg("propertiesTemplateAdd is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. The scope for the route is files.team_metadata.write. -/// -/// @param templateId An identifier for template added by route See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESGetTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *)propertiesTemplateGet: - (NSString *)templateId __deprecated_msg("propertiesTemplateGet is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. The scope for the route is files.team_metadata.write. -/// -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESListTemplateResult` object on -/// success or a `DBFILEPROPERTIESTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateList __deprecated_msg("propertiesTemplateList is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *)propertiesTemplateUpdate: - (NSString *)templateId __deprecated_msg("propertiesTemplateUpdate is deprecated."); - -/// -/// DEPRECATED: Permission : Team member file access. -/// -/// @param templateId An identifier for template added by See `templatesAddForUser` or `templatesAddForTeam`. -/// @param name A display name for the template. template names can be up to 256 bytes. -/// @param description_ Description for the new template. Template descriptions can be up to 1024 bytes. -/// @param addFields Property field templates to be added to the group template. There can be up to 32 properties in a -/// single template. -/// -/// @return Through the response callback, the caller will receive a `DBFILEPROPERTIESUpdateTemplateResult` object on -/// success or a `DBFILEPROPERTIESModifyTemplateError` object on failure. -/// -- (DBRpcTask *) - propertiesTemplateUpdate:(NSString *)templateId - name:(nullable NSString *)name - description_:(nullable NSString *)description_ - addFields:(nullable NSArray *)addFields - __deprecated_msg("propertiesTemplateUpdate is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's user activity. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetActivityReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *) - reportsGetActivity __deprecated_msg("reportsGetActivity is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's user activity. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetActivityReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetActivity:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetActivity is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's linked devices. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetDevicesReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetDevices __deprecated_msg("reportsGetDevices " - "is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's linked devices. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetDevicesReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetDevices:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetDevices is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's membership. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetMembershipReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *) - reportsGetMembership __deprecated_msg("reportsGetMembership is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's membership. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetMembershipReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetMembership:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetMembership is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's storage usage. Deprecated: Will be removed on July 1st 2021. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetStorageReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetStorage __deprecated_msg("reportsGetStorage " - "is deprecated."); - -/// -/// DEPRECATED: Retrieves reporting data about a team's storage usage. Deprecated: Will be removed on July 1st 2021. -/// -/// @param startDate Optional starting date (inclusive). If start_date is None or too long ago, this field will be set -/// to 6 months ago. -/// @param endDate Optional ending date (exclusive). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMGetStorageReport` object on success or a -/// `DBTEAMDateRangeError` object on failure. -/// -- (DBRpcTask *)reportsGetStorage:(nullable NSDate *)startDate - endDate:(nullable NSDate *)endDate - __deprecated_msg("reportsGetStorage is deprecated."); - -/// -/// Endpoint adds Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case -/// of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Added entries cannot overflow limit of 10000 entries per team. Maximum 100 entries per call is allowed. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistAddResponse` object on -/// success or a `DBTEAMSharingAllowlistAddError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistAdd; - -/// -/// Endpoint adds Approve List entries. Changes are effective immediately. Changes are committed in transaction. In case -/// of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Added entries cannot overflow limit of 10000 entries per team. Maximum 100 entries per call is allowed. -/// -/// @param domains List of domains represented by valid string representation (RFC-1034/5). -/// @param emails List of emails represented by valid string representation (RFC-5322/822). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistAddResponse` object on -/// success or a `DBTEAMSharingAllowlistAddError` object on failure. -/// -- (DBRpcTask *) - sharingAllowlistAdd:(nullable NSArray *)domains - emails:(nullable NSArray *)emails; - -/// -/// Lists Approve List entries for given team, from newest to oldest, returning up to `limit` entries at a time. If -/// there are more than `limit` entries associated with the current team, more can be fetched by passing the returned -/// `cursor` to `sharingAllowlistListContinue`. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistListResponse` object on -/// success or a `DBTEAMSharingAllowlistListError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistList; - -/// -/// Lists Approve List entries for given team, from newest to oldest, returning up to `limit` entries at a time. If -/// there are more than `limit` entries associated with the current team, more can be fetched by passing the returned -/// `cursor` to `sharingAllowlistListContinue`. -/// -/// @param limit The number of entries to fetch at one time. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistListResponse` object on -/// success or a `DBTEAMSharingAllowlistListError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistList: - (nullable NSNumber *)limit; - -/// -/// Lists entries associated with given team, starting from a the cursor. See `sharingAllowlistList`. -/// -/// @param cursor The cursor returned from a previous call to `sharingAllowlistList` or `sharingAllowlistListContinue`. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistListResponse` object on -/// success or a `DBTEAMSharingAllowlistListContinueError` object on failure. -/// -- (DBRpcTask *) - sharingAllowlistListContinue:(NSString *)cursor; - -/// -/// Endpoint removes Approve List entries. Changes are effective immediately. Changes are committed in transaction. In -/// case of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Entries being removed have to be present on the list. Maximum 1000 entries per call is allowed. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistRemoveResponse` object on -/// success or a `DBTEAMSharingAllowlistRemoveError` object on failure. -/// -- (DBRpcTask *)sharingAllowlistRemove; - -/// -/// Endpoint removes Approve List entries. Changes are effective immediately. Changes are committed in transaction. In -/// case of single validation error - all entries are rejected. Valid domains (RFC-1034/5) and emails (RFC-5322/822) are -/// accepted. Entries being removed have to be present on the list. Maximum 1000 entries per call is allowed. -/// -/// @param domains List of domains represented by valid string representation (RFC-1034/5). -/// @param emails List of emails represented by valid string representation (RFC-5322/822). -/// -/// @return Through the response callback, the caller will receive a `DBTEAMSharingAllowlistRemoveResponse` object on -/// success or a `DBTEAMSharingAllowlistRemoveError` object on failure. -/// -- (DBRpcTask *) - sharingAllowlistRemove:(nullable NSArray *)domains - emails:(nullable NSArray *)emails; - -/// -/// Sets an archived team folder's status to active. Permission : Team member file access. -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderActivateError` object on failure. -/// -- (DBRpcTask *)teamFolderActivate:(NSString *)teamFolderId; - -/// -/// Sets an active team folder's status to archived and removes all folder and file members. This endpoint cannot be -/// used for teams that have a shared team space. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderArchiveLaunch` object on success -/// or a `DBTEAMTeamFolderArchiveError` object on failure. -/// -- (DBRpcTask *)teamFolderArchive: - (NSString *)teamFolderId; - -/// -/// Sets an active team folder's status to archived and removes all folder and file members. This endpoint cannot be -/// used for teams that have a shared team space. Permission : Team member file access. -/// -/// @param forceAsyncOff Whether to force the archive to happen synchronously. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderArchiveLaunch` object on success -/// or a `DBTEAMTeamFolderArchiveError` object on failure. -/// -- (DBRpcTask *) - teamFolderArchive:(NSString *)teamFolderId - forceAsyncOff:(nullable NSNumber *)forceAsyncOff; - -/// -/// Returns the status of an asynchronous job for archiving a team folder. Permission : Team member file access. -/// -/// @param asyncJobId Id of the asynchronous job. This is the value of a response returned from the method that launched -/// the job. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderArchiveJobStatus` object on -/// success or a `DBASYNCPollError` object on failure. -/// -- (DBRpcTask *)teamFolderArchiveCheck:(NSString *)asyncJobId; - -/// -/// Creates a new, active, team folder with no members. This endpoint can only be used for teams that do not already -/// have a shared team space. Permission : Team member file access. -/// -/// @param name Name for the new team folder. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderCreateError` object on failure. -/// -- (DBRpcTask *)teamFolderCreate:(NSString *)name; - -/// -/// Creates a new, active, team folder with no members. This endpoint can only be used for teams that do not already -/// have a shared team space. Permission : Team member file access. -/// -/// @param name Name for the new team folder. -/// @param syncSetting The sync setting to apply to this team folder. Only permitted if the team has team selective sync -/// enabled. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderCreateError` object on failure. -/// -- (DBRpcTask *) - teamFolderCreate:(NSString *)name - syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting; - -/// -/// Retrieves metadata for team folders. Permission : Team member file access. -/// -/// @param teamFolderIds The list of team folder IDs. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on -/// success or a `void` object on failure. -/// -- (DBRpcTask *, DBNilObject *> *)teamFolderGetInfo: - (NSArray *)teamFolderIds; - -/// -/// Lists all team folders. Permission : Team member file access. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderListResult` object on success or a -/// `DBTEAMTeamFolderListError` object on failure. -/// -- (DBRpcTask *)teamFolderList; - -/// -/// Lists all team folders. Permission : Team member file access. -/// -/// @param limit The maximum number of results to return per request. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderListResult` object on success or a -/// `DBTEAMTeamFolderListError` object on failure. -/// -- (DBRpcTask *)teamFolderList:(nullable NSNumber *)limit; - -/// -/// Once a cursor has been retrieved from `teamFolderList`, use this to paginate through all team folders. Permission : -/// Team member file access. -/// -/// @param cursor Indicates from what point to get the next set of team folders. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderListResult` object on success or a -/// `DBTEAMTeamFolderListContinueError` object on failure. -/// -- (DBRpcTask *)teamFolderListContinue: - (NSString *)cursor; - -/// -/// Permanently deletes an archived team folder. This endpoint cannot be used for teams that have a shared team space. -/// Permission : Team member file access. -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return Through the response callback, the caller will receive a `void` object on success or a -/// `DBTEAMTeamFolderPermanentlyDeleteError` object on failure. -/// -- (DBRpcTask *)teamFolderPermanentlyDelete: - (NSString *)teamFolderId; - -/// -/// Changes an active team folder's name. Permission : Team member file access. -/// -/// @param name New team folder name. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderRenameError` object on failure. -/// -- (DBRpcTask *)teamFolderRename:(NSString *)teamFolderId - name:(NSString *)name; - -/// -/// Updates the sync settings on a team folder or its contents. Use of this endpoint requires that the team has team -/// selective sync enabled. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderUpdateSyncSettingsError` object on failure. -/// -- (DBRpcTask *)teamFolderUpdateSyncSettings: - (NSString *)teamFolderId; - -/// -/// Updates the sync settings on a team folder or its contents. Use of this endpoint requires that the team has team -/// selective sync enabled. -/// -/// @param syncSetting Sync setting to apply to the team folder itself. Only meaningful if the team folder is not a -/// shared team root. -/// @param contentSyncSettings Sync settings to apply to contents of this team folder. -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTeamFolderMetadata` object on success or a -/// `DBTEAMTeamFolderUpdateSyncSettingsError` object on failure. -/// -- (DBRpcTask *) - teamFolderUpdateSyncSettings:(NSString *)teamFolderId - syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting - contentSyncSettings:(nullable NSArray *)contentSyncSettings; - -/// -/// Returns the member profile of the admin who generated the team access token used to make the call. -/// -/// -/// @return Through the response callback, the caller will receive a `DBTEAMTokenGetAuthenticatedAdminResult` object on -/// success or a `DBTEAMTokenGetAuthenticatedAdminError` object on failure. -/// -- (DBRpcTask *) - tokenGetAuthenticatedAdmin; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderAccessError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderAccessError.h deleted file mode 100644 index 2bfc69e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderAccessError.h +++ /dev/null @@ -1,140 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderAccessError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderAccessError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderAccessErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderAccessError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderAccessErrorTag) { - /// The team folder ID is invalid. - DBTEAMTeamFolderAccessErrorInvalidTeamFolderId, - - /// The authenticated app does not have permission to manage that team - /// folder. - DBTEAMTeamFolderAccessErrorNoAccess, - - /// (no description). - DBTEAMTeamFolderAccessErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_team_folder_id". -/// -/// Description of the "invalid_team_folder_id" tag state: The team folder ID is -/// invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidTeamFolderId; - -/// -/// Initializes union class with tag state of "no_access". -/// -/// Description of the "no_access" tag state: The authenticated app does not -/// have permission to manage that team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccess; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_team_folder_id". -/// -/// @return Whether the union's current tag state has value -/// "invalid_team_folder_id". -/// -- (BOOL)isInvalidTeamFolderId; - -/// -/// Retrieves whether the union's current tag state has value "no_access". -/// -/// @return Whether the union's current tag state has value "no_access". -/// -- (BOOL)isNoAccess; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderAccessError` union. -/// -@interface DBTEAMTeamFolderAccessErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderAccessError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderAccessError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderAccessError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderAccessError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderAccessError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderAccessError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderAccessError` object. -/// -+ (DBTEAMTeamFolderAccessError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderActivateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderActivateError.h deleted file mode 100644 index c1a5c68b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderActivateError.h +++ /dev/null @@ -1,182 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderActivateError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderActivateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderActivateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderActivateErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderActivateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderActivateErrorTag) { - /// (no description). - DBTEAMTeamFolderActivateErrorAccessError, - - /// (no description). - DBTEAMTeamFolderActivateErrorStatusError, - - /// (no description). - DBTEAMTeamFolderActivateErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderActivateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderActivateErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderActivateError` union. -/// -@interface DBTEAMTeamFolderActivateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderActivateError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderActivateError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderActivateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderActivateError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderActivateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderActivateError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderActivateError` object. -/// -+ (DBTEAMTeamFolderActivateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveArg.h deleted file mode 100644 index 2692e9a3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveArg.h +++ /dev/null @@ -1,85 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMTeamFolderIdArg.h" - -@class DBTEAMTeamFolderArchiveArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveArg : DBTEAMTeamFolderIdArg - -#pragma mark - Instance fields - -/// Whether to force the archive to happen synchronously. -@property (nonatomic, readonly) NSNumber *forceAsyncOff; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param forceAsyncOff Whether to force the archive to happen synchronously. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId forceAsyncOff:(nullable NSNumber *)forceAsyncOff; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderArchiveArg` struct. -/// -@interface DBTEAMTeamFolderArchiveArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveArg` object. -/// -+ (DBTEAMTeamFolderArchiveArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveError.h deleted file mode 100644 index 57713725..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveError.h +++ /dev/null @@ -1,182 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderArchiveError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderArchiveErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderArchiveError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderArchiveErrorTag) { - /// (no description). - DBTEAMTeamFolderArchiveErrorAccessError, - - /// (no description). - DBTEAMTeamFolderArchiveErrorStatusError, - - /// (no description). - DBTEAMTeamFolderArchiveErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderArchiveErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderArchiveError` union. -/// -@interface DBTEAMTeamFolderArchiveErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveError` object. -/// -+ (DBTEAMTeamFolderArchiveError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveJobStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveJobStatus.h deleted file mode 100644 index 56ba7997..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveJobStatus.h +++ /dev/null @@ -1,168 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderArchiveError; -@class DBTEAMTeamFolderArchiveJobStatus; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveJobStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveJobStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderArchiveJobStatusTag` enum type represents the possible -/// tag states with which the `DBTEAMTeamFolderArchiveJobStatus` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderArchiveJobStatusTag) { - /// The asynchronous job is still in progress. - DBTEAMTeamFolderArchiveJobStatusInProgress, - - /// The archive job has finished. The value is the metadata for the - /// resulting team folder. - DBTEAMTeamFolderArchiveJobStatusComplete, - - /// Error occurred while performing an asynchronous job from - /// `teamFolderArchive`. - DBTEAMTeamFolderArchiveJobStatusFailed, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveJobStatusTag tag; - -/// The archive job has finished. The value is the metadata for the resulting -/// team folder. @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderMetadata *complete; - -/// Error occurred while performing an asynchronous job from -/// `teamFolderArchive`. @note Ensure the `isFailed` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveError *failed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "in_progress". -/// -/// Description of the "in_progress" tag state: The asynchronous job is still in -/// progress. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInProgress; - -/// -/// Initializes union class with tag state of "complete". -/// -/// Description of the "complete" tag state: The archive job has finished. The -/// value is the metadata for the resulting team folder. -/// -/// @param complete The archive job has finished. The value is the metadata for -/// the resulting team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBTEAMTeamFolderMetadata *)complete; - -/// -/// Initializes union class with tag state of "failed". -/// -/// Description of the "failed" tag state: Error occurred while performing an -/// asynchronous job from `teamFolderArchive`. -/// -/// @param failed Error occurred while performing an asynchronous job from -/// `teamFolderArchive`. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFailed:(DBTEAMTeamFolderArchiveError *)failed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "in_progress". -/// -/// @return Whether the union's current tag state has value "in_progress". -/// -- (BOOL)isInProgress; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves whether the union's current tag state has value "failed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `failed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "failed". -/// -- (BOOL)isFailed; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderArchiveJobStatus` union. -/// -@interface DBTEAMTeamFolderArchiveJobStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveJobStatus` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveJobStatus` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveJobStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveJobStatus *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveJobStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveJobStatus` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveJobStatus` object. -/// -+ (DBTEAMTeamFolderArchiveJobStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveLaunch.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveLaunch.h deleted file mode 100644 index 045d4db9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderArchiveLaunch.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderArchiveLaunch; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderArchiveLaunch` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderArchiveLaunch : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderArchiveLaunchTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderArchiveLaunch` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderArchiveLaunchTag) { - /// This response indicates that the processing is asynchronous. The string - /// is an id that can be used to obtain the status of the asynchronous job. - DBTEAMTeamFolderArchiveLaunchAsyncJobId, - - /// (no description). - DBTEAMTeamFolderArchiveLaunchComplete, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderArchiveLaunchTag tag; - -/// This response indicates that the processing is asynchronous. The string is -/// an id that can be used to obtain the status of the asynchronous job. @note -/// Ensure the `isAsyncJobId` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *asyncJobId; - -/// (no description). @note Ensure the `isComplete` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderMetadata *complete; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "async_job_id". -/// -/// Description of the "async_job_id" tag state: This response indicates that -/// the processing is asynchronous. The string is an id that can be used to -/// obtain the status of the asynchronous job. -/// -/// @param asyncJobId This response indicates that the processing is -/// asynchronous. The string is an id that can be used to obtain the status of -/// the asynchronous job. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAsyncJobId:(NSString *)asyncJobId; - -/// -/// Initializes union class with tag state of "complete". -/// -/// @param complete (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithComplete:(DBTEAMTeamFolderMetadata *)complete; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "async_job_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `asyncJobId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "async_job_id". -/// -- (BOOL)isAsyncJobId; - -/// -/// Retrieves whether the union's current tag state has value "complete". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `complete` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "complete". -/// -- (BOOL)isComplete; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderArchiveLaunch` union. -/// -@interface DBTEAMTeamFolderArchiveLaunchSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderArchiveLaunch` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderArchiveLaunch` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveLaunch` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderArchiveLaunch *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderArchiveLaunch` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderArchiveLaunch` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderArchiveLaunch` object. -/// -+ (DBTEAMTeamFolderArchiveLaunch *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderCreateArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderCreateArg.h deleted file mode 100644 index 35939bb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderCreateArg.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingArg; -@class DBTEAMTeamFolderCreateArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderCreateArg : NSObject - -#pragma mark - Instance fields - -/// Name for the new team folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The sync setting to apply to this team folder. Only permitted if the team -/// has team selective sync enabled. -@property (nonatomic, readonly, nullable) DBFILESSyncSettingArg *syncSetting; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name Name for the new team folder. -/// @param syncSetting The sync setting to apply to this team folder. Only -/// permitted if the team has team selective sync enabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name Name for the new team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderCreateArg` struct. -/// -@interface DBTEAMTeamFolderCreateArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderCreateArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderCreateArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderCreateArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderCreateArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderCreateArg` object. -/// -+ (DBTEAMTeamFolderCreateArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderCreateError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderCreateError.h deleted file mode 100644 index 71880562..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderCreateError.h +++ /dev/null @@ -1,196 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingsError; -@class DBTEAMTeamFolderCreateError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderCreateError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderCreateError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderCreateErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderCreateError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderCreateErrorTag) { - /// The provided name cannot be used. - DBTEAMTeamFolderCreateErrorInvalidFolderName, - - /// There is already a team folder with the provided name. - DBTEAMTeamFolderCreateErrorFolderNameAlreadyUsed, - - /// The provided name cannot be used because it is reserved. - DBTEAMTeamFolderCreateErrorFolderNameReserved, - - /// An error occurred setting the sync settings. - DBTEAMTeamFolderCreateErrorSyncSettingsError, - - /// (no description). - DBTEAMTeamFolderCreateErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderCreateErrorTag tag; - -/// An error occurred setting the sync settings. @note Ensure the -/// `isSyncSettingsError` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSyncSettingsError *syncSettingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_folder_name". -/// -/// Description of the "invalid_folder_name" tag state: The provided name cannot -/// be used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFolderName; - -/// -/// Initializes union class with tag state of "folder_name_already_used". -/// -/// Description of the "folder_name_already_used" tag state: There is already a -/// team folder with the provided name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "folder_name_reserved". -/// -/// Description of the "folder_name_reserved" tag state: The provided name -/// cannot be used because it is reserved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameReserved; - -/// -/// Initializes union class with tag state of "sync_settings_error". -/// -/// Description of the "sync_settings_error" tag state: An error occurred -/// setting the sync settings. -/// -/// @param syncSettingsError An error occurred setting the sync settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSyncSettingsError:(DBFILESSyncSettingsError *)syncSettingsError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_folder_name". -/// -/// @return Whether the union's current tag state has value -/// "invalid_folder_name". -/// -- (BOOL)isInvalidFolderName; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_already_used". -/// -- (BOOL)isFolderNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_reserved". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_reserved". -/// -- (BOOL)isFolderNameReserved; - -/// -/// Retrieves whether the union's current tag state has value -/// "sync_settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `syncSettingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sync_settings_error". -/// -- (BOOL)isSyncSettingsError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderCreateError` union. -/// -@interface DBTEAMTeamFolderCreateErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderCreateError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderCreateError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderCreateError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderCreateError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderCreateError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderCreateError` object. -/// -+ (DBTEAMTeamFolderCreateError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderGetInfoItem.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderGetInfoItem.h deleted file mode 100644 index 9ada3fa2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderGetInfoItem.h +++ /dev/null @@ -1,145 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderGetInfoItem; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderGetInfoItem` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderGetInfoItem : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderGetInfoItemTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderGetInfoItem` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderGetInfoItemTag) { - /// An ID that was provided as a parameter to `teamFolderGetInfo` did not - /// match any of the team's team folders. - DBTEAMTeamFolderGetInfoItemIdNotFound, - - /// Properties of a team folder. - DBTEAMTeamFolderGetInfoItemTeamFolderMetadata, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderGetInfoItemTag tag; - -/// An ID that was provided as a parameter to `teamFolderGetInfo` did not match -/// any of the team's team folders. @note Ensure the `isIdNotFound` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *idNotFound; - -/// Properties of a team folder. @note Ensure the `isTeamFolderMetadata` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderMetadata *teamFolderMetadata; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "id_not_found". -/// -/// Description of the "id_not_found" tag state: An ID that was provided as a -/// parameter to `teamFolderGetInfo` did not match any of the team's team -/// folders. -/// -/// @param idNotFound An ID that was provided as a parameter to -/// `teamFolderGetInfo` did not match any of the team's team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIdNotFound:(NSString *)idNotFound; - -/// -/// Initializes union class with tag state of "team_folder_metadata". -/// -/// Description of the "team_folder_metadata" tag state: Properties of a team -/// folder. -/// -/// @param teamFolderMetadata Properties of a team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderMetadata:(DBTEAMTeamFolderMetadata *)teamFolderMetadata; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "id_not_found". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `idNotFound` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "id_not_found". -/// -- (BOOL)isIdNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_folder_metadata". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamFolderMetadata` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_folder_metadata". -/// -- (BOOL)isTeamFolderMetadata; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderGetInfoItem` union. -/// -@interface DBTEAMTeamFolderGetInfoItemSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderGetInfoItem` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderGetInfoItem` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderGetInfoItem` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderGetInfoItem *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderGetInfoItem` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderGetInfoItem` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderGetInfoItem` object. -/// -+ (DBTEAMTeamFolderGetInfoItem *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderIdArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderIdArg.h deleted file mode 100644 index 88db7bfb..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderIdArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderIdArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderIdArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderIdArg : NSObject - -#pragma mark - Instance fields - -/// The ID of the team folder. -@property (nonatomic, readonly, copy) NSString *teamFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderIdArg` struct. -/// -@interface DBTEAMTeamFolderIdArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderIdArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderIdArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderIdArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderIdArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderIdArg` object. -/// -+ (DBTEAMTeamFolderIdArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderIdListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderIdListArg.h deleted file mode 100644 index f5b35dd2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderIdListArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderIdListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderIdListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderIdListArg : NSObject - -#pragma mark - Instance fields - -/// The list of team folder IDs. -@property (nonatomic, readonly) NSArray *teamFolderIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderIds The list of team folder IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderIds:(NSArray *)teamFolderIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderIdListArg` struct. -/// -@interface DBTEAMTeamFolderIdListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderIdListArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderIdListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderIdListArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderIdListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderIdListArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderIdListArg` object. -/// -+ (DBTEAMTeamFolderIdListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderInvalidStatusError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderInvalidStatusError.h deleted file mode 100644 index c90c0f38..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderInvalidStatusError.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderInvalidStatusError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderInvalidStatusError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderInvalidStatusError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderInvalidStatusErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderInvalidStatusError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderInvalidStatusErrorTag) { - /// The folder is active and the operation did not succeed. - DBTEAMTeamFolderInvalidStatusErrorActive, - - /// The folder is archived and the operation did not succeed. - DBTEAMTeamFolderInvalidStatusErrorArchived, - - /// The folder is being archived and the operation did not succeed. - DBTEAMTeamFolderInvalidStatusErrorArchiveInProgress, - - /// (no description). - DBTEAMTeamFolderInvalidStatusErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: The folder is active and the -/// operation did not succeed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "archived". -/// -/// Description of the "archived" tag state: The folder is archived and the -/// operation did not succeed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchived; - -/// -/// Initializes union class with tag state of "archive_in_progress". -/// -/// Description of the "archive_in_progress" tag state: The folder is being -/// archived and the operation did not succeed. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchiveInProgress; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "archived". -/// -/// @return Whether the union's current tag state has value "archived". -/// -- (BOOL)isArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "archive_in_progress". -/// -/// @return Whether the union's current tag state has value -/// "archive_in_progress". -/// -- (BOOL)isArchiveInProgress; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderInvalidStatusError` union. -/// -@interface DBTEAMTeamFolderInvalidStatusErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderInvalidStatusError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderInvalidStatusError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderInvalidStatusError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderInvalidStatusError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderInvalidStatusError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderInvalidStatusError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderInvalidStatusError` object. -/// -+ (DBTEAMTeamFolderInvalidStatusError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListArg.h deleted file mode 100644 index c03b16f2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListArg : NSObject - -#pragma mark - Instance fields - -/// The maximum number of results to return per request. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit The maximum number of results to return per request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListArg` struct. -/// -@interface DBTEAMTeamFolderListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListArg` object. -/// -+ (DBTEAMTeamFolderListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListContinueArg.h deleted file mode 100644 index 95650314..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListContinueArg.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of team folders. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of team folders. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListContinueArg` struct. -/// -@interface DBTEAMTeamFolderListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListContinueArg` object. -/// -+ (DBTEAMTeamFolderListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListContinueError.h deleted file mode 100644 index 350e063a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListContinueError.h +++ /dev/null @@ -1,118 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderListContinueErrorTag` enum type represents the possible -/// tag states with which the `DBTEAMTeamFolderListContinueError` union can -/// exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderListContinueErrorTag) { - /// The cursor is invalid. - DBTEAMTeamFolderListContinueErrorInvalidCursor, - - /// (no description). - DBTEAMTeamFolderListContinueErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderListContinueError` union. -/// -@interface DBTEAMTeamFolderListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListContinueError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListContinueError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListContinueError` object. -/// -+ (DBTEAMTeamFolderListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListError.h deleted file mode 100644 index 6f868917..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListError.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListError` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListError : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListError` struct. -/// -@interface DBTEAMTeamFolderListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListError` object. -/// -+ (DBTEAMTeamFolderListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListResult.h deleted file mode 100644 index 9cda7ff5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderListResult.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderListResult; -@class DBTEAMTeamFolderMetadata; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderListResult` struct. -/// -/// Result for `teamFolderList` and `teamFolderListContinue`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderListResult : NSObject - -#pragma mark - Instance fields - -/// List of all team folders in the authenticated team. -@property (nonatomic, readonly) NSArray *teamFolders; - -/// Pass the cursor into `teamFolderListContinue` to obtain additional team -/// folders. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional team folders that have not been returned -/// yet. An additional call to `teamFolderListContinue` can retrieve them. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolders List of all team folders in the authenticated team. -/// @param cursor Pass the cursor into `teamFolderListContinue` to obtain -/// additional team folders. -/// @param hasMore Is true if there are additional team folders that have not -/// been returned yet. An additional call to `teamFolderListContinue` can -/// retrieve them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolders:(NSArray *)teamFolders - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderListResult` struct. -/// -@interface DBTEAMTeamFolderListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderListResult` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderListResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderListResult *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderListResult` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderListResult` object. -/// -+ (DBTEAMTeamFolderListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderMetadata.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderMetadata.h deleted file mode 100644 index 4b7fca13..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderMetadata.h +++ /dev/null @@ -1,106 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESContentSyncSetting; -@class DBFILESSyncSetting; -@class DBTEAMTeamFolderMetadata; -@class DBTEAMTeamFolderStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderMetadata` struct. -/// -/// Properties of a team folder. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderMetadata : NSObject - -#pragma mark - Instance fields - -/// The ID of the team folder. -@property (nonatomic, readonly, copy) NSString *teamFolderId; - -/// The name of the team folder. -@property (nonatomic, readonly, copy) NSString *name; - -/// The status of the team folder. -@property (nonatomic, readonly) DBTEAMTeamFolderStatus *status; - -/// True if this team folder is a shared team root. -@property (nonatomic, readonly) NSNumber *isTeamSharedDropbox; - -/// The sync setting applied to this team folder. -@property (nonatomic, readonly) DBFILESSyncSetting *syncSetting; - -/// Sync settings applied to contents of this team folder. -@property (nonatomic, readonly) NSArray *contentSyncSettings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param name The name of the team folder. -/// @param status The status of the team folder. -/// @param isTeamSharedDropbox True if this team folder is a shared team root. -/// @param syncSetting The sync setting applied to this team folder. -/// @param contentSyncSettings Sync settings applied to contents of this team -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId - name:(NSString *)name - status:(DBTEAMTeamFolderStatus *)status - isTeamSharedDropbox:(NSNumber *)isTeamSharedDropbox - syncSetting:(DBFILESSyncSetting *)syncSetting - contentSyncSettings:(NSArray *)contentSyncSettings; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderMetadata` struct. -/// -@interface DBTEAMTeamFolderMetadataSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderMetadata` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderMetadata` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderMetadata` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderMetadata *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderMetadata` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderMetadata` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderMetadata` object. -/// -+ (DBTEAMTeamFolderMetadata *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderPermanentlyDeleteError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderPermanentlyDeleteError.h deleted file mode 100644 index 6df60fce..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderPermanentlyDeleteError.h +++ /dev/null @@ -1,185 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderPermanentlyDeleteError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderPermanentlyDeleteError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderPermanentlyDeleteError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderPermanentlyDeleteErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderPermanentlyDeleteError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderPermanentlyDeleteErrorTag) { - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorAccessError, - - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorStatusError, - - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderPermanentlyDeleteErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderPermanentlyDeleteErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderPermanentlyDeleteError` -/// union. -/// -@interface DBTEAMTeamFolderPermanentlyDeleteErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderPermanentlyDeleteError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderPermanentlyDeleteError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderPermanentlyDeleteError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderPermanentlyDeleteError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderPermanentlyDeleteError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderPermanentlyDeleteError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderPermanentlyDeleteError` -/// object. -/// -+ (DBTEAMTeamFolderPermanentlyDeleteError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderRenameArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderRenameArg.h deleted file mode 100644 index 6a782a31..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderRenameArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMTeamFolderIdArg.h" - -@class DBTEAMTeamFolderRenameArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderRenameArg : DBTEAMTeamFolderIdArg - -#pragma mark - Instance fields - -/// New team folder name. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param name New team folder name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId name:(NSString *)name; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderRenameArg` struct. -/// -@interface DBTEAMTeamFolderRenameArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderRenameArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderRenameArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderRenameArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderRenameArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderRenameArg` object. -/// -+ (DBTEAMTeamFolderRenameArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderRenameError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderRenameError.h deleted file mode 100644 index 109ce09f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderRenameError.h +++ /dev/null @@ -1,247 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderRenameError; -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderRenameError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderRenameError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderRenameErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamFolderRenameError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderRenameErrorTag) { - /// (no description). - DBTEAMTeamFolderRenameErrorAccessError, - - /// (no description). - DBTEAMTeamFolderRenameErrorStatusError, - - /// (no description). - DBTEAMTeamFolderRenameErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderRenameErrorOther, - - /// The provided folder name cannot be used. - DBTEAMTeamFolderRenameErrorInvalidFolderName, - - /// There is already a team folder with the same name. - DBTEAMTeamFolderRenameErrorFolderNameAlreadyUsed, - - /// The provided name cannot be used because it is reserved. - DBTEAMTeamFolderRenameErrorFolderNameReserved, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderRenameErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_folder_name". -/// -/// Description of the "invalid_folder_name" tag state: The provided folder name -/// cannot be used. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidFolderName; - -/// -/// Initializes union class with tag state of "folder_name_already_used". -/// -/// Description of the "folder_name_already_used" tag state: There is already a -/// team folder with the same name. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameAlreadyUsed; - -/// -/// Initializes union class with tag state of "folder_name_reserved". -/// -/// Description of the "folder_name_reserved" tag state: The provided name -/// cannot be used because it is reserved. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFolderNameReserved; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "invalid_folder_name". -/// -/// @return Whether the union's current tag state has value -/// "invalid_folder_name". -/// -- (BOOL)isInvalidFolderName; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_already_used". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_already_used". -/// -- (BOOL)isFolderNameAlreadyUsed; - -/// -/// Retrieves whether the union's current tag state has value -/// "folder_name_reserved". -/// -/// @return Whether the union's current tag state has value -/// "folder_name_reserved". -/// -- (BOOL)isFolderNameReserved; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderRenameError` union. -/// -@interface DBTEAMTeamFolderRenameErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderRenameError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderRenameError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderRenameError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderRenameError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderRenameError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderRenameError` object. -/// -+ (DBTEAMTeamFolderRenameError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderStatus.h deleted file mode 100644 index afac7f43..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderStatus.h +++ /dev/null @@ -1,159 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderStatus` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMTeamFolderStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderStatusTag) { - /// The team folder and sub-folders are available to all members. - DBTEAMTeamFolderStatusActive, - - /// The team folder is not accessible outside of the team folder manager. - DBTEAMTeamFolderStatusArchived, - - /// The team folder is not accessible outside of the team folder manager. - DBTEAMTeamFolderStatusArchiveInProgress, - - /// (no description). - DBTEAMTeamFolderStatusOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderStatusTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: The team folder and sub-folders are -/// available to all members. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "archived". -/// -/// Description of the "archived" tag state: The team folder is not accessible -/// outside of the team folder manager. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchived; - -/// -/// Initializes union class with tag state of "archive_in_progress". -/// -/// Description of the "archive_in_progress" tag state: The team folder is not -/// accessible outside of the team folder manager. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithArchiveInProgress; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "archived". -/// -/// @return Whether the union's current tag state has value "archived". -/// -- (BOOL)isArchived; - -/// -/// Retrieves whether the union's current tag state has value -/// "archive_in_progress". -/// -/// @return Whether the union's current tag state has value -/// "archive_in_progress". -/// -- (BOOL)isArchiveInProgress; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderStatus` union. -/// -@interface DBTEAMTeamFolderStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderStatus` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderStatus *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderStatus` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderStatus` object. -/// -+ (DBTEAMTeamFolderStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderTeamSharedDropboxError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderTeamSharedDropboxError.h deleted file mode 100644 index c085669b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderTeamSharedDropboxError.h +++ /dev/null @@ -1,121 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamFolderTeamSharedDropboxError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderTeamSharedDropboxError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderTeamSharedDropboxError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderTeamSharedDropboxErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderTeamSharedDropboxError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderTeamSharedDropboxErrorTag) { - /// This action is not allowed for a shared team root. - DBTEAMTeamFolderTeamSharedDropboxErrorDisallowed, - - /// (no description). - DBTEAMTeamFolderTeamSharedDropboxErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "disallowed". -/// -/// Description of the "disallowed" tag state: This action is not allowed for a -/// shared team root. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithDisallowed; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "disallowed". -/// -/// @return Whether the union's current tag state has value "disallowed". -/// -- (BOOL)isDisallowed; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderTeamSharedDropboxError` -/// union. -/// -@interface DBTEAMTeamFolderTeamSharedDropboxErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderTeamSharedDropboxError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderTeamSharedDropboxError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderTeamSharedDropboxError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderTeamSharedDropboxError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderTeamSharedDropboxError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderTeamSharedDropboxError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderTeamSharedDropboxError` -/// object. -/// -+ (DBTEAMTeamFolderTeamSharedDropboxError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderUpdateSyncSettingsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderUpdateSyncSettingsArg.h deleted file mode 100644 index 78ec6cd4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderUpdateSyncSettingsArg.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMTeamFolderIdArg.h" - -@class DBFILESContentSyncSettingArg; -@class DBFILESSyncSettingArg; -@class DBTEAMTeamFolderUpdateSyncSettingsArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderUpdateSyncSettingsArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsArg : DBTEAMTeamFolderIdArg - -#pragma mark - Instance fields - -/// Sync setting to apply to the team folder itself. Only meaningful if the team -/// folder is not a shared team root. -@property (nonatomic, readonly, nullable) DBFILESSyncSettingArg *syncSetting; - -/// Sync settings to apply to contents of this team folder. -@property (nonatomic, readonly, nullable) NSArray *contentSyncSettings; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamFolderId The ID of the team folder. -/// @param syncSetting Sync setting to apply to the team folder itself. Only -/// meaningful if the team folder is not a shared team root. -/// @param contentSyncSettings Sync settings to apply to contents of this team -/// folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId - syncSetting:(nullable DBFILESSyncSettingArg *)syncSetting - contentSyncSettings:(nullable NSArray *)contentSyncSettings; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamFolderId The ID of the team folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamFolderId:(NSString *)teamFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamFolderUpdateSyncSettingsArg` struct. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderUpdateSyncSettingsArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderUpdateSyncSettingsArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderUpdateSyncSettingsArg *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderUpdateSyncSettingsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderUpdateSyncSettingsArg` -/// object. -/// -+ (DBTEAMTeamFolderUpdateSyncSettingsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderUpdateSyncSettingsError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderUpdateSyncSettingsError.h deleted file mode 100644 index 15b52610..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamFolderUpdateSyncSettingsError.h +++ /dev/null @@ -1,218 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBFILESSyncSettingsError; -@class DBTEAMTeamFolderAccessError; -@class DBTEAMTeamFolderInvalidStatusError; -@class DBTEAMTeamFolderTeamSharedDropboxError; -@class DBTEAMTeamFolderUpdateSyncSettingsError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamFolderUpdateSyncSettingsError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamFolderUpdateSyncSettingsErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamFolderUpdateSyncSettingsErrorTag) { - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorAccessError, - - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorStatusError, - - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorTeamSharedDropboxError, - - /// (no description). - DBTEAMTeamFolderUpdateSyncSettingsErrorOther, - - /// An error occurred setting the sync settings. - DBTEAMTeamFolderUpdateSyncSettingsErrorSyncSettingsError, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamFolderUpdateSyncSettingsErrorTag tag; - -/// (no description). @note Ensure the `isAccessError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderAccessError *accessError; - -/// (no description). @note Ensure the `isStatusError` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderInvalidStatusError *statusError; - -/// (no description). @note Ensure the `isTeamSharedDropboxError` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMTeamFolderTeamSharedDropboxError *teamSharedDropboxError; - -/// An error occurred setting the sync settings. @note Ensure the -/// `isSyncSettingsError` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBFILESSyncSettingsError *syncSettingsError; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "access_error". -/// -/// @param accessError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessError:(DBTEAMTeamFolderAccessError *)accessError; - -/// -/// Initializes union class with tag state of "status_error". -/// -/// @param statusError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithStatusError:(DBTEAMTeamFolderInvalidStatusError *)statusError; - -/// -/// Initializes union class with tag state of "team_shared_dropbox_error". -/// -/// @param teamSharedDropboxError (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamSharedDropboxError:(DBTEAMTeamFolderTeamSharedDropboxError *)teamSharedDropboxError; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "sync_settings_error". -/// -/// Description of the "sync_settings_error" tag state: An error occurred -/// setting the sync settings. -/// -/// @param syncSettingsError An error occurred setting the sync settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSyncSettingsError:(DBFILESSyncSettingsError *)syncSettingsError; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "access_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `accessError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "access_error". -/// -- (BOOL)isAccessError; - -/// -/// Retrieves whether the union's current tag state has value "status_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `statusError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "status_error". -/// -- (BOOL)isStatusError; - -/// -/// Retrieves whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamSharedDropboxError` property, otherwise a runtime exception will be -/// thrown. -/// -/// @return Whether the union's current tag state has value -/// "team_shared_dropbox_error". -/// -- (BOOL)isTeamSharedDropboxError; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value -/// "sync_settings_error". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `syncSettingsError` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value -/// "sync_settings_error". -/// -- (BOOL)isSyncSettingsError; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// union. -/// -@interface DBTEAMTeamFolderUpdateSyncSettingsErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamFolderUpdateSyncSettingsError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamFolderUpdateSyncSettingsError *)instance; - -/// -/// Deserializes `DBTEAMTeamFolderUpdateSyncSettingsError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamFolderUpdateSyncSettingsError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamFolderUpdateSyncSettingsError` -/// object. -/// -+ (DBTEAMTeamFolderUpdateSyncSettingsError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamGetInfoResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamGetInfoResult.h deleted file mode 100644 index 6416ae5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamGetInfoResult.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMPOLICIESTeamMemberPolicies; -@class DBTEAMTeamGetInfoResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamGetInfoResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamGetInfoResult : NSObject - -#pragma mark - Instance fields - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *name; - -/// The ID of the team. -@property (nonatomic, readonly, copy) NSString *teamId; - -/// The number of licenses available to the team. -@property (nonatomic, readonly) NSNumber *numLicensedUsers; - -/// The number of accounts that have been invited or are already active members -/// of the team. -@property (nonatomic, readonly) NSNumber *numProvisionedUsers; - -/// The number of licenses used on the team. -@property (nonatomic, readonly) NSNumber *numUsedLicenses; - -/// (no description). -@property (nonatomic, readonly) DBTEAMPOLICIESTeamMemberPolicies *policies; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param name The name of the team. -/// @param teamId The ID of the team. -/// @param numLicensedUsers The number of licenses available to the team. -/// @param numProvisionedUsers The number of accounts that have been invited or -/// are already active members of the team. -/// @param policies (no description). -/// @param numUsedLicenses The number of licenses used on the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - teamId:(NSString *)teamId - numLicensedUsers:(NSNumber *)numLicensedUsers - numProvisionedUsers:(NSNumber *)numProvisionedUsers - policies:(DBTEAMPOLICIESTeamMemberPolicies *)policies - numUsedLicenses:(nullable NSNumber *)numUsedLicenses; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param name The name of the team. -/// @param teamId The ID of the team. -/// @param numLicensedUsers The number of licenses available to the team. -/// @param numProvisionedUsers The number of accounts that have been invited or -/// are already active members of the team. -/// @param policies (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithName:(NSString *)name - teamId:(NSString *)teamId - numLicensedUsers:(NSNumber *)numLicensedUsers - numProvisionedUsers:(NSNumber *)numProvisionedUsers - policies:(DBTEAMPOLICIESTeamMemberPolicies *)policies; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamGetInfoResult` struct. -/// -@interface DBTEAMTeamGetInfoResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamGetInfoResult` instances. -/// -/// @param instance An instance of the `DBTEAMTeamGetInfoResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamGetInfoResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamGetInfoResult *)instance; - -/// -/// Deserializes `DBTEAMTeamGetInfoResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamGetInfoResult` API object. -/// -/// @return An instantiation of the `DBTEAMTeamGetInfoResult` object. -/// -+ (DBTEAMTeamGetInfoResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfo.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfo.h deleted file mode 100644 index d6554d05..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfo.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAdminTier; -@class DBTEAMTeamMemberInfo; -@class DBTEAMTeamMemberProfile; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfo` struct. -/// -/// Information about a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberInfo : NSObject - -#pragma mark - Instance fields - -/// Profile of a user as a member of a team. -@property (nonatomic, readonly) DBTEAMTeamMemberProfile *profile; - -/// The user's role in the team. -@property (nonatomic, readonly) DBTEAMAdminTier *role; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profile Profile of a user as a member of a team. -/// @param role The user's role in the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMTeamMemberProfile *)profile role:(DBTEAMAdminTier *)role; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfo` struct. -/// -@interface DBTEAMTeamMemberInfoSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberInfo` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberInfo` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfo` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberInfo *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberInfo` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfo` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberInfo` object. -/// -+ (DBTEAMTeamMemberInfo *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfoV2.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfoV2.h deleted file mode 100644 index ae202b5a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfoV2.h +++ /dev/null @@ -1,94 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberInfoV2; -@class DBTEAMTeamMemberProfile; -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfoV2` struct. -/// -/// Information about a team member. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberInfoV2 : NSObject - -#pragma mark - Instance fields - -/// Profile of a user as a member of a team. -@property (nonatomic, readonly) DBTEAMTeamMemberProfile *profile; - -/// The user's roles in the team. -@property (nonatomic, readonly, nullable) NSArray *roles; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param profile Profile of a user as a member of a team. -/// @param roles The user's roles in the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMTeamMemberProfile *)profile - roles:(nullable NSArray *)roles; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param profile Profile of a user as a member of a team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithProfile:(DBTEAMTeamMemberProfile *)profile; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfoV2` struct. -/// -@interface DBTEAMTeamMemberInfoV2Serializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberInfoV2` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberInfoV2` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberInfoV2 *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberInfoV2` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberInfoV2` object. -/// -+ (DBTEAMTeamMemberInfoV2 *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfoV2Result.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfoV2Result.h deleted file mode 100644 index bfebce29..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberInfoV2Result.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberInfoV2; -@class DBTEAMTeamMemberInfoV2Result; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberInfoV2Result` struct. -/// -/// Information about a team member, after the change, like at -/// `membersSetProfile`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberInfoV2Result : NSObject - -#pragma mark - Instance fields - -/// Member info, after the change. -@property (nonatomic, readonly) DBTEAMTeamMemberInfoV2 *memberInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param memberInfo Member info, after the change. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMemberInfo:(DBTEAMTeamMemberInfoV2 *)memberInfo; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberInfoV2Result` struct. -/// -@interface DBTEAMTeamMemberInfoV2ResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberInfoV2Result` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberInfoV2Result` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2Result` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberInfoV2Result *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberInfoV2Result` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberInfoV2Result` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberInfoV2Result` object. -/// -+ (DBTEAMTeamMemberInfoV2Result *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberProfile.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberProfile.h deleted file mode 100644 index e522804a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberProfile.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBTEAMMemberProfile.h" - -@class DBSECONDARYEMAILSSecondaryEmail; -@class DBTEAMTeamMemberProfile; -@class DBTEAMTeamMemberStatus; -@class DBTEAMTeamMembershipType; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberProfile` struct. -/// -/// Profile of a user as a member of a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberProfile : DBTEAMMemberProfile - -#pragma mark - Instance fields - -/// List of group IDs of groups that the user belongs to. -@property (nonatomic, readonly) NSArray *groups; - -/// The namespace id of the user's root folder. -@property (nonatomic, readonly, copy) NSString *memberFolderId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// @param groups List of group IDs of groups that the user belongs to. -/// @param memberFolderId The namespace id of the user's root folder. -/// @param externalId External ID that a team can attach to the user. An -/// application using the API may find it easier to use their own IDs instead of -/// Dropbox IDs like account_id or team_member_id. -/// @param accountId A user's account identifier. -/// @param secondaryEmails Secondary emails of a user. -/// @param invitedOn The date and time the user was invited to the team -/// (contains value only when the member's status matches `invited` in -/// `DBTEAMTeamMemberStatus`). -/// @param joinedOn The date and time the user joined as a member of a specific -/// team. -/// @param suspendedOn The date and time the user was suspended from the team -/// (contains value only when the member's status matches `suspended` in -/// `DBTEAMTeamMemberStatus`). -/// @param persistentId Persistent ID that a team can attach to the user. The -/// persistent ID is unique ID to be used for SAML authentication. -/// @param isDirectoryRestricted Whether the user is a directory restricted -/// user. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType - groups:(NSArray *)groups - memberFolderId:(NSString *)memberFolderId - externalId:(nullable NSString *)externalId - accountId:(nullable NSString *)accountId - secondaryEmails:(nullable NSArray *)secondaryEmails - invitedOn:(nullable NSDate *)invitedOn - joinedOn:(nullable NSDate *)joinedOn - suspendedOn:(nullable NSDate *)suspendedOn - persistentId:(nullable NSString *)persistentId - isDirectoryRestricted:(nullable NSNumber *)isDirectoryRestricted - profilePhotoUrl:(nullable NSString *)profilePhotoUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param teamMemberId ID of user as a member of a team. -/// @param email Email address of user. -/// @param emailVerified Is true if the user's email is verified to be owned by -/// the user. -/// @param status The user's status as a member of a specific team. -/// @param name Representations for a person's name. -/// @param membershipType The user's membership type: full (normal team member) -/// vs limited (does not use a license; no access to the team's shared quota). -/// @param groups List of group IDs of groups that the user belongs to. -/// @param memberFolderId The namespace id of the user's root folder. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - status:(DBTEAMTeamMemberStatus *)status - name:(DBUSERSName *)name - membershipType:(DBTEAMTeamMembershipType *)membershipType - groups:(NSArray *)groups - memberFolderId:(NSString *)memberFolderId; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberProfile` struct. -/// -@interface DBTEAMTeamMemberProfileSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberProfile` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberProfile` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberProfile` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberProfile *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberProfile` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberProfile` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberProfile` object. -/// -+ (DBTEAMTeamMemberProfile *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberRole.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberRole.h deleted file mode 100644 index 54e4e295..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberRole.h +++ /dev/null @@ -1,89 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberRole; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberRole` struct. -/// -/// A role which can be attached to a team member. This replaces AdminTier; each -/// AdminTier corresponds to a new TeamMemberRole with a matching name. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberRole : NSObject - -#pragma mark - Instance fields - -/// A string containing encoded role ID. For roles defined by Dropbox, this is -/// the same across all teams. -@property (nonatomic, readonly, copy) NSString *roleId; - -/// The role display name. -@property (nonatomic, readonly, copy) NSString *name; - -/// Role description. Describes which permissions come with this role. -@property (nonatomic, readonly, copy) NSString *description_; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param roleId A string containing encoded role ID. For roles defined by -/// Dropbox, this is the same across all teams. -/// @param name The role display name. -/// @param description_ Role description. Describes which permissions come with -/// this role. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRoleId:(NSString *)roleId name:(NSString *)name description_:(NSString *)description_; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamMemberRole` struct. -/// -@interface DBTEAMTeamMemberRoleSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberRole` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberRole` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberRole` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberRole *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberRole` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberRole` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberRole` object. -/// -+ (DBTEAMTeamMemberRole *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberStatus.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberStatus.h deleted file mode 100644 index da02ac8e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMemberStatus.h +++ /dev/null @@ -1,178 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMRemovedStatus; -@class DBTEAMTeamMemberStatus; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMemberStatus` union. -/// -/// The user's status as a member of a specific team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMemberStatus : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamMemberStatusTag` enum type represents the possible tag states -/// with which the `DBTEAMTeamMemberStatus` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamMemberStatusTag) { - /// User has successfully joined the team. - DBTEAMTeamMemberStatusActive, - - /// User has been invited to a team, but has not joined the team yet. - DBTEAMTeamMemberStatusInvited, - - /// User is no longer a member of the team, but the account can be - /// un-suspended, re-establishing the user as a team member. - DBTEAMTeamMemberStatusSuspended, - - /// User is no longer a member of the team. Removed users are only listed - /// when include_removed is true in members/list. - DBTEAMTeamMemberStatusRemoved, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamMemberStatusTag tag; - -/// User is no longer a member of the team. Removed users are only listed when -/// include_removed is true in members/list. @note Ensure the `isRemoved` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMRemovedStatus *removed; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "active". -/// -/// Description of the "active" tag state: User has successfully joined the -/// team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithActive; - -/// -/// Initializes union class with tag state of "invited". -/// -/// Description of the "invited" tag state: User has been invited to a team, but -/// has not joined the team yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvited; - -/// -/// Initializes union class with tag state of "suspended". -/// -/// Description of the "suspended" tag state: User is no longer a member of the -/// team, but the account can be un-suspended, re-establishing the user as a -/// team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuspended; - -/// -/// Initializes union class with tag state of "removed". -/// -/// Description of the "removed" tag state: User is no longer a member of the -/// team. Removed users are only listed when include_removed is true in -/// members/list. -/// -/// @param removed User is no longer a member of the team. Removed users are -/// only listed when include_removed is true in members/list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithRemoved:(DBTEAMRemovedStatus *)removed; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "active". -/// -/// @return Whether the union's current tag state has value "active". -/// -- (BOOL)isActive; - -/// -/// Retrieves whether the union's current tag state has value "invited". -/// -/// @return Whether the union's current tag state has value "invited". -/// -- (BOOL)isInvited; - -/// -/// Retrieves whether the union's current tag state has value "suspended". -/// -/// @return Whether the union's current tag state has value "suspended". -/// -- (BOOL)isSuspended; - -/// -/// Retrieves whether the union's current tag state has value "removed". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `removed` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "removed". -/// -- (BOOL)isRemoved; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamMemberStatus` union. -/// -@interface DBTEAMTeamMemberStatusSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMemberStatus` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMemberStatus` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberStatus` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMemberStatus *)instance; - -/// -/// Deserializes `DBTEAMTeamMemberStatus` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMemberStatus` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMemberStatus` object. -/// -+ (DBTEAMTeamMemberStatus *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMembershipType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMembershipType.h deleted file mode 100644 index 61637001..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamMembershipType.h +++ /dev/null @@ -1,122 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMembershipType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamMembershipType` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamMembershipType : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamMembershipTypeTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamMembershipType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamMembershipTypeTag) { - /// User uses a license and has full access to team resources like the - /// shared quota. - DBTEAMTeamMembershipTypeFull, - - /// User does not have access to the shared quota and team admins have - /// restricted administrative control. - DBTEAMTeamMembershipTypeLimited, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamMembershipTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "full". -/// -/// Description of the "full" tag state: User uses a license and has full access -/// to team resources like the shared quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFull; - -/// -/// Initializes union class with tag state of "limited". -/// -/// Description of the "limited" tag state: User does not have access to the -/// shared quota and team admins have restricted administrative control. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimited; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "full". -/// -/// @return Whether the union's current tag state has value "full". -/// -- (BOOL)isFull; - -/// -/// Retrieves whether the union's current tag state has value "limited". -/// -/// @return Whether the union's current tag state has value "limited". -/// -- (BOOL)isLimited; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamMembershipType` union. -/// -@interface DBTEAMTeamMembershipTypeSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamMembershipType` instances. -/// -/// @param instance An instance of the `DBTEAMTeamMembershipType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamMembershipType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamMembershipType *)instance; - -/// -/// Deserializes `DBTEAMTeamMembershipType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamMembershipType` API object. -/// -/// @return An instantiation of the `DBTEAMTeamMembershipType` object. -/// -+ (DBTEAMTeamMembershipType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListArg.h deleted file mode 100644 index c97e64c2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListArg.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListArg : NSObject - -#pragma mark - Instance fields - -/// Specifying a value here has no effect. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param limit Specifying a value here has no effect. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(nullable NSNumber *)limit; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// -/// @return An initialized instance. -/// -- (instancetype)initDefault; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamNamespacesListArg` struct. -/// -@interface DBTEAMTeamNamespacesListArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListArg *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListArg` object. -/// -+ (DBTEAMTeamNamespacesListArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListContinueArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListContinueArg.h deleted file mode 100644 index c983650c..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListContinueArg.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListContinueArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListContinueArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListContinueArg : NSObject - -#pragma mark - Instance fields - -/// Indicates from what point to get the next set of team-accessible namespaces. -@property (nonatomic, readonly, copy) NSString *cursor; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param cursor Indicates from what point to get the next set of -/// team-accessible namespaces. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithCursor:(NSString *)cursor; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamNamespacesListContinueArg` struct. -/// -@interface DBTEAMTeamNamespacesListContinueArgSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListContinueArg` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListContinueArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListContinueArg *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListContinueArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueArg` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListContinueArg` -/// object. -/// -+ (DBTEAMTeamNamespacesListContinueArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListContinueError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListContinueError.h deleted file mode 100644 index c5abf6e3..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListContinueError.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListContinueError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListContinueError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListContinueError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamNamespacesListContinueErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTeamNamespacesListContinueError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamNamespacesListContinueErrorTag) { - /// Argument passed in is invalid. - DBTEAMTeamNamespacesListContinueErrorInvalidArg, - - /// (no description). - DBTEAMTeamNamespacesListContinueErrorOther, - - /// The cursor is invalid. - DBTEAMTeamNamespacesListContinueErrorInvalidCursor, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamNamespacesListContinueErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_arg". -/// -/// Description of the "invalid_arg" tag state: Argument passed in is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidArg; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -/// -/// Initializes union class with tag state of "invalid_cursor". -/// -/// Description of the "invalid_cursor" tag state: The cursor is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidCursor; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_arg". -/// -/// @return Whether the union's current tag state has value "invalid_arg". -/// -- (BOOL)isInvalidArg; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves whether the union's current tag state has value "invalid_cursor". -/// -/// @return Whether the union's current tag state has value "invalid_cursor". -/// -- (BOOL)isInvalidCursor; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamNamespacesListContinueError` -/// union. -/// -@interface DBTEAMTeamNamespacesListContinueErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListContinueError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListContinueError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListContinueError *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListContinueError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListContinueError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListContinueError` -/// object. -/// -+ (DBTEAMTeamNamespacesListContinueError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListError.h deleted file mode 100644 index bf9edac0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamNamespacesListError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamNamespacesListErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamNamespacesListError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamNamespacesListErrorTag) { - /// Argument passed in is invalid. - DBTEAMTeamNamespacesListErrorInvalidArg, - - /// (no description). - DBTEAMTeamNamespacesListErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamNamespacesListErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "invalid_arg". -/// -/// Description of the "invalid_arg" tag state: Argument passed in is invalid. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidArg; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "invalid_arg". -/// -/// @return Whether the union's current tag state has value "invalid_arg". -/// -- (BOOL)isInvalidArg; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamNamespacesListError` union. -/// -@interface DBTEAMTeamNamespacesListErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListError` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListError` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListError *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListError` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListError` object. -/// -+ (DBTEAMTeamNamespacesListError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListResult.h deleted file mode 100644 index c1003e99..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamNamespacesListResult.h +++ /dev/null @@ -1,92 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMNamespaceMetadata; -@class DBTEAMTeamNamespacesListResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamNamespacesListResult` struct. -/// -/// Result for `namespacesList`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamNamespacesListResult : NSObject - -#pragma mark - Instance fields - -/// List of all namespaces the team can access. -@property (nonatomic, readonly) NSArray *namespaces; - -/// Pass the cursor into `namespacesListContinue` to obtain additional -/// namespaces. Note that duplicate namespaces may be returned. -@property (nonatomic, readonly, copy) NSString *cursor; - -/// Is true if there are additional namespaces that have not been returned yet. -@property (nonatomic, readonly) NSNumber *hasMore; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param namespaces List of all namespaces the team can access. -/// @param cursor Pass the cursor into `namespacesListContinue` to obtain -/// additional namespaces. Note that duplicate namespaces may be returned. -/// @param hasMore Is true if there are additional namespaces that have not been -/// returned yet. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNamespaces:(NSArray *)namespaces - cursor:(NSString *)cursor - hasMore:(NSNumber *)hasMore; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamNamespacesListResult` struct. -/// -@interface DBTEAMTeamNamespacesListResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamNamespacesListResult` instances. -/// -/// @param instance An instance of the `DBTEAMTeamNamespacesListResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamNamespacesListResult *)instance; - -/// -/// Deserializes `DBTEAMTeamNamespacesListResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamNamespacesListResult` API object. -/// -/// @return An instantiation of the `DBTEAMTeamNamespacesListResult` object. -/// -+ (DBTEAMTeamNamespacesListResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamReportFailureReason.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamReportFailureReason.h deleted file mode 100644 index d3dc6136..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTeamReportFailureReason.h +++ /dev/null @@ -1,165 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamReportFailureReason; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamReportFailureReason` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTeamReportFailureReason : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTeamReportFailureReasonTag` enum type represents the possible tag -/// states with which the `DBTEAMTeamReportFailureReason` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTeamReportFailureReasonTag) { - /// We couldn't create the report, but we think this was a fluke. Everything - /// should work if you try it again. - DBTEAMTeamReportFailureReasonTemporaryError, - - /// Too many other reports are being created right now. Try creating this - /// report again once the others finish. - DBTEAMTeamReportFailureReasonManyReportsAtOnce, - - /// We couldn't create the report. Try creating the report again with less - /// data. - DBTEAMTeamReportFailureReasonTooMuchData, - - /// (no description). - DBTEAMTeamReportFailureReasonOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTeamReportFailureReasonTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "temporary_error". -/// -/// Description of the "temporary_error" tag state: We couldn't create the -/// report, but we think this was a fluke. Everything should work if you try it -/// again. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTemporaryError; - -/// -/// Initializes union class with tag state of "many_reports_at_once". -/// -/// Description of the "many_reports_at_once" tag state: Too many other reports -/// are being created right now. Try creating this report again once the others -/// finish. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithManyReportsAtOnce; - -/// -/// Initializes union class with tag state of "too_much_data". -/// -/// Description of the "too_much_data" tag state: We couldn't create the report. -/// Try creating the report again with less data. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTooMuchData; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "temporary_error". -/// -/// @return Whether the union's current tag state has value "temporary_error". -/// -- (BOOL)isTemporaryError; - -/// -/// Retrieves whether the union's current tag state has value -/// "many_reports_at_once". -/// -/// @return Whether the union's current tag state has value -/// "many_reports_at_once". -/// -- (BOOL)isManyReportsAtOnce; - -/// -/// Retrieves whether the union's current tag state has value "too_much_data". -/// -/// @return Whether the union's current tag state has value "too_much_data". -/// -- (BOOL)isTooMuchData; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTeamReportFailureReason` union. -/// -@interface DBTEAMTeamReportFailureReasonSerializer : NSObject - -/// -/// Serializes `DBTEAMTeamReportFailureReason` instances. -/// -/// @param instance An instance of the `DBTEAMTeamReportFailureReason` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTeamReportFailureReason` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTeamReportFailureReason *)instance; - -/// -/// Deserializes `DBTEAMTeamReportFailureReason` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTeamReportFailureReason` API object. -/// -/// @return An instantiation of the `DBTEAMTeamReportFailureReason` object. -/// -+ (DBTEAMTeamReportFailureReason *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTokenGetAuthenticatedAdminError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTokenGetAuthenticatedAdminError.h deleted file mode 100644 index 023f0542..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTokenGetAuthenticatedAdminError.h +++ /dev/null @@ -1,151 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTokenGetAuthenticatedAdminError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenGetAuthenticatedAdminError` union. -/// -/// Error returned by `tokenGetAuthenticatedAdmin`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTokenGetAuthenticatedAdminError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMTokenGetAuthenticatedAdminErrorTag` enum type represents the -/// possible tag states with which the `DBTEAMTokenGetAuthenticatedAdminError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMTokenGetAuthenticatedAdminErrorTag) { - /// The current token is not associated with a team admin, because mappings - /// were not recorded when the token was created. Consider re-authorizing a - /// new access token to record its authenticating admin. - DBTEAMTokenGetAuthenticatedAdminErrorMappingNotFound, - - /// Either the team admin that authorized this token is no longer an active - /// member of the team or no longer a team admin. - DBTEAMTokenGetAuthenticatedAdminErrorAdminNotActive, - - /// (no description). - DBTEAMTokenGetAuthenticatedAdminErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMTokenGetAuthenticatedAdminErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "mapping_not_found". -/// -/// Description of the "mapping_not_found" tag state: The current token is not -/// associated with a team admin, because mappings were not recorded when the -/// token was created. Consider re-authorizing a new access token to record its -/// authenticating admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithMappingNotFound; - -/// -/// Initializes union class with tag state of "admin_not_active". -/// -/// Description of the "admin_not_active" tag state: Either the team admin that -/// authorized this token is no longer an active member of the team or no longer -/// a team admin. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminNotActive; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "mapping_not_found". -/// -/// @return Whether the union's current tag state has value "mapping_not_found". -/// -- (BOOL)isMappingNotFound; - -/// -/// Retrieves whether the union's current tag state has value -/// "admin_not_active". -/// -/// @return Whether the union's current tag state has value "admin_not_active". -/// -- (BOOL)isAdminNotActive; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMTokenGetAuthenticatedAdminError` -/// union. -/// -@interface DBTEAMTokenGetAuthenticatedAdminErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMTokenGetAuthenticatedAdminError` instances. -/// -/// @param instance An instance of the `DBTEAMTokenGetAuthenticatedAdminError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTokenGetAuthenticatedAdminError *)instance; - -/// -/// Deserializes `DBTEAMTokenGetAuthenticatedAdminError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminError` API object. -/// -/// @return An instantiation of the `DBTEAMTokenGetAuthenticatedAdminError` -/// object. -/// -+ (DBTEAMTokenGetAuthenticatedAdminError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTokenGetAuthenticatedAdminResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTokenGetAuthenticatedAdminResult.h deleted file mode 100644 index 08aac7ae..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMTokenGetAuthenticatedAdminResult.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMTeamMemberProfile; -@class DBTEAMTokenGetAuthenticatedAdminResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TokenGetAuthenticatedAdminResult` struct. -/// -/// Results for `tokenGetAuthenticatedAdmin`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMTokenGetAuthenticatedAdminResult : NSObject - -#pragma mark - Instance fields - -/// The admin who authorized the token. -@property (nonatomic, readonly) DBTEAMTeamMemberProfile *adminProfile; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param adminProfile The admin who authorized the token. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAdminProfile:(DBTEAMTeamMemberProfile *)adminProfile; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TokenGetAuthenticatedAdminResult` struct. -/// -@interface DBTEAMTokenGetAuthenticatedAdminResultSerializer : NSObject - -/// -/// Serializes `DBTEAMTokenGetAuthenticatedAdminResult` instances. -/// -/// @param instance An instance of the `DBTEAMTokenGetAuthenticatedAdminResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMTokenGetAuthenticatedAdminResult *)instance; - -/// -/// Deserializes `DBTEAMTokenGetAuthenticatedAdminResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMTokenGetAuthenticatedAdminResult` API object. -/// -/// @return An instantiation of the `DBTEAMTokenGetAuthenticatedAdminResult` -/// object. -/// -+ (DBTEAMTokenGetAuthenticatedAdminResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUploadApiRateLimitValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUploadApiRateLimitValue.h deleted file mode 100644 index 5f90612d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUploadApiRateLimitValue.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUploadApiRateLimitValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UploadApiRateLimitValue` union. -/// -/// The value for `uploadApiRateLimit` in `DBTEAMFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUploadApiRateLimitValue : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUploadApiRateLimitValueTag` enum type represents the possible tag -/// states with which the `DBTEAMUploadApiRateLimitValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUploadApiRateLimitValueTag) { - /// This team has unlimited upload API quota. So far both server version - /// account and legacy account type have unlimited monthly upload api - /// quota. - DBTEAMUploadApiRateLimitValueUnlimited, - - /// The number of upload API calls allowed per month. - DBTEAMUploadApiRateLimitValueLimit, - - /// (no description). - DBTEAMUploadApiRateLimitValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUploadApiRateLimitValueTag tag; - -/// The number of upload API calls allowed per month. @note Ensure the `isLimit` -/// method returns true before accessing, otherwise a runtime exception will be -/// raised. -@property (nonatomic, readonly) NSNumber *limit; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "unlimited". -/// -/// Description of the "unlimited" tag state: This team has unlimited upload API -/// quota. So far both server version account and legacy account type have -/// unlimited monthly upload api quota. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnlimited; - -/// -/// Initializes union class with tag state of "limit". -/// -/// Description of the "limit" tag state: The number of upload API calls allowed -/// per month. -/// -/// @param limit The number of upload API calls allowed per month. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithLimit:(NSNumber *)limit; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "unlimited". -/// -/// @return Whether the union's current tag state has value "unlimited". -/// -- (BOOL)isUnlimited; - -/// -/// Retrieves whether the union's current tag state has value "limit". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `limit` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "limit". -/// -- (BOOL)isLimit; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUploadApiRateLimitValue` union. -/// -@interface DBTEAMUploadApiRateLimitValueSerializer : NSObject - -/// -/// Serializes `DBTEAMUploadApiRateLimitValue` instances. -/// -/// @param instance An instance of the `DBTEAMUploadApiRateLimitValue` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUploadApiRateLimitValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUploadApiRateLimitValue *)instance; - -/// -/// Deserializes `DBTEAMUploadApiRateLimitValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUploadApiRateLimitValue` API object. -/// -/// @return An instantiation of the `DBTEAMUploadApiRateLimitValue` object. -/// -+ (DBTEAMUploadApiRateLimitValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserAddResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserAddResult.h deleted file mode 100644 index a0558eb5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserAddResult.h +++ /dev/null @@ -1,229 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserAddResult; -@class DBTEAMUserSecondaryEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserAddResult` union. -/// -/// Result of trying to add secondary emails to a user. 'success' is the only -/// value indicating that a user was successfully retrieved for adding secondary -/// emails. The other values explain the type of error that occurred, and -/// include the user for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserAddResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserAddResultTag` enum type represents the possible tag states -/// with which the `DBTEAMUserAddResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserAddResultTag) { - /// Describes a user and the results for each attempt to add a secondary - /// email. - DBTEAMUserAddResultSuccess, - - /// Specified user is not a valid target for adding secondary emails. - DBTEAMUserAddResultInvalidUser, - - /// Secondary emails can only be added to verified users. - DBTEAMUserAddResultUnverified, - - /// Secondary emails cannot be added to placeholder users. - DBTEAMUserAddResultPlaceholderUser, - - /// (no description). - DBTEAMUserAddResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserAddResultTag tag; - -/// Describes a user and the results for each attempt to add a secondary email. -/// @note Ensure the `isSuccess` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSecondaryEmailsResult *success; - -/// Specified user is not a valid target for adding secondary emails. @note -/// Ensure the `isInvalidUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -/// Secondary emails can only be added to verified users. @note Ensure the -/// `isUnverified` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *unverified; - -/// Secondary emails cannot be added to placeholder users. @note Ensure the -/// `isPlaceholderUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *placeholderUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user and the results for -/// each attempt to add a secondary email. -/// -/// @param success Describes a user and the results for each attempt to add a -/// secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserSecondaryEmailsResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Specified user is not a valid -/// target for adding secondary emails. -/// -/// @param invalidUser Specified user is not a valid target for adding secondary -/// emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "unverified". -/// -/// Description of the "unverified" tag state: Secondary emails can only be -/// added to verified users. -/// -/// @param unverified Secondary emails can only be added to verified users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUnverified:(DBTEAMUserSelectorArg *)unverified; - -/// -/// Initializes union class with tag state of "placeholder_user". -/// -/// Description of the "placeholder_user" tag state: Secondary emails cannot be -/// added to placeholder users. -/// -/// @param placeholderUser Secondary emails cannot be added to placeholder -/// users. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPlaceholderUser:(DBTEAMUserSelectorArg *)placeholderUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "unverified". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `unverified` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "unverified". -/// -- (BOOL)isUnverified; - -/// -/// Retrieves whether the union's current tag state has value -/// "placeholder_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `placeholderUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "placeholder_user". -/// -- (BOOL)isPlaceholderUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserAddResult` union. -/// -@interface DBTEAMUserAddResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserAddResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserAddResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserAddResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserAddResult *)instance; - -/// -/// Deserializes `DBTEAMUserAddResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserAddResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserAddResult` object. -/// -+ (DBTEAMUserAddResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserCustomQuotaArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserCustomQuotaArg.h deleted file mode 100644 index 6cbb7a0b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserCustomQuotaArg.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserCustomQuotaArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserCustomQuotaArg` struct. -/// -/// User and their required custom quota in GB (1 TB = 1024 GB). -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserCustomQuotaArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSNumber *quotaGb; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param quotaGb (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user quotaGb:(NSNumber *)quotaGb; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserCustomQuotaArg` struct. -/// -@interface DBTEAMUserCustomQuotaArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUserCustomQuotaArg` instances. -/// -/// @param instance An instance of the `DBTEAMUserCustomQuotaArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserCustomQuotaArg *)instance; - -/// -/// Deserializes `DBTEAMUserCustomQuotaArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaArg` API object. -/// -/// @return An instantiation of the `DBTEAMUserCustomQuotaArg` object. -/// -+ (DBTEAMUserCustomQuotaArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserCustomQuotaResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserCustomQuotaResult.h deleted file mode 100644 index c0f938c4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserCustomQuotaResult.h +++ /dev/null @@ -1,93 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserCustomQuotaResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserCustomQuotaResult` struct. -/// -/// User and their custom quota in GB (1 TB = 1024 GB). No quota returns if the -/// user has no custom quota set. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserCustomQuotaResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly, nullable) NSNumber *quotaGb; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param quotaGb (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user quotaGb:(nullable NSNumber *)quotaGb; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param user (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserCustomQuotaResult` struct. -/// -@interface DBTEAMUserCustomQuotaResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserCustomQuotaResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserCustomQuotaResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserCustomQuotaResult *)instance; - -/// -/// Deserializes `DBTEAMUserCustomQuotaResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserCustomQuotaResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserCustomQuotaResult` object. -/// -+ (DBTEAMUserCustomQuotaResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserDeleteEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserDeleteEmailsResult.h deleted file mode 100644 index 0f76a9dc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserDeleteEmailsResult.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMDeleteSecondaryEmailResult; -@class DBTEAMUserDeleteEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserDeleteEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserDeleteEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - results:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserDeleteEmailsResult` struct. -/// -@interface DBTEAMUserDeleteEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserDeleteEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserDeleteEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserDeleteEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMUserDeleteEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserDeleteEmailsResult` object. -/// -+ (DBTEAMUserDeleteEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserDeleteResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserDeleteResult.h deleted file mode 100644 index 003c1ad9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserDeleteResult.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserDeleteEmailsResult; -@class DBTEAMUserDeleteResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserDeleteResult` union. -/// -/// Result of trying to delete a user's secondary emails. 'success' is the only -/// value indicating that a user was successfully retrieved for deleting -/// secondary emails. The other values explain the type of error that occurred, -/// and include the user for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserDeleteResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserDeleteResultTag` enum type represents the possible tag states -/// with which the `DBTEAMUserDeleteResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserDeleteResultTag) { - /// Describes a user and the results for each attempt to delete a secondary - /// email. - DBTEAMUserDeleteResultSuccess, - - /// Specified user is not a valid target for deleting secondary emails. - DBTEAMUserDeleteResultInvalidUser, - - /// (no description). - DBTEAMUserDeleteResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserDeleteResultTag tag; - -/// Describes a user and the results for each attempt to delete a secondary -/// email. @note Ensure the `isSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserDeleteEmailsResult *success; - -/// Specified user is not a valid target for deleting secondary emails. @note -/// Ensure the `isInvalidUser` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user and the results for -/// each attempt to delete a secondary email. -/// -/// @param success Describes a user and the results for each attempt to delete a -/// secondary email. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserDeleteEmailsResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Specified user is not a valid -/// target for deleting secondary emails. -/// -/// @param invalidUser Specified user is not a valid target for deleting -/// secondary emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserDeleteResult` union. -/// -@interface DBTEAMUserDeleteResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserDeleteResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserDeleteResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserDeleteResult *)instance; - -/// -/// Deserializes `DBTEAMUserDeleteResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserDeleteResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserDeleteResult` object. -/// -+ (DBTEAMUserDeleteResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserResendEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserResendEmailsResult.h deleted file mode 100644 index 60f57ac7..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserResendEmailsResult.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMResendSecondaryEmailResult; -@class DBTEAMUserResendEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserResendEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserResendEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user - results:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserResendEmailsResult` struct. -/// -@interface DBTEAMUserResendEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserResendEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserResendEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserResendEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserResendEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMUserResendEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserResendEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserResendEmailsResult` object. -/// -+ (DBTEAMUserResendEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserResendResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserResendResult.h deleted file mode 100644 index 2c1aef3b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserResendResult.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserResendEmailsResult; -@class DBTEAMUserResendResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserResendResult` union. -/// -/// Result of trying to resend verification emails to a user. 'success' is the -/// only value indicating that a user was successfully retrieved for sending -/// verification emails. The other values explain the type of error that -/// occurred, and include the user for which the error occurred. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserResendResult : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserResendResultTag` enum type represents the possible tag states -/// with which the `DBTEAMUserResendResult` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserResendResultTag) { - /// Describes a user and the results for each attempt to resend verification - /// emails. - DBTEAMUserResendResultSuccess, - - /// Specified user is not a valid target for resending verification emails. - DBTEAMUserResendResultInvalidUser, - - /// (no description). - DBTEAMUserResendResultOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserResendResultTag tag; - -/// Describes a user and the results for each attempt to resend verification -/// emails. @note Ensure the `isSuccess` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserResendEmailsResult *success; - -/// Specified user is not a valid target for resending verification emails. -/// @note Ensure the `isInvalidUser` method returns true before accessing, -/// otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBTEAMUserSelectorArg *invalidUser; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "success". -/// -/// Description of the "success" tag state: Describes a user and the results for -/// each attempt to resend verification emails. -/// -/// @param success Describes a user and the results for each attempt to resend -/// verification emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithSuccess:(DBTEAMUserResendEmailsResult *)success; - -/// -/// Initializes union class with tag state of "invalid_user". -/// -/// Description of the "invalid_user" tag state: Specified user is not a valid -/// target for resending verification emails. -/// -/// @param invalidUser Specified user is not a valid target for resending -/// verification emails. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithInvalidUser:(DBTEAMUserSelectorArg *)invalidUser; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "success". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `success` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "success". -/// -- (BOOL)isSuccess; - -/// -/// Retrieves whether the union's current tag state has value "invalid_user". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `invalidUser` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "invalid_user". -/// -- (BOOL)isInvalidUser; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserResendResult` union. -/// -@interface DBTEAMUserResendResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserResendResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserResendResult` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserResendResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserResendResult *)instance; - -/// -/// Deserializes `DBTEAMUserResendResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserResendResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserResendResult` object. -/// -+ (DBTEAMUserResendResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSecondaryEmailsArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSecondaryEmailsArg.h deleted file mode 100644 index 133bce42..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSecondaryEmailsArg.h +++ /dev/null @@ -1,83 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserSecondaryEmailsArg; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSecondaryEmailsArg` struct. -/// -/// User and a list of secondary emails. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSecondaryEmailsArg : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *secondaryEmails; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param secondaryEmails (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user secondaryEmails:(NSArray *)secondaryEmails; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserSecondaryEmailsArg` struct. -/// -@interface DBTEAMUserSecondaryEmailsArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSecondaryEmailsArg` instances. -/// -/// @param instance An instance of the `DBTEAMUserSecondaryEmailsArg` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSecondaryEmailsArg *)instance; - -/// -/// Deserializes `DBTEAMUserSecondaryEmailsArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsArg` API object. -/// -/// @return An instantiation of the `DBTEAMUserSecondaryEmailsArg` object. -/// -+ (DBTEAMUserSecondaryEmailsArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSecondaryEmailsResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSecondaryEmailsResult.h deleted file mode 100644 index 75230311..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSecondaryEmailsResult.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMAddSecondaryEmailResult; -@class DBTEAMUserSecondaryEmailsResult; -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSecondaryEmailsResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSecondaryEmailsResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) DBTEAMUserSelectorArg *user; - -/// (no description). -@property (nonatomic, readonly) NSArray *results; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param user (no description). -/// @param results (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUser:(DBTEAMUserSelectorArg *)user results:(NSArray *)results; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserSecondaryEmailsResult` struct. -/// -@interface DBTEAMUserSecondaryEmailsResultSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSecondaryEmailsResult` instances. -/// -/// @param instance An instance of the `DBTEAMUserSecondaryEmailsResult` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSecondaryEmailsResult *)instance; - -/// -/// Deserializes `DBTEAMUserSecondaryEmailsResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSecondaryEmailsResult` API object. -/// -/// @return An instantiation of the `DBTEAMUserSecondaryEmailsResult` object. -/// -+ (DBTEAMUserSecondaryEmailsResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSelectorArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSelectorArg.h deleted file mode 100644 index 590d35b4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSelectorArg.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSelectorArg` union. -/// -/// Argument for selecting a single user, either by team_member_id, external_id -/// or email. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSelectorArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserSelectorArgTag` enum type represents the possible tag states -/// with which the `DBTEAMUserSelectorArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserSelectorArgTag) { - /// (no description). - DBTEAMUserSelectorArgTeamMemberId, - - /// (no description). - DBTEAMUserSelectorArgExternalId, - - /// (no description). - DBTEAMUserSelectorArgEmail, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserSelectorArgTag tag; - -/// (no description). @note Ensure the `isTeamMemberId` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *teamMemberId; - -/// (no description). @note Ensure the `isExternalId` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *externalId; - -/// (no description). @note Ensure the `isEmail` method returns true before -/// accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly, copy) NSString *email; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_member_id". -/// -/// @param teamMemberId (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberId:(NSString *)teamMemberId; - -/// -/// Initializes union class with tag state of "external_id". -/// -/// @param externalId (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalId:(NSString *)externalId; - -/// -/// Initializes union class with tag state of "email". -/// -/// @param email (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmail:(NSString *)email; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team_member_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMemberId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_member_id". -/// -- (BOOL)isTeamMemberId; - -/// -/// Retrieves whether the union's current tag state has value "external_id". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalId` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "external_id". -/// -- (BOOL)isExternalId; - -/// -/// Retrieves whether the union's current tag state has value "email". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `email` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "email". -/// -- (BOOL)isEmail; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserSelectorArg` union. -/// -@interface DBTEAMUserSelectorArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSelectorArg` instances. -/// -/// @param instance An instance of the `DBTEAMUserSelectorArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSelectorArg *)instance; - -/// -/// Deserializes `DBTEAMUserSelectorArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorArg` API object. -/// -/// @return An instantiation of the `DBTEAMUserSelectorArg` object. -/// -+ (DBTEAMUserSelectorArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSelectorError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSelectorError.h deleted file mode 100644 index e5a94f4d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUserSelectorError.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUserSelectorError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserSelectorError` union. -/// -/// Error that can be returned whenever a struct derived from UserSelectorArg is -/// used. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUserSelectorError : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUserSelectorErrorTag` enum type represents the possible tag -/// states with which the `DBTEAMUserSelectorError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUserSelectorErrorTag) { - /// No matching user found. The provided team_member_id, email, or - /// external_id does not exist on this team. - DBTEAMUserSelectorErrorUserNotFound, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUserSelectorErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "user_not_found". -/// -/// Description of the "user_not_found" tag state: No matching user found. The -/// provided team_member_id, email, or external_id does not exist on this team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUserNotFound; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "user_not_found". -/// -/// @return Whether the union's current tag state has value "user_not_found". -/// -- (BOOL)isUserNotFound; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUserSelectorError` union. -/// -@interface DBTEAMUserSelectorErrorSerializer : NSObject - -/// -/// Serializes `DBTEAMUserSelectorError` instances. -/// -/// @param instance An instance of the `DBTEAMUserSelectorError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUserSelectorError *)instance; - -/// -/// Deserializes `DBTEAMUserSelectorError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUserSelectorError` API object. -/// -/// @return An instantiation of the `DBTEAMUserSelectorError` object. -/// -+ (DBTEAMUserSelectorError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUsersSelectorArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUsersSelectorArg.h deleted file mode 100644 index 3da30462..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTEAMUsersSelectorArg.h +++ /dev/null @@ -1,167 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMUsersSelectorArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UsersSelectorArg` union. -/// -/// Argument for selecting a list of users, either by team_member_ids, -/// external_ids or emails. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBTEAMUsersSelectorArg : NSObject - -#pragma mark - Instance fields - -/// The `DBTEAMUsersSelectorArgTag` enum type represents the possible tag states -/// with which the `DBTEAMUsersSelectorArg` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBTEAMUsersSelectorArgTag) { - /// List of member IDs. - DBTEAMUsersSelectorArgTeamMemberIds, - - /// List of external user IDs. - DBTEAMUsersSelectorArgExternalIds, - - /// List of email addresses. - DBTEAMUsersSelectorArgEmails, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBTEAMUsersSelectorArgTag tag; - -/// List of member IDs. @note Ensure the `isTeamMemberIds` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *teamMemberIds; - -/// List of external user IDs. @note Ensure the `isExternalIds` method returns -/// true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *externalIds; - -/// List of email addresses. @note Ensure the `isEmails` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSArray *emails; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "team_member_ids". -/// -/// Description of the "team_member_ids" tag state: List of member IDs. -/// -/// @param teamMemberIds List of member IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeamMemberIds:(NSArray *)teamMemberIds; - -/// -/// Initializes union class with tag state of "external_ids". -/// -/// Description of the "external_ids" tag state: List of external user IDs. -/// -/// @param externalIds List of external user IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithExternalIds:(NSArray *)externalIds; - -/// -/// Initializes union class with tag state of "emails". -/// -/// Description of the "emails" tag state: List of email addresses. -/// -/// @param emails List of email addresses. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmails:(NSArray *)emails; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "team_member_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `teamMemberIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team_member_ids". -/// -- (BOOL)isTeamMemberIds; - -/// -/// Retrieves whether the union's current tag state has value "external_ids". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `externalIds` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "external_ids". -/// -- (BOOL)isExternalIds; - -/// -/// Retrieves whether the union's current tag state has value "emails". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `emails` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "emails". -/// -- (BOOL)isEmails; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBTEAMUsersSelectorArg` union. -/// -@interface DBTEAMUsersSelectorArgSerializer : NSObject - -/// -/// Serializes `DBTEAMUsersSelectorArg` instances. -/// -/// @param instance An instance of the `DBTEAMUsersSelectorArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBTEAMUsersSelectorArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBTEAMUsersSelectorArg *)instance; - -/// -/// Deserializes `DBTEAMUsersSelectorArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBTEAMUsersSelectorArg` API object. -/// -/// @return An instantiation of the `DBTEAMUsersSelectorArg` object. -/// -+ (DBTEAMUsersSelectorArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTasks.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTasks.h deleted file mode 100644 index a04eb261..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTasks.h +++ /dev/null @@ -1,433 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBHandlerTypes.h" -#import -@class DBBatchUploadData; -@class DBDelegate; -@class DBRequestError; -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - Base network task - -/// -/// Base class for network task wrappers. -/// -/// After a network request is made via `DBTransportClient`, a subclass of `DBTask` is returned, from which response and -/// progress handlers can be installed, and the network response paused or cancelled. -/// -/// Handlers are executed on the thread specified by the `DBDelegate` instance with which the `DBTask` instance is -/// initialied (more specifically, the delegate queue that the `DBDelegate` uses to execute handler code). By default, -/// this is the main thread, which makes updating UI elements in response handlers convenient. -/// -/// While response handlers are not optional, they do not necessarily need to have been installed by the time the SDK -/// has received its server response. If this is the case, completion data will be saved, and the handler will be -/// executed with the completion data upon its installation. Downloaded content will be moved from a temporary location -/// to the final destination when the response handler code is executed. -/// -@interface DBTask : NSObject { -@protected - NSOperationQueue *_queue; -} - -/// Information about the route to which the request was made. -@property (nonatomic, readonly) DBRoute *route; - -/// A unique string identifier for this task. -@property (nonatomic, readonly, copy) NSString *taskIdentifier; - -/// Tracks the number of times this task has been retried. -@property (nonatomic) int retryCount; - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy) NSString *tokenUid; - -/// -/// Full constructor. -/// -/// @param route Information about the route to which the request is being made. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -- (instancetype)initWithRoute:(DBRoute *)route tokenUid:(NSString *)tokenUid; - -/// -/// Cancels the current request. -/// -- (void)cancel; - -/// -/// Suspends the current request. -/// -- (void)suspend; - -/// -/// Resumes the current request. -/// -- (void)resume; - -/// -/// Starts the current request. -/// -- (void)start; - -/// -/// Restarts the current request. -/// -- (DBTask *)restart; - -@end - -#pragma mark - RPC-style network task - -/// -/// Dropbox RPC-style Network Task. -/// -/// After an RPC network request is made via `DBTransportClient`, a subclass of `DBRpcTask` is returned, from which -/// response and progress handlers can be installed, and the network response paused or cancelled. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBRpcTask : DBTask - -typedef void (^DBRpcResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setResponseBlock:(DBRpcResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setResponseBlock:(DBRpcResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes sent. The second argument is the number of total bytes sent. And the third argument is the number of -/// total bytes expected to be sent. -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes sent. The second argument is the number of total bytes sent. And the third argument is the number of -/// total bytes expected to be sent. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBRpcTask` instance. -/// -- (DBRpcTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -#pragma mark - Upload-style network task - -/// -/// Dropbox Upload-style Network Task. -/// -/// After an Upload network request is made via `DBTransportClient`, a subclass of `DBUploadTask` is returned, from -/// which response and progress handlers can be installed, and the network response paused or cancelled. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBUploadTask : DBTask - -typedef void (^DBUploadResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setResponseBlock:(DBUploadResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setResponseBlock:(DBUploadResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes uploaded. The second argument is the number of total bytes uploaded. And the third argument is the -/// number of total bytes expected to be uploaded. -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes uploaded. The second argument is the number of total bytes uploaded. And the third argument is the -/// number of total bytes expected to be uploaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBUploadTask` instance. -/// -- (DBUploadTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -#pragma mark - Download-style network task (NSURL) - -/// -/// Dropbox Download-style Network Task (download to `NSURL`). -/// -/// After an Upload network request is made via `DBTransportClient`, a subclass of `DBDownloadUrlTask` is returned, from -/// which response and progress handlers can be installed, and the network response paused or cancelled. Note, this -/// class is returned only for download requests with an `NSURL` output. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBDownloadUrlTask : DBTask { -@protected - NSURL *_destination; - BOOL _overwrite; -} - -typedef void (^DBDownloadUrlResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError, NSURL *destination); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. In the event the request returns successfully, but -/// a handler is not yet installed, the downloaded content will be moved to a temporary location -/// (`NSTemporaryDirectory()`) until the response handler is installed, at which point the file content will be moved to -/// its final destination. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output destination to which the file was downloaded. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setResponseBlock:(DBDownloadUrlResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output destination to which the file was downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setResponseBlock:(DBDownloadUrlResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadUrlTask` instance. -/// -- (DBDownloadUrlTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -#pragma mark - Download-style network task (NSData) - -/// -/// Dropbox Download Network Task (download to `NSData`). -/// -/// After an Upload network request is made via `DBTransportClient`, a subclass of `DBDownloadDataTask` is returned, -/// from which response and progress handlers can be installed, and the network response paused or cancelled. Note, this -/// class is returned only for download requests with an `NSData` output. -/// -/// `TResponse` is the generic representation of the route-specific result, and `TError` is the generic representation -/// of the route-specific error. -/// -/// Response / error deserialization is performed with this class. -/// -@interface DBDownloadDataTask : DBTask - -typedef void (^DBDownloadDataResponseBlock)(TResponse _Nullable result, TError _Nullable routeError, - DBRequestError *_Nullable networkError, NSData *_Nullable fileData); - -/// -/// Installs a response handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output `NSData` object in memory, to which the file was downloaded. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setResponseBlock:(DBDownloadDataResponseBlock)responseBlock; - -/// -/// Installs a response handler for the current request with a specific queue on which to execute handler code. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param responseBlock The handler block to be executed in the event of a successful or unsuccessful network request. -/// The first argument is the route-specific result. The second argument is the route-specific error. And the third -/// argument is the more general network error (which includes information like Dropbox request ID, http status code, -/// etc.). The fourth argument is the output `NSData` object in memory, to which the file was downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setResponseBlock:(DBDownloadDataResponseBlock)responseBlock - queue:(nullable NSOperationQueue *)queue; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on main queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setProgressBlock:(DBProgressBlock)progressBlock; - -/// -/// Installs a progress handler for the current request. -/// -/// Executes handler on supplied queue/thread. -/// -/// @note Any existing handlers are replaced by the supplied handler. -/// -/// @param progressBlock The progress block to be executed in the event of a request update. The first argument is the -/// number of bytes downloaded. The second argument is the number of total bytes downloaded. And the third argument is -/// the number of total bytes expected to be downloaded. -/// @param queue The operation queue on which to execute the response. -/// -/// @return The current `DBDownloadDataTask` instance. -/// -- (DBDownloadDataTask *)setProgressBlock:(DBProgressBlock)progressBlock queue:(nullable NSOperationQueue *)queue; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTasksStorage.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTasksStorage.h deleted file mode 100644 index f3dc6222..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTasksStorage.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBTasks.h" - -/// -/// Task storage for upload and download tasks. -/// -/// Offers a convenient, thread-safe storage option for upload and download tasks so that they can be cancelled later. -/// -@interface DBTasksStorage : NSObject - -/// -/// Cancels all tasks stored in the object. -/// -- (void)cancelAllTasks; - -/// -/// Adds the upload task in a thread-safe manner. -/// -/// @note If `cancelAllTasks` has already been called, the task is not only not added, but it is cancelled as well. -/// -/// @param task The task to add. -/// -- (void)addUploadTask:(DBUploadTask *)task; - -/// -/// Removes the upload task in a thread-safe manner. -/// -/// @param task The task to remove. -/// -- (void)removeUploadTask:(DBUploadTask *)task; - -/// -/// Adds the download to url task in a thread-safe manner. -/// -/// @note If `cancelAllTasks` has already been called, the task is not only not added, but it is cancelled as well. -/// -/// @param task The task to add. -/// -- (void)addDownloadUrlTask:(DBDownloadUrlTask *)task; - -/// -/// Removes the download to url task in a thread-safe manner. -/// -/// @param task The task to remove. -/// -- (void)removeDownloadUrlTask:(DBDownloadUrlTask *)task; - -/// -/// Adds the download to data task in a thread-safe manner. -/// -/// @note If `cancelAllTasks` has already been called, the task is not only not added, but it is cancelled as well. -/// -/// @param task The task to add. -/// -- (void)addDownloadDataTask:(DBDownloadDataTask *)task; - -/// -/// Removes the download to data task in a thread-safe manner. -/// -/// @param task The task to remove. -/// -- (void)removeDownloadDataTask:(DBDownloadDataTask *)task; - -/// -/// Determine whether there are tasks in progress. -/// -/// @return Whether there are tasks in progress. -/// -- (BOOL)tasksInProgress; - -@end diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTeamBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTeamBaseClient.h deleted file mode 100644 index 1f7edd2e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTeamBaseClient.h +++ /dev/null @@ -1,43 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import "DBFILEPROPERTIESTeamAuthRoutes.h" -#import "DBRequestErrors.h" -#import "DBTEAMLOGTeamAuthRoutes.h" -#import "DBTEAMTeamAuthRoutes.h" -#import "DBTasks.h" -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient; - -/// -/// Base client object that contains an instance field for each namespace, each -/// of which contains references to all routes within that namespace. -/// Fully-implemented API clients will inherit this class. -/// -@interface DBTeamBaseClient : NSObject { - -@protected - id _transportClient; -} - -/// Routes within the `fileProperties` namespace. -@property (nonatomic, readonly) DBFILEPROPERTIESTeamAuthRoutes *filePropertiesRoutes; - -/// Routes within the `team` namespace. -@property (nonatomic, readonly) DBTEAMTeamAuthRoutes *teamRoutes; - -/// Routes within the `teamLog` namespace. -@property (nonatomic, readonly) DBTEAMLOGTeamAuthRoutes *teamLogRoutes; - -/// Initializes the `DBTeamBaseClient` object with a networking client. -- (instancetype)initWithTransportClient:(id)client; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTeamClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTeamClient.h deleted file mode 100644 index 9ebc47f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTeamClient.h +++ /dev/null @@ -1,132 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBTeamBaseClient.h" - -@class DBUserClient; -@class DBTransportDefaultClient; -@class DBTransportDefaultConfig; -@protocol DBAccessTokenProvider; -@class DBAccessToken; -@class DBOAuthManager; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox Business (Team) API Client for all endpoints with auth type "team". -/// -/// This is the SDK user's primary interface with the Dropbox Business (Team) API. Routes can be accessed via each -/// "namespace" object in the instance fields of its parent, `DBUserBaseClient`. To see a full list of the Business -/// (Team) API endpoints available, please visit: https://www.dropbox.com/developers/documentation/http/teams. -/// -@interface DBTeamClient : DBTeamBaseClient - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy, nullable) NSString *tokenUid; - -/// -/// Convenience initializer. -/// -/// Uses standard network configuration parameters. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessTokenProvider A `DBAccessTokenProvider` that provides access token and token refresh functionality. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessTokenProvider:(id)accessTokenProvider - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken An access token object. -/// @param oauthManager The oauthManager instance. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(DBAccessToken *)accessToken - oauthManager:(DBOAuthManager *)oauthManager - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// Designated initializer. -/// -/// @param client A `DBTransportDefaultClient` used to make network requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransportClient:(DBTransportDefaultClient *)client NS_DESIGNATED_INITIALIZER; - -/// -/// Returns a `DBUserClient` instance that can be used to make API calls on behalf of the designated team member. -/// -/// @note App must have "TeamMemberFileAccess" permissions to use this method. -/// -/// @param memberId The Dropbox `account_id` of the team member to perform actions on behalf of. e.g. -/// "dbid:12345678910..." -/// -/// @return An initialized User API client instance. -/// -- (DBUserClient *)userClientWithMemberId:(NSString *)memberId; - -/// -/// Returns the current access token used to make API requests. -/// -- (nullable NSString *)accessToken; - -/// -/// Returns whether the client is authorized. -/// -/// @return Whether the client currently has a non-nil OAuth 2.0 access token. -/// -- (BOOL)isAuthorized; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseClient.h deleted file mode 100644 index 6ff131d6..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseClient.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import "DBCOMMONPathRoot.h" -#import - -@class DBTransportBaseConfig; -@protocol DBAccessTokenProvider; - -NS_ASSUME_NONNULL_BEGIN - -@interface DBTransportBaseClient : NSObject - -/// The Dropbox OAuth2 access token provider used to make requests. -@property (nonatomic, readonly, nullable) id accessTokenProvider; - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy) NSString *tokenUid; - -/// The user agent associated with all networking requests. Used for server logging. -@property (nonatomic, readonly, copy) NSString *userAgent; - -/// The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appKey; - -/// The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appSecret; - -/// An additional authentication header field used when a team app with the appropriate permissions "performs" user API -/// actions on behalf of a team member. -@property (nonatomic, readonly, copy, nullable) NSString *asMemberId; - -/// The value of path root object which will be used as Dropbox-Api-Path-Root header. -@property (nonatomic, readonly, copy, nullable) DBCOMMONPathRoot *pathRoot; - -/// Additional HTTP headers to be injected into each client request. -@property (nonatomic, readonly, copy, nullable) NSDictionary *additionalHeaders; - -/// Set YES to use a faster, experimental ASCII encoding implementation. Default = NO. -@property (atomic, class) BOOL useFastAsciiEncoding; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth2 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(nullable NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(DBTransportBaseConfig *)transportConfig; - -/// -/// Designated initializer. -/// -/// @param accessTokenProvider The `DBAccessTokenProvider` that provides a Dropbox OAuth2 access token -/// used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessTokenProvider:(nullable id)accessTokenProvider - tokenUid:(nullable NSString *)tokenUid - transportConfig:(DBTransportBaseConfig *)transportConfig NS_DESIGNATED_INITIALIZER; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseConfig.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseConfig.h deleted file mode 100644 index 672ada7a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseConfig.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBTransportBaseHostnameConfig.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Configuration class for `DBTransportBaseClient`. -/// -@interface DBTransportBaseConfig : NSObject - -/// The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appKey; - -/// The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app key is used for -/// querying endpoints the have "app auth" authentication type. -@property (nonatomic, readonly, copy, nullable) NSString *appSecret; - -/// The hostname configuration used for various networking requests. -@property (nonatomic, readonly, copy, nullable) DBTransportBaseHostnameConfig *hostnameConfig; - -/// The redirect url used for oauth flow -@property (nonatomic, readonly, copy, nullable) NSString *redirectURL; - -/// The user agent associated with all networking requests. Used for server logging. -@property (nonatomic, readonly, copy, nullable) NSString *userAgent; - -/// An additional authentication header field used when a team app with the appropriate permissions "performs" user API -/// actions on behalf of a team member. -@property (nonatomic, readonly, copy, nullable) NSString *asMemberId; - -/// The value of path root object which will be used as Dropbox-Api-Path-Root header. -@property (nonatomic, readonly, copy, nullable) DBCOMMONPathRoot *pathRoot; - -/// Additional HTTP headers to be injected into each client request. -@property (nonatomic, readonly, copy, nullable) NSDictionary *additionalHeaders; - -/// @return A default user agent string. -+ (NSString *)defaultUserAgent; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey userAgent:(nullable NSString *)userAgent; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param hostnameConfig A set of custom hostnames to use for networking requests. -/// -/// @return An initialized instance. -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - hostnameConfig:(DBTransportBaseHostnameConfig *)hostnameConfig; -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId; - -/// -/// Full constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders; - -/// -/// Full constructor, with debug hostname override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param hostnameConfig A set of custom hostnames to use for networking requests. Only useful for debugging purposes. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders; - -/// -/// Full constructor, with debug hostname and redirectURL override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints the have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints the have "app auth" authentication type. -/// @param hostnameConfig A set of custom hostnames to use for networking requests. Only useful for debugging purposes. -/// @param redirectURL The redirect url used for oauth flow. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param pathRoot The value of path root object which will be used as Dropbox-Api-Path-Root header. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(nullable NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - redirectURL:(nullable NSString *)redirectURL - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - pathRoot:(nullable DBCOMMONPathRoot *)pathRoot - additionalHeaders:(nullable NSDictionary *)additionalHeaders; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseHostnameConfig.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseHostnameConfig.h deleted file mode 100644 index b30e2d8f..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportBaseHostnameConfig.h +++ /dev/null @@ -1,84 +0,0 @@ -/// -/// Copyright (c) 2017 Dropbox, Inc. All rights reserved. -/// - -#import "DBStoneBase.h" -#import - -/// Enum of Dropbox API hosts. -typedef NS_ENUM(NSUInteger, DBRouteHost) { - DBRouteHostUnknown = 0, - DBRouteHostApi, - DBRouteHostContent, - DBRouteHostNotify, -}; - -NS_ASSUME_NONNULL_BEGIN - -@interface DBRoute (DropboxHost) - -/// @return which host this route points to -@property (nonatomic, readonly) DBRouteHost host; - -@end - -/// -/// Configuration class that defines the different hostnames that the Dropbox SDK uses -/// -@interface DBTransportBaseHostnameConfig : NSObject - -@property (nonatomic, readonly, copy) NSString *meta; -@property (nonatomic, readonly, copy) NSString *api; -@property (nonatomic, readonly, copy) NSString *content; -@property (nonatomic, readonly, copy) NSString *downloadContent; -@property (nonatomic, readonly, copy) NSString *notify; - -/// -/// Default constructor. -/// -/// @return An initialized instance of hostname configurations with default values set for all hostnames -/// -- (instancetype)init; - -/// -/// Constructor that takes in a set of custom hostnames to use for api calls. -/// -/// @param meta the hostname to metaserver -/// @param api the hostname to api server -/// @param content the hostname to content server -/// @param notify the hostname to notify server -/// -/// @return An initialized instance with the provided hostname configuration -/// -- (instancetype)initWithMeta:(NSString *)meta api:(NSString *)api content:(NSString *)content notify:(NSString *)notify; - -/// -/// Constructor that takes in a set of custom hostnames to use for api calls. -/// -/// @param meta the hostname to metaserver -/// @param api the hostname to api server -/// @param content the hostname to content server -/// @param downloadContent the hostname to content server for download style -/// @param notify the hostname to notify server -/// -/// @return An initialized instance with the provided hostname configuration -/// -- (instancetype)initWithMeta:(NSString *)meta - api:(NSString *)api - content:(NSString *)content - downloadContent:(NSString *)downloadContent - notify:(NSString *)notify NS_DESIGNATED_INITIALIZER; - -/// -/// Returns the prefix to use for API calls to the given route type. -/// -/// @param route the type of route to get a prefix for. -/// Currently the valid hosts are: "api", "content", and "notify". -/// -/// @return An absolute URL prefix, typically "https:///2" or nil if an invalid route type is provided. -/// -- (nullable NSString *)apiV2PrefixWithRoute:(DBRoute *)route; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportClientProtocol.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportClientProtocol.h deleted file mode 100644 index 3d5f1eb0..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportClientProtocol.h +++ /dev/null @@ -1,161 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBDownloadDataTask; -@class DBDownloadUrlTask; -@class DBRoute; -@class DBRpcTask; -@class DBUploadTask; -@protocol DBAccessTokenProvider; - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient - -/// The Dropbox OAuth2 access token provider used to make requests. -@property (nonatomic, nullable) id accessTokenProvider; - -#pragma mark - RPC-style request - -/// -/// Request to RPC-style endpoint. -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// -/// @return A `DBRpcTask` where response and progress handlers can be added, and the request can be halted or cancelled. -/// -- (DBRpcTask *)requestRpc:(DBRoute *)route arg:(id _Nullable)arg; - -#pragma mark - Upload-style request (NSURL) - -/// -/// Request to Upload-style endpoint (via `NSURL`). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param input The location of the file to upload. NSURLSession supports background uploads for this input type, so by -/// default, all requests of this type will be made in the background. -/// -/// @return A `DBUploadTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBUploadTask *)requestUpload:(DBRoute *)route arg:(id _Nullable)arg inputUrl:(NSString *)input; - -#pragma mark - Upload-style request (NSData) - -/// -/// Request to Upload-style endpoint (via `NSData`). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param input The location of the file to upload. NSURLSession does not support background uploads for this input -/// type, so by default, all requests of this type will be made in the foreground. -/// -/// @return A `DBUploadTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBUploadTask *)requestUpload:(DBRoute *)route arg:(id _Nullable)arg inputData:(NSData *)input; - -#pragma mark - Upload-style request (NSInputStream) - -/// -/// Request to Upload-style endpoint (via `NSInputStream`). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param input The location of the file to upload. `NSURLSession` does not support background uploads for this input -/// type, so by default, all requests of this type will be made in the foreground. -/// -/// @return A `DBUploadTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBUploadTask *)requestUpload:(DBRoute *)route - arg:(id _Nullable)arg - inputStream:(NSInputStream *)input; - -#pragma mark - Download-style request (NSURL) - -/// -/// Request to Download-style endpoint (via `NSURL` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param overwrite Whether the outputted file should overwrite in the event of a name collision. -/// @param destination Location to which output content should be downloaded. -/// -/// @return A `DBDownloadUrlTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBDownloadUrlTask *)requestDownload:(DBRoute *)route - arg:(id _Nullable)arg - overwrite:(BOOL)overwrite - destination:(NSURL *)destination; - -/// -/// Request to Download-style endpoint (via `NSURL` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. -/// @param overwrite Whether the outputted file should overwrite in the event of a name collision. -/// @param destination Location to which output content should be downloaded. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. -/// -/// @return A `DBDownloadUrlTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. -/// -- (DBDownloadUrlTask *)requestDownload:(DBRoute *)route - arg:(id _Nullable)arg - overwrite:(BOOL)overwrite - destination:(NSURL *)destination - byteOffsetStart:(nullable NSNumber *)byteOffsetStart - byteOffsetEnd:(nullable NSNumber *)byteOffsetEnd; - -#pragma mark - Download-style request (NSData) - -/// -/// Request to Download-style endpoint (with `NSData` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. Note, this return -/// type is different from the return type of `requestDownload:arg`. -/// -/// @return A `DBDownloadDataTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. Note, this return type is different from the return type of `requestDownload:arg:overwrite:destination`. -/// -- (DBDownloadDataTask *)requestDownload:(DBRoute *)route arg:(id _Nullable)arg; - -/// -/// Request to Download-style endpoint (with `NSData` output type). -/// -/// @param route The static `DBRoute` instance associated with the route. Contains information like route host, response -/// type, etc. -/// @param arg The unserialized route argument to pass. Must conform to the `DBSerializable` protocol. Note, this return -/// type is different from the return type of `requestDownload:arg`. -/// @param byteOffsetStart For partial file download. Download file beginning from this starting byte position. -/// @param byteOffsetEnd For partial file download. Download file up until this ending byte position. -/// -/// @return A `DBDownloadDataTask` where response and progress handlers can be added, and the request can be halted or -/// cancelled. Note, this return type is different from the return type of `requestDownload:arg:overwrite:destination`. -/// -- (DBDownloadDataTask *)requestDownload:(DBRoute *)route - arg:(id _Nullable)arg - byteOffsetStart:(nullable NSNumber *)byteOffsetStart - byteOffsetEnd:(nullable NSNumber *)byteOffsetEnd; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportDefaultClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportDefaultClient.h deleted file mode 100644 index db294a0a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportDefaultClient.h +++ /dev/null @@ -1,103 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBTransportBaseClient.h" -#import "DBTransportClientProtocol.h" - -NS_ASSUME_NONNULL_BEGIN - -@class DBTransportDefaultConfig; - -/// -/// The networking client for the User and Business API. -/// -/// Normally, one networking client should instantiated per access token and session / background session pair. By -/// default, all Upload-style and Download-style requests are made via a background session (except when uploading via -/// `NSInputStream` or `NSData`, or downloading to `NSData`, in which case, it is not possible) and all RPC-style -/// request are made using a foreground session. -/// -/// Requests are made via one of the request methods below. The request is launched, and a `DBTask` object is returned, -/// from which response and progress handlers can be added directly. By default, these handlers are added / executed -/// using the main thread queue and executed in a thread-safe manner (unless a custom delegate queue is supplied via the -/// `DBTransportDefaultConfig` object). An internal `DBDelegate` object then retrieves the appropriate handler and -/// executes it. -/// -/// While response handlers are not optional, they do not necessarily need to have been installed by the time the SDK -/// has received its server response. If this is the case, completion data will be saved, and the handler will be -/// executed with the completion data upon its installation. Downloaded content will be moved from a temporary location -/// to the final destination when the response handler code is executed. -/// -/// Argument serialization and deserialization is performed with this class. -/// -@interface DBTransportDefaultClient : DBTransportBaseClient - -/// A serial delegate queue used for executing blocks of code that touch state shared across threads (mainly the request -/// handlers storage). -@property (nonatomic, readonly) NSOperationQueue *delegateQueue; - -/// If set to true when the `DBTransportDefaultClient` object is initialized, all network requests are made on -/// foreground sessions (by default, most upload/download operations are performed with a background session). This is -/// appropriate for use cases where file upload / download operations will be quick, and immediate response is -/// preferable. Otherwise, for background sessions, uploads/downloads will essentially never time out, if network -/// connection is lost after the request has begun. -@property (nonatomic, readonly) BOOL forceForegroundSession; - -/// The foreground session used to make all foreground requests (RPC style requests, upload from `NSData` and -/// `NSInputStream`, and download to `NSData`). -@property (nonatomic, strong) NSURLSession *session; - -/// By default, the background session used to make all background requests (Upload and Download style requests, except -/// for upload from `NSData` and `NSInputStream`, and download to `NSData`) unless `forceForegroundSession` is set to -/// true, in which case, it is simply the same session as the foreground session. -@property (nonatomic, strong) NSURLSession *secondarySession; - -/// The foreground session on which longpoll requests are made. Has a much longer timeout period than other sessions. -@property (nonatomic, strong) NSURLSession *longpollSession; - -#pragma mark - Constructors - -/// -/// Full constructor. -/// -/// @param accessToken The Dropbox OAuth2 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(nullable NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Creates a transport config with the same settings as the current transport client, to be used to instantiate an -/// additional network client, to perform user API actions on behalf of other team members, by a team app. -/// -/// @param asMemberId The Dropbox `account_id` of the team member to perform actions on behalf of. e.g. -/// "dbid:12345678910..." -/// -/// @return A transport config with the same settings as the current transport client, except with information to -/// perform actions on behalf of the team member specified by `asMemberId`. -/// -- (DBTransportDefaultConfig *)duplicateTransportConfigWithAsMemberId:(NSString *)asMemberId; - -/// -/// Creates a transport config with the same settings as the current transport client, to be used with -/// specific path root header value. -/// -/// @param pathRoot The value of path root object which will be used as Dropbox-Api-Path-Root header. -/// -/// @return A transport config with the same settings as the current transport client, except with -/// Dropbox-Api-Path-Root header value specified by pathRoot. -/// -- (DBTransportDefaultConfig *)duplicateTransportConfigWithPathRoot:(DBCOMMONPathRoot *)pathRoot; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportDefaultConfig.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportDefaultConfig.h deleted file mode 100644 index 23ade61a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBTransportDefaultConfig.h +++ /dev/null @@ -1,257 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBTransportBaseConfig.h" - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Configuration class for `DBTransportDefaultClient`. -/// -@interface DBTransportDefaultConfig : DBTransportBaseConfig - -/// A serial delegate queue used for executing blocks of code that touch state shared across threads (mainly the request -/// handlers storage). -@property (nonatomic, readonly, nullable) NSOperationQueue *delegateQueue; - -/// If set to true, all network requests are made on foreground sessions (by default, most upload/download operations -/// are performed with a background session). This is appropriate for use cases where file upload / download operations -/// will be quick, and immediate response is preferable. Otherwise, for background sessions, uploads/downloads will -/// essentially never time out, if network connection is lost after the request has begun. -@property (nonatomic, readonly) BOOL forceForegroundSession; - -/// The identifier for the shared container into which files in background URL sessions should be downloaded. This needs -/// to be set when downloading via an app extension. -@property (nonatomic, readonly, nullable) NSString *sharedContainerIdentifier; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey; - -/// -/// Convenience constructor. -/// -/// Appropriate for apps that want to query endpoints with "app auth" authentication type. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey appSecret:(NSString *)appSecret; - -/// -/// Convenience constructor. -/// -/// Appropriate for apps that want to query endpoints with "app auth" authentication type. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(NSString *)appSecret - delegateQueue:(nullable NSOperationQueue *)delegateQueue; - -/// -/// Convenience constructor. -/// -/// Appropriate for use cases where file upload / download operations will be quick, and immediate response is -/// preferable. Otherwise, for background sessions, uploads/downloads will essentially never time out, if network -/// connection is lost after the request has begun. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey forceForegroundSession:(BOOL)forceForegroundSession; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession; - -/// -/// Convenience constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -/// -/// Full constructor. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -/// -/// Full constructor, with debug hostname override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param hostnameConfig A custom hostname to use for networking requests. Only useful for debugging purposes. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - additionalHeaders:(nullable NSDictionary *)additionalHeaders - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -/// -/// Full constructor, with debug hostname and redirectURL override. -/// -/// @param appKey The consumer app key associated with the app that is integrating with the Dropbox API. Here, app key -/// is used for querying endpoints that have "app auth" authentication type. -/// @param appSecret The consumer app secret associated with the app that is integrating with the Dropbox API. Here, app -/// key is used for querying endpoints that have "app auth" authentication type. -/// @param hostnameConfig A custom hostname to use for networking requests. Only useful for debugging purposes. -/// @param userAgent The user agent associated with all networking requests. Used for server logging. -/// @param delegateQueue A serial delegate queue used for executing blocks of code that touch state shared across -/// threads (mainly the request handlers storage). -/// @param forceForegroundSession If set to true, all network requests are made on foreground sessions (by default, most -/// upload/download operations are performed with a background session). -/// @param asMemberId An additional authentication header field used when a team app with the appropriate permissions -/// "performs" user API actions on behalf of a team member. -/// @param pathRoot The value of path root object which will be used as Dropbox-Api-Path-Root header. -/// @param sharedContainerIdentifier The identifier for the shared container into which files in background URL sessions -/// should be downloaded. This needs to be set when downloading via an app extension. -/// @param additionalHeaders Additional HTTP headers to be injected into each client request. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAppKey:(NSString *)appKey - appSecret:(nullable NSString *)appSecret - hostnameConfig:(nullable DBTransportBaseHostnameConfig *)hostnameConfig - redirectURL:(nullable NSString *)redirectURL - userAgent:(nullable NSString *)userAgent - asMemberId:(nullable NSString *)asMemberId - pathRoot:(nullable DBCOMMONPathRoot *)pathRoot - additionalHeaders:(nullable NSDictionary *)additionalHeaders - delegateQueue:(nullable NSOperationQueue *)delegateQueue - forceForegroundSession:(BOOL)forceForegroundSession - sharedContainerIdentifier:(nullable NSString *)sharedContainerIdentifier; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSAccount.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSAccount.h deleted file mode 100644 index 81af9667..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSAccount.h +++ /dev/null @@ -1,129 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSAccount; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Account` struct. -/// -/// The amount of detail revealed about an account depends on the user being -/// queried and the user making the query. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSAccount : NSObject - -#pragma mark - Instance fields - -/// The user's unique Dropbox ID. -@property (nonatomic, readonly, copy) NSString *accountId; - -/// Details of a user's name. -@property (nonatomic, readonly) DBUSERSName *name; - -/// The user's email address. Do not rely on this without checking the -/// emailVerified field. Even then, it's possible that the user has since lost -/// access to their email. -@property (nonatomic, readonly, copy) NSString *email; - -/// Whether the user has verified their email address. -@property (nonatomic, readonly) NSNumber *emailVerified; - -/// URL for the photo representing the user, if one is set. -@property (nonatomic, readonly, copy, nullable) NSString *profilePhotoUrl; - -/// Whether the user has been disabled. -@property (nonatomic, readonly) NSNumber *disabled; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - profilePhotoUrl:(nullable NSString *)profilePhotoUrl; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Account` struct. -/// -@interface DBUSERSAccountSerializer : NSObject - -/// -/// Serializes `DBUSERSAccount` instances. -/// -/// @param instance An instance of the `DBUSERSAccount` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSAccount` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSAccount *)instance; - -/// -/// Deserializes `DBUSERSAccount` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSAccount` API object. -/// -/// @return An instantiation of the `DBUSERSAccount` object. -/// -+ (DBUSERSAccount *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSBasicAccount.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSBasicAccount.h deleted file mode 100644 index 1c78e470..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSBasicAccount.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBUSERSAccount.h" - -@class DBUSERSBasicAccount; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `BasicAccount` struct. -/// -/// Basic information about any account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSBasicAccount : DBUSERSAccount - -#pragma mark - Instance fields - -/// Whether this user is a teammate of the current user. If this account is the -/// current user's account, then this will be true. -@property (nonatomic, readonly) NSNumber *isTeammate; - -/// The user's unique team member id. This field will only be present if the -/// user is part of a team and isTeammate is true. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param isTeammate Whether this user is a teammate of the current user. If -/// this account is the current user's account, then this will be true. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// @param teamMemberId The user's unique team member id. This field will only -/// be present if the user is part of a team and isTeammate is true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - isTeammate:(NSNumber *)isTeammate - profilePhotoUrl:(nullable NSString *)profilePhotoUrl - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param isTeammate Whether this user is a teammate of the current user. If -/// this account is the current user's account, then this will be true. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - isTeammate:(NSNumber *)isTeammate; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `BasicAccount` struct. -/// -@interface DBUSERSBasicAccountSerializer : NSObject - -/// -/// Serializes `DBUSERSBasicAccount` instances. -/// -/// @param instance An instance of the `DBUSERSBasicAccount` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSBasicAccount` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSBasicAccount *)instance; - -/// -/// Deserializes `DBUSERSBasicAccount` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSBasicAccount` API object. -/// -/// @return An instantiation of the `DBUSERSBasicAccount` object. -/// -+ (DBUSERSBasicAccount *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSCOMMONAccountType.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSCOMMONAccountType.h deleted file mode 100644 index 00db4cc2..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSCOMMONAccountType.h +++ /dev/null @@ -1,139 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSCOMMONAccountType; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `AccountType` union. -/// -/// What type of account this user has. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSCOMMONAccountType : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSCOMMONAccountTypeTag` enum type represents the possible tag -/// states with which the `DBUSERSCOMMONAccountType` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSCOMMONAccountTypeTag) { - /// The basic account type. - DBUSERSCOMMONAccountTypeBasic, - - /// The Dropbox Pro account type. - DBUSERSCOMMONAccountTypePro, - - /// The Dropbox Business account type. - DBUSERSCOMMONAccountTypeBusiness, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSCOMMONAccountTypeTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "basic". -/// -/// Description of the "basic" tag state: The basic account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBasic; - -/// -/// Initializes union class with tag state of "pro". -/// -/// Description of the "pro" tag state: The Dropbox Pro account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPro; - -/// -/// Initializes union class with tag state of "business". -/// -/// Description of the "business" tag state: The Dropbox Business account type. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithBusiness; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "basic". -/// -/// @return Whether the union's current tag state has value "basic". -/// -- (BOOL)isBasic; - -/// -/// Retrieves whether the union's current tag state has value "pro". -/// -/// @return Whether the union's current tag state has value "pro". -/// -- (BOOL)isPro; - -/// -/// Retrieves whether the union's current tag state has value "business". -/// -/// @return Whether the union's current tag state has value "business". -/// -- (BOOL)isBusiness; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSCOMMONAccountType` union. -/// -@interface DBUSERSCOMMONAccountTypeSerializer : NSObject - -/// -/// Serializes `DBUSERSCOMMONAccountType` instances. -/// -/// @param instance An instance of the `DBUSERSCOMMONAccountType` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSCOMMONAccountType` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSCOMMONAccountType *)instance; - -/// -/// Deserializes `DBUSERSCOMMONAccountType` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSCOMMONAccountType` API object. -/// -/// @return An instantiation of the `DBUSERSCOMMONAccountType` object. -/// -+ (DBUSERSCOMMONAccountType *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFileLockingValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFileLockingValue.h deleted file mode 100644 index 33c26a69..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFileLockingValue.h +++ /dev/null @@ -1,136 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSFileLockingValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FileLockingValue` union. -/// -/// The value for `fileLocking` in `DBUSERSUserFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSFileLockingValue : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSFileLockingValueTag` enum type represents the possible tag -/// states with which the `DBUSERSFileLockingValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSFileLockingValueTag) { - /// When this value is True, the user can lock files in shared directories. - /// When the value is False the user can unlock the files they have locked - /// or request to unlock files locked by others. - DBUSERSFileLockingValueEnabled, - - /// (no description). - DBUSERSFileLockingValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSFileLockingValueTag tag; - -/// When this value is True, the user can lock files in shared directories. When -/// the value is False the user can unlock the files they have locked or request -/// to unlock files locked by others. @note Ensure the `isEnabled` method -/// returns true before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *enabled; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: When this value is True, the user -/// can lock files in shared directories. When the value is False the user can -/// unlock the files they have locked or request to unlock files locked by -/// others. -/// -/// @param enabled When this value is True, the user can lock files in shared -/// directories. When the value is False the user can unlock the files they have -/// locked or request to unlock files locked by others. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled:(NSNumber *)enabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabled` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSFileLockingValue` union. -/// -@interface DBUSERSFileLockingValueSerializer : NSObject - -/// -/// Serializes `DBUSERSFileLockingValue` instances. -/// -/// @param instance An instance of the `DBUSERSFileLockingValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSFileLockingValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSFileLockingValue *)instance; - -/// -/// Deserializes `DBUSERSFileLockingValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSFileLockingValue` API object. -/// -/// @return An instantiation of the `DBUSERSFileLockingValue` object. -/// -+ (DBUSERSFileLockingValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFullAccount.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFullAccount.h deleted file mode 100644 index ebc3d6a8..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFullAccount.h +++ /dev/null @@ -1,176 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBUSERSAccount.h" - -@class DBCOMMONRootInfo; -@class DBUSERSCOMMONAccountType; -@class DBUSERSFullAccount; -@class DBUSERSFullTeam; -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FullAccount` struct. -/// -/// Detailed information about the current user's account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSFullAccount : DBUSERSAccount - -#pragma mark - Instance fields - -/// The user's two-letter country code, if available. Country codes are based on -/// ISO 3166-1 http://en.wikipedia.org/wiki/ISO_3166-1. -@property (nonatomic, readonly, copy, nullable) NSString *country; - -/// The language that the user specified. Locale tags will be IETF language tags -/// http://en.wikipedia.org/wiki/IETF_language_tag. -@property (nonatomic, readonly, copy) NSString *locale; - -/// The user's referral link https://www.dropbox.com/referrals. -@property (nonatomic, readonly, copy) NSString *referralLink; - -/// If this account is a member of a team, information about that team. -@property (nonatomic, readonly, nullable) DBUSERSFullTeam *team; - -/// This account's unique team member id. This field will only be present if -/// team is present. -@property (nonatomic, readonly, copy, nullable) NSString *teamMemberId; - -/// Whether the user has a personal and work account. If the current account is -/// personal, then team will always be null, but isPaired will indicate if a -/// work account is linked. -@property (nonatomic, readonly) NSNumber *isPaired; - -/// What type of account this user has. -@property (nonatomic, readonly) DBUSERSCOMMONAccountType *accountType; - -/// The root info for this account. -@property (nonatomic, readonly) DBCOMMONRootInfo *rootInfo; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param locale The language that the user specified. Locale tags will be IETF -/// language tags http://en.wikipedia.org/wiki/IETF_language_tag. -/// @param referralLink The user's referral link -/// https://www.dropbox.com/referrals. -/// @param isPaired Whether the user has a personal and work account. If the -/// current account is personal, then team will always be null, but isPaired -/// will indicate if a work account is linked. -/// @param accountType What type of account this user has. -/// @param rootInfo The root info for this account. -/// @param profilePhotoUrl URL for the photo representing the user, if one is -/// set. -/// @param country The user's two-letter country code, if available. Country -/// codes are based on ISO 3166-1 http://en.wikipedia.org/wiki/ISO_3166-1. -/// @param team If this account is a member of a team, information about that -/// team. -/// @param teamMemberId This account's unique team member id. This field will -/// only be present if team is present. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - locale:(NSString *)locale - referralLink:(NSString *)referralLink - isPaired:(NSNumber *)isPaired - accountType:(DBUSERSCOMMONAccountType *)accountType - rootInfo:(DBCOMMONRootInfo *)rootInfo - profilePhotoUrl:(nullable NSString *)profilePhotoUrl - country:(nullable NSString *)country - team:(nullable DBUSERSFullTeam *)team - teamMemberId:(nullable NSString *)teamMemberId; - -/// -/// Convenience constructor (exposes only non-nullable instance variables with -/// no default value). -/// -/// @param accountId The user's unique Dropbox ID. -/// @param name Details of a user's name. -/// @param email The user's email address. Do not rely on this without checking -/// the emailVerified field. Even then, it's possible that the user has since -/// lost access to their email. -/// @param emailVerified Whether the user has verified their email address. -/// @param disabled Whether the user has been disabled. -/// @param locale The language that the user specified. Locale tags will be IETF -/// language tags http://en.wikipedia.org/wiki/IETF_language_tag. -/// @param referralLink The user's referral link -/// https://www.dropbox.com/referrals. -/// @param isPaired Whether the user has a personal and work account. If the -/// current account is personal, then team will always be null, but isPaired -/// will indicate if a work account is linked. -/// @param accountType What type of account this user has. -/// @param rootInfo The root info for this account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId - name:(DBUSERSName *)name - email:(NSString *)email - emailVerified:(NSNumber *)emailVerified - disabled:(NSNumber *)disabled - locale:(NSString *)locale - referralLink:(NSString *)referralLink - isPaired:(NSNumber *)isPaired - accountType:(DBUSERSCOMMONAccountType *)accountType - rootInfo:(DBCOMMONRootInfo *)rootInfo; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FullAccount` struct. -/// -@interface DBUSERSFullAccountSerializer : NSObject - -/// -/// Serializes `DBUSERSFullAccount` instances. -/// -/// @param instance An instance of the `DBUSERSFullAccount` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSFullAccount` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSFullAccount *)instance; - -/// -/// Deserializes `DBUSERSFullAccount` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSFullAccount` API object. -/// -/// @return An instantiation of the `DBUSERSFullAccount` object. -/// -+ (DBUSERSFullAccount *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFullTeam.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFullTeam.h deleted file mode 100644 index 2d119299..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSFullTeam.h +++ /dev/null @@ -1,87 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" -#import "DBUSERSTeam.h" - -@class DBTEAMPOLICIESOfficeAddInPolicy; -@class DBTEAMPOLICIESTeamSharingPolicies; -@class DBUSERSFullTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `FullTeam` struct. -/// -/// Detailed information about a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSFullTeam : DBUSERSTeam - -#pragma mark - Instance fields - -/// Team policies governing sharing. -@property (nonatomic, readonly) DBTEAMPOLICIESTeamSharingPolicies *sharingPolicies; - -/// Team policy governing the use of the Office Add-In. -@property (nonatomic, readonly) DBTEAMPOLICIESOfficeAddInPolicy *officeAddinPolicy; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The team's unique ID. -/// @param name The name of the team. -/// @param sharingPolicies Team policies governing sharing. -/// @param officeAddinPolicy Team policy governing the use of the Office Add-In. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ - name:(NSString *)name - sharingPolicies:(DBTEAMPOLICIESTeamSharingPolicies *)sharingPolicies - officeAddinPolicy:(DBTEAMPOLICIESOfficeAddInPolicy *)officeAddinPolicy; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `FullTeam` struct. -/// -@interface DBUSERSFullTeamSerializer : NSObject - -/// -/// Serializes `DBUSERSFullTeam` instances. -/// -/// @param instance An instance of the `DBUSERSFullTeam` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSFullTeam` -/// API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSFullTeam *)instance; - -/// -/// Deserializes `DBUSERSFullTeam` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSFullTeam` API object. -/// -/// @return An instantiation of the `DBUSERSFullTeam` object. -/// -+ (DBUSERSFullTeam *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountArg.h deleted file mode 100644 index 4b760935..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountArg.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountArg : NSObject - -#pragma mark - Instance fields - -/// A user's account identifier. -@property (nonatomic, readonly, copy) NSString *accountId; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountId A user's account identifier. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountId:(NSString *)accountId; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetAccountArg` struct. -/// -@interface DBUSERSGetAccountArgSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountArg` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountArg *)instance; - -/// -/// Deserializes `DBUSERSGetAccountArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountArg` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountArg` object. -/// -+ (DBUSERSGetAccountArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountBatchArg.h deleted file mode 100644 index b78bdaea..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountBatchArg.h +++ /dev/null @@ -1,77 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountBatchArg : NSObject - -#pragma mark - Instance fields - -/// List of user account identifiers. Should not contain any duplicate account -/// IDs. -@property (nonatomic, readonly) NSArray *accountIds; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param accountIds List of user account identifiers. Should not contain any -/// duplicate account IDs. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccountIds:(NSArray *)accountIds; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `GetAccountBatchArg` struct. -/// -@interface DBUSERSGetAccountBatchArgSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountBatchArg` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountBatchArg` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountBatchArg *)instance; - -/// -/// Deserializes `DBUSERSGetAccountBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchArg` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountBatchArg` object. -/// -+ (DBUSERSGetAccountBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountBatchError.h deleted file mode 100644 index 90115cb4..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountBatchError.h +++ /dev/null @@ -1,131 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSGetAccountBatchErrorTag` enum type represents the possible tag -/// states with which the `DBUSERSGetAccountBatchError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSGetAccountBatchErrorTag) { - /// The value is an account ID specified in `accountIds` in - /// `DBUSERSGetAccountBatchArg` that does not exist. - DBUSERSGetAccountBatchErrorNoAccount, - - /// (no description). - DBUSERSGetAccountBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSGetAccountBatchErrorTag tag; - -/// The value is an account ID specified in `accountIds` in -/// `DBUSERSGetAccountBatchArg` that does not exist. @note Ensure the -/// `isNoAccount` method returns true before accessing, otherwise a runtime -/// exception will be raised. -@property (nonatomic, readonly, copy) NSString *noAccount; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_account". -/// -/// Description of the "no_account" tag state: The value is an account ID -/// specified in `accountIds` in `DBUSERSGetAccountBatchArg` that does not -/// exist. -/// -/// @param noAccount The value is an account ID specified in `accountIds` in -/// `DBUSERSGetAccountBatchArg` that does not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccount:(NSString *)noAccount; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_account". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `noAccount` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "no_account". -/// -- (BOOL)isNoAccount; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSGetAccountBatchError` union. -/// -@interface DBUSERSGetAccountBatchErrorSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountBatchError` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountBatchError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountBatchError *)instance; - -/// -/// Deserializes `DBUSERSGetAccountBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountBatchError` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountBatchError` object. -/// -+ (DBUSERSGetAccountBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountError.h deleted file mode 100644 index 6993e3a1..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSGetAccountError.h +++ /dev/null @@ -1,117 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSGetAccountError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `GetAccountError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSGetAccountError : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSGetAccountErrorTag` enum type represents the possible tag states -/// with which the `DBUSERSGetAccountError` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSGetAccountErrorTag) { - /// The specified `accountId` in `DBUSERSGetAccountArg` does not exist. - DBUSERSGetAccountErrorNoAccount, - - /// (no description). - DBUSERSGetAccountErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSGetAccountErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "no_account". -/// -/// Description of the "no_account" tag state: The specified `accountId` in -/// `DBUSERSGetAccountArg` does not exist. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithNoAccount; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "no_account". -/// -/// @return Whether the union's current tag state has value "no_account". -/// -- (BOOL)isNoAccount; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSGetAccountError` union. -/// -@interface DBUSERSGetAccountErrorSerializer : NSObject - -/// -/// Serializes `DBUSERSGetAccountError` instances. -/// -/// @param instance An instance of the `DBUSERSGetAccountError` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSGetAccountError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSGetAccountError *)instance; - -/// -/// Deserializes `DBUSERSGetAccountError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSGetAccountError` API object. -/// -/// @return An instantiation of the `DBUSERSGetAccountError` object. -/// -+ (DBUSERSGetAccountError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSIndividualSpaceAllocation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSIndividualSpaceAllocation.h deleted file mode 100644 index 8a15c66d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSIndividualSpaceAllocation.h +++ /dev/null @@ -1,76 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSIndividualSpaceAllocation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `IndividualSpaceAllocation` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSIndividualSpaceAllocation : NSObject - -#pragma mark - Instance fields - -/// The total space allocated to the user's account (bytes). -@property (nonatomic, readonly) NSNumber *allocated; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param allocated The total space allocated to the user's account (bytes). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAllocated:(NSNumber *)allocated; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `IndividualSpaceAllocation` struct. -/// -@interface DBUSERSIndividualSpaceAllocationSerializer : NSObject - -/// -/// Serializes `DBUSERSIndividualSpaceAllocation` instances. -/// -/// @param instance An instance of the `DBUSERSIndividualSpaceAllocation` API -/// object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSIndividualSpaceAllocation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSIndividualSpaceAllocation *)instance; - -/// -/// Deserializes `DBUSERSIndividualSpaceAllocation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSIndividualSpaceAllocation` API object. -/// -/// @return An instantiation of the `DBUSERSIndividualSpaceAllocation` object. -/// -+ (DBUSERSIndividualSpaceAllocation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSName.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSName.h deleted file mode 100644 index c454b238..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSName.h +++ /dev/null @@ -1,104 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSName; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Name` struct. -/// -/// Representations for a person's name to assist with internationalization. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSName : NSObject - -#pragma mark - Instance fields - -/// Also known as a first name. -@property (nonatomic, readonly, copy) NSString *givenName; - -/// Also known as a last name or family name. -@property (nonatomic, readonly, copy) NSString *surname; - -/// Locale-dependent name. In the US, a person's familiar name is their -/// givenName, but elsewhere, it could be any combination of a person's -/// givenName and surname. -@property (nonatomic, readonly, copy) NSString *familiarName; - -/// A name that can be used directly to represent the name of a user's Dropbox -/// account. -@property (nonatomic, readonly, copy) NSString *displayName; - -/// An abbreviated form of the person's name. Their initials in most locales. -@property (nonatomic, readonly, copy) NSString *abbreviatedName; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param givenName Also known as a first name. -/// @param surname Also known as a last name or family name. -/// @param familiarName Locale-dependent name. In the US, a person's familiar -/// name is their givenName, but elsewhere, it could be any combination of a -/// person's givenName and surname. -/// @param displayName A name that can be used directly to represent the name of -/// a user's Dropbox account. -/// @param abbreviatedName An abbreviated form of the person's name. Their -/// initials in most locales. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithGivenName:(NSString *)givenName - surname:(NSString *)surname - familiarName:(NSString *)familiarName - displayName:(NSString *)displayName - abbreviatedName:(NSString *)abbreviatedName; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Name` struct. -/// -@interface DBUSERSNameSerializer : NSObject - -/// -/// Serializes `DBUSERSName` instances. -/// -/// @param instance An instance of the `DBUSERSName` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSName` API -/// object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSName *)instance; - -/// -/// Deserializes `DBUSERSName` instances. -/// -/// @param dict A json-compatible dictionary representation of the `DBUSERSName` -/// API object. -/// -/// @return An instantiation of the `DBUSERSName` object. -/// -+ (DBUSERSName *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSPaperAsFilesValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSPaperAsFilesValue.h deleted file mode 100644 index a1a20af5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSPaperAsFilesValue.h +++ /dev/null @@ -1,143 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSPaperAsFilesValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `PaperAsFilesValue` union. -/// -/// The value for `paperAsFiles` in `DBUSERSUserFeature`. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSPaperAsFilesValue : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSPaperAsFilesValueTag` enum type represents the possible tag -/// states with which the `DBUSERSPaperAsFilesValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSPaperAsFilesValueTag) { - /// When this value is true, the user's Paper docs are accessible in Dropbox - /// with the .paper extension and must be accessed via the /files endpoints. - /// When this value is false, the user's Paper docs are stored separate from - /// Dropbox files and folders and should be accessed via the /paper - /// endpoints. - DBUSERSPaperAsFilesValueEnabled, - - /// (no description). - DBUSERSPaperAsFilesValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSPaperAsFilesValueTag tag; - -/// When this value is true, the user's Paper docs are accessible in Dropbox -/// with the .paper extension and must be accessed via the /files endpoints. -/// When this value is false, the user's Paper docs are stored separate from -/// Dropbox files and folders and should be accessed via the /paper endpoints. -/// @note Ensure the `isEnabled` method returns true before accessing, otherwise -/// a runtime exception will be raised. -@property (nonatomic, readonly) NSNumber *enabled; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "enabled". -/// -/// Description of the "enabled" tag state: When this value is true, the user's -/// Paper docs are accessible in Dropbox with the .paper extension and must be -/// accessed via the /files endpoints. When this value is false, the user's -/// Paper docs are stored separate from Dropbox files and folders and should be -/// accessed via the /paper endpoints. -/// -/// @param enabled When this value is true, the user's Paper docs are accessible -/// in Dropbox with the .paper extension and must be accessed via the /files -/// endpoints. When this value is false, the user's Paper docs are stored -/// separate from Dropbox files and folders and should be accessed via the -/// /paper endpoints. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEnabled:(NSNumber *)enabled; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "enabled". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `enabled` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "enabled". -/// -- (BOOL)isEnabled; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSPaperAsFilesValue` union. -/// -@interface DBUSERSPaperAsFilesValueSerializer : NSObject - -/// -/// Serializes `DBUSERSPaperAsFilesValue` instances. -/// -/// @param instance An instance of the `DBUSERSPaperAsFilesValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSPaperAsFilesValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSPaperAsFilesValue *)instance; - -/// -/// Deserializes `DBUSERSPaperAsFilesValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSPaperAsFilesValue` API object. -/// -/// @return An instantiation of the `DBUSERSPaperAsFilesValue` object. -/// -+ (DBUSERSPaperAsFilesValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSRouteObjects.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSRouteObjects.h deleted file mode 100644 index 8fe28034..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSRouteObjects.h +++ /dev/null @@ -1,37 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -@class DBRoute; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Stone route objects for the Users namespace. Each route in the Users -/// namespace has its own static object, which contains information about the -/// route. -/// -@interface DBUSERSRouteObjects : NSObject - -/// Accessor method for the featuresGetValues route object. -+ (DBRoute *)DBUSERSFeaturesGetValues; - -/// Accessor method for the getAccount route object. -+ (DBRoute *)DBUSERSGetAccount; - -/// Accessor method for the getAccountBatch route object. -+ (DBRoute *)DBUSERSGetAccountBatch; - -/// Accessor method for the getCurrentAccount route object. -+ (DBRoute *)DBUSERSGetCurrentAccount; - -/// Accessor method for the getSpaceUsage route object. -+ (DBRoute *)DBUSERSGetSpaceUsage; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSSpaceAllocation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSSpaceAllocation.h deleted file mode 100644 index ef9d4017..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSSpaceAllocation.h +++ /dev/null @@ -1,162 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSIndividualSpaceAllocation; -@class DBUSERSSpaceAllocation; -@class DBUSERSTeamSpaceAllocation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceAllocation` union. -/// -/// Space is allocated differently based on the type of account. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSSpaceAllocation : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSSpaceAllocationTag` enum type represents the possible tag states -/// with which the `DBUSERSSpaceAllocation` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSSpaceAllocationTag) { - /// The user's space allocation applies only to their individual account. - DBUSERSSpaceAllocationIndividual, - - /// The user shares space with other members of their team. - DBUSERSSpaceAllocationTeam, - - /// (no description). - DBUSERSSpaceAllocationOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSSpaceAllocationTag tag; - -/// The user's space allocation applies only to their individual account. @note -/// Ensure the `isIndividual` method returns true before accessing, otherwise a -/// runtime exception will be raised. -@property (nonatomic, readonly) DBUSERSIndividualSpaceAllocation *individual; - -/// The user shares space with other members of their team. @note Ensure the -/// `isTeam` method returns true before accessing, otherwise a runtime exception -/// will be raised. -@property (nonatomic, readonly) DBUSERSTeamSpaceAllocation *team; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "individual". -/// -/// Description of the "individual" tag state: The user's space allocation -/// applies only to their individual account. -/// -/// @param individual The user's space allocation applies only to their -/// individual account. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithIndividual:(DBUSERSIndividualSpaceAllocation *)individual; - -/// -/// Initializes union class with tag state of "team". -/// -/// Description of the "team" tag state: The user shares space with other -/// members of their team. -/// -/// @param team The user shares space with other members of their team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTeam:(DBUSERSTeamSpaceAllocation *)team; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "individual". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `individual` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "individual". -/// -- (BOOL)isIndividual; - -/// -/// Retrieves whether the union's current tag state has value "team". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `team` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "team". -/// -- (BOOL)isTeam; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSSpaceAllocation` union. -/// -@interface DBUSERSSpaceAllocationSerializer : NSObject - -/// -/// Serializes `DBUSERSSpaceAllocation` instances. -/// -/// @param instance An instance of the `DBUSERSSpaceAllocation` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSSpaceAllocation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSSpaceAllocation *)instance; - -/// -/// Deserializes `DBUSERSSpaceAllocation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSSpaceAllocation` API object. -/// -/// @return An instantiation of the `DBUSERSSpaceAllocation` object. -/// -+ (DBUSERSSpaceAllocation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSSpaceUsage.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSSpaceUsage.h deleted file mode 100644 index 3cf02050..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSSpaceUsage.h +++ /dev/null @@ -1,82 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSSpaceAllocation; -@class DBUSERSSpaceUsage; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `SpaceUsage` struct. -/// -/// Information about a user's space usage and quota. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSSpaceUsage : NSObject - -#pragma mark - Instance fields - -/// The user's total space usage (bytes). -@property (nonatomic, readonly) NSNumber *used; - -/// The user's space allocation. -@property (nonatomic, readonly) DBUSERSSpaceAllocation *allocation; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param used The user's total space usage (bytes). -/// @param allocation The user's space allocation. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsed:(NSNumber *)used allocation:(DBUSERSSpaceAllocation *)allocation; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `SpaceUsage` struct. -/// -@interface DBUSERSSpaceUsageSerializer : NSObject - -/// -/// Serializes `DBUSERSSpaceUsage` instances. -/// -/// @param instance An instance of the `DBUSERSSpaceUsage` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSSpaceUsage` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSSpaceUsage *)instance; - -/// -/// Deserializes `DBUSERSSpaceUsage` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSSpaceUsage` API object. -/// -/// @return An instantiation of the `DBUSERSSpaceUsage` object. -/// -+ (DBUSERSSpaceUsage *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSTeam.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSTeam.h deleted file mode 100644 index 5044b6d5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSTeam.h +++ /dev/null @@ -1,81 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSTeam; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `Team` struct. -/// -/// Information about a team. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSTeam : NSObject - -#pragma mark - Instance fields - -/// The team's unique ID. -@property (nonatomic, readonly, copy) NSString *id_; - -/// The name of the team. -@property (nonatomic, readonly, copy) NSString *name; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param id_ The team's unique ID. -/// @param name The name of the team. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithId_:(NSString *)id_ name:(NSString *)name; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `Team` struct. -/// -@interface DBUSERSTeamSerializer : NSObject - -/// -/// Serializes `DBUSERSTeam` instances. -/// -/// @param instance An instance of the `DBUSERSTeam` API object. -/// -/// @return A json-compatible dictionary representation of the `DBUSERSTeam` API -/// object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSTeam *)instance; - -/// -/// Deserializes `DBUSERSTeam` instances. -/// -/// @param dict A json-compatible dictionary representation of the `DBUSERSTeam` -/// API object. -/// -/// @return An instantiation of the `DBUSERSTeam` object. -/// -+ (DBUSERSTeam *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSTeamSpaceAllocation.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSTeamSpaceAllocation.h deleted file mode 100644 index 08e8db71..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSTeamSpaceAllocation.h +++ /dev/null @@ -1,102 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBTEAMCOMMONMemberSpaceLimitType; -@class DBUSERSTeamSpaceAllocation; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `TeamSpaceAllocation` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSTeamSpaceAllocation : NSObject - -#pragma mark - Instance fields - -/// The total space currently used by the user's team (bytes). -@property (nonatomic, readonly) NSNumber *used; - -/// The total space allocated to the user's team (bytes). -@property (nonatomic, readonly) NSNumber *allocated; - -/// The total space allocated to the user within its team allocated space (0 -/// means that no restriction is imposed on the user's quota within its team). -@property (nonatomic, readonly) NSNumber *userWithinTeamSpaceAllocated; - -/// The type of the space limit imposed on the team member (off, alert_only, -/// stop_sync). -@property (nonatomic, readonly) DBTEAMCOMMONMemberSpaceLimitType *userWithinTeamSpaceLimitType; - -/// An accurate cached calculation of a team member's total space usage (bytes). -@property (nonatomic, readonly) NSNumber *userWithinTeamSpaceUsedCached; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param used The total space currently used by the user's team (bytes). -/// @param allocated The total space allocated to the user's team (bytes). -/// @param userWithinTeamSpaceAllocated The total space allocated to the user -/// within its team allocated space (0 means that no restriction is imposed on -/// the user's quota within its team). -/// @param userWithinTeamSpaceLimitType The type of the space limit imposed on -/// the team member (off, alert_only, stop_sync). -/// @param userWithinTeamSpaceUsedCached An accurate cached calculation of a -/// team member's total space usage (bytes). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithUsed:(NSNumber *)used - allocated:(NSNumber *)allocated - userWithinTeamSpaceAllocated:(NSNumber *)userWithinTeamSpaceAllocated - userWithinTeamSpaceLimitType:(DBTEAMCOMMONMemberSpaceLimitType *)userWithinTeamSpaceLimitType - userWithinTeamSpaceUsedCached:(NSNumber *)userWithinTeamSpaceUsedCached; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `TeamSpaceAllocation` struct. -/// -@interface DBUSERSTeamSpaceAllocationSerializer : NSObject - -/// -/// Serializes `DBUSERSTeamSpaceAllocation` instances. -/// -/// @param instance An instance of the `DBUSERSTeamSpaceAllocation` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSTeamSpaceAllocation` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSTeamSpaceAllocation *)instance; - -/// -/// Deserializes `DBUSERSTeamSpaceAllocation` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSTeamSpaceAllocation` API object. -/// -/// @return An instantiation of the `DBUSERSTeamSpaceAllocation` object. -/// -+ (DBUSERSTeamSpaceAllocation *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserAuthRoutes.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserAuthRoutes.h deleted file mode 100644 index 9f6569f5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserAuthRoutes.h +++ /dev/null @@ -1,98 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBTasks.h" - -@class DBCOMMONRootInfo; -@class DBNilObject; -@class DBUSERSBasicAccount; -@class DBUSERSCOMMONAccountType; -@class DBUSERSFullAccount; -@class DBUSERSFullTeam; -@class DBUSERSGetAccountBatchError; -@class DBUSERSGetAccountError; -@class DBUSERSName; -@class DBUSERSSpaceAllocation; -@class DBUSERSSpaceUsage; -@class DBUSERSUserFeature; -@class DBUSERSUserFeatureValue; -@class DBUSERSUserFeaturesGetValuesBatchError; -@class DBUSERSUserFeaturesGetValuesBatchResult; - -@protocol DBTransportClient; - -/// -/// Routes for the `Users` namespace -/// - -NS_ASSUME_NONNULL_BEGIN - -@interface DBUSERSUserAuthRoutes : NSObject - -/// An instance of the networking client that each route will use to submit a -/// request. -@property (nonatomic, readonly) id client; - -/// Initializes the `DBUSERSUserAuthRoutes` namespace container object with a -/// networking client. -- (instancetype)init:(id)client; - -/// -/// Get a list of feature values that may be configured for the current account. -/// -/// @param features A list of features in UserFeature. If the list is empty, this route will return -/// UserFeaturesGetValuesBatchError. -/// -/// @return Through the response callback, the caller will receive a `DBUSERSUserFeaturesGetValuesBatchResult` object on -/// success or a `DBUSERSUserFeaturesGetValuesBatchError` object on failure. -/// -- (DBRpcTask *)featuresGetValues: - (NSArray *)features; - -/// -/// Get information about a user's account. -/// -/// @param accountId A user's account identifier. -/// -/// @return Through the response callback, the caller will receive a `DBUSERSBasicAccount` object on success or a -/// `DBUSERSGetAccountError` object on failure. -/// -- (DBRpcTask *)getAccount:(NSString *)accountId; - -/// -/// Get information about multiple user accounts. At most 300 accounts may be queried per request. -/// -/// @param accountIds List of user account identifiers. Should not contain any duplicate account IDs. -/// -/// @return Through the response callback, the caller will receive a `NSArray` object on success -/// or a `DBUSERSGetAccountBatchError` object on failure. -/// -- (DBRpcTask *, DBUSERSGetAccountBatchError *> *)getAccountBatch: - (NSArray *)accountIds; - -/// -/// Get information about the current user's account. -/// -/// -/// @return Through the response callback, the caller will receive a `DBUSERSFullAccount` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)getCurrentAccount; - -/// -/// Get the space usage information for the current user's account. -/// -/// -/// @return Through the response callback, the caller will receive a `DBUSERSSpaceUsage` object on success or a `void` -/// object on failure. -/// -- (DBRpcTask *)getSpaceUsage; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeature.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeature.h deleted file mode 100644 index a43114a5..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeature.h +++ /dev/null @@ -1,141 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeature; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeature` union. -/// -/// A set of features that a Dropbox User account may have configured. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeature : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSUserFeatureTag` enum type represents the possible tag states -/// with which the `DBUSERSUserFeature` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSUserFeatureTag) { - /// This feature contains information about how the user's Paper files are - /// stored. - DBUSERSUserFeaturePaperAsFiles, - - /// This feature allows users to lock files in order to restrict other users - /// from editing them. - DBUSERSUserFeatureFileLocking, - - /// (no description). - DBUSERSUserFeatureOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSUserFeatureTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "paper_as_files". -/// -/// Description of the "paper_as_files" tag state: This feature contains -/// information about how the user's Paper files are stored. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAsFiles; - -/// -/// Initializes union class with tag state of "file_locking". -/// -/// Description of the "file_locking" tag state: This feature allows users to -/// lock files in order to restrict other users from editing them. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLocking; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "paper_as_files". -/// -/// @return Whether the union's current tag state has value "paper_as_files". -/// -- (BOOL)isPaperAsFiles; - -/// -/// Retrieves whether the union's current tag state has value "file_locking". -/// -/// @return Whether the union's current tag state has value "file_locking". -/// -- (BOOL)isFileLocking; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSUserFeature` union. -/// -@interface DBUSERSUserFeatureSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeature` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeature` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeature` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeature *)instance; - -/// -/// Deserializes `DBUSERSUserFeature` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeature` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeature` object. -/// -+ (DBUSERSUserFeature *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeatureValue.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeatureValue.h deleted file mode 100644 index 2dfd7651..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeatureValue.h +++ /dev/null @@ -1,153 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSFileLockingValue; -@class DBUSERSPaperAsFilesValue; -@class DBUSERSUserFeatureValue; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeatureValue` union. -/// -/// Values that correspond to entries in UserFeature. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeatureValue : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSUserFeatureValueTag` enum type represents the possible tag -/// states with which the `DBUSERSUserFeatureValue` union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSUserFeatureValueTag) { - /// (no description). - DBUSERSUserFeatureValuePaperAsFiles, - - /// (no description). - DBUSERSUserFeatureValueFileLocking, - - /// (no description). - DBUSERSUserFeatureValueOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSUserFeatureValueTag tag; - -/// (no description). @note Ensure the `isPaperAsFiles` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBUSERSPaperAsFilesValue *paperAsFiles; - -/// (no description). @note Ensure the `isFileLocking` method returns true -/// before accessing, otherwise a runtime exception will be raised. -@property (nonatomic, readonly) DBUSERSFileLockingValue *fileLocking; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "paper_as_files". -/// -/// @param paperAsFiles (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithPaperAsFiles:(DBUSERSPaperAsFilesValue *)paperAsFiles; - -/// -/// Initializes union class with tag state of "file_locking". -/// -/// @param fileLocking (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFileLocking:(DBUSERSFileLockingValue *)fileLocking; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value "paper_as_files". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `paperAsFiles` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "paper_as_files". -/// -- (BOOL)isPaperAsFiles; - -/// -/// Retrieves whether the union's current tag state has value "file_locking". -/// -/// @note Call this method and ensure it returns true before accessing the -/// `fileLocking` property, otherwise a runtime exception will be thrown. -/// -/// @return Whether the union's current tag state has value "file_locking". -/// -- (BOOL)isFileLocking; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSUserFeatureValue` union. -/// -@interface DBUSERSUserFeatureValueSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeatureValue` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeatureValue` API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeatureValue` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeatureValue *)instance; - -/// -/// Deserializes `DBUSERSUserFeatureValue` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeatureValue` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeatureValue` object. -/// -+ (DBUSERSUserFeatureValue *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchArg.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchArg.h deleted file mode 100644 index 721d25bc..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchArg.h +++ /dev/null @@ -1,80 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeature; -@class DBUSERSUserFeaturesGetValuesBatchArg; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeaturesGetValuesBatchArg` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeaturesGetValuesBatchArg : NSObject - -#pragma mark - Instance fields - -/// A list of features in UserFeature. If the list is empty, this route will -/// return UserFeaturesGetValuesBatchError. -@property (nonatomic, readonly) NSArray *features; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param features A list of features in UserFeature. If the list is empty, -/// this route will return UserFeaturesGetValuesBatchError. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithFeatures:(NSArray *)features; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserFeaturesGetValuesBatchArg` struct. -/// -@interface DBUSERSUserFeaturesGetValuesBatchArgSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeaturesGetValuesBatchArg` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeaturesGetValuesBatchArg` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchArg` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeaturesGetValuesBatchArg *)instance; - -/// -/// Deserializes `DBUSERSUserFeaturesGetValuesBatchArg` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchArg` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeaturesGetValuesBatchArg` -/// object. -/// -+ (DBUSERSUserFeaturesGetValuesBatchArg *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchError.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchError.h deleted file mode 100644 index a88a3a7a..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchError.h +++ /dev/null @@ -1,124 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeaturesGetValuesBatchError; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeaturesGetValuesBatchError` union. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeaturesGetValuesBatchError : NSObject - -#pragma mark - Instance fields - -/// The `DBUSERSUserFeaturesGetValuesBatchErrorTag` enum type represents the -/// possible tag states with which the `DBUSERSUserFeaturesGetValuesBatchError` -/// union can exist. -typedef NS_CLOSED_ENUM(NSInteger, DBUSERSUserFeaturesGetValuesBatchErrorTag) { - /// At least one UserFeature must be included in the - /// UserFeaturesGetValuesBatchArg.features list. - DBUSERSUserFeaturesGetValuesBatchErrorEmptyFeaturesList, - - /// (no description). - DBUSERSUserFeaturesGetValuesBatchErrorOther, - -}; - -/// Represents the union's current tag state. -@property (nonatomic, readonly) DBUSERSUserFeaturesGetValuesBatchErrorTag tag; - -#pragma mark - Constructors - -/// -/// Initializes union class with tag state of "empty_features_list". -/// -/// Description of the "empty_features_list" tag state: At least one UserFeature -/// must be included in the UserFeaturesGetValuesBatchArg.features list. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithEmptyFeaturesList; - -/// -/// Initializes union class with tag state of "other". -/// -/// @return An initialized instance. -/// -- (instancetype)initWithOther; - -- (instancetype)init NS_UNAVAILABLE; - -#pragma mark - Tag state methods - -/// -/// Retrieves whether the union's current tag state has value -/// "empty_features_list". -/// -/// @return Whether the union's current tag state has value -/// "empty_features_list". -/// -- (BOOL)isEmptyFeaturesList; - -/// -/// Retrieves whether the union's current tag state has value "other". -/// -/// @return Whether the union's current tag state has value "other". -/// -- (BOOL)isOther; - -/// -/// Retrieves string value of union's current tag state. -/// -/// @return A human-readable string representing the union's current tag state. -/// -- (NSString *)tagName; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `DBUSERSUserFeaturesGetValuesBatchError` -/// union. -/// -@interface DBUSERSUserFeaturesGetValuesBatchErrorSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeaturesGetValuesBatchError` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeaturesGetValuesBatchError` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchError` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeaturesGetValuesBatchError *)instance; - -/// -/// Deserializes `DBUSERSUserFeaturesGetValuesBatchError` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchError` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeaturesGetValuesBatchError` -/// object. -/// -+ (DBUSERSUserFeaturesGetValuesBatchError *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchResult.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchResult.h deleted file mode 100644 index 149f7607..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUSERSUserFeaturesGetValuesBatchResult.h +++ /dev/null @@ -1,78 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import - -#import "DBSerializableProtocol.h" - -@class DBUSERSUserFeatureValue; -@class DBUSERSUserFeaturesGetValuesBatchResult; - -NS_ASSUME_NONNULL_BEGIN - -#pragma mark - API Object - -/// -/// The `UserFeaturesGetValuesBatchResult` struct. -/// -/// This class implements the `DBSerializable` protocol (serialize and -/// deserialize instance methods), which is required for all Obj-C SDK API route -/// objects. -/// -@interface DBUSERSUserFeaturesGetValuesBatchResult : NSObject - -#pragma mark - Instance fields - -/// (no description). -@property (nonatomic, readonly) NSArray *values; - -#pragma mark - Constructors - -/// -/// Full constructor for the struct (exposes all instance variables). -/// -/// @param values (no description). -/// -/// @return An initialized instance. -/// -- (instancetype)initWithValues:(NSArray *)values; - -- (instancetype)init NS_UNAVAILABLE; - -@end - -#pragma mark - Serializer Object - -/// -/// The serialization class for the `UserFeaturesGetValuesBatchResult` struct. -/// -@interface DBUSERSUserFeaturesGetValuesBatchResultSerializer : NSObject - -/// -/// Serializes `DBUSERSUserFeaturesGetValuesBatchResult` instances. -/// -/// @param instance An instance of the `DBUSERSUserFeaturesGetValuesBatchResult` -/// API object. -/// -/// @return A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchResult` API object. -/// -+ (nullable NSDictionary *)serialize:(DBUSERSUserFeaturesGetValuesBatchResult *)instance; - -/// -/// Deserializes `DBUSERSUserFeaturesGetValuesBatchResult` instances. -/// -/// @param dict A json-compatible dictionary representation of the -/// `DBUSERSUserFeaturesGetValuesBatchResult` API object. -/// -/// @return An instantiation of the `DBUSERSUserFeaturesGetValuesBatchResult` -/// object. -/// -+ (DBUSERSUserFeaturesGetValuesBatchResult *)deserialize:(NSDictionary *)dict; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUserBaseClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUserBaseClient.h deleted file mode 100644 index 23158e8b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUserBaseClient.h +++ /dev/null @@ -1,75 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Auto-generated by Stone, do not modify. -/// - -#import "DBACCOUNTUserAuthRoutes.h" -#import "DBAUTHUserAuthRoutes.h" -#import "DBCHECKUserAuthRoutes.h" -#import "DBCONTACTSUserAuthRoutes.h" -#import "DBFILEPROPERTIESUserAuthRoutes.h" -#import "DBFILEREQUESTSUserAuthRoutes.h" -#import "DBFILESUserAuthRoutes.h" -#import "DBOPENIDUserAuthRoutes.h" -#import "DBPAPERUserAuthRoutes.h" -#import "DBRequestErrors.h" -#import "DBSHARINGUserAuthRoutes.h" -#import "DBTasks.h" -#import "DBUSERSUserAuthRoutes.h" -#import - -NS_ASSUME_NONNULL_BEGIN - -@protocol DBTransportClient; - -/// -/// Base client object that contains an instance field for each namespace, each -/// of which contains references to all routes within that namespace. -/// Fully-implemented API clients will inherit this class. -/// -@interface DBUserBaseClient : NSObject { - -@protected - id _transportClient; -} - -/// Routes within the `account` namespace. -@property (nonatomic, readonly) DBACCOUNTUserAuthRoutes *accountRoutes; - -/// Routes within the `auth` namespace. -@property (nonatomic, readonly) DBAUTHUserAuthRoutes *authRoutes; - -/// Routes within the `check` namespace. -@property (nonatomic, readonly) DBCHECKUserAuthRoutes *checkRoutes; - -/// Routes within the `contacts` namespace. -@property (nonatomic, readonly) DBCONTACTSUserAuthRoutes *contactsRoutes; - -/// Routes within the `fileProperties` namespace. -@property (nonatomic, readonly) DBFILEPROPERTIESUserAuthRoutes *filePropertiesRoutes; - -/// Routes within the `fileRequests` namespace. -@property (nonatomic, readonly) DBFILEREQUESTSUserAuthRoutes *fileRequestsRoutes; - -/// Routes within the `files` namespace. -@property (nonatomic, readonly) DBFILESUserAuthRoutes *filesRoutes; - -/// Routes within the `openid` namespace. -@property (nonatomic, readonly) DBOPENIDUserAuthRoutes *openidRoutes; - -/// Routes within the `paper` namespace. -@property (nonatomic, readonly) DBPAPERUserAuthRoutes *paperRoutes; - -/// Routes within the `sharing` namespace. -@property (nonatomic, readonly) DBSHARINGUserAuthRoutes *sharingRoutes; - -/// Routes within the `users` namespace. -@property (nonatomic, readonly) DBUSERSUserAuthRoutes *usersRoutes; - -/// Initializes the `DBUserBaseClient` object with a networking client. -- (instancetype)initWithTransportClient:(id)client; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUserClient.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUserClient.h deleted file mode 100644 index 779d60b9..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/DBUserClient.h +++ /dev/null @@ -1,128 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// - -#import - -#import "DBCOMMONPathRoot.h" -#import "DBUserBaseClient.h" - -@class DBTransportDefaultClient; -@class DBTransportDefaultConfig; -@protocol DBAccessTokenProvider; -@class DBAccessToken; -@class DBOAuthManager; - -NS_ASSUME_NONNULL_BEGIN - -/// -/// Dropbox User API Client for all endpoints with auth type "user". -/// -/// This is the SDK user's primary interface with the Dropbox API. Routes can be accessed via each "namespace" object in -/// the instance fields of its parent, `DBUserBaseClient`. To see a full list of the User API endpoints available, -/// please visit: https://www.dropbox.com/developers/documentation/http/documentation. -/// -@interface DBUserClient : DBUserBaseClient - -/// Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects are each -/// associated with a particular Dropbox account. -@property (nonatomic, readonly, copy, nullable) NSString *tokenUid; - -/// -/// Convenience initializer. -/// -/// Uses standard network configuration parameters. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken; - -/// -/// Convenience initializer. -/// -/// @param accessToken The Dropbox OAuth 2.0 access token used to make requests. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken The (long-lived) Dropbox OAuth 2.0 access token used to make requests. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(NSString *)accessToken - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessTokenProvider A `DBAccessTokenProvider` that provides access token and token refresh functionality. -/// @param tokenUid Identifies a unique Dropbox account. Used for the multi Dropbox account case where client objects -/// are each associated with a particular Dropbox account. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessTokenProvider:(id)accessTokenProvider - tokenUid:(nullable NSString *)tokenUid - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// -/// Convenience initializer. -/// -/// @param accessToken An access token object. -/// @param oauthManager The oauthManager instance. -/// @param transportConfig A wrapper around the different parameters that can be set to change network calling behavior. -/// `DBTransportDefaultConfig` offers a number of different constructors to customize networking settings. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithAccessToken:(DBAccessToken *)accessToken - oauthManager:(DBOAuthManager *)oauthManager - transportConfig:(nullable DBTransportDefaultConfig *)transportConfig; - -/// Designated initializer. -/// -/// @param client A `DBTransportDefaultClient` used to make network requests. -/// -/// @return An initialized instance. -/// -- (instancetype)initWithTransportClient:(DBTransportDefaultClient *)client NS_DESIGNATED_INITIALIZER; - -/// -/// Returns a `DBUserClient` instance that can be used to make API calls with given path root value. -/// @param pathRoot Value of the path root object which will be used as Dropbox-Api-Path-Root header. -/// -/// @return An initialized User API client instance. -/// -- (DBUserClient *)withPathRoot:(DBCOMMONPathRoot *)pathRoot; - -/// -/// Returns the current access token used to make API requests. -/// -- (nullable NSString *)accessToken; - -/// -/// Returns whether the client is authorized. -/// -/// @return Whether the client currently has a non-nil OAuth 2.0 access token. -/// -- (BOOL)isAuthorized; - -@end - -NS_ASSUME_NONNULL_END diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/ObjectiveDropboxOfficial.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/ObjectiveDropboxOfficial.h deleted file mode 100644 index 2c2cbe7e..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Headers/ObjectiveDropboxOfficial.h +++ /dev/null @@ -1,35 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Umbrella import for importing as a framework -/// - -#import "TargetConditionals.h" - -#import -#import - -#if TARGET_OS_IPHONE -#import -#import -#elif TARGET_OS_MAC -#import -#import -#endif - -//! Project version number for ObjectiveDropboxOfficial. -FOUNDATION_EXPORT double ObjectiveDropboxOfficialVersionNumber; - -//! Project version string for ObjectiveDropboxOfficial. -FOUNDATION_EXPORT const unsigned char ObjectiveDropboxOfficialVersionString[]; - -// In this header, you should import all the public headers of your framework using statements like #import -// - -#import - -#if TARGET_OS_IPHONE -#import -#elif TARGET_OS_MAC -#import -#endif diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Modules/module.modulemap b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Modules/module.modulemap deleted file mode 100644 index b3dfe02b..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Modules/module.modulemap +++ /dev/null @@ -1,6 +0,0 @@ -framework module ObjectiveDropboxOfficial { - umbrella header "ObjectiveDropboxOfficial.h" - export * - - module * { export * } -} diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/ObjectiveDropboxOfficial b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/ObjectiveDropboxOfficial deleted file mode 100755 index 69e6f9c5..00000000 Binary files a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/ObjectiveDropboxOfficial and /dev/null differ diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/PrivateHeaders/ObjectiveDropboxOfficialLib.h b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/PrivateHeaders/ObjectiveDropboxOfficialLib.h deleted file mode 100644 index f930b47d..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/PrivateHeaders/ObjectiveDropboxOfficialLib.h +++ /dev/null @@ -1,15 +0,0 @@ -/// -/// Copyright (c) 2016 Dropbox, Inc. All rights reserved. -/// -/// Umbrella import for importing as a library -/// - -#import "TargetConditionals.h" - -#import "DBSDKImportsShared.h" - -#if TARGET_OS_IPHONE -#import "DBSDKImports-iOS.h" -#elif TARGET_OS_MAC -#import "DBSDKImports-macOS.h" -#endif diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Resources/Info.plist b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Resources/Info.plist deleted file mode 100644 index e84c4b49..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/A/Resources/Info.plist +++ /dev/null @@ -1,50 +0,0 @@ - - - - - BuildMachineOSBuild - 25F71 - CFBundleDevelopmentRegion - en - CFBundleExecutable - ObjectiveDropboxOfficial - CFBundleIdentifier - com.dropbox.ObjectiveDropboxOfficial - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ObjectiveDropboxOfficial - CFBundlePackageType - FMWK - CFBundleShortVersionString - 7.4.2 - CFBundleSignature - ???? - CFBundleSupportedPlatforms - - MacOSX - - CFBundleVersion - 1 - DTCompiler - com.apple.compilers.llvm.clang.1_0 - DTPlatformBuild - 25F70 - DTPlatformName - macosx - DTPlatformVersion - 26.5 - DTSDKBuild - 25F70 - DTSDKName - macosx26.5 - DTXcode - 2650 - DTXcodeBuild - 17F42 - LSMinimumSystemVersion - 10.13 - NSHumanReadableCopyright - Copyright © 2016 Dropbox. All rights reserved. - - diff --git a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/Current b/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/Current deleted file mode 120000 index 8c7e5a66..00000000 --- a/Frameworks/ObjectiveDropboxOfficial.xcframework/macos-arm64_x86_64/ObjectiveDropboxOfficial.framework/Versions/Current +++ /dev/null @@ -1 +0,0 @@ -A \ No newline at end of file diff --git a/Frameworks/README.md b/Frameworks/README.md deleted file mode 100644 index 866eb592..00000000 --- a/Frameworks/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# AppBox Framework - -AppBox framework includes the services key and code that we can't publish publically. It's power AppBox Email service, short URLs service, and Dropbox services. diff --git a/README.md b/README.md index 7fd4891b..a6b870bf 100644 --- a/README.md +++ b/README.md @@ -42,31 +42,31 @@ If you face any issue using above command then you can manually install AppBox b | Step | Description | | :--- | :--- | -| 1. | Link your Dropbox account with AppBox. | -| 2. | Select and upload the iOS application. | -| 3. | Send the link to your testers, clients, friends or even use it yourself. | -| 4. | Open the link in the browser on the device and click on install. | +| 1. | Link your Dropbox account with AppBox. | +| 2. | Select or drag the IPA file and click upload. | +| 3. | Send the link to your testers, clients, friends or even use it yourself. | +| 4. | Open the link in the browser on the device and click on install. | # Current Version Screenshot ### Upload IPA -![](docs/Images/Readme/AB.png) -![](docs/Images/Readme/ABIPAUpload.png) +![](docs/Images/Readme/AB.webp) +![](docs/Images/Readme/ABIPAUpload.webp) ### Share URL -![](docs/Images/Readme/ABShareURL.png) +![](docs/Images/Readme/ABShareURL.webp) ### Dashboard -![](docs/Images/Readme/ABDashboard.png) +![](docs/Images/Readme/ABDashboard.webp) ### Preferences -![](docs/Images/Readme/ABPref1.png) -![](docs/Images/Readme/ABPref2.png) -![](docs/Images/Readme/ABPref3.png) +![](docs/Images/Readme/ABPref1.webp) +![](docs/Images/Readme/ABPref2.webp) +![](docs/Images/Readme/ABPref3.webp) ### Installation and All Builds WebPage -![](docs/Images/Readme/ABWeb1.png) ![](docs/Images/Readme/ABWeb2.png) +![](docs/Images/Readme/ABWeb1.webp) ![](docs/Images/Readme/ABWeb2.webp) # Contributions diff --git a/Scripts/build-release.sh b/Scripts/build-release.sh new file mode 100755 index 00000000..d56c92cd --- /dev/null +++ b/Scripts/build-release.sh @@ -0,0 +1,627 @@ +#!/bin/bash +# +# build-release.sh +# AppBox +# +# Builds, signs (Developer ID) and packages the shippable products into one versioned +# release directory: +# +# dist/AppBox-/ +# AppBox.dmg the GUI app, drag-to-Applications (what getappbox.com/download serves) +# AppBox.app.zip the same AppBox.app, zipped (what install.sh downloads) +# appboxcli.zip the standalone CLI (binary + AppBoxCore resource bundle + install.sh) +# +# Usage: Scripts/build-release.sh [actions] [targets] [options] +# Run Scripts/build-release.sh --help for the flag list. + +set -euo pipefail + +REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)" +PROJECT="$REPO_ROOT/AppBox.xcodeproj" +CONFIGURATION="Release" + +TEAM_ID="${APPBOX_TEAM_ID:-3PQ7E4L589}" +SIGN_IDENTITY="${APPBOX_SIGN_IDENTITY:-Developer ID Application}" +KEYCHAIN_PROFILE="${APPBOX_NOTARY_PROFILE:-}" +OUTPUT_DIR="$REPO_ROOT/dist" + +# Actions (composable; no action flag at all means --build). +RUN_TESTS=0 +DO_BUILD=0 +NOTARIZE=0 + +# Targets (neither flag means both). +BUILD_GUI=0 +BUILD_CLI=0 + +SIGN=1 +# On by default: getappbox.com/download links straight at the release's +# AppBox.dmg, so a GUI release without one 404s for every visitor. +MAKE_DMG=1 +CLEAN=0 +VERBOSE=0 +VERSION_OVERRIDE="" +TEST_SUITES="all" +TEST_TIMEOUT="${APPBOX_TEST_TIMEOUT:-1200}" + +RED=$'\033[1;31m'; GREEN=$'\033[1;32m'; YELLOW=$'\033[1;33m'; BLUE=$'\033[1;34m'; RESET=$'\033[0m' +log() { printf '%s==>%s %s\n' "$BLUE" "$RESET" "$*"; } +ok() { printf '%s ✓%s %s\n' "$GREEN" "$RESET" "$*"; } +warn() { printf '%swarning:%s %s\n' "$YELLOW" "$RESET" "$*" >&2; } +die() { printf '%serror:%s %s\n' "$RED" "$RESET" "$*" >&2; exit 1; } + +usage() { + cat <<'USAGE' +Build, sign and package the AppBox GUI app and the standalone appboxcli tool. + + Scripts/build-release.sh [actions] [targets] [options] + +Actions — combine freely. Short flags cluster, so -tb is -t -b. Default: -b. + -t, --test Run the unit tests. On failure nothing is built. + -b, --build Build, sign and package. + -n, --notarize Notarize and staple (implies -b). + +Targets — default: both. + -g, --gui AppBox.app. + -c, --cli The standalone appboxcli. + +Options + -s, --suite Suites -t runs (default: all). core = the AppBoxCore package, + app = the AppBoxTests test plan. + -T, --test-timeout Per-suite watchdog (default: 1200). See the note below. + -d, --dmg Produce a DMG for the GUI (implies -b). On by default. + --no-dmg Skip the DMG. Faster, but do not ship such a build: + getappbox.com/download links directly at AppBox.dmg. + -i, --identity Signing identity (default: "Developer ID Application"). + -k, --keychain-profile

notarytool keychain profile to notarize with. + -V, --release-version Override the version in the release directory name. + -o, --output

Output directory (default: dist/). + -C, --clean Remove the output directory first. + -v, --verbose Stream full xcodebuild and test output. + --team-id Development team (default: 3PQ7E4L589). + --no-sign Skip code signing (local smoke builds; not distributable). + -h, --help Show this help. + +Every long option also accepts --name=value. + +Examples + Scripts/build-release.sh -tb test, then build both products + Scripts/build-release.sh -t -s core only the AppBoxCore package tests + Scripts/build-release.sh -bc build only the standalone CLI + Scripts/build-release.sh -tbndk AppBox test, build, DMG, notarize + staple + +Tests + `core` runs `xcrun swift test` in AppBoxCore (never bare `swift` — the swiftly toolchain on + PATH cannot build against the Xcode SDK). `app` runs the AppBoxTests test plan, whose host + app is known to hang at launch in DropboxSession.setup on some machines — the watchdog kills + it and the run fails rather than blocking a release; `-s core` skips it entirely. + +Notarization credentials + Preferred: xcrun notarytool store-credentials "AppBox" \ + --apple-id --team-id --password + then run with -k AppBox (or APPBOX_NOTARY_PROFILE=AppBox). + Otherwise: export APPLE_ID, APPLE_TEAM_ID and APPLE_APP_PASSWORD. +USAGE +} + +# Short flags, split by whether they consume the next argument. Only the last flag of a +# cluster may take a value — `-tbndk AppBox` is `-t -b -n -d -k AppBox`. +NO_VALUE_SHORT_FLAGS="tbngcdCvh" +VALUE_SHORT_FLAGS="sTikVo" + +# Normalises the command line before parsing: splits --name=value pairs and unpacks short-flag +# clusters. A cluster the rules above cannot explain is passed through for the parser to reject. +expand_args() { + EXPANDED_ARGS=() + local arg name value index last char allowed clusterable + for arg in "$@"; do + case "$arg" in + --*=*) + name="${arg%%=*}" + value="${arg#*=}" + EXPANDED_ARGS+=("$name" "$value") + continue + ;; + --*) + ;; + -?*) + clusterable=1 + last=$(( ${#arg} - 1 )) + for (( index = 1; index <= last; index++ )); do + char="${arg:$index:1}" + if [ "$index" -eq "$last" ]; then + allowed="$NO_VALUE_SHORT_FLAGS$VALUE_SHORT_FLAGS" + else + allowed="$NO_VALUE_SHORT_FLAGS" + fi + case "$allowed" in + *"$char"*) ;; + *) clusterable=0; break ;; + esac + done + if [ "$clusterable" -eq 1 ]; then + for (( index = 1; index <= last; index++ )); do + EXPANDED_ARGS+=("-${arg:$index:1}") + done + continue + fi + ;; + esac + EXPANDED_ARGS+=("$arg") + done +} + +if [ $# -gt 0 ]; then + expand_args "$@" + set -- "${EXPANDED_ARGS[@]}" +fi + +while [ $# -gt 0 ]; do + case "$1" in + -t|--test) RUN_TESTS=1 ;; + -b|--build) DO_BUILD=1 ;; + -n|--notarize) NOTARIZE=1; DO_BUILD=1 ;; + -g|--gui) BUILD_GUI=1 ;; + -c|--cli) BUILD_CLI=1 ;; + -d|--dmg) MAKE_DMG=1; DO_BUILD=1 ;; + --no-dmg) MAKE_DMG=0 ;; + -s|--suite) TEST_SUITES="${2:?-s needs core, app or all}"; shift ;; + -T|--test-timeout) TEST_TIMEOUT="${2:?-T needs a value in seconds}"; shift ;; + -i|--identity) SIGN_IDENTITY="${2:?-i needs an identity name}"; shift ;; + -k|--keychain-profile) KEYCHAIN_PROFILE="${2:?-k needs a profile name}"; shift ;; + -V|--release-version) VERSION_OVERRIDE="${2:?-V needs a version}"; shift ;; + -o|--output) OUTPUT_DIR="${2:?-o needs a directory}"; shift ;; + -C|--clean) CLEAN=1 ;; + -v|--verbose) VERBOSE=1 ;; + --team-id) TEAM_ID="${2:?--team-id needs a value}"; shift ;; + --no-sign) SIGN=0 ;; + -h|--help) usage; exit 0 ;; + *) die "unknown option: $1 (try --help)" ;; + esac + shift +done + +case "$TEST_SUITES" in + core|app|all) ;; + *) die "-s/--suite takes core, app or all (got \"$TEST_SUITES\")" ;; +esac + +if [ "$RUN_TESTS" -eq 0 ] && [ "$DO_BUILD" -eq 0 ]; then + DO_BUILD=1 +fi +if [ "$BUILD_GUI" -eq 0 ] && [ "$BUILD_CLI" -eq 0 ]; then + BUILD_GUI=1 + BUILD_CLI=1 +fi + +# MARK: - Preflight + +preflight() { + command -v xcodebuild >/dev/null || die "xcodebuild not found. Install Xcode and run xcode-select --switch." + [ -d "$PROJECT" ] || die "AppBox.xcodeproj not found at $PROJECT" + + if [ "$DO_BUILD" -eq 0 ]; then + return 0 + fi + + if [ ! -f "$REPO_ROOT/.env" ]; then + warn "no .env at the repo root — the build will embed EMPTY secrets (see .env.example)." + warn "Dropbox login and the AppBox backend will not work in the produced binaries." + fi + + if [ "$SIGN" -eq 1 ]; then + security find-identity -v -p codesigning | grep -q "$SIGN_IDENTITY" \ + || die "no codesigning identity matching \"$SIGN_IDENTITY\" in the keychain." + else + warn "signing disabled — the artifacts are for local testing only." + [ "$NOTARIZE" -eq 0 ] || die "-n/--notarize requires signing; drop --no-sign." + fi + + if [ "$NOTARIZE" -eq 1 ] && [ -z "$KEYCHAIN_PROFILE" ]; then + : "${APPLE_ID:?--notarize needs --keychain-profile or APPLE_ID/APPLE_TEAM_ID/APPLE_APP_PASSWORD}" + : "${APPLE_APP_PASSWORD:?--notarize needs APPLE_APP_PASSWORD (an app-specific password)}" + fi +} + +resolve_version() { + if [ -n "$VERSION_OVERRIDE" ]; then + printf '%s' "$VERSION_OVERRIDE" + return + fi + local value + value="$(xcodebuild -project "$PROJECT" -target AppBox -configuration "$CONFIGURATION" -showBuildSettings 2>/dev/null \ + | awk -F' = ' '/[[:space:]]MARKETING_VERSION = /{ gsub(/^[ \t]+|[ \t]+$/, "", $2); print $2; exit }')" + [ -n "$value" ] || die "could not read MARKETING_VERSION from the project." + printf '%s' "$value" +} + +signing_args() { + if [ "$SIGN" -eq 1 ]; then + printf '%s\n' \ + "CODE_SIGN_STYLE=Manual" \ + "CODE_SIGN_IDENTITY=$SIGN_IDENTITY" \ + "DEVELOPMENT_TEAM=$TEAM_ID" \ + "PROVISIONING_PROFILE_SPECIFIER=" \ + "OTHER_CODE_SIGN_FLAGS=--timestamp" + else + printf '%s\n' \ + "CODE_SIGN_IDENTITY=-" \ + "CODE_SIGNING_REQUIRED=NO" \ + "CODE_SIGNING_ALLOWED=NO" + fi +} + +run_xcodebuild() { + local log="$1"; shift + if [ "$VERBOSE" -eq 1 ]; then + xcodebuild "$@" 2>&1 | tee "$log" + else + xcodebuild "$@" 2>&1 | tee "$log" | grep -E '(^\*\*|error:|warning: unable)' || true + fi + local status="${PIPESTATUS[0]}" + [ "$status" -eq 0 ] || { tail -40 "$log" >&2; die "xcodebuild failed — full log: $log"; } +} + +sign_path() { + [ "$SIGN" -eq 1 ] || return 0 + codesign --force --timestamp --options runtime --sign "$SIGN_IDENTITY" "$1" +} + +# MARK: - Tests + +# Runs a command to a log file under a watchdog, so a hung test host cannot stall a release. +# Returns the command's exit status, or 124 when the watchdog fired. +run_step_with_timeout() { + local seconds="$1" log="$2" + shift 2 + "$@" > "$log" 2>&1 & + local pid=$! tail_pid="" waited=0 status=0 + if [ "$VERBOSE" -eq 1 ]; then + tail -f -n +1 "$log" & tail_pid=$! + fi + while kill -0 "$pid" 2>/dev/null; do + if [ "$waited" -ge "$seconds" ]; then + kill -TERM "$pid" 2>/dev/null || true + sleep 3 + kill -KILL "$pid" 2>/dev/null || true + [ -z "$tail_pid" ] || kill "$tail_pid" 2>/dev/null || true + wait "$pid" 2>/dev/null || true + return 124 + fi + sleep 5 + waited=$(( waited + 5 )) + if [ "$VERBOSE" -eq 0 ] && [ $(( waited % 120 )) -eq 0 ]; then + printf ' …still running (%dm)\n' "$(( waited / 60 ))" + fi + done + wait "$pid" || status=$? + [ -z "$tail_pid" ] || kill "$tail_pid" 2>/dev/null || true + return "$status" +} + +report_suite_failure() { + local name="$1" status="$2" log="$3" + if [ "$status" -eq 124 ]; then + warn "$name timed out after ${TEST_TIMEOUT}s (raise it with -T/--test-timeout)." + tail -5 "$log" | sed 's/^/ /' >&2 + else + warn "$name failed (exit $status)." + local highlights + highlights="$(grep -E "error:|XCTAssert|Test Case .* failed|Test run with .* failure" "$log" | tail -20 || true)" + if [ -n "$highlights" ]; then + printf '%s\n' "$highlights" | sed 's/^/ /' >&2 + else + tail -20 "$log" | sed 's/^/ /' >&2 + fi + fi + printf ' full log: %s\n' "$log" >&2 +} + +run_tests() { + local failed=0 status=0 + + if [ "$TEST_SUITES" = "all" ] || [ "$TEST_SUITES" = "core" ]; then + log "Testing the AppBoxCore package…" + local core_log="$OUTPUT_DIR/logs/test-core.log" + # `xcrun swift`, never bare `swift`: a swiftly-managed toolchain on PATH cannot build + # against the Xcode SDK. + if run_step_with_timeout "$TEST_TIMEOUT" "$core_log" \ + bash -c 'cd "$1" && exec xcrun swift test' _ "$REPO_ROOT/AppBoxCore"; then + ok "AppBoxCore package tests passed" + else + status=$? + report_suite_failure "the AppBoxCore package tests" "$status" "$core_log" + failed=1 + fi + fi + + if [ "$TEST_SUITES" = "all" ] || [ "$TEST_SUITES" = "app" ]; then + log "Running the AppBoxTests test plan…" + local app_log="$OUTPUT_DIR/logs/test-app.log" + if run_step_with_timeout "$TEST_TIMEOUT" "$app_log" \ + xcodebuild test -project "$PROJECT" -scheme AppBoxTests -testPlan AppBoxTests \ + -destination 'platform=macOS' \ + CODE_SIGN_IDENTITY= CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO; then + ok "AppBoxTests test plan passed" + else + status=$? + report_suite_failure "the AppBoxTests test plan" "$status" "$app_log" + [ "$status" -ne 124 ] || warn "the test host is known to hang at launch in DropboxSession.setup; -s core skips this suite." + failed=1 + fi + fi + + [ "$failed" -eq 0 ] || die "tests failed — nothing was built or packaged." + ok "all requested tests passed" +} + +# MARK: - GUI + +build_gui() { + local version="$1" + local archive="$OUTPUT_DIR/AppBox.xcarchive" + local export_dir="$OUTPUT_DIR/gui-export" + + log "Archiving AppBox.app ($CONFIGURATION)…" + rm -rf "$archive" "$export_dir" + local -a args + while IFS= read -r line; do args+=("$line"); done < <(signing_args) + run_xcodebuild "$OUTPUT_DIR/logs/gui-archive.log" archive \ + -project "$PROJECT" -scheme AppBox -configuration "$CONFIGURATION" \ + -destination 'generic/platform=macOS' \ + -archivePath "$archive" \ + "${args[@]}" + + if [ "$SIGN" -eq 1 ]; then + log "Exporting with the Developer ID profile…" + cat > "$OUTPUT_DIR/ExportOptions.plist" < + + + + method + developer-id + teamID + $TEAM_ID + signingStyle + manual + signingCertificate + $SIGN_IDENTITY + destination + export + stripSwiftSymbols + + + +PLIST + run_xcodebuild "$OUTPUT_DIR/logs/gui-export.log" -exportArchive \ + -archivePath "$archive" \ + -exportOptionsPlist "$OUTPUT_DIR/ExportOptions.plist" \ + -exportPath "$export_dir" + else + mkdir -p "$export_dir" + cp -R "$archive/Products/Applications/AppBox.app" "$export_dir/" + fi + + GUI_APP="$export_dir/AppBox.app" + [ -d "$GUI_APP" ] || die "AppBox.app not produced (looked in $export_dir)" + + local embedded="$GUI_APP/Contents/SharedSupport/appboxcli" + [ -x "$embedded" ] || warn "appboxcli is missing from AppBox.app/Contents/SharedSupport — the app's CLI installer will not work." + [ -d "$GUI_APP/Contents/SharedSupport/AppBoxCore_AppBoxCore.bundle" ] \ + || warn "AppBoxCore_AppBoxCore.bundle is missing from SharedSupport — the embedded CLI cannot load the Core Data model." + + verify_signature "$GUI_APP" + ok "AppBox.app $version" +} + +# MARK: - Standalone CLI + +build_cli() { + local version="$1" + local derived="$OUTPUT_DIR/cli-derived" + local products="$derived/Build/Products/$CONFIGURATION" + + log "Building appboxcli ($CONFIGURATION)…" + rm -rf "$derived" + local -a args + while IFS= read -r line; do args+=("$line"); done < <(signing_args) + run_xcodebuild "$OUTPUT_DIR/logs/cli-build.log" build \ + -project "$PROJECT" -scheme AppBoxCLI -configuration "$CONFIGURATION" \ + -destination 'generic/platform=macOS' \ + -derivedDataPath "$derived" \ + "${args[@]}" + + [ -x "$products/appboxcli" ] || die "appboxcli not produced (looked in $products)" + [ -d "$products/AppBoxCore_AppBoxCore.bundle" ] \ + || die "AppBoxCore_AppBoxCore.bundle not produced — the CLI cannot load the Core Data model without it." + + CLI_STAGE="$OUTPUT_DIR/cli-stage/appboxcli" + rm -rf "$CLI_STAGE" + mkdir -p "$CLI_STAGE" + cp "$products/appboxcli" "$CLI_STAGE/" + cp -R "$products/AppBoxCore_AppBoxCore.bundle" "$CLI_STAGE/" + write_cli_installer "$CLI_STAGE/install.sh" + + # The resource bundle is signed first: it is nested payload, and the tool's own signature must be the last one written. + sign_path "$CLI_STAGE/AppBoxCore_AppBoxCore.bundle" + sign_path "$CLI_STAGE/appboxcli" + + verify_signature "$CLI_STAGE/appboxcli" + ok "appboxcli $version ($(du -h "$CLI_STAGE/appboxcli" | cut -f1 | tr -d ' '))" +} + +write_cli_installer() { + cat > "$1" <<'INSTALLER' +#!/bin/bash +# +# Installs the standalone AppBox CLI. The tool loads its Core Data model from the +# AppBoxCore_AppBoxCore.bundle sitting next to the executable, so both are copied into +# /lib/appbox and only the executable is symlinked onto PATH. +# +# ./install.sh install into /usr/local +# PREFIX=~/.local ./install.sh +# ./install.sh --uninstall + +set -euo pipefail + +PREFIX="${PREFIX:-/usr/local}" +LIB_DIR="$PREFIX/lib/appbox" +BIN_DIR="$PREFIX/bin" +SOURCE_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +uninstall() { + rm -f "$BIN_DIR/appboxcli" + rm -rf "$LIB_DIR" + echo "Removed appboxcli from $PREFIX." +} + +install_cli() { + mkdir -p "$LIB_DIR" "$BIN_DIR" + rm -rf "$LIB_DIR/appboxcli" "$LIB_DIR/AppBoxCore_AppBoxCore.bundle" + cp "$SOURCE_DIR/appboxcli" "$LIB_DIR/" + cp -R "$SOURCE_DIR/AppBoxCore_AppBoxCore.bundle" "$LIB_DIR/" + ln -sfn "$LIB_DIR/appboxcli" "$BIN_DIR/appboxcli" + echo "Installed appboxcli to $BIN_DIR/appboxcli" + case ":$PATH:" in + *":$BIN_DIR:"*) ;; + *) echo "Note: $BIN_DIR is not on your PATH." ;; + esac + echo "Run 'appboxcli login' to connect your Dropbox account." +} + +if [ "${1:-}" = "--uninstall" ]; then + action=uninstall +else + action=install_cli +fi + +if [ -w "$PREFIX" ] || [ -w "$(dirname "$PREFIX")" ]; then + "$action" +else + echo "$PREFIX is not writable; re-running with sudo." + exec sudo -p "Password for %u to write to $PREFIX: " PREFIX="$PREFIX" bash "${BASH_SOURCE[0]}" "$@" +fi +INSTALLER + chmod +x "$1" +} + +# MARK: - Verify / package / notarize + +verify_signature() { + local target="$1" + [ "$SIGN" -eq 1 ] || return 0 + codesign --verify --strict --verbose=1 "$target" 2>&1 | sed 's/^/ /' + codesign --display --verbose=2 "$target" 2>&1 | grep -E 'Authority=|TeamIdentifier=|flags=' | sed 's/^/ /' || true +} + +zip_artifact() { + local source="$1" destination="$2" + rm -f "$destination" + ditto -c -k --sequesterRsrc --keepParent "$source" "$destination" +} + +make_dmg() { + local app="$1" version="$2" + local dmg="$RELEASE_DIR/AppBox.dmg" + local staging="$OUTPUT_DIR/dmg-staging" + log "Building the DMG…" + rm -rf "$staging" "$dmg" + mkdir -p "$staging" + cp -R "$app" "$staging/" + ln -s /Applications "$staging/Applications" + hdiutil create -volname "AppBox $version" -srcfolder "$staging" -ov -format UDZO "$dmg" >/dev/null + rm -rf "$staging" + [ "$SIGN" -eq 0 ] || codesign --force --timestamp --sign "$SIGN_IDENTITY" "$dmg" + DMG_PATH="$dmg" + ok "$(basename "$dmg")" +} + +notarize_artifact() { + local artifact="$1" + local -a args=(submit "$artifact" --wait) + if [ -n "$KEYCHAIN_PROFILE" ]; then + args+=(--keychain-profile "$KEYCHAIN_PROFILE") + else + args+=(--apple-id "$APPLE_ID" --team-id "${APPLE_TEAM_ID:-$TEAM_ID}" --password "$APPLE_APP_PASSWORD") + fi + log "Notarizing $(basename "$artifact")…" + + # notarytool does not reliably exit non-zero on a completed-but-rejected submission, and a + # bare executable cannot be stapled, so the status is checked here rather than being left to + # a later stapler call. + local log_file="$OUTPUT_DIR/logs/notarize-$(basename "$artifact").log" + local status=0 + xcrun notarytool "${args[@]}" > "$log_file" 2>&1 || status=$? + sed 's/^/ /' "$log_file" + [ "$status" -eq 0 ] || die "notarytool failed for $(basename "$artifact") (exit $status) — see $log_file" + grep -qi 'status: Accepted' "$log_file" \ + || die "notarization was not accepted for $(basename "$artifact") — see $log_file, and 'xcrun notarytool log ' for the reasons." + + local submission_id + submission_id="$(awk '/id:/ { print $2; exit }' "$log_file")" + [ -z "$submission_id" ] || printf ' submission %s accepted\n' "$submission_id" +} + +# MARK: - Main + +preflight +[ "$CLEAN" -eq 0 ] || rm -rf "$OUTPUT_DIR" +mkdir -p "$OUTPUT_DIR/logs" + +[ "$RUN_TESTS" -eq 0 ] || run_tests + +if [ "$DO_BUILD" -eq 0 ]; then + exit 0 +fi + +VERSION="$(resolve_version)" +log "AppBox $VERSION — team $TEAM_ID, identity \"$SIGN_IDENTITY\"$([ "$SIGN" -eq 1 ] || printf ' (SIGNING OFF)')" + +RELEASE_DIR="$OUTPUT_DIR/AppBox-$VERSION" +mkdir -p "$RELEASE_DIR" + +GUI_APP="" +CLI_STAGE="" +DMG_PATH="" +ARTIFACTS=() + +if [ "$BUILD_GUI" -eq 1 ]; then + build_gui "$VERSION" + GUI_ZIP="$RELEASE_DIR/AppBox.app.zip" + zip_artifact "$GUI_APP" "$GUI_ZIP" + if [ "$NOTARIZE" -eq 1 ]; then + notarize_artifact "$GUI_ZIP" + xcrun stapler staple "$GUI_APP" + zip_artifact "$GUI_APP" "$GUI_ZIP" + spctl --assess --type exec --verbose=2 "$GUI_APP" 2>&1 | sed 's/^/ /' || warn "spctl rejected AppBox.app" + fi + ARTIFACTS+=("$GUI_ZIP") + if [ "$MAKE_DMG" -eq 1 ]; then + make_dmg "$GUI_APP" "$VERSION" + if [ "$NOTARIZE" -eq 1 ]; then + notarize_artifact "$DMG_PATH" + xcrun stapler staple "$DMG_PATH" + fi + ARTIFACTS+=("$DMG_PATH") + fi +fi + +if [ "$BUILD_CLI" -eq 1 ]; then + build_cli "$VERSION" + CLI_ZIP="$RELEASE_DIR/appboxcli.zip" + zip_artifact "$CLI_STAGE" "$CLI_ZIP" + if [ "$NOTARIZE" -eq 1 ]; then + notarize_artifact "$CLI_ZIP" + warn "a bare executable cannot be stapled; Gatekeeper checks the CLI's notarization online on first run." + fi + ARTIFACTS+=("$CLI_ZIP") +fi + +log "Release $VERSION — $RELEASE_DIR" +for artifact in "${ARTIFACTS[@]}"; do + printf ' %s %s %s\n' \ + "$(shasum -a 256 "$artifact" | cut -d' ' -f1)" \ + "$(du -h "$artifact" | cut -f1 | tr -d ' ')" \ + "$(basename "$artifact")" +done diff --git a/Scripts/generate-secrets.sh b/Scripts/generate-secrets.sh new file mode 100755 index 00000000..8e20f2f8 --- /dev/null +++ b/Scripts/generate-secrets.sh @@ -0,0 +1,41 @@ +#!/bin/sh +# Generates AppBox/Generated/AppBoxSecrets.swift (gitignored) from the repo-root .env file +# (gitignored; see .env.example) or, failing that, the process environment. Values default to +# empty strings so secret-less builds (fresh clones, CI) still compile — the backend client and +# Dropbox login just won't be functional until a .env is provided. +# +# Runs as a pre-compile build phase of both the AppBox and AppBoxCLI targets. +set -eu + +SRCROOT="${SRCROOT:-$(cd "$(dirname "$0")/.." && pwd)}" +ENV_FILE="$SRCROOT/.env" + +if [ -f "$ENV_FILE" ]; then + # shellcheck disable=SC1090 + set -a; . "$ENV_FILE"; set +a +fi + +APPBOX_CLIENT_TOKEN="${APPBOX_CLIENT_TOKEN:-}" +DROPBOX_APP_KEY="${DROPBOX_APP_KEY:-}" + +CONTENT="// Generated by Scripts/generate-secrets.sh from .env — DO NOT EDIT, DO NOT COMMIT (gitignored). +enum AppBoxSecrets { + /// Must match the backend's APPBOX_CLIENT_TOKEN (install-helper). + static let clientToken = \"$APPBOX_CLIENT_TOKEN\" + /// The Dropbox OAuth client_id (must match the Info.plist db- URL scheme). + static let dropboxAppKey = \"$DROPBOX_APP_KEY\" +}" + +# One file PER TARGET under a repo-root dir (never inside the CLI's synchronized folder). Each +# target's Generate-Secrets phase declares its own file as an output, so the new build system +# accepts it as a Sources input on a clean build; distinct paths avoid a "multiple commands +# produce" conflict when AppBox builds its AppBoxCLI dependency in the same graph. +for TARGET in AppBox AppBoxCLI; do + OUT_DIR="$SRCROOT/Generated/$TARGET" + mkdir -p "$OUT_DIR" + OUT="$OUT_DIR/AppBoxSecrets.swift" + # Only rewrite on change so incremental builds stay incremental. + if [ ! -f "$OUT" ] || [ "$(cat "$OUT")" != "$CONTENT" ]; then + printf '%s\n' "$CONTENT" > "$OUT" + fi +done diff --git a/docs/CommandLineInterface/Screenshots/ABCLIHelp.webp b/docs/CommandLineInterface/Screenshots/ABCLIHelp.webp index c6630441..b5478809 100644 Binary files a/docs/CommandLineInterface/Screenshots/ABCLIHelp.webp and b/docs/CommandLineInterface/Screenshots/ABCLIHelp.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIInstallPassword.webp b/docs/CommandLineInterface/Screenshots/ABCLIInstallPassword.webp new file mode 100644 index 00000000..ad44b8a1 Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLIInstallPassword.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIInstallSuccess.webp b/docs/CommandLineInterface/Screenshots/ABCLIInstallSuccess.webp index 50b14319..098e558e 100644 Binary files a/docs/CommandLineInterface/Screenshots/ABCLIInstallSuccess.webp and b/docs/CommandLineInterface/Screenshots/ABCLIInstallSuccess.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIInstallUninstallPassword.webp b/docs/CommandLineInterface/Screenshots/ABCLIInstallUninstallPassword.webp deleted file mode 100644 index cd5df6f2..00000000 Binary files a/docs/CommandLineInterface/Screenshots/ABCLIInstallUninstallPassword.webp and /dev/null differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIInstalled.webp b/docs/CommandLineInterface/Screenshots/ABCLIInstalled.webp new file mode 100644 index 00000000..16748726 Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLIInstalled.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIList.webp b/docs/CommandLineInterface/Screenshots/ABCLIList.webp new file mode 100644 index 00000000..9df3d1f4 Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLIList.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIMenu.webp b/docs/CommandLineInterface/Screenshots/ABCLIMenu.webp deleted file mode 100644 index c205e050..00000000 Binary files a/docs/CommandLineInterface/Screenshots/ABCLIMenu.webp and /dev/null differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLINotInstalled.webp b/docs/CommandLineInterface/Screenshots/ABCLINotInstalled.webp new file mode 100644 index 00000000..585c324d Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLINotInstalled.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIUninstallConfirm.webp b/docs/CommandLineInterface/Screenshots/ABCLIUninstallConfirm.webp index 7cc3e3aa..26f0ca52 100644 Binary files a/docs/CommandLineInterface/Screenshots/ABCLIUninstallConfirm.webp and b/docs/CommandLineInterface/Screenshots/ABCLIUninstallConfirm.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIUninstallPassword.webp b/docs/CommandLineInterface/Screenshots/ABCLIUninstallPassword.webp new file mode 100644 index 00000000..755737c0 Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLIUninstallPassword.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIUninstallSuccess.webp b/docs/CommandLineInterface/Screenshots/ABCLIUninstallSuccess.webp new file mode 100644 index 00000000..b1def634 Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLIUninstallSuccess.webp differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIUninstallSuccessfully.webp b/docs/CommandLineInterface/Screenshots/ABCLIUninstallSuccessfully.webp deleted file mode 100644 index dcb125f5..00000000 Binary files a/docs/CommandLineInterface/Screenshots/ABCLIUninstallSuccessfully.webp and /dev/null differ diff --git a/docs/CommandLineInterface/Screenshots/ABCLIUploadHelp.webp b/docs/CommandLineInterface/Screenshots/ABCLIUploadHelp.webp new file mode 100644 index 00000000..b62b9d69 Binary files /dev/null and b/docs/CommandLineInterface/Screenshots/ABCLIUploadHelp.webp differ diff --git a/docs/CommandLineInterface/index.md b/docs/CommandLineInterface/index.md index 19ac29e7..aae0ec31 100644 --- a/docs/CommandLineInterface/index.md +++ b/docs/CommandLineInterface/index.md @@ -1,7 +1,7 @@ --- title: Command Line Interface hide: - - navigation + - navigation --- # AppBox Command Line Interface (CLI) @@ -10,55 +10,70 @@ AppBox provides a powerful command-line interface that allows you to automate yo ## Prerequisites -Before installing/using the AppBox CLI tool, ensure that: -1. The AppBox application must be installed in `/Applications/AppBox.app` -2. You must have linked your Dropbox account with AppBox +Before installing/using the AppBox CLI tool, ensure that, AppBox application must be installed in `/Applications/AppBox.app` ## Installation -The AppBox CLI tool can be installed directly from the AppBox application using the built-in installation manager. +The AppBox CLI tool can be installed directly from the AppBox macOS application using the built-in installation manager. 1. Open the AppBox application -2. Click on CLI menu options -3. Click "Install CLI Tool" - ![](Screenshots/ABCLIMenu.webp) -4. System will prompt for authentication. Enter your system password to proceed. - ![](Screenshots/ABCLIInstallUninstallPassword.webp) +2. Open AppBox Preferences (`Cmd + ,`) +3. In the General tab, click "Install" in the "Command-Line Tool" section + ![](Screenshots/ABCLINotInstalled.webp) +4. AppBox will prompt you to enter your system password to authorize the installation. Enter your password and click "OK". + ![](Screenshots/ABCLIInstallPassword.webp) 5. AppBox will install the CLI tool and display a success message once the installation is complete. - ![](Screenshots/ABCLIInstallSuccess.webp) + ![](Screenshots/ABCLIInstallSuccess.webp) 6. After installation, you can verify that the CLI tool is properly installed by running: - ```bash - appboxcli -h - ``` - ![](Screenshots/ABCLIHelp.webp) + ```bash + appboxcli -h + ``` -The installation process will: -- Create a symbolic link to the CLI tool in `/usr/local/bin/` -- Make the `appboxcli` command available system-wide -- Configure proper permissions for command execution + ![](Screenshots/ABCLIHelp.webp) -This authentication is required because the CLI tool installation process needs administrative privileges to: -- Create symbolic links in system directories -- Set appropriate file permissions -- Configure the CLI environment +The installation process will: +- Create a symbolic link to the CLI tool in `/usr/local/bin/` +- Make the `appboxcli` command available system-wide ## Uninstallation To uninstall the CLI tool, AppBox provides an easy uninstallation process: 1. Open AppBox application -2. Click on CLI menu options -3. Click "Uninstall CLI Tool" -4. Confirm the uninstallation when prompted - ![](Screenshots/ABCLIUninstallConfirm.webp) -5. The system will remove the CLI tool and display a success message - ![](Screenshots/ABCLIUninstallSuccessfully.webp) +2. Open AppBox Preferences (`Cmd + ,`) +3. In the General tab, click "Uninstall" in the "Command-Line Tool" section + ![](Screenshots/ABCLIInstalled.webp) +4. AppBox will prompt you to confirm the uninstallation. Click "Yes" to proceed. + ![](Screenshots/ABCLIUninstallConfirm.webp) +5. AppBox will prompt you to enter your system password to authorize the uninstallation. Enter your password and click "OK". + ![](Screenshots/ABCLIUninstallPassword.webp) +6. The system will remove the CLI tool and display a success message + ![](Screenshots/ABCLIUninstallSuccess.webp) ## Command Reference The AppBox CLI tool provides comprehensive options for uploading and distributing your iOS applications. +### Subcommands + +`upload` is the default subcommand, so the historical `appboxcli --ipa …` invocation keeps working. + +![](Screenshots/ABCLIUploadHelp.webp) + + +The CLI also provides: + +| Command | Description | +| --- | --- | +| `appboxcli upload --ipa [options]` | Upload an IPA and create an install link (default). | +| `appboxcli login` | Log in to Dropbox from the terminal (opens the browser; paste the code back). | +| `appboxcli logout [--force]` | Log out of Dropbox. **Note:** the CLI and the AppBox app share one Dropbox session, so this signs the app out too (it asks for confirmation unless `--force`). | +| `appboxcli whoami` | Show the Dropbox account you're logged in as. | +| `appboxcli space` | Show Dropbox storage usage. | +| `appboxcli list` | List your upload history (the app's Dashboard data), newest first. | +| `appboxcli delete [--dashboard-only]` | Interactively delete a build from Dropbox and the dashboard; `--dashboard-only` leaves the Dropbox files in place. Quit AppBox.app first — both can't safely write the history store at once. | + ### Basic Syntax ```bash @@ -84,13 +99,10 @@ appboxcli --ipa app.ipa --emails "tester1@company.com,tester2@company.com" ``` #### `--message ` -Attach a personal message to the distribution email. You can use the following keywords in your message: -- `{BUILD_NAME}` - Application name -- `{BUILD_VERSION}` - Application version -- `{BUILD_NUMBER}` - Build number +Attach a personal message to the distribution email. It appears under "Message from the developer". ```bash -appboxcli --ipa app.ipa --message "New build {BUILD_NAME} v{BUILD_VERSION} is ready for testing!" +appboxcli --ipa app.ipa --message "New build v is ready for testing!" ``` #### `--keepsamelink` @@ -107,20 +119,12 @@ Specify a custom Dropbox folder name. By default, the folder name will be the ap appboxcli --ipa app.ipa --keepsamelink --dbfolder "MyCustomFolder" ``` -#### `--webhookmessage ` -Custom message to send along with Slack or Microsoft Teams notifications. You can use the following keywords in your message: -- `{BUILD_NAME}` - Application name -- `{BUILD_VERSION}` - Application version -- `{BUILD_NUMBER}` - Build number -- `{SHARE_URL}` - Installation link URL - -```bash -appboxcli --ipa app.ipa --webhookmessage "🚀 New build available: {SHARE_URL}" -``` - #### `--slackwebhook ` Slack Incoming Webhook URL to send notifications to a Slack channel. +!!! note + Since v4, webhook URLs must use `https://` — a plain `http://` webhook is rejected with exit code 127 (it would leak the message and the webhook token in transit). + ```bash appboxcli --ipa app.ipa --slackwebhook "https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK" ``` @@ -146,8 +150,8 @@ Upload and automatically send installation links to specific email addresses: ```bash appboxcli --ipa MyApp.ipa \ - --emails "dev-team@company.com,qa-team@company.com" \ - --message "New build {BUILD_NAME} v{BUILD_VERSION} is ready for testing. Please test the new features and report any issues." + --emails "dev-team@company.com,qa-team@company.com" \ + --message "New build v is ready for testing. Please test the new features and report any issues." ``` ### Complete CI/CD Example @@ -155,12 +159,11 @@ Full example with all options for a comprehensive CI/CD pipeline: ```bash appboxcli --ipa builds/MyApp.ipa \ - --emails "beta-testers@company.com" \ - --message "🎉 New beta build {BUILD_NAME} v{BUILD_VERSION} ({BUILD_NUMBER}) is now available!" \ - --keepsamelink \ - --dbfolder "MyApp-Beta" \ - --slackwebhook "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX" \ - --webhookmessage "📱 New iOS build deployed: {BUILD_NAME} v{BUILD_VERSION}\n🔗 Install: {SHARE_URL}" + --emails "beta-testers@company.com" \ + --message "🎉 New beta build v () is now available!" \ + --keepsamelink \ + --dbfolder "MyApp-Beta" \ + --slackwebhook "https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX" ``` ### Team Collaboration Example @@ -168,54 +171,53 @@ Upload with notifications to multiple platforms: ```bash appboxcli --ipa MyApp.ipa \ - --emails "mobile-team@company.com" \ - --message "Daily build {BUILD_NAME} ready for testing" \ - --slackwebhook "https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK" \ - --msteamswebhook "https://outlook.office.com/webhook/YOUR/TEAMS/WEBHOOK" \ - --webhookmessage "Daily build available: {SHARE_URL}" + --emails "mobile-team@company.com" \ + --message "Daily build ready for testing" \ + --slackwebhook "https://hooks.slack.com/services/YOUR/SLACK/WEBHOOK" \ + --msteamswebhook "https://outlook.office.com/webhook/YOUR/TEAMS/WEBHOOK" ``` ## Error Handling -The CLI tool provides comprehensive error handling and logging: -- **Exit Code 0**: Success -- **Exit Code 111**: Email sending failed -- **Exit Code 118**: Unable to create manifest file -- **Exit Code 119**: IPA file not found -- **Exit Code 120**: Info.plist not found in IPA -- **Exit Code 121**: Unable to unzip IPA file -- **Exit Code 124**: Upload failed -- **Exit Code 127**: Invalid command +The CLI tool provides comprehensive error handling and logging: +- **Exit Code 0**: Success +- **Exit Code 111**: Email sending failed +- **Exit Code 118**: Unable to create manifest file +- **Exit Code 119**: IPA file not found +- **Exit Code 120**: Info.plist not found in IPA +- **Exit Code 121**: Unable to unzip IPA file +- **Exit Code 124**: Upload failed +- **Exit Code 127**: Invalid command ## Troubleshooting ### Common Issues 1. **Command Not Found** - ```bash - # Verify installation - which appboxcli - # Reinstall if necessary through AppBox GUI - ``` + ```bash + # Verify installation + which appboxcli + # Reinstall if necessary through AppBox GUI + ``` 2. **Permission Denied** - ```bash - # Check file permissions - ls -la /usr/local/bin/appboxcli - # Reinstall CLI tool if permissions are incorrect - ``` + ```bash + # Check file permissions + ls -la /usr/local/bin/appboxcli + # Reinstall CLI tool if permissions are incorrect + ``` 3. **AppBox Not Found Error** - - Ensure AppBox.app is installed in `/Applications/` folder - - Verify AppBox is properly configured with Dropbox access + - Ensure AppBox.app is installed in `/Applications/` folder + - Verify AppBox is properly configured with Dropbox access 4. **Upload Failures** - - Check internet connection - - Verify Dropbox account has sufficient storage - - Ensure IPA file is valid and not corrupted + - Check internet connection + - Verify Dropbox account has sufficient storage + - Ensure IPA file is valid and not corrupted ### Getting Help -For additional help and support: -- Run `appboxcli --help` for command-line options -- Visit the [AppBox Documentation](https://docs.getappbox.com) -- Report issues on [GitHub](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/issues) +For additional help and support: +- Run `appboxcli --help` for command-line options +- Visit the [AppBox Documentation](https://docs.getappbox.com) +- Report issues on [GitHub](https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation/issues) diff --git a/docs/Features/uploadchunksize.md b/docs/Features/uploadchunksize.md index b07f5363..22d1e581 100644 --- a/docs/Features/uploadchunksize.md +++ b/docs/Features/uploadchunksize.md @@ -10,17 +10,13 @@ Chunk size determines how large IPA files are uploaded in segments. The default #### Examples - 150 MB means, If you'll try to upload a 2GB IPA then AppBox will break IPA into 14 part and upload them separately -`2GB = 2048MB` -`2048/150 = 13.65 ~= 14` -Now AppBox will break 2 GB IPA into 14 part and here 13 part will be equally separated into 150MB and last part will be the size of 98MB +`2GB = 2048MB` `2048/150 = 13.65 ~= 14` Now AppBox will break 2 GB IPA into 14 part and here 13 part will be equally separated into 150MB and last part will be the size of 98MB `(13 * 150) + 98 = 2048MB = 2GB` Similarly, if you'll select 100MB chunk size in preferences, AppBox will break 2GB (2048MB) IPA file into 21 part -`2GB = 2048MB` -`2048/100 = 20.48 ~= 21` -here 20 part will be equally separated into 100MB and last part will be the size of 48MB +`2GB = 2048MB` `2048/100 = 20.48 ~= 21` here 20 part will be equally separated into 100MB and last part will be the size of 48MB `(20 * 100) + 48 = 2048 MB = 2GB` \ No newline at end of file diff --git a/docs/Images/ABChangeFolder.webp b/docs/Images/ABChangeFolder.webp index cc22e407..2cb5caeb 100644 Binary files a/docs/Images/ABChangeFolder.webp and b/docs/Images/ABChangeFolder.webp differ diff --git a/docs/Images/ABDontShowOldBuild.webp b/docs/Images/ABDontShowOldBuild.webp index 7e454e67..36a72cf7 100644 Binary files a/docs/Images/ABDontShowOldBuild.webp and b/docs/Images/ABDontShowOldBuild.webp differ diff --git a/docs/Images/ABDownloadIPA.webp b/docs/Images/ABDownloadIPA.webp index 8490b56f..9a83d22e 100644 Binary files a/docs/Images/ABDownloadIPA.webp and b/docs/Images/ABDownloadIPA.webp differ diff --git a/docs/Images/ABKeepSameLink.webp b/docs/Images/ABKeepSameLink.webp index 47f151c9..1398f5ce 100644 Binary files a/docs/Images/ABKeepSameLink.webp and b/docs/Images/ABKeepSameLink.webp differ diff --git a/docs/Images/ABMoreDetails.webp b/docs/Images/ABMoreDetails.webp index f26faf9c..40a681db 100644 Binary files a/docs/Images/ABMoreDetails.webp and b/docs/Images/ABMoreDetails.webp differ diff --git a/docs/Images/ABUploadChunkSize.png b/docs/Images/ABUploadChunkSize.png new file mode 100644 index 00000000..4721da28 Binary files /dev/null and b/docs/Images/ABUploadChunkSize.png differ diff --git a/docs/Images/ABUploadChunkSize.webp b/docs/Images/ABUploadChunkSize.webp index bd97dcb9..034345f6 100644 Binary files a/docs/Images/ABUploadChunkSize.webp and b/docs/Images/ABUploadChunkSize.webp differ diff --git a/docs/Images/Readme/AB.png b/docs/Images/Readme/AB.png deleted file mode 100644 index e7f366aa..00000000 Binary files a/docs/Images/Readme/AB.png and /dev/null differ diff --git a/docs/Images/Readme/AB.webp b/docs/Images/Readme/AB.webp new file mode 100644 index 00000000..c943ce46 Binary files /dev/null and b/docs/Images/Readme/AB.webp differ diff --git a/docs/Images/Readme/ABDashboard.png b/docs/Images/Readme/ABDashboard.png deleted file mode 100644 index 4e333aad..00000000 Binary files a/docs/Images/Readme/ABDashboard.png and /dev/null differ diff --git a/docs/Images/Readme/ABDashboard.webp b/docs/Images/Readme/ABDashboard.webp new file mode 100644 index 00000000..ddf70562 Binary files /dev/null and b/docs/Images/Readme/ABDashboard.webp differ diff --git a/docs/Images/Readme/ABIPA.png b/docs/Images/Readme/ABIPA.png deleted file mode 100644 index 6be27185..00000000 Binary files a/docs/Images/Readme/ABIPA.png and /dev/null differ diff --git a/docs/Images/Readme/ABIPA.webp b/docs/Images/Readme/ABIPA.webp new file mode 100644 index 00000000..c4bf7939 Binary files /dev/null and b/docs/Images/Readme/ABIPA.webp differ diff --git a/docs/Images/Readme/ABIPAUpload.png b/docs/Images/Readme/ABIPAUpload.png deleted file mode 100644 index d442b802..00000000 Binary files a/docs/Images/Readme/ABIPAUpload.png and /dev/null differ diff --git a/docs/Images/Readme/ABIPAUpload.webp b/docs/Images/Readme/ABIPAUpload.webp new file mode 100644 index 00000000..d9d116fe Binary files /dev/null and b/docs/Images/Readme/ABIPAUpload.webp differ diff --git a/docs/Images/Readme/ABPref1.png b/docs/Images/Readme/ABPref1.png deleted file mode 100644 index 75046b5b..00000000 Binary files a/docs/Images/Readme/ABPref1.png and /dev/null differ diff --git a/docs/Images/Readme/ABPref1.webp b/docs/Images/Readme/ABPref1.webp new file mode 100644 index 00000000..ce599dee Binary files /dev/null and b/docs/Images/Readme/ABPref1.webp differ diff --git a/docs/Images/Readme/ABPref2.png b/docs/Images/Readme/ABPref2.png deleted file mode 100644 index 4d89aa16..00000000 Binary files a/docs/Images/Readme/ABPref2.png and /dev/null differ diff --git a/docs/Images/Readme/ABPref2.webp b/docs/Images/Readme/ABPref2.webp new file mode 100644 index 00000000..645e4fc7 Binary files /dev/null and b/docs/Images/Readme/ABPref2.webp differ diff --git a/docs/Images/Readme/ABPref3.png b/docs/Images/Readme/ABPref3.png deleted file mode 100644 index e260e318..00000000 Binary files a/docs/Images/Readme/ABPref3.png and /dev/null differ diff --git a/docs/Images/Readme/ABPref3.webp b/docs/Images/Readme/ABPref3.webp new file mode 100644 index 00000000..178ddc0d Binary files /dev/null and b/docs/Images/Readme/ABPref3.webp differ diff --git a/docs/Images/Readme/ABPref4.webp b/docs/Images/Readme/ABPref4.webp new file mode 100644 index 00000000..c8bc86fd Binary files /dev/null and b/docs/Images/Readme/ABPref4.webp differ diff --git a/docs/Images/Readme/ABQR.png b/docs/Images/Readme/ABQR.png deleted file mode 100644 index 9ea07384..00000000 Binary files a/docs/Images/Readme/ABQR.png and /dev/null differ diff --git a/docs/Images/Readme/ABQR.webp b/docs/Images/Readme/ABQR.webp new file mode 100644 index 00000000..501f12e9 Binary files /dev/null and b/docs/Images/Readme/ABQR.webp differ diff --git a/docs/Images/Readme/ABShareURL.png b/docs/Images/Readme/ABShareURL.png deleted file mode 100644 index b7b7b899..00000000 Binary files a/docs/Images/Readme/ABShareURL.png and /dev/null differ diff --git a/docs/Images/Readme/ABShareURL.webp b/docs/Images/Readme/ABShareURL.webp new file mode 100644 index 00000000..376b155a Binary files /dev/null and b/docs/Images/Readme/ABShareURL.webp differ diff --git a/docs/Images/Readme/ABWeb1.png b/docs/Images/Readme/ABWeb1.png deleted file mode 100644 index e16df829..00000000 Binary files a/docs/Images/Readme/ABWeb1.png and /dev/null differ diff --git a/docs/Images/Readme/ABWeb1.webp b/docs/Images/Readme/ABWeb1.webp new file mode 100644 index 00000000..b3320682 Binary files /dev/null and b/docs/Images/Readme/ABWeb1.webp differ diff --git a/docs/Images/Readme/ABWeb2.png b/docs/Images/Readme/ABWeb2.png deleted file mode 100644 index 2cb6e16c..00000000 Binary files a/docs/Images/Readme/ABWeb2.png and /dev/null differ diff --git a/docs/Images/Readme/ABWeb2.webp b/docs/Images/Readme/ABWeb2.webp new file mode 100644 index 00000000..dfe2477d Binary files /dev/null and b/docs/Images/Readme/ABWeb2.webp differ diff --git a/mkdocs.yml b/mkdocs.yml index 799297bc..ed0c6a27 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -8,17 +8,16 @@ remote_branch: gh-pages dev_addr: 127.0.0.1:2000 edit_uri: blob/master/docs/ -# Google Analytics -google_analytics: - - 'UA-85215717-4' - - 'auto' - -# Customization +# Customization (single `extra:` block — a second one later in the file would silently +# replace this whole mapping, YAML last-key-wins). The removed `google_analytics:` option +# pointed at a discontinued Universal Analytics property; use Material's `extra.analytics` +# with a GA4 property if analytics is wanted again. extra: + generator: false social: - - type: 'github' + - icon: fontawesome/brands/github link: 'https://github.com/getappbox/AppBox-iOSAppsWirelessInstallation' - - type: 'twitter' + - icon: fontawesome/brands/x-twitter link: 'https://twitter.com/AppBoxHQ' # Configuration @@ -65,6 +64,4 @@ plugins: lang: en - awesome-pages - minify: - minify_html: true -extra: - generator: false \ No newline at end of file + minify_html: true \ No newline at end of file